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.
 
 
 

31728 lines
795 KiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.capacity) {
  29. views[key].attributes.capacity = {
  30. name: "Capacity",
  31. power: 3,
  32. type: "volume",
  33. base: value.capacity
  34. }
  35. }
  36. });
  37. return createEntityMaker(info, views, defaultSizes);
  38. }
  39. const speciesData = {
  40. animal: {
  41. name: "Animal"
  42. },
  43. dog: {
  44. name: "Dog",
  45. parents: [
  46. "canine"
  47. ]
  48. },
  49. canine: {
  50. name: "Canine",
  51. parents: [
  52. "mammal"
  53. ]
  54. },
  55. crux: {
  56. name: "Crux",
  57. parents: [
  58. "mammal"
  59. ]
  60. },
  61. mammal: {
  62. name: "Mammal",
  63. parents: [
  64. "animal"
  65. ]
  66. },
  67. "rough-collie": {
  68. name: "Rough Collie",
  69. parents: [
  70. "dog"
  71. ]
  72. },
  73. dragon: {
  74. name: "Dragon",
  75. parents: [
  76. "reptile"
  77. ]
  78. },
  79. reptile: {
  80. name: "Reptile",
  81. parents: [
  82. "animal"
  83. ]
  84. },
  85. woodpecker: {
  86. name: "Woodpecker",
  87. parents: [
  88. "avian"
  89. ]
  90. },
  91. avian: {
  92. name: "Avian",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. kitsune: {
  98. name: "Kitsune",
  99. parents: [
  100. "fox"
  101. ]
  102. },
  103. fox: {
  104. name: "Fox",
  105. parents: [
  106. "mammal"
  107. ]
  108. },
  109. pokemon: {
  110. name: "Pokemon"
  111. },
  112. tiger: {
  113. name: "Tiger",
  114. parents: [
  115. "cat"
  116. ]
  117. },
  118. cat: {
  119. name: "Cat",
  120. parents: [
  121. "mammal"
  122. ]
  123. },
  124. "blue-jay": {
  125. name: "Blue Jay",
  126. parents: [
  127. "avian"
  128. ]
  129. },
  130. wolf: {
  131. name: "Wolf",
  132. parents: [
  133. "mammal"
  134. ]
  135. },
  136. coyote: {
  137. name: "Coyote",
  138. parents: [
  139. "mammal"
  140. ]
  141. },
  142. raccoon: {
  143. name: "Raccoon",
  144. parents: [
  145. "mammal"
  146. ]
  147. },
  148. weasel: {
  149. name: "Weasel",
  150. parents: [
  151. "mammal"
  152. ]
  153. },
  154. "red-panda": {
  155. name: "Red Panda",
  156. parents: [
  157. "mammal"
  158. ]
  159. },
  160. dolphin: {
  161. name: "Dolphin",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. "african-wild-dog": {
  167. name: "African Wild Dog",
  168. parents: [
  169. "canine"
  170. ]
  171. },
  172. "hyena": {
  173. name: "Hyena",
  174. parents: [
  175. "canine"
  176. ]
  177. },
  178. "carbuncle": {
  179. name: "Carbuncle",
  180. parents: [
  181. "animal"
  182. ]
  183. },
  184. bat: {
  185. name: "Bat",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. "leaf-nosed-bat": {
  191. name: "Leaf-Nosed Bat",
  192. parents: [
  193. "bat"
  194. ]
  195. },
  196. "fish": {
  197. name: "Fish",
  198. parents: [
  199. "animal"
  200. ]
  201. },
  202. "ram": {
  203. name: "Ram",
  204. parents: [
  205. "mammal"
  206. ]
  207. },
  208. "demon": {
  209. name: "Demon"
  210. },
  211. "cougar": {
  212. name: "Cougar",
  213. parents: [
  214. "cat"
  215. ]
  216. },
  217. "goat": {
  218. name: "Goat",
  219. parents: [
  220. "mammal"
  221. ]
  222. },
  223. "lion": {
  224. name: "Lion",
  225. parents: [
  226. "cat"
  227. ]
  228. },
  229. "harpy-eager": {
  230. name: "Harpy Eagle",
  231. parents: [
  232. "avian"
  233. ]
  234. },
  235. "deer": {
  236. name: "Deer",
  237. parents: [
  238. "mammal"
  239. ]
  240. },
  241. "phoenix": {
  242. name: "Phoenix",
  243. parents: [
  244. "avian"
  245. ]
  246. },
  247. "aeromorph": {
  248. name: "Aeromorph",
  249. parents: [
  250. "machine"
  251. ]
  252. },
  253. "machine": {
  254. name: "Machine",
  255. },
  256. "android": {
  257. name: "Android",
  258. parents: [
  259. "machine"
  260. ]
  261. },
  262. "jackal": {
  263. name: "Jackal",
  264. parents: [
  265. "canine"
  266. ]
  267. },
  268. "corvid": {
  269. name: "Corvid",
  270. parents: [
  271. "avian"
  272. ]
  273. },
  274. "pharaoh-hound": {
  275. name: "Pharaoh Hound",
  276. parents: [
  277. "dog"
  278. ]
  279. },
  280. "skunk": {
  281. name: "Skunk",
  282. parents: [
  283. "mammal"
  284. ]
  285. },
  286. "shark": {
  287. name: "Shark",
  288. parents: [
  289. "fish"
  290. ]
  291. },
  292. "black-panther": {
  293. name: "Black Panther",
  294. parents: [
  295. "cat"
  296. ]
  297. },
  298. "umbra": {
  299. name: "Umbra",
  300. parents: [
  301. "animal"
  302. ]
  303. },
  304. "raven": {
  305. name: "Raven",
  306. parents: [
  307. "corvid"
  308. ]
  309. },
  310. "snow-leopard": {
  311. name: "Snow Leopard",
  312. parents: [
  313. "cat"
  314. ]
  315. },
  316. "barbary-lion": {
  317. name: "Barbary Lion",
  318. parents: [
  319. "lion"
  320. ]
  321. },
  322. "dra'gal": {
  323. name: "Dra'Gal",
  324. parents: [
  325. "mammal"
  326. ]
  327. },
  328. "german-shepherd": {
  329. name: "German Shepherd",
  330. parents: [
  331. "dog"
  332. ]
  333. },
  334. "bayleef": {
  335. name: "Bayleef",
  336. parents: [
  337. "pokemon"
  338. ]
  339. },
  340. "mouse": {
  341. name: "Mouse",
  342. parents: [
  343. "rodent"
  344. ]
  345. },
  346. "rat": {
  347. name: "Rat",
  348. parents: [
  349. "mammal"
  350. ]
  351. },
  352. "hoshiko-beast": {
  353. name: "Hoshiko Beast",
  354. parents: ["animal"]
  355. },
  356. "snow-jugani": {
  357. name: "Snow Jugani",
  358. parents: ["cat"]
  359. },
  360. "patamon": {
  361. name: "Patamon",
  362. parents: ["digimon"]
  363. },
  364. "digimon": {
  365. name: "Digimon",
  366. },
  367. "jugani": {
  368. name: "Jugani",
  369. parents: ["cat"]
  370. },
  371. "luxray": {
  372. name: "Luxray",
  373. parents: ["pokemon"]
  374. },
  375. "mech": {
  376. name: "Mech",
  377. parents: ["machine"]
  378. },
  379. "zoid": {
  380. name: "Zoid",
  381. parents: ["mech"]
  382. },
  383. "monster": {
  384. name: "Monster",
  385. parents: ["animal"]
  386. },
  387. "foo-dog": {
  388. name: "Foo Dog",
  389. parents: ["mammal"]
  390. },
  391. "elephant": {
  392. name: "Elephant",
  393. parents: ["mammal"]
  394. },
  395. "eagle": {
  396. name: "Eagle",
  397. parents: ["avian"]
  398. },
  399. "cow": {
  400. name: "Cow",
  401. parents: ["mammal"]
  402. },
  403. "crocodile": {
  404. name: "Crocodile",
  405. parents: ["reptile"]
  406. },
  407. "borzoi": {
  408. name: "Borzoi",
  409. parents: ["dog"]
  410. },
  411. "snake": {
  412. name: "Snake",
  413. parents: ["reptile"]
  414. },
  415. "horned-bush-viper": {
  416. name: "Horned Bush Viper",
  417. parents: ["snake"]
  418. },
  419. "cobra": {
  420. name: "Cobra",
  421. parents: ["snake"]
  422. },
  423. "harpy-eagle": {
  424. name: "Harpy Eagle",
  425. parents: ["eagle"]
  426. },
  427. "raptor": {
  428. name: "Raptor",
  429. parents: ["dinosaur"]
  430. },
  431. "dinosaur": {
  432. name: "Dinosaur",
  433. parents: ["reptile"]
  434. },
  435. "veilhound": {
  436. name: "Veilhound",
  437. parents: ["hellhound", "demon"]
  438. },
  439. "hellhound": {
  440. name: "Hellhound",
  441. parents: ["canine"]
  442. },
  443. "insect": {
  444. name: "Insect",
  445. parents: ["animal"]
  446. },
  447. "beetle": {
  448. name: "Beetle",
  449. parents: ["insect"]
  450. },
  451. "moth": {
  452. name: "Moth",
  453. parents: ["insect"]
  454. },
  455. "eastern-dragon": {
  456. name: "Eastern Dragon",
  457. parents: ["dragon"]
  458. },
  459. "jaguar": {
  460. name: "Jaguar",
  461. parents: ["cat"]
  462. },
  463. "horse": {
  464. name: "Horse",
  465. parents: ["mammal"]
  466. },
  467. "sergal": {
  468. name: "Sergal",
  469. parents: ["mammal"]
  470. },
  471. "gryphon": {
  472. name: "Gryphon",
  473. parents: ["lion", "eagle"]
  474. },
  475. "robot": {
  476. name: "Robot",
  477. parents: ["machine"]
  478. },
  479. "medihound": {
  480. name: "Medihound",
  481. parents: ["robot", "dog"]
  482. },
  483. "sylveon": {
  484. name: "Sylveon",
  485. parents: ["pokemon"]
  486. },
  487. "catgirl": {
  488. name: "Catgirl",
  489. parents: ["mammal"]
  490. },
  491. "cowgirl": {
  492. name: "Cowgirl",
  493. parents: ["mammal"]
  494. },
  495. "pony": {
  496. name: "Pony",
  497. parents: ["horse"]
  498. },
  499. "rabbit": {
  500. name: "Rabbit",
  501. parents: ["mammal"]
  502. },
  503. "fennec-fox": {
  504. name: "Fennec Fox",
  505. parents: ["fox"]
  506. },
  507. "azodian": {
  508. name: "Azodian",
  509. parents: ["mouse"]
  510. },
  511. "shiba-inu": {
  512. name: "Shiba Inu",
  513. parents: ["dog"]
  514. },
  515. "changeling": {
  516. name: "Changeling",
  517. parents: ["insect"]
  518. },
  519. "cheetah": {
  520. name: "Cheetah",
  521. parents: ["cat"]
  522. },
  523. "golden-jackal": {
  524. name: "Golden Jackal",
  525. parents: ["jackal"]
  526. },
  527. "manectric": {
  528. name: "Manectric",
  529. parents: ["pokemon"]
  530. },
  531. "rat": {
  532. name: "Rat",
  533. parents: ["rodent"]
  534. },
  535. "rodent": {
  536. name: "Rodent",
  537. parents: ["mammal"]
  538. },
  539. "octocoon": {
  540. name: "Octocoon",
  541. parents: ["raccoon", "octopus"]
  542. },
  543. "octopus": {
  544. name: "Octopus",
  545. parents: ["fish"]
  546. },
  547. "werewolf": {
  548. name: "Werewolf",
  549. parents: ["wolf"]
  550. },
  551. "meerkat": {
  552. name: "Meerkat",
  553. parents: ["mammal"]
  554. },
  555. "human": {
  556. name: "Human",
  557. parents: ["mammal"]
  558. },
  559. "geth": {
  560. name: "Geth",
  561. parents: ["android"]
  562. },
  563. "husky": {
  564. name: "Husky",
  565. parents: ["dog"]
  566. },
  567. "long-eared-bat": {
  568. name: "Long Eared Bat",
  569. parents: ["bat"]
  570. },
  571. "lizard": {
  572. name: "Lizard",
  573. parents: ["reptile"]
  574. },
  575. "salamander": {
  576. name: "Salamander",
  577. parents: ["lizard"]
  578. },
  579. "chameleon": {
  580. name: "Chameleon",
  581. parents: ["lizard"]
  582. },
  583. "gecko": {
  584. name: "Gecko",
  585. parents: ["lizard"]
  586. },
  587. "kobold": {
  588. name: "Kobold",
  589. parents: ["reptile"]
  590. },
  591. "charizard": {
  592. name: "Charizard",
  593. parents: ["pokemon"]
  594. },
  595. "lugia": {
  596. name: "Lugia",
  597. parents: ["pokemon"]
  598. },
  599. "cerberus": {
  600. name: "Cerberus",
  601. parents: ["dog"]
  602. },
  603. "tyrantrum": {
  604. name: "Tyrantrum",
  605. parents: ["pokemon"]
  606. },
  607. "lemur": {
  608. name: "Lemur",
  609. parents: ["mammal"]
  610. },
  611. "kelpie": {
  612. name: "Kelpie",
  613. parents: ["horse", "monster"]
  614. },
  615. "labrador": {
  616. name: "Labrador",
  617. parents: ["dog"]
  618. },
  619. "sylveon": {
  620. name: "Sylveon",
  621. parents: ["eeveelution"]
  622. },
  623. "eeveelution": {
  624. name: "Eeveelution",
  625. parents: ["pokemon"]
  626. },
  627. "polar-bear": {
  628. name: "Polar Bear",
  629. parents: ["bear"]
  630. },
  631. "bear": {
  632. name: "Bear",
  633. parents: ["mammal"]
  634. },
  635. "absol": {
  636. name: "Absol",
  637. parents: ["pokemon"]
  638. },
  639. "wolver": {
  640. name: "Wolver",
  641. parents: ["mammal"]
  642. },
  643. "rottweiler": {
  644. name: "Rottweiler",
  645. parents: ["dog"]
  646. },
  647. "zebra": {
  648. name: "Zebra",
  649. parents: ["horse"]
  650. },
  651. "yoshi": {
  652. name: "Yoshi",
  653. parents: ["lizard"]
  654. },
  655. "lynx": {
  656. name: "Lynx",
  657. parents: ["cat"]
  658. },
  659. "unknown": {
  660. name: "Unknown",
  661. parents: []
  662. },
  663. "thylacine": {
  664. name: "Thylacine",
  665. parents: ["mammal"]
  666. },
  667. "gabumon": {
  668. name: "Gabumon",
  669. parents: ["digimon"]
  670. },
  671. "border-collie": {
  672. name: "Border Collie",
  673. parents: ["dog"]
  674. },
  675. "imp": {
  676. name: "Imp",
  677. parents: ["demon"]
  678. },
  679. "kangaroo": {
  680. name: "Kangaroo",
  681. parents: ["mammal"]
  682. },
  683. "renamon": {
  684. name: "Renamon",
  685. parents: ["digimon"]
  686. },
  687. "candy-orca-dragon": {
  688. name: "Candy Orca Dragon",
  689. parents: ["fish", "dragon", "candy"]
  690. },
  691. "sabertooth-tiger": {
  692. name: "Sabertooth Tiger",
  693. parents: ["cat"]
  694. },
  695. "espurr": {
  696. name: "Espurr",
  697. parents: ["pokemon"]
  698. },
  699. "otter": {
  700. name: "Otter",
  701. parents: ["mammal"]
  702. },
  703. "elemental": {
  704. name: "Elemental",
  705. parents: ["mammal"]
  706. },
  707. "mew": {
  708. name: "Mew",
  709. parents: ["pokemon"]
  710. },
  711. "goodra": {
  712. name: "Goodra",
  713. parents: ["pokemon"]
  714. },
  715. "fairy": {
  716. name: "Fairy",
  717. parents: ["magical"]
  718. },
  719. "typhlosion": {
  720. name: "Typhlosion",
  721. parents: ["pokemon"]
  722. },
  723. "magical": {
  724. name: "Magical",
  725. parents: []
  726. },
  727. "xenomorph": {
  728. name: "Xenomorph",
  729. parents: ["monster", "alien"]
  730. },
  731. "charr": {
  732. name: "Charr",
  733. parents: ["cat"]
  734. },
  735. "siberian-husky": {
  736. name: "Siberian Husky",
  737. parents: ["husky"]
  738. },
  739. "alligator": {
  740. name: "Alligator",
  741. parents: ["reptile"]
  742. },
  743. "bernese-mountain-dog": {
  744. name: "Bernese Mountain Dog",
  745. parents: ["dog"]
  746. },
  747. "reshiram": {
  748. name: "Reshiram",
  749. parents: ["pokemon"]
  750. },
  751. "grizzly-bear": {
  752. name: "Grizzly Bear",
  753. parents: ["bear"]
  754. },
  755. "water-monitor": {
  756. name: "Water Monitor",
  757. parents: ["lizard"]
  758. },
  759. "banchofossa": {
  760. name: "Banchofossa",
  761. parents: ["mammal"]
  762. },
  763. "kirin": {
  764. name: "Kirin",
  765. parents: ["monster"]
  766. },
  767. "quilava": {
  768. name: "Quilava",
  769. parents: ["pokemon"]
  770. },
  771. "seviper": {
  772. name: "Seviper",
  773. parents: ["pokemon"]
  774. },
  775. "flying-fox": {
  776. name: "Flying Fox",
  777. parents: ["bat"]
  778. },
  779. "keynain": {
  780. name: "Keynain",
  781. parents: ["avian"]
  782. },
  783. "lucario": {
  784. name: "Lucario",
  785. parents: ["pokemon"]
  786. },
  787. "siamese-cat": {
  788. name: "Siamese Cat",
  789. parents: ["cat"]
  790. },
  791. "spider": {
  792. name: "Spider",
  793. parents: ["insect"]
  794. },
  795. "samurott": {
  796. name: "Samurott",
  797. parents: ["pokemon"]
  798. },
  799. "megalodon": {
  800. name: "Megalodon",
  801. parents: ["shark"]
  802. },
  803. "unicorn": {
  804. name: "Unicorn",
  805. parents: ["horse"]
  806. },
  807. "greninja": {
  808. name: "Greninja",
  809. parents: ["pokemon"]
  810. },
  811. "water-dragon": {
  812. name: "Water Dragon",
  813. parents: ["dragon"]
  814. },
  815. "cross-fox": {
  816. name: "Cross Fox",
  817. parents: ["fox"]
  818. },
  819. "synth": {
  820. name: "Synth",
  821. parents: ["machine"]
  822. },
  823. "construct": {
  824. name: "Construct",
  825. parents: []
  826. },
  827. "mexican-wolf": {
  828. name: "Mexican Wolf",
  829. parents: ["wolf"]
  830. },
  831. "leopard": {
  832. name: "Leopard",
  833. parents: ["cat"]
  834. },
  835. "pig": {
  836. name: "Pig",
  837. parents: ["mammal"]
  838. },
  839. "ampharos": {
  840. name: "Ampharos",
  841. parents: ["pokemon"]
  842. },
  843. "orca": {
  844. name: "Orca",
  845. parents: ["fish"]
  846. },
  847. "lycanroc": {
  848. name: "Lycanroc",
  849. parents: ["pokemon"]
  850. },
  851. "surkanu": {
  852. name: "Surkanu",
  853. parents: ["monster"]
  854. },
  855. "seal": {
  856. name: "Seal",
  857. parents: ["mammal"]
  858. },
  859. "keldeo": {
  860. name: "Keldeo",
  861. parents: ["pokemon"]
  862. },
  863. "great-dane": {
  864. name: "Great Dane",
  865. parents: ["dog"]
  866. },
  867. "black-backed-jackal": {
  868. name: "Black Backed Jackal",
  869. parents: ["jackal"]
  870. },
  871. "sheep": {
  872. name: "Sheep",
  873. parents: ["mammal"]
  874. },
  875. "leopard-seal": {
  876. name: "Leopard Seal",
  877. parents: ["seal"]
  878. },
  879. "zoroark": {
  880. name: "Zoroark",
  881. parents: ["pokemon"]
  882. },
  883. "maned-wolf": {
  884. name: "Maned Wolf",
  885. parents: ["canine"]
  886. },
  887. "dracha": {
  888. name: "Dracha",
  889. parents: ["dragon"]
  890. },
  891. "wolxi": {
  892. name: "Wolxi",
  893. parents: ["mammal", "alien"]
  894. },
  895. "dratini": {
  896. name: "Dratini",
  897. parents: ["pokemon", "dragon"]
  898. },
  899. "skaven": {
  900. name: "Skaven",
  901. parents: ["rat"]
  902. },
  903. "mongoose": {
  904. name: "Mongoose",
  905. parents: ["mammal"]
  906. },
  907. "lopunny": {
  908. name: "Lopunny",
  909. parents: ["pokemon", "rabbit"]
  910. },
  911. "feraligatr": {
  912. name: "Feraligatr",
  913. parents: ["pokemon", "alligator"]
  914. },
  915. "houndoom": {
  916. name: "Houndoom",
  917. parents: ["pokemon", "dog"]
  918. },
  919. "protogen": {
  920. name: "Protogen",
  921. parents: ["machine"]
  922. },
  923. "saint-bernard": {
  924. name: "Saint Bernard",
  925. parents: ["dog"]
  926. },
  927. "crow": {
  928. name: "Crow",
  929. parents: ["corvid"]
  930. },
  931. "delphox": {
  932. name: "Delphox",
  933. parents: ["pokemon", "fox"]
  934. },
  935. "moose": {
  936. name: "Moose",
  937. parents: ["mammal"]
  938. },
  939. "joraxian": {
  940. name: "Joraxian",
  941. parents: ["monster", "canine", "demon"]
  942. },
  943. "nimbat": {
  944. name: "Nimbat",
  945. parents: ["mammal"]
  946. },
  947. "aardwolf": {
  948. name: "Aardwolf",
  949. parents: ["canine"]
  950. },
  951. "fluudrani": {
  952. name: "Fluudrani",
  953. parents: ["animal"]
  954. },
  955. "arcanine": {
  956. name: "Arcanine",
  957. parents: ["pokemon", "dog"]
  958. },
  959. "inteleon": {
  960. name: "Inteleon",
  961. parents: ["pokemon", "fish"]
  962. },
  963. "ninetales": {
  964. name: "Ninetales",
  965. parents: ["pokemon", "kitsune"]
  966. },
  967. "tigrex": {
  968. name: "Tigrex",
  969. parents: ["tiger"]
  970. },
  971. "zorua": {
  972. name: "Zorua",
  973. parents: ["pokemon", "fox"]
  974. },
  975. "vulpix": {
  976. name: "Vulpix",
  977. parents: ["pokemon", "fox"]
  978. },
  979. "barghest": {
  980. name: "Barghest",
  981. parents: ["monster"]
  982. },
  983. "gray-wolf": {
  984. name: "Gray Wolf",
  985. parents: ["wolf"]
  986. },
  987. "ruppells-fox": {
  988. name: "Rüppell's Fox",
  989. parents: ["fox"]
  990. },
  991. "bull-terrier": {
  992. name: "Bull Terrier",
  993. parents: ["dog"]
  994. },
  995. "european-honey-buzzard": {
  996. name: "European Honey Buzzard",
  997. parents: ["avian"]
  998. },
  999. "t-rex": {
  1000. name: "T Rex",
  1001. parents: ["dinosaur"]
  1002. },
  1003. "mactarian": {
  1004. name: "Mactarian",
  1005. parents: ["shark", "monster"]
  1006. },
  1007. "mewtwo-y": {
  1008. name: "Mewtwo Y",
  1009. parents: ["mewtwo"]
  1010. },
  1011. "mewtwo": {
  1012. name: "Mewtwo",
  1013. parents: ["pokemon"]
  1014. },
  1015. "mew": {
  1016. name: "Mew",
  1017. parents: ["pokemon"]
  1018. },
  1019. "eevee": {
  1020. name: "Eevee",
  1021. parents: ["eeveelution"]
  1022. },
  1023. "mienshao": {
  1024. name: "Mienshao",
  1025. parents: ["pokemon"]
  1026. },
  1027. "sugar-glider": {
  1028. name: "Sugar Glider",
  1029. parents: ["opossum"]
  1030. },
  1031. "spectral-bat": {
  1032. name: "Spectral Bat",
  1033. parents: ["bat"]
  1034. },
  1035. "scolipede": {
  1036. name: "Scolipede",
  1037. parents: ["pokemon", "insect"]
  1038. },
  1039. "jackalope": {
  1040. name: "Jackalope",
  1041. parents: ["rabbit", "antelope"]
  1042. },
  1043. "caracal": {
  1044. name: "Caracal",
  1045. parents: ["cat"]
  1046. },
  1047. "stoat": {
  1048. name: "Stoat",
  1049. parents: ["mammal"]
  1050. },
  1051. "african-golden-cat": {
  1052. name: "African Golden Cat",
  1053. parents: ["cat"]
  1054. },
  1055. "gigantosaurus": {
  1056. name: "Gigantosaurus",
  1057. parents: ["dinosaur"]
  1058. },
  1059. "zorgoia": {
  1060. name: "Zorgoia",
  1061. parents: ["mammal"]
  1062. },
  1063. "monitor-lizard": {
  1064. name: "Monitor Lizard",
  1065. parents: ["lizard"]
  1066. },
  1067. "ziralkia": {
  1068. name: "Ziralkia",
  1069. parents: ["mammal"]
  1070. },
  1071. "kiiasi": {
  1072. name: "Kiiasi",
  1073. parents: ["animal"]
  1074. },
  1075. "synx": {
  1076. name: "Synx",
  1077. parents: ["monster"]
  1078. },
  1079. "panther": {
  1080. name: "Panther",
  1081. parents: ["cat"]
  1082. },
  1083. "azumarill": {
  1084. name: "Azumarill",
  1085. parents: ["pokemon"]
  1086. },
  1087. "river-snaptail": {
  1088. name: "River Snaptail",
  1089. parents: ["otter", "crocodile"]
  1090. },
  1091. "great-blue-heron": {
  1092. name: "Great Blue Heron",
  1093. parents: ["avian"]
  1094. },
  1095. "smeargle": {
  1096. name: "Smeargle",
  1097. parents: ["pokemon"]
  1098. },
  1099. "vendeilen": {
  1100. name: "Vendeilen",
  1101. parents: ["monster"]
  1102. },
  1103. "ventura": {
  1104. name: "Ventura",
  1105. parents: ["canine"]
  1106. },
  1107. "clouded-leopard": {
  1108. name: "Clouded Leopard",
  1109. parents: ["leopard"]
  1110. },
  1111. "argonian": {
  1112. name: "Argonian",
  1113. parents: ["lizard"]
  1114. },
  1115. "salazzle": {
  1116. name: "Salazzle",
  1117. parents: ["pokemon", "lizard"]
  1118. },
  1119. "je-stoff-drachen": {
  1120. name: "Je-Stoff Drachen",
  1121. parents: ["dragon"]
  1122. },
  1123. "finnish-spitz-dog": {
  1124. name: "Finnish Spitz Dog",
  1125. parents: ["dog"]
  1126. },
  1127. "gray-fox": {
  1128. name: "Gray Fox",
  1129. parents: ["fox"]
  1130. },
  1131. "opossum": {
  1132. name: "opossum",
  1133. parents: ["mammal"]
  1134. },
  1135. "antelope": {
  1136. name: "Antelope",
  1137. parents: ["mammal"]
  1138. },
  1139. "weavile": {
  1140. name: "Weavile",
  1141. parents: ["pokemon"]
  1142. },
  1143. "pikachu": {
  1144. name: "Pikachu",
  1145. parents: ["pokemon", "mouse"]
  1146. },
  1147. "grovyle": {
  1148. name: "Grovyle",
  1149. parents: ["pokemon", "plant"]
  1150. },
  1151. "sthara": {
  1152. name: "Sthara",
  1153. parents: ["snow-leopard", "reptile"]
  1154. },
  1155. "star-warrior": {
  1156. name: "Star Warrior",
  1157. parents: ["magical"]
  1158. },
  1159. "dragonoid": {
  1160. name: "Dragonoid",
  1161. parents: ["dragon"]
  1162. },
  1163. "suicune": {
  1164. name: "Suicune",
  1165. parents: ["pokemon"]
  1166. },
  1167. "vole": {
  1168. name: "Vole",
  1169. parents: ["mammal"]
  1170. },
  1171. "blaziken": {
  1172. name: "Blaziken",
  1173. parents: ["pokemon", "avian"]
  1174. },
  1175. "buizel": {
  1176. name: "Buizel",
  1177. parents: ["pokemon", "fish"]
  1178. },
  1179. "floatzel": {
  1180. name: "Floatzel",
  1181. parents: ["pokemon", "fish"]
  1182. },
  1183. "umok": {
  1184. name: "Umok",
  1185. parents: ["avian"]
  1186. },
  1187. "sea-monster": {
  1188. name: "Sea Monster",
  1189. parents: ["monster", "fish"]
  1190. },
  1191. "egyptian-vulture": {
  1192. name: "Egyptian Vulture",
  1193. parents: ["avian"]
  1194. },
  1195. "doberman": {
  1196. name: "Doberman",
  1197. parents: ["dog"]
  1198. },
  1199. "zangoose": {
  1200. name: "Zangoose",
  1201. parents: ["pokemon", "mongoose"]
  1202. },
  1203. "mongoose": {
  1204. name: "Mongoose",
  1205. parents: ["mammal"]
  1206. },
  1207. "wickerbeast": {
  1208. name: "Wickerbeast",
  1209. parents: ["monster"]
  1210. },
  1211. "zenari": {
  1212. name: "Zenari",
  1213. parents: ["lizard"]
  1214. },
  1215. "plant": {
  1216. name: "Plant",
  1217. parents: []
  1218. },
  1219. "raskatox": {
  1220. name: "Raskatox",
  1221. parents: ["raccoon", "skunk", "cat", "fox"]
  1222. },
  1223. "mikromare": {
  1224. name: "mikromare",
  1225. parents: ["alien"]
  1226. },
  1227. "alien": {
  1228. name: "Alien",
  1229. parents: ["animal"]
  1230. },
  1231. "deity": {
  1232. name: "Deity",
  1233. parents: []
  1234. },
  1235. "skarlan": {
  1236. name: "Skarlan",
  1237. parents: ["slug", "dragon"]
  1238. },
  1239. "slug": {
  1240. name: "Slug",
  1241. parents: ["mollusk"]
  1242. },
  1243. "mollusk": {
  1244. name: "Mollusk",
  1245. parents: ["animal"]
  1246. },
  1247. "chimera": {
  1248. name: "Chimera",
  1249. parents: ["monster"]
  1250. },
  1251. "gestalt": {
  1252. name: "Gestalt",
  1253. parents: ["construct"]
  1254. },
  1255. "mimic": {
  1256. name: "Mimic",
  1257. parents: ["monster"]
  1258. },
  1259. "calico-rat": {
  1260. name: "Calico Rat",
  1261. parents: ["rat"]
  1262. },
  1263. "panda": {
  1264. name: "Panda",
  1265. parents: ["mammal"]
  1266. },
  1267. "oni": {
  1268. name: "Oni",
  1269. parents: ["monster"]
  1270. },
  1271. "pegasus": {
  1272. name: "Pegasus",
  1273. parents: ["horse"]
  1274. },
  1275. "vulpera": {
  1276. name: "Vulpera",
  1277. parents: ["fennec-fox"]
  1278. },
  1279. "ceratosaurus": {
  1280. name: "Ceratosaurus",
  1281. parents: ["dinosaur"]
  1282. },
  1283. "nykur": {
  1284. name: "Nykur",
  1285. parents: ["horse", "monster"]
  1286. },
  1287. "giraffe": {
  1288. name: "Giraffe",
  1289. parents: ["mammal"]
  1290. },
  1291. "tauren": {
  1292. name: "Tauren",
  1293. parents: ["cow"]
  1294. },
  1295. "draconi": {
  1296. name: "Draconi",
  1297. parents: ["alien", "cat", "cyborg"]
  1298. },
  1299. "dire-wolf": {
  1300. name: "Dire Wolf",
  1301. parents: ["wolf"]
  1302. },
  1303. "ferromorph": {
  1304. name: "Ferromorph",
  1305. parents: ["construct"]
  1306. },
  1307. "meowth": {
  1308. name: "Meowth",
  1309. parents: ["cat", "pokemon"]
  1310. },
  1311. "pavodragon": {
  1312. name: "Pavodragon",
  1313. parents: ["dragon"]
  1314. },
  1315. "aaltranae": {
  1316. name: "Aaltranae",
  1317. parents: ["dragon"]
  1318. },
  1319. "cyborg": {
  1320. name: "Cyborg",
  1321. parents: ["machine"]
  1322. },
  1323. "draptor": {
  1324. name: "Draptor",
  1325. parents: ["dragon"]
  1326. },
  1327. "candy": {
  1328. name: "Candy",
  1329. parents: []
  1330. },
  1331. "drenath": {
  1332. name: "Drenath",
  1333. parents: ["dragon", "snake", "rabbit"]
  1334. },
  1335. "coyju": {
  1336. name: "Coyju",
  1337. parents: ["coyote", "kaiju"]
  1338. },
  1339. "kaiju": {
  1340. name: "Kaiju",
  1341. parents: ["monster"]
  1342. },
  1343. "nickit": {
  1344. name: "Nickit",
  1345. parents: ["pokemon", "cat"]
  1346. },
  1347. "lopunny": {
  1348. name: "Lopunny",
  1349. parents: ["pokemon", "rabbit"]
  1350. },
  1351. "korean-jindo-dog": {
  1352. name: "Korean Jindo Dog",
  1353. parents: ["dog"]
  1354. },
  1355. "naga": {
  1356. name: "Naga",
  1357. parents: ["snake", "monster"]
  1358. },
  1359. "undead": {
  1360. name: "Undead",
  1361. parents: ["monster"]
  1362. },
  1363. "whale": {
  1364. name: "Whale",
  1365. parents: ["fish"]
  1366. },
  1367. "gelato-bee": {
  1368. name: "Gelato Bee",
  1369. parents: ["bee"]
  1370. },
  1371. "bee": {
  1372. name: "Bee",
  1373. parents: ["insect"]
  1374. },
  1375. "gardevoir": {
  1376. name: "Gardevoir",
  1377. parents: ["pokemon"]
  1378. },
  1379. "ant": {
  1380. name: "Ant",
  1381. parents: ["insect"]
  1382. },
  1383. "frog": {
  1384. name: "Frog",
  1385. parents: ["amphibian"]
  1386. },
  1387. "amphibian": {
  1388. name: "Amphibian",
  1389. parents: ["animal"]
  1390. },
  1391. "pangolin": {
  1392. name: "Pangolin",
  1393. parents: ["mammal"]
  1394. },
  1395. "uragi'viidorn": {
  1396. name: "Uragi'viidorn",
  1397. parents: ["avian", "bear"]
  1398. },
  1399. "gryphdelphais": {
  1400. name: "Gryphdelphais",
  1401. parents: ["dolphin", "gryphon"]
  1402. },
  1403. "plush": {
  1404. name: "Plush",
  1405. parents: ["construct"]
  1406. },
  1407. "draiger": {
  1408. name: "Draiger",
  1409. parents: ["dragon","tiger"]
  1410. },
  1411. "foxsky": {
  1412. name: "Foxsky",
  1413. parents: ["fox", "husky"]
  1414. },
  1415. "umbreon": {
  1416. name: "Umbreon",
  1417. parents: ["eeveelution"]
  1418. },
  1419. }
  1420. //species
  1421. function getSpeciesInfo(speciesList) {
  1422. let result = new Set();
  1423. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1424. result.add(entry)
  1425. });
  1426. return Array.from(result);
  1427. };
  1428. function getSpeciesInfoHelper(species) {
  1429. if (!speciesData[species]) {
  1430. console.warn(species + " doesn't exist");
  1431. return [];
  1432. }
  1433. if (speciesData[species].parents) {
  1434. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1435. } else {
  1436. return [species];
  1437. }
  1438. }
  1439. characterMakers.push(() => makeCharacter(
  1440. {
  1441. name: "Fen",
  1442. species: ["crux"],
  1443. description: {
  1444. title: "Bio",
  1445. text: "Very furry. Sheds on everything."
  1446. },
  1447. tags: [
  1448. "anthro",
  1449. "goo"
  1450. ]
  1451. },
  1452. {
  1453. back: {
  1454. height: math.unit(2.2428, "meter"),
  1455. weight: math.unit(124.738, "kg"),
  1456. name: "Back",
  1457. image: {
  1458. source: "./media/characters/fen/back.svg",
  1459. extra: 2024 / 1867,
  1460. bottom: 13 / 2037
  1461. },
  1462. info: {
  1463. description: {
  1464. mode: "append",
  1465. text: "\n\nHe is not currently looking at you."
  1466. }
  1467. }
  1468. },
  1469. full: {
  1470. height: math.unit(1.34, "meter"),
  1471. weight: math.unit(225, "kg"),
  1472. name: "Full",
  1473. image: {
  1474. source: "./media/characters/fen/full.svg"
  1475. },
  1476. info: {
  1477. description: {
  1478. mode: "append",
  1479. text: "\n\nMunch."
  1480. }
  1481. }
  1482. },
  1483. kneeling: {
  1484. height: math.unit(5.4, "feet"),
  1485. weight: math.unit(124.738, "kg"),
  1486. name: "Kneeling",
  1487. image: {
  1488. source: "./media/characters/fen/kneeling.svg",
  1489. extra: 563 / 507
  1490. }
  1491. },
  1492. goo: {
  1493. height: math.unit(2.8, "feet"),
  1494. weight: math.unit(125, "kg"),
  1495. capacity: math.unit(1, "people"),
  1496. name: "Goo",
  1497. image: {
  1498. source: "./media/characters/fen/goo.svg",
  1499. bottom: 116 / 613
  1500. }
  1501. },
  1502. lounging: {
  1503. height: math.unit(6.5, "feet"),
  1504. weight: math.unit(125, "kg"),
  1505. name: "Lounging",
  1506. image: {
  1507. source: "./media/characters/fen/lounging.svg"
  1508. }
  1509. },
  1510. },
  1511. [
  1512. {
  1513. name: "Normal",
  1514. height: math.unit(2.2428, "meter")
  1515. },
  1516. {
  1517. name: "Big",
  1518. height: math.unit(12, "feet")
  1519. },
  1520. {
  1521. name: "Minimacro",
  1522. height: math.unit(40, "feet"),
  1523. default: true,
  1524. info: {
  1525. description: {
  1526. mode: "append",
  1527. text: "\n\nTOO DAMN BIG"
  1528. }
  1529. }
  1530. },
  1531. {
  1532. name: "Macro",
  1533. height: math.unit(100, "feet"),
  1534. info: {
  1535. description: {
  1536. mode: "append",
  1537. text: "\n\nTOO DAMN BIG"
  1538. }
  1539. }
  1540. },
  1541. {
  1542. name: "Macro+",
  1543. height: math.unit(300, "feet")
  1544. },
  1545. {
  1546. name: "Megamacro",
  1547. height: math.unit(2, "miles")
  1548. }
  1549. ]
  1550. ))
  1551. characterMakers.push(() => makeCharacter(
  1552. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1553. {
  1554. front: {
  1555. height: math.unit(183, "cm"),
  1556. weight: math.unit(80, "kg"),
  1557. name: "Front",
  1558. image: {
  1559. source: "./media/characters/sofia-fluttertail/front.svg",
  1560. bottom: 0.01,
  1561. extra: 2154 / 2081
  1562. }
  1563. },
  1564. frontAlt: {
  1565. height: math.unit(183, "cm"),
  1566. weight: math.unit(80, "kg"),
  1567. name: "Front (alt)",
  1568. image: {
  1569. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1570. }
  1571. },
  1572. back: {
  1573. height: math.unit(183, "cm"),
  1574. weight: math.unit(80, "kg"),
  1575. name: "Back",
  1576. image: {
  1577. source: "./media/characters/sofia-fluttertail/back.svg"
  1578. }
  1579. },
  1580. kneeling: {
  1581. height: math.unit(125, "cm"),
  1582. weight: math.unit(80, "kg"),
  1583. name: "Kneeling",
  1584. image: {
  1585. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1586. extra: 1033 / 977,
  1587. bottom: 23.7 / 1057
  1588. }
  1589. },
  1590. maw: {
  1591. height: math.unit(183 / 5, "cm"),
  1592. name: "Maw",
  1593. image: {
  1594. source: "./media/characters/sofia-fluttertail/maw.svg"
  1595. }
  1596. },
  1597. mawcloseup: {
  1598. height: math.unit(183 / 5 * 0.41, "cm"),
  1599. name: "Maw (Closeup)",
  1600. image: {
  1601. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1602. }
  1603. },
  1604. paws: {
  1605. height: math.unit(1.17, "feet"),
  1606. name: "Paws",
  1607. image: {
  1608. source: "./media/characters/sofia-fluttertail/paws.svg",
  1609. extra: 851 / 851,
  1610. bottom: 17 / 868
  1611. }
  1612. },
  1613. },
  1614. [
  1615. {
  1616. name: "Normal",
  1617. height: math.unit(1.83, "meter")
  1618. },
  1619. {
  1620. name: "Size Thief",
  1621. height: math.unit(18, "feet")
  1622. },
  1623. {
  1624. name: "50 Foot Collie",
  1625. height: math.unit(50, "feet")
  1626. },
  1627. {
  1628. name: "Macro",
  1629. height: math.unit(96, "feet"),
  1630. default: true
  1631. },
  1632. {
  1633. name: "Megamerger",
  1634. height: math.unit(650, "feet")
  1635. },
  1636. ]
  1637. ))
  1638. characterMakers.push(() => makeCharacter(
  1639. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1640. {
  1641. front: {
  1642. height: math.unit(7, "feet"),
  1643. weight: math.unit(100, "kg"),
  1644. name: "Front",
  1645. image: {
  1646. source: "./media/characters/march/front.svg",
  1647. extra: 1,
  1648. bottom: 0.015
  1649. }
  1650. },
  1651. foot: {
  1652. height: math.unit(0.9, "feet"),
  1653. name: "Foot",
  1654. image: {
  1655. source: "./media/characters/march/foot.svg"
  1656. }
  1657. },
  1658. },
  1659. [
  1660. {
  1661. name: "Normal",
  1662. height: math.unit(7.9, "feet")
  1663. },
  1664. {
  1665. name: "Macro",
  1666. height: math.unit(220, "meters")
  1667. },
  1668. {
  1669. name: "Megamacro",
  1670. height: math.unit(2.98, "km"),
  1671. default: true
  1672. },
  1673. {
  1674. name: "Gigamacro",
  1675. height: math.unit(15963, "km")
  1676. },
  1677. {
  1678. name: "Teramacro",
  1679. height: math.unit(2980000000, "km")
  1680. },
  1681. {
  1682. name: "Examacro",
  1683. height: math.unit(250, "parsecs")
  1684. },
  1685. ]
  1686. ))
  1687. characterMakers.push(() => makeCharacter(
  1688. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1689. {
  1690. front: {
  1691. height: math.unit(6, "feet"),
  1692. weight: math.unit(60, "kg"),
  1693. name: "Front",
  1694. image: {
  1695. source: "./media/characters/noir/front.svg",
  1696. extra: 1,
  1697. bottom: 0.032
  1698. }
  1699. },
  1700. },
  1701. [
  1702. {
  1703. name: "Normal",
  1704. height: math.unit(6.6, "feet")
  1705. },
  1706. {
  1707. name: "Macro",
  1708. height: math.unit(500, "feet")
  1709. },
  1710. {
  1711. name: "Megamacro",
  1712. height: math.unit(2.5, "km"),
  1713. default: true
  1714. },
  1715. {
  1716. name: "Gigamacro",
  1717. height: math.unit(22500, "km")
  1718. },
  1719. {
  1720. name: "Teramacro",
  1721. height: math.unit(2500000000, "km")
  1722. },
  1723. {
  1724. name: "Examacro",
  1725. height: math.unit(200, "parsecs")
  1726. },
  1727. ]
  1728. ))
  1729. characterMakers.push(() => makeCharacter(
  1730. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1731. {
  1732. front: {
  1733. height: math.unit(7, "feet"),
  1734. weight: math.unit(100, "kg"),
  1735. name: "Front",
  1736. image: {
  1737. source: "./media/characters/okuri/front.svg",
  1738. extra: 1,
  1739. bottom: 0.037
  1740. }
  1741. },
  1742. back: {
  1743. height: math.unit(7, "feet"),
  1744. weight: math.unit(100, "kg"),
  1745. name: "Back",
  1746. image: {
  1747. source: "./media/characters/okuri/back.svg",
  1748. extra: 1,
  1749. bottom: 0.007
  1750. }
  1751. },
  1752. },
  1753. [
  1754. {
  1755. name: "Megamacro",
  1756. height: math.unit(100, "miles"),
  1757. default: true
  1758. },
  1759. ]
  1760. ))
  1761. characterMakers.push(() => makeCharacter(
  1762. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1763. {
  1764. front: {
  1765. height: math.unit(7, "feet"),
  1766. weight: math.unit(100, "kg"),
  1767. name: "Front",
  1768. image: {
  1769. source: "./media/characters/manny/front.svg",
  1770. extra: 1,
  1771. bottom: 0.06
  1772. }
  1773. },
  1774. back: {
  1775. height: math.unit(7, "feet"),
  1776. weight: math.unit(100, "kg"),
  1777. name: "Back",
  1778. image: {
  1779. source: "./media/characters/manny/back.svg",
  1780. extra: 1,
  1781. bottom: 0.014
  1782. }
  1783. },
  1784. },
  1785. [
  1786. {
  1787. name: "Normal",
  1788. height: math.unit(7, "feet"),
  1789. },
  1790. {
  1791. name: "Macro",
  1792. height: math.unit(78, "feet"),
  1793. default: true
  1794. },
  1795. {
  1796. name: "Macro+",
  1797. height: math.unit(300, "meters")
  1798. },
  1799. {
  1800. name: "Macro++",
  1801. height: math.unit(2400, "meters")
  1802. },
  1803. {
  1804. name: "Megamacro",
  1805. height: math.unit(5167, "meters")
  1806. },
  1807. {
  1808. name: "Gigamacro",
  1809. height: math.unit(41769, "miles")
  1810. },
  1811. ]
  1812. ))
  1813. characterMakers.push(() => makeCharacter(
  1814. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1815. {
  1816. front: {
  1817. height: math.unit(7, "feet"),
  1818. weight: math.unit(100, "kg"),
  1819. name: "Front",
  1820. image: {
  1821. source: "./media/characters/adake/front-1.svg"
  1822. }
  1823. },
  1824. frontAlt: {
  1825. height: math.unit(7, "feet"),
  1826. weight: math.unit(100, "kg"),
  1827. name: "Front (Alt)",
  1828. image: {
  1829. source: "./media/characters/adake/front-2.svg",
  1830. extra: 1,
  1831. bottom: 0.01
  1832. }
  1833. },
  1834. back: {
  1835. height: math.unit(7, "feet"),
  1836. weight: math.unit(100, "kg"),
  1837. name: "Back",
  1838. image: {
  1839. source: "./media/characters/adake/back.svg",
  1840. }
  1841. },
  1842. kneel: {
  1843. height: math.unit(5.385, "feet"),
  1844. weight: math.unit(100, "kg"),
  1845. name: "Kneeling",
  1846. image: {
  1847. source: "./media/characters/adake/kneel.svg",
  1848. bottom: 0.052
  1849. }
  1850. },
  1851. },
  1852. [
  1853. {
  1854. name: "Normal",
  1855. height: math.unit(7, "feet"),
  1856. },
  1857. {
  1858. name: "Macro",
  1859. height: math.unit(78, "feet"),
  1860. default: true
  1861. },
  1862. {
  1863. name: "Macro+",
  1864. height: math.unit(300, "meters")
  1865. },
  1866. {
  1867. name: "Macro++",
  1868. height: math.unit(2400, "meters")
  1869. },
  1870. {
  1871. name: "Megamacro",
  1872. height: math.unit(5167, "meters")
  1873. },
  1874. {
  1875. name: "Gigamacro",
  1876. height: math.unit(41769, "miles")
  1877. },
  1878. ]
  1879. ))
  1880. characterMakers.push(() => makeCharacter(
  1881. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1882. {
  1883. front: {
  1884. height: math.unit(1.65, "meters"),
  1885. weight: math.unit(50, "kg"),
  1886. name: "Front",
  1887. image: {
  1888. source: "./media/characters/elijah/front.svg",
  1889. extra: 858 / 830,
  1890. bottom: 95.5 / 953.8559
  1891. }
  1892. },
  1893. back: {
  1894. height: math.unit(1.65, "meters"),
  1895. weight: math.unit(50, "kg"),
  1896. name: "Back",
  1897. image: {
  1898. source: "./media/characters/elijah/back.svg",
  1899. extra: 895 / 850,
  1900. bottom: 5.3 / 897.956
  1901. }
  1902. },
  1903. frontNsfw: {
  1904. height: math.unit(1.65, "meters"),
  1905. weight: math.unit(50, "kg"),
  1906. name: "Front (NSFW)",
  1907. image: {
  1908. source: "./media/characters/elijah/front-nsfw.svg",
  1909. extra: 858 / 830,
  1910. bottom: 95.5 / 953.8559
  1911. }
  1912. },
  1913. backNsfw: {
  1914. height: math.unit(1.65, "meters"),
  1915. weight: math.unit(50, "kg"),
  1916. name: "Back (NSFW)",
  1917. image: {
  1918. source: "./media/characters/elijah/back-nsfw.svg",
  1919. extra: 895 / 850,
  1920. bottom: 5.3 / 897.956
  1921. }
  1922. },
  1923. dick: {
  1924. height: math.unit(1, "feet"),
  1925. name: "Dick",
  1926. image: {
  1927. source: "./media/characters/elijah/dick.svg"
  1928. }
  1929. },
  1930. beakOpen: {
  1931. height: math.unit(1.25, "feet"),
  1932. name: "Beak (Open)",
  1933. image: {
  1934. source: "./media/characters/elijah/beak-open.svg"
  1935. }
  1936. },
  1937. beakShut: {
  1938. height: math.unit(1.25, "feet"),
  1939. name: "Beak (Shut)",
  1940. image: {
  1941. source: "./media/characters/elijah/beak-shut.svg"
  1942. }
  1943. },
  1944. footFlexing: {
  1945. height: math.unit(1.61, "feet"),
  1946. name: "Foot (Flexing)",
  1947. image: {
  1948. source: "./media/characters/elijah/foot-flexing.svg"
  1949. }
  1950. },
  1951. footStepping: {
  1952. height: math.unit(1.44, "feet"),
  1953. name: "Foot (Stepping)",
  1954. image: {
  1955. source: "./media/characters/elijah/foot-stepping.svg"
  1956. }
  1957. },
  1958. plantigradeLeg: {
  1959. height: math.unit(2.34, "feet"),
  1960. name: "Plantigrade Leg",
  1961. image: {
  1962. source: "./media/characters/elijah/plantigrade-leg.svg"
  1963. }
  1964. },
  1965. plantigradeFootLeft: {
  1966. height: math.unit(0.9, "feet"),
  1967. name: "Plantigrade Foot (Left)",
  1968. image: {
  1969. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1970. }
  1971. },
  1972. plantigradeFootRight: {
  1973. height: math.unit(0.9, "feet"),
  1974. name: "Plantigrade Foot (Right)",
  1975. image: {
  1976. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1977. }
  1978. },
  1979. },
  1980. [
  1981. {
  1982. name: "Normal",
  1983. height: math.unit(1.65, "meters")
  1984. },
  1985. {
  1986. name: "Macro",
  1987. height: math.unit(55, "meters"),
  1988. default: true
  1989. },
  1990. {
  1991. name: "Macro+",
  1992. height: math.unit(105, "meters")
  1993. },
  1994. ]
  1995. ))
  1996. characterMakers.push(() => makeCharacter(
  1997. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1998. {
  1999. front: {
  2000. height: math.unit(11, "feet"),
  2001. weight: math.unit(80, "kg"),
  2002. name: "Front",
  2003. image: {
  2004. source: "./media/characters/rai/front.svg",
  2005. extra: 1,
  2006. bottom: 0.03
  2007. }
  2008. },
  2009. side: {
  2010. height: math.unit(11, "feet"),
  2011. weight: math.unit(80, "kg"),
  2012. name: "Side",
  2013. image: {
  2014. source: "./media/characters/rai/side.svg"
  2015. }
  2016. },
  2017. back: {
  2018. height: math.unit(11, "feet"),
  2019. weight: math.unit(80, "lb"),
  2020. name: "Back",
  2021. image: {
  2022. source: "./media/characters/rai/back.svg",
  2023. extra: 1,
  2024. bottom: 0.01
  2025. }
  2026. },
  2027. feral: {
  2028. height: math.unit(11, "feet"),
  2029. weight: math.unit(800, "lb"),
  2030. name: "Feral",
  2031. image: {
  2032. source: "./media/characters/rai/feral.svg",
  2033. extra: 1050 / 659,
  2034. bottom: 0.07
  2035. }
  2036. },
  2037. dragon: {
  2038. height: math.unit(23, "feet"),
  2039. weight: math.unit(50000, "lb"),
  2040. name: "Dragon",
  2041. image: {
  2042. source: "./media/characters/rai/dragon.svg",
  2043. extra: 2498 / 2030,
  2044. bottom: 85.2 / 2584
  2045. }
  2046. },
  2047. maw: {
  2048. height: math.unit(6 / 3.81416, "feet"),
  2049. name: "Maw",
  2050. image: {
  2051. source: "./media/characters/rai/maw.svg"
  2052. }
  2053. },
  2054. },
  2055. [
  2056. {
  2057. name: "Normal",
  2058. height: math.unit(11, "feet")
  2059. },
  2060. {
  2061. name: "Macro",
  2062. height: math.unit(302, "feet"),
  2063. default: true
  2064. },
  2065. ]
  2066. ))
  2067. characterMakers.push(() => makeCharacter(
  2068. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2069. {
  2070. frontDressed: {
  2071. height: math.unit(216, "feet"),
  2072. weight: math.unit(7000000, "lb"),
  2073. name: "Front (Dressed)",
  2074. image: {
  2075. source: "./media/characters/jazzy/front-dressed.svg",
  2076. extra: 2738 / 2651,
  2077. bottom: 41.8 / 2786
  2078. }
  2079. },
  2080. backDressed: {
  2081. height: math.unit(216, "feet"),
  2082. weight: math.unit(7000000, "lb"),
  2083. name: "Back (Dressed)",
  2084. image: {
  2085. source: "./media/characters/jazzy/back-dressed.svg",
  2086. extra: 2775 / 2673,
  2087. bottom: 36.8 / 2817
  2088. }
  2089. },
  2090. front: {
  2091. height: math.unit(216, "feet"),
  2092. weight: math.unit(7000000, "lb"),
  2093. name: "Front",
  2094. image: {
  2095. source: "./media/characters/jazzy/front.svg",
  2096. extra: 2738 / 2651,
  2097. bottom: 41.8 / 2786
  2098. }
  2099. },
  2100. back: {
  2101. height: math.unit(216, "feet"),
  2102. weight: math.unit(7000000, "lb"),
  2103. name: "Back",
  2104. image: {
  2105. source: "./media/characters/jazzy/back.svg",
  2106. extra: 2775 / 2673,
  2107. bottom: 36.8 / 2817
  2108. }
  2109. },
  2110. maw: {
  2111. height: math.unit(20, "feet"),
  2112. name: "Maw",
  2113. image: {
  2114. source: "./media/characters/jazzy/maw.svg"
  2115. }
  2116. },
  2117. paws: {
  2118. height: math.unit(27.5, "feet"),
  2119. name: "Paws",
  2120. image: {
  2121. source: "./media/characters/jazzy/paws.svg"
  2122. }
  2123. },
  2124. eye: {
  2125. height: math.unit(4.4, "feet"),
  2126. name: "Eye",
  2127. image: {
  2128. source: "./media/characters/jazzy/eye.svg"
  2129. }
  2130. },
  2131. droneOffense: {
  2132. height: math.unit(9.5, "inches"),
  2133. name: "Drone (Offense)",
  2134. image: {
  2135. source: "./media/characters/jazzy/drone-offense.svg"
  2136. }
  2137. },
  2138. droneRecon: {
  2139. height: math.unit(9.5, "inches"),
  2140. name: "Drone (Recon)",
  2141. image: {
  2142. source: "./media/characters/jazzy/drone-recon.svg"
  2143. }
  2144. },
  2145. droneDefense: {
  2146. height: math.unit(9.5, "inches"),
  2147. name: "Drone (Defense)",
  2148. image: {
  2149. source: "./media/characters/jazzy/drone-defense.svg"
  2150. }
  2151. },
  2152. },
  2153. [
  2154. {
  2155. name: "Macro",
  2156. height: math.unit(216, "feet"),
  2157. default: true
  2158. },
  2159. ]
  2160. ))
  2161. characterMakers.push(() => makeCharacter(
  2162. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2163. {
  2164. front: {
  2165. height: math.unit(7, "feet"),
  2166. weight: math.unit(80, "kg"),
  2167. name: "Front",
  2168. image: {
  2169. source: "./media/characters/flamm/front.svg",
  2170. extra: 1794 / 1677,
  2171. bottom: 31.7 / 1828.5
  2172. }
  2173. },
  2174. },
  2175. [
  2176. {
  2177. name: "Normal",
  2178. height: math.unit(9.5, "feet")
  2179. },
  2180. {
  2181. name: "Macro",
  2182. height: math.unit(200, "feet"),
  2183. default: true
  2184. },
  2185. ]
  2186. ))
  2187. characterMakers.push(() => makeCharacter(
  2188. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2189. {
  2190. front: {
  2191. height: math.unit(7, "feet"),
  2192. weight: math.unit(80, "kg"),
  2193. name: "Front",
  2194. image: {
  2195. source: "./media/characters/zephiro/front.svg",
  2196. extra: 2309 / 2162,
  2197. bottom: 0.069
  2198. }
  2199. },
  2200. side: {
  2201. height: math.unit(7, "feet"),
  2202. weight: math.unit(80, "kg"),
  2203. name: "Side",
  2204. image: {
  2205. source: "./media/characters/zephiro/side.svg",
  2206. extra: 2403 / 2279,
  2207. bottom: 0.015
  2208. }
  2209. },
  2210. back: {
  2211. height: math.unit(7, "feet"),
  2212. weight: math.unit(80, "kg"),
  2213. name: "Back",
  2214. image: {
  2215. source: "./media/characters/zephiro/back.svg",
  2216. extra: 2373 / 2244,
  2217. bottom: 0.013
  2218. }
  2219. },
  2220. },
  2221. [
  2222. {
  2223. name: "Micro",
  2224. height: math.unit(3, "inches")
  2225. },
  2226. {
  2227. name: "Normal",
  2228. height: math.unit(5 + 3 / 12, "feet"),
  2229. default: true
  2230. },
  2231. {
  2232. name: "Macro",
  2233. height: math.unit(118, "feet")
  2234. },
  2235. ]
  2236. ))
  2237. characterMakers.push(() => makeCharacter(
  2238. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2239. {
  2240. front: {
  2241. height: math.unit(5, "feet"),
  2242. weight: math.unit(90, "kg"),
  2243. name: "Front",
  2244. image: {
  2245. source: "./media/characters/fory/front.svg",
  2246. extra: 2862 / 2674,
  2247. bottom: 180 / 3043.8
  2248. }
  2249. },
  2250. back: {
  2251. height: math.unit(5, "feet"),
  2252. weight: math.unit(90, "kg"),
  2253. name: "Back",
  2254. image: {
  2255. source: "./media/characters/fory/back.svg",
  2256. extra: 2962 / 2791,
  2257. bottom: 106 / 3071.8
  2258. }
  2259. },
  2260. foot: {
  2261. height: math.unit(2.14, "feet"),
  2262. name: "Foot",
  2263. image: {
  2264. source: "./media/characters/fory/foot.svg"
  2265. }
  2266. },
  2267. },
  2268. [
  2269. {
  2270. name: "Normal",
  2271. height: math.unit(5, "feet")
  2272. },
  2273. {
  2274. name: "Macro",
  2275. height: math.unit(50, "feet"),
  2276. default: true
  2277. },
  2278. {
  2279. name: "Megamacro",
  2280. height: math.unit(10, "miles")
  2281. },
  2282. {
  2283. name: "Gigamacro",
  2284. height: math.unit(5, "earths")
  2285. },
  2286. ]
  2287. ))
  2288. characterMakers.push(() => makeCharacter(
  2289. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2290. {
  2291. front: {
  2292. height: math.unit(7, "feet"),
  2293. weight: math.unit(90, "kg"),
  2294. name: "Front",
  2295. image: {
  2296. source: "./media/characters/kurrikage/front.svg",
  2297. extra: 1,
  2298. bottom: 0.035
  2299. }
  2300. },
  2301. back: {
  2302. height: math.unit(7, "feet"),
  2303. weight: math.unit(90, "lb"),
  2304. name: "Back",
  2305. image: {
  2306. source: "./media/characters/kurrikage/back.svg"
  2307. }
  2308. },
  2309. paw: {
  2310. height: math.unit(1.5, "feet"),
  2311. name: "Paw",
  2312. image: {
  2313. source: "./media/characters/kurrikage/paw.svg"
  2314. }
  2315. },
  2316. staff: {
  2317. height: math.unit(6.7, "feet"),
  2318. name: "Staff",
  2319. image: {
  2320. source: "./media/characters/kurrikage/staff.svg"
  2321. }
  2322. },
  2323. peek: {
  2324. height: math.unit(1.05, "feet"),
  2325. name: "Peeking",
  2326. image: {
  2327. source: "./media/characters/kurrikage/peek.svg",
  2328. bottom: 0.08
  2329. }
  2330. },
  2331. },
  2332. [
  2333. {
  2334. name: "Normal",
  2335. height: math.unit(12, "feet"),
  2336. default: true
  2337. },
  2338. {
  2339. name: "Big",
  2340. height: math.unit(20, "feet")
  2341. },
  2342. {
  2343. name: "Macro",
  2344. height: math.unit(500, "feet")
  2345. },
  2346. {
  2347. name: "Megamacro",
  2348. height: math.unit(20, "miles")
  2349. },
  2350. ]
  2351. ))
  2352. characterMakers.push(() => makeCharacter(
  2353. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2354. {
  2355. front: {
  2356. height: math.unit(6, "feet"),
  2357. weight: math.unit(75, "kg"),
  2358. name: "Front",
  2359. image: {
  2360. source: "./media/characters/shingo/front.svg",
  2361. extra: 3511 / 3338,
  2362. bottom: 0.005
  2363. }
  2364. },
  2365. paw: {
  2366. height: math.unit(1, "feet"),
  2367. name: "Paw",
  2368. image: {
  2369. source: "./media/characters/shingo/paw.svg"
  2370. }
  2371. },
  2372. },
  2373. [
  2374. {
  2375. name: "Micro",
  2376. height: math.unit(4, "inches")
  2377. },
  2378. {
  2379. name: "Normal",
  2380. height: math.unit(6, "feet"),
  2381. default: true
  2382. },
  2383. {
  2384. name: "Macro",
  2385. height: math.unit(108, "feet")
  2386. },
  2387. {
  2388. name: "Macro+",
  2389. height: math.unit(1500, "feet")
  2390. },
  2391. ]
  2392. ))
  2393. characterMakers.push(() => makeCharacter(
  2394. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2395. {
  2396. side: {
  2397. height: math.unit(6, "feet"),
  2398. weight: math.unit(75, "kg"),
  2399. name: "Side",
  2400. image: {
  2401. source: "./media/characters/aigey/side.svg"
  2402. }
  2403. },
  2404. },
  2405. [
  2406. {
  2407. name: "Macro",
  2408. height: math.unit(200, "feet"),
  2409. default: true
  2410. },
  2411. {
  2412. name: "Megamacro",
  2413. height: math.unit(100, "miles")
  2414. },
  2415. ]
  2416. )
  2417. )
  2418. characterMakers.push(() => makeCharacter(
  2419. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2420. {
  2421. front: {
  2422. height: math.unit(5 + 5 / 12, "feet"),
  2423. weight: math.unit(75, "kg"),
  2424. name: "Front",
  2425. image: {
  2426. source: "./media/characters/natasha/front.svg",
  2427. extra: 859 / 824,
  2428. bottom: 23 / 879.6
  2429. }
  2430. },
  2431. frontNsfw: {
  2432. height: math.unit(5 + 5 / 12, "feet"),
  2433. weight: math.unit(75, "kg"),
  2434. name: "Front (NSFW)",
  2435. image: {
  2436. source: "./media/characters/natasha/front-nsfw.svg",
  2437. extra: 859 / 824,
  2438. bottom: 23 / 879.6
  2439. }
  2440. },
  2441. frontErect: {
  2442. height: math.unit(5 + 5 / 12, "feet"),
  2443. weight: math.unit(75, "kg"),
  2444. name: "Front (Erect)",
  2445. image: {
  2446. source: "./media/characters/natasha/front-erect.svg",
  2447. extra: 859 / 824,
  2448. bottom: 23 / 879.6
  2449. }
  2450. },
  2451. back: {
  2452. height: math.unit(5 + 5 / 12, "feet"),
  2453. weight: math.unit(75, "kg"),
  2454. name: "Back",
  2455. image: {
  2456. source: "./media/characters/natasha/back.svg",
  2457. extra: 887.9 / 852.6,
  2458. bottom: 9.7 / 896.4
  2459. }
  2460. },
  2461. backAlt: {
  2462. height: math.unit(5 + 5 / 12, "feet"),
  2463. weight: math.unit(75, "kg"),
  2464. name: "Back (Alt)",
  2465. image: {
  2466. source: "./media/characters/natasha/back-alt.svg",
  2467. extra: 1236.7 / 1192,
  2468. bottom: 22.3 / 1258.2
  2469. }
  2470. },
  2471. dick: {
  2472. height: math.unit(1.772, "feet"),
  2473. name: "Dick",
  2474. image: {
  2475. source: "./media/characters/natasha/dick.svg"
  2476. }
  2477. },
  2478. paw: {
  2479. height: math.unit(0.250, "meters"),
  2480. name: "Paw",
  2481. image: {
  2482. source: "./media/characters/natasha/paw.svg"
  2483. }
  2484. },
  2485. },
  2486. [
  2487. {
  2488. name: "Normal",
  2489. height: math.unit(5 + 5 / 12, "feet")
  2490. },
  2491. {
  2492. name: "Large",
  2493. height: math.unit(12, "feet")
  2494. },
  2495. {
  2496. name: "Macro",
  2497. height: math.unit(100, "feet"),
  2498. default: true
  2499. },
  2500. {
  2501. name: "Macro+",
  2502. height: math.unit(260, "feet")
  2503. },
  2504. {
  2505. name: "Macro++",
  2506. height: math.unit(1, "mile")
  2507. },
  2508. ]
  2509. ))
  2510. characterMakers.push(() => makeCharacter(
  2511. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2512. {
  2513. front: {
  2514. height: math.unit(6, "feet"),
  2515. weight: math.unit(75, "kg"),
  2516. name: "Front",
  2517. image: {
  2518. source: "./media/characters/malik/front.svg"
  2519. }
  2520. },
  2521. side: {
  2522. height: math.unit(6, "feet"),
  2523. weight: math.unit(75, "kg"),
  2524. name: "Side",
  2525. image: {
  2526. source: "./media/characters/malik/side.svg",
  2527. extra: 1.1539
  2528. }
  2529. },
  2530. back: {
  2531. height: math.unit(6, "feet"),
  2532. weight: math.unit(75, "kg"),
  2533. name: "Back",
  2534. image: {
  2535. source: "./media/characters/malik/back.svg"
  2536. }
  2537. },
  2538. },
  2539. [
  2540. {
  2541. name: "Macro",
  2542. height: math.unit(156, "feet"),
  2543. default: true
  2544. },
  2545. {
  2546. name: "Macro+",
  2547. height: math.unit(1188, "feet")
  2548. },
  2549. ]
  2550. ))
  2551. characterMakers.push(() => makeCharacter(
  2552. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2553. {
  2554. front: {
  2555. height: math.unit(6, "feet"),
  2556. weight: math.unit(75, "kg"),
  2557. name: "Front",
  2558. image: {
  2559. source: "./media/characters/sefer/front.svg",
  2560. extra: 848 / 659,
  2561. bottom: 28.3 / 876.442
  2562. }
  2563. },
  2564. back: {
  2565. height: math.unit(6, "feet"),
  2566. weight: math.unit(75, "kg"),
  2567. name: "Back",
  2568. image: {
  2569. source: "./media/characters/sefer/back.svg",
  2570. extra: 864 / 695,
  2571. bottom: 10 / 871
  2572. }
  2573. },
  2574. frontDressed: {
  2575. height: math.unit(6, "feet"),
  2576. weight: math.unit(75, "kg"),
  2577. name: "Front (Dressed)",
  2578. image: {
  2579. source: "./media/characters/sefer/front-dressed.svg",
  2580. extra: 839 / 653,
  2581. bottom: 37.6 / 878
  2582. }
  2583. },
  2584. },
  2585. [
  2586. {
  2587. name: "Normal",
  2588. height: math.unit(6, "feet"),
  2589. default: true
  2590. },
  2591. ]
  2592. ))
  2593. characterMakers.push(() => makeCharacter(
  2594. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2595. {
  2596. body: {
  2597. height: math.unit(2.2428, "meter"),
  2598. weight: math.unit(124.738, "kg"),
  2599. name: "Body",
  2600. image: {
  2601. extra: 1225 / 1050,
  2602. source: "./media/characters/north/front.svg"
  2603. }
  2604. }
  2605. },
  2606. [
  2607. {
  2608. name: "Micro",
  2609. height: math.unit(4, "inches")
  2610. },
  2611. {
  2612. name: "Macro",
  2613. height: math.unit(63, "meters")
  2614. },
  2615. {
  2616. name: "Megamacro",
  2617. height: math.unit(101, "miles"),
  2618. default: true
  2619. }
  2620. ]
  2621. ))
  2622. characterMakers.push(() => makeCharacter(
  2623. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2624. {
  2625. angled: {
  2626. height: math.unit(4, "meter"),
  2627. weight: math.unit(150, "kg"),
  2628. name: "Angled",
  2629. image: {
  2630. source: "./media/characters/talan/angled-sfw.svg",
  2631. bottom: 29 / 3734
  2632. }
  2633. },
  2634. angledNsfw: {
  2635. height: math.unit(4, "meter"),
  2636. weight: math.unit(150, "kg"),
  2637. name: "Angled (NSFW)",
  2638. image: {
  2639. source: "./media/characters/talan/angled-nsfw.svg",
  2640. bottom: 29 / 3734
  2641. }
  2642. },
  2643. frontNsfw: {
  2644. height: math.unit(4, "meter"),
  2645. weight: math.unit(150, "kg"),
  2646. name: "Front (NSFW)",
  2647. image: {
  2648. source: "./media/characters/talan/front-nsfw.svg",
  2649. bottom: 29 / 3734
  2650. }
  2651. },
  2652. sideNsfw: {
  2653. height: math.unit(4, "meter"),
  2654. weight: math.unit(150, "kg"),
  2655. name: "Side (NSFW)",
  2656. image: {
  2657. source: "./media/characters/talan/side-nsfw.svg",
  2658. bottom: 29 / 3734
  2659. }
  2660. },
  2661. back: {
  2662. height: math.unit(4, "meter"),
  2663. weight: math.unit(150, "kg"),
  2664. name: "Back",
  2665. image: {
  2666. source: "./media/characters/talan/back.svg"
  2667. }
  2668. },
  2669. dickBottom: {
  2670. height: math.unit(0.621, "meter"),
  2671. name: "Dick (Bottom)",
  2672. image: {
  2673. source: "./media/characters/talan/dick-bottom.svg"
  2674. }
  2675. },
  2676. dickTop: {
  2677. height: math.unit(0.621, "meter"),
  2678. name: "Dick (Top)",
  2679. image: {
  2680. source: "./media/characters/talan/dick-top.svg"
  2681. }
  2682. },
  2683. dickSide: {
  2684. height: math.unit(0.305, "meter"),
  2685. name: "Dick (Side)",
  2686. image: {
  2687. source: "./media/characters/talan/dick-side.svg"
  2688. }
  2689. },
  2690. dickFront: {
  2691. height: math.unit(0.305, "meter"),
  2692. name: "Dick (Front)",
  2693. image: {
  2694. source: "./media/characters/talan/dick-front.svg"
  2695. }
  2696. },
  2697. },
  2698. [
  2699. {
  2700. name: "Normal",
  2701. height: math.unit(4, "meters")
  2702. },
  2703. {
  2704. name: "Macro",
  2705. height: math.unit(100, "meters")
  2706. },
  2707. {
  2708. name: "Megamacro",
  2709. height: math.unit(2, "miles"),
  2710. default: true
  2711. },
  2712. {
  2713. name: "Gigamacro",
  2714. height: math.unit(5000, "miles")
  2715. },
  2716. {
  2717. name: "Teramacro",
  2718. height: math.unit(100, "parsecs")
  2719. }
  2720. ]
  2721. ))
  2722. characterMakers.push(() => makeCharacter(
  2723. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2724. {
  2725. front: {
  2726. height: math.unit(2, "meter"),
  2727. weight: math.unit(90, "kg"),
  2728. name: "Front",
  2729. image: {
  2730. source: "./media/characters/gael'rathus/front.svg"
  2731. }
  2732. },
  2733. frontAlt: {
  2734. height: math.unit(2, "meter"),
  2735. weight: math.unit(90, "kg"),
  2736. name: "Front (alt)",
  2737. image: {
  2738. source: "./media/characters/gael'rathus/front-alt.svg"
  2739. }
  2740. },
  2741. frontAlt2: {
  2742. height: math.unit(2, "meter"),
  2743. weight: math.unit(90, "kg"),
  2744. name: "Front (alt 2)",
  2745. image: {
  2746. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2747. }
  2748. }
  2749. },
  2750. [
  2751. {
  2752. name: "Normal",
  2753. height: math.unit(9, "feet"),
  2754. default: true
  2755. },
  2756. {
  2757. name: "Large",
  2758. height: math.unit(25, "feet")
  2759. },
  2760. {
  2761. name: "Macro",
  2762. height: math.unit(0.25, "miles")
  2763. },
  2764. {
  2765. name: "Megamacro",
  2766. height: math.unit(10, "miles")
  2767. }
  2768. ]
  2769. ))
  2770. characterMakers.push(() => makeCharacter(
  2771. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2772. {
  2773. side: {
  2774. height: math.unit(2, "meter"),
  2775. weight: math.unit(140, "kg"),
  2776. name: "Side",
  2777. image: {
  2778. source: "./media/characters/sosha/side.svg",
  2779. bottom: 0.042
  2780. }
  2781. },
  2782. },
  2783. [
  2784. {
  2785. name: "Normal",
  2786. height: math.unit(12, "feet"),
  2787. default: true
  2788. }
  2789. ]
  2790. ))
  2791. characterMakers.push(() => makeCharacter(
  2792. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2793. {
  2794. side: {
  2795. height: math.unit(5 + 5 / 12, "feet"),
  2796. weight: math.unit(170, "kg"),
  2797. name: "Side",
  2798. image: {
  2799. source: "./media/characters/runnola/side.svg",
  2800. extra: 741 / 448,
  2801. bottom: 0.05
  2802. }
  2803. },
  2804. },
  2805. [
  2806. {
  2807. name: "Small",
  2808. height: math.unit(3, "feet")
  2809. },
  2810. {
  2811. name: "Normal",
  2812. height: math.unit(5 + 5 / 12, "feet"),
  2813. default: true
  2814. },
  2815. {
  2816. name: "Big",
  2817. height: math.unit(10, "feet")
  2818. },
  2819. ]
  2820. ))
  2821. characterMakers.push(() => makeCharacter(
  2822. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2823. {
  2824. front: {
  2825. height: math.unit(2, "meter"),
  2826. weight: math.unit(50, "kg"),
  2827. name: "Front",
  2828. image: {
  2829. source: "./media/characters/kurribird/front.svg",
  2830. bottom: 0.015
  2831. }
  2832. },
  2833. frontAlt: {
  2834. height: math.unit(1.5, "meter"),
  2835. weight: math.unit(50, "kg"),
  2836. name: "Front (Alt)",
  2837. image: {
  2838. source: "./media/characters/kurribird/front-alt.svg",
  2839. extra: 1.45
  2840. }
  2841. },
  2842. },
  2843. [
  2844. {
  2845. name: "Normal",
  2846. height: math.unit(7, "feet")
  2847. },
  2848. {
  2849. name: "Big",
  2850. height: math.unit(12, "feet"),
  2851. default: true
  2852. },
  2853. {
  2854. name: "Macro",
  2855. height: math.unit(1500, "feet")
  2856. },
  2857. {
  2858. name: "Megamacro",
  2859. height: math.unit(2, "miles")
  2860. }
  2861. ]
  2862. ))
  2863. characterMakers.push(() => makeCharacter(
  2864. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2865. {
  2866. front: {
  2867. height: math.unit(2, "meter"),
  2868. weight: math.unit(80, "kg"),
  2869. name: "Front",
  2870. image: {
  2871. source: "./media/characters/elbial/front.svg",
  2872. extra: 1643 / 1556,
  2873. bottom: 60.2 / 1696
  2874. }
  2875. },
  2876. side: {
  2877. height: math.unit(2, "meter"),
  2878. weight: math.unit(80, "kg"),
  2879. name: "Side",
  2880. image: {
  2881. source: "./media/characters/elbial/side.svg",
  2882. extra: 1630 / 1565,
  2883. bottom: 71.5 / 1697
  2884. }
  2885. },
  2886. back: {
  2887. height: math.unit(2, "meter"),
  2888. weight: math.unit(80, "kg"),
  2889. name: "Back",
  2890. image: {
  2891. source: "./media/characters/elbial/back.svg",
  2892. extra: 1668 / 1595,
  2893. bottom: 5.6 / 1672
  2894. }
  2895. },
  2896. frontDressed: {
  2897. height: math.unit(2, "meter"),
  2898. weight: math.unit(80, "kg"),
  2899. name: "Front (Dressed)",
  2900. image: {
  2901. source: "./media/characters/elbial/front-dressed.svg",
  2902. extra: 1653 / 1584,
  2903. bottom: 57 / 1708
  2904. }
  2905. },
  2906. genitals: {
  2907. height: math.unit(2 / 3.367, "meter"),
  2908. name: "Genitals",
  2909. image: {
  2910. source: "./media/characters/elbial/genitals.svg"
  2911. }
  2912. },
  2913. },
  2914. [
  2915. {
  2916. name: "Large",
  2917. height: math.unit(100, "feet")
  2918. },
  2919. {
  2920. name: "Macro",
  2921. height: math.unit(500, "feet"),
  2922. default: true
  2923. },
  2924. {
  2925. name: "Megamacro",
  2926. height: math.unit(10, "miles")
  2927. },
  2928. {
  2929. name: "Gigamacro",
  2930. height: math.unit(25000, "miles")
  2931. },
  2932. {
  2933. name: "Full-Size",
  2934. height: math.unit(8000000, "gigaparsecs")
  2935. }
  2936. ]
  2937. ))
  2938. characterMakers.push(() => makeCharacter(
  2939. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2940. {
  2941. front: {
  2942. height: math.unit(2, "meter"),
  2943. weight: math.unit(60, "kg"),
  2944. name: "Front",
  2945. image: {
  2946. source: "./media/characters/noah/front.svg"
  2947. }
  2948. },
  2949. talons: {
  2950. height: math.unit(0.315, "meter"),
  2951. name: "Talons",
  2952. image: {
  2953. source: "./media/characters/noah/talons.svg"
  2954. }
  2955. }
  2956. },
  2957. [
  2958. {
  2959. name: "Large",
  2960. height: math.unit(50, "feet")
  2961. },
  2962. {
  2963. name: "Macro",
  2964. height: math.unit(750, "feet"),
  2965. default: true
  2966. },
  2967. {
  2968. name: "Megamacro",
  2969. height: math.unit(50, "miles")
  2970. },
  2971. {
  2972. name: "Gigamacro",
  2973. height: math.unit(100000, "miles")
  2974. },
  2975. {
  2976. name: "Full-Size",
  2977. height: math.unit(3000000000, "miles")
  2978. }
  2979. ]
  2980. ))
  2981. characterMakers.push(() => makeCharacter(
  2982. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2983. {
  2984. front: {
  2985. height: math.unit(2, "meter"),
  2986. weight: math.unit(80, "kg"),
  2987. name: "Front",
  2988. image: {
  2989. source: "./media/characters/natalya/front.svg"
  2990. }
  2991. },
  2992. back: {
  2993. height: math.unit(2, "meter"),
  2994. weight: math.unit(80, "kg"),
  2995. name: "Back",
  2996. image: {
  2997. source: "./media/characters/natalya/back.svg"
  2998. }
  2999. }
  3000. },
  3001. [
  3002. {
  3003. name: "Normal",
  3004. height: math.unit(150, "feet"),
  3005. default: true
  3006. },
  3007. {
  3008. name: "Megamacro",
  3009. height: math.unit(5, "miles")
  3010. },
  3011. {
  3012. name: "Full-Size",
  3013. height: math.unit(600, "kiloparsecs")
  3014. }
  3015. ]
  3016. ))
  3017. characterMakers.push(() => makeCharacter(
  3018. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3019. {
  3020. front: {
  3021. height: math.unit(2, "meter"),
  3022. weight: math.unit(50, "kg"),
  3023. name: "Front",
  3024. image: {
  3025. source: "./media/characters/erestrebah/front.svg",
  3026. extra: 208 / 193,
  3027. bottom: 0.055
  3028. }
  3029. },
  3030. back: {
  3031. height: math.unit(2, "meter"),
  3032. weight: math.unit(50, "kg"),
  3033. name: "Back",
  3034. image: {
  3035. source: "./media/characters/erestrebah/back.svg",
  3036. extra: 1.3
  3037. }
  3038. }
  3039. },
  3040. [
  3041. {
  3042. name: "Normal",
  3043. height: math.unit(10, "feet")
  3044. },
  3045. {
  3046. name: "Large",
  3047. height: math.unit(50, "feet"),
  3048. default: true
  3049. },
  3050. {
  3051. name: "Macro",
  3052. height: math.unit(300, "feet")
  3053. },
  3054. {
  3055. name: "Macro+",
  3056. height: math.unit(750, "feet")
  3057. },
  3058. {
  3059. name: "Megamacro",
  3060. height: math.unit(3, "miles")
  3061. }
  3062. ]
  3063. ))
  3064. characterMakers.push(() => makeCharacter(
  3065. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3066. {
  3067. front: {
  3068. height: math.unit(2, "meter"),
  3069. weight: math.unit(80, "kg"),
  3070. name: "Front",
  3071. image: {
  3072. source: "./media/characters/jennifer/front.svg",
  3073. bottom: 0.11,
  3074. extra: 1.16
  3075. }
  3076. },
  3077. frontAlt: {
  3078. height: math.unit(2, "meter"),
  3079. weight: math.unit(80, "kg"),
  3080. name: "Front (Alt)",
  3081. image: {
  3082. source: "./media/characters/jennifer/front-alt.svg"
  3083. }
  3084. }
  3085. },
  3086. [
  3087. {
  3088. name: "Canon Height",
  3089. height: math.unit(120, "feet"),
  3090. default: true
  3091. },
  3092. {
  3093. name: "Macro+",
  3094. height: math.unit(300, "feet")
  3095. },
  3096. {
  3097. name: "Megamacro",
  3098. height: math.unit(20000, "feet")
  3099. }
  3100. ]
  3101. ))
  3102. characterMakers.push(() => makeCharacter(
  3103. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3104. {
  3105. front: {
  3106. height: math.unit(2, "meter"),
  3107. weight: math.unit(50, "kg"),
  3108. name: "Front",
  3109. image: {
  3110. source: "./media/characters/kalista/front.svg",
  3111. extra: 1947 / 1700,
  3112. bottom: 76.6 / 1412.98
  3113. }
  3114. },
  3115. back: {
  3116. height: math.unit(2, "meter"),
  3117. weight: math.unit(50, "kg"),
  3118. name: "Back",
  3119. image: {
  3120. source: "./media/characters/kalista/back.svg",
  3121. extra: 1366 / 1156,
  3122. bottom: 33.9 / 1362.78
  3123. }
  3124. }
  3125. },
  3126. [
  3127. {
  3128. name: "Uncomfortably Small",
  3129. height: math.unit(10, "feet")
  3130. },
  3131. {
  3132. name: "Small",
  3133. height: math.unit(30, "feet")
  3134. },
  3135. {
  3136. name: "Macro",
  3137. height: math.unit(100, "feet"),
  3138. default: true
  3139. },
  3140. {
  3141. name: "Macro+",
  3142. height: math.unit(2000, "feet")
  3143. },
  3144. {
  3145. name: "True Form",
  3146. height: math.unit(8924, "miles")
  3147. }
  3148. ]
  3149. ))
  3150. characterMakers.push(() => makeCharacter(
  3151. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3152. {
  3153. front: {
  3154. height: math.unit(2, "meter"),
  3155. weight: math.unit(120, "kg"),
  3156. name: "Front",
  3157. image: {
  3158. source: "./media/characters/ggv/front.svg"
  3159. }
  3160. },
  3161. side: {
  3162. height: math.unit(2, "meter"),
  3163. weight: math.unit(120, "kg"),
  3164. name: "Side",
  3165. image: {
  3166. source: "./media/characters/ggv/side.svg"
  3167. }
  3168. }
  3169. },
  3170. [
  3171. {
  3172. name: "Extremely Puny",
  3173. height: math.unit(9 + 5 / 12, "feet")
  3174. },
  3175. {
  3176. name: "Horribly Small",
  3177. height: math.unit(47.7, "miles"),
  3178. default: true
  3179. },
  3180. {
  3181. name: "Reasonably Sized",
  3182. height: math.unit(25000, "parsecs")
  3183. },
  3184. {
  3185. name: "Slightly Uncompressed",
  3186. height: math.unit(7.77e31, "parsecs")
  3187. },
  3188. {
  3189. name: "Omniversal",
  3190. height: math.unit(1e300, "meters")
  3191. },
  3192. ]
  3193. ))
  3194. characterMakers.push(() => makeCharacter(
  3195. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3196. {
  3197. front: {
  3198. height: math.unit(2, "meter"),
  3199. weight: math.unit(75, "lb"),
  3200. name: "Front",
  3201. image: {
  3202. source: "./media/characters/napalm/front.svg"
  3203. }
  3204. },
  3205. back: {
  3206. height: math.unit(2, "meter"),
  3207. weight: math.unit(75, "lb"),
  3208. name: "Back",
  3209. image: {
  3210. source: "./media/characters/napalm/back.svg"
  3211. }
  3212. }
  3213. },
  3214. [
  3215. {
  3216. name: "Standard",
  3217. height: math.unit(55, "feet"),
  3218. default: true
  3219. }
  3220. ]
  3221. ))
  3222. characterMakers.push(() => makeCharacter(
  3223. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3224. {
  3225. front: {
  3226. height: math.unit(7 + 5 / 6, "feet"),
  3227. weight: math.unit(325, "lb"),
  3228. name: "Front",
  3229. image: {
  3230. source: "./media/characters/asana/front.svg",
  3231. extra: 1133 / 1060,
  3232. bottom: 15.2 / 1148.6
  3233. }
  3234. },
  3235. back: {
  3236. height: math.unit(7 + 5 / 6, "feet"),
  3237. weight: math.unit(325, "lb"),
  3238. name: "Back",
  3239. image: {
  3240. source: "./media/characters/asana/back.svg",
  3241. extra: 1114 / 1043,
  3242. bottom: 5 / 1120
  3243. }
  3244. },
  3245. dressedDark: {
  3246. height: math.unit(7 + 5 / 6, "feet"),
  3247. weight: math.unit(325, "lb"),
  3248. name: "Dressed (Dark)",
  3249. image: {
  3250. source: "./media/characters/asana/dressed-dark.svg",
  3251. extra: 1133 / 1060,
  3252. bottom: 15.2 / 1148.6
  3253. }
  3254. },
  3255. dressedLight: {
  3256. height: math.unit(7 + 5 / 6, "feet"),
  3257. weight: math.unit(325, "lb"),
  3258. name: "Dressed (Light)",
  3259. image: {
  3260. source: "./media/characters/asana/dressed-light.svg",
  3261. extra: 1133 / 1060,
  3262. bottom: 15.2 / 1148.6
  3263. }
  3264. },
  3265. },
  3266. [
  3267. {
  3268. name: "Standard",
  3269. height: math.unit(7 + 5 / 6, "feet"),
  3270. default: true
  3271. },
  3272. {
  3273. name: "Large",
  3274. height: math.unit(10, "meters")
  3275. },
  3276. {
  3277. name: "Macro",
  3278. height: math.unit(2500, "meters")
  3279. },
  3280. {
  3281. name: "Megamacro",
  3282. height: math.unit(5e6, "meters")
  3283. },
  3284. {
  3285. name: "Examacro",
  3286. height: math.unit(5e12, "lightyears")
  3287. },
  3288. {
  3289. name: "Max Size",
  3290. height: math.unit(1e31, "lightyears")
  3291. }
  3292. ]
  3293. ))
  3294. characterMakers.push(() => makeCharacter(
  3295. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3296. {
  3297. front: {
  3298. height: math.unit(2, "meter"),
  3299. weight: math.unit(60, "kg"),
  3300. name: "Front",
  3301. image: {
  3302. source: "./media/characters/ebony/front.svg",
  3303. bottom: 0.03,
  3304. extra: 1045 / 810 + 0.03
  3305. }
  3306. },
  3307. side: {
  3308. height: math.unit(2, "meter"),
  3309. weight: math.unit(60, "kg"),
  3310. name: "Side",
  3311. image: {
  3312. source: "./media/characters/ebony/side.svg",
  3313. bottom: 0.03,
  3314. extra: 1045 / 810 + 0.03
  3315. }
  3316. },
  3317. back: {
  3318. height: math.unit(2, "meter"),
  3319. weight: math.unit(60, "kg"),
  3320. name: "Back",
  3321. image: {
  3322. source: "./media/characters/ebony/back.svg",
  3323. bottom: 0.01,
  3324. extra: 1045 / 810 + 0.01
  3325. }
  3326. },
  3327. },
  3328. [
  3329. // TODO check why I did this lol
  3330. {
  3331. name: "Standard",
  3332. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3333. default: true
  3334. },
  3335. {
  3336. name: "Macro",
  3337. height: math.unit(200, "feet")
  3338. },
  3339. {
  3340. name: "Gigamacro",
  3341. height: math.unit(13000, "km")
  3342. }
  3343. ]
  3344. ))
  3345. characterMakers.push(() => makeCharacter(
  3346. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3347. {
  3348. front: {
  3349. height: math.unit(6, "feet"),
  3350. weight: math.unit(175, "lb"),
  3351. name: "Front",
  3352. image: {
  3353. source: "./media/characters/mountain/front.svg",
  3354. extra: 972 / 955,
  3355. bottom: 64 / 1036.6
  3356. }
  3357. },
  3358. back: {
  3359. height: math.unit(6, "feet"),
  3360. weight: math.unit(175, "lb"),
  3361. name: "Back",
  3362. image: {
  3363. source: "./media/characters/mountain/back.svg",
  3364. extra: 970 / 950,
  3365. bottom: 28.25 / 999
  3366. }
  3367. },
  3368. },
  3369. [
  3370. {
  3371. name: "Large",
  3372. height: math.unit(20, "meters")
  3373. },
  3374. {
  3375. name: "Macro",
  3376. height: math.unit(300, "meters")
  3377. },
  3378. {
  3379. name: "Gigamacro",
  3380. height: math.unit(10000, "km"),
  3381. default: true
  3382. },
  3383. {
  3384. name: "Examacro",
  3385. height: math.unit(10e9, "lightyears")
  3386. }
  3387. ]
  3388. ))
  3389. characterMakers.push(() => makeCharacter(
  3390. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3391. {
  3392. front: {
  3393. height: math.unit(8, "feet"),
  3394. weight: math.unit(500, "lb"),
  3395. name: "Front",
  3396. image: {
  3397. source: "./media/characters/rick/front.svg"
  3398. }
  3399. }
  3400. },
  3401. [
  3402. {
  3403. name: "Normal",
  3404. height: math.unit(8, "feet"),
  3405. default: true
  3406. },
  3407. {
  3408. name: "Macro",
  3409. height: math.unit(5, "km")
  3410. }
  3411. ]
  3412. ))
  3413. characterMakers.push(() => makeCharacter(
  3414. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3415. {
  3416. front: {
  3417. height: math.unit(8, "feet"),
  3418. weight: math.unit(120, "lb"),
  3419. name: "Front",
  3420. image: {
  3421. source: "./media/characters/ona/front.svg"
  3422. }
  3423. },
  3424. frontAlt: {
  3425. height: math.unit(8, "feet"),
  3426. weight: math.unit(120, "lb"),
  3427. name: "Front (Alt)",
  3428. image: {
  3429. source: "./media/characters/ona/front-alt.svg"
  3430. }
  3431. },
  3432. back: {
  3433. height: math.unit(8, "feet"),
  3434. weight: math.unit(120, "lb"),
  3435. name: "Back",
  3436. image: {
  3437. source: "./media/characters/ona/back.svg"
  3438. }
  3439. },
  3440. foot: {
  3441. height: math.unit(1.1, "feet"),
  3442. name: "Foot",
  3443. image: {
  3444. source: "./media/characters/ona/foot.svg"
  3445. }
  3446. }
  3447. },
  3448. [
  3449. {
  3450. name: "Megamacro",
  3451. height: math.unit(70, "km"),
  3452. default: true
  3453. },
  3454. {
  3455. name: "Gigamacro",
  3456. height: math.unit(681818, "miles")
  3457. },
  3458. {
  3459. name: "Examacro",
  3460. height: math.unit(3800000, "lightyears")
  3461. },
  3462. ]
  3463. ))
  3464. characterMakers.push(() => makeCharacter(
  3465. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3466. {
  3467. front: {
  3468. height: math.unit(12, "feet"),
  3469. weight: math.unit(3000, "lb"),
  3470. name: "Front",
  3471. image: {
  3472. source: "./media/characters/mech/front.svg",
  3473. extra: 2900 / 2770,
  3474. bottom: 110 / 3010
  3475. }
  3476. },
  3477. back: {
  3478. height: math.unit(12, "feet"),
  3479. weight: math.unit(3000, "lb"),
  3480. name: "Back",
  3481. image: {
  3482. source: "./media/characters/mech/back.svg",
  3483. extra: 3011 / 2890,
  3484. bottom: 94 / 3105
  3485. }
  3486. },
  3487. maw: {
  3488. height: math.unit(3.07, "feet"),
  3489. name: "Maw",
  3490. image: {
  3491. source: "./media/characters/mech/maw.svg"
  3492. }
  3493. },
  3494. head: {
  3495. height: math.unit(2.82, "feet"),
  3496. name: "Head",
  3497. image: {
  3498. source: "./media/characters/mech/head.svg"
  3499. }
  3500. },
  3501. dick: {
  3502. height: math.unit(1.43, "feet"),
  3503. name: "Dick",
  3504. image: {
  3505. source: "./media/characters/mech/dick.svg"
  3506. }
  3507. },
  3508. },
  3509. [
  3510. {
  3511. name: "Normal",
  3512. height: math.unit(12, "feet")
  3513. },
  3514. {
  3515. name: "Macro",
  3516. height: math.unit(300, "feet"),
  3517. default: true
  3518. },
  3519. {
  3520. name: "Macro+",
  3521. height: math.unit(1500, "feet")
  3522. },
  3523. ]
  3524. ))
  3525. characterMakers.push(() => makeCharacter(
  3526. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3527. {
  3528. front: {
  3529. height: math.unit(1.3, "meter"),
  3530. weight: math.unit(30, "kg"),
  3531. name: "Front",
  3532. image: {
  3533. source: "./media/characters/gregory/front.svg",
  3534. }
  3535. }
  3536. },
  3537. [
  3538. {
  3539. name: "Normal",
  3540. height: math.unit(1.3, "meter"),
  3541. default: true
  3542. },
  3543. {
  3544. name: "Macro",
  3545. height: math.unit(20, "meter")
  3546. }
  3547. ]
  3548. ))
  3549. characterMakers.push(() => makeCharacter(
  3550. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3551. {
  3552. front: {
  3553. height: math.unit(2.8, "meter"),
  3554. weight: math.unit(200, "kg"),
  3555. name: "Front",
  3556. image: {
  3557. source: "./media/characters/elory/front.svg",
  3558. }
  3559. }
  3560. },
  3561. [
  3562. {
  3563. name: "Normal",
  3564. height: math.unit(2.8, "meter"),
  3565. default: true
  3566. },
  3567. {
  3568. name: "Macro",
  3569. height: math.unit(38, "meter")
  3570. }
  3571. ]
  3572. ))
  3573. characterMakers.push(() => makeCharacter(
  3574. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3575. {
  3576. front: {
  3577. height: math.unit(470, "feet"),
  3578. weight: math.unit(924, "tons"),
  3579. name: "Front",
  3580. image: {
  3581. source: "./media/characters/angelpatamon/front.svg",
  3582. }
  3583. }
  3584. },
  3585. [
  3586. {
  3587. name: "Normal",
  3588. height: math.unit(470, "feet"),
  3589. default: true
  3590. },
  3591. {
  3592. name: "Deity Size I",
  3593. height: math.unit(28651.2, "km")
  3594. },
  3595. {
  3596. name: "Deity Size II",
  3597. height: math.unit(171907.2, "km")
  3598. }
  3599. ]
  3600. ))
  3601. characterMakers.push(() => makeCharacter(
  3602. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3603. {
  3604. side: {
  3605. height: math.unit(7.2, "meter"),
  3606. weight: math.unit(8.2, "tons"),
  3607. name: "Side",
  3608. image: {
  3609. source: "./media/characters/cryae/side.svg",
  3610. extra: 3500 / 1500
  3611. }
  3612. }
  3613. },
  3614. [
  3615. {
  3616. name: "Normal",
  3617. height: math.unit(7.2, "meter"),
  3618. default: true
  3619. }
  3620. ]
  3621. ))
  3622. characterMakers.push(() => makeCharacter(
  3623. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3624. {
  3625. front: {
  3626. height: math.unit(6, "feet"),
  3627. weight: math.unit(175, "lb"),
  3628. name: "Front",
  3629. image: {
  3630. source: "./media/characters/xera/front.svg",
  3631. extra: 2377 / 1972,
  3632. bottom: 75.5 / 2452
  3633. }
  3634. },
  3635. side: {
  3636. height: math.unit(6, "feet"),
  3637. weight: math.unit(175, "lb"),
  3638. name: "Side",
  3639. image: {
  3640. source: "./media/characters/xera/side.svg",
  3641. extra: 2345 / 2019,
  3642. bottom: 39.7 / 2384
  3643. }
  3644. },
  3645. back: {
  3646. height: math.unit(6, "feet"),
  3647. weight: math.unit(175, "lb"),
  3648. name: "Back",
  3649. image: {
  3650. source: "./media/characters/xera/back.svg",
  3651. extra: 2095 / 1984,
  3652. bottom: 67 / 2166
  3653. }
  3654. },
  3655. },
  3656. [
  3657. {
  3658. name: "Small",
  3659. height: math.unit(10, "feet")
  3660. },
  3661. {
  3662. name: "Macro",
  3663. height: math.unit(500, "meters"),
  3664. default: true
  3665. },
  3666. {
  3667. name: "Macro+",
  3668. height: math.unit(10, "km")
  3669. },
  3670. {
  3671. name: "Gigamacro",
  3672. height: math.unit(25000, "km")
  3673. },
  3674. {
  3675. name: "Teramacro",
  3676. height: math.unit(3e6, "km")
  3677. }
  3678. ]
  3679. ))
  3680. characterMakers.push(() => makeCharacter(
  3681. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3682. {
  3683. front: {
  3684. height: math.unit(6, "feet"),
  3685. weight: math.unit(175, "lb"),
  3686. name: "Front",
  3687. image: {
  3688. source: "./media/characters/nebula/front.svg",
  3689. extra: 2566 / 2362,
  3690. bottom: 81 / 2644
  3691. }
  3692. }
  3693. },
  3694. [
  3695. {
  3696. name: "Small",
  3697. height: math.unit(4.5, "meters")
  3698. },
  3699. {
  3700. name: "Macro",
  3701. height: math.unit(1500, "meters"),
  3702. default: true
  3703. },
  3704. {
  3705. name: "Megamacro",
  3706. height: math.unit(150, "km")
  3707. },
  3708. {
  3709. name: "Gigamacro",
  3710. height: math.unit(27000, "km")
  3711. }
  3712. ]
  3713. ))
  3714. characterMakers.push(() => makeCharacter(
  3715. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3716. {
  3717. front: {
  3718. height: math.unit(6, "feet"),
  3719. weight: math.unit(225, "lb"),
  3720. name: "Front",
  3721. image: {
  3722. source: "./media/characters/abysgar/front.svg"
  3723. }
  3724. }
  3725. },
  3726. [
  3727. {
  3728. name: "Small",
  3729. height: math.unit(4.5, "meters")
  3730. },
  3731. {
  3732. name: "Macro",
  3733. height: math.unit(1250, "meters"),
  3734. default: true
  3735. },
  3736. {
  3737. name: "Megamacro",
  3738. height: math.unit(125, "km")
  3739. },
  3740. {
  3741. name: "Gigamacro",
  3742. height: math.unit(26000, "km")
  3743. }
  3744. ]
  3745. ))
  3746. characterMakers.push(() => makeCharacter(
  3747. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3748. {
  3749. front: {
  3750. height: math.unit(6, "feet"),
  3751. weight: math.unit(180, "lb"),
  3752. name: "Front",
  3753. image: {
  3754. source: "./media/characters/yakuz/front.svg"
  3755. }
  3756. }
  3757. },
  3758. [
  3759. {
  3760. name: "Small",
  3761. height: math.unit(5, "meters")
  3762. },
  3763. {
  3764. name: "Macro",
  3765. height: math.unit(1500, "meters"),
  3766. default: true
  3767. },
  3768. {
  3769. name: "Megamacro",
  3770. height: math.unit(200, "km")
  3771. },
  3772. {
  3773. name: "Gigamacro",
  3774. height: math.unit(100000, "km")
  3775. }
  3776. ]
  3777. ))
  3778. characterMakers.push(() => makeCharacter(
  3779. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3780. {
  3781. front: {
  3782. height: math.unit(6, "feet"),
  3783. weight: math.unit(175, "lb"),
  3784. name: "Front",
  3785. image: {
  3786. source: "./media/characters/mirova/front.svg",
  3787. extra: 3334 / 3071,
  3788. bottom: 42 / 3375.6
  3789. }
  3790. }
  3791. },
  3792. [
  3793. {
  3794. name: "Small",
  3795. height: math.unit(5, "meters")
  3796. },
  3797. {
  3798. name: "Macro",
  3799. height: math.unit(900, "meters"),
  3800. default: true
  3801. },
  3802. {
  3803. name: "Megamacro",
  3804. height: math.unit(135, "km")
  3805. },
  3806. {
  3807. name: "Gigamacro",
  3808. height: math.unit(20000, "km")
  3809. }
  3810. ]
  3811. ))
  3812. characterMakers.push(() => makeCharacter(
  3813. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3814. {
  3815. side: {
  3816. height: math.unit(28.35, "feet"),
  3817. weight: math.unit(99.75, "tons"),
  3818. name: "Side",
  3819. image: {
  3820. source: "./media/characters/asana-mech/side.svg",
  3821. extra: 923 / 699,
  3822. bottom: 50 / 975
  3823. }
  3824. },
  3825. chaingun: {
  3826. height: math.unit(7, "feet"),
  3827. weight: math.unit(2400, "lb"),
  3828. name: "Chaingun",
  3829. image: {
  3830. source: "./media/characters/asana-mech/chaingun.svg"
  3831. }
  3832. },
  3833. laser: {
  3834. height: math.unit(7.12, "feet"),
  3835. weight: math.unit(2000, "lb"),
  3836. name: "Laser",
  3837. image: {
  3838. source: "./media/characters/asana-mech/laser.svg"
  3839. }
  3840. },
  3841. },
  3842. [
  3843. {
  3844. name: "Normal",
  3845. height: math.unit(28.35, "feet"),
  3846. default: true
  3847. },
  3848. {
  3849. name: "Macro",
  3850. height: math.unit(2500, "feet")
  3851. },
  3852. {
  3853. name: "Megamacro",
  3854. height: math.unit(25, "miles")
  3855. },
  3856. {
  3857. name: "Examacro",
  3858. height: math.unit(6e8, "lightyears")
  3859. },
  3860. ]
  3861. ))
  3862. characterMakers.push(() => makeCharacter(
  3863. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3864. {
  3865. front: {
  3866. height: math.unit(5, "meters"),
  3867. weight: math.unit(1000, "kg"),
  3868. name: "Front",
  3869. image: {
  3870. source: "./media/characters/asche/front.svg",
  3871. extra: 1258 / 1190,
  3872. bottom: 47 / 1305
  3873. }
  3874. },
  3875. frontUnderwear: {
  3876. height: math.unit(5, "meters"),
  3877. weight: math.unit(1000, "kg"),
  3878. name: "Front (Underwear)",
  3879. image: {
  3880. source: "./media/characters/asche/front-underwear.svg",
  3881. extra: 1258 / 1190,
  3882. bottom: 47 / 1305
  3883. }
  3884. },
  3885. frontDressed: {
  3886. height: math.unit(5, "meters"),
  3887. weight: math.unit(1000, "kg"),
  3888. name: "Front (Dressed)",
  3889. image: {
  3890. source: "./media/characters/asche/front-dressed.svg",
  3891. extra: 1258 / 1190,
  3892. bottom: 47 / 1305
  3893. }
  3894. },
  3895. frontArmor: {
  3896. height: math.unit(5, "meters"),
  3897. weight: math.unit(1000, "kg"),
  3898. name: "Front (Armored)",
  3899. image: {
  3900. source: "./media/characters/asche/front-armored.svg",
  3901. extra: 1374 / 1308,
  3902. bottom: 23 / 1397
  3903. }
  3904. },
  3905. mp724: {
  3906. height: math.unit(0.96, "meters"),
  3907. weight: math.unit(38, "kg"),
  3908. name: "H&K MP724",
  3909. image: {
  3910. source: "./media/characters/asche/h&k-mp724.svg"
  3911. }
  3912. },
  3913. side: {
  3914. height: math.unit(5, "meters"),
  3915. weight: math.unit(1000, "kg"),
  3916. name: "Side",
  3917. image: {
  3918. source: "./media/characters/asche/side.svg",
  3919. extra: 1717 / 1609,
  3920. bottom: 0.005
  3921. }
  3922. },
  3923. back: {
  3924. height: math.unit(5, "meters"),
  3925. weight: math.unit(1000, "kg"),
  3926. name: "Back",
  3927. image: {
  3928. source: "./media/characters/asche/back.svg",
  3929. extra: 1570 / 1501
  3930. }
  3931. },
  3932. },
  3933. [
  3934. {
  3935. name: "DEFCON 5",
  3936. height: math.unit(5, "meters")
  3937. },
  3938. {
  3939. name: "DEFCON 4",
  3940. height: math.unit(500, "meters"),
  3941. default: true
  3942. },
  3943. {
  3944. name: "DEFCON 3",
  3945. height: math.unit(5, "km")
  3946. },
  3947. {
  3948. name: "DEFCON 2",
  3949. height: math.unit(500, "km")
  3950. },
  3951. {
  3952. name: "DEFCON 1",
  3953. height: math.unit(500000, "km")
  3954. },
  3955. {
  3956. name: "DEFCON 0",
  3957. height: math.unit(3, "gigaparsecs")
  3958. },
  3959. ]
  3960. ))
  3961. characterMakers.push(() => makeCharacter(
  3962. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3963. {
  3964. front: {
  3965. height: math.unit(2, "meters"),
  3966. weight: math.unit(76, "kg"),
  3967. name: "Front",
  3968. image: {
  3969. source: "./media/characters/gale/front.svg"
  3970. }
  3971. },
  3972. frontAlt1: {
  3973. height: math.unit(2, "meters"),
  3974. weight: math.unit(76, "kg"),
  3975. name: "Front (Alt 1)",
  3976. image: {
  3977. source: "./media/characters/gale/front-alt-1.svg"
  3978. }
  3979. },
  3980. frontAlt2: {
  3981. height: math.unit(2, "meters"),
  3982. weight: math.unit(76, "kg"),
  3983. name: "Front (Alt 2)",
  3984. image: {
  3985. source: "./media/characters/gale/front-alt-2.svg"
  3986. }
  3987. },
  3988. },
  3989. [
  3990. {
  3991. name: "Normal",
  3992. height: math.unit(7, "feet")
  3993. },
  3994. {
  3995. name: "Macro",
  3996. height: math.unit(150, "feet"),
  3997. default: true
  3998. },
  3999. {
  4000. name: "Macro+",
  4001. height: math.unit(300, "feet")
  4002. },
  4003. ]
  4004. ))
  4005. characterMakers.push(() => makeCharacter(
  4006. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4007. {
  4008. front: {
  4009. height: math.unit(2, "meters"),
  4010. weight: math.unit(76, "kg"),
  4011. name: "Front",
  4012. image: {
  4013. source: "./media/characters/draylen/front.svg"
  4014. }
  4015. }
  4016. },
  4017. [
  4018. {
  4019. name: "Macro",
  4020. height: math.unit(150, "feet"),
  4021. default: true
  4022. }
  4023. ]
  4024. ))
  4025. characterMakers.push(() => makeCharacter(
  4026. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4027. {
  4028. front: {
  4029. height: math.unit(7 + 9 / 12, "feet"),
  4030. weight: math.unit(379, "lbs"),
  4031. name: "Front",
  4032. image: {
  4033. source: "./media/characters/chez/front.svg"
  4034. }
  4035. },
  4036. side: {
  4037. height: math.unit(7 + 9 / 12, "feet"),
  4038. weight: math.unit(379, "lbs"),
  4039. name: "Side",
  4040. image: {
  4041. source: "./media/characters/chez/side.svg"
  4042. }
  4043. }
  4044. },
  4045. [
  4046. {
  4047. name: "Normal",
  4048. height: math.unit(7 + 9 / 12, "feet"),
  4049. default: true
  4050. },
  4051. {
  4052. name: "God King",
  4053. height: math.unit(9750000, "meters")
  4054. }
  4055. ]
  4056. ))
  4057. characterMakers.push(() => makeCharacter(
  4058. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4059. {
  4060. front: {
  4061. height: math.unit(6, "feet"),
  4062. weight: math.unit(275, "lbs"),
  4063. name: "Front",
  4064. image: {
  4065. source: "./media/characters/kaylum/front.svg",
  4066. bottom: 0.01,
  4067. extra: 1166 / 1031
  4068. }
  4069. },
  4070. frontWingless: {
  4071. height: math.unit(6, "feet"),
  4072. weight: math.unit(275, "lbs"),
  4073. name: "Front (Wingless)",
  4074. image: {
  4075. source: "./media/characters/kaylum/front-wingless.svg",
  4076. bottom: 0.01,
  4077. extra: 1117 / 1031
  4078. }
  4079. }
  4080. },
  4081. [
  4082. {
  4083. name: "Normal",
  4084. height: math.unit(3.05, "meters")
  4085. },
  4086. {
  4087. name: "Master",
  4088. height: math.unit(5.5, "meters")
  4089. },
  4090. {
  4091. name: "Rampage",
  4092. height: math.unit(19, "meters")
  4093. },
  4094. {
  4095. name: "Macro Lite",
  4096. height: math.unit(37, "meters")
  4097. },
  4098. {
  4099. name: "Hyper Predator",
  4100. height: math.unit(61, "meters")
  4101. },
  4102. {
  4103. name: "Macro",
  4104. height: math.unit(138, "meters"),
  4105. default: true
  4106. }
  4107. ]
  4108. ))
  4109. characterMakers.push(() => makeCharacter(
  4110. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4111. {
  4112. front: {
  4113. height: math.unit(6, "feet"),
  4114. weight: math.unit(150, "lbs"),
  4115. name: "Front",
  4116. image: {
  4117. source: "./media/characters/geta/front.svg"
  4118. }
  4119. }
  4120. },
  4121. [
  4122. {
  4123. name: "Micro",
  4124. height: math.unit(3, "inches"),
  4125. default: true
  4126. },
  4127. {
  4128. name: "Normal",
  4129. height: math.unit(5 + 5 / 12, "feet")
  4130. }
  4131. ]
  4132. ))
  4133. characterMakers.push(() => makeCharacter(
  4134. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4135. {
  4136. front: {
  4137. height: math.unit(6, "feet"),
  4138. weight: math.unit(300, "lbs"),
  4139. name: "Front",
  4140. image: {
  4141. source: "./media/characters/tyrnn/front.svg"
  4142. }
  4143. }
  4144. },
  4145. [
  4146. {
  4147. name: "Main Height",
  4148. height: math.unit(355, "feet"),
  4149. default: true
  4150. },
  4151. {
  4152. name: "Fave. Height",
  4153. height: math.unit(2400, "feet")
  4154. }
  4155. ]
  4156. ))
  4157. characterMakers.push(() => makeCharacter(
  4158. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4159. {
  4160. front: {
  4161. height: math.unit(6, "feet"),
  4162. weight: math.unit(300, "lbs"),
  4163. name: "Front",
  4164. image: {
  4165. source: "./media/characters/appledectomy/front.svg"
  4166. }
  4167. }
  4168. },
  4169. [
  4170. {
  4171. name: "Macro",
  4172. height: math.unit(2500, "feet")
  4173. },
  4174. {
  4175. name: "Megamacro",
  4176. height: math.unit(50, "miles"),
  4177. default: true
  4178. },
  4179. {
  4180. name: "Gigamacro",
  4181. height: math.unit(5000, "miles")
  4182. },
  4183. {
  4184. name: "Teramacro",
  4185. height: math.unit(250000, "miles")
  4186. },
  4187. ]
  4188. ))
  4189. characterMakers.push(() => makeCharacter(
  4190. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4191. {
  4192. front: {
  4193. height: math.unit(6, "feet"),
  4194. weight: math.unit(200, "lbs"),
  4195. name: "Front",
  4196. image: {
  4197. source: "./media/characters/vulpes/front.svg",
  4198. extra: 573 / 543,
  4199. bottom: 0.033
  4200. }
  4201. },
  4202. side: {
  4203. height: math.unit(6, "feet"),
  4204. weight: math.unit(200, "lbs"),
  4205. name: "Side",
  4206. image: {
  4207. source: "./media/characters/vulpes/side.svg",
  4208. extra: 577 / 549,
  4209. bottom: 11 / 588
  4210. }
  4211. },
  4212. back: {
  4213. height: math.unit(6, "feet"),
  4214. weight: math.unit(200, "lbs"),
  4215. name: "Back",
  4216. image: {
  4217. source: "./media/characters/vulpes/back.svg",
  4218. extra: 573 / 549,
  4219. bottom: 20 / 593
  4220. }
  4221. },
  4222. feet: {
  4223. height: math.unit(1.276, "feet"),
  4224. name: "Feet",
  4225. image: {
  4226. source: "./media/characters/vulpes/feet.svg"
  4227. }
  4228. },
  4229. maw: {
  4230. height: math.unit(1.18, "feet"),
  4231. name: "Maw",
  4232. image: {
  4233. source: "./media/characters/vulpes/maw.svg"
  4234. }
  4235. },
  4236. },
  4237. [
  4238. {
  4239. name: "Micro",
  4240. height: math.unit(2, "inches")
  4241. },
  4242. {
  4243. name: "Normal",
  4244. height: math.unit(6.3, "feet")
  4245. },
  4246. {
  4247. name: "Macro",
  4248. height: math.unit(850, "feet")
  4249. },
  4250. {
  4251. name: "Megamacro",
  4252. height: math.unit(7500, "feet"),
  4253. default: true
  4254. },
  4255. {
  4256. name: "Gigamacro",
  4257. height: math.unit(570000, "miles")
  4258. }
  4259. ]
  4260. ))
  4261. characterMakers.push(() => makeCharacter(
  4262. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4263. {
  4264. front: {
  4265. height: math.unit(6, "feet"),
  4266. weight: math.unit(210, "lbs"),
  4267. name: "Front",
  4268. image: {
  4269. source: "./media/characters/rain-fallen/front.svg"
  4270. }
  4271. },
  4272. side: {
  4273. height: math.unit(6, "feet"),
  4274. weight: math.unit(210, "lbs"),
  4275. name: "Side",
  4276. image: {
  4277. source: "./media/characters/rain-fallen/side.svg"
  4278. }
  4279. },
  4280. back: {
  4281. height: math.unit(6, "feet"),
  4282. weight: math.unit(210, "lbs"),
  4283. name: "Back",
  4284. image: {
  4285. source: "./media/characters/rain-fallen/back.svg"
  4286. }
  4287. },
  4288. feral: {
  4289. height: math.unit(9, "feet"),
  4290. weight: math.unit(700, "lbs"),
  4291. name: "Feral",
  4292. image: {
  4293. source: "./media/characters/rain-fallen/feral.svg"
  4294. }
  4295. },
  4296. },
  4297. [
  4298. {
  4299. name: "Normal",
  4300. height: math.unit(5, "meter")
  4301. },
  4302. {
  4303. name: "Macro",
  4304. height: math.unit(150, "meter"),
  4305. default: true
  4306. },
  4307. {
  4308. name: "Megamacro",
  4309. height: math.unit(278e6, "meter")
  4310. },
  4311. {
  4312. name: "Gigamacro",
  4313. height: math.unit(2e9, "meter")
  4314. },
  4315. {
  4316. name: "Teramacro",
  4317. height: math.unit(8e12, "meter")
  4318. },
  4319. {
  4320. name: "Devourer",
  4321. height: math.unit(14, "zettameters")
  4322. },
  4323. {
  4324. name: "Scarlet King",
  4325. height: math.unit(18, "yottameters")
  4326. },
  4327. {
  4328. name: "Void",
  4329. height: math.unit(6.66e66, "yottameters")
  4330. }
  4331. ]
  4332. ))
  4333. characterMakers.push(() => makeCharacter(
  4334. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4335. {
  4336. standing: {
  4337. height: math.unit(6, "feet"),
  4338. weight: math.unit(180, "lbs"),
  4339. name: "Standing",
  4340. image: {
  4341. source: "./media/characters/zaakira/standing.svg"
  4342. }
  4343. },
  4344. laying: {
  4345. height: math.unit(3, "feet"),
  4346. weight: math.unit(180, "lbs"),
  4347. name: "Laying",
  4348. image: {
  4349. source: "./media/characters/zaakira/laying.svg"
  4350. }
  4351. },
  4352. },
  4353. [
  4354. {
  4355. name: "Normal",
  4356. height: math.unit(12, "feet")
  4357. },
  4358. {
  4359. name: "Macro",
  4360. height: math.unit(279, "feet"),
  4361. default: true
  4362. }
  4363. ]
  4364. ))
  4365. characterMakers.push(() => makeCharacter(
  4366. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4367. {
  4368. femSfw: {
  4369. height: math.unit(8, "feet"),
  4370. weight: math.unit(350, "lb"),
  4371. name: "Fem",
  4372. image: {
  4373. source: "./media/characters/sigvald/fem-sfw.svg",
  4374. extra: 182 / 164,
  4375. bottom: 8.7 / 190.5
  4376. }
  4377. },
  4378. femNsfw: {
  4379. height: math.unit(8, "feet"),
  4380. weight: math.unit(350, "lb"),
  4381. name: "Fem (NSFW)",
  4382. image: {
  4383. source: "./media/characters/sigvald/fem-nsfw.svg",
  4384. extra: 182 / 164,
  4385. bottom: 8.7 / 190.5
  4386. }
  4387. },
  4388. maleNsfw: {
  4389. height: math.unit(8, "feet"),
  4390. weight: math.unit(350, "lb"),
  4391. name: "Male (NSFW)",
  4392. image: {
  4393. source: "./media/characters/sigvald/male-nsfw.svg",
  4394. extra: 182 / 164,
  4395. bottom: 8.7 / 190.5
  4396. }
  4397. },
  4398. hermNsfw: {
  4399. height: math.unit(8, "feet"),
  4400. weight: math.unit(350, "lb"),
  4401. name: "Herm (NSFW)",
  4402. image: {
  4403. source: "./media/characters/sigvald/herm-nsfw.svg",
  4404. extra: 182 / 164,
  4405. bottom: 8.7 / 190.5
  4406. }
  4407. },
  4408. dick: {
  4409. height: math.unit(2.36, "feet"),
  4410. name: "Dick",
  4411. image: {
  4412. source: "./media/characters/sigvald/dick.svg"
  4413. }
  4414. },
  4415. eye: {
  4416. height: math.unit(0.31, "feet"),
  4417. name: "Eye",
  4418. image: {
  4419. source: "./media/characters/sigvald/eye.svg"
  4420. }
  4421. },
  4422. mouth: {
  4423. height: math.unit(0.92, "feet"),
  4424. name: "Mouth",
  4425. image: {
  4426. source: "./media/characters/sigvald/mouth.svg"
  4427. }
  4428. },
  4429. paws: {
  4430. height: math.unit(2.2, "feet"),
  4431. name: "Paws",
  4432. image: {
  4433. source: "./media/characters/sigvald/paws.svg"
  4434. }
  4435. }
  4436. },
  4437. [
  4438. {
  4439. name: "Normal",
  4440. height: math.unit(8, "feet")
  4441. },
  4442. {
  4443. name: "Large",
  4444. height: math.unit(12, "feet")
  4445. },
  4446. {
  4447. name: "Larger",
  4448. height: math.unit(20, "feet")
  4449. },
  4450. {
  4451. name: "Macro",
  4452. height: math.unit(150, "feet")
  4453. },
  4454. {
  4455. name: "Macro+",
  4456. height: math.unit(200, "feet"),
  4457. default: true
  4458. },
  4459. ]
  4460. ))
  4461. characterMakers.push(() => makeCharacter(
  4462. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4463. {
  4464. side: {
  4465. height: math.unit(12, "feet"),
  4466. weight: math.unit(2000, "kg"),
  4467. name: "Side",
  4468. image: {
  4469. source: "./media/characters/scott/side.svg",
  4470. extra: 754 / 724,
  4471. bottom: 0.069
  4472. }
  4473. },
  4474. upright: {
  4475. height: math.unit(12, "feet"),
  4476. weight: math.unit(2000, "kg"),
  4477. name: "Upright",
  4478. image: {
  4479. source: "./media/characters/scott/upright.svg",
  4480. extra: 3881 / 3722,
  4481. bottom: 0.05
  4482. }
  4483. },
  4484. },
  4485. [
  4486. {
  4487. name: "Normal",
  4488. height: math.unit(12, "feet"),
  4489. default: true
  4490. },
  4491. ]
  4492. ))
  4493. characterMakers.push(() => makeCharacter(
  4494. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4495. {
  4496. side: {
  4497. height: math.unit(8, "meters"),
  4498. weight: math.unit(84755, "lbs"),
  4499. name: "Side",
  4500. image: {
  4501. source: "./media/characters/tobias/side.svg",
  4502. extra: 1474 / 1096,
  4503. bottom: 38.9 / 1513.1235
  4504. }
  4505. },
  4506. },
  4507. [
  4508. {
  4509. name: "Normal",
  4510. height: math.unit(8, "meters"),
  4511. default: true
  4512. },
  4513. ]
  4514. ))
  4515. characterMakers.push(() => makeCharacter(
  4516. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4517. {
  4518. front: {
  4519. height: math.unit(5.5, "feet"),
  4520. weight: math.unit(400, "lbs"),
  4521. name: "Front",
  4522. image: {
  4523. source: "./media/characters/kieran/front.svg",
  4524. extra: 2694 / 2364,
  4525. bottom: 217 / 2908
  4526. }
  4527. },
  4528. side: {
  4529. height: math.unit(5.5, "feet"),
  4530. weight: math.unit(400, "lbs"),
  4531. name: "Side",
  4532. image: {
  4533. source: "./media/characters/kieran/side.svg",
  4534. extra: 875 / 777,
  4535. bottom: 84.6 / 959
  4536. }
  4537. },
  4538. },
  4539. [
  4540. {
  4541. name: "Normal",
  4542. height: math.unit(5.5, "feet"),
  4543. default: true
  4544. },
  4545. ]
  4546. ))
  4547. characterMakers.push(() => makeCharacter(
  4548. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4549. {
  4550. side: {
  4551. height: math.unit(2, "meters"),
  4552. weight: math.unit(70, "kg"),
  4553. name: "Side",
  4554. image: {
  4555. source: "./media/characters/sanya/side.svg",
  4556. bottom: 0.02,
  4557. extra: 1.02
  4558. }
  4559. },
  4560. },
  4561. [
  4562. {
  4563. name: "Small",
  4564. height: math.unit(2, "meters")
  4565. },
  4566. {
  4567. name: "Normal",
  4568. height: math.unit(3, "meters")
  4569. },
  4570. {
  4571. name: "Macro",
  4572. height: math.unit(16, "meters"),
  4573. default: true
  4574. },
  4575. ]
  4576. ))
  4577. characterMakers.push(() => makeCharacter(
  4578. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4579. {
  4580. front: {
  4581. height: math.unit(2, "meters"),
  4582. weight: math.unit(120, "kg"),
  4583. name: "Front",
  4584. image: {
  4585. source: "./media/characters/miranda/front.svg",
  4586. extra: 195 / 185,
  4587. bottom: 10.9 / 206.5
  4588. }
  4589. },
  4590. back: {
  4591. height: math.unit(2, "meters"),
  4592. weight: math.unit(120, "kg"),
  4593. name: "Back",
  4594. image: {
  4595. source: "./media/characters/miranda/back.svg",
  4596. extra: 201 / 193,
  4597. bottom: 2.3 / 203.7
  4598. }
  4599. },
  4600. },
  4601. [
  4602. {
  4603. name: "Normal",
  4604. height: math.unit(10, "feet"),
  4605. default: true
  4606. }
  4607. ]
  4608. ))
  4609. characterMakers.push(() => makeCharacter(
  4610. { name: "James", species: ["deer"], tags: ["anthro"] },
  4611. {
  4612. side: {
  4613. height: math.unit(2, "meters"),
  4614. weight: math.unit(100, "kg"),
  4615. name: "Front",
  4616. image: {
  4617. source: "./media/characters/james/front.svg",
  4618. extra: 10 / 8.5
  4619. }
  4620. },
  4621. },
  4622. [
  4623. {
  4624. name: "Normal",
  4625. height: math.unit(8.5, "feet"),
  4626. default: true
  4627. }
  4628. ]
  4629. ))
  4630. characterMakers.push(() => makeCharacter(
  4631. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4632. {
  4633. side: {
  4634. height: math.unit(9.5, "feet"),
  4635. weight: math.unit(2500, "lbs"),
  4636. name: "Side",
  4637. image: {
  4638. source: "./media/characters/heather/side.svg"
  4639. }
  4640. },
  4641. },
  4642. [
  4643. {
  4644. name: "Normal",
  4645. height: math.unit(9.5, "feet"),
  4646. default: true
  4647. }
  4648. ]
  4649. ))
  4650. characterMakers.push(() => makeCharacter(
  4651. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4652. {
  4653. side: {
  4654. height: math.unit(6.5, "feet"),
  4655. weight: math.unit(400, "lbs"),
  4656. name: "Side",
  4657. image: {
  4658. source: "./media/characters/lukas/side.svg",
  4659. extra: 7.25 / 6.5
  4660. }
  4661. },
  4662. },
  4663. [
  4664. {
  4665. name: "Normal",
  4666. height: math.unit(6.5, "feet"),
  4667. default: true
  4668. }
  4669. ]
  4670. ))
  4671. characterMakers.push(() => makeCharacter(
  4672. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4673. {
  4674. side: {
  4675. height: math.unit(5, "feet"),
  4676. weight: math.unit(3000, "lbs"),
  4677. name: "Side",
  4678. image: {
  4679. source: "./media/characters/louise/side.svg"
  4680. }
  4681. },
  4682. },
  4683. [
  4684. {
  4685. name: "Normal",
  4686. height: math.unit(5, "feet"),
  4687. default: true
  4688. }
  4689. ]
  4690. ))
  4691. characterMakers.push(() => makeCharacter(
  4692. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4693. {
  4694. side: {
  4695. height: math.unit(6, "feet"),
  4696. weight: math.unit(150, "lbs"),
  4697. name: "Side",
  4698. image: {
  4699. source: "./media/characters/ramona/side.svg"
  4700. }
  4701. },
  4702. },
  4703. [
  4704. {
  4705. name: "Normal",
  4706. height: math.unit(5.3, "meters"),
  4707. default: true
  4708. },
  4709. {
  4710. name: "Macro",
  4711. height: math.unit(20, "stories")
  4712. },
  4713. {
  4714. name: "Macro+",
  4715. height: math.unit(50, "stories")
  4716. },
  4717. ]
  4718. ))
  4719. characterMakers.push(() => makeCharacter(
  4720. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4721. {
  4722. standing: {
  4723. height: math.unit(5.75, "feet"),
  4724. weight: math.unit(160, "lbs"),
  4725. name: "Standing",
  4726. image: {
  4727. source: "./media/characters/deerpuff/standing.svg",
  4728. extra: 682 / 624
  4729. }
  4730. },
  4731. sitting: {
  4732. height: math.unit(5.75 / 1.79, "feet"),
  4733. weight: math.unit(160, "lbs"),
  4734. name: "Sitting",
  4735. image: {
  4736. source: "./media/characters/deerpuff/sitting.svg",
  4737. bottom: 44 / 400,
  4738. extra: 1
  4739. }
  4740. },
  4741. taurLaying: {
  4742. height: math.unit(6, "feet"),
  4743. weight: math.unit(400, "lbs"),
  4744. name: "Taur (Laying)",
  4745. image: {
  4746. source: "./media/characters/deerpuff/taur-laying.svg"
  4747. }
  4748. },
  4749. },
  4750. [
  4751. {
  4752. name: "Puffball",
  4753. height: math.unit(6, "inches")
  4754. },
  4755. {
  4756. name: "Normalpuff",
  4757. height: math.unit(5.75, "feet")
  4758. },
  4759. {
  4760. name: "Macropuff",
  4761. height: math.unit(1500, "feet"),
  4762. default: true
  4763. },
  4764. {
  4765. name: "Megapuff",
  4766. height: math.unit(500, "miles")
  4767. },
  4768. {
  4769. name: "Gigapuff",
  4770. height: math.unit(250000, "miles")
  4771. },
  4772. {
  4773. name: "Omegapuff",
  4774. height: math.unit(1000, "lightyears")
  4775. },
  4776. ]
  4777. ))
  4778. characterMakers.push(() => makeCharacter(
  4779. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4780. {
  4781. stomping: {
  4782. height: math.unit(6, "feet"),
  4783. weight: math.unit(170, "lbs"),
  4784. name: "Stomping",
  4785. image: {
  4786. source: "./media/characters/vivian/stomping.svg"
  4787. }
  4788. },
  4789. sitting: {
  4790. height: math.unit(6 / 1.75, "feet"),
  4791. weight: math.unit(170, "lbs"),
  4792. name: "Sitting",
  4793. image: {
  4794. source: "./media/characters/vivian/sitting.svg",
  4795. bottom: 1 / 6.4,
  4796. extra: 1,
  4797. }
  4798. },
  4799. },
  4800. [
  4801. {
  4802. name: "Normal",
  4803. height: math.unit(7, "feet"),
  4804. default: true
  4805. },
  4806. {
  4807. name: "Macro",
  4808. height: math.unit(10, "stories")
  4809. },
  4810. {
  4811. name: "Macro+",
  4812. height: math.unit(30, "stories")
  4813. },
  4814. {
  4815. name: "Megamacro",
  4816. height: math.unit(10, "miles")
  4817. },
  4818. {
  4819. name: "Megamacro+",
  4820. height: math.unit(2750000, "meters")
  4821. },
  4822. ]
  4823. ))
  4824. characterMakers.push(() => makeCharacter(
  4825. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4826. {
  4827. front: {
  4828. height: math.unit(6, "feet"),
  4829. weight: math.unit(160, "lbs"),
  4830. name: "Front",
  4831. image: {
  4832. source: "./media/characters/prince/front.svg",
  4833. extra: 3400 / 3000
  4834. }
  4835. },
  4836. jumping: {
  4837. height: math.unit(6, "feet"),
  4838. weight: math.unit(160, "lbs"),
  4839. name: "Jumping",
  4840. image: {
  4841. source: "./media/characters/prince/jump.svg",
  4842. extra: 2555 / 2134
  4843. }
  4844. },
  4845. },
  4846. [
  4847. {
  4848. name: "Normal",
  4849. height: math.unit(7.75, "feet"),
  4850. default: true
  4851. },
  4852. {
  4853. name: "Not cute",
  4854. height: math.unit(17, "feet")
  4855. },
  4856. {
  4857. name: "I said NOT",
  4858. height: math.unit(91, "feet")
  4859. },
  4860. {
  4861. name: "Please stop",
  4862. height: math.unit(560, "feet")
  4863. },
  4864. {
  4865. name: "What have you done",
  4866. height: math.unit(2200, "feet")
  4867. },
  4868. {
  4869. name: "Deer God",
  4870. height: math.unit(3.6, "miles")
  4871. },
  4872. ]
  4873. ))
  4874. characterMakers.push(() => makeCharacter(
  4875. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4876. {
  4877. standing: {
  4878. height: math.unit(6, "feet"),
  4879. weight: math.unit(300, "lbs"),
  4880. name: "Standing",
  4881. image: {
  4882. source: "./media/characters/psymon/standing.svg",
  4883. extra: 1888 / 1810,
  4884. bottom: 0.05
  4885. }
  4886. },
  4887. slithering: {
  4888. height: math.unit(6, "feet"),
  4889. weight: math.unit(300, "lbs"),
  4890. name: "Slithering",
  4891. image: {
  4892. source: "./media/characters/psymon/slithering.svg",
  4893. extra: 1330 / 1224
  4894. }
  4895. },
  4896. slitheringAlt: {
  4897. height: math.unit(6, "feet"),
  4898. weight: math.unit(300, "lbs"),
  4899. name: "Slithering (Alt)",
  4900. image: {
  4901. source: "./media/characters/psymon/slithering-alt.svg",
  4902. extra: 1330 / 1224
  4903. }
  4904. },
  4905. },
  4906. [
  4907. {
  4908. name: "Normal",
  4909. height: math.unit(11.25, "feet"),
  4910. default: true
  4911. },
  4912. {
  4913. name: "Large",
  4914. height: math.unit(27, "feet")
  4915. },
  4916. {
  4917. name: "Giant",
  4918. height: math.unit(87, "feet")
  4919. },
  4920. {
  4921. name: "Macro",
  4922. height: math.unit(365, "feet")
  4923. },
  4924. {
  4925. name: "Megamacro",
  4926. height: math.unit(3, "miles")
  4927. },
  4928. {
  4929. name: "World Serpent",
  4930. height: math.unit(8000, "miles")
  4931. },
  4932. ]
  4933. ))
  4934. characterMakers.push(() => makeCharacter(
  4935. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4936. {
  4937. front: {
  4938. height: math.unit(6, "feet"),
  4939. weight: math.unit(180, "lbs"),
  4940. name: "Front",
  4941. image: {
  4942. source: "./media/characters/daimos/front.svg",
  4943. extra: 4160 / 3897,
  4944. bottom: 0.021
  4945. }
  4946. }
  4947. },
  4948. [
  4949. {
  4950. name: "Normal",
  4951. height: math.unit(8, "feet"),
  4952. default: true
  4953. },
  4954. {
  4955. name: "Big Dog",
  4956. height: math.unit(22, "feet")
  4957. },
  4958. {
  4959. name: "Macro",
  4960. height: math.unit(127, "feet")
  4961. },
  4962. {
  4963. name: "Megamacro",
  4964. height: math.unit(3600, "feet")
  4965. },
  4966. ]
  4967. ))
  4968. characterMakers.push(() => makeCharacter(
  4969. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4970. {
  4971. side: {
  4972. height: math.unit(6, "feet"),
  4973. weight: math.unit(180, "lbs"),
  4974. name: "Side",
  4975. image: {
  4976. source: "./media/characters/blake/side.svg",
  4977. extra: 1212 / 1120,
  4978. bottom: 0.05
  4979. }
  4980. },
  4981. crouched: {
  4982. height: math.unit(6 * 0.57, "feet"),
  4983. weight: math.unit(180, "lbs"),
  4984. name: "Crouched",
  4985. image: {
  4986. source: "./media/characters/blake/crouched.svg",
  4987. extra: 840 / 587,
  4988. bottom: 0.04
  4989. }
  4990. },
  4991. bent: {
  4992. height: math.unit(6 * 0.75, "feet"),
  4993. weight: math.unit(180, "lbs"),
  4994. name: "Bent",
  4995. image: {
  4996. source: "./media/characters/blake/bent.svg",
  4997. extra: 592 / 544,
  4998. bottom: 0.035
  4999. }
  5000. },
  5001. },
  5002. [
  5003. {
  5004. name: "Normal",
  5005. height: math.unit(8 + 1 / 6, "feet"),
  5006. default: true
  5007. },
  5008. {
  5009. name: "Big Backside",
  5010. height: math.unit(37, "feet")
  5011. },
  5012. {
  5013. name: "Subway Shredder",
  5014. height: math.unit(72, "feet")
  5015. },
  5016. {
  5017. name: "City Carver",
  5018. height: math.unit(1675, "feet")
  5019. },
  5020. {
  5021. name: "Tectonic Tweaker",
  5022. height: math.unit(2300, "miles")
  5023. },
  5024. ]
  5025. ))
  5026. characterMakers.push(() => makeCharacter(
  5027. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5028. {
  5029. front: {
  5030. height: math.unit(6, "feet"),
  5031. weight: math.unit(180, "lbs"),
  5032. name: "Front",
  5033. image: {
  5034. source: "./media/characters/guisetto/front.svg",
  5035. extra: 856 / 817,
  5036. bottom: 0.06
  5037. }
  5038. },
  5039. airborne: {
  5040. height: math.unit(6, "feet"),
  5041. weight: math.unit(180, "lbs"),
  5042. name: "Airborne",
  5043. image: {
  5044. source: "./media/characters/guisetto/airborne.svg",
  5045. extra: 584 / 525
  5046. }
  5047. },
  5048. },
  5049. [
  5050. {
  5051. name: "Normal",
  5052. height: math.unit(10 + 11 / 12, "feet"),
  5053. default: true
  5054. },
  5055. {
  5056. name: "Large",
  5057. height: math.unit(35, "feet")
  5058. },
  5059. {
  5060. name: "Macro",
  5061. height: math.unit(475, "feet")
  5062. },
  5063. ]
  5064. ))
  5065. characterMakers.push(() => makeCharacter(
  5066. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5067. {
  5068. front: {
  5069. height: math.unit(6, "feet"),
  5070. weight: math.unit(180, "lbs"),
  5071. name: "Front",
  5072. image: {
  5073. source: "./media/characters/luxor/front.svg",
  5074. extra: 2940 / 2152
  5075. }
  5076. },
  5077. back: {
  5078. height: math.unit(6, "feet"),
  5079. weight: math.unit(180, "lbs"),
  5080. name: "Back",
  5081. image: {
  5082. source: "./media/characters/luxor/back.svg",
  5083. extra: 1083 / 960
  5084. }
  5085. },
  5086. },
  5087. [
  5088. {
  5089. name: "Normal",
  5090. height: math.unit(5 + 5 / 6, "feet"),
  5091. default: true
  5092. },
  5093. {
  5094. name: "Lamp",
  5095. height: math.unit(50, "feet")
  5096. },
  5097. {
  5098. name: "Lämp",
  5099. height: math.unit(300, "feet")
  5100. },
  5101. {
  5102. name: "The sun is a lamp",
  5103. height: math.unit(250000, "miles")
  5104. },
  5105. ]
  5106. ))
  5107. characterMakers.push(() => makeCharacter(
  5108. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5109. {
  5110. front: {
  5111. height: math.unit(6, "feet"),
  5112. weight: math.unit(50, "lbs"),
  5113. name: "Front",
  5114. image: {
  5115. source: "./media/characters/huoyan/front.svg"
  5116. }
  5117. },
  5118. side: {
  5119. height: math.unit(6, "feet"),
  5120. weight: math.unit(180, "lbs"),
  5121. name: "Side",
  5122. image: {
  5123. source: "./media/characters/huoyan/side.svg"
  5124. }
  5125. },
  5126. },
  5127. [
  5128. {
  5129. name: "Chef",
  5130. height: math.unit(9, "feet")
  5131. },
  5132. {
  5133. name: "Normal",
  5134. height: math.unit(65, "feet"),
  5135. default: true
  5136. },
  5137. {
  5138. name: "Macro",
  5139. height: math.unit(780, "feet")
  5140. },
  5141. {
  5142. name: "Flaming Mountain",
  5143. height: math.unit(4.8, "miles")
  5144. },
  5145. {
  5146. name: "Celestial",
  5147. height: math.unit(765000, "miles")
  5148. },
  5149. ]
  5150. ))
  5151. characterMakers.push(() => makeCharacter(
  5152. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5153. {
  5154. front: {
  5155. height: math.unit(5 + 3 / 4, "feet"),
  5156. weight: math.unit(120, "lbs"),
  5157. name: "Front",
  5158. image: {
  5159. source: "./media/characters/tails/front.svg"
  5160. }
  5161. }
  5162. },
  5163. [
  5164. {
  5165. name: "Normal",
  5166. height: math.unit(5 + 3 / 4, "feet"),
  5167. default: true
  5168. }
  5169. ]
  5170. ))
  5171. characterMakers.push(() => makeCharacter(
  5172. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5173. {
  5174. front: {
  5175. height: math.unit(4, "feet"),
  5176. weight: math.unit(50, "lbs"),
  5177. name: "Front",
  5178. image: {
  5179. source: "./media/characters/rainy/front.svg"
  5180. }
  5181. }
  5182. },
  5183. [
  5184. {
  5185. name: "Macro",
  5186. height: math.unit(800, "feet"),
  5187. default: true
  5188. }
  5189. ]
  5190. ))
  5191. characterMakers.push(() => makeCharacter(
  5192. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5193. {
  5194. front: {
  5195. height: math.unit(6, "feet"),
  5196. weight: math.unit(150, "lbs"),
  5197. name: "Front",
  5198. image: {
  5199. source: "./media/characters/rainier/front.svg"
  5200. }
  5201. }
  5202. },
  5203. [
  5204. {
  5205. name: "Micro",
  5206. height: math.unit(2, "mm"),
  5207. default: true
  5208. }
  5209. ]
  5210. ))
  5211. characterMakers.push(() => makeCharacter(
  5212. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5213. {
  5214. front: {
  5215. height: math.unit(6, "feet"),
  5216. weight: math.unit(180, "lbs"),
  5217. name: "Front",
  5218. image: {
  5219. source: "./media/characters/andy/front.svg"
  5220. }
  5221. }
  5222. },
  5223. [
  5224. {
  5225. name: "Normal",
  5226. height: math.unit(8, "feet"),
  5227. default: true
  5228. },
  5229. {
  5230. name: "Macro",
  5231. height: math.unit(1000, "feet")
  5232. },
  5233. {
  5234. name: "Megamacro",
  5235. height: math.unit(5, "miles")
  5236. },
  5237. {
  5238. name: "Gigamacro",
  5239. height: math.unit(5000, "miles")
  5240. },
  5241. ]
  5242. ))
  5243. characterMakers.push(() => makeCharacter(
  5244. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5245. {
  5246. front: {
  5247. height: math.unit(6, "feet"),
  5248. weight: math.unit(210, "lbs"),
  5249. name: "Front",
  5250. image: {
  5251. source: "./media/characters/cimmaron/front-sfw.svg",
  5252. extra: 701 / 676,
  5253. bottom: 0.046
  5254. }
  5255. },
  5256. back: {
  5257. height: math.unit(6, "feet"),
  5258. weight: math.unit(210, "lbs"),
  5259. name: "Back",
  5260. image: {
  5261. source: "./media/characters/cimmaron/back-sfw.svg",
  5262. extra: 701 / 676,
  5263. bottom: 0.046
  5264. }
  5265. },
  5266. frontNsfw: {
  5267. height: math.unit(6, "feet"),
  5268. weight: math.unit(210, "lbs"),
  5269. name: "Front (NSFW)",
  5270. image: {
  5271. source: "./media/characters/cimmaron/front-nsfw.svg",
  5272. extra: 701 / 676,
  5273. bottom: 0.046
  5274. }
  5275. },
  5276. backNsfw: {
  5277. height: math.unit(6, "feet"),
  5278. weight: math.unit(210, "lbs"),
  5279. name: "Back (NSFW)",
  5280. image: {
  5281. source: "./media/characters/cimmaron/back-nsfw.svg",
  5282. extra: 701 / 676,
  5283. bottom: 0.046
  5284. }
  5285. },
  5286. dick: {
  5287. height: math.unit(1.714, "feet"),
  5288. name: "Dick",
  5289. image: {
  5290. source: "./media/characters/cimmaron/dick.svg"
  5291. }
  5292. },
  5293. },
  5294. [
  5295. {
  5296. name: "Normal",
  5297. height: math.unit(6, "feet"),
  5298. default: true
  5299. },
  5300. {
  5301. name: "Macro Mayor",
  5302. height: math.unit(350, "meters")
  5303. },
  5304. ]
  5305. ))
  5306. characterMakers.push(() => makeCharacter(
  5307. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5308. {
  5309. front: {
  5310. height: math.unit(6, "feet"),
  5311. weight: math.unit(200, "lbs"),
  5312. name: "Front",
  5313. image: {
  5314. source: "./media/characters/akari/front.svg",
  5315. extra: 962 / 901,
  5316. bottom: 0.04
  5317. }
  5318. }
  5319. },
  5320. [
  5321. {
  5322. name: "Micro",
  5323. height: math.unit(5, "inches"),
  5324. default: true
  5325. },
  5326. {
  5327. name: "Normal",
  5328. height: math.unit(7, "feet")
  5329. },
  5330. ]
  5331. ))
  5332. characterMakers.push(() => makeCharacter(
  5333. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5334. {
  5335. front: {
  5336. height: math.unit(6, "feet"),
  5337. weight: math.unit(140, "lbs"),
  5338. name: "Front",
  5339. image: {
  5340. source: "./media/characters/cynosura/front.svg",
  5341. extra: 896 / 847
  5342. }
  5343. },
  5344. back: {
  5345. height: math.unit(6, "feet"),
  5346. weight: math.unit(140, "lbs"),
  5347. name: "Back",
  5348. image: {
  5349. source: "./media/characters/cynosura/back.svg",
  5350. extra: 1365 / 1250
  5351. }
  5352. },
  5353. },
  5354. [
  5355. {
  5356. name: "Micro",
  5357. height: math.unit(4, "inches")
  5358. },
  5359. {
  5360. name: "Normal",
  5361. height: math.unit(5.75, "feet"),
  5362. default: true
  5363. },
  5364. {
  5365. name: "Tall",
  5366. height: math.unit(10, "feet")
  5367. },
  5368. {
  5369. name: "Big",
  5370. height: math.unit(20, "feet")
  5371. },
  5372. {
  5373. name: "Macro",
  5374. height: math.unit(50, "feet")
  5375. },
  5376. ]
  5377. ))
  5378. characterMakers.push(() => makeCharacter(
  5379. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5380. {
  5381. front: {
  5382. height: math.unit(6, "feet"),
  5383. weight: math.unit(170, "lbs"),
  5384. name: "Front",
  5385. image: {
  5386. source: "./media/characters/gin/front.svg",
  5387. extra: 1.053,
  5388. bottom: 0.025
  5389. }
  5390. },
  5391. foot: {
  5392. height: math.unit(6 / 4.25, "feet"),
  5393. name: "Foot",
  5394. image: {
  5395. source: "./media/characters/gin/foot.svg"
  5396. }
  5397. },
  5398. sole: {
  5399. height: math.unit(6 / 4.40, "feet"),
  5400. name: "Sole",
  5401. image: {
  5402. source: "./media/characters/gin/sole.svg"
  5403. }
  5404. },
  5405. },
  5406. [
  5407. {
  5408. name: "Normal",
  5409. height: math.unit(13 + 2 / 12, "feet")
  5410. },
  5411. {
  5412. name: "Macro",
  5413. height: math.unit(1500, "feet")
  5414. },
  5415. {
  5416. name: "Megamacro",
  5417. height: math.unit(200, "miles"),
  5418. default: true
  5419. },
  5420. {
  5421. name: "Gigamacro",
  5422. height: math.unit(500, "megameters")
  5423. },
  5424. {
  5425. name: "Teramacro",
  5426. height: math.unit(15, "lightyears")
  5427. }
  5428. ]
  5429. ))
  5430. characterMakers.push(() => makeCharacter(
  5431. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5432. {
  5433. front: {
  5434. height: math.unit(6 + 1 / 6, "feet"),
  5435. weight: math.unit(178, "lbs"),
  5436. name: "Front",
  5437. image: {
  5438. source: "./media/characters/guy/front.svg"
  5439. }
  5440. }
  5441. },
  5442. [
  5443. {
  5444. name: "Normal",
  5445. height: math.unit(6 + 1 / 6, "feet"),
  5446. default: true
  5447. },
  5448. {
  5449. name: "Large",
  5450. height: math.unit(25 + 7 / 12, "feet")
  5451. },
  5452. {
  5453. name: "Macro",
  5454. height: math.unit(60 + 9 / 12, "feet")
  5455. },
  5456. {
  5457. name: "Macro+",
  5458. height: math.unit(246, "feet")
  5459. },
  5460. {
  5461. name: "Macro++",
  5462. height: math.unit(878, "feet")
  5463. }
  5464. ]
  5465. ))
  5466. characterMakers.push(() => makeCharacter(
  5467. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5468. {
  5469. front: {
  5470. height: math.unit(9, "feet"),
  5471. weight: math.unit(800, "lbs"),
  5472. name: "Front",
  5473. image: {
  5474. source: "./media/characters/tiberius/front.svg",
  5475. extra: 2295 / 2071
  5476. }
  5477. },
  5478. back: {
  5479. height: math.unit(9, "feet"),
  5480. weight: math.unit(800, "lbs"),
  5481. name: "Back",
  5482. image: {
  5483. source: "./media/characters/tiberius/back.svg",
  5484. extra: 2373 / 2160
  5485. }
  5486. },
  5487. },
  5488. [
  5489. {
  5490. name: "Normal",
  5491. height: math.unit(9, "feet"),
  5492. default: true
  5493. }
  5494. ]
  5495. ))
  5496. characterMakers.push(() => makeCharacter(
  5497. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5498. {
  5499. front: {
  5500. height: math.unit(6, "feet"),
  5501. weight: math.unit(600, "lbs"),
  5502. name: "Front",
  5503. image: {
  5504. source: "./media/characters/surgo/front.svg",
  5505. extra: 3591 / 2227
  5506. }
  5507. },
  5508. back: {
  5509. height: math.unit(6, "feet"),
  5510. weight: math.unit(600, "lbs"),
  5511. name: "Back",
  5512. image: {
  5513. source: "./media/characters/surgo/back.svg",
  5514. extra: 3557 / 2228
  5515. }
  5516. },
  5517. laying: {
  5518. height: math.unit(6 * 0.85, "feet"),
  5519. weight: math.unit(600, "lbs"),
  5520. name: "Laying",
  5521. image: {
  5522. source: "./media/characters/surgo/laying.svg"
  5523. }
  5524. },
  5525. },
  5526. [
  5527. {
  5528. name: "Normal",
  5529. height: math.unit(6, "feet"),
  5530. default: true
  5531. }
  5532. ]
  5533. ))
  5534. characterMakers.push(() => makeCharacter(
  5535. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5536. {
  5537. side: {
  5538. height: math.unit(6, "feet"),
  5539. weight: math.unit(150, "lbs"),
  5540. name: "Side",
  5541. image: {
  5542. source: "./media/characters/cibus/side.svg",
  5543. extra: 800 / 400
  5544. }
  5545. },
  5546. },
  5547. [
  5548. {
  5549. name: "Normal",
  5550. height: math.unit(6, "feet"),
  5551. default: true
  5552. }
  5553. ]
  5554. ))
  5555. characterMakers.push(() => makeCharacter(
  5556. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5557. {
  5558. front: {
  5559. height: math.unit(6, "feet"),
  5560. weight: math.unit(240, "lbs"),
  5561. name: "Front",
  5562. image: {
  5563. source: "./media/characters/nibbles/front.svg"
  5564. }
  5565. },
  5566. side: {
  5567. height: math.unit(6, "feet"),
  5568. weight: math.unit(240, "lbs"),
  5569. name: "Side",
  5570. image: {
  5571. source: "./media/characters/nibbles/side.svg"
  5572. }
  5573. },
  5574. },
  5575. [
  5576. {
  5577. name: "Normal",
  5578. height: math.unit(9, "feet"),
  5579. default: true
  5580. }
  5581. ]
  5582. ))
  5583. characterMakers.push(() => makeCharacter(
  5584. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5585. {
  5586. side: {
  5587. height: math.unit(5 + 1 / 6, "feet"),
  5588. weight: math.unit(130, "lbs"),
  5589. name: "Side",
  5590. image: {
  5591. source: "./media/characters/rikky/side.svg",
  5592. extra: 851 / 801
  5593. }
  5594. },
  5595. },
  5596. [
  5597. {
  5598. name: "Normal",
  5599. height: math.unit(5 + 1 / 6, "feet")
  5600. },
  5601. {
  5602. name: "Macro",
  5603. height: math.unit(152, "feet"),
  5604. default: true
  5605. },
  5606. {
  5607. name: "Megamacro",
  5608. height: math.unit(7, "miles")
  5609. }
  5610. ]
  5611. ))
  5612. characterMakers.push(() => makeCharacter(
  5613. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5614. {
  5615. side: {
  5616. height: math.unit(370, "cm"),
  5617. weight: math.unit(350, "lbs"),
  5618. name: "Side",
  5619. image: {
  5620. source: "./media/characters/malfressa/side.svg"
  5621. }
  5622. },
  5623. walking: {
  5624. height: math.unit(370, "cm"),
  5625. weight: math.unit(350, "lbs"),
  5626. name: "Walking",
  5627. image: {
  5628. source: "./media/characters/malfressa/walking.svg"
  5629. }
  5630. },
  5631. feral: {
  5632. height: math.unit(2500, "cm"),
  5633. weight: math.unit(100000, "lbs"),
  5634. name: "Feral",
  5635. image: {
  5636. source: "./media/characters/malfressa/feral.svg",
  5637. extra: 2108 / 837,
  5638. bottom: 0.02
  5639. }
  5640. },
  5641. },
  5642. [
  5643. {
  5644. name: "Normal",
  5645. height: math.unit(370, "cm")
  5646. },
  5647. {
  5648. name: "Macro",
  5649. height: math.unit(300, "meters"),
  5650. default: true
  5651. }
  5652. ]
  5653. ))
  5654. characterMakers.push(() => makeCharacter(
  5655. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5656. {
  5657. front: {
  5658. height: math.unit(6, "feet"),
  5659. weight: math.unit(60, "kg"),
  5660. name: "Front",
  5661. image: {
  5662. source: "./media/characters/jaro/front.svg"
  5663. }
  5664. },
  5665. back: {
  5666. height: math.unit(6, "feet"),
  5667. weight: math.unit(60, "kg"),
  5668. name: "Back",
  5669. image: {
  5670. source: "./media/characters/jaro/back.svg"
  5671. }
  5672. },
  5673. },
  5674. [
  5675. {
  5676. name: "Micro",
  5677. height: math.unit(7, "inches")
  5678. },
  5679. {
  5680. name: "Normal",
  5681. height: math.unit(5.5, "feet"),
  5682. default: true
  5683. },
  5684. {
  5685. name: "Minimacro",
  5686. height: math.unit(20, "feet")
  5687. },
  5688. {
  5689. name: "Macro",
  5690. height: math.unit(200, "meters")
  5691. }
  5692. ]
  5693. ))
  5694. characterMakers.push(() => makeCharacter(
  5695. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5696. {
  5697. front: {
  5698. height: math.unit(6, "feet"),
  5699. weight: math.unit(195, "lb"),
  5700. name: "Front",
  5701. image: {
  5702. source: "./media/characters/rogue/front.svg"
  5703. }
  5704. },
  5705. },
  5706. [
  5707. {
  5708. name: "Macro",
  5709. height: math.unit(90, "feet"),
  5710. default: true
  5711. },
  5712. ]
  5713. ))
  5714. characterMakers.push(() => makeCharacter(
  5715. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5716. {
  5717. front: {
  5718. height: math.unit(5 + 8 / 12, "feet"),
  5719. weight: math.unit(140, "lb"),
  5720. name: "Front",
  5721. image: {
  5722. source: "./media/characters/piper/front.svg",
  5723. extra: 3928 / 3681
  5724. }
  5725. },
  5726. },
  5727. [
  5728. {
  5729. name: "Micro",
  5730. height: math.unit(2, "inches")
  5731. },
  5732. {
  5733. name: "Normal",
  5734. height: math.unit(5 + 8 / 12, "feet")
  5735. },
  5736. {
  5737. name: "Macro",
  5738. height: math.unit(250, "feet"),
  5739. default: true
  5740. },
  5741. {
  5742. name: "Megamacro",
  5743. height: math.unit(7, "miles")
  5744. },
  5745. ]
  5746. ))
  5747. characterMakers.push(() => makeCharacter(
  5748. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5749. {
  5750. front: {
  5751. height: math.unit(6, "feet"),
  5752. weight: math.unit(220, "lb"),
  5753. name: "Front",
  5754. image: {
  5755. source: "./media/characters/gemini/front.svg"
  5756. }
  5757. },
  5758. back: {
  5759. height: math.unit(6, "feet"),
  5760. weight: math.unit(220, "lb"),
  5761. name: "Back",
  5762. image: {
  5763. source: "./media/characters/gemini/back.svg"
  5764. }
  5765. },
  5766. kneeling: {
  5767. height: math.unit(6 / 1.5, "feet"),
  5768. weight: math.unit(220, "lb"),
  5769. name: "Kneeling",
  5770. image: {
  5771. source: "./media/characters/gemini/kneeling.svg",
  5772. bottom: 0.02
  5773. }
  5774. },
  5775. },
  5776. [
  5777. {
  5778. name: "Macro",
  5779. height: math.unit(300, "meters"),
  5780. default: true
  5781. },
  5782. {
  5783. name: "Megamacro",
  5784. height: math.unit(6900, "meters")
  5785. },
  5786. ]
  5787. ))
  5788. characterMakers.push(() => makeCharacter(
  5789. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5790. {
  5791. anthro: {
  5792. height: math.unit(2.35, "meters"),
  5793. weight: math.unit(73, "kg"),
  5794. name: "Anthro",
  5795. image: {
  5796. source: "./media/characters/alicia/anthro.svg",
  5797. extra: 2571 / 2385,
  5798. bottom: 75 / 2648
  5799. }
  5800. },
  5801. paw: {
  5802. height: math.unit(1.32, "feet"),
  5803. name: "Paw",
  5804. image: {
  5805. source: "./media/characters/alicia/paw.svg"
  5806. }
  5807. },
  5808. feral: {
  5809. height: math.unit(1.69, "meters"),
  5810. weight: math.unit(73, "kg"),
  5811. name: "Feral",
  5812. image: {
  5813. source: "./media/characters/alicia/feral.svg",
  5814. extra: 2123 / 1715,
  5815. bottom: 222 / 2349
  5816. }
  5817. },
  5818. },
  5819. [
  5820. {
  5821. name: "Normal",
  5822. height: math.unit(2.35, "meters")
  5823. },
  5824. {
  5825. name: "Macro",
  5826. height: math.unit(60, "meters"),
  5827. default: true
  5828. },
  5829. {
  5830. name: "Megamacro",
  5831. height: math.unit(10000, "kilometers")
  5832. },
  5833. ]
  5834. ))
  5835. characterMakers.push(() => makeCharacter(
  5836. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5837. {
  5838. front: {
  5839. height: math.unit(7, "feet"),
  5840. weight: math.unit(250, "lbs"),
  5841. name: "Front",
  5842. image: {
  5843. source: "./media/characters/archy/front.svg"
  5844. }
  5845. }
  5846. },
  5847. [
  5848. {
  5849. name: "Micro",
  5850. height: math.unit(1, "inch")
  5851. },
  5852. {
  5853. name: "Shorty",
  5854. height: math.unit(5, "feet")
  5855. },
  5856. {
  5857. name: "Normal",
  5858. height: math.unit(7, "feet")
  5859. },
  5860. {
  5861. name: "Macro",
  5862. height: math.unit(600, "meters"),
  5863. default: true
  5864. },
  5865. {
  5866. name: "Megamacro",
  5867. height: math.unit(1, "mile")
  5868. },
  5869. ]
  5870. ))
  5871. characterMakers.push(() => makeCharacter(
  5872. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5873. {
  5874. front: {
  5875. height: math.unit(1.65, "meters"),
  5876. weight: math.unit(74, "kg"),
  5877. name: "Front",
  5878. image: {
  5879. source: "./media/characters/berri/front.svg",
  5880. extra: 857 / 837,
  5881. bottom: 18 / 877
  5882. }
  5883. },
  5884. bum: {
  5885. height: math.unit(1.46, "feet"),
  5886. name: "Bum",
  5887. image: {
  5888. source: "./media/characters/berri/bum.svg"
  5889. }
  5890. },
  5891. mouth: {
  5892. height: math.unit(0.44, "feet"),
  5893. name: "Mouth",
  5894. image: {
  5895. source: "./media/characters/berri/mouth.svg"
  5896. }
  5897. },
  5898. paw: {
  5899. height: math.unit(0.826, "feet"),
  5900. name: "Paw",
  5901. image: {
  5902. source: "./media/characters/berri/paw.svg"
  5903. }
  5904. },
  5905. },
  5906. [
  5907. {
  5908. name: "Normal",
  5909. height: math.unit(1.65, "meters")
  5910. },
  5911. {
  5912. name: "Macro",
  5913. height: math.unit(60, "m"),
  5914. default: true
  5915. },
  5916. {
  5917. name: "Megamacro",
  5918. height: math.unit(9.213, "km")
  5919. },
  5920. {
  5921. name: "Planet Eater",
  5922. height: math.unit(489, "megameters")
  5923. },
  5924. {
  5925. name: "Teramacro",
  5926. height: math.unit(2471635000000, "meters")
  5927. },
  5928. {
  5929. name: "Examacro",
  5930. height: math.unit(8.0624e+26, "meters")
  5931. }
  5932. ]
  5933. ))
  5934. characterMakers.push(() => makeCharacter(
  5935. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5936. {
  5937. front: {
  5938. height: math.unit(1.72, "meters"),
  5939. weight: math.unit(68, "kg"),
  5940. name: "Front",
  5941. image: {
  5942. source: "./media/characters/lexi/front.svg"
  5943. }
  5944. }
  5945. },
  5946. [
  5947. {
  5948. name: "Very Smol",
  5949. height: math.unit(10, "mm")
  5950. },
  5951. {
  5952. name: "Micro",
  5953. height: math.unit(6.8, "cm"),
  5954. default: true
  5955. },
  5956. {
  5957. name: "Normal",
  5958. height: math.unit(1.72, "m")
  5959. }
  5960. ]
  5961. ))
  5962. characterMakers.push(() => makeCharacter(
  5963. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5964. {
  5965. front: {
  5966. height: math.unit(1.69, "meters"),
  5967. weight: math.unit(68, "kg"),
  5968. name: "Front",
  5969. image: {
  5970. source: "./media/characters/martin/front.svg",
  5971. extra: 596 / 581
  5972. }
  5973. }
  5974. },
  5975. [
  5976. {
  5977. name: "Micro",
  5978. height: math.unit(6.85, "cm"),
  5979. default: true
  5980. },
  5981. {
  5982. name: "Normal",
  5983. height: math.unit(1.69, "m")
  5984. }
  5985. ]
  5986. ))
  5987. characterMakers.push(() => makeCharacter(
  5988. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  5989. {
  5990. front: {
  5991. height: math.unit(1.69, "meters"),
  5992. weight: math.unit(68, "kg"),
  5993. name: "Front",
  5994. image: {
  5995. source: "./media/characters/juno/front.svg"
  5996. }
  5997. }
  5998. },
  5999. [
  6000. {
  6001. name: "Micro",
  6002. height: math.unit(7, "cm")
  6003. },
  6004. {
  6005. name: "Normal",
  6006. height: math.unit(1.89, "m")
  6007. },
  6008. {
  6009. name: "Macro",
  6010. height: math.unit(353, "meters"),
  6011. default: true
  6012. }
  6013. ]
  6014. ))
  6015. characterMakers.push(() => makeCharacter(
  6016. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6017. {
  6018. front: {
  6019. height: math.unit(1.93, "meters"),
  6020. weight: math.unit(83, "kg"),
  6021. name: "Front",
  6022. image: {
  6023. source: "./media/characters/samantha/front.svg"
  6024. }
  6025. },
  6026. frontClothed: {
  6027. height: math.unit(1.93, "meters"),
  6028. weight: math.unit(83, "kg"),
  6029. name: "Front (Clothed)",
  6030. image: {
  6031. source: "./media/characters/samantha/front-clothed.svg"
  6032. }
  6033. },
  6034. back: {
  6035. height: math.unit(1.93, "meters"),
  6036. weight: math.unit(83, "kg"),
  6037. name: "Back",
  6038. image: {
  6039. source: "./media/characters/samantha/back.svg"
  6040. }
  6041. },
  6042. },
  6043. [
  6044. {
  6045. name: "Normal",
  6046. height: math.unit(1.93, "m")
  6047. },
  6048. {
  6049. name: "Macro",
  6050. height: math.unit(74, "meters"),
  6051. default: true
  6052. },
  6053. {
  6054. name: "Macro+",
  6055. height: math.unit(223, "meters"),
  6056. },
  6057. {
  6058. name: "Megamacro",
  6059. height: math.unit(8381, "meters"),
  6060. },
  6061. {
  6062. name: "Megamacro+",
  6063. height: math.unit(12000, "kilometers")
  6064. },
  6065. ]
  6066. ))
  6067. characterMakers.push(() => makeCharacter(
  6068. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6069. {
  6070. front: {
  6071. height: math.unit(1.92, "meters"),
  6072. weight: math.unit(80, "kg"),
  6073. name: "Front",
  6074. image: {
  6075. source: "./media/characters/dr-clay/front.svg"
  6076. }
  6077. },
  6078. frontClothed: {
  6079. height: math.unit(1.92, "meters"),
  6080. weight: math.unit(80, "kg"),
  6081. name: "Front (Clothed)",
  6082. image: {
  6083. source: "./media/characters/dr-clay/front-clothed.svg"
  6084. }
  6085. }
  6086. },
  6087. [
  6088. {
  6089. name: "Normal",
  6090. height: math.unit(1.92, "m")
  6091. },
  6092. {
  6093. name: "Macro",
  6094. height: math.unit(214, "meters"),
  6095. default: true
  6096. },
  6097. {
  6098. name: "Macro+",
  6099. height: math.unit(12.237, "meters"),
  6100. },
  6101. {
  6102. name: "Megamacro",
  6103. height: math.unit(557, "megameters"),
  6104. },
  6105. {
  6106. name: "Unimaginable",
  6107. height: math.unit(120e9, "lightyears")
  6108. },
  6109. ]
  6110. ))
  6111. characterMakers.push(() => makeCharacter(
  6112. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6113. {
  6114. front: {
  6115. height: math.unit(2, "meters"),
  6116. weight: math.unit(80, "kg"),
  6117. name: "Front",
  6118. image: {
  6119. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6120. }
  6121. }
  6122. },
  6123. [
  6124. {
  6125. name: "Teramacro",
  6126. height: math.unit(500000, "lightyears"),
  6127. default: true
  6128. },
  6129. ]
  6130. ))
  6131. characterMakers.push(() => makeCharacter(
  6132. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6133. {
  6134. front: {
  6135. height: math.unit(2, "meters"),
  6136. weight: math.unit(150, "kg"),
  6137. name: "Front",
  6138. image: {
  6139. source: "./media/characters/vemus/front.svg",
  6140. extra: 2384 / 2084,
  6141. bottom: 0.0123
  6142. }
  6143. }
  6144. },
  6145. [
  6146. {
  6147. name: "Normal",
  6148. height: math.unit(3.75, "meters"),
  6149. default: true
  6150. },
  6151. {
  6152. name: "Big",
  6153. height: math.unit(8, "meters")
  6154. },
  6155. {
  6156. name: "Macro",
  6157. height: math.unit(100, "meters")
  6158. },
  6159. {
  6160. name: "Macro+",
  6161. height: math.unit(1500, "meters")
  6162. },
  6163. {
  6164. name: "Stellar",
  6165. height: math.unit(14e8, "meters")
  6166. },
  6167. ]
  6168. ))
  6169. characterMakers.push(() => makeCharacter(
  6170. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6171. {
  6172. front: {
  6173. height: math.unit(2, "meters"),
  6174. weight: math.unit(70, "kg"),
  6175. name: "Front",
  6176. image: {
  6177. source: "./media/characters/beherit/front.svg",
  6178. extra: 1408 / 1242
  6179. }
  6180. }
  6181. },
  6182. [
  6183. {
  6184. name: "Normal",
  6185. height: math.unit(6, "feet")
  6186. },
  6187. {
  6188. name: "Lorg",
  6189. height: math.unit(25, "feet"),
  6190. default: true
  6191. },
  6192. {
  6193. name: "Lorger",
  6194. height: math.unit(75, "feet")
  6195. },
  6196. {
  6197. name: "Macro",
  6198. height: math.unit(200, "meters")
  6199. },
  6200. ]
  6201. ))
  6202. characterMakers.push(() => makeCharacter(
  6203. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6204. {
  6205. front: {
  6206. height: math.unit(2, "meters"),
  6207. weight: math.unit(150, "kg"),
  6208. name: "Front",
  6209. image: {
  6210. source: "./media/characters/everett/front.svg",
  6211. extra: 2038 / 1737,
  6212. bottom: 0.03
  6213. }
  6214. },
  6215. paw: {
  6216. height: math.unit(2 / 3.6, "meters"),
  6217. name: "Paw",
  6218. image: {
  6219. source: "./media/characters/everett/paw.svg"
  6220. }
  6221. },
  6222. },
  6223. [
  6224. {
  6225. name: "Normal",
  6226. height: math.unit(15, "feet"),
  6227. default: true
  6228. },
  6229. {
  6230. name: "Lorg",
  6231. height: math.unit(70, "feet"),
  6232. default: true
  6233. },
  6234. {
  6235. name: "Lorger",
  6236. height: math.unit(250, "feet")
  6237. },
  6238. {
  6239. name: "Macro",
  6240. height: math.unit(500, "meters")
  6241. },
  6242. ]
  6243. ))
  6244. characterMakers.push(() => makeCharacter(
  6245. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6246. {
  6247. front: {
  6248. height: math.unit(2, "meters"),
  6249. weight: math.unit(86, "kg"),
  6250. name: "Front",
  6251. image: {
  6252. source: "./media/characters/rose/front.svg",
  6253. extra: 350/335,
  6254. bottom: 10/360
  6255. }
  6256. },
  6257. frontAlt: {
  6258. height: math.unit(1.6, "meters"),
  6259. weight: math.unit(86, "kg"),
  6260. name: "Front (Alt)",
  6261. image: {
  6262. source: "./media/characters/rose/front-alt.svg",
  6263. extra: 299/283,
  6264. bottom: 3/302
  6265. }
  6266. },
  6267. plush: {
  6268. height: math.unit(2, "meters"),
  6269. weight: math.unit(86/3, "kg"),
  6270. name: "Plush",
  6271. image: {
  6272. source: "./media/characters/rose/plush.svg",
  6273. extra: 361/337,
  6274. bottom: 11/372
  6275. }
  6276. },
  6277. },
  6278. [
  6279. {
  6280. name: "Mini-Micro",
  6281. height: math.unit(1, "cm")
  6282. },
  6283. {
  6284. name: "Micro",
  6285. height: math.unit(3.5, "inches"),
  6286. default: true
  6287. },
  6288. {
  6289. name: "Normal",
  6290. height: math.unit(6 + 1 / 6, "feet")
  6291. },
  6292. {
  6293. name: "Mini-Macro",
  6294. height: math.unit(9 + 10 / 12, "feet")
  6295. },
  6296. ]
  6297. ))
  6298. characterMakers.push(() => makeCharacter(
  6299. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6300. {
  6301. front: {
  6302. height: math.unit(2, "meters"),
  6303. weight: math.unit(350, "lbs"),
  6304. name: "Front",
  6305. image: {
  6306. source: "./media/characters/regal/front.svg"
  6307. }
  6308. },
  6309. back: {
  6310. height: math.unit(2, "meters"),
  6311. weight: math.unit(350, "lbs"),
  6312. name: "Back",
  6313. image: {
  6314. source: "./media/characters/regal/back.svg"
  6315. }
  6316. },
  6317. },
  6318. [
  6319. {
  6320. name: "Macro",
  6321. height: math.unit(350, "feet"),
  6322. default: true
  6323. }
  6324. ]
  6325. ))
  6326. characterMakers.push(() => makeCharacter(
  6327. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6328. {
  6329. front: {
  6330. height: math.unit(4 + 11 / 12, "feet"),
  6331. weight: math.unit(100, "lbs"),
  6332. name: "Front",
  6333. image: {
  6334. source: "./media/characters/opal/front.svg"
  6335. }
  6336. },
  6337. frontAlt: {
  6338. height: math.unit(4 + 11 / 12, "feet"),
  6339. weight: math.unit(100, "lbs"),
  6340. name: "Front (Alt)",
  6341. image: {
  6342. source: "./media/characters/opal/front-alt.svg"
  6343. }
  6344. },
  6345. },
  6346. [
  6347. {
  6348. name: "Small",
  6349. height: math.unit(4 + 11 / 12, "feet")
  6350. },
  6351. {
  6352. name: "Normal",
  6353. height: math.unit(20, "feet"),
  6354. default: true
  6355. },
  6356. {
  6357. name: "Macro",
  6358. height: math.unit(120, "feet")
  6359. },
  6360. {
  6361. name: "Megamacro",
  6362. height: math.unit(80, "miles")
  6363. },
  6364. {
  6365. name: "True Size",
  6366. height: math.unit(100000, "lightyears")
  6367. },
  6368. ]
  6369. ))
  6370. characterMakers.push(() => makeCharacter(
  6371. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6372. {
  6373. front: {
  6374. height: math.unit(6, "feet"),
  6375. weight: math.unit(200, "lbs"),
  6376. name: "Front",
  6377. image: {
  6378. source: "./media/characters/vector-wuff/front.svg"
  6379. }
  6380. }
  6381. },
  6382. [
  6383. {
  6384. name: "Normal",
  6385. height: math.unit(2.8, "meters")
  6386. },
  6387. {
  6388. name: "Macro",
  6389. height: math.unit(450, "meters"),
  6390. default: true
  6391. },
  6392. {
  6393. name: "Megamacro",
  6394. height: math.unit(15, "kilometers")
  6395. }
  6396. ]
  6397. ))
  6398. characterMakers.push(() => makeCharacter(
  6399. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6400. {
  6401. front: {
  6402. height: math.unit(6, "feet"),
  6403. weight: math.unit(256, "lbs"),
  6404. name: "Front",
  6405. image: {
  6406. source: "./media/characters/dannik/front.svg"
  6407. }
  6408. }
  6409. },
  6410. [
  6411. {
  6412. name: "Macro",
  6413. height: math.unit(69.57, "meters"),
  6414. default: true
  6415. },
  6416. ]
  6417. ))
  6418. characterMakers.push(() => makeCharacter(
  6419. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6420. {
  6421. front: {
  6422. height: math.unit(6, "feet"),
  6423. weight: math.unit(120, "lbs"),
  6424. name: "Front",
  6425. image: {
  6426. source: "./media/characters/azura-saharah/front.svg"
  6427. }
  6428. },
  6429. back: {
  6430. height: math.unit(6, "feet"),
  6431. weight: math.unit(120, "lbs"),
  6432. name: "Back",
  6433. image: {
  6434. source: "./media/characters/azura-saharah/back.svg"
  6435. }
  6436. },
  6437. },
  6438. [
  6439. {
  6440. name: "Macro",
  6441. height: math.unit(100, "feet"),
  6442. default: true
  6443. },
  6444. ]
  6445. ))
  6446. characterMakers.push(() => makeCharacter(
  6447. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6448. {
  6449. side: {
  6450. height: math.unit(5 + 4 / 12, "feet"),
  6451. weight: math.unit(163, "lbs"),
  6452. name: "Side",
  6453. image: {
  6454. source: "./media/characters/kennedy/side.svg"
  6455. }
  6456. }
  6457. },
  6458. [
  6459. {
  6460. name: "Standard Doggo",
  6461. height: math.unit(5 + 4 / 12, "feet")
  6462. },
  6463. {
  6464. name: "Big Doggo",
  6465. height: math.unit(25 + 3 / 12, "feet"),
  6466. default: true
  6467. },
  6468. ]
  6469. ))
  6470. characterMakers.push(() => makeCharacter(
  6471. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6472. {
  6473. front: {
  6474. height: math.unit(6, "feet"),
  6475. weight: math.unit(90, "lbs"),
  6476. name: "Front",
  6477. image: {
  6478. source: "./media/characters/odi-lunar/front.svg"
  6479. }
  6480. }
  6481. },
  6482. [
  6483. {
  6484. name: "Micro",
  6485. height: math.unit(3, "inches"),
  6486. default: true
  6487. },
  6488. {
  6489. name: "Normal",
  6490. height: math.unit(5.5, "feet")
  6491. }
  6492. ]
  6493. ))
  6494. characterMakers.push(() => makeCharacter(
  6495. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6496. {
  6497. back: {
  6498. height: math.unit(6, "feet"),
  6499. weight: math.unit(220, "lbs"),
  6500. name: "Back",
  6501. image: {
  6502. source: "./media/characters/mandake/back.svg"
  6503. }
  6504. }
  6505. },
  6506. [
  6507. {
  6508. name: "Normal",
  6509. height: math.unit(7, "feet"),
  6510. default: true
  6511. },
  6512. {
  6513. name: "Macro",
  6514. height: math.unit(78, "feet")
  6515. },
  6516. {
  6517. name: "Macro+",
  6518. height: math.unit(300, "meters")
  6519. },
  6520. {
  6521. name: "Macro++",
  6522. height: math.unit(2400, "feet")
  6523. },
  6524. {
  6525. name: "Megamacro",
  6526. height: math.unit(5167, "meters")
  6527. },
  6528. {
  6529. name: "Gigamacro",
  6530. height: math.unit(41769, "miles")
  6531. },
  6532. ]
  6533. ))
  6534. characterMakers.push(() => makeCharacter(
  6535. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6536. {
  6537. front: {
  6538. height: math.unit(6, "feet"),
  6539. weight: math.unit(120, "lbs"),
  6540. name: "Front",
  6541. image: {
  6542. source: "./media/characters/yozey/front.svg"
  6543. }
  6544. },
  6545. frontAlt: {
  6546. height: math.unit(6, "feet"),
  6547. weight: math.unit(120, "lbs"),
  6548. name: "Front (Alt)",
  6549. image: {
  6550. source: "./media/characters/yozey/front-alt.svg"
  6551. }
  6552. },
  6553. side: {
  6554. height: math.unit(6, "feet"),
  6555. weight: math.unit(120, "lbs"),
  6556. name: "Side",
  6557. image: {
  6558. source: "./media/characters/yozey/side.svg"
  6559. }
  6560. },
  6561. },
  6562. [
  6563. {
  6564. name: "Micro",
  6565. height: math.unit(3, "inches"),
  6566. default: true
  6567. },
  6568. {
  6569. name: "Normal",
  6570. height: math.unit(6, "feet")
  6571. }
  6572. ]
  6573. ))
  6574. characterMakers.push(() => makeCharacter(
  6575. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6576. {
  6577. front: {
  6578. height: math.unit(6, "feet"),
  6579. weight: math.unit(103, "lbs"),
  6580. name: "Front",
  6581. image: {
  6582. source: "./media/characters/valeska-voss/front.svg"
  6583. }
  6584. }
  6585. },
  6586. [
  6587. {
  6588. name: "Mini-Sized Sub",
  6589. height: math.unit(3.1, "inches")
  6590. },
  6591. {
  6592. name: "Mid-Sized Sub",
  6593. height: math.unit(6.2, "inches")
  6594. },
  6595. {
  6596. name: "Full-Sized Sub",
  6597. height: math.unit(9.3, "inches")
  6598. },
  6599. {
  6600. name: "Normal",
  6601. height: math.unit(5 + 2 / 12, "foot"),
  6602. default: true
  6603. },
  6604. ]
  6605. ))
  6606. characterMakers.push(() => makeCharacter(
  6607. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6608. {
  6609. front: {
  6610. height: math.unit(6, "feet"),
  6611. weight: math.unit(160, "lbs"),
  6612. name: "Front",
  6613. image: {
  6614. source: "./media/characters/gene-zeta/front.svg",
  6615. extra: 3006 / 2826,
  6616. bottom: 182 / 3188
  6617. }
  6618. }
  6619. },
  6620. [
  6621. {
  6622. name: "Micro",
  6623. height: math.unit(6, "inches")
  6624. },
  6625. {
  6626. name: "Normal",
  6627. height: math.unit(5 + 11 / 12, "foot"),
  6628. default: true
  6629. },
  6630. {
  6631. name: "Macro",
  6632. height: math.unit(140, "feet")
  6633. },
  6634. {
  6635. name: "Supercharged",
  6636. height: math.unit(2500, "feet")
  6637. },
  6638. ]
  6639. ))
  6640. characterMakers.push(() => makeCharacter(
  6641. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6642. {
  6643. front: {
  6644. height: math.unit(6, "feet"),
  6645. weight: math.unit(350, "lbs"),
  6646. name: "Front",
  6647. image: {
  6648. source: "./media/characters/razinox/front.svg",
  6649. extra: 1686 / 1548,
  6650. bottom: 28.2 / 1868
  6651. }
  6652. },
  6653. back: {
  6654. height: math.unit(6, "feet"),
  6655. weight: math.unit(350, "lbs"),
  6656. name: "Back",
  6657. image: {
  6658. source: "./media/characters/razinox/back.svg",
  6659. extra: 1660 / 1590,
  6660. bottom: 15 / 1665
  6661. }
  6662. },
  6663. },
  6664. [
  6665. {
  6666. name: "Normal",
  6667. height: math.unit(10 + 8 / 12, "foot")
  6668. },
  6669. {
  6670. name: "Minimacro",
  6671. height: math.unit(15, "foot")
  6672. },
  6673. {
  6674. name: "Macro",
  6675. height: math.unit(60, "foot"),
  6676. default: true
  6677. },
  6678. {
  6679. name: "Megamacro",
  6680. height: math.unit(5, "miles")
  6681. },
  6682. {
  6683. name: "Gigamacro",
  6684. height: math.unit(6000, "miles")
  6685. },
  6686. ]
  6687. ))
  6688. characterMakers.push(() => makeCharacter(
  6689. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6690. {
  6691. front: {
  6692. height: math.unit(6, "feet"),
  6693. weight: math.unit(150, "lbs"),
  6694. name: "Front",
  6695. image: {
  6696. source: "./media/characters/cobalt/front.svg"
  6697. }
  6698. }
  6699. },
  6700. [
  6701. {
  6702. name: "Normal",
  6703. height: math.unit(8 + 1 / 12, "foot")
  6704. },
  6705. {
  6706. name: "Macro",
  6707. height: math.unit(111, "foot"),
  6708. default: true
  6709. },
  6710. {
  6711. name: "Supracosmic",
  6712. height: math.unit(1e42, "feet")
  6713. },
  6714. ]
  6715. ))
  6716. characterMakers.push(() => makeCharacter(
  6717. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6718. {
  6719. front: {
  6720. height: math.unit(6, "feet"),
  6721. weight: math.unit(140, "lbs"),
  6722. name: "Front",
  6723. image: {
  6724. source: "./media/characters/amanda/front.svg"
  6725. }
  6726. }
  6727. },
  6728. [
  6729. {
  6730. name: "Micro",
  6731. height: math.unit(5, "inches"),
  6732. default: true
  6733. },
  6734. ]
  6735. ))
  6736. characterMakers.push(() => makeCharacter(
  6737. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6738. {
  6739. front: {
  6740. height: math.unit(2.75, "meters"),
  6741. weight: math.unit(1200, "lb"),
  6742. name: "Front",
  6743. image: {
  6744. source: "./media/characters/teal/front.svg",
  6745. extra: 2463 / 2320,
  6746. bottom: 166 / 2629
  6747. }
  6748. },
  6749. back: {
  6750. height: math.unit(2.75, "meters"),
  6751. weight: math.unit(1200, "lb"),
  6752. name: "Back",
  6753. image: {
  6754. source: "./media/characters/teal/back.svg",
  6755. extra: 2580 / 2489,
  6756. bottom: 151 / 2731
  6757. }
  6758. },
  6759. sitting: {
  6760. height: math.unit(1.9, "meters"),
  6761. weight: math.unit(1200, "lb"),
  6762. name: "Sitting",
  6763. image: {
  6764. source: "./media/characters/teal/sitting.svg",
  6765. extra: 623 / 590,
  6766. bottom: 121 / 744
  6767. }
  6768. },
  6769. standing: {
  6770. height: math.unit(2.75, "meters"),
  6771. weight: math.unit(1200, "lb"),
  6772. name: "Standing",
  6773. image: {
  6774. source: "./media/characters/teal/standing.svg",
  6775. extra: 923 / 893,
  6776. bottom: 60 / 983
  6777. }
  6778. },
  6779. stretching: {
  6780. height: math.unit(3.65, "meters"),
  6781. weight: math.unit(1200, "lb"),
  6782. name: "Stretching",
  6783. image: {
  6784. source: "./media/characters/teal/stretching.svg",
  6785. extra: 1276 / 1244,
  6786. bottom: 0 / 1276
  6787. }
  6788. },
  6789. legged: {
  6790. height: math.unit(1.3, "meters"),
  6791. weight: math.unit(100, "lb"),
  6792. name: "Legged",
  6793. image: {
  6794. source: "./media/characters/teal/legged.svg",
  6795. extra: 462 / 437,
  6796. bottom: 24 / 486
  6797. }
  6798. },
  6799. naga: {
  6800. height: math.unit(5.4, "meters"),
  6801. weight: math.unit(4000, "lb"),
  6802. name: "Naga",
  6803. image: {
  6804. source: "./media/characters/teal/naga.svg",
  6805. extra: 1902 / 1858,
  6806. bottom: 0 / 1902
  6807. }
  6808. },
  6809. hand: {
  6810. height: math.unit(0.52, "meters"),
  6811. name: "Hand",
  6812. image: {
  6813. source: "./media/characters/teal/hand.svg"
  6814. }
  6815. },
  6816. maw: {
  6817. height: math.unit(0.43, "meters"),
  6818. name: "Maw",
  6819. image: {
  6820. source: "./media/characters/teal/maw.svg"
  6821. }
  6822. },
  6823. slit: {
  6824. height: math.unit(0.25, "meters"),
  6825. name: "Slit",
  6826. image: {
  6827. source: "./media/characters/teal/slit.svg"
  6828. }
  6829. },
  6830. },
  6831. [
  6832. {
  6833. name: "Normal",
  6834. height: math.unit(2.75, "meters"),
  6835. default: true
  6836. },
  6837. {
  6838. name: "Macro",
  6839. height: math.unit(300, "feet")
  6840. },
  6841. {
  6842. name: "Macro+",
  6843. height: math.unit(2000, "feet")
  6844. },
  6845. ]
  6846. ))
  6847. characterMakers.push(() => makeCharacter(
  6848. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6849. {
  6850. frontCat: {
  6851. height: math.unit(6, "feet"),
  6852. weight: math.unit(180, "lbs"),
  6853. name: "Front (Cat)",
  6854. image: {
  6855. source: "./media/characters/ravin-amulet/front-cat.svg"
  6856. }
  6857. },
  6858. frontCatAlt: {
  6859. height: math.unit(6, "feet"),
  6860. weight: math.unit(180, "lbs"),
  6861. name: "Front (Alt, Cat)",
  6862. image: {
  6863. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6864. }
  6865. },
  6866. frontWerewolf: {
  6867. height: math.unit(6 * 1.2, "feet"),
  6868. weight: math.unit(225, "lbs"),
  6869. name: "Front (Werewolf)",
  6870. image: {
  6871. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6872. }
  6873. },
  6874. backWerewolf: {
  6875. height: math.unit(6 * 1.2, "feet"),
  6876. weight: math.unit(225, "lbs"),
  6877. name: "Back (Werewolf)",
  6878. image: {
  6879. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6880. }
  6881. },
  6882. },
  6883. [
  6884. {
  6885. name: "Nano",
  6886. height: math.unit(1, "micrometer")
  6887. },
  6888. {
  6889. name: "Micro",
  6890. height: math.unit(1, "inch")
  6891. },
  6892. {
  6893. name: "Normal",
  6894. height: math.unit(6, "feet"),
  6895. default: true
  6896. },
  6897. {
  6898. name: "Macro",
  6899. height: math.unit(60, "feet")
  6900. }
  6901. ]
  6902. ))
  6903. characterMakers.push(() => makeCharacter(
  6904. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6905. {
  6906. front: {
  6907. height: math.unit(6, "feet"),
  6908. weight: math.unit(165, "lbs"),
  6909. name: "Front",
  6910. image: {
  6911. source: "./media/characters/fluoresce/front.svg"
  6912. }
  6913. }
  6914. },
  6915. [
  6916. {
  6917. name: "Micro",
  6918. height: math.unit(6, "cm")
  6919. },
  6920. {
  6921. name: "Normal",
  6922. height: math.unit(5 + 7 / 12, "feet"),
  6923. default: true
  6924. },
  6925. {
  6926. name: "Macro",
  6927. height: math.unit(56, "feet")
  6928. },
  6929. {
  6930. name: "Megamacro",
  6931. height: math.unit(1.9, "miles")
  6932. },
  6933. ]
  6934. ))
  6935. characterMakers.push(() => makeCharacter(
  6936. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6937. {
  6938. front: {
  6939. height: math.unit(9 + 6 / 12, "feet"),
  6940. weight: math.unit(523, "lbs"),
  6941. name: "Side",
  6942. image: {
  6943. source: "./media/characters/aurora/side.svg"
  6944. }
  6945. }
  6946. },
  6947. [
  6948. {
  6949. name: "Normal",
  6950. height: math.unit(9 + 6 / 12, "feet")
  6951. },
  6952. {
  6953. name: "Macro",
  6954. height: math.unit(96, "feet"),
  6955. default: true
  6956. },
  6957. {
  6958. name: "Macro+",
  6959. height: math.unit(243, "feet")
  6960. },
  6961. ]
  6962. ))
  6963. characterMakers.push(() => makeCharacter(
  6964. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6965. {
  6966. front: {
  6967. height: math.unit(194, "cm"),
  6968. weight: math.unit(90, "kg"),
  6969. name: "Front",
  6970. image: {
  6971. source: "./media/characters/ranek/front.svg"
  6972. }
  6973. },
  6974. side: {
  6975. height: math.unit(194, "cm"),
  6976. weight: math.unit(90, "kg"),
  6977. name: "Side",
  6978. image: {
  6979. source: "./media/characters/ranek/side.svg"
  6980. }
  6981. },
  6982. back: {
  6983. height: math.unit(194, "cm"),
  6984. weight: math.unit(90, "kg"),
  6985. name: "Back",
  6986. image: {
  6987. source: "./media/characters/ranek/back.svg"
  6988. }
  6989. },
  6990. feral: {
  6991. height: math.unit(30, "cm"),
  6992. weight: math.unit(1.6, "lbs"),
  6993. name: "Feral",
  6994. image: {
  6995. source: "./media/characters/ranek/feral.svg"
  6996. }
  6997. },
  6998. },
  6999. [
  7000. {
  7001. name: "Normal",
  7002. height: math.unit(194, "cm"),
  7003. default: true
  7004. },
  7005. {
  7006. name: "Macro",
  7007. height: math.unit(100, "meters")
  7008. },
  7009. ]
  7010. ))
  7011. characterMakers.push(() => makeCharacter(
  7012. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7013. {
  7014. front: {
  7015. height: math.unit(5 + 6 / 12, "feet"),
  7016. weight: math.unit(153, "lbs"),
  7017. name: "Front",
  7018. image: {
  7019. source: "./media/characters/andrew-cooper/front.svg"
  7020. }
  7021. },
  7022. },
  7023. [
  7024. {
  7025. name: "Nano",
  7026. height: math.unit(1, "mm")
  7027. },
  7028. {
  7029. name: "Micro",
  7030. height: math.unit(2, "inches")
  7031. },
  7032. {
  7033. name: "Normal",
  7034. height: math.unit(5 + 6 / 12, "feet"),
  7035. default: true
  7036. }
  7037. ]
  7038. ))
  7039. characterMakers.push(() => makeCharacter(
  7040. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7041. {
  7042. front: {
  7043. height: math.unit(6, "feet"),
  7044. weight: math.unit(180, "lbs"),
  7045. name: "Front",
  7046. image: {
  7047. source: "./media/characters/akane-sato/front.svg",
  7048. extra: 1219 / 1140
  7049. }
  7050. },
  7051. back: {
  7052. height: math.unit(6, "feet"),
  7053. weight: math.unit(180, "lbs"),
  7054. name: "Back",
  7055. image: {
  7056. source: "./media/characters/akane-sato/back.svg",
  7057. extra: 1219 / 1170
  7058. }
  7059. },
  7060. },
  7061. [
  7062. {
  7063. name: "Normal",
  7064. height: math.unit(2.5, "meters")
  7065. },
  7066. {
  7067. name: "Macro",
  7068. height: math.unit(250, "meters"),
  7069. default: true
  7070. },
  7071. {
  7072. name: "Megamacro",
  7073. height: math.unit(25, "km")
  7074. },
  7075. ]
  7076. ))
  7077. characterMakers.push(() => makeCharacter(
  7078. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7079. {
  7080. front: {
  7081. height: math.unit(6, "feet"),
  7082. weight: math.unit(65, "kg"),
  7083. name: "Front",
  7084. image: {
  7085. source: "./media/characters/rook/front.svg",
  7086. extra: 960 / 950
  7087. }
  7088. }
  7089. },
  7090. [
  7091. {
  7092. name: "Normal",
  7093. height: math.unit(8.8, "feet")
  7094. },
  7095. {
  7096. name: "Macro",
  7097. height: math.unit(88, "feet"),
  7098. default: true
  7099. },
  7100. {
  7101. name: "Megamacro",
  7102. height: math.unit(8, "miles")
  7103. },
  7104. ]
  7105. ))
  7106. characterMakers.push(() => makeCharacter(
  7107. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7108. {
  7109. front: {
  7110. height: math.unit(12 + 2 / 12, "feet"),
  7111. weight: math.unit(808, "lbs"),
  7112. name: "Front",
  7113. image: {
  7114. source: "./media/characters/prodigy/front.svg"
  7115. }
  7116. }
  7117. },
  7118. [
  7119. {
  7120. name: "Normal",
  7121. height: math.unit(12 + 2 / 12, "feet"),
  7122. default: true
  7123. },
  7124. {
  7125. name: "Macro",
  7126. height: math.unit(143, "feet")
  7127. },
  7128. {
  7129. name: "Macro+",
  7130. height: math.unit(400, "feet")
  7131. },
  7132. ]
  7133. ))
  7134. characterMakers.push(() => makeCharacter(
  7135. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7136. {
  7137. front: {
  7138. height: math.unit(6, "feet"),
  7139. weight: math.unit(225, "lbs"),
  7140. name: "Front",
  7141. image: {
  7142. source: "./media/characters/daniel/front.svg"
  7143. }
  7144. },
  7145. leaning: {
  7146. height: math.unit(6, "feet"),
  7147. weight: math.unit(225, "lbs"),
  7148. name: "Leaning",
  7149. image: {
  7150. source: "./media/characters/daniel/leaning.svg"
  7151. }
  7152. },
  7153. },
  7154. [
  7155. {
  7156. name: "Macro",
  7157. height: math.unit(1000, "feet"),
  7158. default: true
  7159. },
  7160. ]
  7161. ))
  7162. characterMakers.push(() => makeCharacter(
  7163. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7164. {
  7165. front: {
  7166. height: math.unit(6, "feet"),
  7167. weight: math.unit(88, "lbs"),
  7168. name: "Front",
  7169. image: {
  7170. source: "./media/characters/chiros/front.svg",
  7171. extra: 306 / 226
  7172. }
  7173. },
  7174. side: {
  7175. height: math.unit(6, "feet"),
  7176. weight: math.unit(88, "lbs"),
  7177. name: "Side",
  7178. image: {
  7179. source: "./media/characters/chiros/side.svg",
  7180. extra: 306 / 226
  7181. }
  7182. },
  7183. },
  7184. [
  7185. {
  7186. name: "Normal",
  7187. height: math.unit(6, "cm"),
  7188. default: true
  7189. },
  7190. ]
  7191. ))
  7192. characterMakers.push(() => makeCharacter(
  7193. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7194. {
  7195. front: {
  7196. height: math.unit(6, "feet"),
  7197. weight: math.unit(100, "lbs"),
  7198. name: "Front",
  7199. image: {
  7200. source: "./media/characters/selka/front.svg",
  7201. extra: 947 / 887
  7202. }
  7203. }
  7204. },
  7205. [
  7206. {
  7207. name: "Normal",
  7208. height: math.unit(5, "cm"),
  7209. default: true
  7210. },
  7211. ]
  7212. ))
  7213. characterMakers.push(() => makeCharacter(
  7214. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7215. {
  7216. front: {
  7217. height: math.unit(8 + 3 / 12, "feet"),
  7218. weight: math.unit(424, "lbs"),
  7219. name: "Front",
  7220. image: {
  7221. source: "./media/characters/verin/front.svg",
  7222. extra: 1845 / 1550
  7223. }
  7224. },
  7225. frontArmored: {
  7226. height: math.unit(8 + 3 / 12, "feet"),
  7227. weight: math.unit(424, "lbs"),
  7228. name: "Front (Armored)",
  7229. image: {
  7230. source: "./media/characters/verin/front-armor.svg",
  7231. extra: 1845 / 1550,
  7232. bottom: 0.01
  7233. }
  7234. },
  7235. back: {
  7236. height: math.unit(8 + 3 / 12, "feet"),
  7237. weight: math.unit(424, "lbs"),
  7238. name: "Back",
  7239. image: {
  7240. source: "./media/characters/verin/back.svg",
  7241. bottom: 0.1,
  7242. extra: 1
  7243. }
  7244. },
  7245. foot: {
  7246. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7247. name: "Foot",
  7248. image: {
  7249. source: "./media/characters/verin/foot.svg"
  7250. }
  7251. },
  7252. },
  7253. [
  7254. {
  7255. name: "Normal",
  7256. height: math.unit(8 + 3 / 12, "feet")
  7257. },
  7258. {
  7259. name: "Minimacro",
  7260. height: math.unit(21, "feet"),
  7261. default: true
  7262. },
  7263. {
  7264. name: "Macro",
  7265. height: math.unit(626, "feet")
  7266. },
  7267. ]
  7268. ))
  7269. characterMakers.push(() => makeCharacter(
  7270. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7271. {
  7272. front: {
  7273. height: math.unit(2.718, "meters"),
  7274. weight: math.unit(150, "lbs"),
  7275. name: "Front",
  7276. image: {
  7277. source: "./media/characters/sovrim-terraquian/front.svg"
  7278. }
  7279. },
  7280. back: {
  7281. height: math.unit(2.718, "meters"),
  7282. weight: math.unit(150, "lbs"),
  7283. name: "Back",
  7284. image: {
  7285. source: "./media/characters/sovrim-terraquian/back.svg"
  7286. }
  7287. }
  7288. },
  7289. [
  7290. {
  7291. name: "Micro",
  7292. height: math.unit(2, "inches")
  7293. },
  7294. {
  7295. name: "Small",
  7296. height: math.unit(1, "meter")
  7297. },
  7298. {
  7299. name: "Normal",
  7300. height: math.unit(Math.E, "meters"),
  7301. default: true
  7302. },
  7303. {
  7304. name: "Macro",
  7305. height: math.unit(20, "meters")
  7306. },
  7307. {
  7308. name: "Macro+",
  7309. height: math.unit(400, "meters")
  7310. },
  7311. ]
  7312. ))
  7313. characterMakers.push(() => makeCharacter(
  7314. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7315. {
  7316. front: {
  7317. height: math.unit(7, "feet"),
  7318. weight: math.unit(489, "lbs"),
  7319. name: "Front",
  7320. image: {
  7321. source: "./media/characters/reece-silvermane/front.svg",
  7322. bottom: 0.02,
  7323. extra: 1
  7324. }
  7325. },
  7326. },
  7327. [
  7328. {
  7329. name: "Macro",
  7330. height: math.unit(1.5, "miles"),
  7331. default: true
  7332. },
  7333. ]
  7334. ))
  7335. characterMakers.push(() => makeCharacter(
  7336. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7337. {
  7338. front: {
  7339. height: math.unit(6, "feet"),
  7340. weight: math.unit(78, "kg"),
  7341. name: "Front",
  7342. image: {
  7343. source: "./media/characters/kane/front.svg",
  7344. extra: 978 / 899
  7345. }
  7346. },
  7347. },
  7348. [
  7349. {
  7350. name: "Normal",
  7351. height: math.unit(2.1, "m"),
  7352. },
  7353. {
  7354. name: "Macro",
  7355. height: math.unit(1, "km"),
  7356. default: true
  7357. },
  7358. ]
  7359. ))
  7360. characterMakers.push(() => makeCharacter(
  7361. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7362. {
  7363. front: {
  7364. height: math.unit(6, "feet"),
  7365. weight: math.unit(200, "kg"),
  7366. name: "Front",
  7367. image: {
  7368. source: "./media/characters/tegon/front.svg",
  7369. bottom: 0.01,
  7370. extra: 1
  7371. }
  7372. },
  7373. },
  7374. [
  7375. {
  7376. name: "Micro",
  7377. height: math.unit(1, "inch")
  7378. },
  7379. {
  7380. name: "Normal",
  7381. height: math.unit(6 + 3 / 12, "feet"),
  7382. default: true
  7383. },
  7384. {
  7385. name: "Macro",
  7386. height: math.unit(300, "feet")
  7387. },
  7388. {
  7389. name: "Megamacro",
  7390. height: math.unit(69, "miles")
  7391. },
  7392. ]
  7393. ))
  7394. characterMakers.push(() => makeCharacter(
  7395. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7396. {
  7397. side: {
  7398. height: math.unit(6, "feet"),
  7399. weight: math.unit(2304, "lbs"),
  7400. name: "Side",
  7401. image: {
  7402. source: "./media/characters/arcturax/side.svg",
  7403. extra: 790 / 376,
  7404. bottom: 0.01
  7405. }
  7406. },
  7407. },
  7408. [
  7409. {
  7410. name: "Micro",
  7411. height: math.unit(2, "inch")
  7412. },
  7413. {
  7414. name: "Normal",
  7415. height: math.unit(6, "feet")
  7416. },
  7417. {
  7418. name: "Macro",
  7419. height: math.unit(39, "feet"),
  7420. default: true
  7421. },
  7422. {
  7423. name: "Megamacro",
  7424. height: math.unit(7, "miles")
  7425. },
  7426. ]
  7427. ))
  7428. characterMakers.push(() => makeCharacter(
  7429. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7430. {
  7431. front: {
  7432. height: math.unit(6, "feet"),
  7433. weight: math.unit(50, "lbs"),
  7434. name: "Front",
  7435. image: {
  7436. source: "./media/characters/sentri/front.svg",
  7437. extra: 1750 / 1570,
  7438. bottom: 0.025
  7439. }
  7440. },
  7441. frontAlt: {
  7442. height: math.unit(6, "feet"),
  7443. weight: math.unit(50, "lbs"),
  7444. name: "Front (Alt)",
  7445. image: {
  7446. source: "./media/characters/sentri/front-alt.svg",
  7447. extra: 1750 / 1570,
  7448. bottom: 0.025
  7449. }
  7450. },
  7451. },
  7452. [
  7453. {
  7454. name: "Normal",
  7455. height: math.unit(15, "feet"),
  7456. default: true
  7457. },
  7458. {
  7459. name: "Macro",
  7460. height: math.unit(2500, "feet")
  7461. }
  7462. ]
  7463. ))
  7464. characterMakers.push(() => makeCharacter(
  7465. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7466. {
  7467. front: {
  7468. height: math.unit(5 + 8 / 12, "feet"),
  7469. weight: math.unit(130, "lbs"),
  7470. name: "Front",
  7471. image: {
  7472. source: "./media/characters/corvin/front.svg",
  7473. extra: 1803 / 1629
  7474. }
  7475. },
  7476. frontShirt: {
  7477. height: math.unit(5 + 8 / 12, "feet"),
  7478. weight: math.unit(130, "lbs"),
  7479. name: "Front (Shirt)",
  7480. image: {
  7481. source: "./media/characters/corvin/front-shirt.svg",
  7482. extra: 1803 / 1629
  7483. }
  7484. },
  7485. frontPoncho: {
  7486. height: math.unit(5 + 8 / 12, "feet"),
  7487. weight: math.unit(130, "lbs"),
  7488. name: "Front (Poncho)",
  7489. image: {
  7490. source: "./media/characters/corvin/front-poncho.svg",
  7491. extra: 1803 / 1629
  7492. }
  7493. },
  7494. side: {
  7495. height: math.unit(5 + 8 / 12, "feet"),
  7496. weight: math.unit(130, "lbs"),
  7497. name: "Side",
  7498. image: {
  7499. source: "./media/characters/corvin/side.svg",
  7500. extra: 1012 / 945
  7501. }
  7502. },
  7503. back: {
  7504. height: math.unit(5 + 8 / 12, "feet"),
  7505. weight: math.unit(130, "lbs"),
  7506. name: "Back",
  7507. image: {
  7508. source: "./media/characters/corvin/back.svg",
  7509. extra: 1803 / 1629
  7510. }
  7511. },
  7512. },
  7513. [
  7514. {
  7515. name: "Micro",
  7516. height: math.unit(3, "inches")
  7517. },
  7518. {
  7519. name: "Normal",
  7520. height: math.unit(5 + 8 / 12, "feet")
  7521. },
  7522. {
  7523. name: "Macro",
  7524. height: math.unit(300, "feet"),
  7525. default: true
  7526. },
  7527. {
  7528. name: "Megamacro",
  7529. height: math.unit(500, "miles")
  7530. }
  7531. ]
  7532. ))
  7533. characterMakers.push(() => makeCharacter(
  7534. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7535. {
  7536. front: {
  7537. height: math.unit(6, "feet"),
  7538. weight: math.unit(135, "lbs"),
  7539. name: "Front",
  7540. image: {
  7541. source: "./media/characters/q/front.svg",
  7542. extra: 854 / 752,
  7543. bottom: 0.005
  7544. }
  7545. },
  7546. back: {
  7547. height: math.unit(6, "feet"),
  7548. weight: math.unit(130, "lbs"),
  7549. name: "Back",
  7550. image: {
  7551. source: "./media/characters/q/back.svg",
  7552. extra: 854 / 752
  7553. }
  7554. },
  7555. },
  7556. [
  7557. {
  7558. name: "Macro",
  7559. height: math.unit(90, "feet"),
  7560. default: true
  7561. },
  7562. {
  7563. name: "Extra Macro",
  7564. height: math.unit(300, "feet"),
  7565. },
  7566. {
  7567. name: "BIG WALF",
  7568. height: math.unit(750, "feet"),
  7569. },
  7570. ]
  7571. ))
  7572. characterMakers.push(() => makeCharacter(
  7573. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7574. {
  7575. front: {
  7576. height: math.unit(6, "feet"),
  7577. weight: math.unit(150, "lbs"),
  7578. name: "Front",
  7579. image: {
  7580. source: "./media/characters/carley/front.svg",
  7581. extra: 3927 / 3540,
  7582. bottom: 29.2 / 735
  7583. }
  7584. }
  7585. },
  7586. [
  7587. {
  7588. name: "Normal",
  7589. height: math.unit(6 + 3 / 12, "feet")
  7590. },
  7591. {
  7592. name: "Macro",
  7593. height: math.unit(185, "feet"),
  7594. default: true
  7595. },
  7596. {
  7597. name: "Megamacro",
  7598. height: math.unit(8, "miles"),
  7599. },
  7600. ]
  7601. ))
  7602. characterMakers.push(() => makeCharacter(
  7603. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7604. {
  7605. front: {
  7606. height: math.unit(3, "feet"),
  7607. weight: math.unit(28, "lbs"),
  7608. name: "Front",
  7609. image: {
  7610. source: "./media/characters/citrine/front.svg"
  7611. }
  7612. }
  7613. },
  7614. [
  7615. {
  7616. name: "Normal",
  7617. height: math.unit(3, "feet"),
  7618. default: true
  7619. }
  7620. ]
  7621. ))
  7622. characterMakers.push(() => makeCharacter(
  7623. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7624. {
  7625. front: {
  7626. height: math.unit(14, "feet"),
  7627. weight: math.unit(1450, "kg"),
  7628. capacity: math.unit(15, "people"),
  7629. name: "Front",
  7630. image: {
  7631. source: "./media/characters/aura-starwind/front.svg",
  7632. extra: 1455 / 1335
  7633. }
  7634. },
  7635. side: {
  7636. height: math.unit(14, "feet"),
  7637. weight: math.unit(1450, "kg"),
  7638. capacity: math.unit(15, "people"),
  7639. name: "Side",
  7640. image: {
  7641. source: "./media/characters/aura-starwind/side.svg",
  7642. extra: 1654 / 1497
  7643. }
  7644. },
  7645. taur: {
  7646. height: math.unit(18, "feet"),
  7647. weight: math.unit(5500, "kg"),
  7648. capacity: math.unit(50, "people"),
  7649. name: "Taur",
  7650. image: {
  7651. source: "./media/characters/aura-starwind/taur.svg",
  7652. extra: 1760 / 1650
  7653. }
  7654. },
  7655. feral: {
  7656. height: math.unit(46, "feet"),
  7657. weight: math.unit(25000, "kg"),
  7658. capacity: math.unit(120, "people"),
  7659. name: "Feral",
  7660. image: {
  7661. source: "./media/characters/aura-starwind/feral.svg"
  7662. }
  7663. },
  7664. },
  7665. [
  7666. {
  7667. name: "Normal",
  7668. height: math.unit(14, "feet"),
  7669. default: true
  7670. },
  7671. {
  7672. name: "Macro",
  7673. height: math.unit(50, "meters")
  7674. },
  7675. {
  7676. name: "Megamacro",
  7677. height: math.unit(5000, "meters")
  7678. },
  7679. {
  7680. name: "Gigamacro",
  7681. height: math.unit(100000, "kilometers")
  7682. },
  7683. ]
  7684. ))
  7685. characterMakers.push(() => makeCharacter(
  7686. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7687. {
  7688. front: {
  7689. height: math.unit(2 + 7 / 12, "feet"),
  7690. weight: math.unit(32, "lbs"),
  7691. name: "Front",
  7692. image: {
  7693. source: "./media/characters/rivet/front.svg",
  7694. extra: 1716 / 1658,
  7695. bottom: 0.03
  7696. }
  7697. },
  7698. foot: {
  7699. height: math.unit(0.551, "feet"),
  7700. name: "Rivet's Foot",
  7701. image: {
  7702. source: "./media/characters/rivet/foot.svg"
  7703. },
  7704. rename: true
  7705. }
  7706. },
  7707. [
  7708. {
  7709. name: "Micro",
  7710. height: math.unit(1.5, "inches"),
  7711. },
  7712. {
  7713. name: "Normal",
  7714. height: math.unit(2 + 7 / 12, "feet"),
  7715. default: true
  7716. },
  7717. {
  7718. name: "Macro",
  7719. height: math.unit(85, "feet")
  7720. },
  7721. {
  7722. name: "Megamacro",
  7723. height: math.unit(2.2, "km")
  7724. }
  7725. ]
  7726. ))
  7727. characterMakers.push(() => makeCharacter(
  7728. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7729. {
  7730. front: {
  7731. height: math.unit(5 + 9 / 12, "feet"),
  7732. weight: math.unit(150, "lbs"),
  7733. name: "Front",
  7734. image: {
  7735. source: "./media/characters/coffee/front.svg",
  7736. extra: 3666 / 3032,
  7737. bottom: 0.04
  7738. }
  7739. },
  7740. foot: {
  7741. height: math.unit(1.29, "feet"),
  7742. name: "Foot",
  7743. image: {
  7744. source: "./media/characters/coffee/foot.svg"
  7745. }
  7746. },
  7747. },
  7748. [
  7749. {
  7750. name: "Micro",
  7751. height: math.unit(2, "inches"),
  7752. },
  7753. {
  7754. name: "Normal",
  7755. height: math.unit(5 + 9 / 12, "feet"),
  7756. default: true
  7757. },
  7758. {
  7759. name: "Macro",
  7760. height: math.unit(800, "feet")
  7761. },
  7762. {
  7763. name: "Megamacro",
  7764. height: math.unit(25, "miles")
  7765. }
  7766. ]
  7767. ))
  7768. characterMakers.push(() => makeCharacter(
  7769. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7770. {
  7771. front: {
  7772. height: math.unit(6, "feet"),
  7773. weight: math.unit(200, "lbs"),
  7774. name: "Front",
  7775. image: {
  7776. source: "./media/characters/chari-gal/front.svg",
  7777. extra: 1568 / 1385,
  7778. bottom: 0.047
  7779. }
  7780. },
  7781. gigantamax: {
  7782. height: math.unit(6 * 16, "feet"),
  7783. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7784. name: "Gigantamax",
  7785. image: {
  7786. source: "./media/characters/chari-gal/gigantamax.svg",
  7787. extra: 1124 / 888,
  7788. bottom: 0.03
  7789. }
  7790. },
  7791. },
  7792. [
  7793. {
  7794. name: "Normal",
  7795. height: math.unit(5 + 7 / 12, "feet")
  7796. },
  7797. {
  7798. name: "Macro",
  7799. height: math.unit(200, "feet"),
  7800. default: true
  7801. }
  7802. ]
  7803. ))
  7804. characterMakers.push(() => makeCharacter(
  7805. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7806. {
  7807. front: {
  7808. height: math.unit(6, "feet"),
  7809. weight: math.unit(150, "lbs"),
  7810. name: "Front",
  7811. image: {
  7812. source: "./media/characters/nova/front.svg",
  7813. extra: 5000 / 4722,
  7814. bottom: 0.02
  7815. }
  7816. }
  7817. },
  7818. [
  7819. {
  7820. name: "Micro-",
  7821. height: math.unit(0.8, "inches")
  7822. },
  7823. {
  7824. name: "Micro",
  7825. height: math.unit(2, "inches"),
  7826. default: true
  7827. },
  7828. ]
  7829. ))
  7830. characterMakers.push(() => makeCharacter(
  7831. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7832. {
  7833. front: {
  7834. height: math.unit(3 + 1 / 12, "feet"),
  7835. weight: math.unit(21.7, "lbs"),
  7836. name: "Front",
  7837. image: {
  7838. source: "./media/characters/argent/front.svg",
  7839. extra: 1471 / 1331,
  7840. bottom: 100.8 / 1575.5
  7841. }
  7842. }
  7843. },
  7844. [
  7845. {
  7846. name: "Micro",
  7847. height: math.unit(2, "inches")
  7848. },
  7849. {
  7850. name: "Normal",
  7851. height: math.unit(3 + 1 / 12, "feet"),
  7852. default: true
  7853. },
  7854. {
  7855. name: "Macro",
  7856. height: math.unit(120, "feet")
  7857. },
  7858. ]
  7859. ))
  7860. characterMakers.push(() => makeCharacter(
  7861. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7862. {
  7863. lamp: {
  7864. height: math.unit(7 * 1559 / 989, "feet"),
  7865. name: "Magic Lamp",
  7866. image: {
  7867. source: "./media/characters/mira-al-cul/lamp.svg",
  7868. extra: 1617 / 1559
  7869. }
  7870. },
  7871. front: {
  7872. height: math.unit(7, "feet"),
  7873. name: "Front",
  7874. image: {
  7875. source: "./media/characters/mira-al-cul/front.svg",
  7876. extra: 1044 / 990
  7877. }
  7878. },
  7879. },
  7880. [
  7881. {
  7882. name: "Heavily Restricted",
  7883. height: math.unit(7 * 1559 / 989, "feet")
  7884. },
  7885. {
  7886. name: "Freshly Freed",
  7887. height: math.unit(50 * 1559 / 989, "feet")
  7888. },
  7889. {
  7890. name: "World Encompassing",
  7891. height: math.unit(10000 * 1559 / 989, "miles")
  7892. },
  7893. {
  7894. name: "Galactic",
  7895. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7896. },
  7897. {
  7898. name: "Palmed Universe",
  7899. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7900. default: true
  7901. },
  7902. {
  7903. name: "Multiversal Matriarch",
  7904. height: math.unit(8.87e10, "yottameters")
  7905. },
  7906. {
  7907. name: "Void Mother",
  7908. height: math.unit(3.14e110, "yottaparsecs")
  7909. },
  7910. {
  7911. name: "Toying with Transcendence",
  7912. height: math.unit(1e307, "meters")
  7913. },
  7914. ]
  7915. ))
  7916. characterMakers.push(() => makeCharacter(
  7917. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7918. {
  7919. front: {
  7920. height: math.unit(17 + 1 / 12, "feet"),
  7921. weight: math.unit(476.2 * 5, "lbs"),
  7922. name: "Front",
  7923. image: {
  7924. source: "./media/characters/kuro-shi-uchū/front.svg",
  7925. extra: 2329 / 1835,
  7926. bottom: 0.02
  7927. }
  7928. },
  7929. },
  7930. [
  7931. {
  7932. name: "Micro",
  7933. height: math.unit(2, "inches")
  7934. },
  7935. {
  7936. name: "Normal",
  7937. height: math.unit(12, "meters")
  7938. },
  7939. {
  7940. name: "Planetary",
  7941. height: math.unit(0.00929, "AU"),
  7942. default: true
  7943. },
  7944. {
  7945. name: "Universal",
  7946. height: math.unit(20, "gigaparsecs")
  7947. },
  7948. ]
  7949. ))
  7950. characterMakers.push(() => makeCharacter(
  7951. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7952. {
  7953. front: {
  7954. height: math.unit(5 + 2 / 12, "feet"),
  7955. weight: math.unit(120, "lbs"),
  7956. name: "Front",
  7957. image: {
  7958. source: "./media/characters/katherine/front.svg",
  7959. extra: 2075 / 1969
  7960. }
  7961. },
  7962. dress: {
  7963. height: math.unit(5 + 2 / 12, "feet"),
  7964. weight: math.unit(120, "lbs"),
  7965. name: "Dress",
  7966. image: {
  7967. source: "./media/characters/katherine/dress.svg",
  7968. extra: 2258 / 2064
  7969. }
  7970. },
  7971. },
  7972. [
  7973. {
  7974. name: "Micro",
  7975. height: math.unit(1, "inches"),
  7976. default: true
  7977. },
  7978. {
  7979. name: "Normal",
  7980. height: math.unit(5 + 2 / 12, "feet")
  7981. },
  7982. {
  7983. name: "Macro",
  7984. height: math.unit(100, "meters")
  7985. },
  7986. {
  7987. name: "Megamacro",
  7988. height: math.unit(80, "miles")
  7989. },
  7990. ]
  7991. ))
  7992. characterMakers.push(() => makeCharacter(
  7993. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7994. {
  7995. front: {
  7996. height: math.unit(7 + 8 / 12, "feet"),
  7997. weight: math.unit(250, "lbs"),
  7998. name: "Front",
  7999. image: {
  8000. source: "./media/characters/yevis/front.svg",
  8001. extra: 1938 / 1755
  8002. }
  8003. }
  8004. },
  8005. [
  8006. {
  8007. name: "Mortal",
  8008. height: math.unit(7 + 8 / 12, "feet")
  8009. },
  8010. {
  8011. name: "Battle",
  8012. height: math.unit(25 + 11 / 12, "feet")
  8013. },
  8014. {
  8015. name: "Wrath",
  8016. height: math.unit(1654 + 11 / 12, "feet")
  8017. },
  8018. {
  8019. name: "Planet Destroyer",
  8020. height: math.unit(12000, "miles")
  8021. },
  8022. {
  8023. name: "Galaxy Conqueror",
  8024. height: math.unit(1.45, "zettameters"),
  8025. default: true
  8026. },
  8027. {
  8028. name: "Universal War",
  8029. height: math.unit(184, "gigaparsecs")
  8030. },
  8031. {
  8032. name: "Eternity War",
  8033. height: math.unit(1.98e55, "yottaparsecs")
  8034. },
  8035. ]
  8036. ))
  8037. characterMakers.push(() => makeCharacter(
  8038. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8039. {
  8040. front: {
  8041. height: math.unit(5 + 8 / 12, "feet"),
  8042. weight: math.unit(63, "kg"),
  8043. name: "Front",
  8044. image: {
  8045. source: "./media/characters/xavier/front.svg",
  8046. extra: 944 / 883
  8047. }
  8048. },
  8049. frontStretch: {
  8050. height: math.unit(5 + 8 / 12, "feet"),
  8051. weight: math.unit(63, "kg"),
  8052. name: "Stretching",
  8053. image: {
  8054. source: "./media/characters/xavier/front-stretch.svg",
  8055. extra: 962 / 820
  8056. }
  8057. },
  8058. },
  8059. [
  8060. {
  8061. name: "Normal",
  8062. height: math.unit(5 + 8 / 12, "feet")
  8063. },
  8064. {
  8065. name: "Macro",
  8066. height: math.unit(100, "meters"),
  8067. default: true
  8068. },
  8069. {
  8070. name: "McLargeHuge",
  8071. height: math.unit(10, "miles")
  8072. },
  8073. ]
  8074. ))
  8075. characterMakers.push(() => makeCharacter(
  8076. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8077. {
  8078. front: {
  8079. height: math.unit(5 + 5 / 12, "feet"),
  8080. weight: math.unit(150, "lb"),
  8081. name: "Front",
  8082. image: {
  8083. source: "./media/characters/joshii/front.svg",
  8084. extra: 765 / 653,
  8085. bottom: 51 / 816
  8086. }
  8087. },
  8088. foot: {
  8089. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8090. name: "Foot",
  8091. image: {
  8092. source: "./media/characters/joshii/foot.svg"
  8093. }
  8094. },
  8095. },
  8096. [
  8097. {
  8098. name: "Micro",
  8099. height: math.unit(2, "inches"),
  8100. default: true
  8101. },
  8102. {
  8103. name: "Normal",
  8104. height: math.unit(5 + 5 / 12, "feet")
  8105. },
  8106. {
  8107. name: "Macro",
  8108. height: math.unit(785, "feet")
  8109. },
  8110. {
  8111. name: "Megamacro",
  8112. height: math.unit(24.5, "miles")
  8113. },
  8114. ]
  8115. ))
  8116. characterMakers.push(() => makeCharacter(
  8117. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8118. {
  8119. front: {
  8120. height: math.unit(6, "feet"),
  8121. weight: math.unit(150, "lb"),
  8122. name: "Front",
  8123. image: {
  8124. source: "./media/characters/goddess-elizabeth/front.svg",
  8125. extra: 1800 / 1525,
  8126. bottom: 0.005
  8127. }
  8128. },
  8129. foot: {
  8130. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8131. name: "Foot",
  8132. image: {
  8133. source: "./media/characters/goddess-elizabeth/foot.svg"
  8134. }
  8135. },
  8136. mouth: {
  8137. height: math.unit(6, "feet"),
  8138. name: "Mouth",
  8139. image: {
  8140. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8141. }
  8142. },
  8143. },
  8144. [
  8145. {
  8146. name: "Micro",
  8147. height: math.unit(12, "feet")
  8148. },
  8149. {
  8150. name: "Normal",
  8151. height: math.unit(80, "miles"),
  8152. default: true
  8153. },
  8154. {
  8155. name: "Macro",
  8156. height: math.unit(15000, "parsecs")
  8157. },
  8158. ]
  8159. ))
  8160. characterMakers.push(() => makeCharacter(
  8161. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8162. {
  8163. front: {
  8164. height: math.unit(5 + 9 / 12, "feet"),
  8165. weight: math.unit(144, "lb"),
  8166. name: "Front",
  8167. image: {
  8168. source: "./media/characters/kara/front.svg"
  8169. }
  8170. },
  8171. feet: {
  8172. height: math.unit(6 / 6.765, "feet"),
  8173. name: "Kara's Feet",
  8174. rename: true,
  8175. image: {
  8176. source: "./media/characters/kara/feet.svg"
  8177. }
  8178. },
  8179. },
  8180. [
  8181. {
  8182. name: "Normal",
  8183. height: math.unit(5 + 9 / 12, "feet")
  8184. },
  8185. {
  8186. name: "Macro",
  8187. height: math.unit(174, "feet"),
  8188. default: true
  8189. },
  8190. ]
  8191. ))
  8192. characterMakers.push(() => makeCharacter(
  8193. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8194. {
  8195. front: {
  8196. height: math.unit(18, "feet"),
  8197. weight: math.unit(4050, "lb"),
  8198. name: "Front",
  8199. image: {
  8200. source: "./media/characters/tyrone/front.svg",
  8201. extra: 2405 / 2270,
  8202. bottom: 182 / 2587
  8203. }
  8204. },
  8205. },
  8206. [
  8207. {
  8208. name: "Normal",
  8209. height: math.unit(18, "feet"),
  8210. default: true
  8211. },
  8212. {
  8213. name: "Macro",
  8214. height: math.unit(300, "feet")
  8215. },
  8216. {
  8217. name: "Megamacro",
  8218. height: math.unit(15, "km")
  8219. },
  8220. {
  8221. name: "Gigamacro",
  8222. height: math.unit(500, "km")
  8223. },
  8224. {
  8225. name: "Teramacro",
  8226. height: math.unit(0.5, "gigameters")
  8227. },
  8228. {
  8229. name: "Omnimacro",
  8230. height: math.unit(1e252, "yottauniverse")
  8231. },
  8232. ]
  8233. ))
  8234. characterMakers.push(() => makeCharacter(
  8235. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8236. {
  8237. front: {
  8238. height: math.unit(7 + 8 / 12, "feet"),
  8239. weight: math.unit(120, "lb"),
  8240. name: "Front",
  8241. image: {
  8242. source: "./media/characters/danny/front.svg",
  8243. extra: 1490 / 1350
  8244. }
  8245. },
  8246. back: {
  8247. height: math.unit(7 + 8 / 12, "feet"),
  8248. weight: math.unit(120, "lb"),
  8249. name: "Back",
  8250. image: {
  8251. source: "./media/characters/danny/back.svg",
  8252. extra: 1490 / 1350
  8253. }
  8254. },
  8255. },
  8256. [
  8257. {
  8258. name: "Normal",
  8259. height: math.unit(7 + 8 / 12, "feet"),
  8260. default: true
  8261. },
  8262. ]
  8263. ))
  8264. characterMakers.push(() => makeCharacter(
  8265. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8266. {
  8267. front: {
  8268. height: math.unit(3.5, "inches"),
  8269. weight: math.unit(19, "grams"),
  8270. name: "Front",
  8271. image: {
  8272. source: "./media/characters/mallow/front.svg",
  8273. extra: 471 / 431
  8274. }
  8275. },
  8276. back: {
  8277. height: math.unit(3.5, "inches"),
  8278. weight: math.unit(19, "grams"),
  8279. name: "Back",
  8280. image: {
  8281. source: "./media/characters/mallow/back.svg",
  8282. extra: 471 / 431
  8283. }
  8284. },
  8285. },
  8286. [
  8287. {
  8288. name: "Normal",
  8289. height: math.unit(3.5, "inches"),
  8290. default: true
  8291. },
  8292. ]
  8293. ))
  8294. characterMakers.push(() => makeCharacter(
  8295. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8296. {
  8297. front: {
  8298. height: math.unit(9, "feet"),
  8299. weight: math.unit(230, "kg"),
  8300. name: "Front",
  8301. image: {
  8302. source: "./media/characters/starry-aqua/front.svg"
  8303. }
  8304. },
  8305. back: {
  8306. height: math.unit(9, "feet"),
  8307. weight: math.unit(230, "kg"),
  8308. name: "Back",
  8309. image: {
  8310. source: "./media/characters/starry-aqua/back.svg"
  8311. }
  8312. },
  8313. hand: {
  8314. height: math.unit(9 * 0.1168, "feet"),
  8315. name: "Hand",
  8316. image: {
  8317. source: "./media/characters/starry-aqua/hand.svg"
  8318. }
  8319. },
  8320. foot: {
  8321. height: math.unit(9 * 0.18, "feet"),
  8322. name: "Foot",
  8323. image: {
  8324. source: "./media/characters/starry-aqua/foot.svg"
  8325. }
  8326. }
  8327. },
  8328. [
  8329. {
  8330. name: "Micro",
  8331. height: math.unit(3, "inches")
  8332. },
  8333. {
  8334. name: "Normal",
  8335. height: math.unit(9, "feet")
  8336. },
  8337. {
  8338. name: "Macro",
  8339. height: math.unit(300, "feet"),
  8340. default: true
  8341. },
  8342. {
  8343. name: "Megamacro",
  8344. height: math.unit(3200, "feet")
  8345. }
  8346. ]
  8347. ))
  8348. characterMakers.push(() => makeCharacter(
  8349. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8350. {
  8351. front: {
  8352. height: math.unit(6, "feet"),
  8353. weight: math.unit(230, "lb"),
  8354. name: "Front",
  8355. image: {
  8356. source: "./media/characters/luka/front.svg",
  8357. extra: 1,
  8358. bottom: 0.025
  8359. }
  8360. },
  8361. },
  8362. [
  8363. {
  8364. name: "Normal",
  8365. height: math.unit(12 + 8 / 12, "feet"),
  8366. default: true
  8367. },
  8368. {
  8369. name: "Minimacro",
  8370. height: math.unit(20, "feet")
  8371. },
  8372. {
  8373. name: "Macro",
  8374. height: math.unit(250, "feet")
  8375. },
  8376. {
  8377. name: "Megamacro",
  8378. height: math.unit(5, "miles")
  8379. },
  8380. {
  8381. name: "Gigamacro",
  8382. height: math.unit(8000, "miles")
  8383. },
  8384. ]
  8385. ))
  8386. characterMakers.push(() => makeCharacter(
  8387. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8388. {
  8389. front: {
  8390. height: math.unit(6, "feet"),
  8391. weight: math.unit(150, "lb"),
  8392. name: "Front",
  8393. image: {
  8394. source: "./media/characters/natalie-nightring/front.svg",
  8395. extra: 1,
  8396. bottom: 0.06
  8397. }
  8398. },
  8399. },
  8400. [
  8401. {
  8402. name: "Uh Oh",
  8403. height: math.unit(0.1, "mm")
  8404. },
  8405. {
  8406. name: "Small",
  8407. height: math.unit(3, "inches")
  8408. },
  8409. {
  8410. name: "Human Scale",
  8411. height: math.unit(6, "feet")
  8412. },
  8413. {
  8414. name: "Librarian",
  8415. height: math.unit(50, "feet"),
  8416. default: true
  8417. },
  8418. {
  8419. name: "Immense",
  8420. height: math.unit(200, "miles")
  8421. },
  8422. ]
  8423. ))
  8424. characterMakers.push(() => makeCharacter(
  8425. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8426. {
  8427. front: {
  8428. height: math.unit(6, "feet"),
  8429. weight: math.unit(180, "lbs"),
  8430. name: "Front",
  8431. image: {
  8432. source: "./media/characters/danni-rosie/front.svg",
  8433. extra: 1260 / 1128,
  8434. bottom: 0.022
  8435. }
  8436. },
  8437. },
  8438. [
  8439. {
  8440. name: "Micro",
  8441. height: math.unit(2, "inches"),
  8442. default: true
  8443. },
  8444. ]
  8445. ))
  8446. characterMakers.push(() => makeCharacter(
  8447. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8448. {
  8449. front: {
  8450. height: math.unit(5 + 9 / 12, "feet"),
  8451. weight: math.unit(220, "lb"),
  8452. name: "Front",
  8453. image: {
  8454. source: "./media/characters/samantha-kruse/front.svg",
  8455. extra: (985 / 935),
  8456. bottom: 0.03
  8457. }
  8458. },
  8459. frontUndressed: {
  8460. height: math.unit(5 + 9 / 12, "feet"),
  8461. weight: math.unit(220, "lb"),
  8462. name: "Front (Undressed)",
  8463. image: {
  8464. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8465. extra: (973 / 923),
  8466. bottom: 0.025
  8467. }
  8468. },
  8469. fat: {
  8470. height: math.unit(5 + 9 / 12, "feet"),
  8471. weight: math.unit(900, "lb"),
  8472. name: "Front (Fat)",
  8473. image: {
  8474. source: "./media/characters/samantha-kruse/fat.svg",
  8475. extra: 2688 / 2561
  8476. }
  8477. },
  8478. },
  8479. [
  8480. {
  8481. name: "Normal",
  8482. height: math.unit(5 + 9 / 12, "feet"),
  8483. default: true
  8484. }
  8485. ]
  8486. ))
  8487. characterMakers.push(() => makeCharacter(
  8488. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8489. {
  8490. back: {
  8491. height: math.unit(5 + 4 / 12, "feet"),
  8492. weight: math.unit(4963, "lb"),
  8493. name: "Back",
  8494. image: {
  8495. source: "./media/characters/amelia-rosie/back.svg",
  8496. extra: 1113 / 963,
  8497. bottom: 0.01
  8498. }
  8499. },
  8500. },
  8501. [
  8502. {
  8503. name: "Level 0",
  8504. height: math.unit(5 + 4 / 12, "feet")
  8505. },
  8506. {
  8507. name: "Level 1",
  8508. height: math.unit(164597, "feet"),
  8509. default: true
  8510. },
  8511. {
  8512. name: "Level 2",
  8513. height: math.unit(956243, "miles")
  8514. },
  8515. {
  8516. name: "Level 3",
  8517. height: math.unit(29421709423, "miles")
  8518. },
  8519. {
  8520. name: "Level 4",
  8521. height: math.unit(154, "lightyears")
  8522. },
  8523. {
  8524. name: "Level 5",
  8525. height: math.unit(4738272, "lightyears")
  8526. },
  8527. {
  8528. name: "Level 6",
  8529. height: math.unit(145787152896, "lightyears")
  8530. },
  8531. ]
  8532. ))
  8533. characterMakers.push(() => makeCharacter(
  8534. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8535. {
  8536. front: {
  8537. height: math.unit(5 + 11 / 12, "feet"),
  8538. weight: math.unit(65, "kg"),
  8539. name: "Front",
  8540. image: {
  8541. source: "./media/characters/rook-kitara/front.svg",
  8542. extra: 1347 / 1274,
  8543. bottom: 0.005
  8544. }
  8545. },
  8546. },
  8547. [
  8548. {
  8549. name: "Totally Unfair",
  8550. height: math.unit(1.8, "mm")
  8551. },
  8552. {
  8553. name: "Lap Rookie",
  8554. height: math.unit(1.4, "feet")
  8555. },
  8556. {
  8557. name: "Normal",
  8558. height: math.unit(5 + 11 / 12, "feet"),
  8559. default: true
  8560. },
  8561. {
  8562. name: "How Did This Happen",
  8563. height: math.unit(80, "miles")
  8564. }
  8565. ]
  8566. ))
  8567. characterMakers.push(() => makeCharacter(
  8568. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8569. {
  8570. front: {
  8571. height: math.unit(7, "feet"),
  8572. weight: math.unit(300, "lb"),
  8573. name: "Front",
  8574. image: {
  8575. source: "./media/characters/pisces/front.svg",
  8576. extra: 2255 / 2115,
  8577. bottom: 0.03
  8578. }
  8579. },
  8580. back: {
  8581. height: math.unit(7, "feet"),
  8582. weight: math.unit(300, "lb"),
  8583. name: "Back",
  8584. image: {
  8585. source: "./media/characters/pisces/back.svg",
  8586. extra: 2146 / 2055,
  8587. bottom: 0.04
  8588. }
  8589. },
  8590. },
  8591. [
  8592. {
  8593. name: "Normal",
  8594. height: math.unit(7, "feet"),
  8595. default: true
  8596. },
  8597. {
  8598. name: "Swimming Pool",
  8599. height: math.unit(12.2, "meters")
  8600. },
  8601. {
  8602. name: "Olympic Swimming Pool",
  8603. height: math.unit(56.3, "meters")
  8604. },
  8605. {
  8606. name: "Lake Superior",
  8607. height: math.unit(93900, "meters")
  8608. },
  8609. {
  8610. name: "Mediterranean Sea",
  8611. height: math.unit(644457, "meters")
  8612. },
  8613. {
  8614. name: "World's Oceans",
  8615. height: math.unit(4567491, "meters")
  8616. },
  8617. ]
  8618. ))
  8619. characterMakers.push(() => makeCharacter(
  8620. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8621. {
  8622. front: {
  8623. height: math.unit(2.3, "meters"),
  8624. weight: math.unit(120, "kg"),
  8625. name: "Front",
  8626. image: {
  8627. source: "./media/characters/zelas/front.svg"
  8628. }
  8629. },
  8630. side: {
  8631. height: math.unit(2.3, "meters"),
  8632. weight: math.unit(120, "kg"),
  8633. name: "Side",
  8634. image: {
  8635. source: "./media/characters/zelas/side.svg"
  8636. }
  8637. },
  8638. back: {
  8639. height: math.unit(2.3, "meters"),
  8640. weight: math.unit(120, "kg"),
  8641. name: "Back",
  8642. image: {
  8643. source: "./media/characters/zelas/back.svg"
  8644. }
  8645. },
  8646. foot: {
  8647. height: math.unit(1.116, "feet"),
  8648. name: "Foot",
  8649. image: {
  8650. source: "./media/characters/zelas/foot.svg"
  8651. }
  8652. },
  8653. },
  8654. [
  8655. {
  8656. name: "Normal",
  8657. height: math.unit(2.3, "meters")
  8658. },
  8659. {
  8660. name: "Macro",
  8661. height: math.unit(30, "meters"),
  8662. default: true
  8663. },
  8664. ]
  8665. ))
  8666. characterMakers.push(() => makeCharacter(
  8667. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8668. {
  8669. front: {
  8670. height: math.unit(1, "inch"),
  8671. weight: math.unit(0.21, "grams"),
  8672. name: "Front",
  8673. image: {
  8674. source: "./media/characters/talbot/front.svg",
  8675. extra: 594 / 544
  8676. }
  8677. },
  8678. },
  8679. [
  8680. {
  8681. name: "Micro",
  8682. height: math.unit(1, "inch"),
  8683. default: true
  8684. },
  8685. ]
  8686. ))
  8687. characterMakers.push(() => makeCharacter(
  8688. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8689. {
  8690. front: {
  8691. height: math.unit(3 + 3 / 12, "feet"),
  8692. weight: math.unit(51.8, "lb"),
  8693. name: "Front",
  8694. image: {
  8695. source: "./media/characters/fliss/front.svg",
  8696. extra: 840 / 640
  8697. }
  8698. },
  8699. },
  8700. [
  8701. {
  8702. name: "Teeny Tiny",
  8703. height: math.unit(1, "mm")
  8704. },
  8705. {
  8706. name: "Small",
  8707. height: math.unit(1, "inch"),
  8708. default: true
  8709. },
  8710. {
  8711. name: "Standard Sylveon",
  8712. height: math.unit(3 + 3 / 12, "feet")
  8713. },
  8714. {
  8715. name: "Large Nuisance",
  8716. height: math.unit(33, "feet")
  8717. },
  8718. {
  8719. name: "City Filler",
  8720. height: math.unit(3000, "feet")
  8721. },
  8722. {
  8723. name: "New Horizon",
  8724. height: math.unit(6000, "miles")
  8725. },
  8726. ]
  8727. ))
  8728. characterMakers.push(() => makeCharacter(
  8729. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8730. {
  8731. front: {
  8732. height: math.unit(5, "cm"),
  8733. weight: math.unit(1.94, "g"),
  8734. name: "Front",
  8735. image: {
  8736. source: "./media/characters/fleta/front.svg",
  8737. extra: 835 / 803
  8738. }
  8739. },
  8740. back: {
  8741. height: math.unit(5, "cm"),
  8742. weight: math.unit(1.94, "g"),
  8743. name: "Back",
  8744. image: {
  8745. source: "./media/characters/fleta/back.svg",
  8746. extra: 835 / 803
  8747. }
  8748. },
  8749. },
  8750. [
  8751. {
  8752. name: "Micro",
  8753. height: math.unit(5, "cm"),
  8754. default: true
  8755. },
  8756. ]
  8757. ))
  8758. characterMakers.push(() => makeCharacter(
  8759. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8760. {
  8761. front: {
  8762. height: math.unit(6, "feet"),
  8763. weight: math.unit(225, "lb"),
  8764. name: "Front",
  8765. image: {
  8766. source: "./media/characters/dominic/front.svg",
  8767. extra: 1770 / 1620,
  8768. bottom: 0.025
  8769. }
  8770. },
  8771. back: {
  8772. height: math.unit(6, "feet"),
  8773. weight: math.unit(225, "lb"),
  8774. name: "Back",
  8775. image: {
  8776. source: "./media/characters/dominic/back.svg",
  8777. extra: 1745 / 1620,
  8778. bottom: 0.065
  8779. }
  8780. },
  8781. },
  8782. [
  8783. {
  8784. name: "Nano",
  8785. height: math.unit(0.1, "mm")
  8786. },
  8787. {
  8788. name: "Micro-",
  8789. height: math.unit(1, "mm")
  8790. },
  8791. {
  8792. name: "Micro",
  8793. height: math.unit(4, "inches")
  8794. },
  8795. {
  8796. name: "Normal",
  8797. height: math.unit(6 + 4 / 12, "feet"),
  8798. default: true
  8799. },
  8800. {
  8801. name: "Macro",
  8802. height: math.unit(115, "feet")
  8803. },
  8804. {
  8805. name: "Macro+",
  8806. height: math.unit(955, "feet")
  8807. },
  8808. {
  8809. name: "Megamacro",
  8810. height: math.unit(8990, "feet")
  8811. },
  8812. {
  8813. name: "Gigmacro",
  8814. height: math.unit(9310, "miles")
  8815. },
  8816. {
  8817. name: "Teramacro",
  8818. height: math.unit(1567005010, "miles")
  8819. },
  8820. {
  8821. name: "Examacro",
  8822. height: math.unit(1425, "parsecs")
  8823. },
  8824. ]
  8825. ))
  8826. characterMakers.push(() => makeCharacter(
  8827. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8828. {
  8829. front: {
  8830. height: math.unit(400, "feet"),
  8831. weight: math.unit(44444444, "lb"),
  8832. name: "Front",
  8833. image: {
  8834. source: "./media/characters/major-colonel/front.svg"
  8835. }
  8836. },
  8837. back: {
  8838. height: math.unit(400, "feet"),
  8839. weight: math.unit(44444444, "lb"),
  8840. name: "Back",
  8841. image: {
  8842. source: "./media/characters/major-colonel/back.svg"
  8843. }
  8844. },
  8845. },
  8846. [
  8847. {
  8848. name: "Macro",
  8849. height: math.unit(400, "feet"),
  8850. default: true
  8851. },
  8852. ]
  8853. ))
  8854. characterMakers.push(() => makeCharacter(
  8855. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8856. {
  8857. catFront: {
  8858. height: math.unit(6, "feet"),
  8859. weight: math.unit(120, "lb"),
  8860. name: "Front (Cat Side)",
  8861. image: {
  8862. source: "./media/characters/axel-lycan/cat-front.svg",
  8863. extra: 430 / 402,
  8864. bottom: 43 / 472.35
  8865. }
  8866. },
  8867. catBack: {
  8868. height: math.unit(6, "feet"),
  8869. weight: math.unit(120, "lb"),
  8870. name: "Back (Cat Side)",
  8871. image: {
  8872. source: "./media/characters/axel-lycan/cat-back.svg",
  8873. extra: 447 / 419,
  8874. bottom: 23.3 / 469
  8875. }
  8876. },
  8877. wolfFront: {
  8878. height: math.unit(6, "feet"),
  8879. weight: math.unit(120, "lb"),
  8880. name: "Front (Wolf Side)",
  8881. image: {
  8882. source: "./media/characters/axel-lycan/wolf-front.svg",
  8883. extra: 485 / 456,
  8884. bottom: 19 / 504
  8885. }
  8886. },
  8887. wolfBack: {
  8888. height: math.unit(6, "feet"),
  8889. weight: math.unit(120, "lb"),
  8890. name: "Back (Wolf Side)",
  8891. image: {
  8892. source: "./media/characters/axel-lycan/wolf-back.svg",
  8893. extra: 475 / 438,
  8894. bottom: 39.2 / 514
  8895. }
  8896. },
  8897. },
  8898. [
  8899. {
  8900. name: "Macro",
  8901. height: math.unit(1, "km"),
  8902. default: true
  8903. },
  8904. ]
  8905. ))
  8906. characterMakers.push(() => makeCharacter(
  8907. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8908. {
  8909. front: {
  8910. height: math.unit(5 + 9 / 12, "feet"),
  8911. weight: math.unit(175, "lb"),
  8912. name: "Front",
  8913. image: {
  8914. source: "./media/characters/vanrel-hyena/front.svg",
  8915. extra: 1086 / 1010,
  8916. bottom: 0.04
  8917. }
  8918. },
  8919. },
  8920. [
  8921. {
  8922. name: "Normal",
  8923. height: math.unit(5 + 9 / 12, "feet"),
  8924. default: true
  8925. },
  8926. ]
  8927. ))
  8928. characterMakers.push(() => makeCharacter(
  8929. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8930. {
  8931. front: {
  8932. height: math.unit(6, "feet"),
  8933. weight: math.unit(103, "lb"),
  8934. name: "Front",
  8935. image: {
  8936. source: "./media/characters/abbott-absol/front.svg",
  8937. extra: 2010 / 1842
  8938. }
  8939. },
  8940. },
  8941. [
  8942. {
  8943. name: "Megamicro",
  8944. height: math.unit(0.1, "mm")
  8945. },
  8946. {
  8947. name: "Micro",
  8948. height: math.unit(1, "inch")
  8949. },
  8950. {
  8951. name: "Normal",
  8952. height: math.unit(6, "feet"),
  8953. default: true
  8954. },
  8955. ]
  8956. ))
  8957. characterMakers.push(() => makeCharacter(
  8958. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8959. {
  8960. front: {
  8961. height: math.unit(6, "feet"),
  8962. weight: math.unit(264, "lb"),
  8963. name: "Front",
  8964. image: {
  8965. source: "./media/characters/hector/front.svg",
  8966. extra: 2280 / 2130,
  8967. bottom: 0.07
  8968. }
  8969. },
  8970. },
  8971. [
  8972. {
  8973. name: "Normal",
  8974. height: math.unit(12.25, "foot"),
  8975. default: true
  8976. },
  8977. {
  8978. name: "Macro",
  8979. height: math.unit(160, "feet")
  8980. },
  8981. ]
  8982. ))
  8983. characterMakers.push(() => makeCharacter(
  8984. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8985. {
  8986. front: {
  8987. height: math.unit(6, "feet"),
  8988. weight: math.unit(150, "lb"),
  8989. name: "Front",
  8990. image: {
  8991. source: "./media/characters/sal/front.svg",
  8992. extra: 1846 / 1699,
  8993. bottom: 0.04
  8994. }
  8995. },
  8996. },
  8997. [
  8998. {
  8999. name: "Megamacro",
  9000. height: math.unit(10, "miles"),
  9001. default: true
  9002. },
  9003. ]
  9004. ))
  9005. characterMakers.push(() => makeCharacter(
  9006. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9007. {
  9008. front: {
  9009. height: math.unit(3, "meters"),
  9010. weight: math.unit(450, "kg"),
  9011. name: "front",
  9012. image: {
  9013. source: "./media/characters/ranger/front.svg",
  9014. extra: 2401 / 2243,
  9015. bottom: 0.05
  9016. }
  9017. },
  9018. },
  9019. [
  9020. {
  9021. name: "Normal",
  9022. height: math.unit(3, "meters"),
  9023. default: true
  9024. },
  9025. ]
  9026. ))
  9027. characterMakers.push(() => makeCharacter(
  9028. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9029. {
  9030. front: {
  9031. height: math.unit(14, "feet"),
  9032. weight: math.unit(800, "kg"),
  9033. name: "Front",
  9034. image: {
  9035. source: "./media/characters/theresa/front.svg",
  9036. extra: 3575 / 3346,
  9037. bottom: 0.03
  9038. }
  9039. },
  9040. },
  9041. [
  9042. {
  9043. name: "Normal",
  9044. height: math.unit(14, "feet"),
  9045. default: true
  9046. },
  9047. ]
  9048. ))
  9049. characterMakers.push(() => makeCharacter(
  9050. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9051. {
  9052. front: {
  9053. height: math.unit(6, "feet"),
  9054. weight: math.unit(3, "kg"),
  9055. name: "Front",
  9056. image: {
  9057. source: "./media/characters/ine/front.svg",
  9058. extra: 678 / 539,
  9059. bottom: 0.023
  9060. }
  9061. },
  9062. },
  9063. [
  9064. {
  9065. name: "Normal",
  9066. height: math.unit(2.265, "feet"),
  9067. default: true
  9068. },
  9069. ]
  9070. ))
  9071. characterMakers.push(() => makeCharacter(
  9072. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9073. {
  9074. front: {
  9075. height: math.unit(5, "feet"),
  9076. weight: math.unit(30, "kg"),
  9077. name: "Front",
  9078. image: {
  9079. source: "./media/characters/vial/front.svg",
  9080. extra: 1365 / 1277,
  9081. bottom: 0.04
  9082. }
  9083. },
  9084. },
  9085. [
  9086. {
  9087. name: "Normal",
  9088. height: math.unit(5, "feet"),
  9089. default: true
  9090. },
  9091. ]
  9092. ))
  9093. characterMakers.push(() => makeCharacter(
  9094. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9095. {
  9096. side: {
  9097. height: math.unit(3.4, "meters"),
  9098. weight: math.unit(1000, "lb"),
  9099. name: "Side",
  9100. image: {
  9101. source: "./media/characters/rovoska/side.svg",
  9102. extra: 4403 / 1515
  9103. }
  9104. },
  9105. },
  9106. [
  9107. {
  9108. name: "Normal",
  9109. height: math.unit(3.4, "meters"),
  9110. default: true
  9111. },
  9112. ]
  9113. ))
  9114. characterMakers.push(() => makeCharacter(
  9115. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9116. {
  9117. front: {
  9118. height: math.unit(8, "feet"),
  9119. weight: math.unit(315, "lb"),
  9120. name: "Front",
  9121. image: {
  9122. source: "./media/characters/gunner-rotthbauer/front.svg"
  9123. }
  9124. },
  9125. back: {
  9126. height: math.unit(8, "feet"),
  9127. weight: math.unit(315, "lb"),
  9128. name: "Back",
  9129. image: {
  9130. source: "./media/characters/gunner-rotthbauer/back.svg"
  9131. }
  9132. },
  9133. },
  9134. [
  9135. {
  9136. name: "Micro",
  9137. height: math.unit(3.5, "inches")
  9138. },
  9139. {
  9140. name: "Normal",
  9141. height: math.unit(8, "feet"),
  9142. default: true
  9143. },
  9144. {
  9145. name: "Macro",
  9146. height: math.unit(250, "feet")
  9147. },
  9148. {
  9149. name: "Megamacro",
  9150. height: math.unit(1, "AU")
  9151. },
  9152. ]
  9153. ))
  9154. characterMakers.push(() => makeCharacter(
  9155. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9156. {
  9157. front: {
  9158. height: math.unit(5 + 5 / 12, "feet"),
  9159. weight: math.unit(140, "lb"),
  9160. name: "Front",
  9161. image: {
  9162. source: "./media/characters/allatia/front.svg",
  9163. extra: 1227 / 1180,
  9164. bottom: 0.027
  9165. }
  9166. },
  9167. },
  9168. [
  9169. {
  9170. name: "Normal",
  9171. height: math.unit(5 + 5 / 12, "feet")
  9172. },
  9173. {
  9174. name: "Macro",
  9175. height: math.unit(250, "feet"),
  9176. default: true
  9177. },
  9178. {
  9179. name: "Megamacro",
  9180. height: math.unit(8, "miles")
  9181. }
  9182. ]
  9183. ))
  9184. characterMakers.push(() => makeCharacter(
  9185. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9186. {
  9187. front: {
  9188. height: math.unit(6, "feet"),
  9189. weight: math.unit(120, "lb"),
  9190. name: "Front",
  9191. image: {
  9192. source: "./media/characters/tene/front.svg",
  9193. extra: 1728 / 1578,
  9194. bottom: 0.022
  9195. }
  9196. },
  9197. stomping: {
  9198. height: math.unit(2.025, "meters"),
  9199. weight: math.unit(120, "lb"),
  9200. name: "Stomping",
  9201. image: {
  9202. source: "./media/characters/tene/stomping.svg",
  9203. extra: 938 / 873,
  9204. bottom: 0.01
  9205. }
  9206. },
  9207. sitting: {
  9208. height: math.unit(1, "meter"),
  9209. weight: math.unit(120, "lb"),
  9210. name: "Sitting",
  9211. image: {
  9212. source: "./media/characters/tene/sitting.svg",
  9213. extra: 437 / 415,
  9214. bottom: 0.1
  9215. }
  9216. },
  9217. feral: {
  9218. height: math.unit(3.9, "feet"),
  9219. weight: math.unit(250, "lb"),
  9220. name: "Feral",
  9221. image: {
  9222. source: "./media/characters/tene/feral.svg",
  9223. extra: 717 / 458,
  9224. bottom: 0.179
  9225. }
  9226. },
  9227. },
  9228. [
  9229. {
  9230. name: "Normal",
  9231. height: math.unit(6, "feet")
  9232. },
  9233. {
  9234. name: "Macro",
  9235. height: math.unit(300, "feet"),
  9236. default: true
  9237. },
  9238. {
  9239. name: "Megamacro",
  9240. height: math.unit(5, "miles")
  9241. },
  9242. ]
  9243. ))
  9244. characterMakers.push(() => makeCharacter(
  9245. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9246. {
  9247. side: {
  9248. height: math.unit(6, "feet"),
  9249. name: "Side",
  9250. image: {
  9251. source: "./media/characters/evander/side.svg",
  9252. extra: 877 / 477
  9253. }
  9254. },
  9255. },
  9256. [
  9257. {
  9258. name: "Normal",
  9259. height: math.unit(0.83, "meters"),
  9260. default: true
  9261. },
  9262. ]
  9263. ))
  9264. characterMakers.push(() => makeCharacter(
  9265. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9266. {
  9267. front: {
  9268. height: math.unit(12, "feet"),
  9269. weight: math.unit(1000, "lb"),
  9270. name: "Front",
  9271. image: {
  9272. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9273. extra: 1762 / 1611
  9274. }
  9275. },
  9276. back: {
  9277. height: math.unit(12, "feet"),
  9278. weight: math.unit(1000, "lb"),
  9279. name: "Back",
  9280. image: {
  9281. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9282. extra: 1762 / 1611
  9283. }
  9284. },
  9285. },
  9286. [
  9287. {
  9288. name: "Normal",
  9289. height: math.unit(12, "feet"),
  9290. default: true
  9291. },
  9292. {
  9293. name: "Kaiju",
  9294. height: math.unit(150, "feet")
  9295. },
  9296. ]
  9297. ))
  9298. characterMakers.push(() => makeCharacter(
  9299. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9300. {
  9301. front: {
  9302. height: math.unit(6, "feet"),
  9303. weight: math.unit(150, "lb"),
  9304. name: "Front",
  9305. image: {
  9306. source: "./media/characters/zero-alurus/front.svg"
  9307. }
  9308. },
  9309. back: {
  9310. height: math.unit(6, "feet"),
  9311. weight: math.unit(150, "lb"),
  9312. name: "Back",
  9313. image: {
  9314. source: "./media/characters/zero-alurus/back.svg"
  9315. }
  9316. },
  9317. },
  9318. [
  9319. {
  9320. name: "Normal",
  9321. height: math.unit(5 + 10 / 12, "feet")
  9322. },
  9323. {
  9324. name: "Macro",
  9325. height: math.unit(60, "feet"),
  9326. default: true
  9327. },
  9328. {
  9329. name: "Macro+",
  9330. height: math.unit(450, "feet")
  9331. },
  9332. ]
  9333. ))
  9334. characterMakers.push(() => makeCharacter(
  9335. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9336. {
  9337. front: {
  9338. height: math.unit(6, "feet"),
  9339. weight: math.unit(200, "lb"),
  9340. name: "Front",
  9341. image: {
  9342. source: "./media/characters/mega-shi/front.svg",
  9343. extra: 1279 / 1250,
  9344. bottom: 0.02
  9345. }
  9346. },
  9347. back: {
  9348. height: math.unit(6, "feet"),
  9349. weight: math.unit(200, "lb"),
  9350. name: "Back",
  9351. image: {
  9352. source: "./media/characters/mega-shi/back.svg",
  9353. extra: 1279 / 1250,
  9354. bottom: 0.02
  9355. }
  9356. },
  9357. },
  9358. [
  9359. {
  9360. name: "Micro",
  9361. height: math.unit(16 + 6 / 12, "feet")
  9362. },
  9363. {
  9364. name: "Third Dimension",
  9365. height: math.unit(40, "meters")
  9366. },
  9367. {
  9368. name: "Normal",
  9369. height: math.unit(660, "feet"),
  9370. default: true
  9371. },
  9372. {
  9373. name: "Megamacro",
  9374. height: math.unit(10, "miles")
  9375. },
  9376. {
  9377. name: "Planetary Launch",
  9378. height: math.unit(500, "miles")
  9379. },
  9380. {
  9381. name: "Interstellar",
  9382. height: math.unit(1e9, "miles")
  9383. },
  9384. {
  9385. name: "Leaving the Universe",
  9386. height: math.unit(1, "gigaparsec")
  9387. },
  9388. {
  9389. name: "Travelling Universes",
  9390. height: math.unit(30e15, "parsecs")
  9391. },
  9392. ]
  9393. ))
  9394. characterMakers.push(() => makeCharacter(
  9395. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9396. {
  9397. front: {
  9398. height: math.unit(6, "feet"),
  9399. weight: math.unit(150, "lb"),
  9400. name: "Front",
  9401. image: {
  9402. source: "./media/characters/odyssey/front.svg",
  9403. extra: 1782 / 1582,
  9404. bottom: 0.01
  9405. }
  9406. },
  9407. side: {
  9408. height: math.unit(5.7, "feet"),
  9409. weight: math.unit(140, "lb"),
  9410. name: "Side",
  9411. image: {
  9412. source: "./media/characters/odyssey/side.svg",
  9413. extra: 6462 / 5700
  9414. }
  9415. },
  9416. },
  9417. [
  9418. {
  9419. name: "Normal",
  9420. height: math.unit(5 + 4 / 12, "feet")
  9421. },
  9422. {
  9423. name: "Macro",
  9424. height: math.unit(1, "km")
  9425. },
  9426. {
  9427. name: "Megamacro",
  9428. height: math.unit(3000, "km")
  9429. },
  9430. {
  9431. name: "Gigamacro",
  9432. height: math.unit(1, "AU"),
  9433. default: true
  9434. },
  9435. {
  9436. name: "Omniversal",
  9437. height: math.unit(100e14, "lightyears")
  9438. },
  9439. ]
  9440. ))
  9441. characterMakers.push(() => makeCharacter(
  9442. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9443. {
  9444. front: {
  9445. height: math.unit(6, "feet"),
  9446. weight: math.unit(300, "lb"),
  9447. name: "Front",
  9448. image: {
  9449. source: "./media/characters/mekuto/front.svg",
  9450. extra: 921 / 832,
  9451. bottom: 0.03
  9452. }
  9453. },
  9454. hand: {
  9455. height: math.unit(6 / 10.24, "feet"),
  9456. name: "Hand",
  9457. image: {
  9458. source: "./media/characters/mekuto/hand.svg"
  9459. }
  9460. },
  9461. foot: {
  9462. height: math.unit(6 / 5.05, "feet"),
  9463. name: "Foot",
  9464. image: {
  9465. source: "./media/characters/mekuto/foot.svg"
  9466. }
  9467. },
  9468. },
  9469. [
  9470. {
  9471. name: "Minimicro",
  9472. height: math.unit(0.2, "inches")
  9473. },
  9474. {
  9475. name: "Micro",
  9476. height: math.unit(1.5, "inches")
  9477. },
  9478. {
  9479. name: "Normal",
  9480. height: math.unit(5 + 11 / 12, "feet"),
  9481. default: true
  9482. },
  9483. {
  9484. name: "Minimacro",
  9485. height: math.unit(17 + 9 / 12, "feet")
  9486. },
  9487. {
  9488. name: "Macro",
  9489. height: math.unit(177.5, "feet")
  9490. },
  9491. {
  9492. name: "Megamacro",
  9493. height: math.unit(152, "miles")
  9494. },
  9495. ]
  9496. ))
  9497. characterMakers.push(() => makeCharacter(
  9498. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9499. {
  9500. front: {
  9501. height: math.unit(6.5, "inches"),
  9502. weight: math.unit(13, "oz"),
  9503. name: "Front",
  9504. image: {
  9505. source: "./media/characters/dafydd-tomos/front.svg",
  9506. extra: 2990 / 2603,
  9507. bottom: 0.03
  9508. }
  9509. },
  9510. },
  9511. [
  9512. {
  9513. name: "Micro",
  9514. height: math.unit(6.5, "inches"),
  9515. default: true
  9516. },
  9517. ]
  9518. ))
  9519. characterMakers.push(() => makeCharacter(
  9520. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9521. {
  9522. front: {
  9523. height: math.unit(6, "feet"),
  9524. weight: math.unit(150, "lb"),
  9525. name: "Front",
  9526. image: {
  9527. source: "./media/characters/splinter/front.svg",
  9528. extra: 2990 / 2882,
  9529. bottom: 0.04
  9530. }
  9531. },
  9532. back: {
  9533. height: math.unit(6, "feet"),
  9534. weight: math.unit(150, "lb"),
  9535. name: "Back",
  9536. image: {
  9537. source: "./media/characters/splinter/back.svg",
  9538. extra: 2990 / 2882,
  9539. bottom: 0.04
  9540. }
  9541. },
  9542. },
  9543. [
  9544. {
  9545. name: "Normal",
  9546. height: math.unit(6, "feet")
  9547. },
  9548. {
  9549. name: "Macro",
  9550. height: math.unit(230, "meters"),
  9551. default: true
  9552. },
  9553. ]
  9554. ))
  9555. characterMakers.push(() => makeCharacter(
  9556. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9557. {
  9558. front: {
  9559. height: math.unit(4 + 10 / 12, "feet"),
  9560. weight: math.unit(480, "lb"),
  9561. name: "Front",
  9562. image: {
  9563. source: "./media/characters/snow-gabumon/front.svg",
  9564. extra: 1140 / 963,
  9565. bottom: 0.058
  9566. }
  9567. },
  9568. back: {
  9569. height: math.unit(4 + 10 / 12, "feet"),
  9570. weight: math.unit(480, "lb"),
  9571. name: "Back",
  9572. image: {
  9573. source: "./media/characters/snow-gabumon/back.svg",
  9574. extra: 1115 / 962,
  9575. bottom: 0.041
  9576. }
  9577. },
  9578. frontUndresed: {
  9579. height: math.unit(4 + 10 / 12, "feet"),
  9580. weight: math.unit(480, "lb"),
  9581. name: "Front (Undressed)",
  9582. image: {
  9583. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9584. extra: 1061 / 960,
  9585. bottom: 0.045
  9586. }
  9587. },
  9588. },
  9589. [
  9590. {
  9591. name: "Micro",
  9592. height: math.unit(1, "inch")
  9593. },
  9594. {
  9595. name: "Normal",
  9596. height: math.unit(4 + 10 / 12, "feet"),
  9597. default: true
  9598. },
  9599. {
  9600. name: "Macro",
  9601. height: math.unit(200, "feet")
  9602. },
  9603. {
  9604. name: "Megamacro",
  9605. height: math.unit(120, "miles")
  9606. },
  9607. {
  9608. name: "Gigamacro",
  9609. height: math.unit(9800, "miles")
  9610. },
  9611. ]
  9612. ))
  9613. characterMakers.push(() => makeCharacter(
  9614. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9615. {
  9616. front: {
  9617. height: math.unit(1.7, "meters"),
  9618. weight: math.unit(140, "lb"),
  9619. name: "Front",
  9620. image: {
  9621. source: "./media/characters/moody/front.svg",
  9622. extra: 3226 / 3007,
  9623. bottom: 0.087
  9624. }
  9625. },
  9626. },
  9627. [
  9628. {
  9629. name: "Micro",
  9630. height: math.unit(1, "mm")
  9631. },
  9632. {
  9633. name: "Normal",
  9634. height: math.unit(1.7, "meters"),
  9635. default: true
  9636. },
  9637. {
  9638. name: "Macro",
  9639. height: math.unit(80, "meters")
  9640. },
  9641. {
  9642. name: "Macro+",
  9643. height: math.unit(500, "meters")
  9644. },
  9645. ]
  9646. ))
  9647. characterMakers.push(() => makeCharacter(
  9648. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9649. {
  9650. front: {
  9651. height: math.unit(6, "feet"),
  9652. weight: math.unit(150, "lb"),
  9653. name: "Front",
  9654. image: {
  9655. source: "./media/characters/zyas/front.svg",
  9656. extra: 1180 / 1120,
  9657. bottom: 0.045
  9658. }
  9659. },
  9660. },
  9661. [
  9662. {
  9663. name: "Normal",
  9664. height: math.unit(10, "feet"),
  9665. default: true
  9666. },
  9667. {
  9668. name: "Macro",
  9669. height: math.unit(500, "feet")
  9670. },
  9671. {
  9672. name: "Megamacro",
  9673. height: math.unit(5, "miles")
  9674. },
  9675. {
  9676. name: "Teramacro",
  9677. height: math.unit(150000, "miles")
  9678. },
  9679. ]
  9680. ))
  9681. characterMakers.push(() => makeCharacter(
  9682. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9683. {
  9684. front: {
  9685. height: math.unit(6, "feet"),
  9686. weight: math.unit(150, "lb"),
  9687. name: "Front",
  9688. image: {
  9689. source: "./media/characters/cuon/front.svg",
  9690. extra: 1390 / 1320,
  9691. bottom: 0.008
  9692. }
  9693. },
  9694. },
  9695. [
  9696. {
  9697. name: "Micro",
  9698. height: math.unit(3, "inches")
  9699. },
  9700. {
  9701. name: "Normal",
  9702. height: math.unit(18 + 9 / 12, "feet"),
  9703. default: true
  9704. },
  9705. {
  9706. name: "Macro",
  9707. height: math.unit(360, "feet")
  9708. },
  9709. {
  9710. name: "Megamacro",
  9711. height: math.unit(360, "miles")
  9712. },
  9713. ]
  9714. ))
  9715. characterMakers.push(() => makeCharacter(
  9716. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9717. {
  9718. front: {
  9719. height: math.unit(2.4, "meters"),
  9720. weight: math.unit(70, "kg"),
  9721. name: "Front",
  9722. image: {
  9723. source: "./media/characters/nyanuxk/front.svg",
  9724. extra: 1172 / 1084,
  9725. bottom: 0.065
  9726. }
  9727. },
  9728. side: {
  9729. height: math.unit(2.4, "meters"),
  9730. weight: math.unit(70, "kg"),
  9731. name: "Side",
  9732. image: {
  9733. source: "./media/characters/nyanuxk/side.svg",
  9734. extra: 1190 / 1132,
  9735. bottom: 0.007
  9736. }
  9737. },
  9738. back: {
  9739. height: math.unit(2.4, "meters"),
  9740. weight: math.unit(70, "kg"),
  9741. name: "Back",
  9742. image: {
  9743. source: "./media/characters/nyanuxk/back.svg",
  9744. extra: 1200 / 1141,
  9745. bottom: 0.015
  9746. }
  9747. },
  9748. foot: {
  9749. height: math.unit(0.52, "meters"),
  9750. name: "Foot",
  9751. image: {
  9752. source: "./media/characters/nyanuxk/foot.svg"
  9753. }
  9754. },
  9755. },
  9756. [
  9757. {
  9758. name: "Micro",
  9759. height: math.unit(2, "cm")
  9760. },
  9761. {
  9762. name: "Normal",
  9763. height: math.unit(2.4, "meters"),
  9764. default: true
  9765. },
  9766. {
  9767. name: "Smaller Macro",
  9768. height: math.unit(120, "meters")
  9769. },
  9770. {
  9771. name: "Bigger Macro",
  9772. height: math.unit(1.2, "km")
  9773. },
  9774. {
  9775. name: "Megamacro",
  9776. height: math.unit(15, "kilometers")
  9777. },
  9778. {
  9779. name: "Gigamacro",
  9780. height: math.unit(2000, "km")
  9781. },
  9782. {
  9783. name: "Teramacro",
  9784. height: math.unit(500000, "km")
  9785. },
  9786. ]
  9787. ))
  9788. characterMakers.push(() => makeCharacter(
  9789. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9790. {
  9791. side: {
  9792. height: math.unit(6, "feet"),
  9793. name: "Side",
  9794. image: {
  9795. source: "./media/characters/ailbhe/side.svg",
  9796. extra: 757 / 464,
  9797. bottom: 0.041
  9798. }
  9799. },
  9800. },
  9801. [
  9802. {
  9803. name: "Normal",
  9804. height: math.unit(1.07, "meters"),
  9805. default: true
  9806. },
  9807. ]
  9808. ))
  9809. characterMakers.push(() => makeCharacter(
  9810. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9811. {
  9812. front: {
  9813. height: math.unit(6, "feet"),
  9814. weight: math.unit(120, "kg"),
  9815. name: "Front",
  9816. image: {
  9817. source: "./media/characters/zevulfius/front.svg",
  9818. extra: 965 / 903
  9819. }
  9820. },
  9821. side: {
  9822. height: math.unit(6, "feet"),
  9823. weight: math.unit(120, "kg"),
  9824. name: "Side",
  9825. image: {
  9826. source: "./media/characters/zevulfius/side.svg",
  9827. extra: 939 / 900
  9828. }
  9829. },
  9830. back: {
  9831. height: math.unit(6, "feet"),
  9832. weight: math.unit(120, "kg"),
  9833. name: "Back",
  9834. image: {
  9835. source: "./media/characters/zevulfius/back.svg",
  9836. extra: 918 / 854,
  9837. bottom: 0.005
  9838. }
  9839. },
  9840. foot: {
  9841. height: math.unit(6 / 3.72, "feet"),
  9842. name: "Foot",
  9843. image: {
  9844. source: "./media/characters/zevulfius/foot.svg"
  9845. }
  9846. },
  9847. },
  9848. [
  9849. {
  9850. name: "Macro",
  9851. height: math.unit(750, "meters")
  9852. },
  9853. {
  9854. name: "Megamacro",
  9855. height: math.unit(20, "km"),
  9856. default: true
  9857. },
  9858. {
  9859. name: "Gigamacro",
  9860. height: math.unit(2000, "km")
  9861. },
  9862. {
  9863. name: "Teramacro",
  9864. height: math.unit(250000, "km")
  9865. },
  9866. ]
  9867. ))
  9868. characterMakers.push(() => makeCharacter(
  9869. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9870. {
  9871. front: {
  9872. height: math.unit(100, "feet"),
  9873. weight: math.unit(350, "kg"),
  9874. name: "Front",
  9875. image: {
  9876. source: "./media/characters/rikes/front.svg",
  9877. extra: 1565 / 1483,
  9878. bottom: 0.017
  9879. }
  9880. },
  9881. },
  9882. [
  9883. {
  9884. name: "Macro",
  9885. height: math.unit(100, "feet"),
  9886. default: true
  9887. },
  9888. ]
  9889. ))
  9890. characterMakers.push(() => makeCharacter(
  9891. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9892. {
  9893. anthro: {
  9894. height: math.unit(8, "feet"),
  9895. weight: math.unit(120, "kg"),
  9896. name: "Anthro",
  9897. image: {
  9898. source: "./media/characters/adam-silver-mane/anthro.svg",
  9899. extra: 5743 / 5339,
  9900. bottom: 0.07
  9901. }
  9902. },
  9903. taur: {
  9904. height: math.unit(16, "feet"),
  9905. weight: math.unit(1500, "kg"),
  9906. name: "Taur",
  9907. image: {
  9908. source: "./media/characters/adam-silver-mane/taur.svg",
  9909. extra: 1713 / 1571,
  9910. bottom: 0.01
  9911. }
  9912. },
  9913. },
  9914. [
  9915. {
  9916. name: "Normal",
  9917. height: math.unit(8, "feet")
  9918. },
  9919. {
  9920. name: "Minimacro",
  9921. height: math.unit(80, "feet")
  9922. },
  9923. {
  9924. name: "Macro",
  9925. height: math.unit(800, "feet"),
  9926. default: true
  9927. },
  9928. {
  9929. name: "Megamacro",
  9930. height: math.unit(8000, "feet")
  9931. },
  9932. {
  9933. name: "Gigamacro",
  9934. height: math.unit(800, "miles")
  9935. },
  9936. {
  9937. name: "Teramacro",
  9938. height: math.unit(80000, "miles")
  9939. },
  9940. {
  9941. name: "Celestial",
  9942. height: math.unit(8e6, "miles")
  9943. },
  9944. {
  9945. name: "Star Dragon",
  9946. height: math.unit(800000, "parsecs")
  9947. },
  9948. {
  9949. name: "Godly",
  9950. height: math.unit(800, "teraparsecs")
  9951. },
  9952. ]
  9953. ))
  9954. characterMakers.push(() => makeCharacter(
  9955. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9956. {
  9957. front: {
  9958. height: math.unit(6, "feet"),
  9959. weight: math.unit(150, "lb"),
  9960. name: "Front",
  9961. image: {
  9962. source: "./media/characters/ky'owin/front.svg",
  9963. extra: 3888 / 3068,
  9964. bottom: 0.015
  9965. }
  9966. },
  9967. },
  9968. [
  9969. {
  9970. name: "Normal",
  9971. height: math.unit(6 + 8 / 12, "feet")
  9972. },
  9973. {
  9974. name: "Large",
  9975. height: math.unit(68, "feet")
  9976. },
  9977. {
  9978. name: "Macro",
  9979. height: math.unit(132, "feet")
  9980. },
  9981. {
  9982. name: "Macro+",
  9983. height: math.unit(340, "feet")
  9984. },
  9985. {
  9986. name: "Macro++",
  9987. height: math.unit(680, "feet"),
  9988. default: true
  9989. },
  9990. {
  9991. name: "Megamacro",
  9992. height: math.unit(1, "mile")
  9993. },
  9994. {
  9995. name: "Megamacro+",
  9996. height: math.unit(10, "miles")
  9997. },
  9998. ]
  9999. ))
  10000. characterMakers.push(() => makeCharacter(
  10001. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10002. {
  10003. front: {
  10004. height: math.unit(4, "feet"),
  10005. weight: math.unit(50, "lb"),
  10006. name: "Front",
  10007. image: {
  10008. source: "./media/characters/mal/front.svg",
  10009. extra: 785 / 724,
  10010. bottom: 0.07
  10011. }
  10012. },
  10013. },
  10014. [
  10015. {
  10016. name: "Micro",
  10017. height: math.unit(4, "inches")
  10018. },
  10019. {
  10020. name: "Normal",
  10021. height: math.unit(4, "feet"),
  10022. default: true
  10023. },
  10024. {
  10025. name: "Macro",
  10026. height: math.unit(200, "feet")
  10027. },
  10028. ]
  10029. ))
  10030. characterMakers.push(() => makeCharacter(
  10031. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10032. {
  10033. front: {
  10034. height: math.unit(6, "feet"),
  10035. weight: math.unit(150, "lb"),
  10036. name: "Front",
  10037. image: {
  10038. source: "./media/characters/jordan-deware/front.svg",
  10039. extra: 1191 / 1012
  10040. }
  10041. },
  10042. },
  10043. [
  10044. {
  10045. name: "Nano",
  10046. height: math.unit(0.01, "mm")
  10047. },
  10048. {
  10049. name: "Minimicro",
  10050. height: math.unit(1, "mm")
  10051. },
  10052. {
  10053. name: "Micro",
  10054. height: math.unit(0.5, "inches")
  10055. },
  10056. {
  10057. name: "Normal",
  10058. height: math.unit(4, "feet"),
  10059. default: true
  10060. },
  10061. {
  10062. name: "Minimacro",
  10063. height: math.unit(40, "meters")
  10064. },
  10065. {
  10066. name: "Small Macro",
  10067. height: math.unit(400, "meters")
  10068. },
  10069. {
  10070. name: "Macro",
  10071. height: math.unit(4, "miles")
  10072. },
  10073. {
  10074. name: "Megamacro",
  10075. height: math.unit(40, "miles")
  10076. },
  10077. {
  10078. name: "Megamacro+",
  10079. height: math.unit(400, "miles")
  10080. },
  10081. {
  10082. name: "Gigamacro",
  10083. height: math.unit(400000, "miles")
  10084. },
  10085. ]
  10086. ))
  10087. characterMakers.push(() => makeCharacter(
  10088. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10089. {
  10090. side: {
  10091. height: math.unit(6, "feet"),
  10092. weight: math.unit(150, "lb"),
  10093. name: "Side",
  10094. image: {
  10095. source: "./media/characters/kimiko/side.svg",
  10096. extra: 600 / 358
  10097. }
  10098. },
  10099. },
  10100. [
  10101. {
  10102. name: "Normal",
  10103. height: math.unit(15, "feet"),
  10104. default: true
  10105. },
  10106. {
  10107. name: "Macro",
  10108. height: math.unit(220, "feet")
  10109. },
  10110. {
  10111. name: "Macro+",
  10112. height: math.unit(1450, "feet")
  10113. },
  10114. {
  10115. name: "Megamacro",
  10116. height: math.unit(11500, "feet")
  10117. },
  10118. {
  10119. name: "Gigamacro",
  10120. height: math.unit(9500, "miles")
  10121. },
  10122. {
  10123. name: "Teramacro",
  10124. height: math.unit(2208005005, "miles")
  10125. },
  10126. {
  10127. name: "Examacro",
  10128. height: math.unit(2750, "parsecs")
  10129. },
  10130. {
  10131. name: "Zettamacro",
  10132. height: math.unit(101500, "parsecs")
  10133. },
  10134. ]
  10135. ))
  10136. characterMakers.push(() => makeCharacter(
  10137. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10138. {
  10139. front: {
  10140. height: math.unit(6, "feet"),
  10141. weight: math.unit(70, "kg"),
  10142. name: "Front",
  10143. image: {
  10144. source: "./media/characters/andrew-sleepy/front.svg"
  10145. }
  10146. },
  10147. side: {
  10148. height: math.unit(6, "feet"),
  10149. weight: math.unit(70, "kg"),
  10150. name: "Side",
  10151. image: {
  10152. source: "./media/characters/andrew-sleepy/side.svg"
  10153. }
  10154. },
  10155. },
  10156. [
  10157. {
  10158. name: "Micro",
  10159. height: math.unit(1, "mm"),
  10160. default: true
  10161. },
  10162. ]
  10163. ))
  10164. characterMakers.push(() => makeCharacter(
  10165. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10166. {
  10167. front: {
  10168. height: math.unit(6, "feet"),
  10169. weight: math.unit(150, "lb"),
  10170. name: "Front",
  10171. image: {
  10172. source: "./media/characters/judio/front.svg",
  10173. extra: 1258 / 1110
  10174. }
  10175. },
  10176. },
  10177. [
  10178. {
  10179. name: "Normal",
  10180. height: math.unit(5 + 6 / 12, "feet")
  10181. },
  10182. {
  10183. name: "Macro",
  10184. height: math.unit(1000, "feet"),
  10185. default: true
  10186. },
  10187. {
  10188. name: "Megamacro",
  10189. height: math.unit(10, "miles")
  10190. },
  10191. ]
  10192. ))
  10193. characterMakers.push(() => makeCharacter(
  10194. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10195. {
  10196. front: {
  10197. height: math.unit(6, "feet"),
  10198. weight: math.unit(68, "kg"),
  10199. name: "Front",
  10200. image: {
  10201. source: "./media/characters/nomaxice/front.svg",
  10202. extra: 1498 / 1073,
  10203. bottom: 0.075
  10204. }
  10205. },
  10206. foot: {
  10207. height: math.unit(1.1, "feet"),
  10208. name: "Foot",
  10209. image: {
  10210. source: "./media/characters/nomaxice/foot.svg"
  10211. }
  10212. },
  10213. },
  10214. [
  10215. {
  10216. name: "Micro",
  10217. height: math.unit(8, "cm")
  10218. },
  10219. {
  10220. name: "Norm",
  10221. height: math.unit(1.82, "m")
  10222. },
  10223. {
  10224. name: "Norm+",
  10225. height: math.unit(8.8, "feet")
  10226. },
  10227. {
  10228. name: "Big",
  10229. height: math.unit(8, "meters"),
  10230. default: true
  10231. },
  10232. {
  10233. name: "Macro",
  10234. height: math.unit(18, "meters")
  10235. },
  10236. {
  10237. name: "Macro+",
  10238. height: math.unit(88, "meters")
  10239. },
  10240. ]
  10241. ))
  10242. characterMakers.push(() => makeCharacter(
  10243. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10244. {
  10245. front: {
  10246. height: math.unit(12, "feet"),
  10247. weight: math.unit(1.5, "tons"),
  10248. name: "Front",
  10249. image: {
  10250. source: "./media/characters/dydros/front.svg",
  10251. extra: 863 / 800,
  10252. bottom: 0.015
  10253. }
  10254. },
  10255. back: {
  10256. height: math.unit(12, "feet"),
  10257. weight: math.unit(1.5, "tons"),
  10258. name: "Back",
  10259. image: {
  10260. source: "./media/characters/dydros/back.svg",
  10261. extra: 900 / 843,
  10262. bottom: 0.005
  10263. }
  10264. },
  10265. },
  10266. [
  10267. {
  10268. name: "Normal",
  10269. height: math.unit(12, "feet"),
  10270. default: true
  10271. },
  10272. ]
  10273. ))
  10274. characterMakers.push(() => makeCharacter(
  10275. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10276. {
  10277. front: {
  10278. height: math.unit(6, "feet"),
  10279. weight: math.unit(100, "kg"),
  10280. name: "Front",
  10281. image: {
  10282. source: "./media/characters/riggi/front.svg",
  10283. extra: 5787 / 5303
  10284. }
  10285. },
  10286. hyper: {
  10287. height: math.unit(6 * 5 / 3, "feet"),
  10288. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10289. name: "Hyper",
  10290. image: {
  10291. source: "./media/characters/riggi/hyper.svg",
  10292. extra: 3595 / 3485
  10293. }
  10294. },
  10295. },
  10296. [
  10297. {
  10298. name: "Small Macro",
  10299. height: math.unit(50, "feet")
  10300. },
  10301. {
  10302. name: "Default",
  10303. height: math.unit(200, "feet"),
  10304. default: true
  10305. },
  10306. {
  10307. name: "Loom",
  10308. height: math.unit(10000, "feet")
  10309. },
  10310. {
  10311. name: "Cruising Altitude",
  10312. height: math.unit(30000, "feet")
  10313. },
  10314. {
  10315. name: "Megamacro",
  10316. height: math.unit(100, "miles")
  10317. },
  10318. {
  10319. name: "Continent Sized",
  10320. height: math.unit(2800, "miles")
  10321. },
  10322. {
  10323. name: "Earth Sized",
  10324. height: math.unit(8000, "miles")
  10325. },
  10326. ]
  10327. ))
  10328. characterMakers.push(() => makeCharacter(
  10329. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10330. {
  10331. front: {
  10332. height: math.unit(6, "feet"),
  10333. weight: math.unit(250, "lb"),
  10334. name: "Front",
  10335. image: {
  10336. source: "./media/characters/alexi/front.svg",
  10337. extra: 3483 / 3291,
  10338. bottom: 0.04
  10339. }
  10340. },
  10341. back: {
  10342. height: math.unit(6, "feet"),
  10343. weight: math.unit(250, "lb"),
  10344. name: "Back",
  10345. image: {
  10346. source: "./media/characters/alexi/back.svg",
  10347. extra: 3533 / 3356,
  10348. bottom: 0.021
  10349. }
  10350. },
  10351. frontTransforming: {
  10352. height: math.unit(8.58, "feet"),
  10353. weight: math.unit(1300, "lb"),
  10354. name: "Transforming",
  10355. image: {
  10356. source: "./media/characters/alexi/front-transforming.svg",
  10357. extra: 437 / 409,
  10358. bottom: 19 / 458.66
  10359. }
  10360. },
  10361. frontTransformed: {
  10362. height: math.unit(12.5, "feet"),
  10363. weight: math.unit(4000, "lb"),
  10364. name: "Transformed",
  10365. image: {
  10366. source: "./media/characters/alexi/front-transformed.svg",
  10367. extra: 639 / 614,
  10368. bottom: 30.55 / 671
  10369. }
  10370. },
  10371. },
  10372. [
  10373. {
  10374. name: "Normal",
  10375. height: math.unit(14, "feet"),
  10376. default: true
  10377. },
  10378. {
  10379. name: "Minimacro",
  10380. height: math.unit(30, "meters")
  10381. },
  10382. {
  10383. name: "Macro",
  10384. height: math.unit(500, "meters")
  10385. },
  10386. {
  10387. name: "Megamacro",
  10388. height: math.unit(9000, "km")
  10389. },
  10390. {
  10391. name: "Teramacro",
  10392. height: math.unit(384000, "km")
  10393. },
  10394. ]
  10395. ))
  10396. characterMakers.push(() => makeCharacter(
  10397. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10398. {
  10399. front: {
  10400. height: math.unit(6, "feet"),
  10401. weight: math.unit(150, "lb"),
  10402. name: "Front",
  10403. image: {
  10404. source: "./media/characters/kayroo/front.svg",
  10405. extra: 1153 / 1038,
  10406. bottom: 0.06
  10407. }
  10408. },
  10409. foot: {
  10410. height: math.unit(6, "feet"),
  10411. weight: math.unit(150, "lb"),
  10412. name: "Foot",
  10413. image: {
  10414. source: "./media/characters/kayroo/foot.svg"
  10415. }
  10416. },
  10417. },
  10418. [
  10419. {
  10420. name: "Normal",
  10421. height: math.unit(8, "feet"),
  10422. default: true
  10423. },
  10424. {
  10425. name: "Minimacro",
  10426. height: math.unit(250, "feet")
  10427. },
  10428. {
  10429. name: "Macro",
  10430. height: math.unit(2800, "feet")
  10431. },
  10432. {
  10433. name: "Megamacro",
  10434. height: math.unit(5200, "feet")
  10435. },
  10436. {
  10437. name: "Gigamacro",
  10438. height: math.unit(27000, "feet")
  10439. },
  10440. {
  10441. name: "Omega",
  10442. height: math.unit(45000, "feet")
  10443. },
  10444. ]
  10445. ))
  10446. characterMakers.push(() => makeCharacter(
  10447. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10448. {
  10449. front: {
  10450. height: math.unit(18, "feet"),
  10451. weight: math.unit(5800, "lb"),
  10452. name: "Front",
  10453. image: {
  10454. source: "./media/characters/rhys/front.svg",
  10455. extra: 3386 / 3090,
  10456. bottom: 0.07
  10457. }
  10458. },
  10459. },
  10460. [
  10461. {
  10462. name: "Normal",
  10463. height: math.unit(18, "feet"),
  10464. default: true
  10465. },
  10466. {
  10467. name: "Working Size",
  10468. height: math.unit(200, "feet")
  10469. },
  10470. {
  10471. name: "Demolition Size",
  10472. height: math.unit(2000, "feet")
  10473. },
  10474. {
  10475. name: "Maximum Licensed Size",
  10476. height: math.unit(5, "miles")
  10477. },
  10478. {
  10479. name: "Maximum Observed Size",
  10480. height: math.unit(10, "yottameters")
  10481. },
  10482. ]
  10483. ))
  10484. characterMakers.push(() => makeCharacter(
  10485. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10486. {
  10487. front: {
  10488. height: math.unit(6, "feet"),
  10489. weight: math.unit(250, "lb"),
  10490. name: "Front",
  10491. image: {
  10492. source: "./media/characters/toto/front.svg",
  10493. extra: 527 / 479,
  10494. bottom: 0.05
  10495. }
  10496. },
  10497. },
  10498. [
  10499. {
  10500. name: "Micro",
  10501. height: math.unit(3, "feet")
  10502. },
  10503. {
  10504. name: "Normal",
  10505. height: math.unit(10, "feet")
  10506. },
  10507. {
  10508. name: "Macro",
  10509. height: math.unit(150, "feet"),
  10510. default: true
  10511. },
  10512. {
  10513. name: "Megamacro",
  10514. height: math.unit(1200, "feet")
  10515. },
  10516. ]
  10517. ))
  10518. characterMakers.push(() => makeCharacter(
  10519. { name: "King", species: ["lion"], tags: ["anthro"] },
  10520. {
  10521. back: {
  10522. height: math.unit(6, "feet"),
  10523. weight: math.unit(150, "lb"),
  10524. name: "Back",
  10525. image: {
  10526. source: "./media/characters/king/back.svg"
  10527. }
  10528. },
  10529. },
  10530. [
  10531. {
  10532. name: "Micro",
  10533. height: math.unit(2, "inches")
  10534. },
  10535. {
  10536. name: "Normal",
  10537. height: math.unit(8, "feet")
  10538. },
  10539. {
  10540. name: "Macro",
  10541. height: math.unit(200, "feet"),
  10542. default: true
  10543. },
  10544. {
  10545. name: "Megamacro",
  10546. height: math.unit(50, "miles")
  10547. },
  10548. ]
  10549. ))
  10550. characterMakers.push(() => makeCharacter(
  10551. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10552. {
  10553. anthro: {
  10554. height: math.unit(6 + 5 / 12, "feet"),
  10555. weight: math.unit(280, "lb"),
  10556. name: "Anthro",
  10557. image: {
  10558. source: "./media/characters/cordite/anthro.svg",
  10559. extra: 1986 / 1905,
  10560. bottom: 0.025
  10561. }
  10562. },
  10563. feral: {
  10564. height: math.unit(2, "feet"),
  10565. weight: math.unit(90, "lb"),
  10566. name: "Feral",
  10567. image: {
  10568. source: "./media/characters/cordite/feral.svg",
  10569. extra: 1260 / 755,
  10570. bottom: 0.05
  10571. }
  10572. },
  10573. },
  10574. [
  10575. {
  10576. name: "Normal",
  10577. height: math.unit(6 + 5 / 12, "feet"),
  10578. default: true
  10579. },
  10580. ]
  10581. ))
  10582. characterMakers.push(() => makeCharacter(
  10583. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10584. {
  10585. front: {
  10586. height: math.unit(6, "feet"),
  10587. weight: math.unit(150, "lb"),
  10588. name: "Front",
  10589. image: {
  10590. source: "./media/characters/pianostrong/front.svg",
  10591. extra: 6577 / 6254,
  10592. bottom: 0.02
  10593. }
  10594. },
  10595. side: {
  10596. height: math.unit(6, "feet"),
  10597. weight: math.unit(150, "lb"),
  10598. name: "Side",
  10599. image: {
  10600. source: "./media/characters/pianostrong/side.svg",
  10601. extra: 6106 / 5730
  10602. }
  10603. },
  10604. back: {
  10605. height: math.unit(6, "feet"),
  10606. weight: math.unit(150, "lb"),
  10607. name: "Back",
  10608. image: {
  10609. source: "./media/characters/pianostrong/back.svg",
  10610. extra: 6085 / 5733,
  10611. bottom: 0.01
  10612. }
  10613. },
  10614. },
  10615. [
  10616. {
  10617. name: "Macro",
  10618. height: math.unit(100, "feet")
  10619. },
  10620. {
  10621. name: "Macro+",
  10622. height: math.unit(300, "feet"),
  10623. default: true
  10624. },
  10625. {
  10626. name: "Macro++",
  10627. height: math.unit(1000, "feet")
  10628. },
  10629. ]
  10630. ))
  10631. characterMakers.push(() => makeCharacter(
  10632. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10633. {
  10634. front: {
  10635. height: math.unit(6, "feet"),
  10636. weight: math.unit(150, "lb"),
  10637. name: "Front",
  10638. image: {
  10639. source: "./media/characters/kona/front.svg",
  10640. extra: 2960 / 2629,
  10641. bottom: 0.005
  10642. }
  10643. },
  10644. },
  10645. [
  10646. {
  10647. name: "Normal",
  10648. height: math.unit(11 + 8 / 12, "feet")
  10649. },
  10650. {
  10651. name: "Macro",
  10652. height: math.unit(850, "feet"),
  10653. default: true
  10654. },
  10655. {
  10656. name: "Macro+",
  10657. height: math.unit(1.5, "km"),
  10658. default: true
  10659. },
  10660. {
  10661. name: "Megamacro",
  10662. height: math.unit(80, "miles")
  10663. },
  10664. {
  10665. name: "Gigamacro",
  10666. height: math.unit(3500, "miles")
  10667. },
  10668. ]
  10669. ))
  10670. characterMakers.push(() => makeCharacter(
  10671. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10672. {
  10673. side: {
  10674. height: math.unit(1.9, "meters"),
  10675. weight: math.unit(326, "kg"),
  10676. name: "Side",
  10677. image: {
  10678. source: "./media/characters/levi/side.svg",
  10679. extra: 1704 / 1334,
  10680. bottom: 0.02
  10681. }
  10682. },
  10683. },
  10684. [
  10685. {
  10686. name: "Normal",
  10687. height: math.unit(1.9, "meters"),
  10688. default: true
  10689. },
  10690. {
  10691. name: "Macro",
  10692. height: math.unit(20, "meters")
  10693. },
  10694. {
  10695. name: "Macro+",
  10696. height: math.unit(200, "meters")
  10697. },
  10698. {
  10699. name: "Megamacro",
  10700. height: math.unit(2, "km")
  10701. },
  10702. {
  10703. name: "Megamacro+",
  10704. height: math.unit(20, "km")
  10705. },
  10706. {
  10707. name: "Gigamacro",
  10708. height: math.unit(2500, "km")
  10709. },
  10710. {
  10711. name: "Gigamacro+",
  10712. height: math.unit(120000, "km")
  10713. },
  10714. {
  10715. name: "Teramacro",
  10716. height: math.unit(7.77e6, "km")
  10717. },
  10718. ]
  10719. ))
  10720. characterMakers.push(() => makeCharacter(
  10721. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10722. {
  10723. front: {
  10724. height: math.unit(6 + 4 / 12, "feet"),
  10725. weight: math.unit(188, "lb"),
  10726. name: "Front",
  10727. image: {
  10728. source: "./media/characters/bmc/front.svg",
  10729. extra: 1067 / 1022,
  10730. bottom: 0.047
  10731. }
  10732. },
  10733. },
  10734. [
  10735. {
  10736. name: "Human-sized",
  10737. height: math.unit(6 + 4 / 12, "feet")
  10738. },
  10739. {
  10740. name: "Small",
  10741. height: math.unit(250, "feet")
  10742. },
  10743. {
  10744. name: "Normal",
  10745. height: math.unit(1250, "feet"),
  10746. default: true
  10747. },
  10748. {
  10749. name: "Good Day",
  10750. height: math.unit(88, "miles")
  10751. },
  10752. {
  10753. name: "Largest Measured Size",
  10754. height: math.unit(11.2e6, "lightyears")
  10755. },
  10756. ]
  10757. ))
  10758. characterMakers.push(() => makeCharacter(
  10759. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10760. {
  10761. front: {
  10762. height: math.unit(20, "feet"),
  10763. weight: math.unit(2016, "kg"),
  10764. name: "Front",
  10765. image: {
  10766. source: "./media/characters/sven-the-kaiju/front.svg",
  10767. extra: 1479 / 1449,
  10768. bottom: 0.05
  10769. }
  10770. },
  10771. },
  10772. [
  10773. {
  10774. name: "Fairy",
  10775. height: math.unit(6, "inches")
  10776. },
  10777. {
  10778. name: "Normal",
  10779. height: math.unit(20, "feet"),
  10780. default: true
  10781. },
  10782. {
  10783. name: "Rampage",
  10784. height: math.unit(200, "feet")
  10785. },
  10786. {
  10787. name: "Archfey Forest Guardian",
  10788. height: math.unit(1, "mile")
  10789. },
  10790. ]
  10791. ))
  10792. characterMakers.push(() => makeCharacter(
  10793. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10794. {
  10795. front: {
  10796. height: math.unit(4, "meters"),
  10797. weight: math.unit(2, "tons"),
  10798. name: "Front",
  10799. image: {
  10800. source: "./media/characters/marik/front.svg",
  10801. extra: 1057 / 1003,
  10802. bottom: 0.08
  10803. }
  10804. },
  10805. },
  10806. [
  10807. {
  10808. name: "Normal",
  10809. height: math.unit(4, "meters"),
  10810. default: true
  10811. },
  10812. {
  10813. name: "Macro",
  10814. height: math.unit(20, "meters")
  10815. },
  10816. {
  10817. name: "Megamacro",
  10818. height: math.unit(50, "km")
  10819. },
  10820. {
  10821. name: "Gigamacro",
  10822. height: math.unit(100, "km")
  10823. },
  10824. {
  10825. name: "Alpha Macro",
  10826. height: math.unit(7.88e7, "yottameters")
  10827. },
  10828. ]
  10829. ))
  10830. characterMakers.push(() => makeCharacter(
  10831. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10832. {
  10833. front: {
  10834. height: math.unit(6, "feet"),
  10835. weight: math.unit(110, "lb"),
  10836. name: "Front",
  10837. image: {
  10838. source: "./media/characters/mel/front.svg",
  10839. extra: 736 / 617,
  10840. bottom: 0.017
  10841. }
  10842. },
  10843. },
  10844. [
  10845. {
  10846. name: "Pico",
  10847. height: math.unit(3, "pm")
  10848. },
  10849. {
  10850. name: "Nano",
  10851. height: math.unit(3, "nm")
  10852. },
  10853. {
  10854. name: "Micro",
  10855. height: math.unit(0.3, "mm"),
  10856. default: true
  10857. },
  10858. {
  10859. name: "Micro+",
  10860. height: math.unit(3, "mm")
  10861. },
  10862. {
  10863. name: "Normal",
  10864. height: math.unit(5 + 10.5 / 12, "feet")
  10865. },
  10866. ]
  10867. ))
  10868. characterMakers.push(() => makeCharacter(
  10869. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10870. {
  10871. kaiju: {
  10872. height: math.unit(1.75, "meters"),
  10873. weight: math.unit(55, "kg"),
  10874. name: "Kaiju",
  10875. image: {
  10876. source: "./media/characters/lykonous/kaiju.svg",
  10877. extra: 1055 / 946,
  10878. bottom: 0.135
  10879. }
  10880. },
  10881. },
  10882. [
  10883. {
  10884. name: "Normal",
  10885. height: math.unit(2.5, "meters"),
  10886. default: true
  10887. },
  10888. {
  10889. name: "Kaiju Dragon",
  10890. height: math.unit(60, "meters")
  10891. },
  10892. {
  10893. name: "Mega Kaiju",
  10894. height: math.unit(120, "km")
  10895. },
  10896. {
  10897. name: "Giga Kaiju",
  10898. height: math.unit(200, "megameters")
  10899. },
  10900. {
  10901. name: "Terra Kaiju",
  10902. height: math.unit(400, "gigameters")
  10903. },
  10904. {
  10905. name: "Kaiju Dragon God",
  10906. height: math.unit(13000, "exaparsecs")
  10907. },
  10908. ]
  10909. ))
  10910. characterMakers.push(() => makeCharacter(
  10911. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10912. {
  10913. front: {
  10914. height: math.unit(6, "feet"),
  10915. weight: math.unit(150, "lb"),
  10916. name: "Front",
  10917. image: {
  10918. source: "./media/characters/blü/front.svg",
  10919. extra: 1883 / 1564,
  10920. bottom: 0.031
  10921. }
  10922. },
  10923. },
  10924. [
  10925. {
  10926. name: "Normal",
  10927. height: math.unit(13, "feet"),
  10928. default: true
  10929. },
  10930. {
  10931. name: "Big Boi",
  10932. height: math.unit(150, "meters")
  10933. },
  10934. {
  10935. name: "Mini Stomper",
  10936. height: math.unit(300, "meters")
  10937. },
  10938. {
  10939. name: "Macro",
  10940. height: math.unit(1000, "meters")
  10941. },
  10942. {
  10943. name: "Megamacro",
  10944. height: math.unit(11000, "meters")
  10945. },
  10946. {
  10947. name: "Gigamacro",
  10948. height: math.unit(11000, "km")
  10949. },
  10950. {
  10951. name: "Teramacro",
  10952. height: math.unit(420000, "km")
  10953. },
  10954. {
  10955. name: "Examacro",
  10956. height: math.unit(120, "parsecs")
  10957. },
  10958. {
  10959. name: "God Tho",
  10960. height: math.unit(98000000000, "parsecs")
  10961. },
  10962. ]
  10963. ))
  10964. characterMakers.push(() => makeCharacter(
  10965. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10966. {
  10967. taurFront: {
  10968. height: math.unit(6, "feet"),
  10969. weight: math.unit(200, "lb"),
  10970. name: "Taur (Front)",
  10971. image: {
  10972. source: "./media/characters/scales/taur-front.svg",
  10973. extra: 1,
  10974. bottom: 0.05
  10975. }
  10976. },
  10977. taurBack: {
  10978. height: math.unit(6, "feet"),
  10979. weight: math.unit(200, "lb"),
  10980. name: "Taur (Back)",
  10981. image: {
  10982. source: "./media/characters/scales/taur-back.svg",
  10983. extra: 1,
  10984. bottom: 0.08
  10985. }
  10986. },
  10987. anthro: {
  10988. height: math.unit(6 * 7 / 12, "feet"),
  10989. weight: math.unit(100, "lb"),
  10990. name: "Anthro",
  10991. image: {
  10992. source: "./media/characters/scales/anthro.svg",
  10993. extra: 1,
  10994. bottom: 0.06
  10995. }
  10996. },
  10997. },
  10998. [
  10999. {
  11000. name: "Normal",
  11001. height: math.unit(12, "feet"),
  11002. default: true
  11003. },
  11004. ]
  11005. ))
  11006. characterMakers.push(() => makeCharacter(
  11007. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11008. {
  11009. front: {
  11010. height: math.unit(6, "feet"),
  11011. weight: math.unit(150, "lb"),
  11012. name: "Front",
  11013. image: {
  11014. source: "./media/characters/koragos/front.svg",
  11015. extra: 841 / 794,
  11016. bottom: 0.035
  11017. }
  11018. },
  11019. back: {
  11020. height: math.unit(6, "feet"),
  11021. weight: math.unit(150, "lb"),
  11022. name: "Back",
  11023. image: {
  11024. source: "./media/characters/koragos/back.svg",
  11025. extra: 841 / 810,
  11026. bottom: 0.022
  11027. }
  11028. },
  11029. },
  11030. [
  11031. {
  11032. name: "Normal",
  11033. height: math.unit(6 + 11 / 12, "feet"),
  11034. default: true
  11035. },
  11036. {
  11037. name: "Macro",
  11038. height: math.unit(490, "feet")
  11039. },
  11040. {
  11041. name: "Megamacro",
  11042. height: math.unit(10, "miles")
  11043. },
  11044. {
  11045. name: "Gigamacro",
  11046. height: math.unit(50, "miles")
  11047. },
  11048. ]
  11049. ))
  11050. characterMakers.push(() => makeCharacter(
  11051. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11052. {
  11053. front: {
  11054. height: math.unit(6, "feet"),
  11055. weight: math.unit(250, "lb"),
  11056. name: "Front",
  11057. image: {
  11058. source: "./media/characters/xylrem/front.svg",
  11059. extra: 3323 / 3050,
  11060. bottom: 0.065
  11061. }
  11062. },
  11063. },
  11064. [
  11065. {
  11066. name: "Micro",
  11067. height: math.unit(4, "feet")
  11068. },
  11069. {
  11070. name: "Normal",
  11071. height: math.unit(16, "feet"),
  11072. default: true
  11073. },
  11074. {
  11075. name: "Macro",
  11076. height: math.unit(2720, "feet")
  11077. },
  11078. {
  11079. name: "Megamacro",
  11080. height: math.unit(25000, "miles")
  11081. },
  11082. ]
  11083. ))
  11084. characterMakers.push(() => makeCharacter(
  11085. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11086. {
  11087. front: {
  11088. height: math.unit(8, "feet"),
  11089. weight: math.unit(250, "kg"),
  11090. name: "Front",
  11091. image: {
  11092. source: "./media/characters/ikideru/front.svg",
  11093. extra: 930 / 870,
  11094. bottom: 0.087
  11095. }
  11096. },
  11097. back: {
  11098. height: math.unit(8, "feet"),
  11099. weight: math.unit(250, "kg"),
  11100. name: "Back",
  11101. image: {
  11102. source: "./media/characters/ikideru/back.svg",
  11103. extra: 919 / 852,
  11104. bottom: 0.055
  11105. }
  11106. },
  11107. },
  11108. [
  11109. {
  11110. name: "Rare",
  11111. height: math.unit(8, "feet"),
  11112. default: true
  11113. },
  11114. {
  11115. name: "Playful Loom",
  11116. height: math.unit(80, "feet")
  11117. },
  11118. {
  11119. name: "City Leaner",
  11120. height: math.unit(230, "feet")
  11121. },
  11122. {
  11123. name: "Megamacro",
  11124. height: math.unit(2500, "feet")
  11125. },
  11126. {
  11127. name: "Gigamacro",
  11128. height: math.unit(26400, "feet")
  11129. },
  11130. {
  11131. name: "Tectonic Shifter",
  11132. height: math.unit(1.7, "megameters")
  11133. },
  11134. {
  11135. name: "Planet Carer",
  11136. height: math.unit(21, "megameters")
  11137. },
  11138. {
  11139. name: "God",
  11140. height: math.unit(11157.22, "parsecs")
  11141. },
  11142. ]
  11143. ))
  11144. characterMakers.push(() => makeCharacter(
  11145. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11146. {
  11147. front: {
  11148. height: math.unit(6, "feet"),
  11149. weight: math.unit(120, "lb"),
  11150. name: "Front",
  11151. image: {
  11152. source: "./media/characters/neo/front.svg"
  11153. }
  11154. },
  11155. },
  11156. [
  11157. {
  11158. name: "Micro",
  11159. height: math.unit(2, "inches"),
  11160. default: true
  11161. },
  11162. {
  11163. name: "Human Size",
  11164. height: math.unit(5 + 8 / 12, "feet")
  11165. },
  11166. ]
  11167. ))
  11168. characterMakers.push(() => makeCharacter(
  11169. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11170. {
  11171. front: {
  11172. height: math.unit(13 + 10 / 12, "feet"),
  11173. weight: math.unit(5320, "lb"),
  11174. name: "Front",
  11175. image: {
  11176. source: "./media/characters/chauncey-chantz/front.svg",
  11177. extra: 1587 / 1435,
  11178. bottom: 0.02
  11179. }
  11180. },
  11181. },
  11182. [
  11183. {
  11184. name: "Normal",
  11185. height: math.unit(13 + 10 / 12, "feet"),
  11186. default: true
  11187. },
  11188. {
  11189. name: "Macro",
  11190. height: math.unit(45, "feet")
  11191. },
  11192. {
  11193. name: "Megamacro",
  11194. height: math.unit(250, "miles")
  11195. },
  11196. {
  11197. name: "Planetary",
  11198. height: math.unit(10000, "miles")
  11199. },
  11200. {
  11201. name: "Galactic",
  11202. height: math.unit(40000, "parsecs")
  11203. },
  11204. {
  11205. name: "Universal",
  11206. height: math.unit(1, "yottameter")
  11207. },
  11208. ]
  11209. ))
  11210. characterMakers.push(() => makeCharacter(
  11211. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11212. {
  11213. front: {
  11214. height: math.unit(6, "feet"),
  11215. weight: math.unit(150, "lb"),
  11216. name: "Front",
  11217. image: {
  11218. source: "./media/characters/epifox/front.svg",
  11219. extra: 1,
  11220. bottom: 0.075
  11221. }
  11222. },
  11223. },
  11224. [
  11225. {
  11226. name: "Micro",
  11227. height: math.unit(6, "inches")
  11228. },
  11229. {
  11230. name: "Normal",
  11231. height: math.unit(12, "feet"),
  11232. default: true
  11233. },
  11234. {
  11235. name: "Macro",
  11236. height: math.unit(3810, "feet")
  11237. },
  11238. {
  11239. name: "Megamacro",
  11240. height: math.unit(500, "miles")
  11241. },
  11242. ]
  11243. ))
  11244. characterMakers.push(() => makeCharacter(
  11245. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11246. {
  11247. front: {
  11248. height: math.unit(1.8796, "m"),
  11249. weight: math.unit(230, "lb"),
  11250. name: "Front",
  11251. image: {
  11252. source: "./media/characters/colin-t/front.svg",
  11253. extra: 1272 / 1193,
  11254. bottom: 0.07
  11255. }
  11256. },
  11257. },
  11258. [
  11259. {
  11260. name: "Micro",
  11261. height: math.unit(0.571, "meters")
  11262. },
  11263. {
  11264. name: "Normal",
  11265. height: math.unit(1.8796, "meters"),
  11266. default: true
  11267. },
  11268. {
  11269. name: "Tall",
  11270. height: math.unit(4, "meters")
  11271. },
  11272. {
  11273. name: "Macro",
  11274. height: math.unit(67.241, "meters")
  11275. },
  11276. {
  11277. name: "Megamacro",
  11278. height: math.unit(371.856, "meters")
  11279. },
  11280. {
  11281. name: "Planetary",
  11282. height: math.unit(12631.5689, "km")
  11283. },
  11284. ]
  11285. ))
  11286. characterMakers.push(() => makeCharacter(
  11287. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11288. {
  11289. front: {
  11290. height: math.unit(1.85, "meters"),
  11291. weight: math.unit(80, "kg"),
  11292. name: "Front",
  11293. image: {
  11294. source: "./media/characters/matvei/front.svg",
  11295. extra: 614 / 594,
  11296. bottom: 0.01
  11297. }
  11298. },
  11299. },
  11300. [
  11301. {
  11302. name: "Normal",
  11303. height: math.unit(1.85, "meters"),
  11304. default: true
  11305. },
  11306. ]
  11307. ))
  11308. characterMakers.push(() => makeCharacter(
  11309. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11310. {
  11311. front: {
  11312. height: math.unit(5 + 9 / 12, "feet"),
  11313. weight: math.unit(70, "lb"),
  11314. name: "Front",
  11315. image: {
  11316. source: "./media/characters/quincy/front.svg",
  11317. extra: 3041 / 2751
  11318. }
  11319. },
  11320. back: {
  11321. height: math.unit(5 + 9 / 12, "feet"),
  11322. weight: math.unit(70, "lb"),
  11323. name: "Back",
  11324. image: {
  11325. source: "./media/characters/quincy/back.svg",
  11326. extra: 3041 / 2751
  11327. }
  11328. },
  11329. flying: {
  11330. height: math.unit(5 + 4 / 12, "feet"),
  11331. weight: math.unit(70, "lb"),
  11332. name: "Flying",
  11333. image: {
  11334. source: "./media/characters/quincy/flying.svg",
  11335. extra: 1044 / 930
  11336. }
  11337. },
  11338. },
  11339. [
  11340. {
  11341. name: "Micro",
  11342. height: math.unit(3, "cm")
  11343. },
  11344. {
  11345. name: "Normal",
  11346. height: math.unit(5 + 9 / 12, "feet")
  11347. },
  11348. {
  11349. name: "Macro",
  11350. height: math.unit(200, "meters"),
  11351. default: true
  11352. },
  11353. {
  11354. name: "Megamacro",
  11355. height: math.unit(1000, "meters")
  11356. },
  11357. ]
  11358. ))
  11359. characterMakers.push(() => makeCharacter(
  11360. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11361. {
  11362. front: {
  11363. height: math.unit(4 + 7 / 12, "feet"),
  11364. weight: math.unit(50, "lb"),
  11365. name: "Front",
  11366. image: {
  11367. source: "./media/characters/vanrel/front.svg",
  11368. extra: 1,
  11369. bottom: 0.02
  11370. }
  11371. },
  11372. frontAlt: {
  11373. height: math.unit(4 + 7 / 12, "feet"),
  11374. weight: math.unit(50, "lb"),
  11375. name: "Front-alt",
  11376. image: {
  11377. source: "./media/characters/vanrel/front-alt.svg",
  11378. extra: 1,
  11379. bottom: 15 / 1511
  11380. }
  11381. },
  11382. elemental: {
  11383. height: math.unit(3, "feet"),
  11384. weight: math.unit(50, "lb"),
  11385. name: "Elemental",
  11386. image: {
  11387. source: "./media/characters/vanrel/elemental.svg",
  11388. extra: 192.3 / 162.8,
  11389. bottom: 1.79 / 194.17
  11390. }
  11391. },
  11392. side: {
  11393. height: math.unit(4 + 7 / 12, "feet"),
  11394. weight: math.unit(50, "lb"),
  11395. name: "Side",
  11396. image: {
  11397. source: "./media/characters/vanrel/side.svg",
  11398. extra: 1,
  11399. bottom: 0.025
  11400. }
  11401. },
  11402. tome: {
  11403. height: math.unit(1.35, "feet"),
  11404. weight: math.unit(10, "lb"),
  11405. name: "Vanrel's Tome",
  11406. rename: true,
  11407. image: {
  11408. source: "./media/characters/vanrel/tome.svg"
  11409. }
  11410. },
  11411. beans: {
  11412. height: math.unit(0.89, "feet"),
  11413. name: "Beans",
  11414. image: {
  11415. source: "./media/characters/vanrel/beans.svg"
  11416. }
  11417. },
  11418. },
  11419. [
  11420. {
  11421. name: "Normal",
  11422. height: math.unit(4 + 7 / 12, "feet"),
  11423. default: true
  11424. },
  11425. ]
  11426. ))
  11427. characterMakers.push(() => makeCharacter(
  11428. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11429. {
  11430. front: {
  11431. height: math.unit(7 + 5 / 12, "feet"),
  11432. weight: math.unit(150, "lb"),
  11433. name: "Front",
  11434. image: {
  11435. source: "./media/characters/kuiper-vanrel/front.svg",
  11436. extra: 1118 / 1068,
  11437. bottom: 0.09
  11438. }
  11439. },
  11440. foot: {
  11441. height: math.unit(0.55, "meters"),
  11442. name: "Foot",
  11443. image: {
  11444. source: "./media/characters/kuiper-vanrel/foot.svg",
  11445. }
  11446. },
  11447. battle: {
  11448. height: math.unit(6.824, "feet"),
  11449. weight: math.unit(150, "lb"),
  11450. name: "Battle",
  11451. image: {
  11452. source: "./media/characters/kuiper-vanrel/battle.svg",
  11453. extra: 1466 / 1327,
  11454. bottom: 29 / 1492.5
  11455. }
  11456. },
  11457. battleAlt: {
  11458. height: math.unit(6.824, "feet"),
  11459. weight: math.unit(150, "lb"),
  11460. name: "Battle (Alt)",
  11461. image: {
  11462. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11463. extra: 2081 / 1965,
  11464. bottom: 40 / 2121
  11465. }
  11466. },
  11467. },
  11468. [
  11469. {
  11470. name: "Normal",
  11471. height: math.unit(7 + 5 / 12, "feet"),
  11472. default: true
  11473. },
  11474. ]
  11475. ))
  11476. characterMakers.push(() => makeCharacter(
  11477. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11478. {
  11479. front: {
  11480. height: math.unit(8 + 5 / 12, "feet"),
  11481. weight: math.unit(150, "lb"),
  11482. name: "Front",
  11483. image: {
  11484. source: "./media/characters/keset-vanrel/front.svg",
  11485. extra: 1150 / 1084,
  11486. bottom: 0.05
  11487. }
  11488. },
  11489. hand: {
  11490. height: math.unit(0.6, "meters"),
  11491. name: "Hand",
  11492. image: {
  11493. source: "./media/characters/keset-vanrel/hand.svg"
  11494. }
  11495. },
  11496. foot: {
  11497. height: math.unit(0.94978, "meters"),
  11498. name: "Foot",
  11499. image: {
  11500. source: "./media/characters/keset-vanrel/foot.svg"
  11501. }
  11502. },
  11503. battle: {
  11504. height: math.unit(7.408, "feet"),
  11505. weight: math.unit(150, "lb"),
  11506. name: "Battle",
  11507. image: {
  11508. source: "./media/characters/keset-vanrel/battle.svg",
  11509. extra: 1890 / 1386,
  11510. bottom: 73.28 / 1970
  11511. }
  11512. },
  11513. },
  11514. [
  11515. {
  11516. name: "Normal",
  11517. height: math.unit(8 + 5 / 12, "feet"),
  11518. default: true
  11519. },
  11520. ]
  11521. ))
  11522. characterMakers.push(() => makeCharacter(
  11523. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11524. {
  11525. front: {
  11526. height: math.unit(6, "feet"),
  11527. weight: math.unit(150, "lb"),
  11528. name: "Front",
  11529. image: {
  11530. source: "./media/characters/neos/front.svg",
  11531. extra: 1696 / 992,
  11532. bottom: 0.14
  11533. }
  11534. },
  11535. },
  11536. [
  11537. {
  11538. name: "Normal",
  11539. height: math.unit(54, "cm"),
  11540. default: true
  11541. },
  11542. {
  11543. name: "Macro",
  11544. height: math.unit(100, "m")
  11545. },
  11546. {
  11547. name: "Megamacro",
  11548. height: math.unit(10, "km")
  11549. },
  11550. {
  11551. name: "Megamacro+",
  11552. height: math.unit(100, "km")
  11553. },
  11554. {
  11555. name: "Gigamacro",
  11556. height: math.unit(100, "Mm")
  11557. },
  11558. {
  11559. name: "Teramacro",
  11560. height: math.unit(100, "Gm")
  11561. },
  11562. {
  11563. name: "Examacro",
  11564. height: math.unit(100, "Em")
  11565. },
  11566. {
  11567. name: "Godly",
  11568. height: math.unit(10000, "Ym")
  11569. },
  11570. {
  11571. name: "Beyond Godly",
  11572. height: math.unit(25, "multiverses")
  11573. },
  11574. ]
  11575. ))
  11576. characterMakers.push(() => makeCharacter(
  11577. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11578. {
  11579. feminine: {
  11580. height: math.unit(5, "feet"),
  11581. weight: math.unit(100, "lb"),
  11582. name: "Feminine",
  11583. image: {
  11584. source: "./media/characters/sammy-mouse/feminine.svg",
  11585. extra: 2526 / 2425,
  11586. bottom: 0.123
  11587. }
  11588. },
  11589. masculine: {
  11590. height: math.unit(5, "feet"),
  11591. weight: math.unit(100, "lb"),
  11592. name: "Masculine",
  11593. image: {
  11594. source: "./media/characters/sammy-mouse/masculine.svg",
  11595. extra: 2526 / 2425,
  11596. bottom: 0.123
  11597. }
  11598. },
  11599. },
  11600. [
  11601. {
  11602. name: "Micro",
  11603. height: math.unit(5, "inches")
  11604. },
  11605. {
  11606. name: "Normal",
  11607. height: math.unit(5, "feet"),
  11608. default: true
  11609. },
  11610. {
  11611. name: "Macro",
  11612. height: math.unit(60, "feet")
  11613. },
  11614. ]
  11615. ))
  11616. characterMakers.push(() => makeCharacter(
  11617. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11618. {
  11619. front: {
  11620. height: math.unit(4, "feet"),
  11621. weight: math.unit(50, "lb"),
  11622. name: "Front",
  11623. image: {
  11624. source: "./media/characters/kole/front.svg",
  11625. extra: 1423 / 1303,
  11626. bottom: 0.025
  11627. }
  11628. },
  11629. back: {
  11630. height: math.unit(4, "feet"),
  11631. weight: math.unit(50, "lb"),
  11632. name: "Back",
  11633. image: {
  11634. source: "./media/characters/kole/back.svg",
  11635. extra: 1426 / 1280,
  11636. bottom: 0.02
  11637. }
  11638. },
  11639. },
  11640. [
  11641. {
  11642. name: "Normal",
  11643. height: math.unit(4, "feet"),
  11644. default: true
  11645. },
  11646. ]
  11647. ))
  11648. characterMakers.push(() => makeCharacter(
  11649. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11650. {
  11651. front: {
  11652. height: math.unit(2 + 6 / 12, "feet"),
  11653. weight: math.unit(20, "lb"),
  11654. name: "Front",
  11655. image: {
  11656. source: "./media/characters/rufran/front.svg",
  11657. extra: 2041 / 1839,
  11658. bottom: 0.055
  11659. }
  11660. },
  11661. back: {
  11662. height: math.unit(2 + 6 / 12, "feet"),
  11663. weight: math.unit(20, "lb"),
  11664. name: "Back",
  11665. image: {
  11666. source: "./media/characters/rufran/back.svg",
  11667. extra: 2054 / 1839,
  11668. bottom: 0.01
  11669. }
  11670. },
  11671. hand: {
  11672. height: math.unit(0.2166, "meters"),
  11673. name: "Hand",
  11674. image: {
  11675. source: "./media/characters/rufran/hand.svg"
  11676. }
  11677. },
  11678. foot: {
  11679. height: math.unit(0.185, "meters"),
  11680. name: "Foot",
  11681. image: {
  11682. source: "./media/characters/rufran/foot.svg"
  11683. }
  11684. },
  11685. },
  11686. [
  11687. {
  11688. name: "Micro",
  11689. height: math.unit(1, "inch")
  11690. },
  11691. {
  11692. name: "Normal",
  11693. height: math.unit(2 + 6 / 12, "feet"),
  11694. default: true
  11695. },
  11696. {
  11697. name: "Big",
  11698. height: math.unit(60, "feet")
  11699. },
  11700. {
  11701. name: "Macro",
  11702. height: math.unit(325, "feet")
  11703. },
  11704. ]
  11705. ))
  11706. characterMakers.push(() => makeCharacter(
  11707. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11708. {
  11709. front: {
  11710. height: math.unit(0.3, "meters"),
  11711. weight: math.unit(3.5, "kg"),
  11712. name: "Front",
  11713. image: {
  11714. source: "./media/characters/chip/front.svg",
  11715. extra: 748 / 674
  11716. }
  11717. },
  11718. },
  11719. [
  11720. {
  11721. name: "Micro",
  11722. height: math.unit(1, "inch"),
  11723. default: true
  11724. },
  11725. ]
  11726. ))
  11727. characterMakers.push(() => makeCharacter(
  11728. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11729. {
  11730. side: {
  11731. height: math.unit(2.3, "meters"),
  11732. weight: math.unit(3500, "lb"),
  11733. name: "Side",
  11734. image: {
  11735. source: "./media/characters/torvid/side.svg",
  11736. extra: 1972 / 722,
  11737. bottom: 0.035
  11738. }
  11739. },
  11740. },
  11741. [
  11742. {
  11743. name: "Normal",
  11744. height: math.unit(2.3, "meters"),
  11745. default: true
  11746. },
  11747. ]
  11748. ))
  11749. characterMakers.push(() => makeCharacter(
  11750. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11751. {
  11752. front: {
  11753. height: math.unit(2, "meters"),
  11754. weight: math.unit(150.5, "kg"),
  11755. name: "Front",
  11756. image: {
  11757. source: "./media/characters/susan/front.svg",
  11758. extra: 693 / 635,
  11759. bottom: 0.05
  11760. }
  11761. },
  11762. },
  11763. [
  11764. {
  11765. name: "Megamacro",
  11766. height: math.unit(505, "miles"),
  11767. default: true
  11768. },
  11769. ]
  11770. ))
  11771. characterMakers.push(() => makeCharacter(
  11772. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11773. {
  11774. front: {
  11775. height: math.unit(6, "feet"),
  11776. weight: math.unit(150, "lb"),
  11777. name: "Front",
  11778. image: {
  11779. source: "./media/characters/raindrops/front.svg",
  11780. extra: 2655 / 2461,
  11781. bottom: 49 / 2705
  11782. }
  11783. },
  11784. back: {
  11785. height: math.unit(6, "feet"),
  11786. weight: math.unit(150, "lb"),
  11787. name: "Back",
  11788. image: {
  11789. source: "./media/characters/raindrops/back.svg",
  11790. extra: 2574 / 2400,
  11791. bottom: 65 / 2634
  11792. }
  11793. },
  11794. },
  11795. [
  11796. {
  11797. name: "Micro",
  11798. height: math.unit(6, "inches")
  11799. },
  11800. {
  11801. name: "Normal",
  11802. height: math.unit(6 + 2 / 12, "feet")
  11803. },
  11804. {
  11805. name: "Macro",
  11806. height: math.unit(131, "feet"),
  11807. default: true
  11808. },
  11809. {
  11810. name: "Megamacro",
  11811. height: math.unit(15, "miles")
  11812. },
  11813. {
  11814. name: "Gigamacro",
  11815. height: math.unit(4000, "miles")
  11816. },
  11817. {
  11818. name: "Teramacro",
  11819. height: math.unit(315000, "miles")
  11820. },
  11821. ]
  11822. ))
  11823. characterMakers.push(() => makeCharacter(
  11824. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11825. {
  11826. front: {
  11827. height: math.unit(2.794, "meters"),
  11828. weight: math.unit(325, "kg"),
  11829. name: "Front",
  11830. image: {
  11831. source: "./media/characters/tezwa/front.svg",
  11832. extra: 2083 / 1906,
  11833. bottom: 0.031
  11834. }
  11835. },
  11836. foot: {
  11837. height: math.unit(0.687, "meters"),
  11838. name: "Foot",
  11839. image: {
  11840. source: "./media/characters/tezwa/foot.svg"
  11841. }
  11842. },
  11843. },
  11844. [
  11845. {
  11846. name: "Normal",
  11847. height: math.unit(9 + 2 / 12, "feet"),
  11848. default: true
  11849. },
  11850. ]
  11851. ))
  11852. characterMakers.push(() => makeCharacter(
  11853. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11854. {
  11855. front: {
  11856. height: math.unit(58, "feet"),
  11857. weight: math.unit(89000, "lb"),
  11858. name: "Front",
  11859. image: {
  11860. source: "./media/characters/typhus/front.svg",
  11861. extra: 816 / 800,
  11862. bottom: 0.065
  11863. }
  11864. },
  11865. },
  11866. [
  11867. {
  11868. name: "Macro",
  11869. height: math.unit(58, "feet"),
  11870. default: true
  11871. },
  11872. ]
  11873. ))
  11874. characterMakers.push(() => makeCharacter(
  11875. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11876. {
  11877. front: {
  11878. height: math.unit(12, "feet"),
  11879. weight: math.unit(6, "tonnes"),
  11880. name: "Front",
  11881. image: {
  11882. source: "./media/characters/lyra-von-wulf/front.svg",
  11883. extra: 1,
  11884. bottom: 0.10
  11885. }
  11886. },
  11887. frontMecha: {
  11888. height: math.unit(12, "feet"),
  11889. weight: math.unit(12, "tonnes"),
  11890. name: "Front (Mecha)",
  11891. image: {
  11892. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11893. extra: 1,
  11894. bottom: 0.042
  11895. }
  11896. },
  11897. maw: {
  11898. height: math.unit(2.2, "feet"),
  11899. name: "Maw",
  11900. image: {
  11901. source: "./media/characters/lyra-von-wulf/maw.svg"
  11902. }
  11903. },
  11904. },
  11905. [
  11906. {
  11907. name: "Normal",
  11908. height: math.unit(12, "feet"),
  11909. default: true
  11910. },
  11911. {
  11912. name: "Classic",
  11913. height: math.unit(50, "feet")
  11914. },
  11915. {
  11916. name: "Macro",
  11917. height: math.unit(500, "feet")
  11918. },
  11919. {
  11920. name: "Megamacro",
  11921. height: math.unit(1, "mile")
  11922. },
  11923. {
  11924. name: "Gigamacro",
  11925. height: math.unit(400, "miles")
  11926. },
  11927. {
  11928. name: "Teramacro",
  11929. height: math.unit(22000, "miles")
  11930. },
  11931. {
  11932. name: "Solarmacro",
  11933. height: math.unit(8600000, "miles")
  11934. },
  11935. {
  11936. name: "Galactic",
  11937. height: math.unit(1057000, "lightyears")
  11938. },
  11939. ]
  11940. ))
  11941. characterMakers.push(() => makeCharacter(
  11942. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11943. {
  11944. front: {
  11945. height: math.unit(6 + 10 / 12, "feet"),
  11946. weight: math.unit(150, "lb"),
  11947. name: "Front",
  11948. image: {
  11949. source: "./media/characters/dixon/front.svg",
  11950. extra: 3361 / 3209,
  11951. bottom: 0.01
  11952. }
  11953. },
  11954. },
  11955. [
  11956. {
  11957. name: "Normal",
  11958. height: math.unit(6 + 10 / 12, "feet"),
  11959. default: true
  11960. },
  11961. {
  11962. name: "Big",
  11963. height: math.unit(12, "meters")
  11964. },
  11965. {
  11966. name: "Macro",
  11967. height: math.unit(500, "meters")
  11968. },
  11969. {
  11970. name: "Megamacro",
  11971. height: math.unit(2, "km")
  11972. },
  11973. ]
  11974. ))
  11975. characterMakers.push(() => makeCharacter(
  11976. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11977. {
  11978. front: {
  11979. height: math.unit(185, "cm"),
  11980. weight: math.unit(68, "kg"),
  11981. name: "Front",
  11982. image: {
  11983. source: "./media/characters/kauko/front.svg",
  11984. extra: 1455 / 1421,
  11985. bottom: 0.03
  11986. }
  11987. },
  11988. back: {
  11989. height: math.unit(185, "cm"),
  11990. weight: math.unit(68, "kg"),
  11991. name: "Back",
  11992. image: {
  11993. source: "./media/characters/kauko/back.svg",
  11994. extra: 1455 / 1421,
  11995. bottom: 0.004
  11996. }
  11997. },
  11998. },
  11999. [
  12000. {
  12001. name: "Normal",
  12002. height: math.unit(185, "cm"),
  12003. default: true
  12004. },
  12005. ]
  12006. ))
  12007. characterMakers.push(() => makeCharacter(
  12008. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12009. {
  12010. front: {
  12011. height: math.unit(6, "feet"),
  12012. weight: math.unit(150, "kg"),
  12013. name: "Front",
  12014. image: {
  12015. source: "./media/characters/varg/front.svg",
  12016. extra: 1108 / 1018,
  12017. bottom: 0.0375
  12018. }
  12019. },
  12020. },
  12021. [
  12022. {
  12023. name: "Normal",
  12024. height: math.unit(5, "meters")
  12025. },
  12026. {
  12027. name: "Macro",
  12028. height: math.unit(200, "meters")
  12029. },
  12030. {
  12031. name: "Megamacro",
  12032. height: math.unit(20, "kilometers")
  12033. },
  12034. {
  12035. name: "True Size",
  12036. height: math.unit(211, "km"),
  12037. default: true
  12038. },
  12039. {
  12040. name: "Gigamacro",
  12041. height: math.unit(1000, "km")
  12042. },
  12043. {
  12044. name: "Gigamacro+",
  12045. height: math.unit(8000, "km")
  12046. },
  12047. {
  12048. name: "Teramacro",
  12049. height: math.unit(1000000, "km")
  12050. },
  12051. ]
  12052. ))
  12053. characterMakers.push(() => makeCharacter(
  12054. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12055. {
  12056. front: {
  12057. height: math.unit(7 + 7 / 12, "feet"),
  12058. weight: math.unit(267, "lb"),
  12059. name: "Front",
  12060. image: {
  12061. source: "./media/characters/dayza/front.svg",
  12062. extra: 1262 / 1200,
  12063. bottom: 0.035
  12064. }
  12065. },
  12066. side: {
  12067. height: math.unit(7 + 7 / 12, "feet"),
  12068. weight: math.unit(267, "lb"),
  12069. name: "Side",
  12070. image: {
  12071. source: "./media/characters/dayza/side.svg",
  12072. extra: 1295 / 1245,
  12073. bottom: 0.05
  12074. }
  12075. },
  12076. back: {
  12077. height: math.unit(7 + 7 / 12, "feet"),
  12078. weight: math.unit(267, "lb"),
  12079. name: "Back",
  12080. image: {
  12081. source: "./media/characters/dayza/back.svg",
  12082. extra: 1241 / 1170
  12083. }
  12084. },
  12085. },
  12086. [
  12087. {
  12088. name: "Normal",
  12089. height: math.unit(7 + 7 / 12, "feet"),
  12090. default: true
  12091. },
  12092. {
  12093. name: "Macro",
  12094. height: math.unit(155, "feet")
  12095. },
  12096. ]
  12097. ))
  12098. characterMakers.push(() => makeCharacter(
  12099. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12100. {
  12101. front: {
  12102. height: math.unit(6 + 5 / 12, "feet"),
  12103. weight: math.unit(160, "lb"),
  12104. name: "Front",
  12105. image: {
  12106. source: "./media/characters/xanthos/front.svg",
  12107. extra: 1,
  12108. bottom: 0.04
  12109. }
  12110. },
  12111. back: {
  12112. height: math.unit(6 + 5 / 12, "feet"),
  12113. weight: math.unit(160, "lb"),
  12114. name: "Back",
  12115. image: {
  12116. source: "./media/characters/xanthos/back.svg",
  12117. extra: 1,
  12118. bottom: 0.03
  12119. }
  12120. },
  12121. hand: {
  12122. height: math.unit(0.928, "feet"),
  12123. name: "Hand",
  12124. image: {
  12125. source: "./media/characters/xanthos/hand.svg"
  12126. }
  12127. },
  12128. foot: {
  12129. height: math.unit(1.286, "feet"),
  12130. name: "Foot",
  12131. image: {
  12132. source: "./media/characters/xanthos/foot.svg"
  12133. }
  12134. },
  12135. },
  12136. [
  12137. {
  12138. name: "Normal",
  12139. height: math.unit(6 + 5 / 12, "feet"),
  12140. default: true
  12141. },
  12142. {
  12143. name: "Normal+",
  12144. height: math.unit(6, "meters")
  12145. },
  12146. {
  12147. name: "Macro",
  12148. height: math.unit(40, "feet")
  12149. },
  12150. {
  12151. name: "Macro+",
  12152. height: math.unit(200, "meters")
  12153. },
  12154. {
  12155. name: "Megamacro",
  12156. height: math.unit(20, "km")
  12157. },
  12158. {
  12159. name: "Megamacro+",
  12160. height: math.unit(100, "km")
  12161. },
  12162. ]
  12163. ))
  12164. characterMakers.push(() => makeCharacter(
  12165. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12166. {
  12167. front: {
  12168. height: math.unit(6 + 3 / 12, "feet"),
  12169. weight: math.unit(215, "lb"),
  12170. name: "Front",
  12171. image: {
  12172. source: "./media/characters/grynn/front.svg",
  12173. extra: 4627 / 4209,
  12174. bottom: 0.047
  12175. }
  12176. },
  12177. },
  12178. [
  12179. {
  12180. name: "Micro",
  12181. height: math.unit(6, "inches")
  12182. },
  12183. {
  12184. name: "Normal",
  12185. height: math.unit(6 + 3 / 12, "feet"),
  12186. default: true
  12187. },
  12188. {
  12189. name: "Big",
  12190. height: math.unit(104, "feet")
  12191. },
  12192. {
  12193. name: "Macro",
  12194. height: math.unit(944, "feet")
  12195. },
  12196. {
  12197. name: "Macro+",
  12198. height: math.unit(9480, "feet")
  12199. },
  12200. {
  12201. name: "Megamacro",
  12202. height: math.unit(78752, "feet")
  12203. },
  12204. {
  12205. name: "Megamacro+",
  12206. height: math.unit(630128, "feet")
  12207. },
  12208. {
  12209. name: "Megamacro++",
  12210. height: math.unit(3150695, "feet")
  12211. },
  12212. ]
  12213. ))
  12214. characterMakers.push(() => makeCharacter(
  12215. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12216. {
  12217. front: {
  12218. height: math.unit(7 + 5 / 12, "feet"),
  12219. weight: math.unit(450, "lb"),
  12220. name: "Front",
  12221. image: {
  12222. source: "./media/characters/mocha-aura/front.svg",
  12223. extra: 1907 / 1817,
  12224. bottom: 0.04
  12225. }
  12226. },
  12227. back: {
  12228. height: math.unit(7 + 5 / 12, "feet"),
  12229. weight: math.unit(450, "lb"),
  12230. name: "Back",
  12231. image: {
  12232. source: "./media/characters/mocha-aura/back.svg",
  12233. extra: 1900 / 1825,
  12234. bottom: 0.045
  12235. }
  12236. },
  12237. },
  12238. [
  12239. {
  12240. name: "Nano",
  12241. height: math.unit(1, "nm")
  12242. },
  12243. {
  12244. name: "Megamicro",
  12245. height: math.unit(1, "mm")
  12246. },
  12247. {
  12248. name: "Micro",
  12249. height: math.unit(3, "inches")
  12250. },
  12251. {
  12252. name: "Normal",
  12253. height: math.unit(7 + 5 / 12, "feet"),
  12254. default: true
  12255. },
  12256. {
  12257. name: "Macro",
  12258. height: math.unit(30, "feet")
  12259. },
  12260. {
  12261. name: "Megamacro",
  12262. height: math.unit(3500, "feet")
  12263. },
  12264. {
  12265. name: "Teramacro",
  12266. height: math.unit(500000, "miles")
  12267. },
  12268. {
  12269. name: "Petamacro",
  12270. height: math.unit(50000000000000000, "parsecs")
  12271. },
  12272. ]
  12273. ))
  12274. characterMakers.push(() => makeCharacter(
  12275. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12276. {
  12277. front: {
  12278. height: math.unit(6, "feet"),
  12279. weight: math.unit(150, "lb"),
  12280. name: "Front",
  12281. image: {
  12282. source: "./media/characters/ilisha-devya/front.svg",
  12283. extra: 1,
  12284. bottom: 0.175
  12285. }
  12286. },
  12287. back: {
  12288. height: math.unit(6, "feet"),
  12289. weight: math.unit(150, "lb"),
  12290. name: "Back",
  12291. image: {
  12292. source: "./media/characters/ilisha-devya/back.svg",
  12293. extra: 1,
  12294. bottom: 0.015
  12295. }
  12296. },
  12297. },
  12298. [
  12299. {
  12300. name: "Macro",
  12301. height: math.unit(500, "feet"),
  12302. default: true
  12303. },
  12304. {
  12305. name: "Megamacro",
  12306. height: math.unit(10, "miles")
  12307. },
  12308. {
  12309. name: "Gigamacro",
  12310. height: math.unit(100000, "miles")
  12311. },
  12312. {
  12313. name: "Examacro",
  12314. height: math.unit(1e9, "lightyears")
  12315. },
  12316. {
  12317. name: "Omniversal",
  12318. height: math.unit(1e33, "lightyears")
  12319. },
  12320. {
  12321. name: "Beyond Infinite",
  12322. height: math.unit(1e100, "lightyears")
  12323. },
  12324. ]
  12325. ))
  12326. characterMakers.push(() => makeCharacter(
  12327. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12328. {
  12329. Side: {
  12330. height: math.unit(6, "feet"),
  12331. weight: math.unit(150, "lb"),
  12332. name: "Side",
  12333. image: {
  12334. source: "./media/characters/mira/side.svg",
  12335. extra: 900 / 799,
  12336. bottom: 0.02
  12337. }
  12338. },
  12339. },
  12340. [
  12341. {
  12342. name: "Human Size",
  12343. height: math.unit(6, "feet")
  12344. },
  12345. {
  12346. name: "Macro",
  12347. height: math.unit(100, "feet"),
  12348. default: true
  12349. },
  12350. {
  12351. name: "Megamacro",
  12352. height: math.unit(10, "miles")
  12353. },
  12354. {
  12355. name: "Gigamacro",
  12356. height: math.unit(25000, "miles")
  12357. },
  12358. {
  12359. name: "Teramacro",
  12360. height: math.unit(300, "AU")
  12361. },
  12362. {
  12363. name: "Full Size",
  12364. height: math.unit(4.5e10, "lightyears")
  12365. },
  12366. ]
  12367. ))
  12368. characterMakers.push(() => makeCharacter(
  12369. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12370. {
  12371. front: {
  12372. height: math.unit(6, "feet"),
  12373. weight: math.unit(150, "lb"),
  12374. name: "Front",
  12375. image: {
  12376. source: "./media/characters/holly/front.svg",
  12377. extra: 639 / 606
  12378. }
  12379. },
  12380. back: {
  12381. height: math.unit(6, "feet"),
  12382. weight: math.unit(150, "lb"),
  12383. name: "Back",
  12384. image: {
  12385. source: "./media/characters/holly/back.svg",
  12386. extra: 623 / 598
  12387. }
  12388. },
  12389. frontWorking: {
  12390. height: math.unit(6, "feet"),
  12391. weight: math.unit(150, "lb"),
  12392. name: "Front (Working)",
  12393. image: {
  12394. source: "./media/characters/holly/front-working.svg",
  12395. extra: 607 / 577,
  12396. bottom: 0.048
  12397. }
  12398. },
  12399. },
  12400. [
  12401. {
  12402. name: "Normal",
  12403. height: math.unit(12 + 3 / 12, "feet"),
  12404. default: true
  12405. },
  12406. ]
  12407. ))
  12408. characterMakers.push(() => makeCharacter(
  12409. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12410. {
  12411. front: {
  12412. height: math.unit(6, "feet"),
  12413. weight: math.unit(150, "lb"),
  12414. name: "Front",
  12415. image: {
  12416. source: "./media/characters/porter/front.svg",
  12417. extra: 1,
  12418. bottom: 0.01
  12419. }
  12420. },
  12421. frontRobes: {
  12422. height: math.unit(6, "feet"),
  12423. weight: math.unit(150, "lb"),
  12424. name: "Front (Robes)",
  12425. image: {
  12426. source: "./media/characters/porter/front-robes.svg",
  12427. extra: 1.01,
  12428. bottom: 0.01
  12429. }
  12430. },
  12431. },
  12432. [
  12433. {
  12434. name: "Normal",
  12435. height: math.unit(11 + 9 / 12, "feet"),
  12436. default: true
  12437. },
  12438. ]
  12439. ))
  12440. characterMakers.push(() => makeCharacter(
  12441. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12442. {
  12443. legendary: {
  12444. height: math.unit(6, "feet"),
  12445. weight: math.unit(150, "lb"),
  12446. name: "Legendary",
  12447. image: {
  12448. source: "./media/characters/lucy/legendary.svg",
  12449. extra: 1355 / 1100,
  12450. bottom: 0.045
  12451. }
  12452. },
  12453. },
  12454. [
  12455. {
  12456. name: "Legendary",
  12457. height: math.unit(86882 * 2, "miles"),
  12458. default: true
  12459. },
  12460. ]
  12461. ))
  12462. characterMakers.push(() => makeCharacter(
  12463. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12464. {
  12465. front: {
  12466. height: math.unit(6, "feet"),
  12467. weight: math.unit(150, "lb"),
  12468. name: "Front",
  12469. image: {
  12470. source: "./media/characters/drusilla/front.svg",
  12471. extra: 678 / 635,
  12472. bottom: 0.03
  12473. }
  12474. },
  12475. back: {
  12476. height: math.unit(6, "feet"),
  12477. weight: math.unit(150, "lb"),
  12478. name: "Back",
  12479. image: {
  12480. source: "./media/characters/drusilla/back.svg",
  12481. extra: 678 / 635,
  12482. bottom: 0.005
  12483. }
  12484. },
  12485. },
  12486. [
  12487. {
  12488. name: "Macro",
  12489. height: math.unit(100, "feet")
  12490. },
  12491. {
  12492. name: "Canon Height",
  12493. height: math.unit(2000, "feet"),
  12494. default: true
  12495. },
  12496. ]
  12497. ))
  12498. characterMakers.push(() => makeCharacter(
  12499. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12500. {
  12501. front: {
  12502. height: math.unit(6, "feet"),
  12503. weight: math.unit(180, "lb"),
  12504. name: "Front",
  12505. image: {
  12506. source: "./media/characters/renard-thatch/front.svg",
  12507. extra: 2411 / 2275,
  12508. bottom: 0.01
  12509. }
  12510. },
  12511. frontPosing: {
  12512. height: math.unit(6, "feet"),
  12513. weight: math.unit(180, "lb"),
  12514. name: "Front (Posing)",
  12515. image: {
  12516. source: "./media/characters/renard-thatch/front-posing.svg",
  12517. extra: 2381 / 2261,
  12518. bottom: 0.01
  12519. }
  12520. },
  12521. back: {
  12522. height: math.unit(6, "feet"),
  12523. weight: math.unit(180, "lb"),
  12524. name: "Back",
  12525. image: {
  12526. source: "./media/characters/renard-thatch/back.svg",
  12527. extra: 2428 / 2288
  12528. }
  12529. },
  12530. },
  12531. [
  12532. {
  12533. name: "Micro",
  12534. height: math.unit(3, "inches")
  12535. },
  12536. {
  12537. name: "Default",
  12538. height: math.unit(6, "feet"),
  12539. default: true
  12540. },
  12541. {
  12542. name: "Macro",
  12543. height: math.unit(75, "feet")
  12544. },
  12545. ]
  12546. ))
  12547. characterMakers.push(() => makeCharacter(
  12548. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12549. {
  12550. front: {
  12551. height: math.unit(1450, "feet"),
  12552. weight: math.unit(1.21e6, "tons"),
  12553. name: "Front",
  12554. image: {
  12555. source: "./media/characters/sekvra/front.svg",
  12556. extra: 1,
  12557. bottom: 0.03
  12558. }
  12559. },
  12560. frontClothed: {
  12561. height: math.unit(1450, "feet"),
  12562. weight: math.unit(1.21e6, "tons"),
  12563. name: "Front (Clothed)",
  12564. image: {
  12565. source: "./media/characters/sekvra/front-clothed.svg",
  12566. extra: 1,
  12567. bottom: 0.03
  12568. }
  12569. },
  12570. side: {
  12571. height: math.unit(1450, "feet"),
  12572. weight: math.unit(1.21e6, "tons"),
  12573. name: "Side",
  12574. image: {
  12575. source: "./media/characters/sekvra/side.svg",
  12576. extra: 1,
  12577. bottom: 0.025
  12578. }
  12579. },
  12580. back: {
  12581. height: math.unit(1450, "feet"),
  12582. weight: math.unit(1.21e6, "tons"),
  12583. name: "Back",
  12584. image: {
  12585. source: "./media/characters/sekvra/back.svg",
  12586. extra: 1,
  12587. bottom: 0.005
  12588. }
  12589. },
  12590. },
  12591. [
  12592. {
  12593. name: "Macro",
  12594. height: math.unit(1450, "feet"),
  12595. default: true
  12596. },
  12597. {
  12598. name: "Megamacro",
  12599. height: math.unit(15000, "feet")
  12600. },
  12601. ]
  12602. ))
  12603. characterMakers.push(() => makeCharacter(
  12604. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12605. {
  12606. front: {
  12607. height: math.unit(6, "feet"),
  12608. weight: math.unit(150, "lb"),
  12609. name: "Front",
  12610. image: {
  12611. source: "./media/characters/carmine/front.svg",
  12612. extra: 1,
  12613. bottom: 0.035
  12614. }
  12615. },
  12616. frontArmor: {
  12617. height: math.unit(6, "feet"),
  12618. weight: math.unit(150, "lb"),
  12619. name: "Front (Armor)",
  12620. image: {
  12621. source: "./media/characters/carmine/front-armor.svg",
  12622. extra: 1,
  12623. bottom: 0.035
  12624. }
  12625. },
  12626. },
  12627. [
  12628. {
  12629. name: "Large",
  12630. height: math.unit(1, "mile")
  12631. },
  12632. {
  12633. name: "Huge",
  12634. height: math.unit(40, "miles"),
  12635. default: true
  12636. },
  12637. {
  12638. name: "Colossal",
  12639. height: math.unit(2500, "miles")
  12640. },
  12641. ]
  12642. ))
  12643. characterMakers.push(() => makeCharacter(
  12644. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12645. {
  12646. front: {
  12647. height: math.unit(6, "feet"),
  12648. weight: math.unit(150, "lb"),
  12649. name: "Front",
  12650. image: {
  12651. source: "./media/characters/elyssia/front.svg",
  12652. extra: 2201 / 2035,
  12653. bottom: 0.05
  12654. }
  12655. },
  12656. frontClothed: {
  12657. height: math.unit(6, "feet"),
  12658. weight: math.unit(150, "lb"),
  12659. name: "Front (Clothed)",
  12660. image: {
  12661. source: "./media/characters/elyssia/front-clothed.svg",
  12662. extra: 2201 / 2035,
  12663. bottom: 0.05
  12664. }
  12665. },
  12666. back: {
  12667. height: math.unit(6, "feet"),
  12668. weight: math.unit(150, "lb"),
  12669. name: "Back",
  12670. image: {
  12671. source: "./media/characters/elyssia/back.svg",
  12672. extra: 2201 / 2035,
  12673. bottom: 0.013
  12674. }
  12675. },
  12676. },
  12677. [
  12678. {
  12679. name: "Smaller",
  12680. height: math.unit(150, "feet")
  12681. },
  12682. {
  12683. name: "Standard",
  12684. height: math.unit(1400, "feet"),
  12685. default: true
  12686. },
  12687. {
  12688. name: "Distracted",
  12689. height: math.unit(15000, "feet")
  12690. },
  12691. ]
  12692. ))
  12693. characterMakers.push(() => makeCharacter(
  12694. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12695. {
  12696. front: {
  12697. height: math.unit(7 + 4 / 12, "feet"),
  12698. weight: math.unit(500, "lb"),
  12699. name: "Front",
  12700. image: {
  12701. source: "./media/characters/geno-maxwell/front.svg",
  12702. extra: 2207 / 2040,
  12703. bottom: 0.015
  12704. }
  12705. },
  12706. },
  12707. [
  12708. {
  12709. name: "Micro",
  12710. height: math.unit(3, "inches")
  12711. },
  12712. {
  12713. name: "Normal",
  12714. height: math.unit(7 + 4 / 12, "feet"),
  12715. default: true
  12716. },
  12717. {
  12718. name: "Macro",
  12719. height: math.unit(220, "feet")
  12720. },
  12721. {
  12722. name: "Megamacro",
  12723. height: math.unit(11, "miles")
  12724. },
  12725. ]
  12726. ))
  12727. characterMakers.push(() => makeCharacter(
  12728. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12729. {
  12730. front: {
  12731. height: math.unit(7 + 4 / 12, "feet"),
  12732. weight: math.unit(500, "lb"),
  12733. name: "Front",
  12734. image: {
  12735. source: "./media/characters/regena-maxwell/front.svg",
  12736. extra: 3115 / 2770,
  12737. bottom: 0.02
  12738. }
  12739. },
  12740. },
  12741. [
  12742. {
  12743. name: "Normal",
  12744. height: math.unit(7 + 4 / 12, "feet"),
  12745. default: true
  12746. },
  12747. {
  12748. name: "Macro",
  12749. height: math.unit(220, "feet")
  12750. },
  12751. {
  12752. name: "Megamacro",
  12753. height: math.unit(11, "miles")
  12754. },
  12755. ]
  12756. ))
  12757. characterMakers.push(() => makeCharacter(
  12758. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12759. {
  12760. front: {
  12761. height: math.unit(6, "feet"),
  12762. weight: math.unit(150, "lb"),
  12763. name: "Front",
  12764. image: {
  12765. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12766. extra: 860 / 690,
  12767. bottom: 0.03
  12768. }
  12769. },
  12770. },
  12771. [
  12772. {
  12773. name: "Normal",
  12774. height: math.unit(1.7, "meters"),
  12775. default: true
  12776. },
  12777. ]
  12778. ))
  12779. characterMakers.push(() => makeCharacter(
  12780. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12781. {
  12782. front: {
  12783. height: math.unit(6, "feet"),
  12784. weight: math.unit(150, "lb"),
  12785. name: "Front",
  12786. image: {
  12787. source: "./media/characters/quilly/front.svg",
  12788. extra: 890 / 776
  12789. }
  12790. },
  12791. },
  12792. [
  12793. {
  12794. name: "Gigamacro",
  12795. height: math.unit(404090, "miles"),
  12796. default: true
  12797. },
  12798. ]
  12799. ))
  12800. characterMakers.push(() => makeCharacter(
  12801. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12802. {
  12803. front: {
  12804. height: math.unit(7 + 8 / 12, "feet"),
  12805. weight: math.unit(350, "lb"),
  12806. name: "Front",
  12807. image: {
  12808. source: "./media/characters/tempest/front.svg",
  12809. extra: 1175 / 1086,
  12810. bottom: 0.02
  12811. }
  12812. },
  12813. },
  12814. [
  12815. {
  12816. name: "Normal",
  12817. height: math.unit(7 + 8 / 12, "feet"),
  12818. default: true
  12819. },
  12820. ]
  12821. ))
  12822. characterMakers.push(() => makeCharacter(
  12823. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12824. {
  12825. side: {
  12826. height: math.unit(4 + 5 / 12, "feet"),
  12827. weight: math.unit(80, "lb"),
  12828. name: "Side",
  12829. image: {
  12830. source: "./media/characters/rodger/side.svg",
  12831. extra: 1235 / 1118
  12832. }
  12833. },
  12834. },
  12835. [
  12836. {
  12837. name: "Micro",
  12838. height: math.unit(1, "inch")
  12839. },
  12840. {
  12841. name: "Normal",
  12842. height: math.unit(4 + 5 / 12, "feet"),
  12843. default: true
  12844. },
  12845. {
  12846. name: "Macro",
  12847. height: math.unit(120, "feet")
  12848. },
  12849. ]
  12850. ))
  12851. characterMakers.push(() => makeCharacter(
  12852. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12853. {
  12854. front: {
  12855. height: math.unit(6, "feet"),
  12856. weight: math.unit(150, "lb"),
  12857. name: "Front",
  12858. image: {
  12859. source: "./media/characters/danyel/front.svg",
  12860. extra: 1185 / 1123,
  12861. bottom: 0.05
  12862. }
  12863. },
  12864. },
  12865. [
  12866. {
  12867. name: "Shrunken",
  12868. height: math.unit(0.5, "mm")
  12869. },
  12870. {
  12871. name: "Micro",
  12872. height: math.unit(1, "mm"),
  12873. default: true
  12874. },
  12875. {
  12876. name: "Upsized",
  12877. height: math.unit(5 + 5 / 12, "feet")
  12878. },
  12879. ]
  12880. ))
  12881. characterMakers.push(() => makeCharacter(
  12882. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12883. {
  12884. front: {
  12885. height: math.unit(5 + 6 / 12, "feet"),
  12886. weight: math.unit(200, "lb"),
  12887. name: "Front",
  12888. image: {
  12889. source: "./media/characters/vivian-bijoux/front.svg",
  12890. extra: 1,
  12891. bottom: 0.072
  12892. }
  12893. },
  12894. },
  12895. [
  12896. {
  12897. name: "Normal",
  12898. height: math.unit(5 + 6 / 12, "feet"),
  12899. default: true
  12900. },
  12901. {
  12902. name: "Bad Dream",
  12903. height: math.unit(500, "feet")
  12904. },
  12905. {
  12906. name: "Nightmare",
  12907. height: math.unit(500, "miles")
  12908. },
  12909. ]
  12910. ))
  12911. characterMakers.push(() => makeCharacter(
  12912. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12913. {
  12914. front: {
  12915. height: math.unit(6 + 1 / 12, "feet"),
  12916. weight: math.unit(260, "lb"),
  12917. name: "Front",
  12918. image: {
  12919. source: "./media/characters/zeta/front.svg",
  12920. extra: 1968 / 1889,
  12921. bottom: 0.06
  12922. }
  12923. },
  12924. back: {
  12925. height: math.unit(6 + 1 / 12, "feet"),
  12926. weight: math.unit(260, "lb"),
  12927. name: "Back",
  12928. image: {
  12929. source: "./media/characters/zeta/back.svg",
  12930. extra: 1944 / 1858,
  12931. bottom: 0.03
  12932. }
  12933. },
  12934. hand: {
  12935. height: math.unit(1.112, "feet"),
  12936. name: "Hand",
  12937. image: {
  12938. source: "./media/characters/zeta/hand.svg"
  12939. }
  12940. },
  12941. foot: {
  12942. height: math.unit(1.48, "feet"),
  12943. name: "Foot",
  12944. image: {
  12945. source: "./media/characters/zeta/foot.svg"
  12946. }
  12947. },
  12948. },
  12949. [
  12950. {
  12951. name: "Micro",
  12952. height: math.unit(6, "inches")
  12953. },
  12954. {
  12955. name: "Normal",
  12956. height: math.unit(6 + 1 / 12, "feet"),
  12957. default: true
  12958. },
  12959. {
  12960. name: "Macro",
  12961. height: math.unit(20, "feet")
  12962. },
  12963. ]
  12964. ))
  12965. characterMakers.push(() => makeCharacter(
  12966. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12967. {
  12968. front: {
  12969. height: math.unit(6, "feet"),
  12970. weight: math.unit(150, "lb"),
  12971. name: "Front",
  12972. image: {
  12973. source: "./media/characters/jamie-larsen/front.svg",
  12974. extra: 962 / 933,
  12975. bottom: 0.02
  12976. }
  12977. },
  12978. back: {
  12979. height: math.unit(6, "feet"),
  12980. weight: math.unit(150, "lb"),
  12981. name: "Back",
  12982. image: {
  12983. source: "./media/characters/jamie-larsen/back.svg",
  12984. extra: 997 / 946
  12985. }
  12986. },
  12987. },
  12988. [
  12989. {
  12990. name: "Macro",
  12991. height: math.unit(28 + 7 / 12, "feet"),
  12992. default: true
  12993. },
  12994. {
  12995. name: "Macro+",
  12996. height: math.unit(180, "feet")
  12997. },
  12998. {
  12999. name: "Megamacro",
  13000. height: math.unit(10, "miles")
  13001. },
  13002. {
  13003. name: "Gigamacro",
  13004. height: math.unit(200000, "miles")
  13005. },
  13006. ]
  13007. ))
  13008. characterMakers.push(() => makeCharacter(
  13009. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13010. {
  13011. front: {
  13012. height: math.unit(6, "feet"),
  13013. weight: math.unit(120, "lb"),
  13014. name: "Front",
  13015. image: {
  13016. source: "./media/characters/vance/front.svg",
  13017. extra: 1980 / 1890,
  13018. bottom: 0.09
  13019. }
  13020. },
  13021. back: {
  13022. height: math.unit(6, "feet"),
  13023. weight: math.unit(120, "lb"),
  13024. name: "Back",
  13025. image: {
  13026. source: "./media/characters/vance/back.svg",
  13027. extra: 2081 / 1994,
  13028. bottom: 0.014
  13029. }
  13030. },
  13031. hand: {
  13032. height: math.unit(0.88, "feet"),
  13033. name: "Hand",
  13034. image: {
  13035. source: "./media/characters/vance/hand.svg"
  13036. }
  13037. },
  13038. foot: {
  13039. height: math.unit(0.64, "feet"),
  13040. name: "Foot",
  13041. image: {
  13042. source: "./media/characters/vance/foot.svg"
  13043. }
  13044. },
  13045. },
  13046. [
  13047. {
  13048. name: "Small",
  13049. height: math.unit(90, "feet"),
  13050. default: true
  13051. },
  13052. {
  13053. name: "Macro",
  13054. height: math.unit(100, "meters")
  13055. },
  13056. {
  13057. name: "Megamacro",
  13058. height: math.unit(15, "miles")
  13059. },
  13060. ]
  13061. ))
  13062. characterMakers.push(() => makeCharacter(
  13063. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13064. {
  13065. front: {
  13066. height: math.unit(6, "feet"),
  13067. weight: math.unit(180, "lb"),
  13068. name: "Front",
  13069. image: {
  13070. source: "./media/characters/xochitl/front.svg",
  13071. extra: 2297 / 2261,
  13072. bottom: 0.065
  13073. }
  13074. },
  13075. back: {
  13076. height: math.unit(6, "feet"),
  13077. weight: math.unit(180, "lb"),
  13078. name: "Back",
  13079. image: {
  13080. source: "./media/characters/xochitl/back.svg",
  13081. extra: 2386 / 2354,
  13082. bottom: 0.01
  13083. }
  13084. },
  13085. foot: {
  13086. height: math.unit(6 / 5 * 1.15, "feet"),
  13087. weight: math.unit(150, "lb"),
  13088. name: "Foot",
  13089. image: {
  13090. source: "./media/characters/xochitl/foot.svg"
  13091. }
  13092. },
  13093. },
  13094. [
  13095. {
  13096. name: "Macro",
  13097. height: math.unit(80, "feet")
  13098. },
  13099. {
  13100. name: "Macro+",
  13101. height: math.unit(400, "feet"),
  13102. default: true
  13103. },
  13104. {
  13105. name: "Gigamacro",
  13106. height: math.unit(80000, "miles")
  13107. },
  13108. {
  13109. name: "Gigamacro+",
  13110. height: math.unit(400000, "miles")
  13111. },
  13112. {
  13113. name: "Teramacro",
  13114. height: math.unit(300, "AU")
  13115. },
  13116. ]
  13117. ))
  13118. characterMakers.push(() => makeCharacter(
  13119. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13120. {
  13121. front: {
  13122. height: math.unit(6, "feet"),
  13123. weight: math.unit(150, "lb"),
  13124. name: "Front",
  13125. image: {
  13126. source: "./media/characters/vincent/front.svg",
  13127. extra: 1130 / 1080,
  13128. bottom: 0.055
  13129. }
  13130. },
  13131. beak: {
  13132. height: math.unit(6 * 0.1, "feet"),
  13133. name: "Beak",
  13134. image: {
  13135. source: "./media/characters/vincent/beak.svg"
  13136. }
  13137. },
  13138. hand: {
  13139. height: math.unit(6 * 0.85, "feet"),
  13140. weight: math.unit(150, "lb"),
  13141. name: "Hand",
  13142. image: {
  13143. source: "./media/characters/vincent/hand.svg"
  13144. }
  13145. },
  13146. foot: {
  13147. height: math.unit(6 * 0.19, "feet"),
  13148. weight: math.unit(150, "lb"),
  13149. name: "Foot",
  13150. image: {
  13151. source: "./media/characters/vincent/foot.svg"
  13152. }
  13153. },
  13154. },
  13155. [
  13156. {
  13157. name: "Base",
  13158. height: math.unit(6 + 5 / 12, "feet"),
  13159. default: true
  13160. },
  13161. {
  13162. name: "Macro",
  13163. height: math.unit(300, "feet")
  13164. },
  13165. {
  13166. name: "Megamacro",
  13167. height: math.unit(2, "miles")
  13168. },
  13169. {
  13170. name: "Gigamacro",
  13171. height: math.unit(1000, "miles")
  13172. },
  13173. ]
  13174. ))
  13175. characterMakers.push(() => makeCharacter(
  13176. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  13177. {
  13178. front: {
  13179. height: math.unit(6 + 2 / 12, "feet"),
  13180. weight: math.unit(265, "lb"),
  13181. name: "Front",
  13182. image: {
  13183. source: "./media/characters/jay/front.svg",
  13184. extra: 1510 / 1430,
  13185. bottom: 0.042
  13186. }
  13187. },
  13188. back: {
  13189. height: math.unit(6 + 2 / 12, "feet"),
  13190. weight: math.unit(265, "lb"),
  13191. name: "Back",
  13192. image: {
  13193. source: "./media/characters/jay/back.svg",
  13194. extra: 1510 / 1430,
  13195. bottom: 0.025
  13196. }
  13197. },
  13198. clothed: {
  13199. height: math.unit(6 + 2 / 12, "feet"),
  13200. weight: math.unit(265, "lb"),
  13201. name: "Front (Clothed)",
  13202. image: {
  13203. source: "./media/characters/jay/clothed.svg",
  13204. extra: 744 / 699,
  13205. bottom: 0.043
  13206. }
  13207. },
  13208. head: {
  13209. height: math.unit(1.772, "feet"),
  13210. name: "Head",
  13211. image: {
  13212. source: "./media/characters/jay/head.svg"
  13213. }
  13214. },
  13215. sizeRay: {
  13216. height: math.unit(1.331, "feet"),
  13217. name: "Size Ray",
  13218. image: {
  13219. source: "./media/characters/jay/size-ray.svg"
  13220. }
  13221. },
  13222. },
  13223. [
  13224. {
  13225. name: "Micro",
  13226. height: math.unit(1, "inch")
  13227. },
  13228. {
  13229. name: "Normal",
  13230. height: math.unit(6 + 2 / 12, "feet"),
  13231. default: true
  13232. },
  13233. {
  13234. name: "Macro",
  13235. height: math.unit(1, "mile")
  13236. },
  13237. {
  13238. name: "Megamacro",
  13239. height: math.unit(100, "miles")
  13240. },
  13241. ]
  13242. ))
  13243. characterMakers.push(() => makeCharacter(
  13244. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13245. {
  13246. front: {
  13247. height: math.unit(2, "meters"),
  13248. weight: math.unit(500, "kg"),
  13249. name: "Front",
  13250. image: {
  13251. source: "./media/characters/coatl/front.svg",
  13252. extra: 3948 / 3500,
  13253. bottom: 0.082
  13254. }
  13255. },
  13256. },
  13257. [
  13258. {
  13259. name: "Normal",
  13260. height: math.unit(4, "meters")
  13261. },
  13262. {
  13263. name: "Macro",
  13264. height: math.unit(100, "meters"),
  13265. default: true
  13266. },
  13267. {
  13268. name: "Macro+",
  13269. height: math.unit(300, "meters")
  13270. },
  13271. {
  13272. name: "Megamacro",
  13273. height: math.unit(3, "gigameters")
  13274. },
  13275. {
  13276. name: "Megamacro+",
  13277. height: math.unit(300, "terameters")
  13278. },
  13279. {
  13280. name: "Megamacro++",
  13281. height: math.unit(3, "lightyears")
  13282. },
  13283. ]
  13284. ))
  13285. characterMakers.push(() => makeCharacter(
  13286. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13287. {
  13288. front: {
  13289. height: math.unit(6, "feet"),
  13290. weight: math.unit(50, "kg"),
  13291. name: "front",
  13292. image: {
  13293. source: "./media/characters/shiroryu/front.svg",
  13294. extra: 1990 / 1935
  13295. }
  13296. },
  13297. },
  13298. [
  13299. {
  13300. name: "Mortal Mingling",
  13301. height: math.unit(3, "meters")
  13302. },
  13303. {
  13304. name: "Kaiju-ish",
  13305. height: math.unit(250, "meters")
  13306. },
  13307. {
  13308. name: "Somewhat Godly",
  13309. height: math.unit(400, "km"),
  13310. default: true
  13311. },
  13312. {
  13313. name: "Planetary",
  13314. height: math.unit(300, "megameters")
  13315. },
  13316. {
  13317. name: "Galaxy-dwarfing",
  13318. height: math.unit(450, "kiloparsecs")
  13319. },
  13320. {
  13321. name: "Universe Eater",
  13322. height: math.unit(150, "gigaparsecs")
  13323. },
  13324. {
  13325. name: "Almost Immeasurable",
  13326. height: math.unit(1.3e266, "yottaparsecs")
  13327. },
  13328. ]
  13329. ))
  13330. characterMakers.push(() => makeCharacter(
  13331. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13332. {
  13333. front: {
  13334. height: math.unit(6, "feet"),
  13335. weight: math.unit(150, "lb"),
  13336. name: "Front",
  13337. image: {
  13338. source: "./media/characters/umeko/front.svg",
  13339. extra: 1,
  13340. bottom: 0.019
  13341. }
  13342. },
  13343. frontArmored: {
  13344. height: math.unit(6, "feet"),
  13345. weight: math.unit(150, "lb"),
  13346. name: "Front (Armored)",
  13347. image: {
  13348. source: "./media/characters/umeko/front-armored.svg",
  13349. extra: 1,
  13350. bottom: 0.021
  13351. }
  13352. },
  13353. },
  13354. [
  13355. {
  13356. name: "Macro",
  13357. height: math.unit(220, "feet"),
  13358. default: true
  13359. },
  13360. {
  13361. name: "Guardian Dragon",
  13362. height: math.unit(50, "miles")
  13363. },
  13364. {
  13365. name: "Cosmic",
  13366. height: math.unit(800000, "miles")
  13367. },
  13368. ]
  13369. ))
  13370. characterMakers.push(() => makeCharacter(
  13371. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13372. {
  13373. front: {
  13374. height: math.unit(6, "feet"),
  13375. weight: math.unit(150, "lb"),
  13376. name: "Front",
  13377. image: {
  13378. source: "./media/characters/cassidy/front.svg",
  13379. extra: 1,
  13380. bottom: 0.043
  13381. }
  13382. },
  13383. },
  13384. [
  13385. {
  13386. name: "Canon Height",
  13387. height: math.unit(120, "feet"),
  13388. default: true
  13389. },
  13390. {
  13391. name: "Macro+",
  13392. height: math.unit(400, "feet")
  13393. },
  13394. {
  13395. name: "Macro++",
  13396. height: math.unit(4000, "feet")
  13397. },
  13398. {
  13399. name: "Megamacro",
  13400. height: math.unit(3, "miles")
  13401. },
  13402. ]
  13403. ))
  13404. characterMakers.push(() => makeCharacter(
  13405. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13406. {
  13407. front: {
  13408. height: math.unit(6, "feet"),
  13409. weight: math.unit(150, "lb"),
  13410. name: "Front",
  13411. image: {
  13412. source: "./media/characters/isaac/front.svg",
  13413. extra: 896 / 815,
  13414. bottom: 0.11
  13415. }
  13416. },
  13417. },
  13418. [
  13419. {
  13420. name: "Human Size",
  13421. height: math.unit(8, "feet"),
  13422. default: true
  13423. },
  13424. {
  13425. name: "Macro",
  13426. height: math.unit(400, "feet")
  13427. },
  13428. {
  13429. name: "Megamacro",
  13430. height: math.unit(50, "miles")
  13431. },
  13432. {
  13433. name: "Canon Height",
  13434. height: math.unit(200, "AU")
  13435. },
  13436. ]
  13437. ))
  13438. characterMakers.push(() => makeCharacter(
  13439. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13440. {
  13441. front: {
  13442. height: math.unit(6, "feet"),
  13443. weight: math.unit(72, "kg"),
  13444. name: "Front",
  13445. image: {
  13446. source: "./media/characters/sleekit/front.svg",
  13447. extra: 4693 / 4487,
  13448. bottom: 0.012
  13449. }
  13450. },
  13451. },
  13452. [
  13453. {
  13454. name: "Minimum Height",
  13455. height: math.unit(10, "meters")
  13456. },
  13457. {
  13458. name: "Smaller",
  13459. height: math.unit(25, "meters")
  13460. },
  13461. {
  13462. name: "Larger",
  13463. height: math.unit(38, "meters"),
  13464. default: true
  13465. },
  13466. {
  13467. name: "Maximum height",
  13468. height: math.unit(100, "meters")
  13469. },
  13470. ]
  13471. ))
  13472. characterMakers.push(() => makeCharacter(
  13473. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13474. {
  13475. front: {
  13476. height: math.unit(6, "feet"),
  13477. weight: math.unit(150, "lb"),
  13478. name: "Front",
  13479. image: {
  13480. source: "./media/characters/nillia/front.svg",
  13481. extra: 2195 / 2037,
  13482. bottom: 0.005
  13483. }
  13484. },
  13485. back: {
  13486. height: math.unit(6, "feet"),
  13487. weight: math.unit(150, "lb"),
  13488. name: "Back",
  13489. image: {
  13490. source: "./media/characters/nillia/back.svg",
  13491. extra: 2195 / 2037,
  13492. bottom: 0.005
  13493. }
  13494. },
  13495. },
  13496. [
  13497. {
  13498. name: "Canon Height",
  13499. height: math.unit(489, "feet"),
  13500. default: true
  13501. }
  13502. ]
  13503. ))
  13504. characterMakers.push(() => makeCharacter(
  13505. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13506. {
  13507. front: {
  13508. height: math.unit(6, "feet"),
  13509. weight: math.unit(150, "lb"),
  13510. name: "Front",
  13511. image: {
  13512. source: "./media/characters/mesmyriza/front.svg",
  13513. extra: 2067 / 1784,
  13514. bottom: 0.035
  13515. }
  13516. },
  13517. foot: {
  13518. height: math.unit(6 / (250 / 35), "feet"),
  13519. name: "Foot",
  13520. image: {
  13521. source: "./media/characters/mesmyriza/foot.svg"
  13522. }
  13523. },
  13524. },
  13525. [
  13526. {
  13527. name: "Macro",
  13528. height: math.unit(457, "meters"),
  13529. default: true
  13530. },
  13531. {
  13532. name: "Megamacro",
  13533. height: math.unit(8, "megameters")
  13534. },
  13535. ]
  13536. ))
  13537. characterMakers.push(() => makeCharacter(
  13538. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13539. {
  13540. front: {
  13541. height: math.unit(6, "feet"),
  13542. weight: math.unit(250, "lb"),
  13543. name: "Front",
  13544. image: {
  13545. source: "./media/characters/saudade/front.svg",
  13546. extra: 1172 / 1139,
  13547. bottom: 0.035
  13548. }
  13549. },
  13550. },
  13551. [
  13552. {
  13553. name: "Micro",
  13554. height: math.unit(3, "inches")
  13555. },
  13556. {
  13557. name: "Normal",
  13558. height: math.unit(6, "feet"),
  13559. default: true
  13560. },
  13561. {
  13562. name: "Macro",
  13563. height: math.unit(50, "feet")
  13564. },
  13565. {
  13566. name: "Megamacro",
  13567. height: math.unit(2800, "feet")
  13568. },
  13569. ]
  13570. ))
  13571. characterMakers.push(() => makeCharacter(
  13572. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13573. {
  13574. front: {
  13575. height: math.unit(5 + 4 / 12, "feet"),
  13576. weight: math.unit(100, "lb"),
  13577. name: "Front",
  13578. image: {
  13579. source: "./media/characters/keireer/front.svg",
  13580. extra: 716 / 666,
  13581. bottom: 0.05
  13582. }
  13583. },
  13584. },
  13585. [
  13586. {
  13587. name: "Normal",
  13588. height: math.unit(5 + 4 / 12, "feet"),
  13589. default: true
  13590. },
  13591. ]
  13592. ))
  13593. characterMakers.push(() => makeCharacter(
  13594. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13595. {
  13596. front: {
  13597. height: math.unit(6, "feet"),
  13598. weight: math.unit(90, "kg"),
  13599. name: "Front",
  13600. image: {
  13601. source: "./media/characters/mirja/front.svg",
  13602. extra: 1789 / 1683,
  13603. bottom: 0.05
  13604. }
  13605. },
  13606. frontDressed: {
  13607. height: math.unit(6, "feet"),
  13608. weight: math.unit(90, "lb"),
  13609. name: "Front (Dressed)",
  13610. image: {
  13611. source: "./media/characters/mirja/front-dressed.svg",
  13612. extra: 1789 / 1683,
  13613. bottom: 0.05
  13614. }
  13615. },
  13616. back: {
  13617. height: math.unit(6, "feet"),
  13618. weight: math.unit(90, "lb"),
  13619. name: "Back",
  13620. image: {
  13621. source: "./media/characters/mirja/back.svg",
  13622. extra: 953 / 917,
  13623. bottom: 0.017
  13624. }
  13625. },
  13626. },
  13627. [
  13628. {
  13629. name: "\"Incognito\"",
  13630. height: math.unit(3, "meters")
  13631. },
  13632. {
  13633. name: "Strolling Size",
  13634. height: math.unit(15, "km")
  13635. },
  13636. {
  13637. name: "Larger Strolling Size",
  13638. height: math.unit(400, "km")
  13639. },
  13640. {
  13641. name: "Preferred Size",
  13642. height: math.unit(5000, "km")
  13643. },
  13644. {
  13645. name: "True Size",
  13646. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13647. default: true
  13648. },
  13649. ]
  13650. ))
  13651. characterMakers.push(() => makeCharacter(
  13652. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13653. {
  13654. front: {
  13655. height: math.unit(15, "feet"),
  13656. weight: math.unit(880, "kg"),
  13657. name: "Front",
  13658. image: {
  13659. source: "./media/characters/nightraver/front.svg",
  13660. extra: 2444 / 2160,
  13661. bottom: 0.027
  13662. }
  13663. },
  13664. back: {
  13665. height: math.unit(15, "feet"),
  13666. weight: math.unit(880, "kg"),
  13667. name: "Back",
  13668. image: {
  13669. source: "./media/characters/nightraver/back.svg",
  13670. extra: 2309 / 2180,
  13671. bottom: 0.005
  13672. }
  13673. },
  13674. sole: {
  13675. height: math.unit(2.878, "feet"),
  13676. name: "Sole",
  13677. image: {
  13678. source: "./media/characters/nightraver/sole.svg"
  13679. }
  13680. },
  13681. foot: {
  13682. height: math.unit(2.285, "feet"),
  13683. name: "Foot",
  13684. image: {
  13685. source: "./media/characters/nightraver/foot.svg"
  13686. }
  13687. },
  13688. maw: {
  13689. height: math.unit(2.67, "feet"),
  13690. name: "Maw",
  13691. image: {
  13692. source: "./media/characters/nightraver/maw.svg"
  13693. }
  13694. },
  13695. },
  13696. [
  13697. {
  13698. name: "Micro",
  13699. height: math.unit(1, "cm")
  13700. },
  13701. {
  13702. name: "Normal",
  13703. height: math.unit(15, "feet"),
  13704. default: true
  13705. },
  13706. {
  13707. name: "Macro",
  13708. height: math.unit(300, "feet")
  13709. },
  13710. {
  13711. name: "Megamacro",
  13712. height: math.unit(300, "miles")
  13713. },
  13714. {
  13715. name: "Gigamacro",
  13716. height: math.unit(10000, "miles")
  13717. },
  13718. ]
  13719. ))
  13720. characterMakers.push(() => makeCharacter(
  13721. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13722. {
  13723. side: {
  13724. height: math.unit(2, "inches"),
  13725. weight: math.unit(5, "grams"),
  13726. name: "Side",
  13727. image: {
  13728. source: "./media/characters/arc/side.svg"
  13729. }
  13730. },
  13731. },
  13732. [
  13733. {
  13734. name: "Micro",
  13735. height: math.unit(2, "inches"),
  13736. default: true
  13737. },
  13738. ]
  13739. ))
  13740. characterMakers.push(() => makeCharacter(
  13741. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13742. {
  13743. front: {
  13744. height: math.unit(1.1938, "meters"),
  13745. weight: math.unit(54, "kg"),
  13746. name: "Front",
  13747. image: {
  13748. source: "./media/characters/nebula-shahar/front.svg",
  13749. extra: 1642 / 1436,
  13750. bottom: 0.06
  13751. }
  13752. },
  13753. },
  13754. [
  13755. {
  13756. name: "Megamicro",
  13757. height: math.unit(0.3, "mm")
  13758. },
  13759. {
  13760. name: "Micro",
  13761. height: math.unit(3, "cm")
  13762. },
  13763. {
  13764. name: "Normal",
  13765. height: math.unit(138, "cm"),
  13766. default: true
  13767. },
  13768. {
  13769. name: "Macro",
  13770. height: math.unit(30, "m")
  13771. },
  13772. ]
  13773. ))
  13774. characterMakers.push(() => makeCharacter(
  13775. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13776. {
  13777. front: {
  13778. height: math.unit(5.24, "feet"),
  13779. weight: math.unit(150, "lb"),
  13780. name: "Front",
  13781. image: {
  13782. source: "./media/characters/shayla/front.svg",
  13783. extra: 1512 / 1414,
  13784. bottom: 0.01
  13785. }
  13786. },
  13787. back: {
  13788. height: math.unit(5.24, "feet"),
  13789. weight: math.unit(150, "lb"),
  13790. name: "Back",
  13791. image: {
  13792. source: "./media/characters/shayla/back.svg",
  13793. extra: 1512 / 1414
  13794. }
  13795. },
  13796. hand: {
  13797. height: math.unit(0.7781496062992126, "feet"),
  13798. name: "Hand",
  13799. image: {
  13800. source: "./media/characters/shayla/hand.svg"
  13801. }
  13802. },
  13803. foot: {
  13804. height: math.unit(1.4206036745406823, "feet"),
  13805. name: "Foot",
  13806. image: {
  13807. source: "./media/characters/shayla/foot.svg"
  13808. }
  13809. },
  13810. },
  13811. [
  13812. {
  13813. name: "Micro",
  13814. height: math.unit(0.32, "feet")
  13815. },
  13816. {
  13817. name: "Normal",
  13818. height: math.unit(5.24, "feet"),
  13819. default: true
  13820. },
  13821. {
  13822. name: "Macro",
  13823. height: math.unit(492.12, "feet")
  13824. },
  13825. {
  13826. name: "Megamacro",
  13827. height: math.unit(186.41, "miles")
  13828. },
  13829. ]
  13830. ))
  13831. characterMakers.push(() => makeCharacter(
  13832. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13833. {
  13834. front: {
  13835. height: math.unit(2.2, "m"),
  13836. weight: math.unit(120, "kg"),
  13837. name: "Front",
  13838. image: {
  13839. source: "./media/characters/pia-jr/front.svg",
  13840. extra: 1000 / 970,
  13841. bottom: 0.035
  13842. }
  13843. },
  13844. hand: {
  13845. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13846. name: "Hand",
  13847. image: {
  13848. source: "./media/characters/pia-jr/hand.svg"
  13849. }
  13850. },
  13851. paw: {
  13852. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13853. name: "Paw",
  13854. image: {
  13855. source: "./media/characters/pia-jr/paw.svg"
  13856. }
  13857. },
  13858. },
  13859. [
  13860. {
  13861. name: "Micro",
  13862. height: math.unit(1.2, "cm")
  13863. },
  13864. {
  13865. name: "Normal",
  13866. height: math.unit(2.2, "m"),
  13867. default: true
  13868. },
  13869. {
  13870. name: "Macro",
  13871. height: math.unit(180, "m")
  13872. },
  13873. {
  13874. name: "Megamacro",
  13875. height: math.unit(420, "km")
  13876. },
  13877. ]
  13878. ))
  13879. characterMakers.push(() => makeCharacter(
  13880. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13881. {
  13882. front: {
  13883. height: math.unit(2, "m"),
  13884. weight: math.unit(115, "kg"),
  13885. name: "Front",
  13886. image: {
  13887. source: "./media/characters/pia-sr/front.svg",
  13888. extra: 760 / 730,
  13889. bottom: 0.015
  13890. }
  13891. },
  13892. back: {
  13893. height: math.unit(2, "m"),
  13894. weight: math.unit(115, "kg"),
  13895. name: "Back",
  13896. image: {
  13897. source: "./media/characters/pia-sr/back.svg",
  13898. extra: 760 / 730,
  13899. bottom: 0.01
  13900. }
  13901. },
  13902. hand: {
  13903. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13904. name: "Hand",
  13905. image: {
  13906. source: "./media/characters/pia-sr/hand.svg"
  13907. }
  13908. },
  13909. foot: {
  13910. height: math.unit(1.83, "feet"),
  13911. name: "Foot",
  13912. image: {
  13913. source: "./media/characters/pia-sr/foot.svg"
  13914. }
  13915. },
  13916. },
  13917. [
  13918. {
  13919. name: "Micro",
  13920. height: math.unit(88, "mm")
  13921. },
  13922. {
  13923. name: "Normal",
  13924. height: math.unit(2, "m"),
  13925. default: true
  13926. },
  13927. {
  13928. name: "Macro",
  13929. height: math.unit(200, "m")
  13930. },
  13931. {
  13932. name: "Megamacro",
  13933. height: math.unit(420, "km")
  13934. },
  13935. ]
  13936. ))
  13937. characterMakers.push(() => makeCharacter(
  13938. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13939. {
  13940. front: {
  13941. height: math.unit(8 + 2 / 12, "feet"),
  13942. weight: math.unit(300, "lb"),
  13943. name: "Front",
  13944. image: {
  13945. source: "./media/characters/kibibyte/front.svg",
  13946. extra: 2221 / 2098,
  13947. bottom: 0.04
  13948. }
  13949. },
  13950. },
  13951. [
  13952. {
  13953. name: "Normal",
  13954. height: math.unit(8 + 2 / 12, "feet"),
  13955. default: true
  13956. },
  13957. {
  13958. name: "Socialable Macro",
  13959. height: math.unit(50, "feet")
  13960. },
  13961. {
  13962. name: "Macro",
  13963. height: math.unit(300, "feet")
  13964. },
  13965. {
  13966. name: "Megamacro",
  13967. height: math.unit(500, "miles")
  13968. },
  13969. ]
  13970. ))
  13971. characterMakers.push(() => makeCharacter(
  13972. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13973. {
  13974. front: {
  13975. height: math.unit(6, "feet"),
  13976. weight: math.unit(150, "lb"),
  13977. name: "Front",
  13978. image: {
  13979. source: "./media/characters/felix/front.svg",
  13980. extra: 762 / 722,
  13981. bottom: 0.02
  13982. }
  13983. },
  13984. frontClothed: {
  13985. height: math.unit(6, "feet"),
  13986. weight: math.unit(150, "lb"),
  13987. name: "Front (Clothed)",
  13988. image: {
  13989. source: "./media/characters/felix/front-clothed.svg",
  13990. extra: 762 / 722,
  13991. bottom: 0.02
  13992. }
  13993. },
  13994. },
  13995. [
  13996. {
  13997. name: "Normal",
  13998. height: math.unit(6 + 8 / 12, "feet"),
  13999. default: true
  14000. },
  14001. {
  14002. name: "Macro",
  14003. height: math.unit(2600, "feet")
  14004. },
  14005. {
  14006. name: "Megamacro",
  14007. height: math.unit(450, "miles")
  14008. },
  14009. ]
  14010. ))
  14011. characterMakers.push(() => makeCharacter(
  14012. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14013. {
  14014. front: {
  14015. height: math.unit(6 + 1 / 12, "feet"),
  14016. weight: math.unit(250, "lb"),
  14017. name: "Front",
  14018. image: {
  14019. source: "./media/characters/tobo/front.svg",
  14020. extra: 608 / 586,
  14021. bottom: 0.023
  14022. }
  14023. },
  14024. back: {
  14025. height: math.unit(6 + 1 / 12, "feet"),
  14026. weight: math.unit(250, "lb"),
  14027. name: "Back",
  14028. image: {
  14029. source: "./media/characters/tobo/back.svg",
  14030. extra: 608 / 586
  14031. }
  14032. },
  14033. },
  14034. [
  14035. {
  14036. name: "Nano",
  14037. height: math.unit(2, "nm")
  14038. },
  14039. {
  14040. name: "Megamicro",
  14041. height: math.unit(0.1, "mm")
  14042. },
  14043. {
  14044. name: "Micro",
  14045. height: math.unit(1, "inch"),
  14046. default: true
  14047. },
  14048. {
  14049. name: "Human-sized",
  14050. height: math.unit(6 + 1 / 12, "feet")
  14051. },
  14052. {
  14053. name: "Macro",
  14054. height: math.unit(250, "feet")
  14055. },
  14056. {
  14057. name: "Megamacro",
  14058. height: math.unit(75, "miles")
  14059. },
  14060. {
  14061. name: "Texas-sized",
  14062. height: math.unit(750, "miles")
  14063. },
  14064. {
  14065. name: "Teramacro",
  14066. height: math.unit(50000, "miles")
  14067. },
  14068. ]
  14069. ))
  14070. characterMakers.push(() => makeCharacter(
  14071. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14072. {
  14073. front: {
  14074. height: math.unit(6, "feet"),
  14075. weight: math.unit(269, "lb"),
  14076. name: "Front",
  14077. image: {
  14078. source: "./media/characters/danny-kapowsky/front.svg",
  14079. extra: 766 / 736,
  14080. bottom: 0.044
  14081. }
  14082. },
  14083. back: {
  14084. height: math.unit(6, "feet"),
  14085. weight: math.unit(269, "lb"),
  14086. name: "Back",
  14087. image: {
  14088. source: "./media/characters/danny-kapowsky/back.svg",
  14089. extra: 797 / 760,
  14090. bottom: 0.025
  14091. }
  14092. },
  14093. },
  14094. [
  14095. {
  14096. name: "Macro",
  14097. height: math.unit(150, "feet"),
  14098. default: true
  14099. },
  14100. {
  14101. name: "Macro+",
  14102. height: math.unit(200, "feet")
  14103. },
  14104. {
  14105. name: "Macro++",
  14106. height: math.unit(300, "feet")
  14107. },
  14108. {
  14109. name: "Macro+++",
  14110. height: math.unit(400, "feet")
  14111. },
  14112. ]
  14113. ))
  14114. characterMakers.push(() => makeCharacter(
  14115. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14116. {
  14117. side: {
  14118. height: math.unit(6, "feet"),
  14119. weight: math.unit(170, "lb"),
  14120. name: "Side",
  14121. image: {
  14122. source: "./media/characters/finn/side.svg",
  14123. extra: 1953 / 1807,
  14124. bottom: 0.057
  14125. }
  14126. },
  14127. },
  14128. [
  14129. {
  14130. name: "Megamacro",
  14131. height: math.unit(14445, "feet"),
  14132. default: true
  14133. },
  14134. ]
  14135. ))
  14136. characterMakers.push(() => makeCharacter(
  14137. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14138. {
  14139. front: {
  14140. height: math.unit(5 + 6 / 12, "feet"),
  14141. weight: math.unit(125, "lb"),
  14142. name: "Front",
  14143. image: {
  14144. source: "./media/characters/roy/front.svg",
  14145. extra: 1,
  14146. bottom: 0.11
  14147. }
  14148. },
  14149. },
  14150. [
  14151. {
  14152. name: "Micro",
  14153. height: math.unit(3, "inches"),
  14154. default: true
  14155. },
  14156. {
  14157. name: "Normal",
  14158. height: math.unit(5 + 6 / 12, "feet")
  14159. },
  14160. {
  14161. name: "Lesser Macro",
  14162. height: math.unit(60, "feet")
  14163. },
  14164. {
  14165. name: "Greater Macro",
  14166. height: math.unit(120, "feet")
  14167. },
  14168. ]
  14169. ))
  14170. characterMakers.push(() => makeCharacter(
  14171. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14172. {
  14173. front: {
  14174. height: math.unit(6, "feet"),
  14175. weight: math.unit(100, "lb"),
  14176. name: "Front",
  14177. image: {
  14178. source: "./media/characters/aevsivs/front.svg",
  14179. extra: 1,
  14180. bottom: 0.03
  14181. }
  14182. },
  14183. back: {
  14184. height: math.unit(6, "feet"),
  14185. weight: math.unit(100, "lb"),
  14186. name: "Back",
  14187. image: {
  14188. source: "./media/characters/aevsivs/back.svg"
  14189. }
  14190. },
  14191. },
  14192. [
  14193. {
  14194. name: "Micro",
  14195. height: math.unit(2, "inches"),
  14196. default: true
  14197. },
  14198. {
  14199. name: "Normal",
  14200. height: math.unit(5, "feet")
  14201. },
  14202. ]
  14203. ))
  14204. characterMakers.push(() => makeCharacter(
  14205. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14206. {
  14207. front: {
  14208. height: math.unit(5 + 7 / 12, "feet"),
  14209. weight: math.unit(159, "lb"),
  14210. name: "Front",
  14211. image: {
  14212. source: "./media/characters/hildegard/front.svg",
  14213. extra: 289 / 269,
  14214. bottom: 7.63 / 297.8
  14215. }
  14216. },
  14217. back: {
  14218. height: math.unit(5 + 7 / 12, "feet"),
  14219. weight: math.unit(159, "lb"),
  14220. name: "Back",
  14221. image: {
  14222. source: "./media/characters/hildegard/back.svg",
  14223. extra: 280 / 260,
  14224. bottom: 2.3 / 282
  14225. }
  14226. },
  14227. },
  14228. [
  14229. {
  14230. name: "Normal",
  14231. height: math.unit(5 + 7 / 12, "feet"),
  14232. default: true
  14233. },
  14234. ]
  14235. ))
  14236. characterMakers.push(() => makeCharacter(
  14237. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14238. {
  14239. bernard: {
  14240. height: math.unit(2 + 7 / 12, "feet"),
  14241. weight: math.unit(66, "lb"),
  14242. name: "Bernard",
  14243. rename: true,
  14244. image: {
  14245. source: "./media/characters/bernard-wilder/bernard.svg",
  14246. extra: 192 / 128,
  14247. bottom: 0.05
  14248. }
  14249. },
  14250. wilder: {
  14251. height: math.unit(5 + 8 / 12, "feet"),
  14252. weight: math.unit(143, "lb"),
  14253. name: "Wilder",
  14254. rename: true,
  14255. image: {
  14256. source: "./media/characters/bernard-wilder/wilder.svg",
  14257. extra: 361 / 312,
  14258. bottom: 0.02
  14259. }
  14260. },
  14261. },
  14262. [
  14263. {
  14264. name: "Normal",
  14265. height: math.unit(2 + 7 / 12, "feet"),
  14266. default: true
  14267. },
  14268. ]
  14269. ))
  14270. characterMakers.push(() => makeCharacter(
  14271. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14272. {
  14273. anthro: {
  14274. height: math.unit(6 + 1 / 12, "feet"),
  14275. weight: math.unit(155, "lb"),
  14276. name: "Anthro",
  14277. image: {
  14278. source: "./media/characters/hearth/anthro.svg",
  14279. extra: 260 / 250,
  14280. bottom: 0.02
  14281. }
  14282. },
  14283. feral: {
  14284. height: math.unit(3.78, "feet"),
  14285. weight: math.unit(35, "kg"),
  14286. name: "Feral",
  14287. image: {
  14288. source: "./media/characters/hearth/feral.svg",
  14289. extra: 153 / 135,
  14290. bottom: 0.03
  14291. }
  14292. },
  14293. },
  14294. [
  14295. {
  14296. name: "Normal",
  14297. height: math.unit(6 + 1 / 12, "feet"),
  14298. default: true
  14299. },
  14300. ]
  14301. ))
  14302. characterMakers.push(() => makeCharacter(
  14303. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14304. {
  14305. front: {
  14306. height: math.unit(6, "feet"),
  14307. weight: math.unit(182, "lb"),
  14308. name: "Front",
  14309. image: {
  14310. source: "./media/characters/ingrid/front.svg",
  14311. extra: 294 / 268,
  14312. bottom: 0.027
  14313. }
  14314. },
  14315. },
  14316. [
  14317. {
  14318. name: "Normal",
  14319. height: math.unit(6, "feet"),
  14320. default: true
  14321. },
  14322. ]
  14323. ))
  14324. characterMakers.push(() => makeCharacter(
  14325. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14326. {
  14327. eevee: {
  14328. height: math.unit(2 + 10 / 12, "feet"),
  14329. weight: math.unit(86, "lb"),
  14330. name: "Malgam",
  14331. image: {
  14332. source: "./media/characters/malgam/eevee.svg",
  14333. extra: 218 / 180,
  14334. bottom: 0.2
  14335. }
  14336. },
  14337. sylveon: {
  14338. height: math.unit(4, "feet"),
  14339. weight: math.unit(101, "lb"),
  14340. name: "Future Malgam",
  14341. rename: true,
  14342. image: {
  14343. source: "./media/characters/malgam/sylveon.svg",
  14344. extra: 371 / 325,
  14345. bottom: 0.015
  14346. }
  14347. },
  14348. gigantamax: {
  14349. height: math.unit(50, "feet"),
  14350. name: "Gigantamax Malgam",
  14351. rename: true,
  14352. image: {
  14353. source: "./media/characters/malgam/gigantamax.svg"
  14354. }
  14355. },
  14356. },
  14357. [
  14358. {
  14359. name: "Normal",
  14360. height: math.unit(2 + 10 / 12, "feet"),
  14361. default: true
  14362. },
  14363. ]
  14364. ))
  14365. characterMakers.push(() => makeCharacter(
  14366. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14367. {
  14368. front: {
  14369. height: math.unit(5 + 11 / 12, "feet"),
  14370. weight: math.unit(188, "lb"),
  14371. name: "Front",
  14372. image: {
  14373. source: "./media/characters/fleur/front.svg",
  14374. extra: 309 / 283,
  14375. bottom: 0.007
  14376. }
  14377. },
  14378. },
  14379. [
  14380. {
  14381. name: "Normal",
  14382. height: math.unit(5 + 11 / 12, "feet"),
  14383. default: true
  14384. },
  14385. ]
  14386. ))
  14387. characterMakers.push(() => makeCharacter(
  14388. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14389. {
  14390. front: {
  14391. height: math.unit(5 + 4 / 12, "feet"),
  14392. weight: math.unit(122, "lb"),
  14393. name: "Front",
  14394. image: {
  14395. source: "./media/characters/jude/front.svg",
  14396. extra: 288 / 273,
  14397. bottom: 0.03
  14398. }
  14399. },
  14400. },
  14401. [
  14402. {
  14403. name: "Normal",
  14404. height: math.unit(5 + 4 / 12, "feet"),
  14405. default: true
  14406. },
  14407. ]
  14408. ))
  14409. characterMakers.push(() => makeCharacter(
  14410. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14411. {
  14412. front: {
  14413. height: math.unit(5 + 11 / 12, "feet"),
  14414. weight: math.unit(190, "lb"),
  14415. name: "Front",
  14416. image: {
  14417. source: "./media/characters/seara/front.svg",
  14418. extra: 1,
  14419. bottom: 0.05
  14420. }
  14421. },
  14422. },
  14423. [
  14424. {
  14425. name: "Normal",
  14426. height: math.unit(5 + 11 / 12, "feet"),
  14427. default: true
  14428. },
  14429. ]
  14430. ))
  14431. characterMakers.push(() => makeCharacter(
  14432. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14433. {
  14434. front: {
  14435. height: math.unit(16 + 5 / 12, "feet"),
  14436. weight: math.unit(524, "lb"),
  14437. name: "Front",
  14438. image: {
  14439. source: "./media/characters/caspian/front.svg",
  14440. extra: 1,
  14441. bottom: 0.04
  14442. }
  14443. },
  14444. },
  14445. [
  14446. {
  14447. name: "Normal",
  14448. height: math.unit(16 + 5 / 12, "feet"),
  14449. default: true
  14450. },
  14451. ]
  14452. ))
  14453. characterMakers.push(() => makeCharacter(
  14454. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14455. {
  14456. front: {
  14457. height: math.unit(5 + 7 / 12, "feet"),
  14458. weight: math.unit(170, "lb"),
  14459. name: "Front",
  14460. image: {
  14461. source: "./media/characters/mika/front.svg",
  14462. extra: 1,
  14463. bottom: 0.016
  14464. }
  14465. },
  14466. },
  14467. [
  14468. {
  14469. name: "Normal",
  14470. height: math.unit(5 + 7 / 12, "feet"),
  14471. default: true
  14472. },
  14473. ]
  14474. ))
  14475. characterMakers.push(() => makeCharacter(
  14476. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14477. {
  14478. front: {
  14479. height: math.unit(6 + 2 / 12, "feet"),
  14480. weight: math.unit(268, "lb"),
  14481. name: "Front",
  14482. image: {
  14483. source: "./media/characters/sol/front.svg",
  14484. extra: 247 / 231,
  14485. bottom: 0.05
  14486. }
  14487. },
  14488. },
  14489. [
  14490. {
  14491. name: "Normal",
  14492. height: math.unit(6 + 2 / 12, "feet"),
  14493. default: true
  14494. },
  14495. ]
  14496. ))
  14497. characterMakers.push(() => makeCharacter(
  14498. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14499. {
  14500. buizel: {
  14501. height: math.unit(2 + 5 / 12, "feet"),
  14502. weight: math.unit(87, "lb"),
  14503. name: "Buizel",
  14504. image: {
  14505. source: "./media/characters/umiko/buizel.svg",
  14506. extra: 172 / 157,
  14507. bottom: 0.01
  14508. }
  14509. },
  14510. floatzel: {
  14511. height: math.unit(5 + 9 / 12, "feet"),
  14512. weight: math.unit(250, "lb"),
  14513. name: "Floatzel",
  14514. image: {
  14515. source: "./media/characters/umiko/floatzel.svg",
  14516. extra: 262 / 248
  14517. }
  14518. },
  14519. },
  14520. [
  14521. {
  14522. name: "Normal",
  14523. height: math.unit(2 + 5 / 12, "feet"),
  14524. default: true
  14525. },
  14526. ]
  14527. ))
  14528. characterMakers.push(() => makeCharacter(
  14529. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14530. {
  14531. front: {
  14532. height: math.unit(6 + 2 / 12, "feet"),
  14533. weight: math.unit(146, "lb"),
  14534. name: "Front",
  14535. image: {
  14536. source: "./media/characters/iliac/front.svg",
  14537. extra: 389 / 365,
  14538. bottom: 0.035
  14539. }
  14540. },
  14541. },
  14542. [
  14543. {
  14544. name: "Normal",
  14545. height: math.unit(6 + 2 / 12, "feet"),
  14546. default: true
  14547. },
  14548. ]
  14549. ))
  14550. characterMakers.push(() => makeCharacter(
  14551. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14552. {
  14553. front: {
  14554. height: math.unit(6, "feet"),
  14555. weight: math.unit(170, "lb"),
  14556. name: "Front",
  14557. image: {
  14558. source: "./media/characters/topaz/front.svg",
  14559. extra: 317 / 303,
  14560. bottom: 0.055
  14561. }
  14562. },
  14563. },
  14564. [
  14565. {
  14566. name: "Normal",
  14567. height: math.unit(6, "feet"),
  14568. default: true
  14569. },
  14570. ]
  14571. ))
  14572. characterMakers.push(() => makeCharacter(
  14573. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14574. {
  14575. front: {
  14576. height: math.unit(5 + 11 / 12, "feet"),
  14577. weight: math.unit(144, "lb"),
  14578. name: "Front",
  14579. image: {
  14580. source: "./media/characters/gabriel/front.svg",
  14581. extra: 285 / 262,
  14582. bottom: 0.004
  14583. }
  14584. },
  14585. },
  14586. [
  14587. {
  14588. name: "Normal",
  14589. height: math.unit(5 + 11 / 12, "feet"),
  14590. default: true
  14591. },
  14592. ]
  14593. ))
  14594. characterMakers.push(() => makeCharacter(
  14595. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14596. {
  14597. side: {
  14598. height: math.unit(6 + 5 / 12, "feet"),
  14599. weight: math.unit(300, "lb"),
  14600. name: "Side",
  14601. image: {
  14602. source: "./media/characters/tempest-suicune/side.svg",
  14603. extra: 195 / 154,
  14604. bottom: 0.04
  14605. }
  14606. },
  14607. },
  14608. [
  14609. {
  14610. name: "Normal",
  14611. height: math.unit(6 + 5 / 12, "feet"),
  14612. default: true
  14613. },
  14614. ]
  14615. ))
  14616. characterMakers.push(() => makeCharacter(
  14617. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14618. {
  14619. front: {
  14620. height: math.unit(7 + 2 / 12, "feet"),
  14621. weight: math.unit(322, "lb"),
  14622. name: "Front",
  14623. image: {
  14624. source: "./media/characters/vulcan/front.svg",
  14625. extra: 154 / 147,
  14626. bottom: 0.04
  14627. }
  14628. },
  14629. },
  14630. [
  14631. {
  14632. name: "Normal",
  14633. height: math.unit(7 + 2 / 12, "feet"),
  14634. default: true
  14635. },
  14636. ]
  14637. ))
  14638. characterMakers.push(() => makeCharacter(
  14639. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14640. {
  14641. front: {
  14642. height: math.unit(5 + 10 / 12, "feet"),
  14643. weight: math.unit(264, "lb"),
  14644. name: "Front",
  14645. image: {
  14646. source: "./media/characters/gault/front.svg",
  14647. extra: 161 / 140,
  14648. bottom: 0.028
  14649. }
  14650. },
  14651. },
  14652. [
  14653. {
  14654. name: "Normal",
  14655. height: math.unit(5 + 10 / 12, "feet"),
  14656. default: true
  14657. },
  14658. ]
  14659. ))
  14660. characterMakers.push(() => makeCharacter(
  14661. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14662. {
  14663. front: {
  14664. height: math.unit(6, "feet"),
  14665. weight: math.unit(150, "lb"),
  14666. name: "Front",
  14667. image: {
  14668. source: "./media/characters/shard/front.svg",
  14669. extra: 273 / 238,
  14670. bottom: 0.02
  14671. }
  14672. },
  14673. },
  14674. [
  14675. {
  14676. name: "Normal",
  14677. height: math.unit(3 + 6 / 12, "feet"),
  14678. default: true
  14679. },
  14680. ]
  14681. ))
  14682. characterMakers.push(() => makeCharacter(
  14683. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14684. {
  14685. front: {
  14686. height: math.unit(5 + 11 / 12, "feet"),
  14687. weight: math.unit(146, "lb"),
  14688. name: "Front",
  14689. image: {
  14690. source: "./media/characters/ashe/front.svg",
  14691. extra: 400 / 373,
  14692. bottom: 0.01
  14693. }
  14694. },
  14695. },
  14696. [
  14697. {
  14698. name: "Normal",
  14699. height: math.unit(5 + 11 / 12, "feet"),
  14700. default: true
  14701. },
  14702. ]
  14703. ))
  14704. characterMakers.push(() => makeCharacter(
  14705. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14706. {
  14707. front: {
  14708. height: math.unit(5 + 5 / 12, "feet"),
  14709. weight: math.unit(135, "lb"),
  14710. name: "Front",
  14711. image: {
  14712. source: "./media/characters/beatrix/front.svg",
  14713. extra: 392 / 379,
  14714. bottom: 0.01
  14715. }
  14716. },
  14717. },
  14718. [
  14719. {
  14720. name: "Normal",
  14721. height: math.unit(6, "feet"),
  14722. default: true
  14723. },
  14724. ]
  14725. ))
  14726. characterMakers.push(() => makeCharacter(
  14727. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14728. {
  14729. front: {
  14730. height: math.unit(6, "feet"),
  14731. weight: math.unit(150, "lb"),
  14732. name: "Front",
  14733. image: {
  14734. source: "./media/characters/ignatius/front.svg",
  14735. extra: 245 / 222,
  14736. bottom: 0.01
  14737. }
  14738. },
  14739. },
  14740. [
  14741. {
  14742. name: "Normal",
  14743. height: math.unit(5 + 5 / 12, "feet"),
  14744. default: true
  14745. },
  14746. ]
  14747. ))
  14748. characterMakers.push(() => makeCharacter(
  14749. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14750. {
  14751. front: {
  14752. height: math.unit(6 + 2 / 12, "feet"),
  14753. weight: math.unit(138, "lb"),
  14754. name: "Front",
  14755. image: {
  14756. source: "./media/characters/mei-li/front.svg",
  14757. extra: 237 / 229,
  14758. bottom: 0.03
  14759. }
  14760. },
  14761. },
  14762. [
  14763. {
  14764. name: "Normal",
  14765. height: math.unit(6 + 2 / 12, "feet"),
  14766. default: true
  14767. },
  14768. ]
  14769. ))
  14770. characterMakers.push(() => makeCharacter(
  14771. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14772. {
  14773. front: {
  14774. height: math.unit(2 + 4 / 12, "feet"),
  14775. weight: math.unit(62, "lb"),
  14776. name: "Front",
  14777. image: {
  14778. source: "./media/characters/puru/front.svg",
  14779. extra: 206 / 149,
  14780. bottom: 0.06
  14781. }
  14782. },
  14783. },
  14784. [
  14785. {
  14786. name: "Normal",
  14787. height: math.unit(2 + 4 / 12, "feet"),
  14788. default: true
  14789. },
  14790. ]
  14791. ))
  14792. characterMakers.push(() => makeCharacter(
  14793. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14794. {
  14795. taur: {
  14796. height: math.unit(11, "feet"),
  14797. weight: math.unit(500, "lb"),
  14798. name: "Taur",
  14799. image: {
  14800. source: "./media/characters/kee/taur.svg",
  14801. extra: 1,
  14802. bottom: 0.04
  14803. }
  14804. },
  14805. },
  14806. [
  14807. {
  14808. name: "Normal",
  14809. height: math.unit(11, "feet"),
  14810. default: true
  14811. },
  14812. ]
  14813. ))
  14814. characterMakers.push(() => makeCharacter(
  14815. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14816. {
  14817. anthro: {
  14818. height: math.unit(7, "feet"),
  14819. weight: math.unit(190, "lb"),
  14820. name: "Anthro",
  14821. image: {
  14822. source: "./media/characters/cobalt-dracha/anthro.svg",
  14823. extra: 231 / 225,
  14824. bottom: 0.04
  14825. }
  14826. },
  14827. feral: {
  14828. height: math.unit(9 + 7 / 12, "feet"),
  14829. weight: math.unit(294, "lb"),
  14830. name: "Feral",
  14831. image: {
  14832. source: "./media/characters/cobalt-dracha/feral.svg",
  14833. extra: 692 / 633,
  14834. bottom: 0.05
  14835. }
  14836. },
  14837. },
  14838. [
  14839. {
  14840. name: "Normal",
  14841. height: math.unit(7, "feet"),
  14842. default: true
  14843. },
  14844. ]
  14845. ))
  14846. characterMakers.push(() => makeCharacter(
  14847. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14848. {
  14849. fallen: {
  14850. height: math.unit(11 + 8 / 12, "feet"),
  14851. weight: math.unit(485, "lb"),
  14852. name: "Java (Fallen)",
  14853. rename: true,
  14854. image: {
  14855. source: "./media/characters/java/fallen.svg",
  14856. extra: 226 / 208,
  14857. bottom: 0.005
  14858. }
  14859. },
  14860. godkin: {
  14861. height: math.unit(10 + 6 / 12, "feet"),
  14862. weight: math.unit(328, "lb"),
  14863. name: "Java (Godkin)",
  14864. rename: true,
  14865. image: {
  14866. source: "./media/characters/java/godkin.svg",
  14867. extra: 270 / 262,
  14868. bottom: 0.02
  14869. }
  14870. },
  14871. },
  14872. [
  14873. {
  14874. name: "Normal",
  14875. height: math.unit(11 + 8 / 12, "feet"),
  14876. default: true
  14877. },
  14878. ]
  14879. ))
  14880. characterMakers.push(() => makeCharacter(
  14881. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14882. {
  14883. front: {
  14884. height: math.unit(7 + 8 / 12, "feet"),
  14885. weight: math.unit(320, "lb"),
  14886. name: "Front",
  14887. image: {
  14888. source: "./media/characters/skoll/front.svg",
  14889. extra: 232 / 220,
  14890. bottom: 0.02
  14891. }
  14892. },
  14893. },
  14894. [
  14895. {
  14896. name: "Normal",
  14897. height: math.unit(7 + 8 / 12, "feet"),
  14898. default: true
  14899. },
  14900. ]
  14901. ))
  14902. characterMakers.push(() => makeCharacter(
  14903. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14904. {
  14905. front: {
  14906. height: math.unit(5 + 9 / 12, "feet"),
  14907. weight: math.unit(170, "lb"),
  14908. name: "Front",
  14909. image: {
  14910. source: "./media/characters/purna/front.svg",
  14911. extra: 239 / 229,
  14912. bottom: 0.01
  14913. }
  14914. },
  14915. },
  14916. [
  14917. {
  14918. name: "Normal",
  14919. height: math.unit(5 + 9 / 12, "feet"),
  14920. default: true
  14921. },
  14922. ]
  14923. ))
  14924. characterMakers.push(() => makeCharacter(
  14925. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14926. {
  14927. front: {
  14928. height: math.unit(5 + 9 / 12, "feet"),
  14929. weight: math.unit(142, "lb"),
  14930. name: "Front",
  14931. image: {
  14932. source: "./media/characters/kuva/front.svg",
  14933. extra: 281 / 271,
  14934. bottom: 0.006
  14935. }
  14936. },
  14937. },
  14938. [
  14939. {
  14940. name: "Normal",
  14941. height: math.unit(5 + 9 / 12, "feet"),
  14942. default: true
  14943. },
  14944. ]
  14945. ))
  14946. characterMakers.push(() => makeCharacter(
  14947. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14948. {
  14949. anthro: {
  14950. height: math.unit(9 + 2 / 12, "feet"),
  14951. weight: math.unit(270, "lb"),
  14952. name: "Anthro",
  14953. image: {
  14954. source: "./media/characters/embra/anthro.svg",
  14955. extra: 200 / 187,
  14956. bottom: 0.02
  14957. }
  14958. },
  14959. feral: {
  14960. height: math.unit(18 + 8 / 12, "feet"),
  14961. weight: math.unit(576, "lb"),
  14962. name: "Feral",
  14963. image: {
  14964. source: "./media/characters/embra/feral.svg",
  14965. extra: 152 / 137,
  14966. bottom: 0.037
  14967. }
  14968. },
  14969. },
  14970. [
  14971. {
  14972. name: "Normal",
  14973. height: math.unit(9 + 2 / 12, "feet"),
  14974. default: true
  14975. },
  14976. ]
  14977. ))
  14978. characterMakers.push(() => makeCharacter(
  14979. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14980. {
  14981. anthro: {
  14982. height: math.unit(10 + 9 / 12, "feet"),
  14983. weight: math.unit(224, "lb"),
  14984. name: "Anthro",
  14985. image: {
  14986. source: "./media/characters/grottos/anthro.svg",
  14987. extra: 350 / 332,
  14988. bottom: 0.045
  14989. }
  14990. },
  14991. feral: {
  14992. height: math.unit(20 + 7 / 12, "feet"),
  14993. weight: math.unit(629, "lb"),
  14994. name: "Feral",
  14995. image: {
  14996. source: "./media/characters/grottos/feral.svg",
  14997. extra: 207 / 190,
  14998. bottom: 0.05
  14999. }
  15000. },
  15001. },
  15002. [
  15003. {
  15004. name: "Normal",
  15005. height: math.unit(10 + 9 / 12, "feet"),
  15006. default: true
  15007. },
  15008. ]
  15009. ))
  15010. characterMakers.push(() => makeCharacter(
  15011. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15012. {
  15013. anthro: {
  15014. height: math.unit(9 + 6 / 12, "feet"),
  15015. weight: math.unit(298, "lb"),
  15016. name: "Anthro",
  15017. image: {
  15018. source: "./media/characters/frifna/anthro.svg",
  15019. extra: 282 / 269,
  15020. bottom: 0.015
  15021. }
  15022. },
  15023. feral: {
  15024. height: math.unit(16 + 2 / 12, "feet"),
  15025. weight: math.unit(624, "lb"),
  15026. name: "Feral",
  15027. image: {
  15028. source: "./media/characters/frifna/feral.svg"
  15029. }
  15030. },
  15031. },
  15032. [
  15033. {
  15034. name: "Normal",
  15035. height: math.unit(9 + 6 / 12, "feet"),
  15036. default: true
  15037. },
  15038. ]
  15039. ))
  15040. characterMakers.push(() => makeCharacter(
  15041. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15042. {
  15043. front: {
  15044. height: math.unit(6 + 2 / 12, "feet"),
  15045. weight: math.unit(168, "lb"),
  15046. name: "Front",
  15047. image: {
  15048. source: "./media/characters/elise/front.svg",
  15049. extra: 276 / 271
  15050. }
  15051. },
  15052. },
  15053. [
  15054. {
  15055. name: "Normal",
  15056. height: math.unit(6 + 2 / 12, "feet"),
  15057. default: true
  15058. },
  15059. ]
  15060. ))
  15061. characterMakers.push(() => makeCharacter(
  15062. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15063. {
  15064. front: {
  15065. height: math.unit(5 + 10 / 12, "feet"),
  15066. weight: math.unit(210, "lb"),
  15067. name: "Front",
  15068. image: {
  15069. source: "./media/characters/glade/front.svg",
  15070. extra: 258 / 247,
  15071. bottom: 0.008
  15072. }
  15073. },
  15074. },
  15075. [
  15076. {
  15077. name: "Normal",
  15078. height: math.unit(5 + 10 / 12, "feet"),
  15079. default: true
  15080. },
  15081. ]
  15082. ))
  15083. characterMakers.push(() => makeCharacter(
  15084. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15085. {
  15086. front: {
  15087. height: math.unit(5 + 10 / 12, "feet"),
  15088. weight: math.unit(129, "lb"),
  15089. name: "Front",
  15090. image: {
  15091. source: "./media/characters/rina/front.svg",
  15092. extra: 266 / 255,
  15093. bottom: 0.005
  15094. }
  15095. },
  15096. },
  15097. [
  15098. {
  15099. name: "Normal",
  15100. height: math.unit(5 + 10 / 12, "feet"),
  15101. default: true
  15102. },
  15103. ]
  15104. ))
  15105. characterMakers.push(() => makeCharacter(
  15106. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15107. {
  15108. front: {
  15109. height: math.unit(6 + 1 / 12, "feet"),
  15110. weight: math.unit(192, "lb"),
  15111. name: "Front",
  15112. image: {
  15113. source: "./media/characters/veronica/front.svg",
  15114. extra: 319 / 309,
  15115. bottom: 0.005
  15116. }
  15117. },
  15118. },
  15119. [
  15120. {
  15121. name: "Normal",
  15122. height: math.unit(6 + 1 / 12, "feet"),
  15123. default: true
  15124. },
  15125. ]
  15126. ))
  15127. characterMakers.push(() => makeCharacter(
  15128. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15129. {
  15130. front: {
  15131. height: math.unit(9 + 3 / 12, "feet"),
  15132. weight: math.unit(1100, "lb"),
  15133. name: "Front",
  15134. image: {
  15135. source: "./media/characters/braxton/front.svg",
  15136. extra: 1057 / 984,
  15137. bottom: 0.05
  15138. }
  15139. },
  15140. },
  15141. [
  15142. {
  15143. name: "Normal",
  15144. height: math.unit(9 + 3 / 12, "feet")
  15145. },
  15146. {
  15147. name: "Giant",
  15148. height: math.unit(300, "feet"),
  15149. default: true
  15150. },
  15151. {
  15152. name: "Macro",
  15153. height: math.unit(700, "feet")
  15154. },
  15155. {
  15156. name: "Megamacro",
  15157. height: math.unit(6000, "feet")
  15158. },
  15159. ]
  15160. ))
  15161. characterMakers.push(() => makeCharacter(
  15162. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15163. {
  15164. front: {
  15165. height: math.unit(6 + 7 / 12, "feet"),
  15166. weight: math.unit(150, "lb"),
  15167. name: "Front",
  15168. image: {
  15169. source: "./media/characters/blue-feyonics/front.svg",
  15170. extra: 1403 / 1306,
  15171. bottom: 0.047
  15172. }
  15173. },
  15174. },
  15175. [
  15176. {
  15177. name: "Normal",
  15178. height: math.unit(6 + 7 / 12, "feet"),
  15179. default: true
  15180. },
  15181. ]
  15182. ))
  15183. characterMakers.push(() => makeCharacter(
  15184. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15185. {
  15186. front: {
  15187. height: math.unit(1.8, "meters"),
  15188. weight: math.unit(60, "kg"),
  15189. name: "Front",
  15190. image: {
  15191. source: "./media/characters/maxwell/front.svg",
  15192. extra: 2060 / 1873
  15193. }
  15194. },
  15195. },
  15196. [
  15197. {
  15198. name: "Micro",
  15199. height: math.unit(1, "mm")
  15200. },
  15201. {
  15202. name: "Normal",
  15203. height: math.unit(1.8, "meter"),
  15204. default: true
  15205. },
  15206. {
  15207. name: "Macro",
  15208. height: math.unit(30, "meters")
  15209. },
  15210. {
  15211. name: "Megamacro",
  15212. height: math.unit(10, "km")
  15213. },
  15214. ]
  15215. ))
  15216. characterMakers.push(() => makeCharacter(
  15217. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15218. {
  15219. front: {
  15220. height: math.unit(6, "feet"),
  15221. weight: math.unit(150, "lb"),
  15222. name: "Front",
  15223. image: {
  15224. source: "./media/characters/jack/front.svg",
  15225. extra: 1754 / 1640,
  15226. bottom: 0.01
  15227. }
  15228. },
  15229. },
  15230. [
  15231. {
  15232. name: "Normal",
  15233. height: math.unit(80000, "feet"),
  15234. default: true
  15235. },
  15236. {
  15237. name: "Max size",
  15238. height: math.unit(10, "lightyears")
  15239. },
  15240. ]
  15241. ))
  15242. characterMakers.push(() => makeCharacter(
  15243. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15244. {
  15245. upright: {
  15246. height: math.unit(7, "feet"),
  15247. weight: math.unit(170, "lb"),
  15248. name: "Upright",
  15249. image: {
  15250. source: "./media/characters/cafat/upright.svg",
  15251. bottom: 0.01
  15252. }
  15253. },
  15254. uprightFull: {
  15255. height: math.unit(7, "feet"),
  15256. weight: math.unit(170, "lb"),
  15257. name: "Upright (Full)",
  15258. image: {
  15259. source: "./media/characters/cafat/upright-full.svg",
  15260. bottom: 0.01
  15261. }
  15262. },
  15263. side: {
  15264. height: math.unit(5, "feet"),
  15265. weight: math.unit(150, "lb"),
  15266. name: "Side",
  15267. image: {
  15268. source: "./media/characters/cafat/side.svg"
  15269. }
  15270. },
  15271. },
  15272. [
  15273. {
  15274. name: "Small",
  15275. height: math.unit(7, "feet"),
  15276. default: true
  15277. },
  15278. {
  15279. name: "Large",
  15280. height: math.unit(15.5, "feet")
  15281. },
  15282. ]
  15283. ))
  15284. characterMakers.push(() => makeCharacter(
  15285. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15286. {
  15287. front: {
  15288. height: math.unit(6, "feet"),
  15289. weight: math.unit(150, "lb"),
  15290. name: "Front",
  15291. image: {
  15292. source: "./media/characters/verin-raharra/front.svg",
  15293. extra: 5019 / 4835,
  15294. bottom: 0.023
  15295. }
  15296. },
  15297. },
  15298. [
  15299. {
  15300. name: "Normal",
  15301. height: math.unit(7 + 5 / 12, "feet"),
  15302. default: true
  15303. },
  15304. {
  15305. name: "Upsized",
  15306. height: math.unit(20, "feet")
  15307. },
  15308. ]
  15309. ))
  15310. characterMakers.push(() => makeCharacter(
  15311. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15312. {
  15313. front: {
  15314. height: math.unit(7, "feet"),
  15315. weight: math.unit(230, "lb"),
  15316. name: "Front",
  15317. image: {
  15318. source: "./media/characters/nakata/front.svg",
  15319. extra: 1.005,
  15320. bottom: 0.01
  15321. }
  15322. },
  15323. },
  15324. [
  15325. {
  15326. name: "Normal",
  15327. height: math.unit(7, "feet"),
  15328. default: true
  15329. },
  15330. {
  15331. name: "Big",
  15332. height: math.unit(14, "feet")
  15333. },
  15334. {
  15335. name: "Macro",
  15336. height: math.unit(400, "feet")
  15337. },
  15338. ]
  15339. ))
  15340. characterMakers.push(() => makeCharacter(
  15341. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15342. {
  15343. front: {
  15344. height: math.unit(4.91, "feet"),
  15345. weight: math.unit(100, "lb"),
  15346. name: "Front",
  15347. image: {
  15348. source: "./media/characters/lily/front.svg",
  15349. extra: 1585 / 1415,
  15350. bottom: 0.02
  15351. }
  15352. },
  15353. },
  15354. [
  15355. {
  15356. name: "Normal",
  15357. height: math.unit(4.91, "feet"),
  15358. default: true
  15359. },
  15360. ]
  15361. ))
  15362. characterMakers.push(() => makeCharacter(
  15363. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15364. {
  15365. laying: {
  15366. height: math.unit(4 + 4 / 12, "feet"),
  15367. weight: math.unit(600, "lb"),
  15368. name: "Laying",
  15369. image: {
  15370. source: "./media/characters/sheila/laying.svg",
  15371. extra: 1333 / 1265,
  15372. bottom: 0.16
  15373. }
  15374. },
  15375. },
  15376. [
  15377. {
  15378. name: "Normal",
  15379. height: math.unit(4 + 4 / 12, "feet"),
  15380. default: true
  15381. },
  15382. ]
  15383. ))
  15384. characterMakers.push(() => makeCharacter(
  15385. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15386. {
  15387. front: {
  15388. height: math.unit(6, "feet"),
  15389. weight: math.unit(190, "lb"),
  15390. name: "Front",
  15391. image: {
  15392. source: "./media/characters/sax/front.svg",
  15393. extra: 1187 / 973,
  15394. bottom: 0.042
  15395. }
  15396. },
  15397. },
  15398. [
  15399. {
  15400. name: "Micro",
  15401. height: math.unit(4, "inches"),
  15402. default: true
  15403. },
  15404. ]
  15405. ))
  15406. characterMakers.push(() => makeCharacter(
  15407. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15408. {
  15409. front: {
  15410. height: math.unit(6, "feet"),
  15411. weight: math.unit(150, "lb"),
  15412. name: "Front",
  15413. image: {
  15414. source: "./media/characters/pandora/front.svg",
  15415. extra: 2720 / 2556,
  15416. bottom: 0.015
  15417. }
  15418. },
  15419. back: {
  15420. height: math.unit(6, "feet"),
  15421. weight: math.unit(150, "lb"),
  15422. name: "Back",
  15423. image: {
  15424. source: "./media/characters/pandora/back.svg",
  15425. extra: 2720 / 2556,
  15426. bottom: 0.01
  15427. }
  15428. },
  15429. beans: {
  15430. height: math.unit(6 / 8, "feet"),
  15431. name: "Beans",
  15432. image: {
  15433. source: "./media/characters/pandora/beans.svg"
  15434. }
  15435. },
  15436. skirt: {
  15437. height: math.unit(6, "feet"),
  15438. weight: math.unit(150, "lb"),
  15439. name: "Skirt",
  15440. image: {
  15441. source: "./media/characters/pandora/skirt.svg",
  15442. extra: 1622 / 1525,
  15443. bottom: 0.015
  15444. }
  15445. },
  15446. hoodie: {
  15447. height: math.unit(6, "feet"),
  15448. weight: math.unit(150, "lb"),
  15449. name: "Hoodie",
  15450. image: {
  15451. source: "./media/characters/pandora/hoodie.svg",
  15452. extra: 1622 / 1525,
  15453. bottom: 0.015
  15454. }
  15455. },
  15456. casual: {
  15457. height: math.unit(6, "feet"),
  15458. weight: math.unit(150, "lb"),
  15459. name: "Casual",
  15460. image: {
  15461. source: "./media/characters/pandora/casual.svg",
  15462. extra: 1622 / 1525,
  15463. bottom: 0.015
  15464. }
  15465. },
  15466. },
  15467. [
  15468. {
  15469. name: "Normal",
  15470. height: math.unit(6, "feet")
  15471. },
  15472. {
  15473. name: "Big Steppy",
  15474. height: math.unit(1, "km"),
  15475. default: true
  15476. },
  15477. ]
  15478. ))
  15479. characterMakers.push(() => makeCharacter(
  15480. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15481. {
  15482. side: {
  15483. height: math.unit(10, "feet"),
  15484. weight: math.unit(800, "kg"),
  15485. name: "Side",
  15486. image: {
  15487. source: "./media/characters/venio-darcony/side.svg",
  15488. extra: 1373 / 1003,
  15489. bottom: 0.037
  15490. }
  15491. },
  15492. front: {
  15493. height: math.unit(19, "feet"),
  15494. weight: math.unit(800, "kg"),
  15495. name: "Front",
  15496. image: {
  15497. source: "./media/characters/venio-darcony/front.svg"
  15498. }
  15499. },
  15500. back: {
  15501. height: math.unit(19, "feet"),
  15502. weight: math.unit(800, "kg"),
  15503. name: "Back",
  15504. image: {
  15505. source: "./media/characters/venio-darcony/back.svg"
  15506. }
  15507. },
  15508. sideNsfw: {
  15509. height: math.unit(10, "feet"),
  15510. weight: math.unit(800, "kg"),
  15511. name: "Side (NSFW)",
  15512. image: {
  15513. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15514. extra: 1373 / 1003,
  15515. bottom: 0.037
  15516. }
  15517. },
  15518. frontNsfw: {
  15519. height: math.unit(19, "feet"),
  15520. weight: math.unit(800, "kg"),
  15521. name: "Front (NSFW)",
  15522. image: {
  15523. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15524. }
  15525. },
  15526. backNsfw: {
  15527. height: math.unit(19, "feet"),
  15528. weight: math.unit(800, "kg"),
  15529. name: "Back (NSFW)",
  15530. image: {
  15531. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15532. }
  15533. },
  15534. sideArmored: {
  15535. height: math.unit(10, "feet"),
  15536. weight: math.unit(800, "kg"),
  15537. name: "Side (Armored)",
  15538. image: {
  15539. source: "./media/characters/venio-darcony/side-armored.svg",
  15540. extra: 1373 / 1003,
  15541. bottom: 0.037
  15542. }
  15543. },
  15544. frontArmored: {
  15545. height: math.unit(19, "feet"),
  15546. weight: math.unit(900, "kg"),
  15547. name: "Front (Armored)",
  15548. image: {
  15549. source: "./media/characters/venio-darcony/front-armored.svg"
  15550. }
  15551. },
  15552. backArmored: {
  15553. height: math.unit(19, "feet"),
  15554. weight: math.unit(900, "kg"),
  15555. name: "Back (Armored)",
  15556. image: {
  15557. source: "./media/characters/venio-darcony/back-armored.svg"
  15558. }
  15559. },
  15560. sword: {
  15561. height: math.unit(10, "feet"),
  15562. weight: math.unit(50, "lb"),
  15563. name: "Sword",
  15564. image: {
  15565. source: "./media/characters/venio-darcony/sword.svg"
  15566. }
  15567. },
  15568. },
  15569. [
  15570. {
  15571. name: "Normal",
  15572. height: math.unit(10, "feet")
  15573. },
  15574. {
  15575. name: "Macro",
  15576. height: math.unit(130, "feet"),
  15577. default: true
  15578. },
  15579. {
  15580. name: "Macro+",
  15581. height: math.unit(240, "feet")
  15582. },
  15583. ]
  15584. ))
  15585. characterMakers.push(() => makeCharacter(
  15586. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15587. {
  15588. front: {
  15589. height: math.unit(6, "feet"),
  15590. weight: math.unit(150, "lb"),
  15591. name: "Front",
  15592. image: {
  15593. source: "./media/characters/veski/front.svg",
  15594. extra: 1299 / 1225,
  15595. bottom: 0.04
  15596. }
  15597. },
  15598. back: {
  15599. height: math.unit(6, "feet"),
  15600. weight: math.unit(150, "lb"),
  15601. name: "Back",
  15602. image: {
  15603. source: "./media/characters/veski/back.svg",
  15604. extra: 1299 / 1225,
  15605. bottom: 0.008
  15606. }
  15607. },
  15608. maw: {
  15609. height: math.unit(1.5 * 1.21, "feet"),
  15610. name: "Maw",
  15611. image: {
  15612. source: "./media/characters/veski/maw.svg"
  15613. }
  15614. },
  15615. },
  15616. [
  15617. {
  15618. name: "Macro",
  15619. height: math.unit(2, "km"),
  15620. default: true
  15621. },
  15622. ]
  15623. ))
  15624. characterMakers.push(() => makeCharacter(
  15625. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15626. {
  15627. front: {
  15628. height: math.unit(5 + 7 / 12, "feet"),
  15629. name: "Front",
  15630. image: {
  15631. source: "./media/characters/isabelle/front.svg",
  15632. extra: 2130 / 1976,
  15633. bottom: 0.05
  15634. }
  15635. },
  15636. },
  15637. [
  15638. {
  15639. name: "Supermicro",
  15640. height: math.unit(10, "micrometers")
  15641. },
  15642. {
  15643. name: "Micro",
  15644. height: math.unit(1, "inch")
  15645. },
  15646. {
  15647. name: "Tiny",
  15648. height: math.unit(5, "inches")
  15649. },
  15650. {
  15651. name: "Standard",
  15652. height: math.unit(5 + 7 / 12, "inches")
  15653. },
  15654. {
  15655. name: "Macro",
  15656. height: math.unit(80, "meters"),
  15657. default: true
  15658. },
  15659. {
  15660. name: "Megamacro",
  15661. height: math.unit(250, "meters")
  15662. },
  15663. {
  15664. name: "Gigamacro",
  15665. height: math.unit(5, "km")
  15666. },
  15667. {
  15668. name: "Cosmic",
  15669. height: math.unit(2.5e6, "miles")
  15670. },
  15671. ]
  15672. ))
  15673. characterMakers.push(() => makeCharacter(
  15674. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15675. {
  15676. front: {
  15677. height: math.unit(6, "feet"),
  15678. weight: math.unit(150, "lb"),
  15679. name: "Front",
  15680. image: {
  15681. source: "./media/characters/hanzo/front.svg",
  15682. extra: 374 / 344,
  15683. bottom: 0.02
  15684. }
  15685. },
  15686. },
  15687. [
  15688. {
  15689. name: "Normal",
  15690. height: math.unit(8, "feet"),
  15691. default: true
  15692. },
  15693. ]
  15694. ))
  15695. characterMakers.push(() => makeCharacter(
  15696. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15697. {
  15698. front: {
  15699. height: math.unit(7, "feet"),
  15700. weight: math.unit(130, "lb"),
  15701. name: "Front",
  15702. image: {
  15703. source: "./media/characters/anna/front.svg",
  15704. extra: 169 / 145,
  15705. bottom: 0.06
  15706. }
  15707. },
  15708. full: {
  15709. height: math.unit(4.96, "feet"),
  15710. weight: math.unit(220, "lb"),
  15711. name: "Full",
  15712. image: {
  15713. source: "./media/characters/anna/full.svg",
  15714. extra: 138 / 114,
  15715. bottom: 0.15
  15716. }
  15717. },
  15718. tongue: {
  15719. height: math.unit(2.53, "feet"),
  15720. name: "Tongue",
  15721. image: {
  15722. source: "./media/characters/anna/tongue.svg"
  15723. }
  15724. },
  15725. },
  15726. [
  15727. {
  15728. name: "Normal",
  15729. height: math.unit(7, "feet"),
  15730. default: true
  15731. },
  15732. ]
  15733. ))
  15734. characterMakers.push(() => makeCharacter(
  15735. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15736. {
  15737. front: {
  15738. height: math.unit(7, "feet"),
  15739. weight: math.unit(150, "lb"),
  15740. name: "Front",
  15741. image: {
  15742. source: "./media/characters/ian-corvid/front.svg",
  15743. extra: 150 / 142,
  15744. bottom: 0.02
  15745. }
  15746. },
  15747. back: {
  15748. height: math.unit(7, "feet"),
  15749. weight: math.unit(150, "lb"),
  15750. name: "Back",
  15751. image: {
  15752. source: "./media/characters/ian-corvid/back.svg",
  15753. extra: 150 / 143,
  15754. bottom: 0.01
  15755. }
  15756. },
  15757. stomping: {
  15758. height: math.unit(7, "feet"),
  15759. weight: math.unit(150, "lb"),
  15760. name: "Stomping",
  15761. image: {
  15762. source: "./media/characters/ian-corvid/stomping.svg",
  15763. extra: 76 / 72
  15764. }
  15765. },
  15766. sitting: {
  15767. height: math.unit(7 / 1.8, "feet"),
  15768. weight: math.unit(150, "lb"),
  15769. name: "Sitting",
  15770. image: {
  15771. source: "./media/characters/ian-corvid/sitting.svg",
  15772. extra: 1400 / 1269,
  15773. bottom: 0.15
  15774. }
  15775. },
  15776. },
  15777. [
  15778. {
  15779. name: "Tiny Microw",
  15780. height: math.unit(1, "inch")
  15781. },
  15782. {
  15783. name: "Microw",
  15784. height: math.unit(6, "inches")
  15785. },
  15786. {
  15787. name: "Crow",
  15788. height: math.unit(7 + 1 / 12, "feet"),
  15789. default: true
  15790. },
  15791. {
  15792. name: "Macrow",
  15793. height: math.unit(176, "feet")
  15794. },
  15795. ]
  15796. ))
  15797. characterMakers.push(() => makeCharacter(
  15798. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15799. {
  15800. front: {
  15801. height: math.unit(5 + 7 / 12, "feet"),
  15802. weight: math.unit(147, "lb"),
  15803. name: "Front",
  15804. image: {
  15805. source: "./media/characters/natalie-kellon/front.svg",
  15806. extra: 1214 / 1141,
  15807. bottom: 0.02
  15808. }
  15809. },
  15810. },
  15811. [
  15812. {
  15813. name: "Micro",
  15814. height: math.unit(1 / 16, "inch")
  15815. },
  15816. {
  15817. name: "Tiny",
  15818. height: math.unit(4, "inches")
  15819. },
  15820. {
  15821. name: "Normal",
  15822. height: math.unit(5 + 7 / 12, "feet"),
  15823. default: true
  15824. },
  15825. {
  15826. name: "Amazon",
  15827. height: math.unit(12, "feet")
  15828. },
  15829. {
  15830. name: "Giantess",
  15831. height: math.unit(160, "meters")
  15832. },
  15833. {
  15834. name: "Titaness",
  15835. height: math.unit(800, "meters")
  15836. },
  15837. ]
  15838. ))
  15839. characterMakers.push(() => makeCharacter(
  15840. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15841. {
  15842. front: {
  15843. height: math.unit(6, "feet"),
  15844. weight: math.unit(150, "lb"),
  15845. name: "Front",
  15846. image: {
  15847. source: "./media/characters/alluria/front.svg",
  15848. extra: 806 / 738,
  15849. bottom: 0.01
  15850. }
  15851. },
  15852. side: {
  15853. height: math.unit(6, "feet"),
  15854. weight: math.unit(150, "lb"),
  15855. name: "Side",
  15856. image: {
  15857. source: "./media/characters/alluria/side.svg",
  15858. extra: 800 / 750,
  15859. }
  15860. },
  15861. back: {
  15862. height: math.unit(6, "feet"),
  15863. weight: math.unit(150, "lb"),
  15864. name: "Back",
  15865. image: {
  15866. source: "./media/characters/alluria/back.svg",
  15867. extra: 806 / 738,
  15868. }
  15869. },
  15870. frontMaid: {
  15871. height: math.unit(6, "feet"),
  15872. weight: math.unit(150, "lb"),
  15873. name: "Front (Maid)",
  15874. image: {
  15875. source: "./media/characters/alluria/front-maid.svg",
  15876. extra: 806 / 738,
  15877. bottom: 0.01
  15878. }
  15879. },
  15880. sideMaid: {
  15881. height: math.unit(6, "feet"),
  15882. weight: math.unit(150, "lb"),
  15883. name: "Side (Maid)",
  15884. image: {
  15885. source: "./media/characters/alluria/side-maid.svg",
  15886. extra: 800 / 750,
  15887. bottom: 0.005
  15888. }
  15889. },
  15890. backMaid: {
  15891. height: math.unit(6, "feet"),
  15892. weight: math.unit(150, "lb"),
  15893. name: "Back (Maid)",
  15894. image: {
  15895. source: "./media/characters/alluria/back-maid.svg",
  15896. extra: 806 / 738,
  15897. }
  15898. },
  15899. },
  15900. [
  15901. {
  15902. name: "Micro",
  15903. height: math.unit(6, "inches"),
  15904. default: true
  15905. },
  15906. ]
  15907. ))
  15908. characterMakers.push(() => makeCharacter(
  15909. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15910. {
  15911. front: {
  15912. height: math.unit(6, "feet"),
  15913. weight: math.unit(150, "lb"),
  15914. name: "Front",
  15915. image: {
  15916. source: "./media/characters/kyle/front.svg",
  15917. extra: 1069 / 962,
  15918. bottom: 77.228 / 1727.45
  15919. }
  15920. },
  15921. },
  15922. [
  15923. {
  15924. name: "Macro",
  15925. height: math.unit(150, "feet"),
  15926. default: true
  15927. },
  15928. ]
  15929. ))
  15930. characterMakers.push(() => makeCharacter(
  15931. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15932. {
  15933. front: {
  15934. height: math.unit(6, "feet"),
  15935. weight: math.unit(300, "lb"),
  15936. name: "Front",
  15937. image: {
  15938. source: "./media/characters/duncan/front.svg",
  15939. extra: 1650 / 1482,
  15940. bottom: 0.05
  15941. }
  15942. },
  15943. },
  15944. [
  15945. {
  15946. name: "Macro",
  15947. height: math.unit(100, "feet"),
  15948. default: true
  15949. },
  15950. ]
  15951. ))
  15952. characterMakers.push(() => makeCharacter(
  15953. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15954. {
  15955. front: {
  15956. height: math.unit(5 + 4 / 12, "feet"),
  15957. weight: math.unit(220, "lb"),
  15958. name: "Front",
  15959. image: {
  15960. source: "./media/characters/memory/front.svg",
  15961. extra: 3641 / 3545,
  15962. bottom: 0.03
  15963. }
  15964. },
  15965. back: {
  15966. height: math.unit(5 + 4 / 12, "feet"),
  15967. weight: math.unit(220, "lb"),
  15968. name: "Back",
  15969. image: {
  15970. source: "./media/characters/memory/back.svg",
  15971. extra: 3641 / 3545,
  15972. bottom: 0.025
  15973. }
  15974. },
  15975. frontSkirt: {
  15976. height: math.unit(5 + 4 / 12, "feet"),
  15977. weight: math.unit(220, "lb"),
  15978. name: "Front (Skirt)",
  15979. image: {
  15980. source: "./media/characters/memory/front-skirt.svg",
  15981. extra: 3641 / 3545,
  15982. bottom: 0.03
  15983. }
  15984. },
  15985. frontDress: {
  15986. height: math.unit(5 + 4 / 12, "feet"),
  15987. weight: math.unit(220, "lb"),
  15988. name: "Front (Dress)",
  15989. image: {
  15990. source: "./media/characters/memory/front-dress.svg",
  15991. extra: 3641 / 3545,
  15992. bottom: 0.03
  15993. }
  15994. },
  15995. },
  15996. [
  15997. {
  15998. name: "Micro",
  15999. height: math.unit(6, "inches"),
  16000. default: true
  16001. },
  16002. {
  16003. name: "Normal",
  16004. height: math.unit(5 + 4 / 12, "feet")
  16005. },
  16006. ]
  16007. ))
  16008. characterMakers.push(() => makeCharacter(
  16009. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16010. {
  16011. front: {
  16012. height: math.unit(4 + 11 / 12, "feet"),
  16013. weight: math.unit(100, "lb"),
  16014. name: "Front",
  16015. image: {
  16016. source: "./media/characters/luno/front.svg",
  16017. extra: 1535 / 1487,
  16018. bottom: 0.03
  16019. }
  16020. },
  16021. },
  16022. [
  16023. {
  16024. name: "Micro",
  16025. height: math.unit(3, "inches")
  16026. },
  16027. {
  16028. name: "Normal",
  16029. height: math.unit(4 + 11 / 12, "feet"),
  16030. default: true
  16031. },
  16032. {
  16033. name: "Macro",
  16034. height: math.unit(300, "feet")
  16035. },
  16036. {
  16037. name: "Megamacro",
  16038. height: math.unit(700, "miles")
  16039. },
  16040. ]
  16041. ))
  16042. characterMakers.push(() => makeCharacter(
  16043. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16044. {
  16045. front: {
  16046. height: math.unit(6 + 2 / 12, "feet"),
  16047. weight: math.unit(170, "lb"),
  16048. name: "Front",
  16049. image: {
  16050. source: "./media/characters/jamesy/front.svg",
  16051. extra: 440 / 382,
  16052. bottom: 0.005
  16053. }
  16054. },
  16055. },
  16056. [
  16057. {
  16058. name: "Micro",
  16059. height: math.unit(3, "inches")
  16060. },
  16061. {
  16062. name: "Normal",
  16063. height: math.unit(6 + 2 / 12, "feet"),
  16064. default: true
  16065. },
  16066. {
  16067. name: "Macro",
  16068. height: math.unit(300, "feet")
  16069. },
  16070. {
  16071. name: "Megamacro",
  16072. height: math.unit(700, "miles")
  16073. },
  16074. ]
  16075. ))
  16076. characterMakers.push(() => makeCharacter(
  16077. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16078. {
  16079. front: {
  16080. height: math.unit(6, "feet"),
  16081. weight: math.unit(160, "lb"),
  16082. name: "Front",
  16083. image: {
  16084. source: "./media/characters/mark/front.svg",
  16085. extra: 3300 / 3100,
  16086. bottom: 136.42 / 3440.47
  16087. }
  16088. },
  16089. },
  16090. [
  16091. {
  16092. name: "Macro",
  16093. height: math.unit(120, "meters")
  16094. },
  16095. {
  16096. name: "Bigger Macro",
  16097. height: math.unit(350, "meters")
  16098. },
  16099. {
  16100. name: "Megamacro",
  16101. height: math.unit(8, "km"),
  16102. default: true
  16103. },
  16104. {
  16105. name: "Continental",
  16106. height: math.unit(4550, "km")
  16107. },
  16108. {
  16109. name: "Planetary",
  16110. height: math.unit(65000, "km")
  16111. },
  16112. ]
  16113. ))
  16114. characterMakers.push(() => makeCharacter(
  16115. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16116. {
  16117. front: {
  16118. height: math.unit(6, "feet"),
  16119. weight: math.unit(400, "lb"),
  16120. name: "Front",
  16121. image: {
  16122. source: "./media/characters/mac/front.svg",
  16123. extra: 1048 / 987.7,
  16124. bottom: 60 / 1107.6,
  16125. }
  16126. },
  16127. },
  16128. [
  16129. {
  16130. name: "Macro",
  16131. height: math.unit(500, "feet"),
  16132. default: true
  16133. },
  16134. ]
  16135. ))
  16136. characterMakers.push(() => makeCharacter(
  16137. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16138. {
  16139. front: {
  16140. height: math.unit(5 + 2 / 12, "feet"),
  16141. weight: math.unit(190, "lb"),
  16142. name: "Front",
  16143. image: {
  16144. source: "./media/characters/bari/front.svg",
  16145. extra: 3156 / 2880,
  16146. bottom: 0.03
  16147. }
  16148. },
  16149. back: {
  16150. height: math.unit(5 + 2 / 12, "feet"),
  16151. weight: math.unit(190, "lb"),
  16152. name: "Back",
  16153. image: {
  16154. source: "./media/characters/bari/back.svg",
  16155. extra: 3260 / 2834,
  16156. bottom: 0.025
  16157. }
  16158. },
  16159. frontPlush: {
  16160. height: math.unit(5 + 2 / 12, "feet"),
  16161. weight: math.unit(190, "lb"),
  16162. name: "Front (Plush)",
  16163. image: {
  16164. source: "./media/characters/bari/front-plush.svg",
  16165. extra: 1112 / 1061,
  16166. bottom: 0.002
  16167. }
  16168. },
  16169. },
  16170. [
  16171. {
  16172. name: "Micro",
  16173. height: math.unit(3, "inches")
  16174. },
  16175. {
  16176. name: "Normal",
  16177. height: math.unit(5 + 2 / 12, "feet"),
  16178. default: true
  16179. },
  16180. {
  16181. name: "Macro",
  16182. height: math.unit(20, "feet")
  16183. },
  16184. ]
  16185. ))
  16186. characterMakers.push(() => makeCharacter(
  16187. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16188. {
  16189. front: {
  16190. height: math.unit(6 + 1 / 12, "feet"),
  16191. weight: math.unit(275, "lb"),
  16192. name: "Front",
  16193. image: {
  16194. source: "./media/characters/hunter-misha-raven/front.svg"
  16195. }
  16196. },
  16197. },
  16198. [
  16199. {
  16200. name: "Mortal",
  16201. height: math.unit(6 + 1 / 12, "feet")
  16202. },
  16203. {
  16204. name: "Divine",
  16205. height: math.unit(1.12134e34, "parsecs"),
  16206. default: true
  16207. },
  16208. ]
  16209. ))
  16210. characterMakers.push(() => makeCharacter(
  16211. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16212. {
  16213. front: {
  16214. height: math.unit(6 + 3 / 12, "feet"),
  16215. weight: math.unit(220, "lb"),
  16216. name: "Front",
  16217. image: {
  16218. source: "./media/characters/max-calore/front.svg",
  16219. extra: 1700 / 1648,
  16220. bottom: 0.01
  16221. }
  16222. },
  16223. back: {
  16224. height: math.unit(6 + 3 / 12, "feet"),
  16225. weight: math.unit(220, "lb"),
  16226. name: "Back",
  16227. image: {
  16228. source: "./media/characters/max-calore/back.svg",
  16229. extra: 1700 / 1648,
  16230. bottom: 0.01
  16231. }
  16232. },
  16233. },
  16234. [
  16235. {
  16236. name: "Normal",
  16237. height: math.unit(6 + 3 / 12, "feet"),
  16238. default: true
  16239. },
  16240. ]
  16241. ))
  16242. characterMakers.push(() => makeCharacter(
  16243. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16244. {
  16245. side: {
  16246. height: math.unit(2 + 8 / 12, "feet"),
  16247. weight: math.unit(99, "lb"),
  16248. name: "Side",
  16249. image: {
  16250. source: "./media/characters/aspen/side.svg",
  16251. extra: 152 / 138,
  16252. bottom: 0.032
  16253. }
  16254. },
  16255. },
  16256. [
  16257. {
  16258. name: "Normal",
  16259. height: math.unit(2 + 8 / 12, "feet"),
  16260. default: true
  16261. },
  16262. ]
  16263. ))
  16264. characterMakers.push(() => makeCharacter(
  16265. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16266. {
  16267. side: {
  16268. height: math.unit(3 + 2 / 12, "feet"),
  16269. weight: math.unit(224, "lb"),
  16270. name: "Side",
  16271. image: {
  16272. source: "./media/characters/sheila-feral-wolf/side.svg",
  16273. extra: 179 / 166,
  16274. bottom: 0.03
  16275. }
  16276. },
  16277. },
  16278. [
  16279. {
  16280. name: "Normal",
  16281. height: math.unit(3 + 2 / 12, "feet"),
  16282. default: true
  16283. },
  16284. ]
  16285. ))
  16286. characterMakers.push(() => makeCharacter(
  16287. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16288. {
  16289. side: {
  16290. height: math.unit(1 + 9 / 12, "feet"),
  16291. weight: math.unit(38, "lb"),
  16292. name: "Side",
  16293. image: {
  16294. source: "./media/characters/michelle/side.svg",
  16295. extra: 147 / 136.7,
  16296. bottom: 0.03
  16297. }
  16298. },
  16299. },
  16300. [
  16301. {
  16302. name: "Normal",
  16303. height: math.unit(1 + 9 / 12, "feet"),
  16304. default: true
  16305. },
  16306. ]
  16307. ))
  16308. characterMakers.push(() => makeCharacter(
  16309. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16310. {
  16311. front: {
  16312. height: math.unit(1 + 1 / 12, "feet"),
  16313. weight: math.unit(18, "lb"),
  16314. name: "Front",
  16315. image: {
  16316. source: "./media/characters/nino/front.svg"
  16317. }
  16318. },
  16319. },
  16320. [
  16321. {
  16322. name: "Normal",
  16323. height: math.unit(1 + 1 / 12, "feet"),
  16324. default: true
  16325. },
  16326. ]
  16327. ))
  16328. characterMakers.push(() => makeCharacter(
  16329. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16330. {
  16331. front: {
  16332. height: math.unit(1, "feet"),
  16333. weight: math.unit(16, "lb"),
  16334. name: "Front",
  16335. image: {
  16336. source: "./media/characters/viola/front.svg"
  16337. }
  16338. },
  16339. },
  16340. [
  16341. {
  16342. name: "Normal",
  16343. height: math.unit(1, "feet"),
  16344. default: true
  16345. },
  16346. ]
  16347. ))
  16348. characterMakers.push(() => makeCharacter(
  16349. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16350. {
  16351. front: {
  16352. height: math.unit(6 + 5 / 12, "feet"),
  16353. weight: math.unit(580, "lb"),
  16354. name: "Front",
  16355. image: {
  16356. source: "./media/characters/atlas/front.svg",
  16357. extra: 298.5 / 290,
  16358. bottom: 0.015
  16359. }
  16360. },
  16361. },
  16362. [
  16363. {
  16364. name: "Normal",
  16365. height: math.unit(6 + 5 / 12, "feet"),
  16366. default: true
  16367. },
  16368. ]
  16369. ))
  16370. characterMakers.push(() => makeCharacter(
  16371. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16372. {
  16373. side: {
  16374. height: math.unit(1 + 10 / 12, "feet"),
  16375. weight: math.unit(25, "lb"),
  16376. name: "Side",
  16377. image: {
  16378. source: "./media/characters/davy/side.svg",
  16379. extra: 200 / 170,
  16380. bottom: 0.01
  16381. }
  16382. },
  16383. },
  16384. [
  16385. {
  16386. name: "Normal",
  16387. height: math.unit(1 + 10 / 12, "feet"),
  16388. default: true
  16389. },
  16390. ]
  16391. ))
  16392. characterMakers.push(() => makeCharacter(
  16393. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16394. {
  16395. side: {
  16396. height: math.unit(4 + 8 / 12, "feet"),
  16397. weight: math.unit(166, "lb"),
  16398. name: "Side",
  16399. image: {
  16400. source: "./media/characters/fiona/side.svg",
  16401. extra: 232 / 220,
  16402. bottom: 0.03
  16403. }
  16404. },
  16405. },
  16406. [
  16407. {
  16408. name: "Normal",
  16409. height: math.unit(4 + 8 / 12, "feet"),
  16410. default: true
  16411. },
  16412. ]
  16413. ))
  16414. characterMakers.push(() => makeCharacter(
  16415. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16416. {
  16417. front: {
  16418. height: math.unit(2, "feet"),
  16419. weight: math.unit(62, "lb"),
  16420. name: "Front",
  16421. image: {
  16422. source: "./media/characters/lyla/front.svg",
  16423. bottom: 0.1
  16424. }
  16425. },
  16426. },
  16427. [
  16428. {
  16429. name: "Normal",
  16430. height: math.unit(2, "feet"),
  16431. default: true
  16432. },
  16433. ]
  16434. ))
  16435. characterMakers.push(() => makeCharacter(
  16436. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16437. {
  16438. side: {
  16439. height: math.unit(1.8, "feet"),
  16440. weight: math.unit(44, "lb"),
  16441. name: "Side",
  16442. image: {
  16443. source: "./media/characters/perseus/side.svg",
  16444. bottom: 0.21
  16445. }
  16446. },
  16447. },
  16448. [
  16449. {
  16450. name: "Normal",
  16451. height: math.unit(1.8, "feet"),
  16452. default: true
  16453. },
  16454. ]
  16455. ))
  16456. characterMakers.push(() => makeCharacter(
  16457. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16458. {
  16459. side: {
  16460. height: math.unit(4 + 2 / 12, "feet"),
  16461. weight: math.unit(20, "lb"),
  16462. name: "Side",
  16463. image: {
  16464. source: "./media/characters/remus/side.svg"
  16465. }
  16466. },
  16467. },
  16468. [
  16469. {
  16470. name: "Normal",
  16471. height: math.unit(4 + 2 / 12, "feet"),
  16472. default: true
  16473. },
  16474. ]
  16475. ))
  16476. characterMakers.push(() => makeCharacter(
  16477. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16478. {
  16479. front: {
  16480. height: math.unit(4 + 11 / 12, "feet"),
  16481. weight: math.unit(114, "lb"),
  16482. name: "Front",
  16483. image: {
  16484. source: "./media/characters/raf/front.svg",
  16485. bottom: 20.5 / 1863
  16486. }
  16487. },
  16488. side: {
  16489. height: math.unit(4 + 11 / 12, "feet"),
  16490. weight: math.unit(114, "lb"),
  16491. name: "Side",
  16492. image: {
  16493. source: "./media/characters/raf/side.svg",
  16494. bottom: 22 / 1822
  16495. }
  16496. },
  16497. },
  16498. [
  16499. {
  16500. name: "Micro",
  16501. height: math.unit(2, "inches")
  16502. },
  16503. {
  16504. name: "Normal",
  16505. height: math.unit(4 + 11 / 12, "feet"),
  16506. default: true
  16507. },
  16508. {
  16509. name: "Macro",
  16510. height: math.unit(70, "feet")
  16511. },
  16512. ]
  16513. ))
  16514. characterMakers.push(() => makeCharacter(
  16515. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16516. {
  16517. front: {
  16518. height: math.unit(1.5, "meters"),
  16519. weight: math.unit(68, "kg"),
  16520. name: "Front",
  16521. image: {
  16522. source: "./media/characters/liam-einarr/front.svg",
  16523. extra: 2822 / 2666
  16524. }
  16525. },
  16526. back: {
  16527. height: math.unit(1.5, "meters"),
  16528. weight: math.unit(68, "kg"),
  16529. name: "Back",
  16530. image: {
  16531. source: "./media/characters/liam-einarr/back.svg",
  16532. extra: 2822 / 2666,
  16533. bottom: 0.015
  16534. }
  16535. },
  16536. },
  16537. [
  16538. {
  16539. name: "Normal",
  16540. height: math.unit(1.5, "meters"),
  16541. default: true
  16542. },
  16543. {
  16544. name: "Macro",
  16545. height: math.unit(150, "meters")
  16546. },
  16547. {
  16548. name: "Megamacro",
  16549. height: math.unit(35, "km")
  16550. },
  16551. ]
  16552. ))
  16553. characterMakers.push(() => makeCharacter(
  16554. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16555. {
  16556. front: {
  16557. height: math.unit(6, "feet"),
  16558. weight: math.unit(75, "kg"),
  16559. name: "Front",
  16560. image: {
  16561. source: "./media/characters/linda/front.svg",
  16562. extra: 930 / 874,
  16563. bottom: 0.004
  16564. }
  16565. },
  16566. },
  16567. [
  16568. {
  16569. name: "Normal",
  16570. height: math.unit(6, "feet"),
  16571. default: true
  16572. },
  16573. ]
  16574. ))
  16575. characterMakers.push(() => makeCharacter(
  16576. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16577. {
  16578. front: {
  16579. height: math.unit(6 + 8 / 12, "feet"),
  16580. weight: math.unit(220, "lb"),
  16581. name: "Front",
  16582. image: {
  16583. source: "./media/characters/caylex/front.svg",
  16584. extra: 821 / 772,
  16585. bottom: 0.07
  16586. }
  16587. },
  16588. back: {
  16589. height: math.unit(6 + 8 / 12, "feet"),
  16590. weight: math.unit(220, "lb"),
  16591. name: "Back",
  16592. image: {
  16593. source: "./media/characters/caylex/back.svg",
  16594. extra: 821 / 772,
  16595. bottom: 0.022
  16596. }
  16597. },
  16598. hand: {
  16599. height: math.unit(1.25, "feet"),
  16600. name: "Hand",
  16601. image: {
  16602. source: "./media/characters/caylex/hand.svg"
  16603. }
  16604. },
  16605. foot: {
  16606. height: math.unit(1.6, "feet"),
  16607. name: "Foot",
  16608. image: {
  16609. source: "./media/characters/caylex/foot.svg"
  16610. }
  16611. },
  16612. armored: {
  16613. height: math.unit(6 + 8 / 12, "feet"),
  16614. weight: math.unit(250, "lb"),
  16615. name: "Armored",
  16616. image: {
  16617. source: "./media/characters/caylex/armored.svg",
  16618. extra: 1420 / 1310,
  16619. bottom: 0.045
  16620. }
  16621. },
  16622. },
  16623. [
  16624. {
  16625. name: "Normal",
  16626. height: math.unit(6 + 8 / 12, "feet"),
  16627. default: true
  16628. },
  16629. {
  16630. name: "Normal+",
  16631. height: math.unit(12, "feet")
  16632. },
  16633. ]
  16634. ))
  16635. characterMakers.push(() => makeCharacter(
  16636. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16637. {
  16638. front: {
  16639. height: math.unit(7 + 6 / 12, "feet"),
  16640. weight: math.unit(288, "lb"),
  16641. name: "Front",
  16642. image: {
  16643. source: "./media/characters/alana/front.svg",
  16644. extra: 679 / 653,
  16645. bottom: 22.5 / 701
  16646. }
  16647. },
  16648. },
  16649. [
  16650. {
  16651. name: "Normal",
  16652. height: math.unit(7 + 6 / 12, "feet")
  16653. },
  16654. {
  16655. name: "Large",
  16656. height: math.unit(50, "feet")
  16657. },
  16658. {
  16659. name: "Macro",
  16660. height: math.unit(100, "feet"),
  16661. default: true
  16662. },
  16663. {
  16664. name: "Macro+",
  16665. height: math.unit(200, "feet")
  16666. },
  16667. ]
  16668. ))
  16669. characterMakers.push(() => makeCharacter(
  16670. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16671. {
  16672. front: {
  16673. height: math.unit(6 + 1 / 12, "feet"),
  16674. weight: math.unit(210, "lb"),
  16675. name: "Front",
  16676. image: {
  16677. source: "./media/characters/hasani/front.svg",
  16678. extra: 244 / 232,
  16679. bottom: 0.01
  16680. }
  16681. },
  16682. back: {
  16683. height: math.unit(6 + 1 / 12, "feet"),
  16684. weight: math.unit(210, "lb"),
  16685. name: "Back",
  16686. image: {
  16687. source: "./media/characters/hasani/back.svg",
  16688. extra: 244 / 232,
  16689. bottom: 0.01
  16690. }
  16691. },
  16692. },
  16693. [
  16694. {
  16695. name: "Normal",
  16696. height: math.unit(6 + 1 / 12, "feet")
  16697. },
  16698. {
  16699. name: "Macro",
  16700. height: math.unit(175, "feet"),
  16701. default: true
  16702. },
  16703. ]
  16704. ))
  16705. characterMakers.push(() => makeCharacter(
  16706. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16707. {
  16708. front: {
  16709. height: math.unit(1.82, "meters"),
  16710. weight: math.unit(140, "lb"),
  16711. name: "Front",
  16712. image: {
  16713. source: "./media/characters/nita/front.svg",
  16714. extra: 2473 / 2363,
  16715. bottom: 0.01
  16716. }
  16717. },
  16718. },
  16719. [
  16720. {
  16721. name: "Normal",
  16722. height: math.unit(1.82, "m")
  16723. },
  16724. {
  16725. name: "Macro",
  16726. height: math.unit(300, "m")
  16727. },
  16728. {
  16729. name: "Mistake Canon",
  16730. height: math.unit(0.5, "miles"),
  16731. default: true
  16732. },
  16733. {
  16734. name: "Big Mistake",
  16735. height: math.unit(13, "miles")
  16736. },
  16737. {
  16738. name: "Playing God",
  16739. height: math.unit(2450, "miles")
  16740. },
  16741. ]
  16742. ))
  16743. characterMakers.push(() => makeCharacter(
  16744. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16745. {
  16746. front: {
  16747. height: math.unit(4, "feet"),
  16748. weight: math.unit(120, "lb"),
  16749. name: "Front",
  16750. image: {
  16751. source: "./media/characters/shiriko/front.svg",
  16752. extra: 195 / 188
  16753. }
  16754. },
  16755. },
  16756. [
  16757. {
  16758. name: "Normal",
  16759. height: math.unit(4, "feet"),
  16760. default: true
  16761. },
  16762. ]
  16763. ))
  16764. characterMakers.push(() => makeCharacter(
  16765. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16766. {
  16767. front: {
  16768. height: math.unit(6, "feet"),
  16769. name: "front",
  16770. image: {
  16771. source: "./media/characters/deja/front.svg",
  16772. extra: 926 / 840,
  16773. bottom: 0.07
  16774. }
  16775. },
  16776. },
  16777. [
  16778. {
  16779. name: "Planck Length",
  16780. height: math.unit(1.6e-35, "meters")
  16781. },
  16782. {
  16783. name: "Normal",
  16784. height: math.unit(30.48, "meters"),
  16785. default: true
  16786. },
  16787. {
  16788. name: "Universal",
  16789. height: math.unit(8.8e26, "meters")
  16790. },
  16791. ]
  16792. ))
  16793. characterMakers.push(() => makeCharacter(
  16794. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16795. {
  16796. side: {
  16797. height: math.unit(8, "feet"),
  16798. weight: math.unit(6300, "lb"),
  16799. name: "Side",
  16800. image: {
  16801. source: "./media/characters/anima/side.svg",
  16802. bottom: 0.035
  16803. }
  16804. },
  16805. },
  16806. [
  16807. {
  16808. name: "Normal",
  16809. height: math.unit(8, "feet"),
  16810. default: true
  16811. },
  16812. ]
  16813. ))
  16814. characterMakers.push(() => makeCharacter(
  16815. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16816. {
  16817. front: {
  16818. height: math.unit(8, "feet"),
  16819. weight: math.unit(350, "lb"),
  16820. name: "Front",
  16821. image: {
  16822. source: "./media/characters/bianca/front.svg",
  16823. extra: 234 / 225,
  16824. bottom: 0.03
  16825. }
  16826. },
  16827. },
  16828. [
  16829. {
  16830. name: "Normal",
  16831. height: math.unit(8, "feet"),
  16832. default: true
  16833. },
  16834. ]
  16835. ))
  16836. characterMakers.push(() => makeCharacter(
  16837. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16838. {
  16839. front: {
  16840. height: math.unit(6, "feet"),
  16841. weight: math.unit(150, "lb"),
  16842. name: "Front",
  16843. image: {
  16844. source: "./media/characters/adinia/front.svg",
  16845. extra: 1845 / 1672,
  16846. bottom: 0.02
  16847. }
  16848. },
  16849. back: {
  16850. height: math.unit(6, "feet"),
  16851. weight: math.unit(150, "lb"),
  16852. name: "Back",
  16853. image: {
  16854. source: "./media/characters/adinia/back.svg",
  16855. extra: 1845 / 1672,
  16856. bottom: 0.002
  16857. }
  16858. },
  16859. },
  16860. [
  16861. {
  16862. name: "Normal",
  16863. height: math.unit(11 + 5 / 12, "feet"),
  16864. default: true
  16865. },
  16866. ]
  16867. ))
  16868. characterMakers.push(() => makeCharacter(
  16869. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16870. {
  16871. front: {
  16872. height: math.unit(3, "meters"),
  16873. weight: math.unit(200, "kg"),
  16874. name: "Front",
  16875. image: {
  16876. source: "./media/characters/lykasa/front.svg",
  16877. extra: 1076 / 976,
  16878. bottom: 0.06
  16879. }
  16880. },
  16881. },
  16882. [
  16883. {
  16884. name: "Normal",
  16885. height: math.unit(3, "meters")
  16886. },
  16887. {
  16888. name: "Kaiju",
  16889. height: math.unit(120, "meters"),
  16890. default: true
  16891. },
  16892. {
  16893. name: "Mega Kaiju",
  16894. height: math.unit(240, "km")
  16895. },
  16896. {
  16897. name: "Giga Kaiju",
  16898. height: math.unit(400, "megameters")
  16899. },
  16900. {
  16901. name: "Tera Kaiju",
  16902. height: math.unit(800, "gigameters")
  16903. },
  16904. {
  16905. name: "Kaiju Dragon Goddess",
  16906. height: math.unit(26, "zettaparsecs")
  16907. },
  16908. ]
  16909. ))
  16910. characterMakers.push(() => makeCharacter(
  16911. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16912. {
  16913. side: {
  16914. height: math.unit(283 / 124 * 6, "feet"),
  16915. weight: math.unit(35000, "lb"),
  16916. name: "Side",
  16917. image: {
  16918. source: "./media/characters/malfaren/side.svg",
  16919. extra: 2500 / 1010,
  16920. bottom: 0.01
  16921. }
  16922. },
  16923. front: {
  16924. height: math.unit(22.36, "feet"),
  16925. weight: math.unit(35000, "lb"),
  16926. name: "Front",
  16927. image: {
  16928. source: "./media/characters/malfaren/front.svg",
  16929. extra: 1631 / 1476,
  16930. bottom: 0.01
  16931. }
  16932. },
  16933. maw: {
  16934. height: math.unit(6.9, "feet"),
  16935. name: "Maw",
  16936. image: {
  16937. source: "./media/characters/malfaren/maw.svg"
  16938. }
  16939. },
  16940. },
  16941. [
  16942. {
  16943. name: "Big",
  16944. height: math.unit(283 / 162 * 6, "feet"),
  16945. },
  16946. {
  16947. name: "Bigger",
  16948. height: math.unit(283 / 124 * 6, "feet")
  16949. },
  16950. {
  16951. name: "Massive",
  16952. height: math.unit(283 / 92 * 6, "feet"),
  16953. default: true
  16954. },
  16955. {
  16956. name: "👀💦",
  16957. height: math.unit(283 / 73 * 6, "feet"),
  16958. },
  16959. ]
  16960. ))
  16961. characterMakers.push(() => makeCharacter(
  16962. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16963. {
  16964. front: {
  16965. height: math.unit(1.7, "m"),
  16966. weight: math.unit(70, "kg"),
  16967. name: "Front",
  16968. image: {
  16969. source: "./media/characters/kernel/front.svg",
  16970. extra: 222 / 210,
  16971. bottom: 0.007
  16972. }
  16973. },
  16974. },
  16975. [
  16976. {
  16977. name: "Nano",
  16978. height: math.unit(17, "micrometers")
  16979. },
  16980. {
  16981. name: "Micro",
  16982. height: math.unit(1.7, "mm")
  16983. },
  16984. {
  16985. name: "Small",
  16986. height: math.unit(1.7, "cm")
  16987. },
  16988. {
  16989. name: "Normal",
  16990. height: math.unit(1.7, "m"),
  16991. default: true
  16992. },
  16993. ]
  16994. ))
  16995. characterMakers.push(() => makeCharacter(
  16996. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16997. {
  16998. front: {
  16999. height: math.unit(1.75, "meters"),
  17000. weight: math.unit(65, "kg"),
  17001. name: "Front",
  17002. image: {
  17003. source: "./media/characters/jayne-folest/front.svg",
  17004. extra: 2115 / 2007,
  17005. bottom: 0.02
  17006. }
  17007. },
  17008. back: {
  17009. height: math.unit(1.75, "meters"),
  17010. weight: math.unit(65, "kg"),
  17011. name: "Back",
  17012. image: {
  17013. source: "./media/characters/jayne-folest/back.svg",
  17014. extra: 2115 / 2007,
  17015. bottom: 0.005
  17016. }
  17017. },
  17018. frontClothed: {
  17019. height: math.unit(1.75, "meters"),
  17020. weight: math.unit(65, "kg"),
  17021. name: "Front (Clothed)",
  17022. image: {
  17023. source: "./media/characters/jayne-folest/front-clothed.svg",
  17024. extra: 2115 / 2007,
  17025. bottom: 0.035
  17026. }
  17027. },
  17028. hand: {
  17029. height: math.unit(1 / 1.260, "feet"),
  17030. name: "Hand",
  17031. image: {
  17032. source: "./media/characters/jayne-folest/hand.svg"
  17033. }
  17034. },
  17035. foot: {
  17036. height: math.unit(1 / 0.918, "feet"),
  17037. name: "Foot",
  17038. image: {
  17039. source: "./media/characters/jayne-folest/foot.svg"
  17040. }
  17041. },
  17042. },
  17043. [
  17044. {
  17045. name: "Micro",
  17046. height: math.unit(4, "cm")
  17047. },
  17048. {
  17049. name: "Normal",
  17050. height: math.unit(1.75, "meters")
  17051. },
  17052. {
  17053. name: "Macro",
  17054. height: math.unit(47.5, "meters"),
  17055. default: true
  17056. },
  17057. ]
  17058. ))
  17059. characterMakers.push(() => makeCharacter(
  17060. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17061. {
  17062. front: {
  17063. height: math.unit(180, "cm"),
  17064. weight: math.unit(70, "kg"),
  17065. name: "Front",
  17066. image: {
  17067. source: "./media/characters/algier/front.svg",
  17068. extra: 596 / 572,
  17069. bottom: 0.04
  17070. }
  17071. },
  17072. back: {
  17073. height: math.unit(180, "cm"),
  17074. weight: math.unit(70, "kg"),
  17075. name: "Back",
  17076. image: {
  17077. source: "./media/characters/algier/back.svg",
  17078. extra: 596 / 572,
  17079. bottom: 0.025
  17080. }
  17081. },
  17082. frontdressed: {
  17083. height: math.unit(180, "cm"),
  17084. weight: math.unit(150, "kg"),
  17085. name: "Front-dressed",
  17086. image: {
  17087. source: "./media/characters/algier/front-dressed.svg",
  17088. extra: 596 / 572,
  17089. bottom: 0.038
  17090. }
  17091. },
  17092. },
  17093. [
  17094. {
  17095. name: "Micro",
  17096. height: math.unit(5, "cm")
  17097. },
  17098. {
  17099. name: "Normal",
  17100. height: math.unit(180, "cm"),
  17101. default: true
  17102. },
  17103. {
  17104. name: "Macro",
  17105. height: math.unit(64, "m")
  17106. },
  17107. ]
  17108. ))
  17109. characterMakers.push(() => makeCharacter(
  17110. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17111. {
  17112. upright: {
  17113. height: math.unit(7, "feet"),
  17114. weight: math.unit(300, "lb"),
  17115. name: "Upright",
  17116. image: {
  17117. source: "./media/characters/pretzel/upright.svg",
  17118. extra: 534 / 522,
  17119. bottom: 0.065
  17120. }
  17121. },
  17122. sprawling: {
  17123. height: math.unit(3.75, "feet"),
  17124. weight: math.unit(300, "lb"),
  17125. name: "Sprawling",
  17126. image: {
  17127. source: "./media/characters/pretzel/sprawling.svg",
  17128. extra: 314 / 281,
  17129. bottom: 0.1
  17130. }
  17131. },
  17132. tongue: {
  17133. height: math.unit(2, "feet"),
  17134. name: "Tongue",
  17135. image: {
  17136. source: "./media/characters/pretzel/tongue.svg"
  17137. }
  17138. },
  17139. },
  17140. [
  17141. {
  17142. name: "Normal",
  17143. height: math.unit(7, "feet"),
  17144. default: true
  17145. },
  17146. {
  17147. name: "Oversized",
  17148. height: math.unit(15, "feet")
  17149. },
  17150. {
  17151. name: "Huge",
  17152. height: math.unit(30, "feet")
  17153. },
  17154. {
  17155. name: "Macro",
  17156. height: math.unit(250, "feet")
  17157. },
  17158. ]
  17159. ))
  17160. characterMakers.push(() => makeCharacter(
  17161. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17162. {
  17163. sideFront: {
  17164. height: math.unit(5 + 2 / 12, "feet"),
  17165. weight: math.unit(120, "lb"),
  17166. name: "Front Side",
  17167. image: {
  17168. source: "./media/characters/roxi/side-front.svg",
  17169. extra: 2924 / 2717,
  17170. bottom: 0.08
  17171. }
  17172. },
  17173. sideBack: {
  17174. height: math.unit(5 + 2 / 12, "feet"),
  17175. weight: math.unit(120, "lb"),
  17176. name: "Back Side",
  17177. image: {
  17178. source: "./media/characters/roxi/side-back.svg",
  17179. extra: 2904 / 2693,
  17180. bottom: 0.06
  17181. }
  17182. },
  17183. front: {
  17184. height: math.unit(5 + 2 / 12, "feet"),
  17185. weight: math.unit(120, "lb"),
  17186. name: "Front",
  17187. image: {
  17188. source: "./media/characters/roxi/front.svg",
  17189. extra: 2028 / 1907,
  17190. bottom: 0.01
  17191. }
  17192. },
  17193. frontAlt: {
  17194. height: math.unit(5 + 2 / 12, "feet"),
  17195. weight: math.unit(120, "lb"),
  17196. name: "Front (Alt)",
  17197. image: {
  17198. source: "./media/characters/roxi/front-alt.svg",
  17199. extra: 1828 / 1798,
  17200. bottom: 0.01
  17201. }
  17202. },
  17203. sitting: {
  17204. height: math.unit(2.8, "feet"),
  17205. weight: math.unit(120, "lb"),
  17206. name: "Sitting",
  17207. image: {
  17208. source: "./media/characters/roxi/sitting.svg",
  17209. extra: 2660 / 2462,
  17210. bottom: 0.1
  17211. }
  17212. },
  17213. },
  17214. [
  17215. {
  17216. name: "Normal",
  17217. height: math.unit(5 + 2 / 12, "feet"),
  17218. default: true
  17219. },
  17220. ]
  17221. ))
  17222. characterMakers.push(() => makeCharacter(
  17223. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17224. {
  17225. side: {
  17226. height: math.unit(55, "feet"),
  17227. weight: math.unit(153, "tons"),
  17228. name: "Side",
  17229. image: {
  17230. source: "./media/characters/shadow/side.svg",
  17231. extra: 701 / 628,
  17232. bottom: 0.02
  17233. }
  17234. },
  17235. flying: {
  17236. height: math.unit(145, "feet"),
  17237. weight: math.unit(153, "tons"),
  17238. name: "Flying",
  17239. image: {
  17240. source: "./media/characters/shadow/flying.svg"
  17241. }
  17242. },
  17243. },
  17244. [
  17245. {
  17246. name: "Normal",
  17247. height: math.unit(55, "feet"),
  17248. default: true
  17249. },
  17250. ]
  17251. ))
  17252. characterMakers.push(() => makeCharacter(
  17253. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17254. {
  17255. front: {
  17256. height: math.unit(6, "feet"),
  17257. weight: math.unit(200, "lb"),
  17258. name: "Front",
  17259. image: {
  17260. source: "./media/characters/marcie/front.svg",
  17261. extra: 960 / 876,
  17262. bottom: 58 / 1017.87
  17263. }
  17264. },
  17265. },
  17266. [
  17267. {
  17268. name: "Macro",
  17269. height: math.unit(1, "mile"),
  17270. default: true
  17271. },
  17272. ]
  17273. ))
  17274. characterMakers.push(() => makeCharacter(
  17275. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17276. {
  17277. front: {
  17278. height: math.unit(7, "feet"),
  17279. weight: math.unit(200, "lb"),
  17280. name: "Front",
  17281. image: {
  17282. source: "./media/characters/kachina/front.svg",
  17283. extra: 1290.68 / 1119,
  17284. bottom: 36.5 / 1327.18
  17285. }
  17286. },
  17287. },
  17288. [
  17289. {
  17290. name: "Normal",
  17291. height: math.unit(7, "feet"),
  17292. default: true
  17293. },
  17294. ]
  17295. ))
  17296. characterMakers.push(() => makeCharacter(
  17297. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17298. {
  17299. looking: {
  17300. height: math.unit(2, "meters"),
  17301. weight: math.unit(300, "kg"),
  17302. name: "Looking",
  17303. image: {
  17304. source: "./media/characters/kash/looking.svg",
  17305. extra: 474 / 344,
  17306. bottom: 0.03
  17307. }
  17308. },
  17309. side: {
  17310. height: math.unit(2, "meters"),
  17311. weight: math.unit(300, "kg"),
  17312. name: "Side",
  17313. image: {
  17314. source: "./media/characters/kash/side.svg",
  17315. extra: 302 / 251,
  17316. bottom: 0.03
  17317. }
  17318. },
  17319. front: {
  17320. height: math.unit(2, "meters"),
  17321. weight: math.unit(300, "kg"),
  17322. name: "Front",
  17323. image: {
  17324. source: "./media/characters/kash/front.svg",
  17325. extra: 495 / 360,
  17326. bottom: 0.015
  17327. }
  17328. },
  17329. },
  17330. [
  17331. {
  17332. name: "Normal",
  17333. height: math.unit(2, "meters"),
  17334. default: true
  17335. },
  17336. {
  17337. name: "Big",
  17338. height: math.unit(3, "meters")
  17339. },
  17340. {
  17341. name: "Large",
  17342. height: math.unit(5, "meters")
  17343. },
  17344. ]
  17345. ))
  17346. characterMakers.push(() => makeCharacter(
  17347. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17348. {
  17349. feeding: {
  17350. height: math.unit(6.7, "feet"),
  17351. weight: math.unit(350, "lb"),
  17352. name: "Feeding",
  17353. image: {
  17354. source: "./media/characters/lalim/feeding.svg",
  17355. }
  17356. },
  17357. },
  17358. [
  17359. {
  17360. name: "Normal",
  17361. height: math.unit(6.7, "feet"),
  17362. default: true
  17363. },
  17364. ]
  17365. ))
  17366. characterMakers.push(() => makeCharacter(
  17367. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17368. {
  17369. front: {
  17370. height: math.unit(9.5, "feet"),
  17371. weight: math.unit(600, "lb"),
  17372. name: "Front",
  17373. image: {
  17374. source: "./media/characters/de'vout/front.svg",
  17375. extra: 1443 / 1328,
  17376. bottom: 0.025
  17377. }
  17378. },
  17379. back: {
  17380. height: math.unit(9.5, "feet"),
  17381. weight: math.unit(600, "lb"),
  17382. name: "Back",
  17383. image: {
  17384. source: "./media/characters/de'vout/back.svg",
  17385. extra: 1443 / 1328
  17386. }
  17387. },
  17388. frontDressed: {
  17389. height: math.unit(9.5, "feet"),
  17390. weight: math.unit(600, "lb"),
  17391. name: "Front (Dressed",
  17392. image: {
  17393. source: "./media/characters/de'vout/front-dressed.svg",
  17394. extra: 1443 / 1328,
  17395. bottom: 0.025
  17396. }
  17397. },
  17398. backDressed: {
  17399. height: math.unit(9.5, "feet"),
  17400. weight: math.unit(600, "lb"),
  17401. name: "Back (Dressed",
  17402. image: {
  17403. source: "./media/characters/de'vout/back-dressed.svg",
  17404. extra: 1443 / 1328
  17405. }
  17406. },
  17407. },
  17408. [
  17409. {
  17410. name: "Normal",
  17411. height: math.unit(9.5, "feet"),
  17412. default: true
  17413. },
  17414. ]
  17415. ))
  17416. characterMakers.push(() => makeCharacter(
  17417. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17418. {
  17419. front: {
  17420. height: math.unit(8, "feet"),
  17421. weight: math.unit(225, "lb"),
  17422. name: "Front",
  17423. image: {
  17424. source: "./media/characters/talana/front.svg",
  17425. extra: 1410 / 1300,
  17426. bottom: 0.015
  17427. }
  17428. },
  17429. frontDressed: {
  17430. height: math.unit(8, "feet"),
  17431. weight: math.unit(225, "lb"),
  17432. name: "Front (Dressed",
  17433. image: {
  17434. source: "./media/characters/talana/front-dressed.svg",
  17435. extra: 1410 / 1300,
  17436. bottom: 0.015
  17437. }
  17438. },
  17439. },
  17440. [
  17441. {
  17442. name: "Normal",
  17443. height: math.unit(8, "feet"),
  17444. default: true
  17445. },
  17446. ]
  17447. ))
  17448. characterMakers.push(() => makeCharacter(
  17449. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17450. {
  17451. side: {
  17452. height: math.unit(7.2, "feet"),
  17453. weight: math.unit(150, "lb"),
  17454. name: "Side",
  17455. image: {
  17456. source: "./media/characters/xeauvok/side.svg",
  17457. extra: 1975 / 1523,
  17458. bottom: 0.07
  17459. }
  17460. },
  17461. },
  17462. [
  17463. {
  17464. name: "Normal",
  17465. height: math.unit(7.2, "feet"),
  17466. default: true
  17467. },
  17468. ]
  17469. ))
  17470. characterMakers.push(() => makeCharacter(
  17471. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17472. {
  17473. side: {
  17474. height: math.unit(10, "feet"),
  17475. weight: math.unit(900, "kg"),
  17476. name: "Side",
  17477. image: {
  17478. source: "./media/characters/zara/side.svg",
  17479. extra: 504 / 498
  17480. }
  17481. },
  17482. },
  17483. [
  17484. {
  17485. name: "Normal",
  17486. height: math.unit(10, "feet"),
  17487. default: true
  17488. },
  17489. ]
  17490. ))
  17491. characterMakers.push(() => makeCharacter(
  17492. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17493. {
  17494. side: {
  17495. height: math.unit(6, "feet"),
  17496. weight: math.unit(150, "lb"),
  17497. name: "Side",
  17498. image: {
  17499. source: "./media/characters/richard-dragon/side.svg",
  17500. extra: 845 / 340,
  17501. bottom: 0.017
  17502. }
  17503. },
  17504. maw: {
  17505. height: math.unit(2.97, "feet"),
  17506. name: "Maw",
  17507. image: {
  17508. source: "./media/characters/richard-dragon/maw.svg"
  17509. }
  17510. },
  17511. },
  17512. [
  17513. ]
  17514. ))
  17515. characterMakers.push(() => makeCharacter(
  17516. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17517. {
  17518. front: {
  17519. height: math.unit(4, "feet"),
  17520. weight: math.unit(100, "lb"),
  17521. name: "Front",
  17522. image: {
  17523. source: "./media/characters/richard-smeargle/front.svg",
  17524. extra: 2952 / 2820,
  17525. bottom: 0.028
  17526. }
  17527. },
  17528. },
  17529. [
  17530. {
  17531. name: "Normal",
  17532. height: math.unit(4, "feet"),
  17533. default: true
  17534. },
  17535. {
  17536. name: "Dynamax",
  17537. height: math.unit(20, "meters")
  17538. },
  17539. ]
  17540. ))
  17541. characterMakers.push(() => makeCharacter(
  17542. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17543. {
  17544. front: {
  17545. height: math.unit(6, "feet"),
  17546. weight: math.unit(110, "lb"),
  17547. name: "Front",
  17548. image: {
  17549. source: "./media/characters/klay/front.svg",
  17550. extra: 962 / 883,
  17551. bottom: 0.04
  17552. }
  17553. },
  17554. back: {
  17555. height: math.unit(6, "feet"),
  17556. weight: math.unit(110, "lb"),
  17557. name: "Back",
  17558. image: {
  17559. source: "./media/characters/klay/back.svg",
  17560. extra: 962 / 883
  17561. }
  17562. },
  17563. beans: {
  17564. height: math.unit(1.15, "feet"),
  17565. name: "Beans",
  17566. image: {
  17567. source: "./media/characters/klay/beans.svg"
  17568. }
  17569. },
  17570. },
  17571. [
  17572. {
  17573. name: "Micro",
  17574. height: math.unit(6, "inches")
  17575. },
  17576. {
  17577. name: "Mini",
  17578. height: math.unit(3, "feet")
  17579. },
  17580. {
  17581. name: "Normal",
  17582. height: math.unit(6, "feet"),
  17583. default: true
  17584. },
  17585. {
  17586. name: "Big",
  17587. height: math.unit(25, "feet")
  17588. },
  17589. {
  17590. name: "Macro",
  17591. height: math.unit(100, "feet")
  17592. },
  17593. {
  17594. name: "Megamacro",
  17595. height: math.unit(400, "feet")
  17596. },
  17597. ]
  17598. ))
  17599. characterMakers.push(() => makeCharacter(
  17600. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17601. {
  17602. front: {
  17603. height: math.unit(6, "feet"),
  17604. weight: math.unit(160, "lb"),
  17605. name: "Front",
  17606. image: {
  17607. source: "./media/characters/marcus/front.svg",
  17608. extra: 734 / 676,
  17609. bottom: 0.03
  17610. }
  17611. },
  17612. },
  17613. [
  17614. {
  17615. name: "Little",
  17616. height: math.unit(6, "feet")
  17617. },
  17618. {
  17619. name: "Normal",
  17620. height: math.unit(110, "feet"),
  17621. default: true
  17622. },
  17623. {
  17624. name: "Macro",
  17625. height: math.unit(250, "feet")
  17626. },
  17627. {
  17628. name: "Megamacro",
  17629. height: math.unit(1000, "feet")
  17630. },
  17631. ]
  17632. ))
  17633. characterMakers.push(() => makeCharacter(
  17634. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17635. {
  17636. front: {
  17637. height: math.unit(7, "feet"),
  17638. weight: math.unit(275, "lb"),
  17639. name: "Front",
  17640. image: {
  17641. source: "./media/characters/claude-delroute/front.svg",
  17642. extra: 230 / 214,
  17643. bottom: 0.007
  17644. }
  17645. },
  17646. side: {
  17647. height: math.unit(7, "feet"),
  17648. weight: math.unit(275, "lb"),
  17649. name: "Side",
  17650. image: {
  17651. source: "./media/characters/claude-delroute/side.svg",
  17652. extra: 222 / 214,
  17653. bottom: 0.01
  17654. }
  17655. },
  17656. back: {
  17657. height: math.unit(7, "feet"),
  17658. weight: math.unit(275, "lb"),
  17659. name: "Back",
  17660. image: {
  17661. source: "./media/characters/claude-delroute/back.svg",
  17662. extra: 230 / 214,
  17663. bottom: 0.015
  17664. }
  17665. },
  17666. maw: {
  17667. height: math.unit(0.6407, "meters"),
  17668. name: "Maw",
  17669. image: {
  17670. source: "./media/characters/claude-delroute/maw.svg"
  17671. }
  17672. },
  17673. },
  17674. [
  17675. {
  17676. name: "Normal",
  17677. height: math.unit(7, "feet"),
  17678. default: true
  17679. },
  17680. {
  17681. name: "Lorge",
  17682. height: math.unit(20, "feet")
  17683. },
  17684. ]
  17685. ))
  17686. characterMakers.push(() => makeCharacter(
  17687. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17688. {
  17689. front: {
  17690. height: math.unit(8 + 4 / 12, "feet"),
  17691. weight: math.unit(600, "lb"),
  17692. name: "Front",
  17693. image: {
  17694. source: "./media/characters/dragonien/front.svg",
  17695. extra: 100 / 94,
  17696. bottom: 3.3 / 103.3445
  17697. }
  17698. },
  17699. back: {
  17700. height: math.unit(8 + 4 / 12, "feet"),
  17701. weight: math.unit(600, "lb"),
  17702. name: "Back",
  17703. image: {
  17704. source: "./media/characters/dragonien/back.svg",
  17705. extra: 776 / 746,
  17706. bottom: 6.4 / 782.0616
  17707. }
  17708. },
  17709. foot: {
  17710. height: math.unit(1.54, "feet"),
  17711. name: "Foot",
  17712. image: {
  17713. source: "./media/characters/dragonien/foot.svg",
  17714. }
  17715. },
  17716. },
  17717. [
  17718. {
  17719. name: "Normal",
  17720. height: math.unit(8 + 4 / 12, "feet"),
  17721. default: true
  17722. },
  17723. {
  17724. name: "Macro",
  17725. height: math.unit(200, "feet")
  17726. },
  17727. {
  17728. name: "Megamacro",
  17729. height: math.unit(1, "mile")
  17730. },
  17731. {
  17732. name: "Gigamacro",
  17733. height: math.unit(1000, "miles")
  17734. },
  17735. ]
  17736. ))
  17737. characterMakers.push(() => makeCharacter(
  17738. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17739. {
  17740. front: {
  17741. height: math.unit(5 + 2 / 12, "feet"),
  17742. weight: math.unit(110, "lb"),
  17743. name: "Front",
  17744. image: {
  17745. source: "./media/characters/desta/front.svg",
  17746. extra: 767 / 726,
  17747. bottom: 11.7 / 779
  17748. }
  17749. },
  17750. back: {
  17751. height: math.unit(5 + 2 / 12, "feet"),
  17752. weight: math.unit(110, "lb"),
  17753. name: "Back",
  17754. image: {
  17755. source: "./media/characters/desta/back.svg",
  17756. extra: 777 / 728,
  17757. bottom: 6 / 784
  17758. }
  17759. },
  17760. frontAlt: {
  17761. height: math.unit(5 + 2 / 12, "feet"),
  17762. weight: math.unit(110, "lb"),
  17763. name: "Front",
  17764. image: {
  17765. source: "./media/characters/desta/front-alt.svg",
  17766. extra: 1482 / 1417
  17767. }
  17768. },
  17769. side: {
  17770. height: math.unit(5 + 2 / 12, "feet"),
  17771. weight: math.unit(110, "lb"),
  17772. name: "Side",
  17773. image: {
  17774. source: "./media/characters/desta/side.svg",
  17775. extra: 2579 / 2491,
  17776. bottom: 0.053
  17777. }
  17778. },
  17779. },
  17780. [
  17781. {
  17782. name: "Micro",
  17783. height: math.unit(6, "inches")
  17784. },
  17785. {
  17786. name: "Normal",
  17787. height: math.unit(5 + 2 / 12, "feet"),
  17788. default: true
  17789. },
  17790. {
  17791. name: "Macro",
  17792. height: math.unit(62, "feet")
  17793. },
  17794. {
  17795. name: "Megamacro",
  17796. height: math.unit(1800, "feet")
  17797. },
  17798. ]
  17799. ))
  17800. characterMakers.push(() => makeCharacter(
  17801. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17802. {
  17803. front: {
  17804. height: math.unit(10, "feet"),
  17805. weight: math.unit(700, "lb"),
  17806. name: "Front",
  17807. image: {
  17808. source: "./media/characters/storm-alystar/front.svg",
  17809. extra: 2112 / 1898,
  17810. bottom: 0.034
  17811. }
  17812. },
  17813. },
  17814. [
  17815. {
  17816. name: "Micro",
  17817. height: math.unit(3.5, "inches")
  17818. },
  17819. {
  17820. name: "Normal",
  17821. height: math.unit(10, "feet"),
  17822. default: true
  17823. },
  17824. {
  17825. name: "Macro",
  17826. height: math.unit(400, "feet")
  17827. },
  17828. {
  17829. name: "Deific",
  17830. height: math.unit(60, "miles")
  17831. },
  17832. ]
  17833. ))
  17834. characterMakers.push(() => makeCharacter(
  17835. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17836. {
  17837. front: {
  17838. height: math.unit(2.35, "meters"),
  17839. weight: math.unit(119, "kg"),
  17840. name: "Front",
  17841. image: {
  17842. source: "./media/characters/ilia/front.svg",
  17843. extra: 1285 / 1255,
  17844. bottom: 0.06
  17845. }
  17846. },
  17847. },
  17848. [
  17849. {
  17850. name: "Normal",
  17851. height: math.unit(2.35, "meters")
  17852. },
  17853. {
  17854. name: "Macro",
  17855. height: math.unit(140, "meters"),
  17856. default: true
  17857. },
  17858. {
  17859. name: "Megamacro",
  17860. height: math.unit(100, "miles")
  17861. },
  17862. ]
  17863. ))
  17864. characterMakers.push(() => makeCharacter(
  17865. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17866. {
  17867. front: {
  17868. height: math.unit(6 + 5 / 12, "feet"),
  17869. weight: math.unit(190, "lb"),
  17870. name: "Front",
  17871. image: {
  17872. source: "./media/characters/kingdead/front.svg",
  17873. extra: 1228 / 1177
  17874. }
  17875. },
  17876. },
  17877. [
  17878. {
  17879. name: "Micro",
  17880. height: math.unit(7, "inches")
  17881. },
  17882. {
  17883. name: "Normal",
  17884. height: math.unit(6 + 5 / 12, "feet")
  17885. },
  17886. {
  17887. name: "Macro",
  17888. height: math.unit(150, "feet"),
  17889. default: true
  17890. },
  17891. {
  17892. name: "Megamacro",
  17893. height: math.unit(200, "miles")
  17894. },
  17895. ]
  17896. ))
  17897. characterMakers.push(() => makeCharacter(
  17898. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17899. {
  17900. front: {
  17901. height: math.unit(8, "feet"),
  17902. weight: math.unit(600, "lb"),
  17903. name: "Front",
  17904. image: {
  17905. source: "./media/characters/kyrehx/front.svg",
  17906. extra: 1195 / 1095,
  17907. bottom: 0.034
  17908. }
  17909. },
  17910. },
  17911. [
  17912. {
  17913. name: "Micro",
  17914. height: math.unit(2, "inches")
  17915. },
  17916. {
  17917. name: "Normal",
  17918. height: math.unit(8, "feet"),
  17919. default: true
  17920. },
  17921. {
  17922. name: "Macro",
  17923. height: math.unit(255, "feet")
  17924. },
  17925. ]
  17926. ))
  17927. characterMakers.push(() => makeCharacter(
  17928. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17929. {
  17930. front: {
  17931. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17932. weight: math.unit(184, "lb"),
  17933. name: "Front",
  17934. image: {
  17935. source: "./media/characters/xang/front.svg",
  17936. extra: 845 / 755
  17937. }
  17938. },
  17939. },
  17940. [
  17941. {
  17942. name: "Normal",
  17943. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17944. default: true
  17945. },
  17946. {
  17947. name: "Macro",
  17948. height: math.unit(0.935 * 146, "feet")
  17949. },
  17950. {
  17951. name: "Megamacro",
  17952. height: math.unit(0.935 * 3, "miles")
  17953. },
  17954. ]
  17955. ))
  17956. characterMakers.push(() => makeCharacter(
  17957. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17958. {
  17959. frontDressed: {
  17960. height: math.unit(5 + 7 / 12, "feet"),
  17961. weight: math.unit(140, "lb"),
  17962. name: "Front (Dressed)",
  17963. image: {
  17964. source: "./media/characters/doc-weardno/front-dressed.svg",
  17965. extra: 263 / 234
  17966. }
  17967. },
  17968. backDressed: {
  17969. height: math.unit(5 + 7 / 12, "feet"),
  17970. weight: math.unit(140, "lb"),
  17971. name: "Back (Dressed)",
  17972. image: {
  17973. source: "./media/characters/doc-weardno/back-dressed.svg",
  17974. extra: 266 / 238
  17975. }
  17976. },
  17977. front: {
  17978. height: math.unit(5 + 7 / 12, "feet"),
  17979. weight: math.unit(140, "lb"),
  17980. name: "Front",
  17981. image: {
  17982. source: "./media/characters/doc-weardno/front.svg",
  17983. extra: 254 / 233
  17984. }
  17985. },
  17986. },
  17987. [
  17988. {
  17989. name: "Micro",
  17990. height: math.unit(3, "inches")
  17991. },
  17992. {
  17993. name: "Normal",
  17994. height: math.unit(5 + 7 / 12, "feet"),
  17995. default: true
  17996. },
  17997. {
  17998. name: "Macro",
  17999. height: math.unit(25, "feet")
  18000. },
  18001. {
  18002. name: "Megamacro",
  18003. height: math.unit(2, "miles")
  18004. },
  18005. ]
  18006. ))
  18007. characterMakers.push(() => makeCharacter(
  18008. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18009. {
  18010. front: {
  18011. height: math.unit(6 + 2 / 12, "feet"),
  18012. weight: math.unit(153, "lb"),
  18013. name: "Front",
  18014. image: {
  18015. source: "./media/characters/seth-whilst/front.svg",
  18016. bottom: 0.07
  18017. }
  18018. },
  18019. },
  18020. [
  18021. {
  18022. name: "Micro",
  18023. height: math.unit(5, "inches")
  18024. },
  18025. {
  18026. name: "Normal",
  18027. height: math.unit(6 + 2 / 12, "feet"),
  18028. default: true
  18029. },
  18030. ]
  18031. ))
  18032. characterMakers.push(() => makeCharacter(
  18033. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18034. {
  18035. front: {
  18036. height: math.unit(3, "inches"),
  18037. weight: math.unit(8, "grams"),
  18038. name: "Front",
  18039. image: {
  18040. source: "./media/characters/pocket-jabari/front.svg",
  18041. extra: 1024 / 974,
  18042. bottom: 0.039
  18043. }
  18044. },
  18045. },
  18046. [
  18047. {
  18048. name: "Minimicro",
  18049. height: math.unit(8, "mm")
  18050. },
  18051. {
  18052. name: "Micro",
  18053. height: math.unit(3, "inches"),
  18054. default: true
  18055. },
  18056. {
  18057. name: "Normal",
  18058. height: math.unit(3, "feet")
  18059. },
  18060. ]
  18061. ))
  18062. characterMakers.push(() => makeCharacter(
  18063. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18064. {
  18065. front: {
  18066. height: math.unit(15, "feet"),
  18067. weight: math.unit(3280, "lb"),
  18068. name: "Front",
  18069. image: {
  18070. source: "./media/characters/sapphy/front.svg",
  18071. extra: 671 / 577,
  18072. bottom: 0.085
  18073. }
  18074. },
  18075. back: {
  18076. height: math.unit(15, "feet"),
  18077. weight: math.unit(3280, "lb"),
  18078. name: "Back",
  18079. image: {
  18080. source: "./media/characters/sapphy/back.svg",
  18081. extra: 631 / 607,
  18082. bottom: 0.045
  18083. }
  18084. },
  18085. },
  18086. [
  18087. {
  18088. name: "Normal",
  18089. height: math.unit(15, "feet")
  18090. },
  18091. {
  18092. name: "Casual Macro",
  18093. height: math.unit(120, "feet")
  18094. },
  18095. {
  18096. name: "Macro",
  18097. height: math.unit(2150, "feet"),
  18098. default: true
  18099. },
  18100. {
  18101. name: "Megamacro",
  18102. height: math.unit(8, "miles")
  18103. },
  18104. {
  18105. name: "Galaxy Mom",
  18106. height: math.unit(6, "megalightyears")
  18107. },
  18108. ]
  18109. ))
  18110. characterMakers.push(() => makeCharacter(
  18111. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  18112. {
  18113. front: {
  18114. height: math.unit(6, "feet"),
  18115. weight: math.unit(170, "lb"),
  18116. name: "Front",
  18117. image: {
  18118. source: "./media/characters/kiro/front.svg",
  18119. extra: 1064 / 1012,
  18120. bottom: 0.052
  18121. }
  18122. },
  18123. },
  18124. [
  18125. {
  18126. name: "Micro",
  18127. height: math.unit(6, "inches")
  18128. },
  18129. {
  18130. name: "Normal",
  18131. height: math.unit(6, "feet"),
  18132. default: true
  18133. },
  18134. {
  18135. name: "Macro",
  18136. height: math.unit(72, "feet")
  18137. },
  18138. ]
  18139. ))
  18140. characterMakers.push(() => makeCharacter(
  18141. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18142. {
  18143. front: {
  18144. height: math.unit(5 + 9 / 12, "feet"),
  18145. weight: math.unit(175, "lb"),
  18146. name: "Front",
  18147. image: {
  18148. source: "./media/characters/irishfox/front.svg",
  18149. extra: 1912 / 1680,
  18150. bottom: 0.02
  18151. }
  18152. },
  18153. },
  18154. [
  18155. {
  18156. name: "Nano",
  18157. height: math.unit(1, "mm")
  18158. },
  18159. {
  18160. name: "Micro",
  18161. height: math.unit(2, "inches")
  18162. },
  18163. {
  18164. name: "Normal",
  18165. height: math.unit(5 + 9 / 12, "feet"),
  18166. default: true
  18167. },
  18168. {
  18169. name: "Macro",
  18170. height: math.unit(45, "feet")
  18171. },
  18172. ]
  18173. ))
  18174. characterMakers.push(() => makeCharacter(
  18175. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18176. {
  18177. front: {
  18178. height: math.unit(6 + 1 / 12, "feet"),
  18179. weight: math.unit(150, "lb"),
  18180. name: "Front",
  18181. image: {
  18182. source: "./media/characters/aronai-sieyes/front.svg",
  18183. extra: 1556 / 1480,
  18184. bottom: 0.015
  18185. }
  18186. },
  18187. side: {
  18188. height: math.unit(6 + 1 / 12, "feet"),
  18189. weight: math.unit(150, "lb"),
  18190. name: "Side",
  18191. image: {
  18192. source: "./media/characters/aronai-sieyes/side.svg",
  18193. extra: 1433 / 1390,
  18194. bottom: 0.0393
  18195. }
  18196. },
  18197. back: {
  18198. height: math.unit(6 + 1 / 12, "feet"),
  18199. weight: math.unit(150, "lb"),
  18200. name: "Back",
  18201. image: {
  18202. source: "./media/characters/aronai-sieyes/back.svg",
  18203. extra: 1544 / 1494,
  18204. bottom: 0.02
  18205. }
  18206. },
  18207. frontClothed: {
  18208. height: math.unit(6 + 1 / 12, "feet"),
  18209. weight: math.unit(150, "lb"),
  18210. name: "Front (Clothed)",
  18211. image: {
  18212. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18213. extra: 1582 / 1527
  18214. }
  18215. },
  18216. feral: {
  18217. height: math.unit(18, "feet"),
  18218. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  18219. name: "Feral",
  18220. image: {
  18221. source: "./media/characters/aronai-sieyes/feral.svg",
  18222. extra: 1530 / 1240,
  18223. bottom: 0.035
  18224. }
  18225. },
  18226. },
  18227. [
  18228. {
  18229. name: "Micro",
  18230. height: math.unit(2, "inches")
  18231. },
  18232. {
  18233. name: "Normal",
  18234. height: math.unit(6 + 1 / 12, "feet"),
  18235. default: true
  18236. }
  18237. ]
  18238. ))
  18239. characterMakers.push(() => makeCharacter(
  18240. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18241. {
  18242. front: {
  18243. height: math.unit(12, "feet"),
  18244. weight: math.unit(410, "kg"),
  18245. name: "Front",
  18246. image: {
  18247. source: "./media/characters/xuna/front.svg",
  18248. extra: 2184 / 1980
  18249. }
  18250. },
  18251. side: {
  18252. height: math.unit(12, "feet"),
  18253. weight: math.unit(410, "kg"),
  18254. name: "Side",
  18255. image: {
  18256. source: "./media/characters/xuna/side.svg",
  18257. extra: 2184 / 1980
  18258. }
  18259. },
  18260. back: {
  18261. height: math.unit(12, "feet"),
  18262. weight: math.unit(410, "kg"),
  18263. name: "Back",
  18264. image: {
  18265. source: "./media/characters/xuna/back.svg",
  18266. extra: 2184 / 1980
  18267. }
  18268. },
  18269. },
  18270. [
  18271. {
  18272. name: "Nano glow",
  18273. height: math.unit(10, "nm")
  18274. },
  18275. {
  18276. name: "Micro floof",
  18277. height: math.unit(0.3, "m")
  18278. },
  18279. {
  18280. name: "Huggable softy boi",
  18281. height: math.unit(3.6576, "m"),
  18282. default: true
  18283. },
  18284. {
  18285. name: "Admirable floof",
  18286. height: math.unit(80, "meters")
  18287. },
  18288. {
  18289. name: "Gentle macro",
  18290. height: math.unit(300, "meters")
  18291. },
  18292. {
  18293. name: "Very careful floof",
  18294. height: math.unit(3200, "meters")
  18295. },
  18296. {
  18297. name: "The mega floof",
  18298. height: math.unit(36000, "meters")
  18299. },
  18300. {
  18301. name: "Giga-fur-Wicker",
  18302. height: math.unit(4800000, "meters")
  18303. },
  18304. {
  18305. name: "Licky world",
  18306. height: math.unit(20000000, "meters")
  18307. },
  18308. {
  18309. name: "Floofy cyan sun",
  18310. height: math.unit(1500000000, "meters")
  18311. },
  18312. {
  18313. name: "Milky Wicker",
  18314. height: math.unit(1000000000000000000000, "meters")
  18315. },
  18316. {
  18317. name: "The observing Wicker",
  18318. height: math.unit(999999999999999999999999999, "meters")
  18319. },
  18320. ]
  18321. ))
  18322. characterMakers.push(() => makeCharacter(
  18323. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18324. {
  18325. front: {
  18326. height: math.unit(5 + 9 / 12, "feet"),
  18327. weight: math.unit(150, "lb"),
  18328. name: "Front",
  18329. image: {
  18330. source: "./media/characters/arokha-sieyes/front.svg",
  18331. extra: 1425 / 1284,
  18332. bottom: 0.05
  18333. }
  18334. },
  18335. },
  18336. [
  18337. {
  18338. name: "Normal",
  18339. height: math.unit(5 + 9 / 12, "feet")
  18340. },
  18341. {
  18342. name: "Macro",
  18343. height: math.unit(30, "meters"),
  18344. default: true
  18345. },
  18346. ]
  18347. ))
  18348. characterMakers.push(() => makeCharacter(
  18349. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18350. {
  18351. front: {
  18352. height: math.unit(6, "feet"),
  18353. weight: math.unit(180, "lb"),
  18354. name: "Front",
  18355. image: {
  18356. source: "./media/characters/arokh-sieyes/front.svg",
  18357. extra: 1830 / 1769,
  18358. bottom: 0.01
  18359. }
  18360. },
  18361. },
  18362. [
  18363. {
  18364. name: "Normal",
  18365. height: math.unit(6, "feet")
  18366. },
  18367. {
  18368. name: "Macro",
  18369. height: math.unit(30, "meters"),
  18370. default: true
  18371. },
  18372. ]
  18373. ))
  18374. characterMakers.push(() => makeCharacter(
  18375. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18376. {
  18377. side: {
  18378. height: math.unit(13 + 1 / 12, "feet"),
  18379. weight: math.unit(8.5, "tonnes"),
  18380. name: "Side",
  18381. image: {
  18382. source: "./media/characters/goldeneye/side.svg",
  18383. extra: 1182 / 778,
  18384. bottom: 0.067
  18385. }
  18386. },
  18387. paw: {
  18388. height: math.unit(3.4, "feet"),
  18389. name: "Paw",
  18390. image: {
  18391. source: "./media/characters/goldeneye/paw.svg"
  18392. }
  18393. },
  18394. },
  18395. [
  18396. {
  18397. name: "Normal",
  18398. height: math.unit(13 + 1 / 12, "feet"),
  18399. default: true
  18400. },
  18401. ]
  18402. ))
  18403. characterMakers.push(() => makeCharacter(
  18404. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18405. {
  18406. front: {
  18407. height: math.unit(6 + 1 / 12, "feet"),
  18408. weight: math.unit(210, "lb"),
  18409. name: "Front",
  18410. image: {
  18411. source: "./media/characters/leonardo-lycheborne/front.svg",
  18412. extra: 390 / 365,
  18413. bottom: 0.032
  18414. }
  18415. },
  18416. side: {
  18417. height: math.unit(6 + 1 / 12, "feet"),
  18418. weight: math.unit(210, "lb"),
  18419. name: "Side",
  18420. image: {
  18421. source: "./media/characters/leonardo-lycheborne/side.svg",
  18422. extra: 390 / 365,
  18423. bottom: 0.005
  18424. }
  18425. },
  18426. back: {
  18427. height: math.unit(6 + 1 / 12, "feet"),
  18428. weight: math.unit(210, "lb"),
  18429. name: "Back",
  18430. image: {
  18431. source: "./media/characters/leonardo-lycheborne/back.svg",
  18432. extra: 392 / 366,
  18433. bottom: 0.01
  18434. }
  18435. },
  18436. hand: {
  18437. height: math.unit(1.08, "feet"),
  18438. name: "Hand",
  18439. image: {
  18440. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18441. }
  18442. },
  18443. foot: {
  18444. height: math.unit(1.32, "feet"),
  18445. name: "Foot",
  18446. image: {
  18447. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18448. }
  18449. },
  18450. were: {
  18451. height: math.unit(20, "feet"),
  18452. weight: math.unit(7800, "lb"),
  18453. name: "Were",
  18454. image: {
  18455. source: "./media/characters/leonardo-lycheborne/were.svg",
  18456. extra: 308 / 294,
  18457. bottom: 0.048
  18458. }
  18459. },
  18460. feral: {
  18461. height: math.unit(7.5, "feet"),
  18462. weight: math.unit(600, "lb"),
  18463. name: "Feral",
  18464. image: {
  18465. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18466. extra: 210 / 186,
  18467. bottom: 0.108
  18468. }
  18469. },
  18470. taur: {
  18471. height: math.unit(11, "feet"),
  18472. weight: math.unit(3300, "lb"),
  18473. name: "Taur",
  18474. image: {
  18475. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18476. extra: 320 / 303,
  18477. bottom: 0.025
  18478. }
  18479. },
  18480. barghest: {
  18481. height: math.unit(11, "feet"),
  18482. weight: math.unit(1300, "lb"),
  18483. name: "Barghest",
  18484. image: {
  18485. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18486. extra: 323 / 302,
  18487. bottom: 0.027
  18488. }
  18489. },
  18490. dick: {
  18491. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18492. name: "Dick",
  18493. image: {
  18494. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18495. }
  18496. },
  18497. dickWere: {
  18498. height: math.unit((20) / 3.8, "feet"),
  18499. name: "Dick (Were)",
  18500. image: {
  18501. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18502. }
  18503. },
  18504. },
  18505. [
  18506. {
  18507. name: "Normal",
  18508. height: math.unit(6 + 1 / 12, "feet"),
  18509. default: true
  18510. },
  18511. ]
  18512. ))
  18513. characterMakers.push(() => makeCharacter(
  18514. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18515. {
  18516. front: {
  18517. height: math.unit(10, "feet"),
  18518. weight: math.unit(350, "lb"),
  18519. name: "Front",
  18520. image: {
  18521. source: "./media/characters/jet/front.svg",
  18522. extra: 2050 / 1980,
  18523. bottom: 0.013
  18524. }
  18525. },
  18526. back: {
  18527. height: math.unit(10, "feet"),
  18528. weight: math.unit(350, "lb"),
  18529. name: "Back",
  18530. image: {
  18531. source: "./media/characters/jet/back.svg",
  18532. extra: 2050 / 1980,
  18533. bottom: 0.013
  18534. }
  18535. },
  18536. },
  18537. [
  18538. {
  18539. name: "Micro",
  18540. height: math.unit(6, "inches")
  18541. },
  18542. {
  18543. name: "Normal",
  18544. height: math.unit(10, "feet"),
  18545. default: true
  18546. },
  18547. {
  18548. name: "Macro",
  18549. height: math.unit(100, "feet")
  18550. },
  18551. ]
  18552. ))
  18553. characterMakers.push(() => makeCharacter(
  18554. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18555. {
  18556. front: {
  18557. height: math.unit(15, "feet"),
  18558. weight: math.unit(2800, "lb"),
  18559. name: "Front",
  18560. image: {
  18561. source: "./media/characters/tanarath/front.svg",
  18562. extra: 2392 / 2220,
  18563. bottom: 0.03
  18564. }
  18565. },
  18566. back: {
  18567. height: math.unit(15, "feet"),
  18568. weight: math.unit(2800, "lb"),
  18569. name: "Back",
  18570. image: {
  18571. source: "./media/characters/tanarath/back.svg",
  18572. extra: 2392 / 2220,
  18573. bottom: 0.03
  18574. }
  18575. },
  18576. },
  18577. [
  18578. {
  18579. name: "Normal",
  18580. height: math.unit(15, "feet"),
  18581. default: true
  18582. },
  18583. ]
  18584. ))
  18585. characterMakers.push(() => makeCharacter(
  18586. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18587. {
  18588. front: {
  18589. height: math.unit(7 + 1 / 12, "feet"),
  18590. weight: math.unit(175, "lb"),
  18591. name: "Front",
  18592. image: {
  18593. source: "./media/characters/patty-cattybatty/front.svg",
  18594. extra: 908 / 874,
  18595. bottom: 0.025
  18596. }
  18597. },
  18598. },
  18599. [
  18600. {
  18601. name: "Micro",
  18602. height: math.unit(1, "inch")
  18603. },
  18604. {
  18605. name: "Normal",
  18606. height: math.unit(7 + 1 / 12, "feet")
  18607. },
  18608. {
  18609. name: "Mini Macro",
  18610. height: math.unit(155, "feet")
  18611. },
  18612. {
  18613. name: "Macro",
  18614. height: math.unit(1077, "feet")
  18615. },
  18616. {
  18617. name: "Mega Macro",
  18618. height: math.unit(47650, "feet"),
  18619. default: true
  18620. },
  18621. {
  18622. name: "Giga Macro",
  18623. height: math.unit(440, "miles")
  18624. },
  18625. {
  18626. name: "Tera Macro",
  18627. height: math.unit(8700, "miles")
  18628. },
  18629. {
  18630. name: "Planetary Macro",
  18631. height: math.unit(32700, "miles")
  18632. },
  18633. {
  18634. name: "Solar Macro",
  18635. height: math.unit(550000, "miles")
  18636. },
  18637. {
  18638. name: "Celestial Macro",
  18639. height: math.unit(2.5, "AU")
  18640. },
  18641. ]
  18642. ))
  18643. characterMakers.push(() => makeCharacter(
  18644. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18645. {
  18646. front: {
  18647. height: math.unit(4 + 5 / 12, "feet"),
  18648. weight: math.unit(90, "lb"),
  18649. name: "Front",
  18650. image: {
  18651. source: "./media/characters/cappu/front.svg",
  18652. extra: 1247 / 1152,
  18653. bottom: 0.012
  18654. }
  18655. },
  18656. },
  18657. [
  18658. {
  18659. name: "Normal",
  18660. height: math.unit(4 + 5 / 12, "feet"),
  18661. default: true
  18662. },
  18663. ]
  18664. ))
  18665. characterMakers.push(() => makeCharacter(
  18666. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18667. {
  18668. frontDressed: {
  18669. height: math.unit(70, "cm"),
  18670. weight: math.unit(6, "kg"),
  18671. name: "Front (Dressed)",
  18672. image: {
  18673. source: "./media/characters/sebi/front-dressed.svg",
  18674. extra: 713.5 / 686.5,
  18675. bottom: 0.003
  18676. }
  18677. },
  18678. front: {
  18679. height: math.unit(70, "cm"),
  18680. weight: math.unit(5, "kg"),
  18681. name: "Front",
  18682. image: {
  18683. source: "./media/characters/sebi/front.svg",
  18684. extra: 713.5 / 686.5,
  18685. bottom: 0.003
  18686. }
  18687. }
  18688. },
  18689. [
  18690. {
  18691. name: "Normal",
  18692. height: math.unit(70, "cm"),
  18693. default: true
  18694. },
  18695. {
  18696. name: "Macro",
  18697. height: math.unit(8, "meters")
  18698. },
  18699. ]
  18700. ))
  18701. characterMakers.push(() => makeCharacter(
  18702. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18703. {
  18704. front: {
  18705. height: math.unit(6, "feet"),
  18706. weight: math.unit(150, "lb"),
  18707. name: "Front",
  18708. image: {
  18709. source: "./media/characters/typhek/front.svg",
  18710. extra: 1948 / 1929,
  18711. bottom: 0.025
  18712. }
  18713. },
  18714. side: {
  18715. height: math.unit(6, "feet"),
  18716. weight: math.unit(150, "lb"),
  18717. name: "Side",
  18718. image: {
  18719. source: "./media/characters/typhek/side.svg",
  18720. extra: 2034 / 2010,
  18721. bottom: 0.003
  18722. }
  18723. },
  18724. back: {
  18725. height: math.unit(6, "feet"),
  18726. weight: math.unit(150, "lb"),
  18727. name: "Back",
  18728. image: {
  18729. source: "./media/characters/typhek/back.svg",
  18730. extra: 2005 / 1978,
  18731. bottom: 0.004
  18732. }
  18733. },
  18734. palm: {
  18735. height: math.unit(1.2, "feet"),
  18736. name: "Palm",
  18737. image: {
  18738. source: "./media/characters/typhek/palm.svg"
  18739. }
  18740. },
  18741. fist: {
  18742. height: math.unit(1.1, "feet"),
  18743. name: "Fist",
  18744. image: {
  18745. source: "./media/characters/typhek/fist.svg"
  18746. }
  18747. },
  18748. foot: {
  18749. height: math.unit(1.57, "feet"),
  18750. name: "Foot",
  18751. image: {
  18752. source: "./media/characters/typhek/foot.svg"
  18753. }
  18754. },
  18755. sole: {
  18756. height: math.unit(2.05, "feet"),
  18757. name: "Sole",
  18758. image: {
  18759. source: "./media/characters/typhek/sole.svg"
  18760. }
  18761. },
  18762. },
  18763. [
  18764. {
  18765. name: "Macro",
  18766. height: math.unit(40, "stories"),
  18767. default: true
  18768. },
  18769. {
  18770. name: "Megamacro",
  18771. height: math.unit(1, "mile")
  18772. },
  18773. {
  18774. name: "Gigamacro",
  18775. height: math.unit(4000, "solarradii")
  18776. },
  18777. {
  18778. name: "Universal",
  18779. height: math.unit(1.1, "universes")
  18780. }
  18781. ]
  18782. ))
  18783. characterMakers.push(() => makeCharacter(
  18784. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18785. {
  18786. side: {
  18787. height: math.unit(5 + 7 / 12, "feet"),
  18788. weight: math.unit(150, "lb"),
  18789. name: "Side",
  18790. image: {
  18791. source: "./media/characters/kassy/side.svg",
  18792. extra: 1280 / 1225,
  18793. bottom: 0.002
  18794. }
  18795. },
  18796. front: {
  18797. height: math.unit(5 + 7 / 12, "feet"),
  18798. weight: math.unit(150, "lb"),
  18799. name: "Front",
  18800. image: {
  18801. source: "./media/characters/kassy/front.svg",
  18802. extra: 1280 / 1225,
  18803. bottom: 0.025
  18804. }
  18805. },
  18806. back: {
  18807. height: math.unit(5 + 7 / 12, "feet"),
  18808. weight: math.unit(150, "lb"),
  18809. name: "Back",
  18810. image: {
  18811. source: "./media/characters/kassy/back.svg",
  18812. extra: 1280 / 1225,
  18813. bottom: 0.002
  18814. }
  18815. },
  18816. foot: {
  18817. height: math.unit(1.266, "feet"),
  18818. name: "Foot",
  18819. image: {
  18820. source: "./media/characters/kassy/foot.svg"
  18821. }
  18822. },
  18823. },
  18824. [
  18825. {
  18826. name: "Normal",
  18827. height: math.unit(5 + 7 / 12, "feet")
  18828. },
  18829. {
  18830. name: "Macro",
  18831. height: math.unit(137, "feet"),
  18832. default: true
  18833. },
  18834. {
  18835. name: "Megamacro",
  18836. height: math.unit(1, "mile")
  18837. },
  18838. ]
  18839. ))
  18840. characterMakers.push(() => makeCharacter(
  18841. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18842. {
  18843. front: {
  18844. height: math.unit(6 + 1 / 12, "feet"),
  18845. weight: math.unit(200, "lb"),
  18846. name: "Front",
  18847. image: {
  18848. source: "./media/characters/neil/front.svg",
  18849. extra: 1326 / 1250,
  18850. bottom: 0.023
  18851. }
  18852. },
  18853. },
  18854. [
  18855. {
  18856. name: "Normal",
  18857. height: math.unit(6 + 1 / 12, "feet"),
  18858. default: true
  18859. },
  18860. {
  18861. name: "Macro",
  18862. height: math.unit(200, "feet")
  18863. },
  18864. ]
  18865. ))
  18866. characterMakers.push(() => makeCharacter(
  18867. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18868. {
  18869. front: {
  18870. height: math.unit(5 + 9 / 12, "feet"),
  18871. weight: math.unit(190, "lb"),
  18872. name: "Front",
  18873. image: {
  18874. source: "./media/characters/atticus/front.svg",
  18875. extra: 2934 / 2785,
  18876. bottom: 0.025
  18877. }
  18878. },
  18879. },
  18880. [
  18881. {
  18882. name: "Normal",
  18883. height: math.unit(5 + 9 / 12, "feet"),
  18884. default: true
  18885. },
  18886. {
  18887. name: "Macro",
  18888. height: math.unit(180, "feet")
  18889. },
  18890. ]
  18891. ))
  18892. characterMakers.push(() => makeCharacter(
  18893. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18894. {
  18895. side: {
  18896. height: math.unit(9, "feet"),
  18897. weight: math.unit(650, "lb"),
  18898. name: "Side",
  18899. image: {
  18900. source: "./media/characters/milo/side.svg",
  18901. extra: 2644 / 2310,
  18902. bottom: 0.032
  18903. }
  18904. },
  18905. },
  18906. [
  18907. {
  18908. name: "Normal",
  18909. height: math.unit(9, "feet"),
  18910. default: true
  18911. },
  18912. {
  18913. name: "Macro",
  18914. height: math.unit(300, "feet")
  18915. },
  18916. ]
  18917. ))
  18918. characterMakers.push(() => makeCharacter(
  18919. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18920. {
  18921. side: {
  18922. height: math.unit(8, "meters"),
  18923. weight: math.unit(90000, "kg"),
  18924. name: "Side",
  18925. image: {
  18926. source: "./media/characters/ijzer/side.svg",
  18927. extra: 2756 / 1600,
  18928. bottom: 0.01
  18929. }
  18930. },
  18931. },
  18932. [
  18933. {
  18934. name: "Small",
  18935. height: math.unit(3, "meters")
  18936. },
  18937. {
  18938. name: "Normal",
  18939. height: math.unit(8, "meters"),
  18940. default: true
  18941. },
  18942. {
  18943. name: "Normal+",
  18944. height: math.unit(10, "meters")
  18945. },
  18946. {
  18947. name: "Bigger",
  18948. height: math.unit(24, "meters")
  18949. },
  18950. {
  18951. name: "Huge",
  18952. height: math.unit(80, "meters")
  18953. },
  18954. ]
  18955. ))
  18956. characterMakers.push(() => makeCharacter(
  18957. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18958. {
  18959. front: {
  18960. height: math.unit(6 + 2 / 12, "feet"),
  18961. weight: math.unit(153, "lb"),
  18962. name: "Front",
  18963. image: {
  18964. source: "./media/characters/luca-cervicum/front.svg",
  18965. extra: 370 / 327,
  18966. bottom: 0.015
  18967. }
  18968. },
  18969. back: {
  18970. height: math.unit(6 + 2 / 12, "feet"),
  18971. weight: math.unit(153, "lb"),
  18972. name: "Back",
  18973. image: {
  18974. source: "./media/characters/luca-cervicum/back.svg",
  18975. extra: 367 / 333,
  18976. bottom: 0.005
  18977. }
  18978. },
  18979. frontGear: {
  18980. height: math.unit(6 + 2 / 12, "feet"),
  18981. weight: math.unit(173, "lb"),
  18982. name: "Front (Gear)",
  18983. image: {
  18984. source: "./media/characters/luca-cervicum/front-gear.svg",
  18985. extra: 377 / 333,
  18986. bottom: 0.006
  18987. }
  18988. },
  18989. },
  18990. [
  18991. {
  18992. name: "Normal",
  18993. height: math.unit(6 + 2 / 12, "feet"),
  18994. default: true
  18995. },
  18996. ]
  18997. ))
  18998. characterMakers.push(() => makeCharacter(
  18999. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19000. {
  19001. front: {
  19002. height: math.unit(6 + 1 / 12, "feet"),
  19003. weight: math.unit(304, "lb"),
  19004. name: "Front",
  19005. image: {
  19006. source: "./media/characters/oliver/front.svg",
  19007. extra: 157 / 143,
  19008. bottom: 0.08
  19009. }
  19010. },
  19011. },
  19012. [
  19013. {
  19014. name: "Normal",
  19015. height: math.unit(6 + 1 / 12, "feet"),
  19016. default: true
  19017. },
  19018. ]
  19019. ))
  19020. characterMakers.push(() => makeCharacter(
  19021. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19022. {
  19023. front: {
  19024. height: math.unit(5 + 7 / 12, "feet"),
  19025. weight: math.unit(140, "lb"),
  19026. name: "Front",
  19027. image: {
  19028. source: "./media/characters/shane/front.svg",
  19029. extra: 304 / 289,
  19030. bottom: 0.005
  19031. }
  19032. },
  19033. },
  19034. [
  19035. {
  19036. name: "Normal",
  19037. height: math.unit(5 + 7 / 12, "feet"),
  19038. default: true
  19039. },
  19040. ]
  19041. ))
  19042. characterMakers.push(() => makeCharacter(
  19043. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19044. {
  19045. front: {
  19046. height: math.unit(5 + 9 / 12, "feet"),
  19047. weight: math.unit(178, "lb"),
  19048. name: "Front",
  19049. image: {
  19050. source: "./media/characters/shin/front.svg",
  19051. extra: 159 / 151,
  19052. bottom: 0.015
  19053. }
  19054. },
  19055. },
  19056. [
  19057. {
  19058. name: "Normal",
  19059. height: math.unit(5 + 9 / 12, "feet"),
  19060. default: true
  19061. },
  19062. ]
  19063. ))
  19064. characterMakers.push(() => makeCharacter(
  19065. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19066. {
  19067. front: {
  19068. height: math.unit(5 + 10 / 12, "feet"),
  19069. weight: math.unit(168, "lb"),
  19070. name: "Front",
  19071. image: {
  19072. source: "./media/characters/xerxes/front.svg",
  19073. extra: 282 / 260,
  19074. bottom: 0.045
  19075. }
  19076. },
  19077. },
  19078. [
  19079. {
  19080. name: "Normal",
  19081. height: math.unit(5 + 10 / 12, "feet"),
  19082. default: true
  19083. },
  19084. ]
  19085. ))
  19086. characterMakers.push(() => makeCharacter(
  19087. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19088. {
  19089. front: {
  19090. height: math.unit(6 + 7 / 12, "feet"),
  19091. weight: math.unit(208, "lb"),
  19092. name: "Front",
  19093. image: {
  19094. source: "./media/characters/chaska/front.svg",
  19095. extra: 332 / 319,
  19096. bottom: 0.015
  19097. }
  19098. },
  19099. },
  19100. [
  19101. {
  19102. name: "Normal",
  19103. height: math.unit(6 + 7 / 12, "feet"),
  19104. default: true
  19105. },
  19106. ]
  19107. ))
  19108. characterMakers.push(() => makeCharacter(
  19109. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19110. {
  19111. front: {
  19112. height: math.unit(5 + 8 / 12, "feet"),
  19113. weight: math.unit(208, "lb"),
  19114. name: "Front",
  19115. image: {
  19116. source: "./media/characters/enuk/front.svg",
  19117. extra: 437 / 406,
  19118. bottom: 0.02
  19119. }
  19120. },
  19121. },
  19122. [
  19123. {
  19124. name: "Normal",
  19125. height: math.unit(5 + 8 / 12, "feet"),
  19126. default: true
  19127. },
  19128. ]
  19129. ))
  19130. characterMakers.push(() => makeCharacter(
  19131. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19132. {
  19133. front: {
  19134. height: math.unit(5 + 10 / 12, "feet"),
  19135. weight: math.unit(252, "lb"),
  19136. name: "Front",
  19137. image: {
  19138. source: "./media/characters/bruun/front.svg",
  19139. extra: 197 / 187,
  19140. bottom: 0.012
  19141. }
  19142. },
  19143. },
  19144. [
  19145. {
  19146. name: "Normal",
  19147. height: math.unit(5 + 10 / 12, "feet"),
  19148. default: true
  19149. },
  19150. ]
  19151. ))
  19152. characterMakers.push(() => makeCharacter(
  19153. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19154. {
  19155. front: {
  19156. height: math.unit(6 + 10 / 12, "feet"),
  19157. weight: math.unit(255, "lb"),
  19158. name: "Front",
  19159. image: {
  19160. source: "./media/characters/alexeev/front.svg",
  19161. extra: 213 / 200,
  19162. bottom: 0.05
  19163. }
  19164. },
  19165. },
  19166. [
  19167. {
  19168. name: "Normal",
  19169. height: math.unit(6 + 10 / 12, "feet"),
  19170. default: true
  19171. },
  19172. ]
  19173. ))
  19174. characterMakers.push(() => makeCharacter(
  19175. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19176. {
  19177. front: {
  19178. height: math.unit(2 + 8 / 12, "feet"),
  19179. weight: math.unit(22, "lb"),
  19180. name: "Front",
  19181. image: {
  19182. source: "./media/characters/evelyn/front.svg",
  19183. extra: 208 / 180
  19184. }
  19185. },
  19186. },
  19187. [
  19188. {
  19189. name: "Normal",
  19190. height: math.unit(2 + 8 / 12, "feet"),
  19191. default: true
  19192. },
  19193. ]
  19194. ))
  19195. characterMakers.push(() => makeCharacter(
  19196. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19197. {
  19198. front: {
  19199. height: math.unit(5 + 9 / 12, "feet"),
  19200. weight: math.unit(139, "lb"),
  19201. name: "Front",
  19202. image: {
  19203. source: "./media/characters/inca/front.svg",
  19204. extra: 294 / 291,
  19205. bottom: 0.03
  19206. }
  19207. },
  19208. },
  19209. [
  19210. {
  19211. name: "Normal",
  19212. height: math.unit(5 + 9 / 12, "feet"),
  19213. default: true
  19214. },
  19215. ]
  19216. ))
  19217. characterMakers.push(() => makeCharacter(
  19218. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19219. {
  19220. front: {
  19221. height: math.unit(5 + 1 / 12, "feet"),
  19222. weight: math.unit(84, "lb"),
  19223. name: "Front",
  19224. image: {
  19225. source: "./media/characters/magdalene/front.svg",
  19226. extra: 293 / 273
  19227. }
  19228. },
  19229. },
  19230. [
  19231. {
  19232. name: "Normal",
  19233. height: math.unit(5 + 1 / 12, "feet"),
  19234. default: true
  19235. },
  19236. ]
  19237. ))
  19238. characterMakers.push(() => makeCharacter(
  19239. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19240. {
  19241. front: {
  19242. height: math.unit(6 + 3 / 12, "feet"),
  19243. weight: math.unit(185, "lb"),
  19244. name: "Front",
  19245. image: {
  19246. source: "./media/characters/mera/front.svg",
  19247. extra: 291 / 277,
  19248. bottom: 0.03
  19249. }
  19250. },
  19251. },
  19252. [
  19253. {
  19254. name: "Normal",
  19255. height: math.unit(6 + 3 / 12, "feet"),
  19256. default: true
  19257. },
  19258. ]
  19259. ))
  19260. characterMakers.push(() => makeCharacter(
  19261. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19262. {
  19263. front: {
  19264. height: math.unit(6 + 7 / 12, "feet"),
  19265. weight: math.unit(160, "lb"),
  19266. name: "Front",
  19267. image: {
  19268. source: "./media/characters/ceres/front.svg",
  19269. extra: 1023 / 950,
  19270. bottom: 0.027
  19271. }
  19272. },
  19273. back: {
  19274. height: math.unit(6 + 7 / 12, "feet"),
  19275. weight: math.unit(160, "lb"),
  19276. name: "Back",
  19277. image: {
  19278. source: "./media/characters/ceres/back.svg",
  19279. extra: 1023 / 950
  19280. }
  19281. },
  19282. },
  19283. [
  19284. {
  19285. name: "Normal",
  19286. height: math.unit(6 + 7 / 12, "feet"),
  19287. default: true
  19288. },
  19289. ]
  19290. ))
  19291. characterMakers.push(() => makeCharacter(
  19292. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19293. {
  19294. front: {
  19295. height: math.unit(5 + 10 / 12, "feet"),
  19296. weight: math.unit(150, "lb"),
  19297. name: "Front",
  19298. image: {
  19299. source: "./media/characters/kris/front.svg",
  19300. extra: 885 / 803,
  19301. bottom: 0.03
  19302. }
  19303. },
  19304. },
  19305. [
  19306. {
  19307. name: "Normal",
  19308. height: math.unit(5 + 10 / 12, "feet"),
  19309. default: true
  19310. },
  19311. ]
  19312. ))
  19313. characterMakers.push(() => makeCharacter(
  19314. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19315. {
  19316. front: {
  19317. height: math.unit(7, "feet"),
  19318. weight: math.unit(120, "kg"),
  19319. name: "Front",
  19320. image: {
  19321. source: "./media/characters/taluthus/front.svg",
  19322. extra: 903 / 833,
  19323. bottom: 0.015
  19324. }
  19325. },
  19326. },
  19327. [
  19328. {
  19329. name: "Normal",
  19330. height: math.unit(7, "feet"),
  19331. default: true
  19332. },
  19333. {
  19334. name: "Macro",
  19335. height: math.unit(300, "feet")
  19336. },
  19337. ]
  19338. ))
  19339. characterMakers.push(() => makeCharacter(
  19340. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19341. {
  19342. front: {
  19343. height: math.unit(5 + 9 / 12, "feet"),
  19344. weight: math.unit(145, "lb"),
  19345. name: "Front",
  19346. image: {
  19347. source: "./media/characters/dawn/front.svg",
  19348. extra: 2094 / 2016,
  19349. bottom: 0.025
  19350. }
  19351. },
  19352. back: {
  19353. height: math.unit(5 + 9 / 12, "feet"),
  19354. weight: math.unit(160, "lb"),
  19355. name: "Back",
  19356. image: {
  19357. source: "./media/characters/dawn/back.svg",
  19358. extra: 2112 / 2080,
  19359. bottom: 0.005
  19360. }
  19361. },
  19362. },
  19363. [
  19364. {
  19365. name: "Normal",
  19366. height: math.unit(6 + 7 / 12, "feet"),
  19367. default: true
  19368. },
  19369. ]
  19370. ))
  19371. characterMakers.push(() => makeCharacter(
  19372. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19373. {
  19374. anthro: {
  19375. height: math.unit(8 + 3 / 12, "feet"),
  19376. weight: math.unit(450, "lb"),
  19377. name: "Anthro",
  19378. image: {
  19379. source: "./media/characters/arador/anthro.svg",
  19380. extra: 1835 / 1718,
  19381. bottom: 0.025
  19382. }
  19383. },
  19384. feral: {
  19385. height: math.unit(4, "feet"),
  19386. weight: math.unit(200, "lb"),
  19387. name: "Feral",
  19388. image: {
  19389. source: "./media/characters/arador/feral.svg",
  19390. extra: 1683 / 1514,
  19391. bottom: 0.07
  19392. }
  19393. },
  19394. },
  19395. [
  19396. {
  19397. name: "Normal",
  19398. height: math.unit(8 + 3 / 12, "feet")
  19399. },
  19400. {
  19401. name: "Macro",
  19402. height: math.unit(82.5, "feet"),
  19403. default: true
  19404. },
  19405. ]
  19406. ))
  19407. characterMakers.push(() => makeCharacter(
  19408. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19409. {
  19410. front: {
  19411. height: math.unit(5 + 10 / 12, "feet"),
  19412. weight: math.unit(125, "lb"),
  19413. name: "Front",
  19414. image: {
  19415. source: "./media/characters/dharsi/front.svg",
  19416. extra: 716 / 630,
  19417. bottom: 0.035
  19418. }
  19419. },
  19420. },
  19421. [
  19422. {
  19423. name: "Nano",
  19424. height: math.unit(100, "nm")
  19425. },
  19426. {
  19427. name: "Micro",
  19428. height: math.unit(2, "inches")
  19429. },
  19430. {
  19431. name: "Normal",
  19432. height: math.unit(5 + 10 / 12, "feet"),
  19433. default: true
  19434. },
  19435. {
  19436. name: "Macro",
  19437. height: math.unit(1000, "feet")
  19438. },
  19439. {
  19440. name: "Megamacro",
  19441. height: math.unit(10, "miles")
  19442. },
  19443. {
  19444. name: "Gigamacro",
  19445. height: math.unit(3000, "miles")
  19446. },
  19447. {
  19448. name: "Teramacro",
  19449. height: math.unit(500000, "miles")
  19450. },
  19451. {
  19452. name: "Teramacro+",
  19453. height: math.unit(30, "galaxies")
  19454. },
  19455. ]
  19456. ))
  19457. characterMakers.push(() => makeCharacter(
  19458. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19459. {
  19460. front: {
  19461. height: math.unit(6, "feet"),
  19462. weight: math.unit(150, "lb"),
  19463. name: "Front",
  19464. image: {
  19465. source: "./media/characters/deathy/front.svg",
  19466. extra: 1552 / 1463,
  19467. bottom: 0.025
  19468. }
  19469. },
  19470. side: {
  19471. height: math.unit(6, "feet"),
  19472. weight: math.unit(150, "lb"),
  19473. name: "Side",
  19474. image: {
  19475. source: "./media/characters/deathy/side.svg",
  19476. extra: 1604 / 1455,
  19477. bottom: 0.025
  19478. }
  19479. },
  19480. back: {
  19481. height: math.unit(6, "feet"),
  19482. weight: math.unit(150, "lb"),
  19483. name: "Back",
  19484. image: {
  19485. source: "./media/characters/deathy/back.svg",
  19486. extra: 1580 / 1463,
  19487. bottom: 0.005
  19488. }
  19489. },
  19490. },
  19491. [
  19492. {
  19493. name: "Micro",
  19494. height: math.unit(5, "millimeters")
  19495. },
  19496. {
  19497. name: "Normal",
  19498. height: math.unit(6 + 5 / 12, "feet"),
  19499. default: true
  19500. },
  19501. ]
  19502. ))
  19503. characterMakers.push(() => makeCharacter(
  19504. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19505. {
  19506. front: {
  19507. height: math.unit(16, "feet"),
  19508. weight: math.unit(4000, "lb"),
  19509. name: "Front",
  19510. image: {
  19511. source: "./media/characters/juniper/front.svg",
  19512. bottom: 0.04
  19513. }
  19514. },
  19515. },
  19516. [
  19517. {
  19518. name: "Normal",
  19519. height: math.unit(16, "feet"),
  19520. default: true
  19521. },
  19522. ]
  19523. ))
  19524. characterMakers.push(() => makeCharacter(
  19525. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19526. {
  19527. front: {
  19528. height: math.unit(6, "feet"),
  19529. weight: math.unit(150, "lb"),
  19530. name: "Front",
  19531. image: {
  19532. source: "./media/characters/hipster/front.svg",
  19533. extra: 1312 / 1209,
  19534. bottom: 0.025
  19535. }
  19536. },
  19537. back: {
  19538. height: math.unit(6, "feet"),
  19539. weight: math.unit(150, "lb"),
  19540. name: "Back",
  19541. image: {
  19542. source: "./media/characters/hipster/back.svg",
  19543. extra: 1281 / 1196,
  19544. bottom: 0.01
  19545. }
  19546. },
  19547. },
  19548. [
  19549. {
  19550. name: "Micro",
  19551. height: math.unit(1, "mm")
  19552. },
  19553. {
  19554. name: "Normal",
  19555. height: math.unit(4, "inches"),
  19556. default: true
  19557. },
  19558. {
  19559. name: "Macro",
  19560. height: math.unit(500, "feet")
  19561. },
  19562. {
  19563. name: "Megamacro",
  19564. height: math.unit(1000, "miles")
  19565. },
  19566. ]
  19567. ))
  19568. characterMakers.push(() => makeCharacter(
  19569. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19570. {
  19571. front: {
  19572. height: math.unit(6, "feet"),
  19573. weight: math.unit(150, "lb"),
  19574. name: "Front",
  19575. image: {
  19576. source: "./media/characters/tendirmuldr/front.svg",
  19577. extra: 1878 / 1772,
  19578. bottom: 0.015
  19579. }
  19580. },
  19581. },
  19582. [
  19583. {
  19584. name: "Megamacro",
  19585. height: math.unit(1500, "miles"),
  19586. default: true
  19587. },
  19588. ]
  19589. ))
  19590. characterMakers.push(() => makeCharacter(
  19591. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19592. {
  19593. front: {
  19594. height: math.unit(14, "feet"),
  19595. weight: math.unit(12000, "lb"),
  19596. name: "Front",
  19597. image: {
  19598. source: "./media/characters/mort/front.svg",
  19599. extra: 365 / 318,
  19600. bottom: 0.01
  19601. }
  19602. },
  19603. side: {
  19604. height: math.unit(14, "feet"),
  19605. weight: math.unit(12000, "lb"),
  19606. name: "Side",
  19607. image: {
  19608. source: "./media/characters/mort/side.svg",
  19609. extra: 365 / 318,
  19610. bottom: 0.052
  19611. },
  19612. default: true
  19613. },
  19614. back: {
  19615. height: math.unit(14, "feet"),
  19616. weight: math.unit(12000, "lb"),
  19617. name: "Back",
  19618. image: {
  19619. source: "./media/characters/mort/back.svg",
  19620. extra: 371 / 332,
  19621. bottom: 0.18
  19622. }
  19623. },
  19624. },
  19625. [
  19626. {
  19627. name: "Normal",
  19628. height: math.unit(14, "feet"),
  19629. default: true
  19630. },
  19631. ]
  19632. ))
  19633. characterMakers.push(() => makeCharacter(
  19634. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19635. {
  19636. front: {
  19637. height: math.unit(8, "feet"),
  19638. weight: math.unit(1, "ton"),
  19639. name: "Front",
  19640. image: {
  19641. source: "./media/characters/lycoa/front.svg",
  19642. extra: 1875 / 1789,
  19643. bottom: 0.022
  19644. }
  19645. },
  19646. back: {
  19647. height: math.unit(8, "feet"),
  19648. weight: math.unit(1, "ton"),
  19649. name: "Back",
  19650. image: {
  19651. source: "./media/characters/lycoa/back.svg",
  19652. extra: 1835 / 1781,
  19653. bottom: 0.03
  19654. }
  19655. },
  19656. head: {
  19657. height: math.unit(2.1, "feet"),
  19658. name: "Head",
  19659. image: {
  19660. source: "./media/characters/lycoa/head.svg"
  19661. }
  19662. },
  19663. tailmaw: {
  19664. height: math.unit(1.9, "feet"),
  19665. name: "Tailmaw",
  19666. image: {
  19667. source: "./media/characters/lycoa/tailmaw.svg"
  19668. }
  19669. },
  19670. tentacles: {
  19671. height: math.unit(2.1, "feet"),
  19672. name: "Tentacles",
  19673. image: {
  19674. source: "./media/characters/lycoa/tentacles.svg"
  19675. }
  19676. },
  19677. dick: {
  19678. height: math.unit(1.73, "feet"),
  19679. name: "Dick",
  19680. image: {
  19681. source: "./media/characters/lycoa/dick.svg"
  19682. }
  19683. },
  19684. },
  19685. [
  19686. {
  19687. name: "Normal",
  19688. height: math.unit(8, "feet"),
  19689. default: true
  19690. },
  19691. {
  19692. name: "Macro",
  19693. height: math.unit(30, "feet")
  19694. },
  19695. ]
  19696. ))
  19697. characterMakers.push(() => makeCharacter(
  19698. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19699. {
  19700. front: {
  19701. height: math.unit(4 + 2 / 12, "feet"),
  19702. weight: math.unit(70, "lb"),
  19703. name: "Front",
  19704. image: {
  19705. source: "./media/characters/naldara/front.svg",
  19706. extra: 841 / 720,
  19707. bottom: 0.04
  19708. }
  19709. },
  19710. naga: {
  19711. height: math.unit(23, "feet"),
  19712. weight: math.unit(15000, "kg"),
  19713. name: "Naga",
  19714. image: {
  19715. source: "./media/characters/naldara/naga.svg",
  19716. extra: 3290 / 2959,
  19717. bottom: 124 / 3432
  19718. }
  19719. },
  19720. },
  19721. [
  19722. {
  19723. name: "Normal",
  19724. height: math.unit(4 + 2 / 12, "feet"),
  19725. default: true
  19726. },
  19727. ]
  19728. ))
  19729. characterMakers.push(() => makeCharacter(
  19730. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19731. {
  19732. front: {
  19733. height: math.unit(13 + 7 / 12, "feet"),
  19734. weight: math.unit(1500, "lb"),
  19735. name: "Front",
  19736. image: {
  19737. source: "./media/characters/briar/front.svg",
  19738. extra: 626 / 596,
  19739. bottom: 0.08
  19740. }
  19741. },
  19742. },
  19743. [
  19744. {
  19745. name: "Normal",
  19746. height: math.unit(13 + 7 / 12, "feet"),
  19747. default: true
  19748. },
  19749. ]
  19750. ))
  19751. characterMakers.push(() => makeCharacter(
  19752. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19753. {
  19754. side: {
  19755. height: math.unit(10, "feet"),
  19756. weight: math.unit(500, "lb"),
  19757. name: "Side",
  19758. image: {
  19759. source: "./media/characters/vanguard/side.svg",
  19760. extra: 502 / 425,
  19761. bottom: 0.087
  19762. }
  19763. },
  19764. },
  19765. [
  19766. {
  19767. name: "Normal",
  19768. height: math.unit(10, "feet"),
  19769. default: true
  19770. },
  19771. ]
  19772. ))
  19773. characterMakers.push(() => makeCharacter(
  19774. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19775. {
  19776. front: {
  19777. height: math.unit(7.5, "feet"),
  19778. weight: math.unit(2, "lb"),
  19779. name: "Front",
  19780. image: {
  19781. source: "./media/characters/artemis/front.svg",
  19782. extra: 1192 / 1075,
  19783. bottom: 0.07
  19784. }
  19785. },
  19786. frontNsfw: {
  19787. height: math.unit(7.5, "feet"),
  19788. weight: math.unit(2, "lb"),
  19789. name: "Front (NSFW)",
  19790. image: {
  19791. source: "./media/characters/artemis/front-nsfw.svg",
  19792. extra: 1192 / 1075,
  19793. bottom: 0.07
  19794. }
  19795. },
  19796. frontNsfwer: {
  19797. height: math.unit(7.5, "feet"),
  19798. weight: math.unit(2, "lb"),
  19799. name: "Front (NSFW-er)",
  19800. image: {
  19801. source: "./media/characters/artemis/front-nsfwer.svg",
  19802. extra: 1192 / 1075,
  19803. bottom: 0.07
  19804. }
  19805. },
  19806. side: {
  19807. height: math.unit(7.5, "feet"),
  19808. weight: math.unit(2, "lb"),
  19809. name: "Side",
  19810. image: {
  19811. source: "./media/characters/artemis/side.svg",
  19812. extra: 1192 / 1075,
  19813. bottom: 0.07
  19814. }
  19815. },
  19816. sideNsfw: {
  19817. height: math.unit(7.5, "feet"),
  19818. weight: math.unit(2, "lb"),
  19819. name: "Side (NSFW)",
  19820. image: {
  19821. source: "./media/characters/artemis/side-nsfw.svg",
  19822. extra: 1192 / 1075,
  19823. bottom: 0.07
  19824. }
  19825. },
  19826. sideNsfwer: {
  19827. height: math.unit(7.5, "feet"),
  19828. weight: math.unit(2, "lb"),
  19829. name: "Side (NSFW-er)",
  19830. image: {
  19831. source: "./media/characters/artemis/side-nsfwer.svg",
  19832. extra: 1192 / 1075,
  19833. bottom: 0.07
  19834. }
  19835. },
  19836. maw: {
  19837. height: math.unit(1.1, "feet"),
  19838. name: "Maw",
  19839. image: {
  19840. source: "./media/characters/artemis/maw.svg"
  19841. }
  19842. },
  19843. stomach: {
  19844. height: math.unit(0.95, "feet"),
  19845. name: "Stomach",
  19846. image: {
  19847. source: "./media/characters/artemis/stomach.svg"
  19848. }
  19849. },
  19850. dickCanine: {
  19851. height: math.unit(1, "feet"),
  19852. name: "Dick (Canine)",
  19853. image: {
  19854. source: "./media/characters/artemis/dick-canine.svg"
  19855. }
  19856. },
  19857. dickEquine: {
  19858. height: math.unit(0.85, "feet"),
  19859. name: "Dick (Equine)",
  19860. image: {
  19861. source: "./media/characters/artemis/dick-equine.svg"
  19862. }
  19863. },
  19864. dickExotic: {
  19865. height: math.unit(0.85, "feet"),
  19866. name: "Dick (Exotic)",
  19867. image: {
  19868. source: "./media/characters/artemis/dick-exotic.svg"
  19869. }
  19870. },
  19871. },
  19872. [
  19873. {
  19874. name: "Normal",
  19875. height: math.unit(7.5, "feet"),
  19876. default: true
  19877. },
  19878. {
  19879. name: "Enlarged",
  19880. height: math.unit(12, "feet")
  19881. },
  19882. ]
  19883. ))
  19884. characterMakers.push(() => makeCharacter(
  19885. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19886. {
  19887. front: {
  19888. height: math.unit(5 + 3 / 12, "feet"),
  19889. weight: math.unit(160, "lb"),
  19890. name: "Front",
  19891. image: {
  19892. source: "./media/characters/kira/front.svg",
  19893. extra: 906 / 786,
  19894. bottom: 0.01
  19895. }
  19896. },
  19897. back: {
  19898. height: math.unit(5 + 3 / 12, "feet"),
  19899. weight: math.unit(160, "lb"),
  19900. name: "Back",
  19901. image: {
  19902. source: "./media/characters/kira/back.svg",
  19903. extra: 882 / 757,
  19904. bottom: 0.005
  19905. }
  19906. },
  19907. frontDressed: {
  19908. height: math.unit(5 + 3 / 12, "feet"),
  19909. weight: math.unit(160, "lb"),
  19910. name: "Front (Dressed)",
  19911. image: {
  19912. source: "./media/characters/kira/front-dressed.svg",
  19913. extra: 906 / 786,
  19914. bottom: 0.01
  19915. }
  19916. },
  19917. beans: {
  19918. height: math.unit(0.92, "feet"),
  19919. name: "Beans",
  19920. image: {
  19921. source: "./media/characters/kira/beans.svg"
  19922. }
  19923. },
  19924. },
  19925. [
  19926. {
  19927. name: "Normal",
  19928. height: math.unit(5 + 3 / 12, "feet"),
  19929. default: true
  19930. },
  19931. ]
  19932. ))
  19933. characterMakers.push(() => makeCharacter(
  19934. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19935. {
  19936. front: {
  19937. height: math.unit(5 + 4 / 12, "feet"),
  19938. weight: math.unit(145, "lb"),
  19939. name: "Front",
  19940. image: {
  19941. source: "./media/characters/scramble/front.svg",
  19942. extra: 763 / 727,
  19943. bottom: 0.05
  19944. }
  19945. },
  19946. back: {
  19947. height: math.unit(5 + 4 / 12, "feet"),
  19948. weight: math.unit(145, "lb"),
  19949. name: "Back",
  19950. image: {
  19951. source: "./media/characters/scramble/back.svg",
  19952. extra: 826 / 737,
  19953. bottom: 0.002
  19954. }
  19955. },
  19956. },
  19957. [
  19958. {
  19959. name: "Normal",
  19960. height: math.unit(5 + 4 / 12, "feet"),
  19961. default: true
  19962. },
  19963. ]
  19964. ))
  19965. characterMakers.push(() => makeCharacter(
  19966. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19967. {
  19968. side: {
  19969. height: math.unit(6 + 2 / 12, "feet"),
  19970. weight: math.unit(190, "lb"),
  19971. name: "Side",
  19972. image: {
  19973. source: "./media/characters/biscuit/side.svg",
  19974. extra: 858 / 791,
  19975. bottom: 0.044
  19976. }
  19977. },
  19978. },
  19979. [
  19980. {
  19981. name: "Normal",
  19982. height: math.unit(6 + 2 / 12, "feet"),
  19983. default: true
  19984. },
  19985. ]
  19986. ))
  19987. characterMakers.push(() => makeCharacter(
  19988. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19989. {
  19990. front: {
  19991. height: math.unit(5 + 2 / 12, "feet"),
  19992. weight: math.unit(120, "lb"),
  19993. name: "Front",
  19994. image: {
  19995. source: "./media/characters/poffin/front.svg",
  19996. extra: 786 / 680,
  19997. bottom: 0.005
  19998. }
  19999. },
  20000. },
  20001. [
  20002. {
  20003. name: "Normal",
  20004. height: math.unit(5 + 2 / 12, "feet"),
  20005. default: true
  20006. },
  20007. ]
  20008. ))
  20009. characterMakers.push(() => makeCharacter(
  20010. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20011. {
  20012. front: {
  20013. height: math.unit(6 + 3 / 12, "feet"),
  20014. weight: math.unit(519, "lb"),
  20015. name: "Front",
  20016. image: {
  20017. source: "./media/characters/dhari/front.svg",
  20018. extra: 1048 / 946,
  20019. bottom: 0.015
  20020. }
  20021. },
  20022. back: {
  20023. height: math.unit(6 + 3 / 12, "feet"),
  20024. weight: math.unit(519, "lb"),
  20025. name: "Back",
  20026. image: {
  20027. source: "./media/characters/dhari/back.svg",
  20028. extra: 1048 / 931,
  20029. bottom: 0.005
  20030. }
  20031. },
  20032. frontDressed: {
  20033. height: math.unit(6 + 3 / 12, "feet"),
  20034. weight: math.unit(519, "lb"),
  20035. name: "Front (Dressed)",
  20036. image: {
  20037. source: "./media/characters/dhari/front-dressed.svg",
  20038. extra: 1713 / 1546,
  20039. bottom: 0.02
  20040. }
  20041. },
  20042. backDressed: {
  20043. height: math.unit(6 + 3 / 12, "feet"),
  20044. weight: math.unit(519, "lb"),
  20045. name: "Back (Dressed)",
  20046. image: {
  20047. source: "./media/characters/dhari/back-dressed.svg",
  20048. extra: 1699 / 1537,
  20049. bottom: 0.01
  20050. }
  20051. },
  20052. maw: {
  20053. height: math.unit(0.95, "feet"),
  20054. name: "Maw",
  20055. image: {
  20056. source: "./media/characters/dhari/maw.svg"
  20057. }
  20058. },
  20059. wereFront: {
  20060. height: math.unit(12 + 8 / 12, "feet"),
  20061. weight: math.unit(4000, "lb"),
  20062. name: "Front (Were)",
  20063. image: {
  20064. source: "./media/characters/dhari/were-front.svg",
  20065. extra: 1065 / 969,
  20066. bottom: 0.015
  20067. }
  20068. },
  20069. wereBack: {
  20070. height: math.unit(12 + 8 / 12, "feet"),
  20071. weight: math.unit(4000, "lb"),
  20072. name: "Back (Were)",
  20073. image: {
  20074. source: "./media/characters/dhari/were-back.svg",
  20075. extra: 1065 / 969,
  20076. bottom: 0.012
  20077. }
  20078. },
  20079. wereMaw: {
  20080. height: math.unit(0.625, "meters"),
  20081. name: "Maw (Were)",
  20082. image: {
  20083. source: "./media/characters/dhari/were-maw.svg"
  20084. }
  20085. },
  20086. },
  20087. [
  20088. {
  20089. name: "Normal",
  20090. height: math.unit(6 + 3 / 12, "feet"),
  20091. default: true
  20092. },
  20093. ]
  20094. ))
  20095. characterMakers.push(() => makeCharacter(
  20096. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20097. {
  20098. anthro: {
  20099. height: math.unit(5 + 7 / 12, "feet"),
  20100. weight: math.unit(175, "lb"),
  20101. name: "Anthro",
  20102. image: {
  20103. source: "./media/characters/rena-dyne/anthro.svg",
  20104. extra: 1849 / 1785,
  20105. bottom: 0.005
  20106. }
  20107. },
  20108. taur: {
  20109. height: math.unit(15 + 6 / 12, "feet"),
  20110. weight: math.unit(8000, "lb"),
  20111. name: "Taur",
  20112. image: {
  20113. source: "./media/characters/rena-dyne/taur.svg",
  20114. extra: 2315 / 2234,
  20115. bottom: 0.033
  20116. }
  20117. },
  20118. },
  20119. [
  20120. {
  20121. name: "Normal",
  20122. height: math.unit(5 + 7 / 12, "feet"),
  20123. default: true
  20124. },
  20125. ]
  20126. ))
  20127. characterMakers.push(() => makeCharacter(
  20128. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20129. {
  20130. front: {
  20131. height: math.unit(8, "feet"),
  20132. weight: math.unit(600, "lb"),
  20133. name: "Front",
  20134. image: {
  20135. source: "./media/characters/weremeep/front.svg",
  20136. extra: 967 / 862,
  20137. bottom: 0.01
  20138. }
  20139. },
  20140. },
  20141. [
  20142. {
  20143. name: "Normal",
  20144. height: math.unit(8, "feet"),
  20145. default: true
  20146. },
  20147. {
  20148. name: "Lorg",
  20149. height: math.unit(12, "feet")
  20150. },
  20151. {
  20152. name: "Oh Lawd She Comin'",
  20153. height: math.unit(20, "feet")
  20154. },
  20155. ]
  20156. ))
  20157. characterMakers.push(() => makeCharacter(
  20158. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20159. {
  20160. front: {
  20161. height: math.unit(4, "feet"),
  20162. weight: math.unit(90, "lb"),
  20163. name: "Front",
  20164. image: {
  20165. source: "./media/characters/reza/front.svg",
  20166. extra: 1183 / 1111,
  20167. bottom: 0.017
  20168. }
  20169. },
  20170. back: {
  20171. height: math.unit(4, "feet"),
  20172. weight: math.unit(90, "lb"),
  20173. name: "Back",
  20174. image: {
  20175. source: "./media/characters/reza/back.svg",
  20176. extra: 1183 / 1111,
  20177. bottom: 0.01
  20178. }
  20179. },
  20180. drake: {
  20181. height: math.unit(30, "feet"),
  20182. weight: math.unit(246960, "lb"),
  20183. name: "Drake",
  20184. image: {
  20185. source: "./media/characters/reza/drake.svg",
  20186. extra: 2350 / 2024,
  20187. bottom: 60.7 / 2403
  20188. }
  20189. },
  20190. },
  20191. [
  20192. {
  20193. name: "Normal",
  20194. height: math.unit(4, "feet"),
  20195. default: true
  20196. },
  20197. ]
  20198. ))
  20199. characterMakers.push(() => makeCharacter(
  20200. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20201. {
  20202. side: {
  20203. height: math.unit(15, "feet"),
  20204. weight: math.unit(14, "tons"),
  20205. name: "Side",
  20206. image: {
  20207. source: "./media/characters/athea/side.svg",
  20208. extra: 960 / 540,
  20209. bottom: 0.003
  20210. }
  20211. },
  20212. sitting: {
  20213. height: math.unit(6 * 2.85, "feet"),
  20214. weight: math.unit(14, "tons"),
  20215. name: "Sitting",
  20216. image: {
  20217. source: "./media/characters/athea/sitting.svg",
  20218. extra: 621 / 581,
  20219. bottom: 0.075
  20220. }
  20221. },
  20222. maw: {
  20223. height: math.unit(7.59498031496063, "feet"),
  20224. name: "Maw",
  20225. image: {
  20226. source: "./media/characters/athea/maw.svg"
  20227. }
  20228. },
  20229. },
  20230. [
  20231. {
  20232. name: "Lap Cat",
  20233. height: math.unit(2.5, "feet")
  20234. },
  20235. {
  20236. name: "Minimacro",
  20237. height: math.unit(15, "feet"),
  20238. default: true
  20239. },
  20240. {
  20241. name: "Macro",
  20242. height: math.unit(120, "feet")
  20243. },
  20244. {
  20245. name: "Macro+",
  20246. height: math.unit(640, "feet")
  20247. },
  20248. {
  20249. name: "Colossus",
  20250. height: math.unit(2.2, "miles")
  20251. },
  20252. ]
  20253. ))
  20254. characterMakers.push(() => makeCharacter(
  20255. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20256. {
  20257. front: {
  20258. height: math.unit(8 + 8 / 12, "feet"),
  20259. weight: math.unit(130, "kg"),
  20260. name: "Front",
  20261. image: {
  20262. source: "./media/characters/seroko/front.svg",
  20263. extra: 1385 / 1280,
  20264. bottom: 0.025
  20265. }
  20266. },
  20267. back: {
  20268. height: math.unit(8 + 8 / 12, "feet"),
  20269. weight: math.unit(130, "kg"),
  20270. name: "Back",
  20271. image: {
  20272. source: "./media/characters/seroko/back.svg",
  20273. extra: 1369 / 1238,
  20274. bottom: 0.018
  20275. }
  20276. },
  20277. frontDressed: {
  20278. height: math.unit(8 + 8 / 12, "feet"),
  20279. weight: math.unit(130, "kg"),
  20280. name: "Front (Dressed)",
  20281. image: {
  20282. source: "./media/characters/seroko/front-dressed.svg",
  20283. extra: 1366 / 1275,
  20284. bottom: 0.03
  20285. }
  20286. },
  20287. },
  20288. [
  20289. {
  20290. name: "Normal",
  20291. height: math.unit(8 + 8 / 12, "feet"),
  20292. default: true
  20293. },
  20294. ]
  20295. ))
  20296. characterMakers.push(() => makeCharacter(
  20297. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20298. {
  20299. front: {
  20300. height: math.unit(5.5, "feet"),
  20301. weight: math.unit(160, "lb"),
  20302. name: "Front",
  20303. image: {
  20304. source: "./media/characters/quatzi/front.svg",
  20305. extra: 2346 / 2242,
  20306. bottom: 0.015
  20307. }
  20308. },
  20309. },
  20310. [
  20311. {
  20312. name: "Normal",
  20313. height: math.unit(5.5, "feet"),
  20314. default: true
  20315. },
  20316. {
  20317. name: "Big",
  20318. height: math.unit(7.7, "feet")
  20319. },
  20320. ]
  20321. ))
  20322. characterMakers.push(() => makeCharacter(
  20323. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20324. {
  20325. front: {
  20326. height: math.unit(5 + 11 / 12, "feet"),
  20327. weight: math.unit(180, "lb"),
  20328. name: "Front",
  20329. image: {
  20330. source: "./media/characters/sen/front.svg",
  20331. extra: 1321 / 1254,
  20332. bottom: 0.015
  20333. }
  20334. },
  20335. side: {
  20336. height: math.unit(5 + 11 / 12, "feet"),
  20337. weight: math.unit(180, "lb"),
  20338. name: "Side",
  20339. image: {
  20340. source: "./media/characters/sen/side.svg",
  20341. extra: 1321 / 1254,
  20342. bottom: 0.007
  20343. }
  20344. },
  20345. back: {
  20346. height: math.unit(5 + 11 / 12, "feet"),
  20347. weight: math.unit(180, "lb"),
  20348. name: "Back",
  20349. image: {
  20350. source: "./media/characters/sen/back.svg",
  20351. extra: 1321 / 1254
  20352. }
  20353. },
  20354. },
  20355. [
  20356. {
  20357. name: "Normal",
  20358. height: math.unit(5 + 11 / 12, "feet"),
  20359. default: true
  20360. },
  20361. ]
  20362. ))
  20363. characterMakers.push(() => makeCharacter(
  20364. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20365. {
  20366. front: {
  20367. height: math.unit(166.6, "cm"),
  20368. weight: math.unit(66.6, "kg"),
  20369. name: "Front",
  20370. image: {
  20371. source: "./media/characters/fruity/front.svg",
  20372. extra: 1510 / 1386,
  20373. bottom: 0.04
  20374. }
  20375. },
  20376. back: {
  20377. height: math.unit(166.6, "cm"),
  20378. weight: math.unit(66.6, "lb"),
  20379. name: "Back",
  20380. image: {
  20381. source: "./media/characters/fruity/back.svg",
  20382. extra: 1563 / 1435,
  20383. bottom: 0.005
  20384. }
  20385. },
  20386. },
  20387. [
  20388. {
  20389. name: "Normal",
  20390. height: math.unit(166.6, "cm"),
  20391. default: true
  20392. },
  20393. {
  20394. name: "Demonic",
  20395. height: math.unit(166.6, "feet")
  20396. },
  20397. ]
  20398. ))
  20399. characterMakers.push(() => makeCharacter(
  20400. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20401. {
  20402. side: {
  20403. height: math.unit(10, "feet"),
  20404. weight: math.unit(500, "lb"),
  20405. name: "Side",
  20406. image: {
  20407. source: "./media/characters/zost/side.svg",
  20408. extra: 966 / 880,
  20409. bottom: 0.075
  20410. }
  20411. },
  20412. mawFront: {
  20413. height: math.unit(1.08, "meters"),
  20414. name: "Maw (Front)",
  20415. image: {
  20416. source: "./media/characters/zost/maw-front.svg"
  20417. }
  20418. },
  20419. mawSide: {
  20420. height: math.unit(2.66, "feet"),
  20421. name: "Maw (Side)",
  20422. image: {
  20423. source: "./media/characters/zost/maw-side.svg"
  20424. }
  20425. },
  20426. },
  20427. [
  20428. {
  20429. name: "Normal",
  20430. height: math.unit(10, "feet"),
  20431. default: true
  20432. },
  20433. ]
  20434. ))
  20435. characterMakers.push(() => makeCharacter(
  20436. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20437. {
  20438. front: {
  20439. height: math.unit(5 + 4 / 12, "feet"),
  20440. weight: math.unit(120, "lb"),
  20441. name: "Front",
  20442. image: {
  20443. source: "./media/characters/luci/front.svg",
  20444. extra: 1985 / 1884,
  20445. bottom: 0.04
  20446. }
  20447. },
  20448. back: {
  20449. height: math.unit(5 + 4 / 12, "feet"),
  20450. weight: math.unit(120, "lb"),
  20451. name: "Back",
  20452. image: {
  20453. source: "./media/characters/luci/back.svg",
  20454. extra: 1892 / 1791,
  20455. bottom: 0.002
  20456. }
  20457. },
  20458. },
  20459. [
  20460. {
  20461. name: "Normal",
  20462. height: math.unit(5 + 4 / 12, "feet"),
  20463. default: true
  20464. },
  20465. ]
  20466. ))
  20467. characterMakers.push(() => makeCharacter(
  20468. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20469. {
  20470. front: {
  20471. height: math.unit(1500, "feet"),
  20472. weight: math.unit(3.8e6, "tons"),
  20473. name: "Front",
  20474. image: {
  20475. source: "./media/characters/2th/front.svg",
  20476. extra: 3489 / 3350,
  20477. bottom: 0.1
  20478. }
  20479. },
  20480. foot: {
  20481. height: math.unit(461, "feet"),
  20482. name: "Foot",
  20483. image: {
  20484. source: "./media/characters/2th/foot.svg"
  20485. }
  20486. },
  20487. },
  20488. [
  20489. {
  20490. name: "\"Micro\"",
  20491. height: math.unit(15 + 7 / 12, "feet")
  20492. },
  20493. {
  20494. name: "Normal",
  20495. height: math.unit(1500, "feet"),
  20496. default: true
  20497. },
  20498. {
  20499. name: "Macro",
  20500. height: math.unit(5000, "feet")
  20501. },
  20502. {
  20503. name: "Megamacro",
  20504. height: math.unit(15, "miles")
  20505. },
  20506. {
  20507. name: "Gigamacro",
  20508. height: math.unit(4000, "miles")
  20509. },
  20510. {
  20511. name: "Galactic",
  20512. height: math.unit(50, "AU")
  20513. },
  20514. ]
  20515. ))
  20516. characterMakers.push(() => makeCharacter(
  20517. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20518. {
  20519. front: {
  20520. height: math.unit(5 + 6 / 12, "feet"),
  20521. weight: math.unit(220, "lb"),
  20522. name: "Front",
  20523. image: {
  20524. source: "./media/characters/amethyst/front.svg",
  20525. extra: 2078 / 2040,
  20526. bottom: 0.045
  20527. }
  20528. },
  20529. back: {
  20530. height: math.unit(5 + 6 / 12, "feet"),
  20531. weight: math.unit(220, "lb"),
  20532. name: "Back",
  20533. image: {
  20534. source: "./media/characters/amethyst/back.svg",
  20535. extra: 2021 / 1989,
  20536. bottom: 0.02
  20537. }
  20538. },
  20539. },
  20540. [
  20541. {
  20542. name: "Normal",
  20543. height: math.unit(5 + 6 / 12, "feet"),
  20544. default: true
  20545. },
  20546. ]
  20547. ))
  20548. characterMakers.push(() => makeCharacter(
  20549. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20550. {
  20551. front: {
  20552. height: math.unit(4 + 11 / 12, "feet"),
  20553. weight: math.unit(120, "lb"),
  20554. name: "Front",
  20555. image: {
  20556. source: "./media/characters/yumi-akiyama/front.svg",
  20557. extra: 1327 / 1235,
  20558. bottom: 0.02
  20559. }
  20560. },
  20561. back: {
  20562. height: math.unit(4 + 11 / 12, "feet"),
  20563. weight: math.unit(120, "lb"),
  20564. name: "Back",
  20565. image: {
  20566. source: "./media/characters/yumi-akiyama/back.svg",
  20567. extra: 1287 / 1245,
  20568. bottom: 0.002
  20569. }
  20570. },
  20571. },
  20572. [
  20573. {
  20574. name: "Galactic",
  20575. height: math.unit(50, "galaxies"),
  20576. default: true
  20577. },
  20578. {
  20579. name: "Universal",
  20580. height: math.unit(100, "universes")
  20581. },
  20582. ]
  20583. ))
  20584. characterMakers.push(() => makeCharacter(
  20585. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20586. {
  20587. front: {
  20588. height: math.unit(8, "feet"),
  20589. weight: math.unit(500, "lb"),
  20590. name: "Front",
  20591. image: {
  20592. source: "./media/characters/rifter-yrmori/front.svg",
  20593. extra: 1180 / 1125,
  20594. bottom: 0.02
  20595. }
  20596. },
  20597. back: {
  20598. height: math.unit(8, "feet"),
  20599. weight: math.unit(500, "lb"),
  20600. name: "Back",
  20601. image: {
  20602. source: "./media/characters/rifter-yrmori/back.svg",
  20603. extra: 1190 / 1145,
  20604. bottom: 0.001
  20605. }
  20606. },
  20607. wings: {
  20608. height: math.unit(7.75, "feet"),
  20609. weight: math.unit(500, "lb"),
  20610. name: "Wings",
  20611. image: {
  20612. source: "./media/characters/rifter-yrmori/wings.svg",
  20613. extra: 1357 / 1285
  20614. }
  20615. },
  20616. maw: {
  20617. height: math.unit(0.8, "feet"),
  20618. name: "Maw",
  20619. image: {
  20620. source: "./media/characters/rifter-yrmori/maw.svg"
  20621. }
  20622. },
  20623. mawfront: {
  20624. height: math.unit(1.45, "feet"),
  20625. name: "Maw (Front)",
  20626. image: {
  20627. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20628. }
  20629. },
  20630. },
  20631. [
  20632. {
  20633. name: "Normal",
  20634. height: math.unit(8, "feet"),
  20635. default: true
  20636. },
  20637. {
  20638. name: "Macro",
  20639. height: math.unit(42, "meters")
  20640. },
  20641. ]
  20642. ))
  20643. characterMakers.push(() => makeCharacter(
  20644. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20645. {
  20646. were: {
  20647. height: math.unit(25 + 6 / 12, "feet"),
  20648. weight: math.unit(10000, "lb"),
  20649. name: "Were",
  20650. image: {
  20651. source: "./media/characters/tahajin/were.svg",
  20652. extra: 801 / 770,
  20653. bottom: 0.042
  20654. }
  20655. },
  20656. aquatic: {
  20657. height: math.unit(6 + 4 / 12, "feet"),
  20658. weight: math.unit(160, "lb"),
  20659. name: "Aquatic",
  20660. image: {
  20661. source: "./media/characters/tahajin/aquatic.svg",
  20662. extra: 572 / 542,
  20663. bottom: 0.04
  20664. }
  20665. },
  20666. chow: {
  20667. height: math.unit(8 + 11 / 12, "feet"),
  20668. weight: math.unit(450, "lb"),
  20669. name: "Chow",
  20670. image: {
  20671. source: "./media/characters/tahajin/chow.svg",
  20672. extra: 660 / 640,
  20673. bottom: 0.015
  20674. }
  20675. },
  20676. demiNaga: {
  20677. height: math.unit(6 + 8 / 12, "feet"),
  20678. weight: math.unit(300, "lb"),
  20679. name: "Demi Naga",
  20680. image: {
  20681. source: "./media/characters/tahajin/demi-naga.svg",
  20682. extra: 643 / 615,
  20683. bottom: 0.1
  20684. }
  20685. },
  20686. data: {
  20687. height: math.unit(5, "inches"),
  20688. weight: math.unit(0.1, "lb"),
  20689. name: "Data",
  20690. image: {
  20691. source: "./media/characters/tahajin/data.svg"
  20692. }
  20693. },
  20694. fluu: {
  20695. height: math.unit(5 + 7 / 12, "feet"),
  20696. weight: math.unit(140, "lb"),
  20697. name: "Fluu",
  20698. image: {
  20699. source: "./media/characters/tahajin/fluu.svg",
  20700. extra: 628 / 592,
  20701. bottom: 0.02
  20702. }
  20703. },
  20704. starWarrior: {
  20705. height: math.unit(4 + 5 / 12, "feet"),
  20706. weight: math.unit(50, "lb"),
  20707. name: "Star Warrior",
  20708. image: {
  20709. source: "./media/characters/tahajin/star-warrior.svg"
  20710. }
  20711. },
  20712. },
  20713. [
  20714. {
  20715. name: "Normal",
  20716. height: math.unit(25 + 6 / 12, "feet"),
  20717. default: true
  20718. },
  20719. ]
  20720. ))
  20721. characterMakers.push(() => makeCharacter(
  20722. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20723. {
  20724. front: {
  20725. height: math.unit(8, "feet"),
  20726. weight: math.unit(350, "lb"),
  20727. name: "Front",
  20728. image: {
  20729. source: "./media/characters/gabira/front.svg",
  20730. extra: 608 / 580,
  20731. bottom: 0.03
  20732. }
  20733. },
  20734. back: {
  20735. height: math.unit(8, "feet"),
  20736. weight: math.unit(350, "lb"),
  20737. name: "Back",
  20738. image: {
  20739. source: "./media/characters/gabira/back.svg",
  20740. extra: 608 / 580,
  20741. bottom: 0.03
  20742. }
  20743. },
  20744. },
  20745. [
  20746. {
  20747. name: "Normal",
  20748. height: math.unit(8, "feet"),
  20749. default: true
  20750. },
  20751. ]
  20752. ))
  20753. characterMakers.push(() => makeCharacter(
  20754. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20755. {
  20756. front: {
  20757. height: math.unit(5 + 3 / 12, "feet"),
  20758. weight: math.unit(137, "lb"),
  20759. name: "Front",
  20760. image: {
  20761. source: "./media/characters/sasha-katraine/front.svg",
  20762. bottom: 0.045
  20763. }
  20764. },
  20765. },
  20766. [
  20767. {
  20768. name: "Micro",
  20769. height: math.unit(5, "inches")
  20770. },
  20771. {
  20772. name: "Normal",
  20773. height: math.unit(5 + 3 / 12, "feet"),
  20774. default: true
  20775. },
  20776. ]
  20777. ))
  20778. characterMakers.push(() => makeCharacter(
  20779. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20780. {
  20781. side: {
  20782. height: math.unit(4, "inches"),
  20783. weight: math.unit(200, "grams"),
  20784. name: "Side",
  20785. image: {
  20786. source: "./media/characters/der/side.svg",
  20787. extra: 719 / 400,
  20788. bottom: 30.6 / 749.9187
  20789. }
  20790. },
  20791. },
  20792. [
  20793. {
  20794. name: "Micro",
  20795. height: math.unit(4, "inches"),
  20796. default: true
  20797. },
  20798. ]
  20799. ))
  20800. characterMakers.push(() => makeCharacter(
  20801. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20802. {
  20803. side: {
  20804. height: math.unit(30, "meters"),
  20805. weight: math.unit(700, "tonnes"),
  20806. name: "Side",
  20807. image: {
  20808. source: "./media/characters/fixerdragon/side.svg",
  20809. extra: (1293.0514 - 116.03) / 1106.86,
  20810. bottom: 116.03 / 1293.0514
  20811. }
  20812. },
  20813. },
  20814. [
  20815. {
  20816. name: "Planck",
  20817. height: math.unit(1.6e-35, "meters")
  20818. },
  20819. {
  20820. name: "Micro",
  20821. height: math.unit(0.4, "meters")
  20822. },
  20823. {
  20824. name: "Normal",
  20825. height: math.unit(30, "meters"),
  20826. default: true
  20827. },
  20828. {
  20829. name: "Megamacro",
  20830. height: math.unit(1.2, "megameters")
  20831. },
  20832. {
  20833. name: "Teramacro",
  20834. height: math.unit(130, "terameters")
  20835. },
  20836. {
  20837. name: "Yottamacro",
  20838. height: math.unit(6200, "yottameters")
  20839. },
  20840. ]
  20841. ));
  20842. characterMakers.push(() => makeCharacter(
  20843. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20844. {
  20845. front: {
  20846. height: math.unit(8, "feet"),
  20847. weight: math.unit(250, "lb"),
  20848. name: "Front",
  20849. image: {
  20850. source: "./media/characters/kite/front.svg",
  20851. extra: 2796 / 2659,
  20852. bottom: 0.002
  20853. }
  20854. },
  20855. },
  20856. [
  20857. {
  20858. name: "Normal",
  20859. height: math.unit(8, "feet"),
  20860. default: true
  20861. },
  20862. {
  20863. name: "Macro",
  20864. height: math.unit(360, "feet")
  20865. },
  20866. {
  20867. name: "Megamacro",
  20868. height: math.unit(1500, "feet")
  20869. },
  20870. ]
  20871. ))
  20872. characterMakers.push(() => makeCharacter(
  20873. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20874. {
  20875. front: {
  20876. height: math.unit(5 + 10 / 12, "feet"),
  20877. weight: math.unit(150, "lb"),
  20878. name: "Front",
  20879. image: {
  20880. source: "./media/characters/poojawa-vynar/front.svg",
  20881. extra: (1506.1547 - 55) / 1356.6,
  20882. bottom: 55 / 1506.1547
  20883. }
  20884. },
  20885. frontTailless: {
  20886. height: math.unit(5 + 10 / 12, "feet"),
  20887. weight: math.unit(150, "lb"),
  20888. name: "Front (Tailless)",
  20889. image: {
  20890. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20891. extra: (1506.1547 - 55) / 1356.6,
  20892. bottom: 55 / 1506.1547
  20893. }
  20894. },
  20895. },
  20896. [
  20897. {
  20898. name: "Normal",
  20899. height: math.unit(5 + 10 / 12, "feet"),
  20900. default: true
  20901. },
  20902. ]
  20903. ))
  20904. characterMakers.push(() => makeCharacter(
  20905. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20906. {
  20907. front: {
  20908. height: math.unit(293, "meters"),
  20909. weight: math.unit(70400, "tons"),
  20910. name: "Front",
  20911. image: {
  20912. source: "./media/characters/violette/front.svg",
  20913. extra: 1227 / 1180,
  20914. bottom: 0.005
  20915. }
  20916. },
  20917. back: {
  20918. height: math.unit(293, "meters"),
  20919. weight: math.unit(70400, "tons"),
  20920. name: "Back",
  20921. image: {
  20922. source: "./media/characters/violette/back.svg",
  20923. extra: 1227 / 1180,
  20924. bottom: 0.005
  20925. }
  20926. },
  20927. },
  20928. [
  20929. {
  20930. name: "Macro",
  20931. height: math.unit(293, "meters"),
  20932. default: true
  20933. },
  20934. ]
  20935. ))
  20936. characterMakers.push(() => makeCharacter(
  20937. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20938. {
  20939. front: {
  20940. height: math.unit(1050, "feet"),
  20941. weight: math.unit(200000, "tons"),
  20942. name: "Front",
  20943. image: {
  20944. source: "./media/characters/alessandra/front.svg",
  20945. extra: 960 / 912,
  20946. bottom: 0.06
  20947. }
  20948. },
  20949. },
  20950. [
  20951. {
  20952. name: "Macro",
  20953. height: math.unit(1050, "feet")
  20954. },
  20955. {
  20956. name: "Macro+",
  20957. height: math.unit(900, "meters"),
  20958. default: true
  20959. },
  20960. ]
  20961. ))
  20962. characterMakers.push(() => makeCharacter(
  20963. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20964. {
  20965. front: {
  20966. height: math.unit(5, "feet"),
  20967. weight: math.unit(187, "lb"),
  20968. name: "Front",
  20969. image: {
  20970. source: "./media/characters/person/front.svg",
  20971. extra: 3087 / 2945,
  20972. bottom: 91 / 3181
  20973. }
  20974. },
  20975. },
  20976. [
  20977. {
  20978. name: "Micro",
  20979. height: math.unit(3, "inches")
  20980. },
  20981. {
  20982. name: "Normal",
  20983. height: math.unit(5, "feet"),
  20984. default: true
  20985. },
  20986. {
  20987. name: "Macro",
  20988. height: math.unit(90, "feet")
  20989. },
  20990. {
  20991. name: "Max Size",
  20992. height: math.unit(280, "feet")
  20993. },
  20994. ]
  20995. ))
  20996. characterMakers.push(() => makeCharacter(
  20997. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20998. {
  20999. front: {
  21000. height: math.unit(4.5, "meters"),
  21001. weight: math.unit(3200, "lb"),
  21002. name: "Front",
  21003. image: {
  21004. source: "./media/characters/ty/front.svg",
  21005. extra: 1038 / 960,
  21006. bottom: 31.156 / 1068
  21007. }
  21008. },
  21009. back: {
  21010. height: math.unit(4.5, "meters"),
  21011. weight: math.unit(3200, "lb"),
  21012. name: "Back",
  21013. image: {
  21014. source: "./media/characters/ty/back.svg",
  21015. extra: 1044 / 966,
  21016. bottom: 7.48 / 1049
  21017. }
  21018. },
  21019. },
  21020. [
  21021. {
  21022. name: "Normal",
  21023. height: math.unit(4.5, "meters"),
  21024. default: true
  21025. },
  21026. ]
  21027. ))
  21028. characterMakers.push(() => makeCharacter(
  21029. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21030. {
  21031. front: {
  21032. height: math.unit(5 + 4 / 12, "feet"),
  21033. weight: math.unit(115, "lb"),
  21034. name: "Front",
  21035. image: {
  21036. source: "./media/characters/rocky/front.svg",
  21037. extra: 1012 / 975,
  21038. bottom: 54 / 1066
  21039. }
  21040. },
  21041. },
  21042. [
  21043. {
  21044. name: "Normal",
  21045. height: math.unit(5 + 4 / 12, "feet"),
  21046. default: true
  21047. },
  21048. ]
  21049. ))
  21050. characterMakers.push(() => makeCharacter(
  21051. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21052. {
  21053. upright: {
  21054. height: math.unit(6, "meters"),
  21055. weight: math.unit(4000, "kg"),
  21056. name: "Upright",
  21057. image: {
  21058. source: "./media/characters/ruin/upright.svg",
  21059. extra: 668 / 661,
  21060. bottom: 42 / 799.8396
  21061. }
  21062. },
  21063. },
  21064. [
  21065. {
  21066. name: "Normal",
  21067. height: math.unit(6, "meters"),
  21068. default: true
  21069. },
  21070. ]
  21071. ))
  21072. characterMakers.push(() => makeCharacter(
  21073. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21074. {
  21075. front: {
  21076. height: math.unit(5, "feet"),
  21077. weight: math.unit(106, "lb"),
  21078. name: "Front",
  21079. image: {
  21080. source: "./media/characters/robin/front.svg",
  21081. extra: 862 / 799,
  21082. bottom: 42.4 / 914.8856
  21083. }
  21084. },
  21085. },
  21086. [
  21087. {
  21088. name: "Normal",
  21089. height: math.unit(5, "feet"),
  21090. default: true
  21091. },
  21092. ]
  21093. ))
  21094. characterMakers.push(() => makeCharacter(
  21095. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21096. {
  21097. side: {
  21098. height: math.unit(3, "feet"),
  21099. weight: math.unit(225, "lb"),
  21100. name: "Side",
  21101. image: {
  21102. source: "./media/characters/saian/side.svg",
  21103. extra: 566 / 356,
  21104. bottom: 79.7 / 643
  21105. }
  21106. },
  21107. maw: {
  21108. height: math.unit(2.85, "feet"),
  21109. name: "Maw",
  21110. image: {
  21111. source: "./media/characters/saian/maw.svg"
  21112. }
  21113. },
  21114. },
  21115. [
  21116. {
  21117. name: "Normal",
  21118. height: math.unit(3, "feet"),
  21119. default: true
  21120. },
  21121. ]
  21122. ))
  21123. characterMakers.push(() => makeCharacter(
  21124. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21125. {
  21126. side: {
  21127. height: math.unit(8, "feet"),
  21128. weight: math.unit(300, "lb"),
  21129. name: "Side",
  21130. image: {
  21131. source: "./media/characters/equus-silvermane/side.svg",
  21132. extra: 2176 / 2050,
  21133. bottom: 65.7 / 2245
  21134. }
  21135. },
  21136. front: {
  21137. height: math.unit(8, "feet"),
  21138. weight: math.unit(300, "lb"),
  21139. name: "Front",
  21140. image: {
  21141. source: "./media/characters/equus-silvermane/front.svg",
  21142. extra: 4633 / 4400,
  21143. bottom: 71.3 / 4706.915
  21144. }
  21145. },
  21146. sideStepping: {
  21147. height: math.unit(8, "feet"),
  21148. weight: math.unit(300, "lb"),
  21149. name: "Side (Stepping)",
  21150. image: {
  21151. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21152. extra: 1968 / 1860,
  21153. bottom: 16.4 / 1989
  21154. }
  21155. },
  21156. },
  21157. [
  21158. {
  21159. name: "Normal",
  21160. height: math.unit(8, "feet")
  21161. },
  21162. {
  21163. name: "Minimacro",
  21164. height: math.unit(75, "feet"),
  21165. default: true
  21166. },
  21167. {
  21168. name: "Macro",
  21169. height: math.unit(150, "feet")
  21170. },
  21171. {
  21172. name: "Macro+",
  21173. height: math.unit(1000, "feet")
  21174. },
  21175. {
  21176. name: "Megamacro",
  21177. height: math.unit(1, "mile")
  21178. },
  21179. ]
  21180. ))
  21181. characterMakers.push(() => makeCharacter(
  21182. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21183. {
  21184. side: {
  21185. height: math.unit(20, "feet"),
  21186. weight: math.unit(30000, "kg"),
  21187. name: "Side",
  21188. image: {
  21189. source: "./media/characters/windar/side.svg",
  21190. extra: 1491 / 1248,
  21191. bottom: 82.56 / 1568
  21192. }
  21193. },
  21194. },
  21195. [
  21196. {
  21197. name: "Normal",
  21198. height: math.unit(20, "feet"),
  21199. default: true
  21200. },
  21201. ]
  21202. ))
  21203. characterMakers.push(() => makeCharacter(
  21204. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21205. {
  21206. side: {
  21207. height: math.unit(15.66, "feet"),
  21208. weight: math.unit(150, "lb"),
  21209. name: "Side",
  21210. image: {
  21211. source: "./media/characters/melody/side.svg",
  21212. extra: 1097 / 944,
  21213. bottom: 11.8 / 1109
  21214. }
  21215. },
  21216. sideOutfit: {
  21217. height: math.unit(15.66, "feet"),
  21218. weight: math.unit(150, "lb"),
  21219. name: "Side (Outfit)",
  21220. image: {
  21221. source: "./media/characters/melody/side-outfit.svg",
  21222. extra: 1097 / 944,
  21223. bottom: 11.8 / 1109
  21224. }
  21225. },
  21226. },
  21227. [
  21228. {
  21229. name: "Normal",
  21230. height: math.unit(15.66, "feet"),
  21231. default: true
  21232. },
  21233. ]
  21234. ))
  21235. characterMakers.push(() => makeCharacter(
  21236. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21237. {
  21238. front: {
  21239. height: math.unit(8, "feet"),
  21240. weight: math.unit(325, "lb"),
  21241. name: "Front",
  21242. image: {
  21243. source: "./media/characters/windera/front.svg",
  21244. extra: 3180 / 2845,
  21245. bottom: 178 / 3365
  21246. }
  21247. },
  21248. },
  21249. [
  21250. {
  21251. name: "Normal",
  21252. height: math.unit(8, "feet"),
  21253. default: true
  21254. },
  21255. ]
  21256. ))
  21257. characterMakers.push(() => makeCharacter(
  21258. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21259. {
  21260. front: {
  21261. height: math.unit(28.75, "feet"),
  21262. weight: math.unit(2000, "kg"),
  21263. name: "Front",
  21264. image: {
  21265. source: "./media/characters/sonear/front.svg",
  21266. extra: 1041.1 / 964.9,
  21267. bottom: 53.7 / 1096.6
  21268. }
  21269. },
  21270. },
  21271. [
  21272. {
  21273. name: "Normal",
  21274. height: math.unit(28.75, "feet"),
  21275. default: true
  21276. },
  21277. ]
  21278. ))
  21279. characterMakers.push(() => makeCharacter(
  21280. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21281. {
  21282. side: {
  21283. height: math.unit(25.5, "feet"),
  21284. weight: math.unit(23000, "kg"),
  21285. name: "Side",
  21286. image: {
  21287. source: "./media/characters/kanara/side.svg"
  21288. }
  21289. },
  21290. },
  21291. [
  21292. {
  21293. name: "Normal",
  21294. height: math.unit(25.5, "feet"),
  21295. default: true
  21296. },
  21297. ]
  21298. ))
  21299. characterMakers.push(() => makeCharacter(
  21300. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21301. {
  21302. side: {
  21303. height: math.unit(10, "feet"),
  21304. weight: math.unit(1000, "kg"),
  21305. name: "Side",
  21306. image: {
  21307. source: "./media/characters/ereus/side.svg",
  21308. extra: 1157 / 959,
  21309. bottom: 153 / 1312.5
  21310. }
  21311. },
  21312. },
  21313. [
  21314. {
  21315. name: "Normal",
  21316. height: math.unit(10, "feet"),
  21317. default: true
  21318. },
  21319. ]
  21320. ))
  21321. characterMakers.push(() => makeCharacter(
  21322. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21323. {
  21324. side: {
  21325. height: math.unit(4.5, "feet"),
  21326. weight: math.unit(500, "lb"),
  21327. name: "Side",
  21328. image: {
  21329. source: "./media/characters/e-ter/side.svg",
  21330. extra: 1550 / 1248,
  21331. bottom: 146 / 1694
  21332. }
  21333. },
  21334. },
  21335. [
  21336. {
  21337. name: "Normal",
  21338. height: math.unit(4.5, "feet"),
  21339. default: true
  21340. },
  21341. ]
  21342. ))
  21343. characterMakers.push(() => makeCharacter(
  21344. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21345. {
  21346. side: {
  21347. height: math.unit(9.7, "feet"),
  21348. weight: math.unit(4000, "kg"),
  21349. name: "Side",
  21350. image: {
  21351. source: "./media/characters/yamie/side.svg"
  21352. }
  21353. },
  21354. },
  21355. [
  21356. {
  21357. name: "Normal",
  21358. height: math.unit(9.7, "feet"),
  21359. default: true
  21360. },
  21361. ]
  21362. ))
  21363. characterMakers.push(() => makeCharacter(
  21364. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21365. {
  21366. front: {
  21367. height: math.unit(50, "feet"),
  21368. weight: math.unit(50000, "kg"),
  21369. name: "Front",
  21370. image: {
  21371. source: "./media/characters/anders/front.svg",
  21372. extra: 570 / 539,
  21373. bottom: 14.7 / 586.7
  21374. }
  21375. },
  21376. },
  21377. [
  21378. {
  21379. name: "Large",
  21380. height: math.unit(50, "feet")
  21381. },
  21382. {
  21383. name: "Macro",
  21384. height: math.unit(2000, "feet"),
  21385. default: true
  21386. },
  21387. {
  21388. name: "Megamacro",
  21389. height: math.unit(12, "miles")
  21390. },
  21391. ]
  21392. ))
  21393. characterMakers.push(() => makeCharacter(
  21394. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21395. {
  21396. front: {
  21397. height: math.unit(7 + 2 / 12, "feet"),
  21398. weight: math.unit(300, "lb"),
  21399. name: "Front",
  21400. image: {
  21401. source: "./media/characters/reban/front.svg",
  21402. extra: 516 / 487,
  21403. bottom: 42.82 / 558.356
  21404. }
  21405. },
  21406. dick: {
  21407. height: math.unit(7 / 5, "feet"),
  21408. name: "Dick",
  21409. image: {
  21410. source: "./media/characters/reban/dick.svg"
  21411. }
  21412. },
  21413. },
  21414. [
  21415. {
  21416. name: "Natural Height",
  21417. height: math.unit(7 + 2 / 12, "feet")
  21418. },
  21419. {
  21420. name: "Macro",
  21421. height: math.unit(500, "feet"),
  21422. default: true
  21423. },
  21424. {
  21425. name: "Canon Height",
  21426. height: math.unit(50, "AU")
  21427. },
  21428. ]
  21429. ))
  21430. characterMakers.push(() => makeCharacter(
  21431. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21432. {
  21433. front: {
  21434. height: math.unit(6, "feet"),
  21435. weight: math.unit(150, "lb"),
  21436. name: "Front",
  21437. image: {
  21438. source: "./media/characters/terrance-keayes/front.svg",
  21439. extra: 1.005,
  21440. bottom: 151 / 1615
  21441. }
  21442. },
  21443. side: {
  21444. height: math.unit(6, "feet"),
  21445. weight: math.unit(150, "lb"),
  21446. name: "Side",
  21447. image: {
  21448. source: "./media/characters/terrance-keayes/side.svg",
  21449. extra: 1.005,
  21450. bottom: 129.4 / 1544
  21451. }
  21452. },
  21453. back: {
  21454. height: math.unit(6, "feet"),
  21455. weight: math.unit(150, "lb"),
  21456. name: "Back",
  21457. image: {
  21458. source: "./media/characters/terrance-keayes/back.svg",
  21459. extra: 1.005,
  21460. bottom: 58.4 / 1557.3
  21461. }
  21462. },
  21463. dick: {
  21464. height: math.unit(6 * 0.208, "feet"),
  21465. name: "Dick",
  21466. image: {
  21467. source: "./media/characters/terrance-keayes/dick.svg"
  21468. }
  21469. },
  21470. },
  21471. [
  21472. {
  21473. name: "Canon Height",
  21474. height: math.unit(35, "miles"),
  21475. default: true
  21476. },
  21477. ]
  21478. ))
  21479. characterMakers.push(() => makeCharacter(
  21480. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21481. {
  21482. front: {
  21483. height: math.unit(6, "feet"),
  21484. weight: math.unit(150, "lb"),
  21485. name: "Front",
  21486. image: {
  21487. source: "./media/characters/ofelia/front.svg",
  21488. extra: 546 / 541,
  21489. bottom: 39 / 583
  21490. }
  21491. },
  21492. back: {
  21493. height: math.unit(6, "feet"),
  21494. weight: math.unit(150, "lb"),
  21495. name: "Back",
  21496. image: {
  21497. source: "./media/characters/ofelia/back.svg",
  21498. extra: 564 / 559.5,
  21499. bottom: 8.69 / 573.02
  21500. }
  21501. },
  21502. maw: {
  21503. height: math.unit(1, "feet"),
  21504. name: "Maw",
  21505. image: {
  21506. source: "./media/characters/ofelia/maw.svg"
  21507. }
  21508. },
  21509. foot: {
  21510. height: math.unit(1.949, "feet"),
  21511. name: "Foot",
  21512. image: {
  21513. source: "./media/characters/ofelia/foot.svg"
  21514. }
  21515. },
  21516. },
  21517. [
  21518. {
  21519. name: "Canon Height",
  21520. height: math.unit(2000, "miles"),
  21521. default: true
  21522. },
  21523. ]
  21524. ))
  21525. characterMakers.push(() => makeCharacter(
  21526. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21527. {
  21528. front: {
  21529. height: math.unit(6, "feet"),
  21530. weight: math.unit(150, "lb"),
  21531. name: "Front",
  21532. image: {
  21533. source: "./media/characters/samuel/front.svg",
  21534. extra: 265 / 258,
  21535. bottom: 2 / 266.1566
  21536. }
  21537. },
  21538. },
  21539. [
  21540. {
  21541. name: "Macro",
  21542. height: math.unit(100, "feet"),
  21543. default: true
  21544. },
  21545. {
  21546. name: "Full Size",
  21547. height: math.unit(1000, "miles")
  21548. },
  21549. ]
  21550. ))
  21551. characterMakers.push(() => makeCharacter(
  21552. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21553. {
  21554. front: {
  21555. height: math.unit(6, "feet"),
  21556. weight: math.unit(300, "lb"),
  21557. name: "Front",
  21558. image: {
  21559. source: "./media/characters/beishir-kiel/front.svg",
  21560. extra: 569 / 547,
  21561. bottom: 41.9 / 609
  21562. }
  21563. },
  21564. maw: {
  21565. height: math.unit(6 * 0.202, "feet"),
  21566. name: "Maw",
  21567. image: {
  21568. source: "./media/characters/beishir-kiel/maw.svg"
  21569. }
  21570. },
  21571. },
  21572. [
  21573. {
  21574. name: "Macro",
  21575. height: math.unit(300, "feet"),
  21576. default: true
  21577. },
  21578. ]
  21579. ))
  21580. characterMakers.push(() => makeCharacter(
  21581. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21582. {
  21583. front: {
  21584. height: math.unit(5 + 8 / 12, "feet"),
  21585. weight: math.unit(120, "lb"),
  21586. name: "Front",
  21587. image: {
  21588. source: "./media/characters/logan-grey/front.svg",
  21589. extra: 2539 / 2393,
  21590. bottom: 97.6 / 2636.37
  21591. }
  21592. },
  21593. frontAlt: {
  21594. height: math.unit(5 + 8 / 12, "feet"),
  21595. weight: math.unit(120, "lb"),
  21596. name: "Front (Alt)",
  21597. image: {
  21598. source: "./media/characters/logan-grey/front-alt.svg",
  21599. extra: 958 / 893,
  21600. bottom: 15 / 970.768
  21601. }
  21602. },
  21603. back: {
  21604. height: math.unit(5 + 8 / 12, "feet"),
  21605. weight: math.unit(120, "lb"),
  21606. name: "Back",
  21607. image: {
  21608. source: "./media/characters/logan-grey/back.svg",
  21609. extra: 958 / 893,
  21610. bottom: 2.1881 / 970.9788
  21611. }
  21612. },
  21613. dick: {
  21614. height: math.unit(1.437, "feet"),
  21615. name: "Dick",
  21616. image: {
  21617. source: "./media/characters/logan-grey/dick.svg"
  21618. }
  21619. },
  21620. },
  21621. [
  21622. {
  21623. name: "Normal",
  21624. height: math.unit(5 + 8 / 12, "feet")
  21625. },
  21626. {
  21627. name: "The 500 Foot Femboy",
  21628. height: math.unit(500, "feet"),
  21629. default: true
  21630. },
  21631. {
  21632. name: "Megmacro",
  21633. height: math.unit(20, "miles")
  21634. },
  21635. ]
  21636. ))
  21637. characterMakers.push(() => makeCharacter(
  21638. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21639. {
  21640. front: {
  21641. height: math.unit(8 + 2 / 12, "feet"),
  21642. weight: math.unit(275, "lb"),
  21643. name: "Front",
  21644. image: {
  21645. source: "./media/characters/draganta/front.svg",
  21646. extra: 1177 / 1135,
  21647. bottom: 33.46 / 1212.1
  21648. }
  21649. },
  21650. },
  21651. [
  21652. {
  21653. name: "Normal",
  21654. height: math.unit(8 + 6 / 12, "feet"),
  21655. default: true
  21656. },
  21657. {
  21658. name: "Macro",
  21659. height: math.unit(150, "feet")
  21660. },
  21661. {
  21662. name: "Megamacro",
  21663. height: math.unit(1000, "miles")
  21664. },
  21665. ]
  21666. ))
  21667. characterMakers.push(() => makeCharacter(
  21668. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21669. {
  21670. front: {
  21671. height: math.unit(1.72, "m"),
  21672. weight: math.unit(80, "lb"),
  21673. name: "Front",
  21674. image: {
  21675. source: "./media/characters/voski/front.svg",
  21676. extra: 2076.22 / 2022.4,
  21677. bottom: 102.7 / 2177.3866
  21678. }
  21679. },
  21680. frontNsfw: {
  21681. height: math.unit(1.72, "m"),
  21682. weight: math.unit(80, "lb"),
  21683. name: "Front (NSFW)",
  21684. image: {
  21685. source: "./media/characters/voski/front-nsfw.svg",
  21686. extra: 2076.22 / 2022.4,
  21687. bottom: 102.7 / 2177.3866
  21688. }
  21689. },
  21690. back: {
  21691. height: math.unit(1.72, "m"),
  21692. weight: math.unit(80, "lb"),
  21693. name: "Back",
  21694. image: {
  21695. source: "./media/characters/voski/back.svg",
  21696. extra: 2104 / 2051,
  21697. bottom: 10.45 / 2113.63
  21698. }
  21699. },
  21700. },
  21701. [
  21702. {
  21703. name: "Normal",
  21704. height: math.unit(1.72, "m")
  21705. },
  21706. {
  21707. name: "Macro",
  21708. height: math.unit(55, "m"),
  21709. default: true
  21710. },
  21711. {
  21712. name: "Macro+",
  21713. height: math.unit(300, "m")
  21714. },
  21715. {
  21716. name: "Macro++",
  21717. height: math.unit(700, "m")
  21718. },
  21719. {
  21720. name: "Macro+++",
  21721. height: math.unit(4500, "m")
  21722. },
  21723. {
  21724. name: "Macro++++",
  21725. height: math.unit(45, "km")
  21726. },
  21727. {
  21728. name: "Macro+++++",
  21729. height: math.unit(1220, "km")
  21730. },
  21731. ]
  21732. ))
  21733. characterMakers.push(() => makeCharacter(
  21734. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21735. {
  21736. front: {
  21737. height: math.unit(2.3, "m"),
  21738. weight: math.unit(304, "kg"),
  21739. name: "Front",
  21740. image: {
  21741. source: "./media/characters/icowom-lee/front.svg",
  21742. extra: 985 / 955,
  21743. bottom: 25.4 / 1012
  21744. }
  21745. },
  21746. fronttentacles: {
  21747. height: math.unit(2.3, "m"),
  21748. weight: math.unit(304, "kg"),
  21749. name: "Front-tentacles",
  21750. image: {
  21751. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21752. extra: 985 / 955,
  21753. bottom: 25.4 / 1012
  21754. }
  21755. },
  21756. back: {
  21757. height: math.unit(2.3, "m"),
  21758. weight: math.unit(304, "kg"),
  21759. name: "Back",
  21760. image: {
  21761. source: "./media/characters/icowom-lee/back.svg",
  21762. extra: 975 / 954,
  21763. bottom: 9.5 / 985
  21764. }
  21765. },
  21766. backtentacles: {
  21767. height: math.unit(2.3, "m"),
  21768. weight: math.unit(304, "kg"),
  21769. name: "Back-tentacles",
  21770. image: {
  21771. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21772. extra: 975 / 954,
  21773. bottom: 9.5 / 985
  21774. }
  21775. },
  21776. frontDressed: {
  21777. height: math.unit(2.3, "m"),
  21778. weight: math.unit(304, "kg"),
  21779. name: "Front (Dressed)",
  21780. image: {
  21781. source: "./media/characters/icowom-lee/front-dressed.svg",
  21782. extra: 3076 / 2933,
  21783. bottom: 51.4 / 3125.1889
  21784. }
  21785. },
  21786. rump: {
  21787. height: math.unit(0.776, "meters"),
  21788. name: "Rump",
  21789. image: {
  21790. source: "./media/characters/icowom-lee/rump.svg"
  21791. }
  21792. },
  21793. genitals: {
  21794. height: math.unit(0.78, "meters"),
  21795. name: "Genitals",
  21796. image: {
  21797. source: "./media/characters/icowom-lee/genitals.svg"
  21798. }
  21799. },
  21800. },
  21801. [
  21802. {
  21803. name: "Normal",
  21804. height: math.unit(2.3, "meters"),
  21805. default: true
  21806. },
  21807. {
  21808. name: "Macro",
  21809. height: math.unit(94, "meters"),
  21810. default: true
  21811. },
  21812. ]
  21813. ))
  21814. characterMakers.push(() => makeCharacter(
  21815. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21816. {
  21817. front: {
  21818. height: math.unit(22, "meters"),
  21819. weight: math.unit(21000, "kg"),
  21820. name: "Front",
  21821. image: {
  21822. source: "./media/characters/shock-diamond/front.svg",
  21823. extra: 2204 / 2053,
  21824. bottom: 65 / 2239.47
  21825. }
  21826. },
  21827. frontNude: {
  21828. height: math.unit(22, "meters"),
  21829. weight: math.unit(21000, "kg"),
  21830. name: "Front (Nude)",
  21831. image: {
  21832. source: "./media/characters/shock-diamond/front-nude.svg",
  21833. extra: 2514 / 2285,
  21834. bottom: 13 / 2527.56
  21835. }
  21836. },
  21837. },
  21838. [
  21839. {
  21840. name: "Normal",
  21841. height: math.unit(3, "meters")
  21842. },
  21843. {
  21844. name: "Macro",
  21845. height: math.unit(22, "meters"),
  21846. default: true
  21847. },
  21848. ]
  21849. ))
  21850. characterMakers.push(() => makeCharacter(
  21851. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21852. {
  21853. front: {
  21854. height: math.unit(5 + 4 / 12, "feet"),
  21855. weight: math.unit(120, "lb"),
  21856. name: "Front",
  21857. image: {
  21858. source: "./media/characters/rory/front.svg",
  21859. extra: 589 / 556,
  21860. bottom: 45.7 / 635.76
  21861. }
  21862. },
  21863. frontNude: {
  21864. height: math.unit(5 + 4 / 12, "feet"),
  21865. weight: math.unit(120, "lb"),
  21866. name: "Front (Nude)",
  21867. image: {
  21868. source: "./media/characters/rory/front-nude.svg",
  21869. extra: 589 / 556,
  21870. bottom: 45.7 / 635.76
  21871. }
  21872. },
  21873. side: {
  21874. height: math.unit(5 + 4 / 12, "feet"),
  21875. weight: math.unit(120, "lb"),
  21876. name: "Side",
  21877. image: {
  21878. source: "./media/characters/rory/side.svg",
  21879. extra: 597 / 564,
  21880. bottom: 55 / 653
  21881. }
  21882. },
  21883. back: {
  21884. height: math.unit(5 + 4 / 12, "feet"),
  21885. weight: math.unit(120, "lb"),
  21886. name: "Back",
  21887. image: {
  21888. source: "./media/characters/rory/back.svg",
  21889. extra: 620 / 585,
  21890. bottom: 8.86 / 630.43
  21891. }
  21892. },
  21893. dick: {
  21894. height: math.unit(0.86, "feet"),
  21895. name: "Dick",
  21896. image: {
  21897. source: "./media/characters/rory/dick.svg"
  21898. }
  21899. },
  21900. },
  21901. [
  21902. {
  21903. name: "Normal",
  21904. height: math.unit(5 + 4 / 12, "feet"),
  21905. default: true
  21906. },
  21907. {
  21908. name: "Macro",
  21909. height: math.unit(100, "feet")
  21910. },
  21911. {
  21912. name: "Macro+",
  21913. height: math.unit(140, "feet")
  21914. },
  21915. {
  21916. name: "Macro++",
  21917. height: math.unit(300, "feet")
  21918. },
  21919. ]
  21920. ))
  21921. characterMakers.push(() => makeCharacter(
  21922. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21923. {
  21924. front: {
  21925. height: math.unit(5 + 9 / 12, "feet"),
  21926. weight: math.unit(190, "lb"),
  21927. name: "Front",
  21928. image: {
  21929. source: "./media/characters/sprisk/front.svg",
  21930. extra: 1225 / 1180,
  21931. bottom: 42.7 / 1266.4
  21932. }
  21933. },
  21934. frontNsfw: {
  21935. height: math.unit(5 + 9 / 12, "feet"),
  21936. weight: math.unit(190, "lb"),
  21937. name: "Front (NSFW)",
  21938. image: {
  21939. source: "./media/characters/sprisk/front-nsfw.svg",
  21940. extra: 1225 / 1180,
  21941. bottom: 42.7 / 1266.4
  21942. }
  21943. },
  21944. back: {
  21945. height: math.unit(5 + 9 / 12, "feet"),
  21946. weight: math.unit(190, "lb"),
  21947. name: "Back",
  21948. image: {
  21949. source: "./media/characters/sprisk/back.svg",
  21950. extra: 1247 / 1200,
  21951. bottom: 5.6 / 1253.04
  21952. }
  21953. },
  21954. },
  21955. [
  21956. {
  21957. name: "Tiny",
  21958. height: math.unit(2, "inches")
  21959. },
  21960. {
  21961. name: "Normal",
  21962. height: math.unit(5 + 9 / 12, "feet"),
  21963. default: true
  21964. },
  21965. {
  21966. name: "Mini Macro",
  21967. height: math.unit(18, "feet")
  21968. },
  21969. {
  21970. name: "Macro",
  21971. height: math.unit(100, "feet")
  21972. },
  21973. {
  21974. name: "MACRO",
  21975. height: math.unit(50, "miles")
  21976. },
  21977. {
  21978. name: "M A C R O",
  21979. height: math.unit(300, "miles")
  21980. },
  21981. ]
  21982. ))
  21983. characterMakers.push(() => makeCharacter(
  21984. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21985. {
  21986. side: {
  21987. height: math.unit(15.6, "meters"),
  21988. weight: math.unit(700000, "kg"),
  21989. name: "Side",
  21990. image: {
  21991. source: "./media/characters/bunsen/side.svg",
  21992. extra: 1644 / 358
  21993. }
  21994. },
  21995. foot: {
  21996. height: math.unit(1.611 * 1644 / 358, "meter"),
  21997. name: "Foot",
  21998. image: {
  21999. source: "./media/characters/bunsen/foot.svg"
  22000. }
  22001. },
  22002. },
  22003. [
  22004. {
  22005. name: "Small",
  22006. height: math.unit(10, "feet")
  22007. },
  22008. {
  22009. name: "Normal",
  22010. height: math.unit(15.6, "meters"),
  22011. default: true
  22012. },
  22013. ]
  22014. ))
  22015. characterMakers.push(() => makeCharacter(
  22016. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22017. {
  22018. front: {
  22019. height: math.unit(4 + 11 / 12, "feet"),
  22020. weight: math.unit(140, "lb"),
  22021. name: "Front",
  22022. image: {
  22023. source: "./media/characters/sesh/front.svg",
  22024. extra: 3420 / 3231,
  22025. bottom: 72 / 3949.5
  22026. }
  22027. },
  22028. },
  22029. [
  22030. {
  22031. name: "Normal",
  22032. height: math.unit(4 + 11 / 12, "feet")
  22033. },
  22034. {
  22035. name: "Grown",
  22036. height: math.unit(15, "feet"),
  22037. default: true
  22038. },
  22039. {
  22040. name: "Macro",
  22041. height: math.unit(1500, "feet")
  22042. },
  22043. {
  22044. name: "Megamacro",
  22045. height: math.unit(30, "miles")
  22046. },
  22047. {
  22048. name: "Continental",
  22049. height: math.unit(3000, "miles")
  22050. },
  22051. {
  22052. name: "Gravity Mass",
  22053. height: math.unit(300000, "miles")
  22054. },
  22055. {
  22056. name: "Planet Buster",
  22057. height: math.unit(30000000, "miles")
  22058. },
  22059. {
  22060. name: "Big",
  22061. height: math.unit(3000000000, "miles")
  22062. },
  22063. ]
  22064. ))
  22065. characterMakers.push(() => makeCharacter(
  22066. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22067. {
  22068. front: {
  22069. height: math.unit(9, "feet"),
  22070. weight: math.unit(350, "lb"),
  22071. name: "Front",
  22072. image: {
  22073. source: "./media/characters/pepper/front.svg",
  22074. extra: 1448 / 1312,
  22075. bottom: 9.4 / 1457.88
  22076. }
  22077. },
  22078. back: {
  22079. height: math.unit(9, "feet"),
  22080. weight: math.unit(350, "lb"),
  22081. name: "Back",
  22082. image: {
  22083. source: "./media/characters/pepper/back.svg",
  22084. extra: 1423 / 1300,
  22085. bottom: 4.6 / 1429
  22086. }
  22087. },
  22088. maw: {
  22089. height: math.unit(0.932, "feet"),
  22090. name: "Maw",
  22091. image: {
  22092. source: "./media/characters/pepper/maw.svg"
  22093. }
  22094. },
  22095. },
  22096. [
  22097. {
  22098. name: "Normal",
  22099. height: math.unit(9, "feet"),
  22100. default: true
  22101. },
  22102. ]
  22103. ))
  22104. characterMakers.push(() => makeCharacter(
  22105. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22106. {
  22107. front: {
  22108. height: math.unit(6, "feet"),
  22109. weight: math.unit(150, "lb"),
  22110. name: "Front",
  22111. image: {
  22112. source: "./media/characters/maelstrom/front.svg",
  22113. extra: 2100 / 1883,
  22114. bottom: 94 / 2196.7
  22115. }
  22116. },
  22117. },
  22118. [
  22119. {
  22120. name: "Less Kaiju",
  22121. height: math.unit(200, "feet")
  22122. },
  22123. {
  22124. name: "Kaiju",
  22125. height: math.unit(400, "feet"),
  22126. default: true
  22127. },
  22128. {
  22129. name: "Kaiju-er",
  22130. height: math.unit(600, "feet")
  22131. },
  22132. ]
  22133. ))
  22134. characterMakers.push(() => makeCharacter(
  22135. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22136. {
  22137. front: {
  22138. height: math.unit(6 + 5 / 12, "feet"),
  22139. weight: math.unit(180, "lb"),
  22140. name: "Front",
  22141. image: {
  22142. source: "./media/characters/lexir/front.svg",
  22143. extra: 180 / 172,
  22144. bottom: 12 / 192
  22145. }
  22146. },
  22147. back: {
  22148. height: math.unit(6 + 5 / 12, "feet"),
  22149. weight: math.unit(180, "lb"),
  22150. name: "Back",
  22151. image: {
  22152. source: "./media/characters/lexir/back.svg",
  22153. extra: 183.84 / 175.5,
  22154. bottom: 3.1 / 187
  22155. }
  22156. },
  22157. },
  22158. [
  22159. {
  22160. name: "Very Smal",
  22161. height: math.unit(1, "nm")
  22162. },
  22163. {
  22164. name: "Normal",
  22165. height: math.unit(6 + 5 / 12, "feet"),
  22166. default: true
  22167. },
  22168. {
  22169. name: "Macro",
  22170. height: math.unit(1, "mile")
  22171. },
  22172. {
  22173. name: "Megamacro",
  22174. height: math.unit(50, "miles")
  22175. },
  22176. ]
  22177. ))
  22178. characterMakers.push(() => makeCharacter(
  22179. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22180. {
  22181. front: {
  22182. height: math.unit(1.5, "meters"),
  22183. weight: math.unit(100, "lb"),
  22184. name: "Front",
  22185. image: {
  22186. source: "./media/characters/maksio/front.svg",
  22187. extra: 1549 / 1531,
  22188. bottom: 123.7 / 1674.5429
  22189. }
  22190. },
  22191. back: {
  22192. height: math.unit(1.5, "meters"),
  22193. weight: math.unit(100, "lb"),
  22194. name: "Back",
  22195. image: {
  22196. source: "./media/characters/maksio/back.svg",
  22197. extra: 1541 / 1509,
  22198. bottom: 97 / 1639
  22199. }
  22200. },
  22201. hand: {
  22202. height: math.unit(0.621, "feet"),
  22203. name: "Hand",
  22204. image: {
  22205. source: "./media/characters/maksio/hand.svg"
  22206. }
  22207. },
  22208. foot: {
  22209. height: math.unit(1.611, "feet"),
  22210. name: "Foot",
  22211. image: {
  22212. source: "./media/characters/maksio/foot.svg"
  22213. }
  22214. },
  22215. },
  22216. [
  22217. {
  22218. name: "Shrunken",
  22219. height: math.unit(10, "cm")
  22220. },
  22221. {
  22222. name: "Normal",
  22223. height: math.unit(150, "cm"),
  22224. default: true
  22225. },
  22226. ]
  22227. ))
  22228. characterMakers.push(() => makeCharacter(
  22229. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22230. {
  22231. front: {
  22232. height: math.unit(100, "feet"),
  22233. name: "Front",
  22234. image: {
  22235. source: "./media/characters/erza-bear/front.svg",
  22236. extra: 2449 / 2390,
  22237. bottom: 46 / 2494
  22238. }
  22239. },
  22240. back: {
  22241. height: math.unit(100, "feet"),
  22242. name: "Back",
  22243. image: {
  22244. source: "./media/characters/erza-bear/back.svg",
  22245. extra: 2489 / 2430,
  22246. bottom: 85.4 / 2480
  22247. }
  22248. },
  22249. tail: {
  22250. height: math.unit(42, "feet"),
  22251. name: "Tail",
  22252. image: {
  22253. source: "./media/characters/erza-bear/tail.svg"
  22254. }
  22255. },
  22256. tongue: {
  22257. height: math.unit(8, "feet"),
  22258. name: "Tongue",
  22259. image: {
  22260. source: "./media/characters/erza-bear/tongue.svg"
  22261. }
  22262. },
  22263. dick: {
  22264. height: math.unit(10.5, "feet"),
  22265. name: "Dick",
  22266. image: {
  22267. source: "./media/characters/erza-bear/dick.svg"
  22268. }
  22269. },
  22270. dickVertical: {
  22271. height: math.unit(16.9, "feet"),
  22272. name: "Dick (Vertical)",
  22273. image: {
  22274. source: "./media/characters/erza-bear/dick-vertical.svg"
  22275. }
  22276. },
  22277. },
  22278. [
  22279. {
  22280. name: "Macro",
  22281. height: math.unit(100, "feet"),
  22282. default: true
  22283. },
  22284. ]
  22285. ))
  22286. characterMakers.push(() => makeCharacter(
  22287. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22288. {
  22289. front: {
  22290. height: math.unit(172, "cm"),
  22291. weight: math.unit(73, "kg"),
  22292. name: "Front",
  22293. image: {
  22294. source: "./media/characters/violet-flor/front.svg",
  22295. extra: 1530 / 1442,
  22296. bottom: 61.9 / 1588.8
  22297. }
  22298. },
  22299. back: {
  22300. height: math.unit(180, "cm"),
  22301. weight: math.unit(73, "kg"),
  22302. name: "Back",
  22303. image: {
  22304. source: "./media/characters/violet-flor/back.svg",
  22305. extra: 1692 / 1630,
  22306. bottom: 20 / 1712
  22307. }
  22308. },
  22309. },
  22310. [
  22311. {
  22312. name: "Normal",
  22313. height: math.unit(172, "cm"),
  22314. default: true
  22315. },
  22316. ]
  22317. ))
  22318. characterMakers.push(() => makeCharacter(
  22319. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22320. {
  22321. front: {
  22322. height: math.unit(6, "feet"),
  22323. weight: math.unit(220, "lb"),
  22324. name: "Front",
  22325. image: {
  22326. source: "./media/characters/lynn-rhea/front.svg",
  22327. extra: 310 / 273
  22328. }
  22329. },
  22330. back: {
  22331. height: math.unit(6, "feet"),
  22332. weight: math.unit(220, "lb"),
  22333. name: "Back",
  22334. image: {
  22335. source: "./media/characters/lynn-rhea/back.svg",
  22336. extra: 310 / 273
  22337. }
  22338. },
  22339. dicks: {
  22340. height: math.unit(0.9, "feet"),
  22341. name: "Dicks",
  22342. image: {
  22343. source: "./media/characters/lynn-rhea/dicks.svg"
  22344. }
  22345. },
  22346. slit: {
  22347. height: math.unit(0.4, "feet"),
  22348. name: "Slit",
  22349. image: {
  22350. source: "./media/characters/lynn-rhea/slit.svg"
  22351. }
  22352. },
  22353. },
  22354. [
  22355. {
  22356. name: "Micro",
  22357. height: math.unit(1, "inch")
  22358. },
  22359. {
  22360. name: "Macro",
  22361. height: math.unit(60, "feet"),
  22362. default: true
  22363. },
  22364. {
  22365. name: "Megamacro",
  22366. height: math.unit(2, "miles")
  22367. },
  22368. {
  22369. name: "Gigamacro",
  22370. height: math.unit(3, "earths")
  22371. },
  22372. {
  22373. name: "Galactic",
  22374. height: math.unit(0.8, "galaxies")
  22375. },
  22376. ]
  22377. ))
  22378. characterMakers.push(() => makeCharacter(
  22379. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22380. {
  22381. front: {
  22382. height: math.unit(1600, "feet"),
  22383. weight: math.unit(85758785169, "kg"),
  22384. name: "Front",
  22385. image: {
  22386. source: "./media/characters/valathos/front.svg",
  22387. extra: 1451 / 1339
  22388. }
  22389. },
  22390. },
  22391. [
  22392. {
  22393. name: "Macro",
  22394. height: math.unit(1600, "feet"),
  22395. default: true
  22396. },
  22397. ]
  22398. ))
  22399. characterMakers.push(() => makeCharacter(
  22400. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22401. {
  22402. front: {
  22403. height: math.unit(7 + 5 / 12, "feet"),
  22404. weight: math.unit(300, "lb"),
  22405. name: "Front",
  22406. image: {
  22407. source: "./media/characters/azula/front.svg",
  22408. extra: 3208 / 2880,
  22409. bottom: 80.2 / 3277
  22410. }
  22411. },
  22412. back: {
  22413. height: math.unit(7 + 5 / 12, "feet"),
  22414. weight: math.unit(300, "lb"),
  22415. name: "Back",
  22416. image: {
  22417. source: "./media/characters/azula/back.svg",
  22418. extra: 3169 / 2822,
  22419. bottom: 150.6 / 3321
  22420. }
  22421. },
  22422. },
  22423. [
  22424. {
  22425. name: "Normal",
  22426. height: math.unit(7 + 5 / 12, "feet"),
  22427. default: true
  22428. },
  22429. {
  22430. name: "Big",
  22431. height: math.unit(20, "feet")
  22432. },
  22433. ]
  22434. ))
  22435. characterMakers.push(() => makeCharacter(
  22436. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22437. {
  22438. front: {
  22439. height: math.unit(5 + 1 / 12, "feet"),
  22440. weight: math.unit(110, "lb"),
  22441. name: "Front",
  22442. image: {
  22443. source: "./media/characters/rupert/front.svg",
  22444. extra: 1549 / 1495,
  22445. bottom: 54.2 / 1604.4
  22446. }
  22447. },
  22448. },
  22449. [
  22450. {
  22451. name: "Normal",
  22452. height: math.unit(5 + 1 / 12, "feet"),
  22453. default: true
  22454. },
  22455. ]
  22456. ))
  22457. characterMakers.push(() => makeCharacter(
  22458. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22459. {
  22460. front: {
  22461. height: math.unit(8 + 4 / 12, "feet"),
  22462. weight: math.unit(350, "lb"),
  22463. name: "Front",
  22464. image: {
  22465. source: "./media/characters/sheera-castellar/front.svg",
  22466. extra: 1957 / 1894,
  22467. bottom: 26.97 / 1975.017
  22468. }
  22469. },
  22470. side: {
  22471. height: math.unit(8 + 4 / 12, "feet"),
  22472. weight: math.unit(350, "lb"),
  22473. name: "Side",
  22474. image: {
  22475. source: "./media/characters/sheera-castellar/side.svg",
  22476. extra: 1957 / 1894
  22477. }
  22478. },
  22479. back: {
  22480. height: math.unit(8 + 4 / 12, "feet"),
  22481. weight: math.unit(350, "lb"),
  22482. name: "Back",
  22483. image: {
  22484. source: "./media/characters/sheera-castellar/back.svg",
  22485. extra: 1957 / 1894
  22486. }
  22487. },
  22488. angled: {
  22489. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22490. weight: math.unit(350, "lb"),
  22491. name: "Angled",
  22492. image: {
  22493. source: "./media/characters/sheera-castellar/angled.svg",
  22494. extra: 1807 / 1707,
  22495. bottom: 68 / 1875
  22496. }
  22497. },
  22498. genitals: {
  22499. height: math.unit(2.2, "feet"),
  22500. name: "Genitals",
  22501. image: {
  22502. source: "./media/characters/sheera-castellar/genitals.svg"
  22503. }
  22504. },
  22505. },
  22506. [
  22507. {
  22508. name: "Normal",
  22509. height: math.unit(8 + 4 / 12, "feet")
  22510. },
  22511. {
  22512. name: "Macro",
  22513. height: math.unit(150, "feet"),
  22514. default: true
  22515. },
  22516. {
  22517. name: "Macro+",
  22518. height: math.unit(800, "feet")
  22519. },
  22520. ]
  22521. ))
  22522. characterMakers.push(() => makeCharacter(
  22523. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22524. {
  22525. front: {
  22526. height: math.unit(6, "feet"),
  22527. weight: math.unit(150, "lb"),
  22528. name: "Front",
  22529. image: {
  22530. source: "./media/characters/jaipur/front.svg",
  22531. extra: 3860 / 3731,
  22532. bottom: 287 / 4140
  22533. }
  22534. },
  22535. back: {
  22536. height: math.unit(6, "feet"),
  22537. weight: math.unit(150, "lb"),
  22538. name: "Back",
  22539. image: {
  22540. source: "./media/characters/jaipur/back.svg",
  22541. extra: 4060 / 3930,
  22542. bottom: 151 / 4200
  22543. }
  22544. },
  22545. },
  22546. [
  22547. {
  22548. name: "Normal",
  22549. height: math.unit(1.85, "meters"),
  22550. default: true
  22551. },
  22552. {
  22553. name: "Macro",
  22554. height: math.unit(150, "meters")
  22555. },
  22556. {
  22557. name: "Macro+",
  22558. height: math.unit(0.5, "miles")
  22559. },
  22560. {
  22561. name: "Macro++",
  22562. height: math.unit(2.5, "miles")
  22563. },
  22564. {
  22565. name: "Macro+++",
  22566. height: math.unit(12, "miles")
  22567. },
  22568. {
  22569. name: "Macro++++",
  22570. height: math.unit(120, "miles")
  22571. },
  22572. {
  22573. name: "Macro+++++",
  22574. height: math.unit(1200, "miles")
  22575. },
  22576. ]
  22577. ))
  22578. characterMakers.push(() => makeCharacter(
  22579. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22580. {
  22581. front: {
  22582. height: math.unit(6, "feet"),
  22583. weight: math.unit(150, "lb"),
  22584. name: "Front",
  22585. image: {
  22586. source: "./media/characters/sheila-wolf/front.svg",
  22587. extra: 1931 / 1808,
  22588. bottom: 29.5 / 1960
  22589. }
  22590. },
  22591. dick: {
  22592. height: math.unit(1.464, "feet"),
  22593. name: "Dick",
  22594. image: {
  22595. source: "./media/characters/sheila-wolf/dick.svg"
  22596. }
  22597. },
  22598. muzzle: {
  22599. height: math.unit(0.513, "feet"),
  22600. name: "Muzzle",
  22601. image: {
  22602. source: "./media/characters/sheila-wolf/muzzle.svg"
  22603. }
  22604. },
  22605. },
  22606. [
  22607. {
  22608. name: "Macro",
  22609. height: math.unit(70, "feet"),
  22610. default: true
  22611. },
  22612. ]
  22613. ))
  22614. characterMakers.push(() => makeCharacter(
  22615. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22616. {
  22617. front: {
  22618. height: math.unit(32, "meters"),
  22619. weight: math.unit(300000, "kg"),
  22620. name: "Front",
  22621. image: {
  22622. source: "./media/characters/almor/front.svg",
  22623. extra: 1408 / 1322,
  22624. bottom: 94.6 / 1506.5
  22625. }
  22626. },
  22627. },
  22628. [
  22629. {
  22630. name: "Macro",
  22631. height: math.unit(32, "meters"),
  22632. default: true
  22633. },
  22634. ]
  22635. ))
  22636. characterMakers.push(() => makeCharacter(
  22637. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22638. {
  22639. front: {
  22640. height: math.unit(7, "feet"),
  22641. weight: math.unit(200, "lb"),
  22642. name: "Front",
  22643. image: {
  22644. source: "./media/characters/silver/front.svg",
  22645. extra: 472.1 / 450.5,
  22646. bottom: 26.5 / 499.424
  22647. }
  22648. },
  22649. },
  22650. [
  22651. {
  22652. name: "Normal",
  22653. height: math.unit(7, "feet"),
  22654. default: true
  22655. },
  22656. {
  22657. name: "Macro",
  22658. height: math.unit(800, "feet")
  22659. },
  22660. {
  22661. name: "Megamacro",
  22662. height: math.unit(250, "miles")
  22663. },
  22664. ]
  22665. ))
  22666. characterMakers.push(() => makeCharacter(
  22667. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22668. {
  22669. front: {
  22670. height: math.unit(6, "feet"),
  22671. weight: math.unit(150, "lb"),
  22672. name: "Front",
  22673. image: {
  22674. source: "./media/characters/pliskin/front.svg",
  22675. extra: 1469 / 1359,
  22676. bottom: 70 / 1540
  22677. }
  22678. },
  22679. },
  22680. [
  22681. {
  22682. name: "Micro",
  22683. height: math.unit(3, "inches")
  22684. },
  22685. {
  22686. name: "Normal",
  22687. height: math.unit(5 + 11 / 12, "feet"),
  22688. default: true
  22689. },
  22690. {
  22691. name: "Macro",
  22692. height: math.unit(120, "feet")
  22693. },
  22694. ]
  22695. ))
  22696. characterMakers.push(() => makeCharacter(
  22697. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22698. {
  22699. front: {
  22700. height: math.unit(6, "feet"),
  22701. weight: math.unit(150, "lb"),
  22702. name: "Front",
  22703. image: {
  22704. source: "./media/characters/sammy/front.svg",
  22705. extra: 1193 / 1089,
  22706. bottom: 30.5 / 1226
  22707. }
  22708. },
  22709. },
  22710. [
  22711. {
  22712. name: "Macro",
  22713. height: math.unit(1700, "feet"),
  22714. default: true
  22715. },
  22716. {
  22717. name: "Examacro",
  22718. height: math.unit(2.5e9, "lightyears")
  22719. },
  22720. ]
  22721. ))
  22722. characterMakers.push(() => makeCharacter(
  22723. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22724. {
  22725. front: {
  22726. height: math.unit(21, "meters"),
  22727. weight: math.unit(12, "tonnes"),
  22728. name: "Front",
  22729. image: {
  22730. source: "./media/characters/kuru/front.svg",
  22731. extra: 4301 / 3785,
  22732. bottom: 371.3 / 4691
  22733. }
  22734. },
  22735. },
  22736. [
  22737. {
  22738. name: "Macro",
  22739. height: math.unit(21, "meters"),
  22740. default: true
  22741. },
  22742. ]
  22743. ))
  22744. characterMakers.push(() => makeCharacter(
  22745. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22746. {
  22747. front: {
  22748. height: math.unit(23, "meters"),
  22749. weight: math.unit(12.2, "tonnes"),
  22750. name: "Front",
  22751. image: {
  22752. source: "./media/characters/rakka/front.svg",
  22753. extra: 4670 / 4169,
  22754. bottom: 301 / 4968.7
  22755. }
  22756. },
  22757. },
  22758. [
  22759. {
  22760. name: "Macro",
  22761. height: math.unit(23, "meters"),
  22762. default: true
  22763. },
  22764. ]
  22765. ))
  22766. characterMakers.push(() => makeCharacter(
  22767. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22768. {
  22769. front: {
  22770. height: math.unit(6, "feet"),
  22771. weight: math.unit(150, "lb"),
  22772. name: "Front",
  22773. image: {
  22774. source: "./media/characters/rhys-feline/front.svg",
  22775. extra: 2488 / 2308,
  22776. bottom: 35.67 / 2519.19
  22777. }
  22778. },
  22779. },
  22780. [
  22781. {
  22782. name: "Really Small",
  22783. height: math.unit(1, "nm")
  22784. },
  22785. {
  22786. name: "Micro",
  22787. height: math.unit(4, "inches")
  22788. },
  22789. {
  22790. name: "Normal",
  22791. height: math.unit(4 + 10 / 12, "feet"),
  22792. default: true
  22793. },
  22794. {
  22795. name: "Macro",
  22796. height: math.unit(100, "feet")
  22797. },
  22798. {
  22799. name: "Megamacto",
  22800. height: math.unit(50, "miles")
  22801. },
  22802. ]
  22803. ))
  22804. characterMakers.push(() => makeCharacter(
  22805. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22806. {
  22807. side: {
  22808. height: math.unit(30, "feet"),
  22809. weight: math.unit(35000, "kg"),
  22810. name: "Side",
  22811. image: {
  22812. source: "./media/characters/alydar/side.svg",
  22813. extra: 234 / 222,
  22814. bottom: 6.5 / 241
  22815. }
  22816. },
  22817. front: {
  22818. height: math.unit(30, "feet"),
  22819. weight: math.unit(35000, "kg"),
  22820. name: "Front",
  22821. image: {
  22822. source: "./media/characters/alydar/front.svg",
  22823. extra: 223.37 / 210.2,
  22824. bottom: 22.3 / 246.76
  22825. }
  22826. },
  22827. top: {
  22828. height: math.unit(64.54, "feet"),
  22829. weight: math.unit(35000, "kg"),
  22830. name: "Top",
  22831. image: {
  22832. source: "./media/characters/alydar/top.svg"
  22833. }
  22834. },
  22835. anthro: {
  22836. height: math.unit(30, "feet"),
  22837. weight: math.unit(9000, "kg"),
  22838. name: "Anthro",
  22839. image: {
  22840. source: "./media/characters/alydar/anthro.svg",
  22841. extra: 432 / 421,
  22842. bottom: 7.18 / 440
  22843. }
  22844. },
  22845. maw: {
  22846. height: math.unit(11.693, "feet"),
  22847. name: "Maw",
  22848. image: {
  22849. source: "./media/characters/alydar/maw.svg"
  22850. }
  22851. },
  22852. head: {
  22853. height: math.unit(11.693, "feet"),
  22854. name: "Head",
  22855. image: {
  22856. source: "./media/characters/alydar/head.svg"
  22857. }
  22858. },
  22859. headAlt: {
  22860. height: math.unit(12.861, "feet"),
  22861. name: "Head (Alt)",
  22862. image: {
  22863. source: "./media/characters/alydar/head-alt.svg"
  22864. }
  22865. },
  22866. wing: {
  22867. height: math.unit(20.712, "feet"),
  22868. name: "Wing",
  22869. image: {
  22870. source: "./media/characters/alydar/wing.svg"
  22871. }
  22872. },
  22873. wingFeather: {
  22874. height: math.unit(9.662, "feet"),
  22875. name: "Wing Feather",
  22876. image: {
  22877. source: "./media/characters/alydar/wing-feather.svg"
  22878. }
  22879. },
  22880. countourFeather: {
  22881. height: math.unit(4.154, "feet"),
  22882. name: "Contour Feather",
  22883. image: {
  22884. source: "./media/characters/alydar/contour-feather.svg"
  22885. }
  22886. },
  22887. },
  22888. [
  22889. {
  22890. name: "Diplomatic",
  22891. height: math.unit(13, "feet"),
  22892. default: true
  22893. },
  22894. {
  22895. name: "Small",
  22896. height: math.unit(30, "feet")
  22897. },
  22898. {
  22899. name: "Normal",
  22900. height: math.unit(95, "feet"),
  22901. default: true
  22902. },
  22903. {
  22904. name: "Large",
  22905. height: math.unit(285, "feet")
  22906. },
  22907. {
  22908. name: "Incomprehensible",
  22909. height: math.unit(450, "megameters")
  22910. },
  22911. ]
  22912. ))
  22913. characterMakers.push(() => makeCharacter(
  22914. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22915. {
  22916. side: {
  22917. height: math.unit(11, "feet"),
  22918. weight: math.unit(1750, "kg"),
  22919. name: "Side",
  22920. image: {
  22921. source: "./media/characters/selicia/side.svg",
  22922. extra: 440 / 396,
  22923. bottom: 24.8 / 465.979
  22924. }
  22925. },
  22926. maw: {
  22927. height: math.unit(4.665, "feet"),
  22928. name: "Maw",
  22929. image: {
  22930. source: "./media/characters/selicia/maw.svg"
  22931. }
  22932. },
  22933. },
  22934. [
  22935. {
  22936. name: "Normal",
  22937. height: math.unit(11, "feet"),
  22938. default: true
  22939. },
  22940. ]
  22941. ))
  22942. characterMakers.push(() => makeCharacter(
  22943. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22944. {
  22945. side: {
  22946. height: math.unit(2 + 6 / 12, "feet"),
  22947. weight: math.unit(30, "lb"),
  22948. name: "Side",
  22949. image: {
  22950. source: "./media/characters/layla/side.svg",
  22951. extra: 244 / 188,
  22952. bottom: 18.2 / 262.1
  22953. }
  22954. },
  22955. back: {
  22956. height: math.unit(2 + 6 / 12, "feet"),
  22957. weight: math.unit(30, "lb"),
  22958. name: "Back",
  22959. image: {
  22960. source: "./media/characters/layla/back.svg",
  22961. extra: 308 / 241.5,
  22962. bottom: 8.9 / 316.8
  22963. }
  22964. },
  22965. cumming: {
  22966. height: math.unit(2 + 6 / 12, "feet"),
  22967. weight: math.unit(30, "lb"),
  22968. name: "Cumming",
  22969. image: {
  22970. source: "./media/characters/layla/cumming.svg",
  22971. extra: 342 / 279,
  22972. bottom: 595 / 938
  22973. }
  22974. },
  22975. dickFlaccid: {
  22976. height: math.unit(2.595, "feet"),
  22977. name: "Flaccid Genitals",
  22978. image: {
  22979. source: "./media/characters/layla/dick-flaccid.svg"
  22980. }
  22981. },
  22982. dickErect: {
  22983. height: math.unit(2.359, "feet"),
  22984. name: "Erect Genitals",
  22985. image: {
  22986. source: "./media/characters/layla/dick-erect.svg"
  22987. }
  22988. },
  22989. },
  22990. [
  22991. {
  22992. name: "Micro",
  22993. height: math.unit(1, "inch")
  22994. },
  22995. {
  22996. name: "Small",
  22997. height: math.unit(1, "foot")
  22998. },
  22999. {
  23000. name: "Normal",
  23001. height: math.unit(2 + 6 / 12, "feet"),
  23002. default: true
  23003. },
  23004. {
  23005. name: "Macro",
  23006. height: math.unit(200, "feet")
  23007. },
  23008. {
  23009. name: "Megamacro",
  23010. height: math.unit(1000, "miles")
  23011. },
  23012. {
  23013. name: "Planetary",
  23014. height: math.unit(8000, "miles")
  23015. },
  23016. {
  23017. name: "True Layla",
  23018. height: math.unit(200000 * 7, "multiverses")
  23019. },
  23020. ]
  23021. ))
  23022. characterMakers.push(() => makeCharacter(
  23023. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23024. {
  23025. back: {
  23026. height: math.unit(10.5, "feet"),
  23027. weight: math.unit(800, "lb"),
  23028. name: "Back",
  23029. image: {
  23030. source: "./media/characters/knox/back.svg",
  23031. extra: 1486 / 1089,
  23032. bottom: 107 / 1601.4
  23033. }
  23034. },
  23035. side: {
  23036. height: math.unit(10.5, "feet"),
  23037. weight: math.unit(800, "lb"),
  23038. name: "Side",
  23039. image: {
  23040. source: "./media/characters/knox/side.svg",
  23041. extra: 244 / 218,
  23042. bottom: 14 / 260
  23043. }
  23044. },
  23045. },
  23046. [
  23047. {
  23048. name: "Compact",
  23049. height: math.unit(10.5, "feet"),
  23050. default: true
  23051. },
  23052. {
  23053. name: "Dynamax",
  23054. height: math.unit(210, "feet")
  23055. },
  23056. {
  23057. name: "Full Macro",
  23058. height: math.unit(850, "feet")
  23059. },
  23060. ]
  23061. ))
  23062. characterMakers.push(() => makeCharacter(
  23063. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23064. {
  23065. front: {
  23066. height: math.unit(6, "feet"),
  23067. weight: math.unit(152, "lb"),
  23068. name: "Front",
  23069. image: {
  23070. source: "./media/characters/shin-pikachu/front.svg",
  23071. extra: 1574 / 1480,
  23072. bottom: 53.3 / 1626
  23073. }
  23074. },
  23075. hand: {
  23076. height: math.unit(1.055, "feet"),
  23077. name: "Hand",
  23078. image: {
  23079. source: "./media/characters/shin-pikachu/hand.svg"
  23080. }
  23081. },
  23082. foot: {
  23083. height: math.unit(1.1, "feet"),
  23084. name: "Foot",
  23085. image: {
  23086. source: "./media/characters/shin-pikachu/foot.svg"
  23087. }
  23088. },
  23089. collar: {
  23090. height: math.unit(0.386, "feet"),
  23091. name: "Collar",
  23092. image: {
  23093. source: "./media/characters/shin-pikachu/collar.svg"
  23094. }
  23095. },
  23096. },
  23097. [
  23098. {
  23099. name: "Smallest",
  23100. height: math.unit(0.5, "inches")
  23101. },
  23102. {
  23103. name: "Micro",
  23104. height: math.unit(6, "inches")
  23105. },
  23106. {
  23107. name: "Normal",
  23108. height: math.unit(6, "feet"),
  23109. default: true
  23110. },
  23111. {
  23112. name: "Macro",
  23113. height: math.unit(150, "feet")
  23114. },
  23115. ]
  23116. ))
  23117. characterMakers.push(() => makeCharacter(
  23118. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23119. {
  23120. front: {
  23121. height: math.unit(28, "feet"),
  23122. weight: math.unit(10500, "lb"),
  23123. name: "Front",
  23124. image: {
  23125. source: "./media/characters/kayda/front.svg",
  23126. extra: 1536 / 1428,
  23127. bottom: 68.7 / 1603
  23128. }
  23129. },
  23130. back: {
  23131. height: math.unit(28, "feet"),
  23132. weight: math.unit(10500, "lb"),
  23133. name: "Back",
  23134. image: {
  23135. source: "./media/characters/kayda/back.svg",
  23136. extra: 1557 / 1464,
  23137. bottom: 39.5 / 1597.49
  23138. }
  23139. },
  23140. dick: {
  23141. height: math.unit(3.858, "feet"),
  23142. name: "Dick",
  23143. image: {
  23144. source: "./media/characters/kayda/dick.svg"
  23145. }
  23146. },
  23147. },
  23148. [
  23149. {
  23150. name: "Macro",
  23151. height: math.unit(28, "feet"),
  23152. default: true
  23153. },
  23154. ]
  23155. ))
  23156. characterMakers.push(() => makeCharacter(
  23157. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23158. {
  23159. front: {
  23160. height: math.unit(10 + 11 / 12, "feet"),
  23161. weight: math.unit(1400, "lb"),
  23162. name: "Front",
  23163. image: {
  23164. source: "./media/characters/brian/front.svg",
  23165. extra: 737 / 692,
  23166. bottom: 55.4 / 785
  23167. }
  23168. },
  23169. },
  23170. [
  23171. {
  23172. name: "Normal",
  23173. height: math.unit(10 + 11 / 12, "feet"),
  23174. default: true
  23175. },
  23176. ]
  23177. ))
  23178. characterMakers.push(() => makeCharacter(
  23179. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23180. {
  23181. front: {
  23182. height: math.unit(5 + 8 / 12, "feet"),
  23183. weight: math.unit(140, "lb"),
  23184. name: "Front",
  23185. image: {
  23186. source: "./media/characters/khemri/front.svg",
  23187. extra: 4780 / 4059,
  23188. bottom: 80.1 / 4859.25
  23189. }
  23190. },
  23191. },
  23192. [
  23193. {
  23194. name: "Micro",
  23195. height: math.unit(6, "inches")
  23196. },
  23197. {
  23198. name: "Normal",
  23199. height: math.unit(5 + 8 / 12, "feet"),
  23200. default: true
  23201. },
  23202. ]
  23203. ))
  23204. characterMakers.push(() => makeCharacter(
  23205. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23206. {
  23207. front: {
  23208. height: math.unit(13, "feet"),
  23209. weight: math.unit(1700, "lb"),
  23210. name: "Front",
  23211. image: {
  23212. source: "./media/characters/felix-braveheart/front.svg",
  23213. extra: 1222 / 1157,
  23214. bottom: 53.2 / 1280
  23215. }
  23216. },
  23217. back: {
  23218. height: math.unit(13, "feet"),
  23219. weight: math.unit(1700, "lb"),
  23220. name: "Back",
  23221. image: {
  23222. source: "./media/characters/felix-braveheart/back.svg",
  23223. extra: 1277 / 1203,
  23224. bottom: 50.2 / 1327
  23225. }
  23226. },
  23227. feral: {
  23228. height: math.unit(6, "feet"),
  23229. weight: math.unit(400, "lb"),
  23230. name: "Feral",
  23231. image: {
  23232. source: "./media/characters/felix-braveheart/feral.svg",
  23233. extra: 682 / 625,
  23234. bottom: 6.9 / 688
  23235. }
  23236. },
  23237. },
  23238. [
  23239. {
  23240. name: "Normal",
  23241. height: math.unit(13, "feet"),
  23242. default: true
  23243. },
  23244. ]
  23245. ))
  23246. characterMakers.push(() => makeCharacter(
  23247. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23248. {
  23249. side: {
  23250. height: math.unit(5 + 11 / 12, "feet"),
  23251. weight: math.unit(1400, "lb"),
  23252. name: "Side",
  23253. image: {
  23254. source: "./media/characters/shadow-blade/side.svg",
  23255. extra: 1726 / 1267,
  23256. bottom: 58.4 / 1785
  23257. }
  23258. },
  23259. },
  23260. [
  23261. {
  23262. name: "Normal",
  23263. height: math.unit(5 + 11 / 12, "feet"),
  23264. default: true
  23265. },
  23266. ]
  23267. ))
  23268. characterMakers.push(() => makeCharacter(
  23269. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23270. {
  23271. front: {
  23272. height: math.unit(1 + 6 / 12, "feet"),
  23273. weight: math.unit(25, "lb"),
  23274. name: "Front",
  23275. image: {
  23276. source: "./media/characters/karla-halldor/front.svg",
  23277. extra: 1459 / 1383,
  23278. bottom: 12 / 1472
  23279. }
  23280. },
  23281. },
  23282. [
  23283. {
  23284. name: "Normal",
  23285. height: math.unit(1 + 6 / 12, "feet"),
  23286. default: true
  23287. },
  23288. ]
  23289. ))
  23290. characterMakers.push(() => makeCharacter(
  23291. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23292. {
  23293. front: {
  23294. height: math.unit(6 + 2 / 12, "feet"),
  23295. weight: math.unit(160, "lb"),
  23296. name: "Front",
  23297. image: {
  23298. source: "./media/characters/ariam/front.svg",
  23299. extra: 714 / 617,
  23300. bottom: 23.4 / 737,
  23301. }
  23302. },
  23303. squatting: {
  23304. height: math.unit(4.1, "feet"),
  23305. weight: math.unit(160, "lb"),
  23306. name: "Squatting",
  23307. image: {
  23308. source: "./media/characters/ariam/squatting.svg",
  23309. extra: 2617 / 2112,
  23310. bottom: 61.2 / 2681,
  23311. }
  23312. },
  23313. },
  23314. [
  23315. {
  23316. name: "Normal",
  23317. height: math.unit(6 + 2 / 12, "feet"),
  23318. default: true
  23319. },
  23320. {
  23321. name: "Normal+",
  23322. height: math.unit(4, "meters")
  23323. },
  23324. {
  23325. name: "Macro",
  23326. height: math.unit(50, "meters")
  23327. },
  23328. {
  23329. name: "Macro+",
  23330. height: math.unit(100, "meters")
  23331. },
  23332. {
  23333. name: "Megamacro",
  23334. height: math.unit(20, "km")
  23335. },
  23336. ]
  23337. ))
  23338. characterMakers.push(() => makeCharacter(
  23339. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23340. {
  23341. front: {
  23342. height: math.unit(1.67, "meters"),
  23343. weight: math.unit(140, "lb"),
  23344. name: "Front",
  23345. image: {
  23346. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23347. extra: 438 / 410,
  23348. bottom: 0.75 / 439
  23349. }
  23350. },
  23351. },
  23352. [
  23353. {
  23354. name: "Shrunken",
  23355. height: math.unit(7.6, "cm")
  23356. },
  23357. {
  23358. name: "Human Scale",
  23359. height: math.unit(1.67, "meters")
  23360. },
  23361. {
  23362. name: "Wolxi Scale",
  23363. height: math.unit(36.7, "meters"),
  23364. default: true
  23365. },
  23366. ]
  23367. ))
  23368. characterMakers.push(() => makeCharacter(
  23369. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23370. {
  23371. front: {
  23372. height: math.unit(1.73, "meters"),
  23373. weight: math.unit(240, "lb"),
  23374. name: "Front",
  23375. image: {
  23376. source: "./media/characters/izue-two-mothers/front.svg",
  23377. extra: 469 / 437,
  23378. bottom: 1.24 / 470.6
  23379. }
  23380. },
  23381. },
  23382. [
  23383. {
  23384. name: "Shrunken",
  23385. height: math.unit(7.86, "cm")
  23386. },
  23387. {
  23388. name: "Human Scale",
  23389. height: math.unit(1.73, "meters")
  23390. },
  23391. {
  23392. name: "Wolxi Scale",
  23393. height: math.unit(38, "meters"),
  23394. default: true
  23395. },
  23396. ]
  23397. ))
  23398. characterMakers.push(() => makeCharacter(
  23399. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23400. {
  23401. front: {
  23402. height: math.unit(1.55, "meters"),
  23403. weight: math.unit(120, "lb"),
  23404. name: "Front",
  23405. image: {
  23406. source: "./media/characters/teeku-love-shack/front.svg",
  23407. extra: 387 / 362,
  23408. bottom: 1.51 / 388
  23409. }
  23410. },
  23411. },
  23412. [
  23413. {
  23414. name: "Shrunken",
  23415. height: math.unit(7, "cm")
  23416. },
  23417. {
  23418. name: "Human Scale",
  23419. height: math.unit(1.55, "meters")
  23420. },
  23421. {
  23422. name: "Wolxi Scale",
  23423. height: math.unit(34.1, "meters"),
  23424. default: true
  23425. },
  23426. ]
  23427. ))
  23428. characterMakers.push(() => makeCharacter(
  23429. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23430. {
  23431. front: {
  23432. height: math.unit(1.83, "meters"),
  23433. weight: math.unit(135, "lb"),
  23434. name: "Front",
  23435. image: {
  23436. source: "./media/characters/dejma-the-red/front.svg",
  23437. extra: 480 / 458,
  23438. bottom: 1.8 / 482
  23439. }
  23440. },
  23441. },
  23442. [
  23443. {
  23444. name: "Shrunken",
  23445. height: math.unit(8.3, "cm")
  23446. },
  23447. {
  23448. name: "Human Scale",
  23449. height: math.unit(1.83, "meters")
  23450. },
  23451. {
  23452. name: "Wolxi Scale",
  23453. height: math.unit(40, "meters"),
  23454. default: true
  23455. },
  23456. ]
  23457. ))
  23458. characterMakers.push(() => makeCharacter(
  23459. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23460. {
  23461. front: {
  23462. height: math.unit(1.78, "meters"),
  23463. weight: math.unit(65, "kg"),
  23464. name: "Front",
  23465. image: {
  23466. source: "./media/characters/aki/front.svg",
  23467. extra: 452 / 415
  23468. }
  23469. },
  23470. frontNsfw: {
  23471. height: math.unit(1.78, "meters"),
  23472. weight: math.unit(65, "kg"),
  23473. name: "Front (NSFW)",
  23474. image: {
  23475. source: "./media/characters/aki/front-nsfw.svg",
  23476. extra: 452 / 415
  23477. }
  23478. },
  23479. back: {
  23480. height: math.unit(1.78, "meters"),
  23481. weight: math.unit(65, "kg"),
  23482. name: "Back",
  23483. image: {
  23484. source: "./media/characters/aki/back.svg",
  23485. extra: 452 / 415
  23486. }
  23487. },
  23488. rump: {
  23489. height: math.unit(2.05, "feet"),
  23490. name: "Rump",
  23491. image: {
  23492. source: "./media/characters/aki/rump.svg"
  23493. }
  23494. },
  23495. dick: {
  23496. height: math.unit(0.95, "feet"),
  23497. name: "Dick",
  23498. image: {
  23499. source: "./media/characters/aki/dick.svg"
  23500. }
  23501. },
  23502. },
  23503. [
  23504. {
  23505. name: "Micro",
  23506. height: math.unit(15, "cm")
  23507. },
  23508. {
  23509. name: "Normal",
  23510. height: math.unit(178, "cm"),
  23511. default: true
  23512. },
  23513. {
  23514. name: "Macro",
  23515. height: math.unit(214, "m")
  23516. },
  23517. {
  23518. name: "Macro+",
  23519. height: math.unit(534, "m")
  23520. },
  23521. ]
  23522. ))
  23523. characterMakers.push(() => makeCharacter(
  23524. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23525. {
  23526. front: {
  23527. height: math.unit(5 + 5 / 12, "feet"),
  23528. weight: math.unit(120, "lb"),
  23529. name: "Front",
  23530. image: {
  23531. source: "./media/characters/ari/front.svg",
  23532. extra: 714.5 / 682,
  23533. bottom: 8 / 722.5
  23534. }
  23535. },
  23536. },
  23537. [
  23538. {
  23539. name: "Normal",
  23540. height: math.unit(5 + 5 / 12, "feet")
  23541. },
  23542. {
  23543. name: "Macro",
  23544. height: math.unit(100, "feet"),
  23545. default: true
  23546. },
  23547. {
  23548. name: "Megamacro",
  23549. height: math.unit(100, "miles")
  23550. },
  23551. {
  23552. name: "Gigamacro",
  23553. height: math.unit(80000, "miles")
  23554. },
  23555. ]
  23556. ))
  23557. characterMakers.push(() => makeCharacter(
  23558. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23559. {
  23560. side: {
  23561. height: math.unit(9, "feet"),
  23562. weight: math.unit(400, "kg"),
  23563. name: "Side",
  23564. image: {
  23565. source: "./media/characters/bolt/side.svg",
  23566. extra: 1126 / 896,
  23567. bottom: 60 / 1187.3,
  23568. }
  23569. },
  23570. },
  23571. [
  23572. {
  23573. name: "Micro",
  23574. height: math.unit(5, "inches")
  23575. },
  23576. {
  23577. name: "Normal",
  23578. height: math.unit(9, "feet"),
  23579. default: true
  23580. },
  23581. {
  23582. name: "Macro",
  23583. height: math.unit(700, "feet")
  23584. },
  23585. {
  23586. name: "Max Size",
  23587. height: math.unit(1.52e22, "yottameters")
  23588. },
  23589. ]
  23590. ))
  23591. characterMakers.push(() => makeCharacter(
  23592. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23593. {
  23594. front: {
  23595. height: math.unit(4.53, "meters"),
  23596. weight: math.unit(3, "tons"),
  23597. name: "Front",
  23598. image: {
  23599. source: "./media/characters/draekon-sylviar/front.svg",
  23600. extra: 1228 / 1068,
  23601. bottom: 41 / 1270
  23602. }
  23603. },
  23604. tail: {
  23605. height: math.unit(1.772, "meter"),
  23606. name: "Tail",
  23607. image: {
  23608. source: "./media/characters/draekon-sylviar/tail.svg"
  23609. }
  23610. },
  23611. head: {
  23612. height: math.unit(1.331, "meter"),
  23613. name: "Head",
  23614. image: {
  23615. source: "./media/characters/draekon-sylviar/head.svg"
  23616. }
  23617. },
  23618. hand: {
  23619. height: math.unit(0.564, "meter"),
  23620. name: "Hand",
  23621. image: {
  23622. source: "./media/characters/draekon-sylviar/hand.svg"
  23623. }
  23624. },
  23625. foot: {
  23626. height: math.unit(0.621, "meter"),
  23627. name: "Foot",
  23628. image: {
  23629. source: "./media/characters/draekon-sylviar/foot.svg",
  23630. bottom: 32 / 324
  23631. }
  23632. },
  23633. dick: {
  23634. height: math.unit(61, "cm"),
  23635. name: "Dick",
  23636. image: {
  23637. source: "./media/characters/draekon-sylviar/dick.svg"
  23638. }
  23639. },
  23640. dickseparated: {
  23641. height: math.unit(61, "cm"),
  23642. name: "Dick-separated",
  23643. image: {
  23644. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23645. }
  23646. },
  23647. },
  23648. [
  23649. {
  23650. name: "Small",
  23651. height: math.unit(4.53 / 2, "meters"),
  23652. default: true
  23653. },
  23654. {
  23655. name: "Normal",
  23656. height: math.unit(4.53, "meters"),
  23657. default: true
  23658. },
  23659. {
  23660. name: "Large",
  23661. height: math.unit(4.53 * 2, "meters"),
  23662. },
  23663. ]
  23664. ))
  23665. characterMakers.push(() => makeCharacter(
  23666. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23667. {
  23668. front: {
  23669. height: math.unit(6 + 2 / 12, "feet"),
  23670. weight: math.unit(180, "lb"),
  23671. name: "Front",
  23672. image: {
  23673. source: "./media/characters/brawler/front.svg",
  23674. extra: 3301 / 3027,
  23675. bottom: 138 / 3439
  23676. }
  23677. },
  23678. },
  23679. [
  23680. {
  23681. name: "Normal",
  23682. height: math.unit(6 + 2 / 12, "feet"),
  23683. default: true
  23684. },
  23685. ]
  23686. ))
  23687. characterMakers.push(() => makeCharacter(
  23688. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23689. {
  23690. front: {
  23691. height: math.unit(11, "feet"),
  23692. weight: math.unit(1000, "lb"),
  23693. name: "Front",
  23694. image: {
  23695. source: "./media/characters/alex/front.svg",
  23696. bottom: 44.5 / 620
  23697. }
  23698. },
  23699. },
  23700. [
  23701. {
  23702. name: "Micro",
  23703. height: math.unit(5, "inches")
  23704. },
  23705. {
  23706. name: "Normal",
  23707. height: math.unit(11, "feet"),
  23708. default: true
  23709. },
  23710. {
  23711. name: "Macro",
  23712. height: math.unit(9.5e9, "feet")
  23713. },
  23714. {
  23715. name: "Max Size",
  23716. height: math.unit(1.4e283, "yottameters")
  23717. },
  23718. ]
  23719. ))
  23720. characterMakers.push(() => makeCharacter(
  23721. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23722. {
  23723. female: {
  23724. height: math.unit(29.9, "m"),
  23725. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23726. name: "Female",
  23727. image: {
  23728. source: "./media/characters/zenari/female.svg",
  23729. extra: 3281.6 / 3217,
  23730. bottom: 72.2 / 3353
  23731. }
  23732. },
  23733. male: {
  23734. height: math.unit(27.7, "m"),
  23735. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23736. name: "Male",
  23737. image: {
  23738. source: "./media/characters/zenari/male.svg",
  23739. extra: 3008 / 2991,
  23740. bottom: 54.6 / 3069
  23741. }
  23742. },
  23743. },
  23744. [
  23745. {
  23746. name: "Macro",
  23747. height: math.unit(29.7, "meters"),
  23748. default: true
  23749. },
  23750. ]
  23751. ))
  23752. characterMakers.push(() => makeCharacter(
  23753. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23754. {
  23755. female: {
  23756. height: math.unit(23.8, "m"),
  23757. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23758. name: "Female",
  23759. image: {
  23760. source: "./media/characters/mactarian/female.svg",
  23761. extra: 2662 / 2569,
  23762. bottom: 73 / 2736
  23763. }
  23764. },
  23765. male: {
  23766. height: math.unit(23.8, "m"),
  23767. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23768. name: "Male",
  23769. image: {
  23770. source: "./media/characters/mactarian/male.svg",
  23771. extra: 2673 / 2600,
  23772. bottom: 76 / 2750
  23773. }
  23774. },
  23775. },
  23776. [
  23777. {
  23778. name: "Macro",
  23779. height: math.unit(23.8, "meters"),
  23780. default: true
  23781. },
  23782. ]
  23783. ))
  23784. characterMakers.push(() => makeCharacter(
  23785. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23786. {
  23787. female: {
  23788. height: math.unit(19.3, "m"),
  23789. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23790. name: "Female",
  23791. image: {
  23792. source: "./media/characters/umok/female.svg",
  23793. extra: 2186 / 2078,
  23794. bottom: 87 / 2277
  23795. }
  23796. },
  23797. male: {
  23798. height: math.unit(19.5, "m"),
  23799. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23800. name: "Male",
  23801. image: {
  23802. source: "./media/characters/umok/male.svg",
  23803. extra: 2233 / 2140,
  23804. bottom: 24.4 / 2258
  23805. }
  23806. },
  23807. },
  23808. [
  23809. {
  23810. name: "Macro",
  23811. height: math.unit(19.3, "meters"),
  23812. default: true
  23813. },
  23814. ]
  23815. ))
  23816. characterMakers.push(() => makeCharacter(
  23817. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23818. {
  23819. female: {
  23820. height: math.unit(26.15, "m"),
  23821. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23822. name: "Female",
  23823. image: {
  23824. source: "./media/characters/joraxian/female.svg",
  23825. extra: 2912 / 2824,
  23826. bottom: 36 / 2956
  23827. }
  23828. },
  23829. male: {
  23830. height: math.unit(25.4, "m"),
  23831. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23832. name: "Male",
  23833. image: {
  23834. source: "./media/characters/joraxian/male.svg",
  23835. extra: 2877 / 2721,
  23836. bottom: 82 / 2967
  23837. }
  23838. },
  23839. },
  23840. [
  23841. {
  23842. name: "Macro",
  23843. height: math.unit(26.15, "meters"),
  23844. default: true
  23845. },
  23846. ]
  23847. ))
  23848. characterMakers.push(() => makeCharacter(
  23849. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23850. {
  23851. female: {
  23852. height: math.unit(21.6, "m"),
  23853. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23854. name: "Female",
  23855. image: {
  23856. source: "./media/characters/sthara/female.svg",
  23857. extra: 2516 / 2347,
  23858. bottom: 21.5 / 2537
  23859. }
  23860. },
  23861. male: {
  23862. height: math.unit(24, "m"),
  23863. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23864. name: "Male",
  23865. image: {
  23866. source: "./media/characters/sthara/male.svg",
  23867. extra: 2732 / 2607,
  23868. bottom: 23 / 2732
  23869. }
  23870. },
  23871. },
  23872. [
  23873. {
  23874. name: "Macro",
  23875. height: math.unit(21.6, "meters"),
  23876. default: true
  23877. },
  23878. ]
  23879. ))
  23880. characterMakers.push(() => makeCharacter(
  23881. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23882. {
  23883. front: {
  23884. height: math.unit(6 + 4 / 12, "feet"),
  23885. weight: math.unit(175, "lb"),
  23886. name: "Front",
  23887. image: {
  23888. source: "./media/characters/luka-bryzant/front.svg",
  23889. extra: 311 / 289,
  23890. bottom: 4 / 315
  23891. }
  23892. },
  23893. back: {
  23894. height: math.unit(6 + 4 / 12, "feet"),
  23895. weight: math.unit(175, "lb"),
  23896. name: "Back",
  23897. image: {
  23898. source: "./media/characters/luka-bryzant/back.svg",
  23899. extra: 311 / 289,
  23900. bottom: 3.8 / 313.7
  23901. }
  23902. },
  23903. },
  23904. [
  23905. {
  23906. name: "Micro",
  23907. height: math.unit(10, "inches")
  23908. },
  23909. {
  23910. name: "Normal",
  23911. height: math.unit(6 + 4 / 12, "feet"),
  23912. default: true
  23913. },
  23914. {
  23915. name: "Large",
  23916. height: math.unit(12, "feet")
  23917. },
  23918. ]
  23919. ))
  23920. characterMakers.push(() => makeCharacter(
  23921. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23922. {
  23923. front: {
  23924. height: math.unit(5 + 7 / 12, "feet"),
  23925. weight: math.unit(185, "lb"),
  23926. name: "Front",
  23927. image: {
  23928. source: "./media/characters/aman-aquila/front.svg",
  23929. extra: 1013 / 976,
  23930. bottom: 45.6 / 1057
  23931. }
  23932. },
  23933. side: {
  23934. height: math.unit(5 + 7 / 12, "feet"),
  23935. weight: math.unit(185, "lb"),
  23936. name: "Side",
  23937. image: {
  23938. source: "./media/characters/aman-aquila/side.svg",
  23939. extra: 1054 / 1011,
  23940. bottom: 15 / 1070
  23941. }
  23942. },
  23943. back: {
  23944. height: math.unit(5 + 7 / 12, "feet"),
  23945. weight: math.unit(185, "lb"),
  23946. name: "Back",
  23947. image: {
  23948. source: "./media/characters/aman-aquila/back.svg",
  23949. extra: 1026 / 970,
  23950. bottom: 12 / 1039
  23951. }
  23952. },
  23953. head: {
  23954. height: math.unit(1.211, "feet"),
  23955. name: "Head",
  23956. image: {
  23957. source: "./media/characters/aman-aquila/head.svg",
  23958. }
  23959. },
  23960. },
  23961. [
  23962. {
  23963. name: "Minimicro",
  23964. height: math.unit(0.057, "inches")
  23965. },
  23966. {
  23967. name: "Micro",
  23968. height: math.unit(7, "inches")
  23969. },
  23970. {
  23971. name: "Mini",
  23972. height: math.unit(3 + 7 / 12, "feet")
  23973. },
  23974. {
  23975. name: "Normal",
  23976. height: math.unit(5 + 7 / 12, "feet"),
  23977. default: true
  23978. },
  23979. {
  23980. name: "Macro",
  23981. height: math.unit(157 + 7 / 12, "feet")
  23982. },
  23983. {
  23984. name: "Megamacro",
  23985. height: math.unit(1557 + 7 / 12, "feet")
  23986. },
  23987. {
  23988. name: "Gigamacro",
  23989. height: math.unit(15557 + 7 / 12, "feet")
  23990. },
  23991. ]
  23992. ))
  23993. characterMakers.push(() => makeCharacter(
  23994. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23995. {
  23996. front: {
  23997. height: math.unit(3 + 2 / 12, "inches"),
  23998. weight: math.unit(0.3, "ounces"),
  23999. name: "Front",
  24000. image: {
  24001. source: "./media/characters/hiphae/front.svg",
  24002. extra: 1931 / 1683,
  24003. bottom: 24 / 1955
  24004. }
  24005. },
  24006. },
  24007. [
  24008. {
  24009. name: "Normal",
  24010. height: math.unit(3 + 1 / 2, "inches"),
  24011. default: true
  24012. },
  24013. ]
  24014. ))
  24015. characterMakers.push(() => makeCharacter(
  24016. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24017. {
  24018. front: {
  24019. height: math.unit(5 + 10 / 12, "feet"),
  24020. weight: math.unit(165, "lb"),
  24021. name: "Front",
  24022. image: {
  24023. source: "./media/characters/nicky/front.svg",
  24024. extra: 3144 / 2886,
  24025. bottom: 45.6 / 3192
  24026. }
  24027. },
  24028. back: {
  24029. height: math.unit(5 + 10 / 12, "feet"),
  24030. weight: math.unit(165, "lb"),
  24031. name: "Back",
  24032. image: {
  24033. source: "./media/characters/nicky/back.svg",
  24034. extra: 3055 / 2804,
  24035. bottom: 28.4 / 3087
  24036. }
  24037. },
  24038. frontclothed: {
  24039. height: math.unit(5 + 10 / 12, "feet"),
  24040. weight: math.unit(165, "lb"),
  24041. name: "Front-clothed",
  24042. image: {
  24043. source: "./media/characters/nicky/front-clothed.svg",
  24044. extra: 3184.9 / 2926.9,
  24045. bottom: 86.5 / 3239.9
  24046. }
  24047. },
  24048. foot: {
  24049. height: math.unit(1.16, "feet"),
  24050. name: "Foot",
  24051. image: {
  24052. source: "./media/characters/nicky/foot.svg"
  24053. }
  24054. },
  24055. feet: {
  24056. height: math.unit(1.34, "feet"),
  24057. name: "Feet",
  24058. image: {
  24059. source: "./media/characters/nicky/feet.svg"
  24060. }
  24061. },
  24062. maw: {
  24063. height: math.unit(0.9, "feet"),
  24064. name: "Maw",
  24065. image: {
  24066. source: "./media/characters/nicky/maw.svg"
  24067. }
  24068. },
  24069. },
  24070. [
  24071. {
  24072. name: "Normal",
  24073. height: math.unit(5 + 10 / 12, "feet"),
  24074. default: true
  24075. },
  24076. {
  24077. name: "Macro",
  24078. height: math.unit(60, "feet")
  24079. },
  24080. {
  24081. name: "Megamacro",
  24082. height: math.unit(1, "mile")
  24083. },
  24084. ]
  24085. ))
  24086. characterMakers.push(() => makeCharacter(
  24087. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24088. {
  24089. side: {
  24090. height: math.unit(10, "feet"),
  24091. weight: math.unit(600, "lb"),
  24092. name: "Side",
  24093. image: {
  24094. source: "./media/characters/blair/side.svg",
  24095. bottom: 16.6 / 475,
  24096. extra: 458 / 431
  24097. }
  24098. },
  24099. },
  24100. [
  24101. {
  24102. name: "Micro",
  24103. height: math.unit(8, "inches")
  24104. },
  24105. {
  24106. name: "Normal",
  24107. height: math.unit(10, "feet"),
  24108. default: true
  24109. },
  24110. {
  24111. name: "Macro",
  24112. height: math.unit(180, "feet")
  24113. },
  24114. ]
  24115. ))
  24116. characterMakers.push(() => makeCharacter(
  24117. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24118. {
  24119. front: {
  24120. height: math.unit(5 + 4 / 12, "feet"),
  24121. weight: math.unit(125, "lb"),
  24122. name: "Front",
  24123. image: {
  24124. source: "./media/characters/fisher/front.svg",
  24125. extra: 444 / 390,
  24126. bottom: 2 / 444.8
  24127. }
  24128. },
  24129. },
  24130. [
  24131. {
  24132. name: "Micro",
  24133. height: math.unit(4, "inches")
  24134. },
  24135. {
  24136. name: "Normal",
  24137. height: math.unit(5 + 4 / 12, "feet"),
  24138. default: true
  24139. },
  24140. {
  24141. name: "Macro",
  24142. height: math.unit(100, "feet")
  24143. },
  24144. ]
  24145. ))
  24146. characterMakers.push(() => makeCharacter(
  24147. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24148. {
  24149. front: {
  24150. height: math.unit(6.71, "feet"),
  24151. weight: math.unit(200, "lb"),
  24152. capacity: math.unit(1000000, "people"),
  24153. name: "Front",
  24154. image: {
  24155. source: "./media/characters/gliss/front.svg",
  24156. extra: 2347 / 2231,
  24157. bottom: 113 / 2462
  24158. }
  24159. },
  24160. hammerspaceSize: {
  24161. height: math.unit(6.71 * 717, "feet"),
  24162. weight: math.unit(200, "lb"),
  24163. capacity: math.unit(1000000, "people"),
  24164. name: "Hammerspace Size",
  24165. image: {
  24166. source: "./media/characters/gliss/front.svg",
  24167. extra: 2347 / 2231,
  24168. bottom: 113 / 2462
  24169. }
  24170. },
  24171. },
  24172. [
  24173. {
  24174. name: "Normal",
  24175. height: math.unit(6.71, "feet"),
  24176. default: true
  24177. },
  24178. ]
  24179. ))
  24180. characterMakers.push(() => makeCharacter(
  24181. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24182. {
  24183. side: {
  24184. height: math.unit(1.44, "m"),
  24185. weight: math.unit(80, "kg"),
  24186. name: "Side",
  24187. image: {
  24188. source: "./media/characters/dune-anderson/side.svg",
  24189. bottom: 49 / 1426
  24190. }
  24191. },
  24192. },
  24193. [
  24194. {
  24195. name: "Wolf-sized",
  24196. height: math.unit(1.44, "meters")
  24197. },
  24198. {
  24199. name: "Normal",
  24200. height: math.unit(5.05, "meters"),
  24201. default: true
  24202. },
  24203. {
  24204. name: "Big",
  24205. height: math.unit(14.4, "meters")
  24206. },
  24207. {
  24208. name: "Huge",
  24209. height: math.unit(144, "meters")
  24210. },
  24211. ]
  24212. ))
  24213. characterMakers.push(() => makeCharacter(
  24214. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24215. {
  24216. front: {
  24217. height: math.unit(7, "feet"),
  24218. weight: math.unit(425, "lb"),
  24219. name: "Front",
  24220. image: {
  24221. source: "./media/characters/hind/front.svg",
  24222. extra: 2091 / 1860,
  24223. bottom: 129 / 2220
  24224. }
  24225. },
  24226. back: {
  24227. height: math.unit(7, "feet"),
  24228. weight: math.unit(425, "lb"),
  24229. name: "Back",
  24230. image: {
  24231. source: "./media/characters/hind/back.svg",
  24232. extra: 2091 / 1860,
  24233. bottom: 24.6 / 2309
  24234. }
  24235. },
  24236. tail: {
  24237. height: math.unit(2.8, "feet"),
  24238. name: "Tail",
  24239. image: {
  24240. source: "./media/characters/hind/tail.svg"
  24241. }
  24242. },
  24243. head: {
  24244. height: math.unit(2.55, "feet"),
  24245. name: "Head",
  24246. image: {
  24247. source: "./media/characters/hind/head.svg"
  24248. }
  24249. },
  24250. },
  24251. [
  24252. {
  24253. name: "XS",
  24254. height: math.unit(0.7, "feet")
  24255. },
  24256. {
  24257. name: "Normal",
  24258. height: math.unit(7, "feet"),
  24259. default: true
  24260. },
  24261. {
  24262. name: "XL",
  24263. height: math.unit(70, "feet")
  24264. },
  24265. ]
  24266. ))
  24267. characterMakers.push(() => makeCharacter(
  24268. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24269. {
  24270. front: {
  24271. height: math.unit(6, "feet"),
  24272. weight: math.unit(150, "lb"),
  24273. name: "Front",
  24274. image: {
  24275. source: "./media/characters/dylan-skaven/front.svg",
  24276. extra: 2318 / 2063,
  24277. bottom: 93.4 / 2410
  24278. }
  24279. },
  24280. },
  24281. [
  24282. {
  24283. name: "Nano",
  24284. height: math.unit(1, "mm")
  24285. },
  24286. {
  24287. name: "Micro",
  24288. height: math.unit(1, "cm")
  24289. },
  24290. {
  24291. name: "Normal",
  24292. height: math.unit(2.1, "meters"),
  24293. default: true
  24294. },
  24295. ]
  24296. ))
  24297. characterMakers.push(() => makeCharacter(
  24298. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24299. {
  24300. front: {
  24301. height: math.unit(7 + 5 / 12, "feet"),
  24302. weight: math.unit(357, "lb"),
  24303. name: "Front",
  24304. image: {
  24305. source: "./media/characters/solex-draconov/front.svg",
  24306. extra: 1993 / 1865,
  24307. bottom: 117 / 2111
  24308. }
  24309. },
  24310. },
  24311. [
  24312. {
  24313. name: "Natural Height",
  24314. height: math.unit(7 + 5 / 12, "feet"),
  24315. default: true
  24316. },
  24317. {
  24318. name: "Macro",
  24319. height: math.unit(350, "feet")
  24320. },
  24321. {
  24322. name: "Macro+",
  24323. height: math.unit(1000, "feet")
  24324. },
  24325. {
  24326. name: "Megamacro",
  24327. height: math.unit(20, "km")
  24328. },
  24329. {
  24330. name: "Megamacro+",
  24331. height: math.unit(1000, "km")
  24332. },
  24333. {
  24334. name: "Gigamacro",
  24335. height: math.unit(2.5, "Gm")
  24336. },
  24337. {
  24338. name: "Teramacro",
  24339. height: math.unit(15, "Tm")
  24340. },
  24341. {
  24342. name: "Galactic",
  24343. height: math.unit(30, "Zm")
  24344. },
  24345. {
  24346. name: "Universal",
  24347. height: math.unit(21000, "Ym")
  24348. },
  24349. {
  24350. name: "Omniversal",
  24351. height: math.unit(9.861e50, "Ym")
  24352. },
  24353. {
  24354. name: "Existential",
  24355. height: math.unit(1e300, "meters")
  24356. },
  24357. ]
  24358. ))
  24359. characterMakers.push(() => makeCharacter(
  24360. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24361. {
  24362. side: {
  24363. height: math.unit(25, "feet"),
  24364. weight: math.unit(90000, "lb"),
  24365. name: "Side",
  24366. image: {
  24367. source: "./media/characters/mandarax/side.svg",
  24368. extra: 614 / 332,
  24369. bottom: 55 / 630
  24370. }
  24371. },
  24372. head: {
  24373. height: math.unit(11.4, "feet"),
  24374. name: "Head",
  24375. image: {
  24376. source: "./media/characters/mandarax/head.svg"
  24377. }
  24378. },
  24379. belly: {
  24380. height: math.unit(33, "feet"),
  24381. name: "Belly",
  24382. capacity: math.unit(500, "people"),
  24383. image: {
  24384. source: "./media/characters/mandarax/belly.svg"
  24385. }
  24386. },
  24387. dick: {
  24388. height: math.unit(8.46, "feet"),
  24389. name: "Dick",
  24390. image: {
  24391. source: "./media/characters/mandarax/dick.svg"
  24392. }
  24393. },
  24394. top: {
  24395. height: math.unit(28, "meters"),
  24396. name: "Top",
  24397. image: {
  24398. source: "./media/characters/mandarax/top.svg"
  24399. }
  24400. },
  24401. },
  24402. [
  24403. {
  24404. name: "Normal",
  24405. height: math.unit(25, "feet"),
  24406. default: true
  24407. },
  24408. ]
  24409. ))
  24410. characterMakers.push(() => makeCharacter(
  24411. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24412. {
  24413. front: {
  24414. height: math.unit(5, "feet"),
  24415. weight: math.unit(90, "lb"),
  24416. name: "Front",
  24417. image: {
  24418. source: "./media/characters/pixil/front.svg",
  24419. extra: 2000 / 1618,
  24420. bottom: 12.3 / 2011
  24421. }
  24422. },
  24423. },
  24424. [
  24425. {
  24426. name: "Normal",
  24427. height: math.unit(5, "feet"),
  24428. default: true
  24429. },
  24430. {
  24431. name: "Megamacro",
  24432. height: math.unit(10, "miles"),
  24433. },
  24434. ]
  24435. ))
  24436. characterMakers.push(() => makeCharacter(
  24437. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24438. {
  24439. front: {
  24440. height: math.unit(7 + 2 / 12, "feet"),
  24441. weight: math.unit(200, "lb"),
  24442. name: "Front",
  24443. image: {
  24444. source: "./media/characters/angel/front.svg",
  24445. extra: 1830 / 1737,
  24446. bottom: 22.6 / 1854,
  24447. }
  24448. },
  24449. },
  24450. [
  24451. {
  24452. name: "Normal",
  24453. height: math.unit(7 + 2 / 12, "feet"),
  24454. default: true
  24455. },
  24456. {
  24457. name: "Macro",
  24458. height: math.unit(1000, "feet")
  24459. },
  24460. {
  24461. name: "Megamacro",
  24462. height: math.unit(2, "miles")
  24463. },
  24464. {
  24465. name: "Gigamacro",
  24466. height: math.unit(20, "earths")
  24467. },
  24468. ]
  24469. ))
  24470. characterMakers.push(() => makeCharacter(
  24471. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24472. {
  24473. front: {
  24474. height: math.unit(5, "feet"),
  24475. weight: math.unit(180, "lb"),
  24476. name: "Front",
  24477. image: {
  24478. source: "./media/characters/mekana/front.svg",
  24479. extra: 1671 / 1605,
  24480. bottom: 3.5 / 1691
  24481. }
  24482. },
  24483. side: {
  24484. height: math.unit(5, "feet"),
  24485. weight: math.unit(180, "lb"),
  24486. name: "Side",
  24487. image: {
  24488. source: "./media/characters/mekana/side.svg",
  24489. extra: 1671 / 1605,
  24490. bottom: 3.5 / 1691
  24491. }
  24492. },
  24493. back: {
  24494. height: math.unit(5, "feet"),
  24495. weight: math.unit(180, "lb"),
  24496. name: "Back",
  24497. image: {
  24498. source: "./media/characters/mekana/back.svg",
  24499. extra: 1671 / 1605,
  24500. bottom: 3.5 / 1691
  24501. }
  24502. },
  24503. },
  24504. [
  24505. {
  24506. name: "Normal",
  24507. height: math.unit(5, "feet"),
  24508. default: true
  24509. },
  24510. ]
  24511. ))
  24512. characterMakers.push(() => makeCharacter(
  24513. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24514. {
  24515. front: {
  24516. height: math.unit(4 + 6 / 12, "feet"),
  24517. weight: math.unit(80, "lb"),
  24518. name: "Front",
  24519. image: {
  24520. source: "./media/characters/pixie/front.svg",
  24521. extra: 1924 / 1825,
  24522. bottom: 22.4 / 1946
  24523. }
  24524. },
  24525. },
  24526. [
  24527. {
  24528. name: "Normal",
  24529. height: math.unit(4 + 6 / 12, "feet"),
  24530. default: true
  24531. },
  24532. {
  24533. name: "Macro",
  24534. height: math.unit(40, "feet")
  24535. },
  24536. ]
  24537. ))
  24538. characterMakers.push(() => makeCharacter(
  24539. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24540. {
  24541. front: {
  24542. height: math.unit(2.1, "meters"),
  24543. weight: math.unit(200, "lb"),
  24544. name: "Front",
  24545. image: {
  24546. source: "./media/characters/the-lascivious/front.svg",
  24547. extra: 1 / 0.893,
  24548. bottom: 3.5 / 573.7
  24549. }
  24550. },
  24551. },
  24552. [
  24553. {
  24554. name: "Human Scale",
  24555. height: math.unit(2.1, "meters")
  24556. },
  24557. {
  24558. name: "Wolxi Scale",
  24559. height: math.unit(46.2, "m"),
  24560. default: true
  24561. },
  24562. {
  24563. name: "Boinker of Buildings",
  24564. height: math.unit(10, "km")
  24565. },
  24566. {
  24567. name: "Shagger of Skyscrapers",
  24568. height: math.unit(40, "km")
  24569. },
  24570. {
  24571. name: "Banger of Boroughs",
  24572. height: math.unit(4000, "km")
  24573. },
  24574. {
  24575. name: "Screwer of States",
  24576. height: math.unit(100000, "km")
  24577. },
  24578. {
  24579. name: "Pounder of Planets",
  24580. height: math.unit(2000000, "km")
  24581. },
  24582. ]
  24583. ))
  24584. characterMakers.push(() => makeCharacter(
  24585. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24586. {
  24587. front: {
  24588. height: math.unit(6, "feet"),
  24589. weight: math.unit(150, "lb"),
  24590. name: "Front",
  24591. image: {
  24592. source: "./media/characters/aj/front.svg",
  24593. extra: 2039 / 1562,
  24594. bottom: 40 / 2079
  24595. }
  24596. },
  24597. },
  24598. [
  24599. {
  24600. name: "Normal",
  24601. height: math.unit(11 + 6 / 12, "feet"),
  24602. default: true
  24603. },
  24604. {
  24605. name: "Megamacro",
  24606. height: math.unit(60, "megameters")
  24607. },
  24608. ]
  24609. ))
  24610. characterMakers.push(() => makeCharacter(
  24611. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24612. {
  24613. side: {
  24614. height: math.unit(31 + 8 / 12, "feet"),
  24615. weight: math.unit(75000, "kg"),
  24616. name: "Side",
  24617. image: {
  24618. source: "./media/characters/koros/side.svg",
  24619. extra: 1442 / 1297,
  24620. bottom: 122.7 / 1562
  24621. }
  24622. },
  24623. dicksKingsCrown: {
  24624. height: math.unit(6, "feet"),
  24625. name: "Dicks (King's Crown)",
  24626. image: {
  24627. source: "./media/characters/koros/dicks-kings-crown.svg"
  24628. }
  24629. },
  24630. dicksTailSet: {
  24631. height: math.unit(3, "feet"),
  24632. name: "Dicks (Tail Set)",
  24633. image: {
  24634. source: "./media/characters/koros/dicks-tail-set.svg"
  24635. }
  24636. },
  24637. dickCumming: {
  24638. height: math.unit(7.98, "feet"),
  24639. name: "Dick (Cumming)",
  24640. image: {
  24641. source: "./media/characters/koros/dick-cumming.svg"
  24642. }
  24643. },
  24644. dicksBack: {
  24645. height: math.unit(5.9, "feet"),
  24646. name: "Dicks (Back)",
  24647. image: {
  24648. source: "./media/characters/koros/dicks-back.svg"
  24649. }
  24650. },
  24651. dicksFront: {
  24652. height: math.unit(3.72, "feet"),
  24653. name: "Dicks (Front)",
  24654. image: {
  24655. source: "./media/characters/koros/dicks-front.svg"
  24656. }
  24657. },
  24658. dicksPeeking: {
  24659. height: math.unit(3.0, "feet"),
  24660. name: "Dicks (Peeking)",
  24661. image: {
  24662. source: "./media/characters/koros/dicks-peeking.svg"
  24663. }
  24664. },
  24665. eye: {
  24666. height: math.unit(1.7, "feet"),
  24667. name: "Eye",
  24668. image: {
  24669. source: "./media/characters/koros/eye.svg"
  24670. }
  24671. },
  24672. headFront: {
  24673. height: math.unit(11.69, "feet"),
  24674. name: "Head (Front)",
  24675. image: {
  24676. source: "./media/characters/koros/head-front.svg"
  24677. }
  24678. },
  24679. headSide: {
  24680. height: math.unit(14, "feet"),
  24681. name: "Head (Side)",
  24682. image: {
  24683. source: "./media/characters/koros/head-side.svg"
  24684. }
  24685. },
  24686. leg: {
  24687. height: math.unit(17, "feet"),
  24688. name: "Leg",
  24689. image: {
  24690. source: "./media/characters/koros/leg.svg"
  24691. }
  24692. },
  24693. mawSide: {
  24694. height: math.unit(12.8, "feet"),
  24695. name: "Maw (Side)",
  24696. image: {
  24697. source: "./media/characters/koros/maw-side.svg"
  24698. }
  24699. },
  24700. mawSpitting: {
  24701. height: math.unit(17, "feet"),
  24702. name: "Maw (Spitting)",
  24703. image: {
  24704. source: "./media/characters/koros/maw-spitting.svg"
  24705. }
  24706. },
  24707. slit: {
  24708. height: math.unit(2.8, "feet"),
  24709. name: "Slit",
  24710. image: {
  24711. source: "./media/characters/koros/slit.svg"
  24712. }
  24713. },
  24714. stomach: {
  24715. height: math.unit(6.8, "feet"),
  24716. capacity: math.unit(20, "people"),
  24717. name: "Stomach",
  24718. image: {
  24719. source: "./media/characters/koros/stomach.svg"
  24720. }
  24721. },
  24722. wingspanBottom: {
  24723. height: math.unit(114, "feet"),
  24724. name: "Wingspan (Bottom)",
  24725. image: {
  24726. source: "./media/characters/koros/wingspan-bottom.svg"
  24727. }
  24728. },
  24729. wingspanTop: {
  24730. height: math.unit(104, "feet"),
  24731. name: "Wingspan (Top)",
  24732. image: {
  24733. source: "./media/characters/koros/wingspan-top.svg"
  24734. }
  24735. },
  24736. },
  24737. [
  24738. {
  24739. name: "Normal",
  24740. height: math.unit(31 + 8 / 12, "feet"),
  24741. default: true
  24742. },
  24743. ]
  24744. ))
  24745. characterMakers.push(() => makeCharacter(
  24746. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24747. {
  24748. front: {
  24749. height: math.unit(18 + 5 / 12, "feet"),
  24750. weight: math.unit(3750, "kg"),
  24751. name: "Front",
  24752. image: {
  24753. source: "./media/characters/vexx/front.svg",
  24754. extra: 426 / 396,
  24755. bottom: 31.5 / 458
  24756. }
  24757. },
  24758. maw: {
  24759. height: math.unit(6, "feet"),
  24760. name: "Maw",
  24761. image: {
  24762. source: "./media/characters/vexx/maw.svg"
  24763. }
  24764. },
  24765. },
  24766. [
  24767. {
  24768. name: "Normal",
  24769. height: math.unit(18 + 5 / 12, "feet"),
  24770. default: true
  24771. },
  24772. ]
  24773. ))
  24774. characterMakers.push(() => makeCharacter(
  24775. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24776. {
  24777. front: {
  24778. height: math.unit(17 + 6 / 12, "feet"),
  24779. weight: math.unit(150, "lb"),
  24780. name: "Front",
  24781. image: {
  24782. source: "./media/characters/baadra/front.svg",
  24783. extra: 3137 / 2890,
  24784. bottom: 168.4 / 3305
  24785. }
  24786. },
  24787. back: {
  24788. height: math.unit(17 + 6 / 12, "feet"),
  24789. weight: math.unit(150, "lb"),
  24790. name: "Back",
  24791. image: {
  24792. source: "./media/characters/baadra/back.svg",
  24793. extra: 3142 / 2890,
  24794. bottom: 220 / 3371
  24795. }
  24796. },
  24797. head: {
  24798. height: math.unit(5.45, "feet"),
  24799. name: "Head",
  24800. image: {
  24801. source: "./media/characters/baadra/head.svg"
  24802. }
  24803. },
  24804. headAngry: {
  24805. height: math.unit(4.95, "feet"),
  24806. name: "Head (Angry)",
  24807. image: {
  24808. source: "./media/characters/baadra/head-angry.svg"
  24809. }
  24810. },
  24811. headOpen: {
  24812. height: math.unit(6, "feet"),
  24813. name: "Head (Open)",
  24814. image: {
  24815. source: "./media/characters/baadra/head-open.svg"
  24816. }
  24817. },
  24818. },
  24819. [
  24820. {
  24821. name: "Normal",
  24822. height: math.unit(17 + 6 / 12, "feet"),
  24823. default: true
  24824. },
  24825. ]
  24826. ))
  24827. characterMakers.push(() => makeCharacter(
  24828. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24829. {
  24830. front: {
  24831. height: math.unit(7 + 3 / 12, "feet"),
  24832. weight: math.unit(180, "lb"),
  24833. name: "Front",
  24834. image: {
  24835. source: "./media/characters/juri/front.svg",
  24836. extra: 1401 / 1237,
  24837. bottom: 18.5 / 1418
  24838. }
  24839. },
  24840. side: {
  24841. height: math.unit(7 + 3 / 12, "feet"),
  24842. weight: math.unit(180, "lb"),
  24843. name: "Side",
  24844. image: {
  24845. source: "./media/characters/juri/side.svg",
  24846. extra: 1424 / 1242,
  24847. bottom: 18.5 / 1447
  24848. }
  24849. },
  24850. sitting: {
  24851. height: math.unit(6, "feet"),
  24852. weight: math.unit(180, "lb"),
  24853. name: "Sitting",
  24854. image: {
  24855. source: "./media/characters/juri/sitting.svg",
  24856. extra: 1270 / 1143,
  24857. bottom: 100 / 1343
  24858. }
  24859. },
  24860. back: {
  24861. height: math.unit(7 + 3 / 12, "feet"),
  24862. weight: math.unit(180, "lb"),
  24863. name: "Back",
  24864. image: {
  24865. source: "./media/characters/juri/back.svg",
  24866. extra: 1377 / 1240,
  24867. bottom: 23.7 / 1405
  24868. }
  24869. },
  24870. maw: {
  24871. height: math.unit(2.8, "feet"),
  24872. name: "Maw",
  24873. image: {
  24874. source: "./media/characters/juri/maw.svg"
  24875. }
  24876. },
  24877. stomach: {
  24878. height: math.unit(0.89, "feet"),
  24879. capacity: math.unit(4, "liters"),
  24880. name: "Stomach",
  24881. image: {
  24882. source: "./media/characters/juri/stomach.svg"
  24883. }
  24884. },
  24885. },
  24886. [
  24887. {
  24888. name: "Normal",
  24889. height: math.unit(7 + 3 / 12, "feet"),
  24890. default: true
  24891. },
  24892. ]
  24893. ))
  24894. characterMakers.push(() => makeCharacter(
  24895. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  24896. {
  24897. fox: {
  24898. height: math.unit(5 + 6 / 12, "feet"),
  24899. weight: math.unit(140, "lb"),
  24900. name: "Fox",
  24901. image: {
  24902. source: "./media/characters/maxene-sita/fox.svg",
  24903. extra: 146 / 138,
  24904. bottom: 2.1 / 148.19
  24905. }
  24906. },
  24907. foxLaying: {
  24908. height: math.unit(1.70, "feet"),
  24909. weight: math.unit(140, "lb"),
  24910. name: "Fox (Laying)",
  24911. image: {
  24912. source: "./media/characters/maxene-sita/fox-laying.svg",
  24913. extra: 910 / 572,
  24914. bottom: 71 / 981
  24915. }
  24916. },
  24917. kitsune: {
  24918. height: math.unit(10, "feet"),
  24919. weight: math.unit(800, "lb"),
  24920. name: "Kitsune",
  24921. image: {
  24922. source: "./media/characters/maxene-sita/kitsune.svg",
  24923. extra: 185 / 176,
  24924. bottom: 4.7 / 189.9
  24925. }
  24926. },
  24927. hellhound: {
  24928. height: math.unit(10, "feet"),
  24929. weight: math.unit(700, "lb"),
  24930. name: "Hellhound",
  24931. image: {
  24932. source: "./media/characters/maxene-sita/hellhound.svg",
  24933. extra: 1600 / 1545,
  24934. bottom: 81 / 1681
  24935. }
  24936. },
  24937. },
  24938. [
  24939. {
  24940. name: "Normal",
  24941. height: math.unit(5 + 6 / 12, "feet"),
  24942. default: true
  24943. },
  24944. ]
  24945. ))
  24946. characterMakers.push(() => makeCharacter(
  24947. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24948. {
  24949. front: {
  24950. height: math.unit(3 + 4 / 12, "feet"),
  24951. weight: math.unit(70, "lb"),
  24952. name: "Front",
  24953. image: {
  24954. source: "./media/characters/maia/front.svg",
  24955. extra: 227 / 219.5,
  24956. bottom: 40 / 267
  24957. }
  24958. },
  24959. back: {
  24960. height: math.unit(3 + 4 / 12, "feet"),
  24961. weight: math.unit(70, "lb"),
  24962. name: "Back",
  24963. image: {
  24964. source: "./media/characters/maia/back.svg",
  24965. extra: 237 / 225
  24966. }
  24967. },
  24968. },
  24969. [
  24970. {
  24971. name: "Normal",
  24972. height: math.unit(3 + 4 / 12, "feet"),
  24973. default: true
  24974. },
  24975. ]
  24976. ))
  24977. characterMakers.push(() => makeCharacter(
  24978. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  24979. {
  24980. front: {
  24981. height: math.unit(5 + 10 / 12, "feet"),
  24982. weight: math.unit(197, "lb"),
  24983. name: "Front",
  24984. image: {
  24985. source: "./media/characters/jabaro/front.svg",
  24986. extra: 225 / 216,
  24987. bottom: 5.06 / 230
  24988. }
  24989. },
  24990. back: {
  24991. height: math.unit(5 + 10 / 12, "feet"),
  24992. weight: math.unit(197, "lb"),
  24993. name: "Back",
  24994. image: {
  24995. source: "./media/characters/jabaro/back.svg",
  24996. extra: 225 / 219,
  24997. bottom: 1.9 / 227
  24998. }
  24999. },
  25000. },
  25001. [
  25002. {
  25003. name: "Normal",
  25004. height: math.unit(5 + 10 / 12, "feet"),
  25005. default: true
  25006. },
  25007. ]
  25008. ))
  25009. characterMakers.push(() => makeCharacter(
  25010. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25011. {
  25012. front: {
  25013. height: math.unit(5 + 8 / 12, "feet"),
  25014. weight: math.unit(139, "lb"),
  25015. name: "Front",
  25016. image: {
  25017. source: "./media/characters/risa/front.svg",
  25018. extra: 270 / 260,
  25019. bottom: 11.2 / 282
  25020. }
  25021. },
  25022. back: {
  25023. height: math.unit(5 + 8 / 12, "feet"),
  25024. weight: math.unit(139, "lb"),
  25025. name: "Back",
  25026. image: {
  25027. source: "./media/characters/risa/back.svg",
  25028. extra: 264 / 255,
  25029. bottom: 4 / 268
  25030. }
  25031. },
  25032. },
  25033. [
  25034. {
  25035. name: "Normal",
  25036. height: math.unit(5 + 8 / 12, "feet"),
  25037. default: true
  25038. },
  25039. ]
  25040. ))
  25041. characterMakers.push(() => makeCharacter(
  25042. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25043. {
  25044. front: {
  25045. height: math.unit(2 + 11 / 12, "feet"),
  25046. weight: math.unit(30, "lb"),
  25047. name: "Front",
  25048. image: {
  25049. source: "./media/characters/weatley/front.svg",
  25050. bottom: 10.7 / 414,
  25051. extra: 403.5 / 362
  25052. }
  25053. },
  25054. back: {
  25055. height: math.unit(2 + 11 / 12, "feet"),
  25056. weight: math.unit(30, "lb"),
  25057. name: "Back",
  25058. image: {
  25059. source: "./media/characters/weatley/back.svg",
  25060. bottom: 10.7 / 414,
  25061. extra: 403.5 / 362
  25062. }
  25063. },
  25064. },
  25065. [
  25066. {
  25067. name: "Normal",
  25068. height: math.unit(2 + 11 / 12, "feet"),
  25069. default: true
  25070. },
  25071. ]
  25072. ))
  25073. characterMakers.push(() => makeCharacter(
  25074. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25075. {
  25076. front: {
  25077. height: math.unit(5 + 2 / 12, "feet"),
  25078. weight: math.unit(50, "kg"),
  25079. name: "Front",
  25080. image: {
  25081. source: "./media/characters/mercury-crescent/front.svg",
  25082. extra: 1088 / 1033,
  25083. bottom: 18.9 / 1109
  25084. }
  25085. },
  25086. },
  25087. [
  25088. {
  25089. name: "Normal",
  25090. height: math.unit(5 + 2 / 12, "feet"),
  25091. default: true
  25092. },
  25093. ]
  25094. ))
  25095. characterMakers.push(() => makeCharacter(
  25096. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25097. {
  25098. front: {
  25099. height: math.unit(2, "feet"),
  25100. weight: math.unit(15, "kg"),
  25101. name: "Front",
  25102. image: {
  25103. source: "./media/characters/diamond-jones/front.svg",
  25104. bottom: 16 / 568
  25105. }
  25106. },
  25107. },
  25108. [
  25109. {
  25110. name: "Normal",
  25111. height: math.unit(2, "feet"),
  25112. default: true
  25113. },
  25114. ]
  25115. ))
  25116. characterMakers.push(() => makeCharacter(
  25117. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25118. {
  25119. front: {
  25120. height: math.unit(3, "feet"),
  25121. weight: math.unit(30, "kg"),
  25122. name: "Front",
  25123. image: {
  25124. source: "./media/characters/sweet-bit/front.svg",
  25125. extra: 675 / 567,
  25126. bottom: 27.7 / 703
  25127. }
  25128. },
  25129. },
  25130. [
  25131. {
  25132. name: "Normal",
  25133. height: math.unit(3, "feet"),
  25134. default: true
  25135. },
  25136. ]
  25137. ))
  25138. characterMakers.push(() => makeCharacter(
  25139. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25140. {
  25141. side: {
  25142. height: math.unit(9.178, "feet"),
  25143. weight: math.unit(500, "lb"),
  25144. name: "Side",
  25145. image: {
  25146. source: "./media/characters/umbrazen/side.svg",
  25147. extra: 1730 / 1473,
  25148. bottom: 34.6 / 1765
  25149. }
  25150. },
  25151. },
  25152. [
  25153. {
  25154. name: "Normal",
  25155. height: math.unit(9.178, "feet"),
  25156. default: true
  25157. },
  25158. ]
  25159. ))
  25160. characterMakers.push(() => makeCharacter(
  25161. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25162. {
  25163. front: {
  25164. height: math.unit(10, "feet"),
  25165. weight: math.unit(750, "lb"),
  25166. name: "Front",
  25167. image: {
  25168. source: "./media/characters/arlist/front.svg",
  25169. extra: 961 / 778,
  25170. bottom: 6.2 / 986
  25171. }
  25172. },
  25173. },
  25174. [
  25175. {
  25176. name: "Normal",
  25177. height: math.unit(10, "feet"),
  25178. default: true
  25179. },
  25180. ]
  25181. ))
  25182. characterMakers.push(() => makeCharacter(
  25183. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25184. {
  25185. front: {
  25186. height: math.unit(5 + 1 / 12, "feet"),
  25187. weight: math.unit(110, "lb"),
  25188. name: "Front",
  25189. image: {
  25190. source: "./media/characters/aradel/front.svg",
  25191. extra: 324 / 303,
  25192. bottom: 3.6 / 329.4
  25193. }
  25194. },
  25195. },
  25196. [
  25197. {
  25198. name: "Normal",
  25199. height: math.unit(5 + 1 / 12, "feet"),
  25200. default: true
  25201. },
  25202. ]
  25203. ))
  25204. characterMakers.push(() => makeCharacter(
  25205. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25206. {
  25207. front: {
  25208. height: math.unit(3 + 8 / 12, "feet"),
  25209. weight: math.unit(50, "lb"),
  25210. name: "Front",
  25211. image: {
  25212. source: "./media/characters/serryn/front.svg",
  25213. extra: 1792 / 1656,
  25214. bottom: 43.5 / 1840
  25215. }
  25216. },
  25217. },
  25218. [
  25219. {
  25220. name: "Normal",
  25221. height: math.unit(3 + 8 / 12, "feet"),
  25222. default: true
  25223. },
  25224. ]
  25225. ))
  25226. characterMakers.push(() => makeCharacter(
  25227. { name: "Xavier Thyme" },
  25228. {
  25229. front: {
  25230. height: math.unit(7 + 10 / 12, "feet"),
  25231. weight: math.unit(255, "lb"),
  25232. name: "Front",
  25233. image: {
  25234. source: "./media/characters/xavier-thyme/front.svg",
  25235. extra: 3733 / 3642,
  25236. bottom: 131 / 3869
  25237. }
  25238. },
  25239. frontRaven: {
  25240. height: math.unit(7 + 10 / 12, "feet"),
  25241. weight: math.unit(255, "lb"),
  25242. name: "Front (Raven)",
  25243. image: {
  25244. source: "./media/characters/xavier-thyme/front-raven.svg",
  25245. extra: 4385 / 3642,
  25246. bottom: 131 / 4517
  25247. }
  25248. },
  25249. },
  25250. [
  25251. {
  25252. name: "Normal",
  25253. height: math.unit(7 + 10 / 12, "feet"),
  25254. default: true
  25255. },
  25256. ]
  25257. ))
  25258. characterMakers.push(() => makeCharacter(
  25259. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25260. {
  25261. front: {
  25262. height: math.unit(1.6, "m"),
  25263. weight: math.unit(50, "kg"),
  25264. name: "Front",
  25265. image: {
  25266. source: "./media/characters/kiki/front.svg",
  25267. extra: 4682 / 3610,
  25268. bottom: 115 / 4777
  25269. }
  25270. },
  25271. },
  25272. [
  25273. {
  25274. name: "Normal",
  25275. height: math.unit(1.6, "meters"),
  25276. default: true
  25277. },
  25278. ]
  25279. ))
  25280. characterMakers.push(() => makeCharacter(
  25281. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25282. {
  25283. front: {
  25284. height: math.unit(50, "m"),
  25285. weight: math.unit(500, "tonnes"),
  25286. name: "Front",
  25287. image: {
  25288. source: "./media/characters/ryoko/front.svg",
  25289. extra: 4632 / 3926,
  25290. bottom: 193 / 4823
  25291. }
  25292. },
  25293. },
  25294. [
  25295. {
  25296. name: "Normal",
  25297. height: math.unit(50, "meters"),
  25298. default: true
  25299. },
  25300. ]
  25301. ))
  25302. characterMakers.push(() => makeCharacter(
  25303. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25304. {
  25305. front: {
  25306. height: math.unit(30, "m"),
  25307. weight: math.unit(22, "tonnes"),
  25308. name: "Front",
  25309. image: {
  25310. source: "./media/characters/elio/front.svg",
  25311. extra: 4582 / 3720,
  25312. bottom: 236 / 4828
  25313. }
  25314. },
  25315. },
  25316. [
  25317. {
  25318. name: "Normal",
  25319. height: math.unit(30, "meters"),
  25320. default: true
  25321. },
  25322. ]
  25323. ))
  25324. characterMakers.push(() => makeCharacter(
  25325. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25326. {
  25327. front: {
  25328. height: math.unit(6 + 3 / 12, "feet"),
  25329. weight: math.unit(120, "lb"),
  25330. name: "Front",
  25331. image: {
  25332. source: "./media/characters/azura/front.svg",
  25333. extra: 1149 / 1135,
  25334. bottom: 45 / 1194
  25335. }
  25336. },
  25337. frontClothed: {
  25338. height: math.unit(6 + 3 / 12, "feet"),
  25339. weight: math.unit(120, "lb"),
  25340. name: "Front (Clothed)",
  25341. image: {
  25342. source: "./media/characters/azura/front-clothed.svg",
  25343. extra: 1149 / 1135,
  25344. bottom: 45 / 1194
  25345. }
  25346. },
  25347. },
  25348. [
  25349. {
  25350. name: "Normal",
  25351. height: math.unit(6 + 3 / 12, "feet"),
  25352. default: true
  25353. },
  25354. {
  25355. name: "Macro",
  25356. height: math.unit(20 + 6 / 12, "feet")
  25357. },
  25358. {
  25359. name: "Megamacro",
  25360. height: math.unit(12, "miles")
  25361. },
  25362. {
  25363. name: "Gigamacro",
  25364. height: math.unit(10000, "miles")
  25365. },
  25366. {
  25367. name: "Teramacro",
  25368. height: math.unit(900000, "miles")
  25369. },
  25370. ]
  25371. ))
  25372. characterMakers.push(() => makeCharacter(
  25373. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25374. {
  25375. front: {
  25376. height: math.unit(12, "feet"),
  25377. weight: math.unit(1, "ton"),
  25378. capacity: math.unit(660000, "gallons"),
  25379. name: "Front",
  25380. image: {
  25381. source: "./media/characters/zeus/front.svg",
  25382. extra: 5005 / 4717,
  25383. bottom: 363 / 5388
  25384. }
  25385. },
  25386. },
  25387. [
  25388. {
  25389. name: "Normal",
  25390. height: math.unit(12, "feet")
  25391. },
  25392. {
  25393. name: "Preferred Size",
  25394. height: math.unit(0.5, "miles"),
  25395. default: true
  25396. },
  25397. {
  25398. name: "Giga Horse",
  25399. height: math.unit(300, "miles")
  25400. },
  25401. {
  25402. name: "Riding Planets",
  25403. height: math.unit(30, "megameters")
  25404. },
  25405. {
  25406. name: "Cosmic Giant",
  25407. height: math.unit(3, "zettameters")
  25408. },
  25409. {
  25410. name: "Breeding God",
  25411. height: math.unit(9.92e22, "yottameters")
  25412. },
  25413. ]
  25414. ))
  25415. characterMakers.push(() => makeCharacter(
  25416. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25417. {
  25418. side: {
  25419. height: math.unit(9, "feet"),
  25420. weight: math.unit(1500, "kg"),
  25421. name: "Side",
  25422. image: {
  25423. source: "./media/characters/fang/side.svg",
  25424. extra: 924 / 866,
  25425. bottom: 47.5 / 972.3
  25426. }
  25427. },
  25428. },
  25429. [
  25430. {
  25431. name: "Normal",
  25432. height: math.unit(9, "feet"),
  25433. default: true
  25434. },
  25435. {
  25436. name: "Macro",
  25437. height: math.unit(75 + 6 / 12, "feet")
  25438. },
  25439. {
  25440. name: "Teramacro",
  25441. height: math.unit(50000, "miles")
  25442. },
  25443. ]
  25444. ))
  25445. characterMakers.push(() => makeCharacter(
  25446. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25447. {
  25448. front: {
  25449. height: math.unit(10, "feet"),
  25450. weight: math.unit(2, "tons"),
  25451. name: "Front",
  25452. image: {
  25453. source: "./media/characters/rekhit/front.svg",
  25454. extra: 2796 / 2590,
  25455. bottom: 225 / 3022
  25456. }
  25457. },
  25458. },
  25459. [
  25460. {
  25461. name: "Normal",
  25462. height: math.unit(10, "feet"),
  25463. default: true
  25464. },
  25465. {
  25466. name: "Macro",
  25467. height: math.unit(500, "feet")
  25468. },
  25469. ]
  25470. ))
  25471. characterMakers.push(() => makeCharacter(
  25472. { name: "Dahlia Verrick" },
  25473. {
  25474. front: {
  25475. height: math.unit(7 + 6.451 / 12, "feet"),
  25476. weight: math.unit(310, "lb"),
  25477. name: "Front",
  25478. image: {
  25479. source: "./media/characters/dahlia-verrick/front.svg",
  25480. extra: 1488 / 1365,
  25481. bottom: 6.2 / 1495
  25482. }
  25483. },
  25484. back: {
  25485. height: math.unit(7 + 6.451 / 12, "feet"),
  25486. weight: math.unit(310, "lb"),
  25487. name: "Back",
  25488. image: {
  25489. source: "./media/characters/dahlia-verrick/back.svg",
  25490. extra: 1472 / 1351,
  25491. bottom: 5.28 / 1477
  25492. }
  25493. },
  25494. frontBusiness: {
  25495. height: math.unit(7 + 6.451 / 12, "feet"),
  25496. weight: math.unit(200, "lb"),
  25497. name: "Front (Business)",
  25498. image: {
  25499. source: "./media/characters/dahlia-verrick/front-business.svg",
  25500. extra: 1478 / 1381,
  25501. bottom: 5.5 / 1484
  25502. }
  25503. },
  25504. frontCasual: {
  25505. height: math.unit(7 + 6.451 / 12, "feet"),
  25506. weight: math.unit(200, "lb"),
  25507. name: "Front (Casual)",
  25508. image: {
  25509. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25510. extra: 1478 / 1381,
  25511. bottom: 5.5 / 1484
  25512. }
  25513. },
  25514. },
  25515. [
  25516. {
  25517. name: "Travel-Sized",
  25518. height: math.unit(7.45, "inches")
  25519. },
  25520. {
  25521. name: "Normal",
  25522. height: math.unit(7 + 6.451 / 12, "feet"),
  25523. default: true
  25524. },
  25525. {
  25526. name: "Hitting the Town",
  25527. height: math.unit(37 + 8 / 12, "feet")
  25528. },
  25529. {
  25530. name: "Stomp in the Suburbs",
  25531. height: math.unit(964 + 9.728 / 12, "feet")
  25532. },
  25533. {
  25534. name: "Sit on the City",
  25535. height: math.unit(61747 + 10.592 / 12, "feet")
  25536. },
  25537. {
  25538. name: "Glomp the Globe",
  25539. height: math.unit(252919327 + 4.832 / 12, "feet")
  25540. },
  25541. ]
  25542. ))
  25543. characterMakers.push(() => makeCharacter(
  25544. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25545. {
  25546. front: {
  25547. height: math.unit(6 + 4 / 12, "feet"),
  25548. weight: math.unit(320, "lb"),
  25549. name: "Front",
  25550. image: {
  25551. source: "./media/characters/balina-mahigan/front.svg",
  25552. extra: 447 / 428,
  25553. bottom: 18 / 466
  25554. }
  25555. },
  25556. back: {
  25557. height: math.unit(6 + 4 / 12, "feet"),
  25558. weight: math.unit(320, "lb"),
  25559. name: "Back",
  25560. image: {
  25561. source: "./media/characters/balina-mahigan/back.svg",
  25562. extra: 445 / 428,
  25563. bottom: 4.07 / 448
  25564. }
  25565. },
  25566. arm: {
  25567. height: math.unit(1.88, "feet"),
  25568. name: "Arm",
  25569. image: {
  25570. source: "./media/characters/balina-mahigan/arm.svg"
  25571. }
  25572. },
  25573. backPort: {
  25574. height: math.unit(0.685, "feet"),
  25575. name: "Back Port",
  25576. image: {
  25577. source: "./media/characters/balina-mahigan/back-port.svg"
  25578. }
  25579. },
  25580. hoofpaw: {
  25581. height: math.unit(1.41, "feet"),
  25582. name: "Hoofpaw",
  25583. image: {
  25584. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25585. }
  25586. },
  25587. leftHandBack: {
  25588. height: math.unit(0.938, "feet"),
  25589. name: "Left Hand (Back)",
  25590. image: {
  25591. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25592. }
  25593. },
  25594. leftHandFront: {
  25595. height: math.unit(0.938, "feet"),
  25596. name: "Left Hand (Front)",
  25597. image: {
  25598. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25599. }
  25600. },
  25601. rightHandBack: {
  25602. height: math.unit(0.95, "feet"),
  25603. name: "Right Hand (Back)",
  25604. image: {
  25605. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25606. }
  25607. },
  25608. rightHandFront: {
  25609. height: math.unit(0.95, "feet"),
  25610. name: "Right Hand (Front)",
  25611. image: {
  25612. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25613. }
  25614. },
  25615. },
  25616. [
  25617. {
  25618. name: "Normal",
  25619. height: math.unit(6 + 4 / 12, "feet"),
  25620. default: true
  25621. },
  25622. ]
  25623. ))
  25624. characterMakers.push(() => makeCharacter(
  25625. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25626. {
  25627. front: {
  25628. height: math.unit(6, "feet"),
  25629. weight: math.unit(320, "lb"),
  25630. name: "Front",
  25631. image: {
  25632. source: "./media/characters/balina-mejeri/front.svg",
  25633. extra: 517 / 488,
  25634. bottom: 44.2 / 561
  25635. }
  25636. },
  25637. },
  25638. [
  25639. {
  25640. name: "Normal",
  25641. height: math.unit(6 + 4 / 12, "feet")
  25642. },
  25643. {
  25644. name: "Business",
  25645. height: math.unit(155, "feet"),
  25646. default: true
  25647. },
  25648. ]
  25649. ))
  25650. characterMakers.push(() => makeCharacter(
  25651. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25652. {
  25653. kneeling: {
  25654. height: math.unit(6 + 4 / 12, "feet"),
  25655. weight: math.unit(300 * 20, "lb"),
  25656. name: "Kneeling",
  25657. image: {
  25658. source: "./media/characters/balbarian/kneeling.svg",
  25659. extra: 922 / 862,
  25660. bottom: 42.4 / 965
  25661. }
  25662. },
  25663. },
  25664. [
  25665. {
  25666. name: "Normal",
  25667. height: math.unit(6 + 4 / 12, "feet")
  25668. },
  25669. {
  25670. name: "Treasured",
  25671. height: math.unit(18 + 9 / 12, "feet"),
  25672. default: true
  25673. },
  25674. {
  25675. name: "Macro",
  25676. height: math.unit(900, "feet")
  25677. },
  25678. ]
  25679. ))
  25680. characterMakers.push(() => makeCharacter(
  25681. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25682. {
  25683. front: {
  25684. height: math.unit(6 + 4 / 12, "feet"),
  25685. weight: math.unit(325, "lb"),
  25686. name: "Front",
  25687. image: {
  25688. source: "./media/characters/balina-amarini/front.svg",
  25689. extra: 415 / 403,
  25690. bottom: 19 / 433.4
  25691. }
  25692. },
  25693. back: {
  25694. height: math.unit(6 + 4 / 12, "feet"),
  25695. weight: math.unit(325, "lb"),
  25696. name: "Back",
  25697. image: {
  25698. source: "./media/characters/balina-amarini/back.svg",
  25699. extra: 415 / 403,
  25700. bottom: 13.5 / 432
  25701. }
  25702. },
  25703. overdrive: {
  25704. height: math.unit(6 + 4 / 12, "feet"),
  25705. weight: math.unit(400, "lb"),
  25706. name: "Overdrive",
  25707. image: {
  25708. source: "./media/characters/balina-amarini/overdrive.svg",
  25709. extra: 269 / 259,
  25710. bottom: 12 / 282
  25711. }
  25712. },
  25713. },
  25714. [
  25715. {
  25716. name: "Boom",
  25717. height: math.unit(9 + 10 / 12, "feet"),
  25718. default: true
  25719. },
  25720. {
  25721. name: "Macro",
  25722. height: math.unit(280, "feet")
  25723. },
  25724. ]
  25725. ))
  25726. characterMakers.push(() => makeCharacter(
  25727. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25728. {
  25729. goddess: {
  25730. height: math.unit(600, "feet"),
  25731. weight: math.unit(2000000, "tons"),
  25732. name: "Goddess",
  25733. image: {
  25734. source: "./media/characters/lady-kubwa/goddess.svg",
  25735. extra: 1240.5 / 1223,
  25736. bottom: 22 / 1263
  25737. }
  25738. },
  25739. goddesser: {
  25740. height: math.unit(900, "feet"),
  25741. weight: math.unit(20000000, "lb"),
  25742. name: "Goddess-er",
  25743. image: {
  25744. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25745. extra: 899 / 888,
  25746. bottom: 12.6 / 912
  25747. }
  25748. },
  25749. },
  25750. [
  25751. {
  25752. name: "Macro",
  25753. height: math.unit(600, "feet"),
  25754. default: true
  25755. },
  25756. {
  25757. name: "Megamacro",
  25758. height: math.unit(250, "miles")
  25759. },
  25760. ]
  25761. ))
  25762. characterMakers.push(() => makeCharacter(
  25763. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25764. {
  25765. front: {
  25766. height: math.unit(7 + 7 / 12, "feet"),
  25767. weight: math.unit(250, "lb"),
  25768. name: "Front",
  25769. image: {
  25770. source: "./media/characters/tala-grovehorn/front.svg",
  25771. extra: 2636 / 2525,
  25772. bottom: 147 / 2781
  25773. }
  25774. },
  25775. back: {
  25776. height: math.unit(7 + 7 / 12, "feet"),
  25777. weight: math.unit(250, "lb"),
  25778. name: "Back",
  25779. image: {
  25780. source: "./media/characters/tala-grovehorn/back.svg",
  25781. extra: 2635 / 2539,
  25782. bottom: 100 / 2732.8
  25783. }
  25784. },
  25785. mouth: {
  25786. height: math.unit(1.15, "feet"),
  25787. name: "Mouth",
  25788. image: {
  25789. source: "./media/characters/tala-grovehorn/mouth.svg"
  25790. }
  25791. },
  25792. dick: {
  25793. height: math.unit(2.36, "feet"),
  25794. name: "Dick",
  25795. image: {
  25796. source: "./media/characters/tala-grovehorn/dick.svg"
  25797. }
  25798. },
  25799. slit: {
  25800. height: math.unit(0.61, "feet"),
  25801. name: "Slit",
  25802. image: {
  25803. source: "./media/characters/tala-grovehorn/slit.svg"
  25804. }
  25805. },
  25806. },
  25807. [
  25808. ]
  25809. ))
  25810. characterMakers.push(() => makeCharacter(
  25811. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25812. {
  25813. front: {
  25814. height: math.unit(7 + 7 / 12, "feet"),
  25815. weight: math.unit(225, "lb"),
  25816. name: "Front",
  25817. image: {
  25818. source: "./media/characters/epona/front.svg",
  25819. extra: 2445 / 2290,
  25820. bottom: 251 / 2696
  25821. }
  25822. },
  25823. back: {
  25824. height: math.unit(7 + 7 / 12, "feet"),
  25825. weight: math.unit(225, "lb"),
  25826. name: "Back",
  25827. image: {
  25828. source: "./media/characters/epona/back.svg",
  25829. extra: 2546 / 2408,
  25830. bottom: 44 / 2589
  25831. }
  25832. },
  25833. genitals: {
  25834. height: math.unit(1.5, "feet"),
  25835. name: "Genitals",
  25836. image: {
  25837. source: "./media/characters/epona/genitals.svg"
  25838. }
  25839. },
  25840. },
  25841. [
  25842. {
  25843. name: "Normal",
  25844. height: math.unit(7 + 7 / 12, "feet")
  25845. },
  25846. ]
  25847. ))
  25848. characterMakers.push(() => makeCharacter(
  25849. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25850. {
  25851. front: {
  25852. height: math.unit(7, "feet"),
  25853. weight: math.unit(518, "lb"),
  25854. name: "Front",
  25855. image: {
  25856. source: "./media/characters/avia-bloodbourn/front.svg",
  25857. extra: 1466 / 1350,
  25858. bottom: 65 / 1527
  25859. }
  25860. },
  25861. },
  25862. [
  25863. ]
  25864. ))
  25865. characterMakers.push(() => makeCharacter(
  25866. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25867. {
  25868. front: {
  25869. height: math.unit(9.35, "feet"),
  25870. weight: math.unit(600, "lb"),
  25871. name: "Front",
  25872. image: {
  25873. source: "./media/characters/amera/front.svg",
  25874. extra: 891 / 818,
  25875. bottom: 30 / 922.7
  25876. }
  25877. },
  25878. back: {
  25879. height: math.unit(9.35, "feet"),
  25880. weight: math.unit(600, "lb"),
  25881. name: "Back",
  25882. image: {
  25883. source: "./media/characters/amera/back.svg",
  25884. extra: 876 / 824,
  25885. bottom: 6.8 / 884
  25886. }
  25887. },
  25888. dick: {
  25889. height: math.unit(2.14, "feet"),
  25890. name: "Dick",
  25891. image: {
  25892. source: "./media/characters/amera/dick.svg"
  25893. }
  25894. },
  25895. },
  25896. [
  25897. {
  25898. name: "Normal",
  25899. height: math.unit(9.35, "feet"),
  25900. default: true
  25901. },
  25902. ]
  25903. ))
  25904. characterMakers.push(() => makeCharacter(
  25905. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25906. {
  25907. kneeling: {
  25908. height: math.unit(3 + 4 / 12, "feet"),
  25909. weight: math.unit(90, "lb"),
  25910. name: "Kneeling",
  25911. image: {
  25912. source: "./media/characters/rosewen/kneeling.svg",
  25913. extra: 1835 / 1571,
  25914. bottom: 27.7 / 1862
  25915. }
  25916. },
  25917. },
  25918. [
  25919. {
  25920. name: "Normal",
  25921. height: math.unit(3 + 4 / 12, "feet"),
  25922. default: true
  25923. },
  25924. ]
  25925. ))
  25926. characterMakers.push(() => makeCharacter(
  25927. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  25928. {
  25929. front: {
  25930. height: math.unit(5 + 10 / 12, "feet"),
  25931. weight: math.unit(200, "lb"),
  25932. name: "Front",
  25933. image: {
  25934. source: "./media/characters/sabah/front.svg",
  25935. extra: 849 / 763,
  25936. bottom: 33.9 / 881
  25937. }
  25938. },
  25939. },
  25940. [
  25941. {
  25942. name: "Normal",
  25943. height: math.unit(5 + 10 / 12, "feet"),
  25944. default: true
  25945. },
  25946. ]
  25947. ))
  25948. characterMakers.push(() => makeCharacter(
  25949. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  25950. {
  25951. front: {
  25952. height: math.unit(3 + 5 / 12, "feet"),
  25953. weight: math.unit(40, "kg"),
  25954. name: "Front",
  25955. image: {
  25956. source: "./media/characters/purple-flame/front.svg",
  25957. extra: 1577 / 1412,
  25958. bottom: 97 / 1694
  25959. }
  25960. },
  25961. frontDressed: {
  25962. height: math.unit(3 + 5 / 12, "feet"),
  25963. weight: math.unit(40, "kg"),
  25964. name: "Front (Dressed)",
  25965. image: {
  25966. source: "./media/characters/purple-flame/front-dressed.svg",
  25967. extra: 1577 / 1412,
  25968. bottom: 97 / 1694
  25969. }
  25970. },
  25971. headphones: {
  25972. height: math.unit(0.85, "feet"),
  25973. name: "Headphones",
  25974. image: {
  25975. source: "./media/characters/purple-flame/headphones.svg"
  25976. }
  25977. },
  25978. },
  25979. [
  25980. {
  25981. name: "Really Small",
  25982. height: math.unit(5, "cm")
  25983. },
  25984. {
  25985. name: "Micro",
  25986. height: math.unit(1 + 5 / 12, "feet")
  25987. },
  25988. {
  25989. name: "Normal",
  25990. height: math.unit(3 + 5 / 12, "feet"),
  25991. default: true
  25992. },
  25993. {
  25994. name: "Minimacro",
  25995. height: math.unit(125, "feet")
  25996. },
  25997. {
  25998. name: "Macro",
  25999. height: math.unit(0.5, "miles")
  26000. },
  26001. {
  26002. name: "Megamacro",
  26003. height: math.unit(50, "miles")
  26004. },
  26005. {
  26006. name: "Gigantic",
  26007. height: math.unit(750, "miles")
  26008. },
  26009. {
  26010. name: "Planetary",
  26011. height: math.unit(15000, "miles")
  26012. },
  26013. ]
  26014. ))
  26015. characterMakers.push(() => makeCharacter(
  26016. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26017. {
  26018. front: {
  26019. height: math.unit(14, "feet"),
  26020. weight: math.unit(959, "lb"),
  26021. name: "Front",
  26022. image: {
  26023. source: "./media/characters/arsenal/front.svg",
  26024. extra: 2357 / 2157,
  26025. bottom: 93 / 2458
  26026. }
  26027. },
  26028. },
  26029. [
  26030. {
  26031. name: "Normal",
  26032. height: math.unit(14, "feet"),
  26033. default: true
  26034. },
  26035. ]
  26036. ))
  26037. characterMakers.push(() => makeCharacter(
  26038. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26039. {
  26040. front: {
  26041. height: math.unit(6, "feet"),
  26042. weight: math.unit(150, "lb"),
  26043. name: "Front",
  26044. image: {
  26045. source: "./media/characters/adira/front.svg",
  26046. extra: 1078 / 1029,
  26047. bottom: 87 / 1166
  26048. }
  26049. },
  26050. },
  26051. [
  26052. {
  26053. name: "Micro",
  26054. height: math.unit(4, "inches"),
  26055. default: true
  26056. },
  26057. {
  26058. name: "Macro",
  26059. height: math.unit(50, "feet")
  26060. },
  26061. ]
  26062. ))
  26063. characterMakers.push(() => makeCharacter(
  26064. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26065. {
  26066. front: {
  26067. height: math.unit(16, "feet"),
  26068. weight: math.unit(1000, "lb"),
  26069. name: "Front",
  26070. image: {
  26071. source: "./media/characters/grim/front.svg",
  26072. extra: 622 / 614,
  26073. bottom: 18.1 / 642
  26074. }
  26075. },
  26076. back: {
  26077. height: math.unit(16, "feet"),
  26078. weight: math.unit(1000, "lb"),
  26079. name: "Back",
  26080. image: {
  26081. source: "./media/characters/grim/back.svg",
  26082. extra: 610.6 / 602,
  26083. bottom: 40.8 / 652
  26084. }
  26085. },
  26086. hunched: {
  26087. height: math.unit(9.75, "feet"),
  26088. weight: math.unit(1000, "lb"),
  26089. name: "Hunched",
  26090. image: {
  26091. source: "./media/characters/grim/hunched.svg",
  26092. extra: 304 / 297,
  26093. bottom: 35.4 / 394
  26094. }
  26095. },
  26096. },
  26097. [
  26098. {
  26099. name: "Normal",
  26100. height: math.unit(16, "feet"),
  26101. default: true
  26102. },
  26103. ]
  26104. ))
  26105. characterMakers.push(() => makeCharacter(
  26106. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26107. {
  26108. front: {
  26109. height: math.unit(2.3, "meters"),
  26110. weight: math.unit(300, "lb"),
  26111. name: "Front",
  26112. image: {
  26113. source: "./media/characters/sinja/front-sfw.svg",
  26114. extra: 1393 / 1294,
  26115. bottom: 70 / 1463
  26116. }
  26117. },
  26118. frontNsfw: {
  26119. height: math.unit(2.3, "meters"),
  26120. weight: math.unit(300, "lb"),
  26121. name: "Front (NSFW)",
  26122. image: {
  26123. source: "./media/characters/sinja/front-nsfw.svg",
  26124. extra: 1393 / 1294,
  26125. bottom: 70 / 1463
  26126. }
  26127. },
  26128. back: {
  26129. height: math.unit(2.3, "meters"),
  26130. weight: math.unit(300, "lb"),
  26131. name: "Back",
  26132. image: {
  26133. source: "./media/characters/sinja/back.svg",
  26134. extra: 1393 / 1294,
  26135. bottom: 70 / 1463
  26136. }
  26137. },
  26138. head: {
  26139. height: math.unit(1.771, "feet"),
  26140. name: "Head",
  26141. image: {
  26142. source: "./media/characters/sinja/head.svg"
  26143. }
  26144. },
  26145. slit: {
  26146. height: math.unit(0.8, "feet"),
  26147. name: "Slit",
  26148. image: {
  26149. source: "./media/characters/sinja/slit.svg"
  26150. }
  26151. },
  26152. },
  26153. [
  26154. {
  26155. name: "Normal",
  26156. height: math.unit(2.3, "meters")
  26157. },
  26158. {
  26159. name: "Macro",
  26160. height: math.unit(91, "meters"),
  26161. default: true
  26162. },
  26163. {
  26164. name: "Megamacro",
  26165. height: math.unit(91440, "meters")
  26166. },
  26167. {
  26168. name: "Gigamacro",
  26169. height: math.unit(60960000, "meters")
  26170. },
  26171. {
  26172. name: "Teramacro",
  26173. height: math.unit(9144000000, "meters")
  26174. },
  26175. ]
  26176. ))
  26177. characterMakers.push(() => makeCharacter(
  26178. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26179. {
  26180. front: {
  26181. height: math.unit(1.7, "meters"),
  26182. weight: math.unit(130, "lb"),
  26183. name: "Front",
  26184. image: {
  26185. source: "./media/characters/kyu/front.svg",
  26186. extra: 415 / 395,
  26187. bottom: 5 / 420
  26188. }
  26189. },
  26190. head: {
  26191. height: math.unit(1.75, "feet"),
  26192. name: "Head",
  26193. image: {
  26194. source: "./media/characters/kyu/head.svg"
  26195. }
  26196. },
  26197. foot: {
  26198. height: math.unit(0.81, "feet"),
  26199. name: "Foot",
  26200. image: {
  26201. source: "./media/characters/kyu/foot.svg"
  26202. }
  26203. },
  26204. },
  26205. [
  26206. {
  26207. name: "Normal",
  26208. height: math.unit(1.7, "meters")
  26209. },
  26210. {
  26211. name: "Macro",
  26212. height: math.unit(131, "feet"),
  26213. default: true
  26214. },
  26215. {
  26216. name: "Megamacro",
  26217. height: math.unit(91440, "meters")
  26218. },
  26219. {
  26220. name: "Gigamacro",
  26221. height: math.unit(60960000, "meters")
  26222. },
  26223. {
  26224. name: "Teramacro",
  26225. height: math.unit(9144000000, "meters")
  26226. },
  26227. ]
  26228. ))
  26229. characterMakers.push(() => makeCharacter(
  26230. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26231. {
  26232. front: {
  26233. height: math.unit(7 + 1 / 12, "feet"),
  26234. weight: math.unit(250, "lb"),
  26235. name: "Front",
  26236. image: {
  26237. source: "./media/characters/joey/front.svg",
  26238. extra: 1791 / 1537,
  26239. bottom: 28 / 1816
  26240. }
  26241. },
  26242. },
  26243. [
  26244. {
  26245. name: "Micro",
  26246. height: math.unit(3, "inches")
  26247. },
  26248. {
  26249. name: "Normal",
  26250. height: math.unit(7 + 1 / 12, "feet"),
  26251. default: true
  26252. },
  26253. ]
  26254. ))
  26255. characterMakers.push(() => makeCharacter(
  26256. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26257. {
  26258. front: {
  26259. height: math.unit(165, "cm"),
  26260. weight: math.unit(140, "lb"),
  26261. name: "Front",
  26262. image: {
  26263. source: "./media/characters/sam-evans/front.svg",
  26264. extra: 3417 / 3230,
  26265. bottom: 41.3 / 3417
  26266. }
  26267. },
  26268. frontSixTails: {
  26269. height: math.unit(165, "cm"),
  26270. weight: math.unit(140, "lb"),
  26271. name: "Front-six-tails",
  26272. image: {
  26273. source: "./media/characters/sam-evans/front-six-tails.svg",
  26274. extra: 3417 / 3230,
  26275. bottom: 41.3 / 3417
  26276. }
  26277. },
  26278. back: {
  26279. height: math.unit(165, "cm"),
  26280. weight: math.unit(140, "lb"),
  26281. name: "Back",
  26282. image: {
  26283. source: "./media/characters/sam-evans/back.svg",
  26284. extra: 3227 / 3032,
  26285. bottom: 6.8 / 3234
  26286. }
  26287. },
  26288. face: {
  26289. height: math.unit(0.68, "feet"),
  26290. name: "Face",
  26291. image: {
  26292. source: "./media/characters/sam-evans/face.svg"
  26293. }
  26294. },
  26295. },
  26296. [
  26297. {
  26298. name: "Normal",
  26299. height: math.unit(165, "cm"),
  26300. default: true
  26301. },
  26302. {
  26303. name: "Macro",
  26304. height: math.unit(100, "meters")
  26305. },
  26306. {
  26307. name: "Macro+",
  26308. height: math.unit(800, "meters")
  26309. },
  26310. {
  26311. name: "Macro++",
  26312. height: math.unit(3, "km")
  26313. },
  26314. {
  26315. name: "Macro+++",
  26316. height: math.unit(30, "km")
  26317. },
  26318. ]
  26319. ))
  26320. characterMakers.push(() => makeCharacter(
  26321. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26322. {
  26323. front: {
  26324. height: math.unit(10, "feet"),
  26325. weight: math.unit(750, "lb"),
  26326. name: "Front",
  26327. image: {
  26328. source: "./media/characters/juliet-a/front.svg",
  26329. extra: 1766 / 1720,
  26330. bottom: 43 / 1809
  26331. }
  26332. },
  26333. back: {
  26334. height: math.unit(10, "feet"),
  26335. weight: math.unit(750, "lb"),
  26336. name: "Back",
  26337. image: {
  26338. source: "./media/characters/juliet-a/back.svg",
  26339. extra: 1781 / 1734,
  26340. bottom: 35 / 1810,
  26341. }
  26342. },
  26343. },
  26344. [
  26345. {
  26346. name: "Normal",
  26347. height: math.unit(10, "feet"),
  26348. default: true
  26349. },
  26350. {
  26351. name: "Dragon Form",
  26352. height: math.unit(250, "feet")
  26353. },
  26354. {
  26355. name: "Macro",
  26356. height: math.unit(1000, "feet")
  26357. },
  26358. {
  26359. name: "Megamacro",
  26360. height: math.unit(10000, "feet")
  26361. }
  26362. ]
  26363. ))
  26364. characterMakers.push(() => makeCharacter(
  26365. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26366. {
  26367. regular: {
  26368. height: math.unit(7 + 3 / 12, "feet"),
  26369. weight: math.unit(260, "lb"),
  26370. name: "Regular",
  26371. image: {
  26372. source: "./media/characters/wild/regular.svg",
  26373. extra: 97.45 / 92,
  26374. bottom: 6.8 / 104.3
  26375. }
  26376. },
  26377. biggums: {
  26378. height: math.unit(8 + 6 / 12, "feet"),
  26379. weight: math.unit(425, "lb"),
  26380. name: "Biggums",
  26381. image: {
  26382. source: "./media/characters/wild/biggums.svg",
  26383. extra: 97.45 / 92,
  26384. bottom: 7.5 / 132.34
  26385. }
  26386. },
  26387. mawRegular: {
  26388. height: math.unit(1.24, "feet"),
  26389. name: "Maw (Regular)",
  26390. image: {
  26391. source: "./media/characters/wild/maw.svg"
  26392. }
  26393. },
  26394. mawBiggums: {
  26395. height: math.unit(1.47, "feet"),
  26396. name: "Maw (Biggums)",
  26397. image: {
  26398. source: "./media/characters/wild/maw.svg"
  26399. }
  26400. },
  26401. },
  26402. [
  26403. {
  26404. name: "Normal",
  26405. height: math.unit(7 + 3 / 12, "feet"),
  26406. default: true
  26407. },
  26408. ]
  26409. ))
  26410. characterMakers.push(() => makeCharacter(
  26411. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26412. {
  26413. front: {
  26414. height: math.unit(2.5, "meters"),
  26415. weight: math.unit(200, "kg"),
  26416. name: "Front",
  26417. image: {
  26418. source: "./media/characters/vidar/front.svg",
  26419. extra: 2994 / 2795,
  26420. bottom: 56 / 3061
  26421. }
  26422. },
  26423. back: {
  26424. height: math.unit(2.5, "meters"),
  26425. weight: math.unit(200, "kg"),
  26426. name: "Back",
  26427. image: {
  26428. source: "./media/characters/vidar/back.svg",
  26429. extra: 3131 / 2928,
  26430. bottom: 13.5 / 3141.5
  26431. }
  26432. },
  26433. feral: {
  26434. height: math.unit(2.5, "meters"),
  26435. weight: math.unit(2000, "kg"),
  26436. name: "Feral",
  26437. image: {
  26438. source: "./media/characters/vidar/feral.svg",
  26439. extra: 2790 / 1765,
  26440. bottom: 6 / 2796
  26441. }
  26442. },
  26443. },
  26444. [
  26445. {
  26446. name: "Normal",
  26447. height: math.unit(2.5, "meters"),
  26448. default: true
  26449. },
  26450. {
  26451. name: "Macro",
  26452. height: math.unit(100, "meters")
  26453. },
  26454. ]
  26455. ))
  26456. characterMakers.push(() => makeCharacter(
  26457. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26458. {
  26459. front: {
  26460. height: math.unit(5 + 9 / 12, "feet"),
  26461. weight: math.unit(120, "lb"),
  26462. name: "Front",
  26463. image: {
  26464. source: "./media/characters/ash/front.svg",
  26465. extra: 2189 / 1961,
  26466. bottom: 5.2 / 2194
  26467. }
  26468. },
  26469. },
  26470. [
  26471. {
  26472. name: "Normal",
  26473. height: math.unit(5 + 9 / 12, "feet"),
  26474. default: true
  26475. },
  26476. ]
  26477. ))
  26478. characterMakers.push(() => makeCharacter(
  26479. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26480. {
  26481. front: {
  26482. height: math.unit(9, "feet"),
  26483. weight: math.unit(10000, "lb"),
  26484. name: "Front",
  26485. image: {
  26486. source: "./media/characters/gygabite/front.svg",
  26487. bottom: 31.7 / 537.8,
  26488. extra: 505 / 370
  26489. }
  26490. },
  26491. },
  26492. [
  26493. {
  26494. name: "Normal",
  26495. height: math.unit(9, "feet"),
  26496. default: true
  26497. },
  26498. ]
  26499. ))
  26500. characterMakers.push(() => makeCharacter(
  26501. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26502. {
  26503. front: {
  26504. height: math.unit(12, "feet"),
  26505. weight: math.unit(35000, "lb"),
  26506. name: "Front",
  26507. image: {
  26508. source: "./media/characters/p0tat0/front.svg",
  26509. extra: 1065 / 921,
  26510. bottom: 55.7 / 1121.25
  26511. }
  26512. },
  26513. },
  26514. [
  26515. {
  26516. name: "Normal",
  26517. height: math.unit(12, "feet"),
  26518. default: true
  26519. },
  26520. ]
  26521. ))
  26522. characterMakers.push(() => makeCharacter(
  26523. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26524. {
  26525. side: {
  26526. height: math.unit(6.5, "feet"),
  26527. weight: math.unit(800, "lb"),
  26528. name: "Side",
  26529. image: {
  26530. source: "./media/characters/dusk/side.svg",
  26531. extra: 615 / 373,
  26532. bottom: 53 / 664
  26533. }
  26534. },
  26535. sitting: {
  26536. height: math.unit(7, "feet"),
  26537. weight: math.unit(800, "lb"),
  26538. name: "Sitting",
  26539. image: {
  26540. source: "./media/characters/dusk/sitting.svg",
  26541. extra: 753 / 425,
  26542. bottom: 33 / 774
  26543. }
  26544. },
  26545. head: {
  26546. height: math.unit(6.1, "feet"),
  26547. name: "Head",
  26548. image: {
  26549. source: "./media/characters/dusk/head.svg"
  26550. }
  26551. },
  26552. },
  26553. [
  26554. {
  26555. name: "Normal",
  26556. height: math.unit(7, "feet"),
  26557. default: true
  26558. },
  26559. ]
  26560. ))
  26561. characterMakers.push(() => makeCharacter(
  26562. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26563. {
  26564. front: {
  26565. height: math.unit(15, "feet"),
  26566. weight: math.unit(7000, "lb"),
  26567. name: "Front",
  26568. image: {
  26569. source: "./media/characters/jay-direwolf/front.svg",
  26570. extra: 1810 / 1732,
  26571. bottom: 66 / 1892
  26572. }
  26573. },
  26574. },
  26575. [
  26576. {
  26577. name: "Normal",
  26578. height: math.unit(15, "feet"),
  26579. default: true
  26580. },
  26581. ]
  26582. ))
  26583. characterMakers.push(() => makeCharacter(
  26584. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26585. {
  26586. front: {
  26587. height: math.unit(4 + 9 / 12, "feet"),
  26588. weight: math.unit(130, "lb"),
  26589. name: "Front",
  26590. image: {
  26591. source: "./media/characters/anchovie/front.svg",
  26592. extra: 382 / 350,
  26593. bottom: 25 / 409
  26594. }
  26595. },
  26596. back: {
  26597. height: math.unit(4 + 9 / 12, "feet"),
  26598. weight: math.unit(130, "lb"),
  26599. name: "Back",
  26600. image: {
  26601. source: "./media/characters/anchovie/back.svg",
  26602. extra: 385 / 352,
  26603. bottom: 16.6 / 402
  26604. }
  26605. },
  26606. frontDressed: {
  26607. height: math.unit(4 + 9 / 12, "feet"),
  26608. weight: math.unit(130, "lb"),
  26609. name: "Front (Dressed)",
  26610. image: {
  26611. source: "./media/characters/anchovie/front-dressed.svg",
  26612. extra: 382 / 350,
  26613. bottom: 25 / 409
  26614. }
  26615. },
  26616. backDressed: {
  26617. height: math.unit(4 + 9 / 12, "feet"),
  26618. weight: math.unit(130, "lb"),
  26619. name: "Back (Dressed)",
  26620. image: {
  26621. source: "./media/characters/anchovie/back-dressed.svg",
  26622. extra: 385 / 352,
  26623. bottom: 16.6 / 402
  26624. }
  26625. },
  26626. },
  26627. [
  26628. {
  26629. name: "Micro",
  26630. height: math.unit(6.4, "inches")
  26631. },
  26632. {
  26633. name: "Normal",
  26634. height: math.unit(4 + 9 / 12, "feet"),
  26635. default: true
  26636. },
  26637. ]
  26638. ))
  26639. characterMakers.push(() => makeCharacter(
  26640. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26641. {
  26642. front: {
  26643. height: math.unit(2, "meters"),
  26644. weight: math.unit(180, "lb"),
  26645. name: "Front",
  26646. image: {
  26647. source: "./media/characters/acidrenamon/front.svg",
  26648. extra: 987 / 890,
  26649. bottom: 22.8 / 1009
  26650. }
  26651. },
  26652. back: {
  26653. height: math.unit(2, "meters"),
  26654. weight: math.unit(180, "lb"),
  26655. name: "Back",
  26656. image: {
  26657. source: "./media/characters/acidrenamon/back.svg",
  26658. extra: 983 / 891,
  26659. bottom: 8.4 / 992
  26660. }
  26661. },
  26662. head: {
  26663. height: math.unit(1.92, "feet"),
  26664. name: "Head",
  26665. image: {
  26666. source: "./media/characters/acidrenamon/head.svg"
  26667. }
  26668. },
  26669. rump: {
  26670. height: math.unit(1.72, "feet"),
  26671. name: "Rump",
  26672. image: {
  26673. source: "./media/characters/acidrenamon/rump.svg"
  26674. }
  26675. },
  26676. tail: {
  26677. height: math.unit(4.2, "feet"),
  26678. name: "Tail",
  26679. image: {
  26680. source: "./media/characters/acidrenamon/tail.svg"
  26681. }
  26682. },
  26683. },
  26684. [
  26685. {
  26686. name: "Normal",
  26687. height: math.unit(2, "meters"),
  26688. default: true
  26689. },
  26690. {
  26691. name: "Minimacro",
  26692. height: math.unit(7, "meters")
  26693. },
  26694. {
  26695. name: "Macro",
  26696. height: math.unit(200, "meters")
  26697. },
  26698. {
  26699. name: "Gigamacro",
  26700. height: math.unit(0.2, "earths")
  26701. },
  26702. ]
  26703. ))
  26704. characterMakers.push(() => makeCharacter(
  26705. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26706. {
  26707. front: {
  26708. height: math.unit(6, "feet"),
  26709. weight: math.unit(150, "lb"),
  26710. name: "Front",
  26711. image: {
  26712. source: "./media/characters/kenzie-lee/front.svg",
  26713. extra: 1525 / 1465,
  26714. bottom: 45 / 1570
  26715. }
  26716. },
  26717. side: {
  26718. height: math.unit(6, "feet"),
  26719. weight: math.unit(150, "lb"),
  26720. name: "Side",
  26721. image: {
  26722. source: "./media/characters/kenzie-lee/side.svg",
  26723. extra: 5505 / 5383,
  26724. bottom: 60 / 5573
  26725. }
  26726. },
  26727. },
  26728. [
  26729. {
  26730. name: "Normal",
  26731. height: math.unit(152, "feet"),
  26732. default: true
  26733. },
  26734. {
  26735. name: "Megamacro",
  26736. height: math.unit(7, "miles")
  26737. },
  26738. {
  26739. name: "Gigamacro",
  26740. height: math.unit(8000, "miles")
  26741. },
  26742. ]
  26743. ))
  26744. characterMakers.push(() => makeCharacter(
  26745. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26746. {
  26747. side: {
  26748. height: math.unit(6, "feet"),
  26749. weight: math.unit(150, "lb"),
  26750. name: "Side",
  26751. image: {
  26752. source: "./media/characters/withers/side.svg",
  26753. extra: 1830 / 1728,
  26754. bottom: 96 / 1927
  26755. }
  26756. },
  26757. front: {
  26758. height: math.unit(6, "feet"),
  26759. weight: math.unit(150, "lb"),
  26760. name: "Front",
  26761. image: {
  26762. source: "./media/characters/withers/front.svg",
  26763. extra: 1514 / 1438,
  26764. bottom: 118 / 1632
  26765. }
  26766. },
  26767. },
  26768. [
  26769. {
  26770. name: "Macro",
  26771. height: math.unit(168, "feet"),
  26772. default: true
  26773. },
  26774. {
  26775. name: "Megamacro",
  26776. height: math.unit(15, "miles")
  26777. }
  26778. ]
  26779. ))
  26780. characterMakers.push(() => makeCharacter(
  26781. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26782. {
  26783. front: {
  26784. height: math.unit(6 + 7 / 12, "feet"),
  26785. weight: math.unit(250, "lb"),
  26786. name: "Front",
  26787. image: {
  26788. source: "./media/characters/nemoskii/front.svg",
  26789. extra: 2270 / 1734,
  26790. bottom: 86 / 2354
  26791. }
  26792. },
  26793. back: {
  26794. height: math.unit(6 + 7 / 12, "feet"),
  26795. weight: math.unit(250, "lb"),
  26796. name: "Back",
  26797. image: {
  26798. source: "./media/characters/nemoskii/back.svg",
  26799. extra: 1845 / 1788,
  26800. bottom: 10.5 / 1852
  26801. }
  26802. },
  26803. head: {
  26804. height: math.unit(1.31, "feet"),
  26805. name: "Head",
  26806. image: {
  26807. source: "./media/characters/nemoskii/head.svg"
  26808. }
  26809. },
  26810. },
  26811. [
  26812. {
  26813. name: "Normal",
  26814. height: math.unit(6 + 7 / 12, "feet"),
  26815. default: true
  26816. },
  26817. ]
  26818. ))
  26819. characterMakers.push(() => makeCharacter(
  26820. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  26821. {
  26822. front: {
  26823. height: math.unit(1, "mile"),
  26824. weight: math.unit(265261.9, "lb"),
  26825. name: "Front",
  26826. image: {
  26827. source: "./media/characters/shui/front.svg",
  26828. extra: 1633 / 1564,
  26829. bottom: 91.5 / 1726
  26830. }
  26831. },
  26832. },
  26833. [
  26834. {
  26835. name: "Macro",
  26836. height: math.unit(1, "mile"),
  26837. default: true
  26838. },
  26839. ]
  26840. ))
  26841. characterMakers.push(() => makeCharacter(
  26842. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  26843. {
  26844. front: {
  26845. height: math.unit(12 + 6 / 12, "feet"),
  26846. weight: math.unit(1342, "lb"),
  26847. name: "Front",
  26848. image: {
  26849. source: "./media/characters/arokh-takakura/front.svg",
  26850. extra: 1089 / 1043,
  26851. bottom: 77.4 / 1176.7
  26852. }
  26853. },
  26854. back: {
  26855. height: math.unit(12 + 6 / 12, "feet"),
  26856. weight: math.unit(1342, "lb"),
  26857. name: "Back",
  26858. image: {
  26859. source: "./media/characters/arokh-takakura/back.svg",
  26860. extra: 1046 / 1019,
  26861. bottom: 102 / 1150
  26862. }
  26863. },
  26864. },
  26865. [
  26866. {
  26867. name: "Big",
  26868. height: math.unit(12 + 6 / 12, "feet"),
  26869. default: true
  26870. },
  26871. ]
  26872. ))
  26873. characterMakers.push(() => makeCharacter(
  26874. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  26875. {
  26876. front: {
  26877. height: math.unit(5 + 6 / 12, "feet"),
  26878. weight: math.unit(150, "lb"),
  26879. name: "Front",
  26880. image: {
  26881. source: "./media/characters/theo/front.svg",
  26882. extra: 1184 / 1131,
  26883. bottom: 7.4 / 1191
  26884. }
  26885. },
  26886. },
  26887. [
  26888. {
  26889. name: "Micro",
  26890. height: math.unit(5, "inches")
  26891. },
  26892. {
  26893. name: "Normal",
  26894. height: math.unit(5 + 6 / 12, "feet"),
  26895. default: true
  26896. },
  26897. ]
  26898. ))
  26899. characterMakers.push(() => makeCharacter(
  26900. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  26901. {
  26902. front: {
  26903. height: math.unit(5 + 9 / 12, "feet"),
  26904. weight: math.unit(130, "lb"),
  26905. name: "Front",
  26906. image: {
  26907. source: "./media/characters/cecelia-swift/front.svg",
  26908. extra: 502 / 484,
  26909. bottom: 23 / 523
  26910. }
  26911. },
  26912. back: {
  26913. height: math.unit(5 + 9 / 12, "feet"),
  26914. weight: math.unit(130, "lb"),
  26915. name: "Back",
  26916. image: {
  26917. source: "./media/characters/cecelia-swift/back.svg",
  26918. extra: 499 / 485,
  26919. bottom: 12 / 511
  26920. }
  26921. },
  26922. head: {
  26923. height: math.unit(0.90, "feet"),
  26924. name: "Head",
  26925. image: {
  26926. source: "./media/characters/cecelia-swift/head.svg"
  26927. }
  26928. },
  26929. rump: {
  26930. height: math.unit(1.75, "feet"),
  26931. name: "Rump",
  26932. image: {
  26933. source: "./media/characters/cecelia-swift/rump.svg"
  26934. }
  26935. },
  26936. },
  26937. [
  26938. {
  26939. name: "Normal",
  26940. height: math.unit(5 + 9 / 12, "feet"),
  26941. default: true
  26942. },
  26943. {
  26944. name: "Big",
  26945. height: math.unit(50, "feet")
  26946. },
  26947. {
  26948. name: "Macro",
  26949. height: math.unit(100, "feet")
  26950. },
  26951. {
  26952. name: "Macro+",
  26953. height: math.unit(500, "feet")
  26954. },
  26955. {
  26956. name: "Macro++",
  26957. height: math.unit(1000, "feet")
  26958. },
  26959. ]
  26960. ))
  26961. characterMakers.push(() => makeCharacter(
  26962. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  26963. {
  26964. front: {
  26965. height: math.unit(6, "feet"),
  26966. weight: math.unit(150, "lb"),
  26967. name: "Front",
  26968. image: {
  26969. source: "./media/characters/kaunan/front.svg",
  26970. extra: 2890 / 2523,
  26971. bottom: 49 / 2939
  26972. }
  26973. },
  26974. },
  26975. [
  26976. {
  26977. name: "Macro",
  26978. height: math.unit(150, "feet"),
  26979. default: true
  26980. },
  26981. ]
  26982. ))
  26983. characterMakers.push(() => makeCharacter(
  26984. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  26985. {
  26986. front: {
  26987. height: math.unit(175, "cm"),
  26988. weight: math.unit(60, "kg"),
  26989. name: "Front",
  26990. image: {
  26991. source: "./media/characters/fei/front.svg",
  26992. extra: 2581 / 2400,
  26993. bottom: 82.2 / 2663
  26994. }
  26995. },
  26996. },
  26997. [
  26998. {
  26999. name: "Mortal",
  27000. height: math.unit(175, "cm")
  27001. },
  27002. {
  27003. name: "Normal",
  27004. height: math.unit(3500, "m"),
  27005. default: true
  27006. },
  27007. {
  27008. name: "Stroll",
  27009. height: math.unit(17.5, "km")
  27010. },
  27011. {
  27012. name: "Showoff",
  27013. height: math.unit(175, "km")
  27014. },
  27015. ]
  27016. ))
  27017. characterMakers.push(() => makeCharacter(
  27018. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27019. {
  27020. front: {
  27021. height: math.unit(7, "feet"),
  27022. weight: math.unit(1000, "kg"),
  27023. name: "Front",
  27024. image: {
  27025. source: "./media/characters/edrax/front.svg",
  27026. extra: 2838 / 2550,
  27027. bottom: 130 / 2968
  27028. }
  27029. },
  27030. },
  27031. [
  27032. {
  27033. name: "Small",
  27034. height: math.unit(7, "feet")
  27035. },
  27036. {
  27037. name: "Normal",
  27038. height: math.unit(1500, "meters")
  27039. },
  27040. {
  27041. name: "Mega",
  27042. height: math.unit(12000000, "km"),
  27043. default: true
  27044. },
  27045. {
  27046. name: "Megamacro",
  27047. height: math.unit(10600000, "lightyears")
  27048. },
  27049. {
  27050. name: "Hypermacro",
  27051. height: math.unit(256, "yottameters")
  27052. },
  27053. ]
  27054. ))
  27055. characterMakers.push(() => makeCharacter(
  27056. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27057. {
  27058. front: {
  27059. height: math.unit(10, "feet"),
  27060. weight: math.unit(750, "lb"),
  27061. name: "Front",
  27062. image: {
  27063. source: "./media/characters/clove/front.svg",
  27064. extra: 2031 / 1860,
  27065. bottom: 47.8 / 2080
  27066. }
  27067. },
  27068. back: {
  27069. height: math.unit(10, "feet"),
  27070. weight: math.unit(750, "lb"),
  27071. name: "Back",
  27072. image: {
  27073. source: "./media/characters/clove/back.svg",
  27074. extra: 2025 / 1859,
  27075. bottom: 46 / 2071
  27076. }
  27077. },
  27078. },
  27079. [
  27080. {
  27081. name: "Normal",
  27082. height: math.unit(10, "feet")
  27083. },
  27084. ]
  27085. ))
  27086. characterMakers.push(() => makeCharacter(
  27087. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27088. {
  27089. front: {
  27090. height: math.unit(4, "feet"),
  27091. weight: math.unit(50, "lb"),
  27092. name: "Front",
  27093. image: {
  27094. source: "./media/characters/alex-rabbit/front.svg",
  27095. extra: 507 / 458,
  27096. bottom: 18.5 / 527
  27097. }
  27098. },
  27099. back: {
  27100. height: math.unit(4, "feet"),
  27101. weight: math.unit(50, "lb"),
  27102. name: "Back",
  27103. image: {
  27104. source: "./media/characters/alex-rabbit/back.svg",
  27105. extra: 502 / 460,
  27106. bottom: 18.9 / 521
  27107. }
  27108. },
  27109. },
  27110. [
  27111. {
  27112. name: "Normal",
  27113. height: math.unit(4, "feet"),
  27114. default: true
  27115. },
  27116. ]
  27117. ))
  27118. characterMakers.push(() => makeCharacter(
  27119. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27120. {
  27121. front: {
  27122. height: math.unit(1 + 3 / 12, "feet"),
  27123. weight: math.unit(80, "lb"),
  27124. name: "Front",
  27125. image: {
  27126. source: "./media/characters/zander-rose/front.svg",
  27127. extra: 916 / 797,
  27128. bottom: 17 / 933
  27129. }
  27130. },
  27131. back: {
  27132. height: math.unit(1 + 3 / 12, "feet"),
  27133. weight: math.unit(80, "lb"),
  27134. name: "Back",
  27135. image: {
  27136. source: "./media/characters/zander-rose/back.svg",
  27137. extra: 903 / 779,
  27138. bottom: 31 / 934
  27139. }
  27140. },
  27141. },
  27142. [
  27143. {
  27144. name: "Normal",
  27145. height: math.unit(1 + 3 / 12, "feet"),
  27146. default: true
  27147. },
  27148. ]
  27149. ))
  27150. characterMakers.push(() => makeCharacter(
  27151. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27152. {
  27153. anthro: {
  27154. height: math.unit(6, "feet"),
  27155. weight: math.unit(150, "lb"),
  27156. name: "Anthro",
  27157. image: {
  27158. source: "./media/characters/razz/anthro.svg",
  27159. extra: 1437 / 1343,
  27160. bottom: 48 / 1485
  27161. }
  27162. },
  27163. feral: {
  27164. height: math.unit(6, "feet"),
  27165. weight: math.unit(150, "lb"),
  27166. name: "Feral",
  27167. image: {
  27168. source: "./media/characters/razz/feral.svg",
  27169. extra: 2569 / 1385,
  27170. bottom: 95 / 2664
  27171. }
  27172. },
  27173. },
  27174. [
  27175. {
  27176. name: "Normal",
  27177. height: math.unit(6, "feet"),
  27178. default: true
  27179. },
  27180. ]
  27181. ))
  27182. characterMakers.push(() => makeCharacter(
  27183. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27184. {
  27185. front: {
  27186. height: math.unit(9 + 4 / 12, "feet"),
  27187. weight: math.unit(500, "lb"),
  27188. name: "Front",
  27189. image: {
  27190. source: "./media/characters/morrigan/front.svg",
  27191. extra: 2707 / 2579,
  27192. bottom: 156 / 2863
  27193. }
  27194. },
  27195. },
  27196. [
  27197. {
  27198. name: "Normal",
  27199. height: math.unit(9 + 4 / 12, "feet"),
  27200. default: true
  27201. },
  27202. ]
  27203. ))
  27204. characterMakers.push(() => makeCharacter(
  27205. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27206. {
  27207. front: {
  27208. height: math.unit(5, "stories"),
  27209. weight: math.unit(4000, "lb"),
  27210. name: "Front",
  27211. image: {
  27212. source: "./media/characters/jenene/front.svg",
  27213. extra: 1780 / 1710,
  27214. bottom: 57 / 1837
  27215. }
  27216. },
  27217. },
  27218. [
  27219. {
  27220. name: "Normal",
  27221. height: math.unit(5, "stories"),
  27222. default: true
  27223. },
  27224. ]
  27225. ))
  27226. characterMakers.push(() => makeCharacter(
  27227. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27228. {
  27229. front: {
  27230. height: math.unit(6, "feet"),
  27231. weight: math.unit(150, "lb"),
  27232. name: "Front",
  27233. image: {
  27234. source: "./media/characters/vix-archaser/front.svg",
  27235. extra: 2767 / 2562,
  27236. bottom: 36 / 2803
  27237. }
  27238. },
  27239. },
  27240. [
  27241. {
  27242. name: "Micro",
  27243. height: math.unit(1, "foot")
  27244. },
  27245. {
  27246. name: "Normal",
  27247. height: math.unit(6 + 5 / 12, "feet")
  27248. },
  27249. {
  27250. name: "Minimacro",
  27251. height: math.unit(500, "feet")
  27252. },
  27253. {
  27254. name: "Macro",
  27255. height: math.unit(4, "miles")
  27256. },
  27257. {
  27258. name: "Megamacro",
  27259. height: math.unit(250, "miles"),
  27260. default: true
  27261. },
  27262. {
  27263. name: "Gigamacro",
  27264. height: math.unit(1, "universe")
  27265. },
  27266. {
  27267. name: "Endgame",
  27268. height: math.unit(100, "multiverses")
  27269. }
  27270. ]
  27271. ))
  27272. characterMakers.push(() => makeCharacter(
  27273. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27274. {
  27275. taurSfw: {
  27276. height: math.unit(10, "meters"),
  27277. weight: math.unit(17500, "kg"),
  27278. name: "Taur",
  27279. image: {
  27280. source: "./media/characters/faey/taur-sfw.svg",
  27281. extra: 1200 / 968,
  27282. bottom: 41 / 1241
  27283. }
  27284. },
  27285. chestmaw: {
  27286. height: math.unit(2.01, "meters"),
  27287. name: "Chestmaw",
  27288. image: {
  27289. source: "./media/characters/faey/chestmaw.svg"
  27290. }
  27291. },
  27292. foot: {
  27293. height: math.unit(2.43, "meters"),
  27294. name: "Foot",
  27295. image: {
  27296. source: "./media/characters/faey/foot.svg"
  27297. }
  27298. },
  27299. jaws: {
  27300. height: math.unit(1.66, "meters"),
  27301. name: "Jaws",
  27302. image: {
  27303. source: "./media/characters/faey/jaws.svg"
  27304. }
  27305. },
  27306. tongues: {
  27307. height: math.unit(2.01, "meters"),
  27308. name: "Tongues",
  27309. image: {
  27310. source: "./media/characters/faey/tongues.svg"
  27311. }
  27312. },
  27313. },
  27314. [
  27315. {
  27316. name: "Small",
  27317. height: math.unit(10, "meters"),
  27318. default: true
  27319. },
  27320. {
  27321. name: "Big",
  27322. height: math.unit(500000, "km")
  27323. },
  27324. ]
  27325. ))
  27326. characterMakers.push(() => makeCharacter(
  27327. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27328. {
  27329. front: {
  27330. height: math.unit(7, "feet"),
  27331. weight: math.unit(275, "lb"),
  27332. name: "Front",
  27333. image: {
  27334. source: "./media/characters/roku/front.svg",
  27335. extra: 903 / 878,
  27336. bottom: 37 / 940
  27337. }
  27338. },
  27339. },
  27340. [
  27341. {
  27342. name: "Normal",
  27343. height: math.unit(7, "feet"),
  27344. default: true
  27345. },
  27346. {
  27347. name: "Macro",
  27348. height: math.unit(500, "feet")
  27349. },
  27350. {
  27351. name: "Megamacro",
  27352. height: math.unit(200, "miles")
  27353. },
  27354. ]
  27355. ))
  27356. characterMakers.push(() => makeCharacter(
  27357. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27358. {
  27359. front: {
  27360. height: math.unit(6 + 2 / 12, "feet"),
  27361. weight: math.unit(150, "lb"),
  27362. name: "Front",
  27363. image: {
  27364. source: "./media/characters/lira/front.svg",
  27365. extra: 1727 / 1605,
  27366. bottom: 26 / 1753
  27367. }
  27368. },
  27369. back: {
  27370. height: math.unit(6 + 2 / 12, "feet"),
  27371. weight: math.unit(150, "lb"),
  27372. name: "Back",
  27373. image: {
  27374. source: "./media/characters/lira/back.svg",
  27375. extra: 1713 / 159,
  27376. bottom: 20 / 1733
  27377. }
  27378. },
  27379. hand: {
  27380. height: math.unit(0.75, "feet"),
  27381. name: "Hand",
  27382. image: {
  27383. source: "./media/characters/lira/hand.svg"
  27384. }
  27385. },
  27386. maw: {
  27387. height: math.unit(0.65, "feet"),
  27388. name: "Maw",
  27389. image: {
  27390. source: "./media/characters/lira/maw.svg"
  27391. }
  27392. },
  27393. pawDigi: {
  27394. height: math.unit(1.6, "feet"),
  27395. name: "Paw Digi",
  27396. image: {
  27397. source: "./media/characters/lira/paw-digi.svg"
  27398. }
  27399. },
  27400. pawPlanti: {
  27401. height: math.unit(1.4, "feet"),
  27402. name: "Paw Planti",
  27403. image: {
  27404. source: "./media/characters/lira/paw-planti.svg"
  27405. }
  27406. },
  27407. },
  27408. [
  27409. {
  27410. name: "Normal",
  27411. height: math.unit(6 + 2 / 12, "feet"),
  27412. default: true
  27413. },
  27414. {
  27415. name: "Macro",
  27416. height: math.unit(100, "feet")
  27417. },
  27418. {
  27419. name: "Macro²",
  27420. height: math.unit(1600, "feet")
  27421. },
  27422. {
  27423. name: "Planetary",
  27424. height: math.unit(20, "earths")
  27425. },
  27426. ]
  27427. ))
  27428. characterMakers.push(() => makeCharacter(
  27429. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27430. {
  27431. front: {
  27432. height: math.unit(6, "feet"),
  27433. weight: math.unit(150, "lb"),
  27434. name: "Front",
  27435. image: {
  27436. source: "./media/characters/hadjet/front.svg",
  27437. extra: 1480 / 1346,
  27438. bottom: 26 / 1506
  27439. }
  27440. },
  27441. frontNsfw: {
  27442. height: math.unit(6, "feet"),
  27443. weight: math.unit(150, "lb"),
  27444. name: "Front (NSFW)",
  27445. image: {
  27446. source: "./media/characters/hadjet/front-nsfw.svg",
  27447. extra: 1440 / 1358,
  27448. bottom: 52 / 1492
  27449. }
  27450. },
  27451. },
  27452. [
  27453. {
  27454. name: "Macro",
  27455. height: math.unit(10, "stories"),
  27456. default: true
  27457. },
  27458. {
  27459. name: "Megamacro",
  27460. height: math.unit(1.5, "miles")
  27461. },
  27462. {
  27463. name: "Megamacro+",
  27464. height: math.unit(5, "miles")
  27465. },
  27466. ]
  27467. ))
  27468. characterMakers.push(() => makeCharacter(
  27469. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27470. {
  27471. side: {
  27472. height: math.unit(106, "feet"),
  27473. weight: math.unit(500, "tonnes"),
  27474. name: "Side",
  27475. image: {
  27476. source: "./media/characters/kodran/side.svg",
  27477. extra: 553 / 480,
  27478. bottom: 33 / 586
  27479. }
  27480. },
  27481. front: {
  27482. height: math.unit(132, "feet"),
  27483. weight: math.unit(500, "tonnes"),
  27484. name: "Front",
  27485. image: {
  27486. source: "./media/characters/kodran/front.svg",
  27487. extra: 667 / 643,
  27488. bottom: 42 / 709
  27489. }
  27490. },
  27491. flying: {
  27492. height: math.unit(350, "feet"),
  27493. weight: math.unit(500, "tonnes"),
  27494. name: "Flying",
  27495. image: {
  27496. source: "./media/characters/kodran/flying.svg"
  27497. }
  27498. },
  27499. foot: {
  27500. height: math.unit(33, "feet"),
  27501. name: "Foot",
  27502. image: {
  27503. source: "./media/characters/kodran/foot.svg"
  27504. }
  27505. },
  27506. footFront: {
  27507. height: math.unit(19, "feet"),
  27508. name: "Foot (Front)",
  27509. image: {
  27510. source: "./media/characters/kodran/foot-front.svg",
  27511. extra: 261 / 261,
  27512. bottom: 91 / 352
  27513. }
  27514. },
  27515. headFront: {
  27516. height: math.unit(53, "feet"),
  27517. name: "Head (Front)",
  27518. image: {
  27519. source: "./media/characters/kodran/head-front.svg"
  27520. }
  27521. },
  27522. headSide: {
  27523. height: math.unit(65, "feet"),
  27524. name: "Head (Side)",
  27525. image: {
  27526. source: "./media/characters/kodran/head-side.svg"
  27527. }
  27528. },
  27529. throat: {
  27530. height: math.unit(79, "feet"),
  27531. name: "Throat",
  27532. image: {
  27533. source: "./media/characters/kodran/throat.svg"
  27534. }
  27535. },
  27536. },
  27537. [
  27538. {
  27539. name: "Large",
  27540. height: math.unit(106, "feet"),
  27541. default: true
  27542. },
  27543. ]
  27544. ))
  27545. characterMakers.push(() => makeCharacter(
  27546. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27547. {
  27548. side: {
  27549. height: math.unit(11, "feet"),
  27550. weight: math.unit(150, "lb"),
  27551. name: "Side",
  27552. image: {
  27553. source: "./media/characters/pyxaron/side.svg",
  27554. extra: 305 / 195,
  27555. bottom: 17 / 322
  27556. }
  27557. },
  27558. },
  27559. [
  27560. {
  27561. name: "Normal",
  27562. height: math.unit(11, "feet")
  27563. },
  27564. ]
  27565. ))
  27566. characterMakers.push(() => makeCharacter(
  27567. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27568. {
  27569. front: {
  27570. height: math.unit(6, "feet"),
  27571. weight: math.unit(150, "lb"),
  27572. name: "Front",
  27573. image: {
  27574. source: "./media/characters/meep/front.svg",
  27575. extra: 88 / 80,
  27576. bottom: 6 / 94
  27577. }
  27578. },
  27579. },
  27580. [
  27581. {
  27582. name: "Fun Sized",
  27583. height: math.unit(2, "inches"),
  27584. default: true
  27585. },
  27586. {
  27587. name: "Friend Sized",
  27588. height: math.unit(8, "inches")
  27589. },
  27590. ]
  27591. ))
  27592. characterMakers.push(() => makeCharacter(
  27593. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27594. {
  27595. front: {
  27596. height: math.unit(15, "feet"),
  27597. weight: math.unit(2500, "lb"),
  27598. name: "Front",
  27599. image: {
  27600. source: "./media/characters/holly-rabbit/front.svg",
  27601. extra: 1433 / 1233,
  27602. bottom: 125 / 1558
  27603. }
  27604. },
  27605. dick: {
  27606. height: math.unit(4.6, "feet"),
  27607. name: "Dick",
  27608. image: {
  27609. source: "./media/characters/holly-rabbit/dick.svg"
  27610. }
  27611. },
  27612. },
  27613. [
  27614. {
  27615. name: "Normal",
  27616. height: math.unit(15, "feet"),
  27617. default: true
  27618. },
  27619. {
  27620. name: "Macro",
  27621. height: math.unit(250, "feet")
  27622. },
  27623. {
  27624. name: "Macro+",
  27625. height: math.unit(2500, "feet")
  27626. },
  27627. ]
  27628. ))
  27629. characterMakers.push(() => makeCharacter(
  27630. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27631. {
  27632. front: {
  27633. height: math.unit(3.02, "meters"),
  27634. weight: math.unit(500, "kg"),
  27635. name: "Front",
  27636. image: {
  27637. source: "./media/characters/drena/front.svg",
  27638. extra: 282 / 243,
  27639. bottom: 8 / 290
  27640. }
  27641. },
  27642. side: {
  27643. height: math.unit(3.02, "meters"),
  27644. weight: math.unit(500, "kg"),
  27645. name: "Side",
  27646. image: {
  27647. source: "./media/characters/drena/side.svg",
  27648. extra: 280 / 245,
  27649. bottom: 10 / 290
  27650. }
  27651. },
  27652. back: {
  27653. height: math.unit(3.02, "meters"),
  27654. weight: math.unit(500, "kg"),
  27655. name: "Back",
  27656. image: {
  27657. source: "./media/characters/drena/back.svg",
  27658. extra: 278 / 243,
  27659. bottom: 2 / 280
  27660. }
  27661. },
  27662. foot: {
  27663. height: math.unit(0.75, "meters"),
  27664. name: "Foot",
  27665. image: {
  27666. source: "./media/characters/drena/foot.svg"
  27667. }
  27668. },
  27669. maw: {
  27670. height: math.unit(0.82, "meters"),
  27671. name: "Maw",
  27672. image: {
  27673. source: "./media/characters/drena/maw.svg"
  27674. }
  27675. },
  27676. rump: {
  27677. height: math.unit(0.93, "meters"),
  27678. name: "Rump",
  27679. image: {
  27680. source: "./media/characters/drena/rump.svg"
  27681. }
  27682. },
  27683. },
  27684. [
  27685. {
  27686. name: "Normal",
  27687. height: math.unit(3.02, "meters"),
  27688. default: true
  27689. },
  27690. ]
  27691. ))
  27692. characterMakers.push(() => makeCharacter(
  27693. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27694. {
  27695. front: {
  27696. height: math.unit(6 + 4 / 12, "feet"),
  27697. weight: math.unit(250, "lb"),
  27698. name: "Front",
  27699. image: {
  27700. source: "./media/characters/remmyzilla/front.svg",
  27701. extra: 4033 / 3588,
  27702. bottom: 123 / 4156
  27703. }
  27704. },
  27705. back: {
  27706. height: math.unit(6 + 4 / 12, "feet"),
  27707. weight: math.unit(250, "lb"),
  27708. name: "Back",
  27709. image: {
  27710. source: "./media/characters/remmyzilla/back.svg",
  27711. extra: 2687 / 2555,
  27712. bottom: 48 / 2735
  27713. }
  27714. },
  27715. frontFancy: {
  27716. height: math.unit(6 + 4 / 12, "feet"),
  27717. weight: math.unit(250, "lb"),
  27718. name: "Front (Fancy)",
  27719. image: {
  27720. source: "./media/characters/remmyzilla/front-fancy.svg",
  27721. extra: 4119 / 3419,
  27722. bottom: 237 / 4356
  27723. }
  27724. },
  27725. paw: {
  27726. height: math.unit(1.73, "feet"),
  27727. name: "Paw",
  27728. image: {
  27729. source: "./media/characters/remmyzilla/paw.svg"
  27730. }
  27731. },
  27732. maw: {
  27733. height: math.unit(1.73, "feet"),
  27734. name: "Maw",
  27735. image: {
  27736. source: "./media/characters/remmyzilla/maw.svg"
  27737. }
  27738. },
  27739. },
  27740. [
  27741. {
  27742. name: "Normal",
  27743. height: math.unit(6 + 4 / 12, "feet")
  27744. },
  27745. {
  27746. name: "Minimacro",
  27747. height: math.unit(12 + 8 / 12, "feet")
  27748. },
  27749. {
  27750. name: "Normal",
  27751. height: math.unit(640, "feet"),
  27752. default: true
  27753. },
  27754. {
  27755. name: "Megamacro",
  27756. height: math.unit(6400, "feet")
  27757. },
  27758. {
  27759. name: "Gigamacro",
  27760. height: math.unit(64000, "miles")
  27761. },
  27762. ]
  27763. ))
  27764. characterMakers.push(() => makeCharacter(
  27765. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  27766. {
  27767. front: {
  27768. height: math.unit(2.5, "meters"),
  27769. weight: math.unit(300, "lb"),
  27770. name: "Front",
  27771. image: {
  27772. source: "./media/characters/lawrence/front.svg",
  27773. extra: 357 / 335,
  27774. bottom: 30 / 387
  27775. }
  27776. },
  27777. back: {
  27778. height: math.unit(2.5, "meters"),
  27779. weight: math.unit(300, "lb"),
  27780. name: "Back",
  27781. image: {
  27782. source: "./media/characters/lawrence/back.svg",
  27783. extra: 357 / 338,
  27784. bottom: 16 / 373
  27785. }
  27786. },
  27787. head: {
  27788. height: math.unit(0.9, "meter"),
  27789. name: "Head",
  27790. image: {
  27791. source: "./media/characters/lawrence/head.svg"
  27792. }
  27793. },
  27794. maw: {
  27795. height: math.unit(0.7, "meter"),
  27796. name: "Maw",
  27797. image: {
  27798. source: "./media/characters/lawrence/maw.svg"
  27799. }
  27800. },
  27801. footBottom: {
  27802. height: math.unit(0.5, "meter"),
  27803. name: "Foot (Bottom)",
  27804. image: {
  27805. source: "./media/characters/lawrence/foot-bottom.svg"
  27806. }
  27807. },
  27808. footTop: {
  27809. height: math.unit(0.5, "meter"),
  27810. name: "Foot (Top)",
  27811. image: {
  27812. source: "./media/characters/lawrence/foot-top.svg"
  27813. }
  27814. },
  27815. },
  27816. [
  27817. {
  27818. name: "Normal",
  27819. height: math.unit(2.5, "meters"),
  27820. default: true
  27821. },
  27822. {
  27823. name: "Macro",
  27824. height: math.unit(95, "meters")
  27825. },
  27826. {
  27827. name: "Megamacro",
  27828. height: math.unit(150, "km")
  27829. },
  27830. ]
  27831. ))
  27832. characterMakers.push(() => makeCharacter(
  27833. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  27834. {
  27835. front: {
  27836. height: math.unit(4.2, "meters"),
  27837. name: "Front",
  27838. image: {
  27839. source: "./media/characters/sydney/front.svg",
  27840. extra: 1323 / 1277,
  27841. bottom: 111 / 1434
  27842. }
  27843. },
  27844. },
  27845. [
  27846. {
  27847. name: "Normal",
  27848. height: math.unit(4.2, "meters")
  27849. },
  27850. ]
  27851. ))
  27852. characterMakers.push(() => makeCharacter(
  27853. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  27854. {
  27855. back: {
  27856. height: math.unit(201, "feet"),
  27857. name: "Back",
  27858. image: {
  27859. source: "./media/characters/jessica/back.svg",
  27860. extra: 273 / 259,
  27861. bottom: 7 / 280
  27862. }
  27863. },
  27864. },
  27865. [
  27866. {
  27867. name: "Normal",
  27868. height: math.unit(201, "feet"),
  27869. default: true
  27870. },
  27871. {
  27872. name: "Megamacro",
  27873. height: math.unit(8, "miles")
  27874. },
  27875. ]
  27876. ))
  27877. characterMakers.push(() => makeCharacter(
  27878. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  27879. {
  27880. side: {
  27881. height: math.unit(320, "cm"),
  27882. name: "Side",
  27883. image: {
  27884. source: "./media/characters/victoria/side.svg",
  27885. extra: 778 / 346,
  27886. bottom: 56 / 834
  27887. }
  27888. },
  27889. maw: {
  27890. height: math.unit(5.9, "feet"),
  27891. name: "Maw",
  27892. image: {
  27893. source: "./media/characters/victoria/maw.svg"
  27894. }
  27895. },
  27896. },
  27897. [
  27898. {
  27899. name: "Normal",
  27900. height: math.unit(320, "cm"),
  27901. default: true
  27902. },
  27903. ]
  27904. ))
  27905. characterMakers.push(() => makeCharacter(
  27906. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  27907. {
  27908. front: {
  27909. height: math.unit(5 + 6 / 12, "feet"),
  27910. name: "Front",
  27911. image: {
  27912. source: "./media/characters/cat/front.svg",
  27913. extra: 1374 / 1257,
  27914. bottom: 59 / 1433
  27915. }
  27916. },
  27917. back: {
  27918. height: math.unit(5 + 6 / 12, "feet"),
  27919. name: "Back",
  27920. image: {
  27921. source: "./media/characters/cat/back.svg",
  27922. extra: 1337 / 1226,
  27923. bottom: 34 / 1371
  27924. }
  27925. },
  27926. taur: {
  27927. height: math.unit(7, "feet"),
  27928. name: "Taur",
  27929. image: {
  27930. source: "./media/characters/cat/taur.svg",
  27931. extra: 1345 / 1231,
  27932. bottom: 66 / 1411
  27933. }
  27934. },
  27935. lucario: {
  27936. height: math.unit(4, "feet"),
  27937. name: "Lucario",
  27938. image: {
  27939. source: "./media/characters/cat/lucario.svg",
  27940. extra: 1470 / 1318,
  27941. bottom: 65 / 1535
  27942. }
  27943. },
  27944. megaLucario: {
  27945. height: math.unit(4, "feet"),
  27946. name: "Mega Lucario",
  27947. image: {
  27948. source: "./media/characters/cat/mega-lucario.svg",
  27949. extra: 1515 / 1319,
  27950. bottom: 63 / 1578
  27951. }
  27952. },
  27953. nickit: {
  27954. height: math.unit(2, "feet"),
  27955. name: "Nickit",
  27956. image: {
  27957. source: "./media/characters/cat/nickit.svg",
  27958. extra: 1980 / 1585,
  27959. bottom: 102 / 2082
  27960. }
  27961. },
  27962. lopunnyFront: {
  27963. height: math.unit(5, "feet"),
  27964. name: "Lopunny (Front)",
  27965. image: {
  27966. source: "./media/characters/cat/lopunny-front.svg",
  27967. extra: 1782 / 1469,
  27968. bottom: 38 / 1820
  27969. }
  27970. },
  27971. lopunnyBack: {
  27972. height: math.unit(5, "feet"),
  27973. name: "Lopunny (Back)",
  27974. image: {
  27975. source: "./media/characters/cat/lopunny-back.svg",
  27976. extra: 1660 / 1490,
  27977. bottom: 25 / 1685
  27978. }
  27979. },
  27980. },
  27981. [
  27982. {
  27983. name: "Really small",
  27984. height: math.unit(1, "nm")
  27985. },
  27986. {
  27987. name: "Micro",
  27988. height: math.unit(5, "inches")
  27989. },
  27990. {
  27991. name: "Normal",
  27992. height: math.unit(5 + 6 / 12, "feet"),
  27993. default: true
  27994. },
  27995. {
  27996. name: "Macro",
  27997. height: math.unit(50, "feet")
  27998. },
  27999. {
  28000. name: "Macro+",
  28001. height: math.unit(150, "feet")
  28002. },
  28003. {
  28004. name: "Megamacro",
  28005. height: math.unit(100, "miles")
  28006. },
  28007. ]
  28008. ))
  28009. characterMakers.push(() => makeCharacter(
  28010. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28011. {
  28012. front: {
  28013. height: math.unit(63.4, "meters"),
  28014. weight: math.unit(3.28349e+6, "kilograms"),
  28015. name: "Front",
  28016. image: {
  28017. source: "./media/characters/kirina-violet/front.svg",
  28018. extra: 2812 / 2725,
  28019. bottom: 0 / 2812
  28020. }
  28021. },
  28022. back: {
  28023. height: math.unit(63.4, "meters"),
  28024. weight: math.unit(3.28349e+6, "kilograms"),
  28025. name: "Back",
  28026. image: {
  28027. source: "./media/characters/kirina-violet/back.svg",
  28028. extra: 2812 / 2725,
  28029. bottom: 0 / 2812
  28030. }
  28031. },
  28032. mouth: {
  28033. height: math.unit(4.35, "meters"),
  28034. name: "Mouth",
  28035. image: {
  28036. source: "./media/characters/kirina-violet/mouth.svg"
  28037. }
  28038. },
  28039. paw: {
  28040. height: math.unit(5.6, "meters"),
  28041. name: "Paw",
  28042. image: {
  28043. source: "./media/characters/kirina-violet/paw.svg"
  28044. }
  28045. },
  28046. tail: {
  28047. height: math.unit(18, "meters"),
  28048. name: "Tail",
  28049. image: {
  28050. source: "./media/characters/kirina-violet/tail.svg"
  28051. }
  28052. },
  28053. },
  28054. [
  28055. {
  28056. name: "Macro",
  28057. height: math.unit(63.4, "meters"),
  28058. default: true
  28059. },
  28060. ]
  28061. ))
  28062. characterMakers.push(() => makeCharacter(
  28063. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28064. {
  28065. front: {
  28066. height: math.unit(60, "feet"),
  28067. name: "Front",
  28068. image: {
  28069. source: "./media/characters/cat-gigachu/front.svg",
  28070. extra: 1024 / 780,
  28071. bottom: 23 / 1047
  28072. }
  28073. },
  28074. back: {
  28075. height: math.unit(60, "feet"),
  28076. name: "Back",
  28077. image: {
  28078. source: "./media/characters/cat-gigachu/back.svg",
  28079. extra: 1024 / 780,
  28080. bottom: 23 / 1047
  28081. }
  28082. },
  28083. },
  28084. [
  28085. {
  28086. name: "Dynamax",
  28087. height: math.unit(60, "feet"),
  28088. default: true
  28089. },
  28090. ]
  28091. ))
  28092. characterMakers.push(() => makeCharacter(
  28093. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28094. {
  28095. front: {
  28096. height: math.unit(6, "feet"),
  28097. weight: math.unit(150, "lb"),
  28098. name: "Front",
  28099. image: {
  28100. source: "./media/characters/sfaiyan/front.svg",
  28101. extra: 999 / 978,
  28102. bottom: 5 / 1004
  28103. }
  28104. },
  28105. },
  28106. [
  28107. {
  28108. name: "Normal",
  28109. height: math.unit(1.82, "meters")
  28110. },
  28111. {
  28112. name: "Giant",
  28113. height: math.unit(2.27, "km"),
  28114. default: true
  28115. },
  28116. ]
  28117. ))
  28118. characterMakers.push(() => makeCharacter(
  28119. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28120. {
  28121. front: {
  28122. height: math.unit(179, "cm"),
  28123. weight: math.unit(100, "kg"),
  28124. name: "Front",
  28125. image: {
  28126. source: "./media/characters/raunehkeli/front.svg",
  28127. extra: 1934 / 1926,
  28128. bottom: 0 / 1934
  28129. }
  28130. },
  28131. },
  28132. [
  28133. {
  28134. name: "Normal",
  28135. height: math.unit(179, "cm")
  28136. },
  28137. {
  28138. name: "Maximum",
  28139. height: math.unit(575, "meters"),
  28140. default: true
  28141. },
  28142. ]
  28143. ))
  28144. characterMakers.push(() => makeCharacter(
  28145. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28146. {
  28147. front: {
  28148. height: math.unit(6, "feet"),
  28149. weight: math.unit(150, "lb"),
  28150. name: "Front",
  28151. image: {
  28152. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28153. extra: 2625 / 2518,
  28154. bottom: 60 / 2685
  28155. }
  28156. },
  28157. },
  28158. [
  28159. {
  28160. name: "Normal",
  28161. height: math.unit(6 + 2 / 12, "feet"),
  28162. default: true
  28163. },
  28164. {
  28165. name: "Macro",
  28166. height: math.unit(1180, "feet")
  28167. },
  28168. ]
  28169. ))
  28170. characterMakers.push(() => makeCharacter(
  28171. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28172. {
  28173. front: {
  28174. height: math.unit(5 + 6 / 12, "feet"),
  28175. weight: math.unit(108, "lb"),
  28176. name: "Front",
  28177. image: {
  28178. source: "./media/characters/lilith-zott/front.svg",
  28179. extra: 2510 / 2238,
  28180. bottom: 100 / 2610
  28181. }
  28182. },
  28183. frontDressed: {
  28184. height: math.unit(5 + 6 / 12, "feet"),
  28185. weight: math.unit(108, "lb"),
  28186. name: "Front (Dressed)",
  28187. image: {
  28188. source: "./media/characters/lilith-zott/front-dressed.svg",
  28189. extra: 2510 / 2238,
  28190. bottom: 100 / 2610
  28191. }
  28192. },
  28193. },
  28194. [
  28195. {
  28196. name: "Normal",
  28197. height: math.unit(5 + 6 / 12, "feet")
  28198. },
  28199. {
  28200. name: "Macro",
  28201. height: math.unit(200, "feet"),
  28202. default: true
  28203. },
  28204. {
  28205. name: "Macro+",
  28206. height: math.unit(1030, "feet")
  28207. },
  28208. ]
  28209. ))
  28210. characterMakers.push(() => makeCharacter(
  28211. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28212. {
  28213. front: {
  28214. height: math.unit(6, "feet"),
  28215. weight: math.unit(150, "lb"),
  28216. name: "Front",
  28217. image: {
  28218. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28219. extra: 2567 / 2435,
  28220. bottom: 39 / 2606
  28221. }
  28222. },
  28223. frontSuper: {
  28224. height: math.unit(6, "feet"),
  28225. name: "Front (Super)",
  28226. image: {
  28227. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28228. extra: 2567 / 2435,
  28229. bottom: 39 / 2606
  28230. }
  28231. },
  28232. },
  28233. [
  28234. {
  28235. name: "Normal",
  28236. height: math.unit(5 + 10 / 12, "feet")
  28237. },
  28238. {
  28239. name: "Macro",
  28240. height: math.unit(220, "feet"),
  28241. default: true
  28242. },
  28243. {
  28244. name: "Macro+",
  28245. height: math.unit(1100, "feet")
  28246. },
  28247. ]
  28248. ))
  28249. characterMakers.push(() => makeCharacter(
  28250. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28251. {
  28252. front: {
  28253. height: math.unit(100, "miles"),
  28254. name: "Front",
  28255. image: {
  28256. source: "./media/characters/sona/front.svg",
  28257. extra: 2433 / 2201,
  28258. bottom: 53 / 2486
  28259. }
  28260. },
  28261. foot: {
  28262. height: math.unit(16.1, "miles"),
  28263. name: "Foot",
  28264. image: {
  28265. source: "./media/characters/sona/foot.svg"
  28266. }
  28267. },
  28268. },
  28269. [
  28270. {
  28271. name: "Macro",
  28272. height: math.unit(100, "miles"),
  28273. default: true
  28274. },
  28275. ]
  28276. ))
  28277. characterMakers.push(() => makeCharacter(
  28278. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28279. {
  28280. front: {
  28281. height: math.unit(6, "feet"),
  28282. weight: math.unit(150, "lb"),
  28283. name: "Front",
  28284. image: {
  28285. source: "./media/characters/bailey/front.svg",
  28286. extra: 1778 / 1724,
  28287. bottom: 30 / 1808
  28288. }
  28289. },
  28290. },
  28291. [
  28292. {
  28293. name: "Micro",
  28294. height: math.unit(4, "inches")
  28295. },
  28296. {
  28297. name: "Normal",
  28298. height: math.unit(5 + 5 / 12, "feet"),
  28299. default: true
  28300. },
  28301. {
  28302. name: "Macro",
  28303. height: math.unit(250, "feet")
  28304. },
  28305. {
  28306. name: "Megamacro",
  28307. height: math.unit(100, "miles")
  28308. },
  28309. ]
  28310. ))
  28311. characterMakers.push(() => makeCharacter(
  28312. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28313. {
  28314. front: {
  28315. height: math.unit(5 + 2 / 12, "feet"),
  28316. weight: math.unit(120, "lb"),
  28317. name: "Front",
  28318. image: {
  28319. source: "./media/characters/snaps/front.svg",
  28320. extra: 2370 / 2177,
  28321. bottom: 48 / 2418
  28322. }
  28323. },
  28324. back: {
  28325. height: math.unit(5 + 2 / 12, "feet"),
  28326. weight: math.unit(120, "lb"),
  28327. name: "Back",
  28328. image: {
  28329. source: "./media/characters/snaps/back.svg",
  28330. extra: 2408 / 2258,
  28331. bottom: 15 / 2423
  28332. }
  28333. },
  28334. },
  28335. [
  28336. {
  28337. name: "Micro",
  28338. height: math.unit(9, "inches")
  28339. },
  28340. {
  28341. name: "Normal",
  28342. height: math.unit(5 + 2 / 12, "feet"),
  28343. default: true
  28344. },
  28345. {
  28346. name: "Mini Macro",
  28347. height: math.unit(10, "feet")
  28348. },
  28349. ]
  28350. ))
  28351. characterMakers.push(() => makeCharacter(
  28352. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28353. {
  28354. front: {
  28355. height: math.unit(1.8, "meters"),
  28356. weight: math.unit(85, "kg"),
  28357. name: "Front",
  28358. image: {
  28359. source: "./media/characters/azteck/front.svg",
  28360. extra: 2815 / 2625,
  28361. bottom: 89 / 2904
  28362. }
  28363. },
  28364. back: {
  28365. height: math.unit(1.8, "meters"),
  28366. weight: math.unit(85, "kg"),
  28367. name: "Back",
  28368. image: {
  28369. source: "./media/characters/azteck/back.svg",
  28370. extra: 2856 / 2648,
  28371. bottom: 85 / 2941
  28372. }
  28373. },
  28374. frontDressed: {
  28375. height: math.unit(1.8, "meters"),
  28376. weight: math.unit(85, "kg"),
  28377. name: "Front (Dressed)",
  28378. image: {
  28379. source: "./media/characters/azteck/front-dressed.svg",
  28380. extra: 2147 / 2003,
  28381. bottom: 68 / 2215
  28382. }
  28383. },
  28384. head: {
  28385. height: math.unit(0.47, "meters"),
  28386. weight: math.unit(85, "kg"),
  28387. name: "Head",
  28388. image: {
  28389. source: "./media/characters/azteck/head.svg"
  28390. }
  28391. },
  28392. },
  28393. [
  28394. {
  28395. name: "Bite sized",
  28396. height: math.unit(16, "cm")
  28397. },
  28398. {
  28399. name: "Normal",
  28400. height: math.unit(1.8, "meters"),
  28401. default: true
  28402. },
  28403. ]
  28404. ))
  28405. characterMakers.push(() => makeCharacter(
  28406. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28407. {
  28408. front: {
  28409. height: math.unit(6, "feet"),
  28410. weight: math.unit(150, "lb"),
  28411. name: "Front",
  28412. image: {
  28413. source: "./media/characters/pidge/front.svg",
  28414. extra: 620 / 588,
  28415. bottom: 9 / 629
  28416. }
  28417. },
  28418. back: {
  28419. height: math.unit(6, "feet"),
  28420. weight: math.unit(150, "lb"),
  28421. name: "Back",
  28422. image: {
  28423. source: "./media/characters/pidge/back.svg",
  28424. extra: 620 / 588,
  28425. bottom: 9 / 629
  28426. }
  28427. },
  28428. },
  28429. [
  28430. {
  28431. name: "Macro",
  28432. height: math.unit(1, "mile"),
  28433. default: true
  28434. },
  28435. ]
  28436. ))
  28437. characterMakers.push(() => makeCharacter(
  28438. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28439. {
  28440. front: {
  28441. height: math.unit(6, "feet"),
  28442. weight: math.unit(150, "lb"),
  28443. name: "Front",
  28444. image: {
  28445. source: "./media/characters/en/front.svg",
  28446. extra: 1697 / 1563,
  28447. bottom: 103 / 1800
  28448. }
  28449. },
  28450. back: {
  28451. height: math.unit(6, "feet"),
  28452. weight: math.unit(150, "lb"),
  28453. name: "Back",
  28454. image: {
  28455. source: "./media/characters/en/back.svg",
  28456. extra: 1700 / 1570,
  28457. bottom: 51 / 1751
  28458. }
  28459. },
  28460. frontDressed: {
  28461. height: math.unit(6, "feet"),
  28462. weight: math.unit(150, "lb"),
  28463. name: "Front (Dressed)",
  28464. image: {
  28465. source: "./media/characters/en/front-dressed.svg",
  28466. extra: 1697 / 1563,
  28467. bottom: 103 / 1800
  28468. }
  28469. },
  28470. backDressed: {
  28471. height: math.unit(6, "feet"),
  28472. weight: math.unit(150, "lb"),
  28473. name: "Back (Dressed)",
  28474. image: {
  28475. source: "./media/characters/en/back-dressed.svg",
  28476. extra: 1700 / 1570,
  28477. bottom: 51 / 1751
  28478. }
  28479. },
  28480. },
  28481. [
  28482. {
  28483. name: "Macro",
  28484. height: math.unit(210, "feet"),
  28485. default: true
  28486. },
  28487. ]
  28488. ))
  28489. characterMakers.push(() => makeCharacter(
  28490. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28491. {
  28492. front: {
  28493. height: math.unit(6, "feet"),
  28494. weight: math.unit(150, "lb"),
  28495. name: "Front",
  28496. image: {
  28497. source: "./media/characters/haze-orris/front.svg",
  28498. extra: 3975 / 3525,
  28499. bottom: 137 / 4112
  28500. }
  28501. },
  28502. },
  28503. [
  28504. {
  28505. name: "Micro",
  28506. height: math.unit(150, "mm"),
  28507. default: true
  28508. },
  28509. ]
  28510. ))
  28511. characterMakers.push(() => makeCharacter(
  28512. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28513. {
  28514. front: {
  28515. height: math.unit(6, "feet"),
  28516. weight: math.unit(150, "lb"),
  28517. name: "Front",
  28518. image: {
  28519. source: "./media/characters/casselene-yaro/front.svg",
  28520. extra: 4721 / 4541,
  28521. bottom: 82 / 4803
  28522. }
  28523. },
  28524. back: {
  28525. height: math.unit(6, "feet"),
  28526. weight: math.unit(150, "lb"),
  28527. name: "Back",
  28528. image: {
  28529. source: "./media/characters/casselene-yaro/back.svg",
  28530. extra: 4569 / 4377,
  28531. bottom: 69 / 4638
  28532. }
  28533. },
  28534. frontDressed: {
  28535. height: math.unit(6, "feet"),
  28536. weight: math.unit(150, "lb"),
  28537. name: "Front-dressed",
  28538. image: {
  28539. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28540. extra: 4721 / 4541,
  28541. bottom: 82 / 4803
  28542. }
  28543. },
  28544. },
  28545. [
  28546. {
  28547. name: "Macro",
  28548. height: math.unit(190, "feet")
  28549. },
  28550. ]
  28551. ))
  28552. characterMakers.push(() => makeCharacter(
  28553. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28554. {
  28555. front: {
  28556. height: math.unit(6, "feet"),
  28557. weight: math.unit(150, "lb"),
  28558. name: "Front",
  28559. image: {
  28560. source: "./media/characters/myra-rue-delore/front.svg",
  28561. extra: 1340 / 1308,
  28562. bottom: 67 / 1407
  28563. }
  28564. },
  28565. back: {
  28566. height: math.unit(6, "feet"),
  28567. weight: math.unit(150, "lb"),
  28568. name: "Back",
  28569. image: {
  28570. source: "./media/characters/myra-rue-delore/back.svg",
  28571. extra: 1341 / 1310,
  28572. bottom: 40 / 1381
  28573. }
  28574. },
  28575. frontDressed: {
  28576. height: math.unit(6, "feet"),
  28577. weight: math.unit(150, "lb"),
  28578. name: "Front (Dressed)",
  28579. image: {
  28580. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28581. extra: 1340 / 1308,
  28582. bottom: 67 / 1407
  28583. }
  28584. },
  28585. },
  28586. [
  28587. {
  28588. name: "Macro",
  28589. height: math.unit(150, "feet")
  28590. },
  28591. ]
  28592. ))
  28593. characterMakers.push(() => makeCharacter(
  28594. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28595. {
  28596. front: {
  28597. height: math.unit(10, "feet"),
  28598. weight: math.unit(15015, "lb"),
  28599. name: "Front",
  28600. image: {
  28601. source: "./media/characters/fem!plat/front.svg",
  28602. extra: 2799 / 2604,
  28603. bottom: 149 / 2948
  28604. }
  28605. },
  28606. },
  28607. [
  28608. {
  28609. name: "Normal",
  28610. height: math.unit(10, "feet"),
  28611. default: true
  28612. },
  28613. {
  28614. name: "Macro",
  28615. height: math.unit(100, "feet")
  28616. },
  28617. {
  28618. name: "Megamacro",
  28619. height: math.unit(1000, "feet")
  28620. },
  28621. ]
  28622. ))
  28623. characterMakers.push(() => makeCharacter(
  28624. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28625. {
  28626. front: {
  28627. height: math.unit(15 + 5 / 12, "feet"),
  28628. weight: math.unit(4600, "lb"),
  28629. name: "Front",
  28630. image: {
  28631. source: "./media/characters/neapolitan-ananassa/front.svg",
  28632. extra: 2903 / 2736,
  28633. bottom: 0 / 2903
  28634. }
  28635. },
  28636. side: {
  28637. height: math.unit(15 + 5 / 12, "feet"),
  28638. weight: math.unit(4600, "lb"),
  28639. name: "Side",
  28640. image: {
  28641. source: "./media/characters/neapolitan-ananassa/side.svg",
  28642. extra: 2925 / 2719,
  28643. bottom: 0 / 2925
  28644. }
  28645. },
  28646. back: {
  28647. height: math.unit(15 + 5 / 12, "feet"),
  28648. weight: math.unit(4600, "lb"),
  28649. name: "Back",
  28650. image: {
  28651. source: "./media/characters/neapolitan-ananassa/back.svg",
  28652. extra: 2903 / 2736,
  28653. bottom: 0 / 2903
  28654. }
  28655. },
  28656. },
  28657. [
  28658. {
  28659. name: "Normal",
  28660. height: math.unit(15 + 5 / 12, "feet"),
  28661. default: true
  28662. },
  28663. {
  28664. name: "Post-Millenium",
  28665. height: math.unit(35 + 5 / 12, "feet")
  28666. },
  28667. {
  28668. name: "Post-Era",
  28669. height: math.unit(450 + 5 / 12, "feet")
  28670. },
  28671. ]
  28672. ))
  28673. characterMakers.push(() => makeCharacter(
  28674. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28675. {
  28676. front: {
  28677. height: math.unit(300, "meters"),
  28678. weight: math.unit(125000, "tonnes"),
  28679. name: "Front",
  28680. image: {
  28681. source: "./media/characters/pazuzu/front.svg",
  28682. extra: 877 / 794,
  28683. bottom: 47 / 924
  28684. }
  28685. },
  28686. },
  28687. [
  28688. {
  28689. name: "Macro",
  28690. height: math.unit(300, "meters"),
  28691. default: true
  28692. },
  28693. ]
  28694. ))
  28695. characterMakers.push(() => makeCharacter(
  28696. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28697. {
  28698. side: {
  28699. height: math.unit(10 + 7 / 12, "feet"),
  28700. weight: math.unit(2.5, "tons"),
  28701. name: "Side",
  28702. image: {
  28703. source: "./media/characters/aasha/side.svg",
  28704. extra: 1345 / 1245,
  28705. bottom: 111 / 1456
  28706. }
  28707. },
  28708. back: {
  28709. height: math.unit(10 + 7 / 12, "feet"),
  28710. weight: math.unit(2.5, "tons"),
  28711. name: "Back",
  28712. image: {
  28713. source: "./media/characters/aasha/back.svg",
  28714. extra: 1133 / 1057,
  28715. bottom: 257 / 1390
  28716. }
  28717. },
  28718. },
  28719. [
  28720. {
  28721. name: "Normal",
  28722. height: math.unit(10 + 7 / 12, "feet"),
  28723. default: true
  28724. },
  28725. ]
  28726. ))
  28727. characterMakers.push(() => makeCharacter(
  28728. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  28729. {
  28730. front: {
  28731. height: math.unit(6 + 3 / 12, "feet"),
  28732. name: "Front",
  28733. image: {
  28734. source: "./media/characters/nevan/front.svg",
  28735. extra: 704 / 704,
  28736. bottom: 28 / 732
  28737. }
  28738. },
  28739. back: {
  28740. height: math.unit(6 + 3 / 12, "feet"),
  28741. name: "Back",
  28742. image: {
  28743. source: "./media/characters/nevan/back.svg",
  28744. extra: 714 / 714,
  28745. bottom: 21 / 735
  28746. }
  28747. },
  28748. frontFlaccid: {
  28749. height: math.unit(6 + 3 / 12, "feet"),
  28750. name: "Front (Flaccid)",
  28751. image: {
  28752. source: "./media/characters/nevan/front-flaccid.svg",
  28753. extra: 704 / 704,
  28754. bottom: 28 / 732
  28755. }
  28756. },
  28757. frontErect: {
  28758. height: math.unit(6 + 3 / 12, "feet"),
  28759. name: "Front (Erect)",
  28760. image: {
  28761. source: "./media/characters/nevan/front-erect.svg",
  28762. extra: 704 / 704,
  28763. bottom: 28 / 732
  28764. }
  28765. },
  28766. backFlaccid: {
  28767. height: math.unit(6 + 3 / 12, "feet"),
  28768. name: "Back (Flaccid)",
  28769. image: {
  28770. source: "./media/characters/nevan/back-flaccid.svg",
  28771. extra: 714 / 714,
  28772. bottom: 21 / 735
  28773. }
  28774. },
  28775. },
  28776. [
  28777. {
  28778. name: "Normal",
  28779. height: math.unit(6 + 3 / 12, "feet"),
  28780. default: true
  28781. },
  28782. ]
  28783. ))
  28784. characterMakers.push(() => makeCharacter(
  28785. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  28786. {
  28787. front: {
  28788. height: math.unit(4, "feet"),
  28789. name: "Front",
  28790. image: {
  28791. source: "./media/characters/arhan/front.svg",
  28792. extra: 3368 / 3133,
  28793. bottom: 0 / 3368
  28794. }
  28795. },
  28796. side: {
  28797. height: math.unit(4, "feet"),
  28798. name: "Side",
  28799. image: {
  28800. source: "./media/characters/arhan/side.svg",
  28801. extra: 3347 / 3105,
  28802. bottom: 0 / 3347
  28803. }
  28804. },
  28805. tongue: {
  28806. height: math.unit(1.42, "feet"),
  28807. name: "Tongue",
  28808. image: {
  28809. source: "./media/characters/arhan/tongue.svg"
  28810. }
  28811. },
  28812. head: {
  28813. height: math.unit(0.85, "feet"),
  28814. name: "Head",
  28815. image: {
  28816. source: "./media/characters/arhan/head.svg"
  28817. }
  28818. },
  28819. },
  28820. [
  28821. {
  28822. name: "Normal",
  28823. height: math.unit(4, "feet"),
  28824. default: true
  28825. },
  28826. ]
  28827. ))
  28828. characterMakers.push(() => makeCharacter(
  28829. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  28830. {
  28831. front: {
  28832. height: math.unit(5 + 7.5 / 12, "feet"),
  28833. weight: math.unit(120, "lb"),
  28834. name: "Front",
  28835. image: {
  28836. source: "./media/characters/digi-duncan/front.svg",
  28837. extra: 330 / 326,
  28838. bottom: 16 / 346
  28839. }
  28840. },
  28841. side: {
  28842. height: math.unit(5 + 7.5 / 12, "feet"),
  28843. weight: math.unit(120, "lb"),
  28844. name: "Side",
  28845. image: {
  28846. source: "./media/characters/digi-duncan/side.svg",
  28847. extra: 341 / 337,
  28848. bottom: 1 / 342
  28849. }
  28850. },
  28851. back: {
  28852. height: math.unit(5 + 7.5 / 12, "feet"),
  28853. weight: math.unit(120, "lb"),
  28854. name: "Back",
  28855. image: {
  28856. source: "./media/characters/digi-duncan/back.svg",
  28857. extra: 330 / 326,
  28858. bottom: 12 / 342
  28859. }
  28860. },
  28861. },
  28862. [
  28863. {
  28864. name: "Speck",
  28865. height: math.unit(0.25, "mm")
  28866. },
  28867. {
  28868. name: "Micro",
  28869. height: math.unit(5, "mm")
  28870. },
  28871. {
  28872. name: "Tiny",
  28873. height: math.unit(0.5, "inches"),
  28874. default: true
  28875. },
  28876. {
  28877. name: "Human",
  28878. height: math.unit(5 + 7.5 / 12, "feet")
  28879. },
  28880. {
  28881. name: "Minigiant",
  28882. height: math.unit(8 + 5.25, "feet")
  28883. },
  28884. {
  28885. name: "Giant",
  28886. height: math.unit(2000, "feet")
  28887. },
  28888. {
  28889. name: "Mega",
  28890. height: math.unit(371.1, "miles")
  28891. },
  28892. ]
  28893. ))
  28894. characterMakers.push(() => makeCharacter(
  28895. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  28896. {
  28897. front: {
  28898. height: math.unit(2, "meters"),
  28899. weight: math.unit(350, "kg"),
  28900. name: "Front",
  28901. image: {
  28902. source: "./media/characters/jagaz-soulbreaker/front.svg",
  28903. extra: 898 / 838,
  28904. bottom: 9 / 907
  28905. }
  28906. },
  28907. },
  28908. [
  28909. {
  28910. name: "Micro",
  28911. height: math.unit(8, "meters")
  28912. },
  28913. {
  28914. name: "Normal",
  28915. height: math.unit(50, "meters"),
  28916. default: true
  28917. },
  28918. {
  28919. name: "Macro",
  28920. height: math.unit(500, "meters")
  28921. },
  28922. ]
  28923. ))
  28924. characterMakers.push(() => makeCharacter(
  28925. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  28926. {
  28927. front: {
  28928. height: math.unit(6 + 6 / 12, "feet"),
  28929. name: "Front",
  28930. image: {
  28931. source: "./media/characters/khardesh/front.svg",
  28932. extra: 888 / 797,
  28933. bottom: 25 / 913
  28934. }
  28935. },
  28936. },
  28937. [
  28938. {
  28939. name: "Normal",
  28940. height: math.unit(6 + 6 / 12, "feet"),
  28941. default: true
  28942. },
  28943. {
  28944. name: "Normal+",
  28945. height: math.unit(4, "meters")
  28946. },
  28947. {
  28948. name: "Macro",
  28949. height: math.unit(50, "meters")
  28950. },
  28951. {
  28952. name: "Macro+",
  28953. height: math.unit(100, "meters")
  28954. },
  28955. {
  28956. name: "Megamacro",
  28957. height: math.unit(20, "km")
  28958. },
  28959. ]
  28960. ))
  28961. characterMakers.push(() => makeCharacter(
  28962. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  28963. {
  28964. front: {
  28965. height: math.unit(6, "feet"),
  28966. weight: math.unit(150, "lb"),
  28967. name: "Front",
  28968. image: {
  28969. source: "./media/characters/kosho/front.svg",
  28970. extra: 1847 / 1847,
  28971. bottom: 86 / 1933
  28972. }
  28973. },
  28974. },
  28975. [
  28976. {
  28977. name: "Second-stage micro",
  28978. height: math.unit(0.5, "inches")
  28979. },
  28980. {
  28981. name: "First-stage micro",
  28982. height: math.unit(6, "inches")
  28983. },
  28984. {
  28985. name: "Normal",
  28986. height: math.unit(6, "feet"),
  28987. default: true
  28988. },
  28989. {
  28990. name: "First-stage macro",
  28991. height: math.unit(72, "feet")
  28992. },
  28993. {
  28994. name: "Second-stage macro",
  28995. height: math.unit(864, "feet")
  28996. },
  28997. ]
  28998. ))
  28999. characterMakers.push(() => makeCharacter(
  29000. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29001. {
  29002. normal: {
  29003. height: math.unit(4 + 6 / 12, "feet"),
  29004. name: "Normal",
  29005. image: {
  29006. source: "./media/characters/hydra/normal.svg",
  29007. extra: 2833 / 2634,
  29008. bottom: 68 / 2901
  29009. }
  29010. },
  29011. smol: {
  29012. height: math.unit(0.705, "inches"),
  29013. name: "Smol",
  29014. image: {
  29015. source: "./media/characters/hydra/smol.svg",
  29016. extra: 2715 / 2540,
  29017. bottom: 0 / 2715
  29018. }
  29019. },
  29020. },
  29021. [
  29022. {
  29023. name: "Normal",
  29024. height: math.unit(4 + 6 / 12, "feet"),
  29025. default: true
  29026. }
  29027. ]
  29028. ))
  29029. characterMakers.push(() => makeCharacter(
  29030. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29031. {
  29032. front: {
  29033. height: math.unit(0.6, "cm"),
  29034. name: "Front",
  29035. image: {
  29036. source: "./media/characters/daz/front.svg",
  29037. extra: 1682 / 1164,
  29038. bottom: 42 / 1724
  29039. }
  29040. },
  29041. },
  29042. [
  29043. {
  29044. name: "Normal",
  29045. height: math.unit(0.6, "cm"),
  29046. default: true
  29047. },
  29048. ]
  29049. ))
  29050. characterMakers.push(() => makeCharacter(
  29051. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29052. {
  29053. front: {
  29054. height: math.unit(6, "feet"),
  29055. weight: math.unit(235, "lb"),
  29056. name: "Front",
  29057. image: {
  29058. source: "./media/characters/theo-pangolin/front.svg",
  29059. extra: 1996 / 1969,
  29060. bottom: 115 / 2111
  29061. }
  29062. },
  29063. back: {
  29064. height: math.unit(6, "feet"),
  29065. weight: math.unit(235, "lb"),
  29066. name: "Back",
  29067. image: {
  29068. source: "./media/characters/theo-pangolin/back.svg",
  29069. extra: 1979 / 1979,
  29070. bottom: 40 / 2019
  29071. }
  29072. },
  29073. feral: {
  29074. height: math.unit(2, "feet"),
  29075. weight: math.unit(30, "lb"),
  29076. name: "Feral",
  29077. image: {
  29078. source: "./media/characters/theo-pangolin/feral.svg",
  29079. extra: 803 / 791,
  29080. bottom: 181 / 984
  29081. }
  29082. },
  29083. footFive: {
  29084. height: math.unit(1.43, "feet"),
  29085. name: "Foot (Five Toes)",
  29086. image: {
  29087. source: "./media/characters/theo-pangolin/foot-five.svg"
  29088. }
  29089. },
  29090. footFour: {
  29091. height: math.unit(1.43, "feet"),
  29092. name: "Foot (Four Toes)",
  29093. image: {
  29094. source: "./media/characters/theo-pangolin/foot-four.svg"
  29095. }
  29096. },
  29097. handFour: {
  29098. height: math.unit(0.81, "feet"),
  29099. name: "Hand (Four Fingers)",
  29100. image: {
  29101. source: "./media/characters/theo-pangolin/hand-four.svg"
  29102. }
  29103. },
  29104. handThree: {
  29105. height: math.unit(0.81, "feet"),
  29106. name: "Hand (Three Fingers)",
  29107. image: {
  29108. source: "./media/characters/theo-pangolin/hand-three.svg"
  29109. }
  29110. },
  29111. headFront: {
  29112. height: math.unit(1.37, "feet"),
  29113. name: "Head (Front)",
  29114. image: {
  29115. source: "./media/characters/theo-pangolin/head-front.svg"
  29116. }
  29117. },
  29118. headSide: {
  29119. height: math.unit(1.43, "feet"),
  29120. name: "Head (Side)",
  29121. image: {
  29122. source: "./media/characters/theo-pangolin/head-side.svg"
  29123. }
  29124. },
  29125. tongue: {
  29126. height: math.unit(2.29, "feet"),
  29127. name: "Tongue",
  29128. image: {
  29129. source: "./media/characters/theo-pangolin/tongue.svg"
  29130. }
  29131. },
  29132. },
  29133. [
  29134. {
  29135. name: "Normal",
  29136. height: math.unit(6, "feet")
  29137. },
  29138. {
  29139. name: "Macro",
  29140. height: math.unit(400, "feet"),
  29141. default: true
  29142. },
  29143. ]
  29144. ))
  29145. characterMakers.push(() => makeCharacter(
  29146. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29147. {
  29148. front: {
  29149. height: math.unit(6, "inches"),
  29150. weight: math.unit(0.036, "kg"),
  29151. name: "Front",
  29152. image: {
  29153. source: "./media/characters/renée/front.svg",
  29154. extra: 900 / 886,
  29155. bottom: 8 / 908
  29156. }
  29157. },
  29158. },
  29159. [
  29160. {
  29161. name: "Nano",
  29162. height: math.unit(1, "nm")
  29163. },
  29164. {
  29165. name: "Micro",
  29166. height: math.unit(1, "mm")
  29167. },
  29168. {
  29169. name: "Normal",
  29170. height: math.unit(6, "inches")
  29171. },
  29172. {
  29173. name: "Macro",
  29174. height: math.unit(2000, "feet"),
  29175. default: true
  29176. },
  29177. {
  29178. name: "Megamacro",
  29179. height: math.unit(2, "km")
  29180. },
  29181. {
  29182. name: "Gigamacro",
  29183. height: math.unit(2000, "km")
  29184. },
  29185. {
  29186. name: "Teramacro",
  29187. height: math.unit(250000, "km")
  29188. },
  29189. ]
  29190. ))
  29191. characterMakers.push(() => makeCharacter(
  29192. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29193. {
  29194. front: {
  29195. height: math.unit(4, "meters"),
  29196. weight: math.unit(150, "kg"),
  29197. name: "Front",
  29198. image: {
  29199. source: "./media/characters/caledvwlch/front.svg",
  29200. extra: 1760 / 1551,
  29201. bottom: 28 / 1788
  29202. }
  29203. },
  29204. side: {
  29205. height: math.unit(4, "meters"),
  29206. weight: math.unit(150, "kg"),
  29207. name: "Side",
  29208. image: {
  29209. source: "./media/characters/caledvwlch/side.svg",
  29210. extra: 1605 / 1536,
  29211. bottom: 31 / 1636
  29212. }
  29213. },
  29214. back: {
  29215. height: math.unit(4, "meters"),
  29216. weight: math.unit(150, "kg"),
  29217. name: "Back",
  29218. image: {
  29219. source: "./media/characters/caledvwlch/back.svg",
  29220. extra: 1635 / 1565,
  29221. bottom: 27 / 1662
  29222. }
  29223. },
  29224. },
  29225. [
  29226. {
  29227. name: "\"Incognito\"",
  29228. height: math.unit(4, "meters")
  29229. },
  29230. {
  29231. name: "Small rampage",
  29232. height: math.unit(600, "meters")
  29233. },
  29234. {
  29235. name: "Mega",
  29236. height: math.unit(30, "km")
  29237. },
  29238. {
  29239. name: "Home-size",
  29240. height: math.unit(50, "km"),
  29241. default: true
  29242. },
  29243. {
  29244. name: "Giga",
  29245. height: math.unit(300, "km")
  29246. },
  29247. {
  29248. name: "Lounging",
  29249. height: math.unit(11000, "km")
  29250. },
  29251. {
  29252. name: "Planet snacking",
  29253. height: math.unit(2000000, "km")
  29254. },
  29255. ]
  29256. ))
  29257. characterMakers.push(() => makeCharacter(
  29258. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29259. {
  29260. front: {
  29261. height: math.unit(6, "feet"),
  29262. weight: math.unit(215, "lb"),
  29263. name: "Front",
  29264. image: {
  29265. source: "./media/characters/sapphire-svell/front.svg",
  29266. extra: 495 / 455,
  29267. bottom: 20 / 515
  29268. }
  29269. },
  29270. back: {
  29271. height: math.unit(6, "feet"),
  29272. weight: math.unit(216, "lb"),
  29273. name: "Back",
  29274. image: {
  29275. source: "./media/characters/sapphire-svell/back.svg",
  29276. extra: 497 / 477,
  29277. bottom: 7 / 504
  29278. }
  29279. },
  29280. maw: {
  29281. height: math.unit(1.57, "feet"),
  29282. name: "Maw",
  29283. image: {
  29284. source: "./media/characters/sapphire-svell/maw.svg"
  29285. }
  29286. },
  29287. foot: {
  29288. height: math.unit(1.07, "feet"),
  29289. name: "Foot",
  29290. image: {
  29291. source: "./media/characters/sapphire-svell/foot.svg"
  29292. }
  29293. },
  29294. toering: {
  29295. height: math.unit(1.7, "inch"),
  29296. name: "Toering",
  29297. image: {
  29298. source: "./media/characters/sapphire-svell/toering.svg"
  29299. }
  29300. },
  29301. },
  29302. [
  29303. {
  29304. name: "Normal",
  29305. height: math.unit(300, "feet"),
  29306. default: true
  29307. },
  29308. {
  29309. name: "Augmented",
  29310. height: math.unit(1250, "feet")
  29311. },
  29312. {
  29313. name: "Unleashed",
  29314. height: math.unit(3000, "feet")
  29315. },
  29316. ]
  29317. ))
  29318. characterMakers.push(() => makeCharacter(
  29319. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29320. {
  29321. side: {
  29322. height: math.unit(2 + 3 / 12, "feet"),
  29323. weight: math.unit(110, "lb"),
  29324. name: "Side",
  29325. image: {
  29326. source: "./media/characters/glitch-flux/side.svg",
  29327. extra: 997 / 805,
  29328. bottom: 20 / 1017
  29329. }
  29330. },
  29331. },
  29332. [
  29333. {
  29334. name: "Normal",
  29335. height: math.unit(2 + 3 / 12, "feet"),
  29336. default: true
  29337. },
  29338. ]
  29339. ))
  29340. characterMakers.push(() => makeCharacter(
  29341. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29342. {
  29343. front: {
  29344. height: math.unit(4, "meters"),
  29345. name: "Front",
  29346. image: {
  29347. source: "./media/characters/mid/front.svg",
  29348. extra: 507 / 476,
  29349. bottom: 17 / 524
  29350. }
  29351. },
  29352. back: {
  29353. height: math.unit(4, "meters"),
  29354. name: "Back",
  29355. image: {
  29356. source: "./media/characters/mid/back.svg",
  29357. extra: 519 / 487,
  29358. bottom: 7 / 526
  29359. }
  29360. },
  29361. stuck: {
  29362. height: math.unit(2.2, "meters"),
  29363. name: "Stuck",
  29364. image: {
  29365. source: "./media/characters/mid/stuck.svg",
  29366. extra: 1951 / 1869,
  29367. bottom: 88 / 2039
  29368. }
  29369. }
  29370. },
  29371. [
  29372. {
  29373. name: "Normal",
  29374. height: math.unit(4, "meters"),
  29375. default: true
  29376. },
  29377. {
  29378. name: "Big",
  29379. height: math.unit(10, "meters")
  29380. },
  29381. {
  29382. name: "Macro",
  29383. height: math.unit(800, "meters")
  29384. },
  29385. {
  29386. name: "Megamacro",
  29387. height: math.unit(100, "km")
  29388. },
  29389. {
  29390. name: "Overgrown",
  29391. height: math.unit(1, "parsec")
  29392. },
  29393. ]
  29394. ))
  29395. characterMakers.push(() => makeCharacter(
  29396. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29397. {
  29398. front: {
  29399. height: math.unit(2.5, "meters"),
  29400. weight: math.unit(225, "kg"),
  29401. name: "Front",
  29402. image: {
  29403. source: "./media/characters/iris/front.svg",
  29404. extra: 3348 / 3251,
  29405. bottom: 205 / 3553
  29406. }
  29407. },
  29408. maw: {
  29409. height: math.unit(0.56, "meter"),
  29410. name: "Maw",
  29411. image: {
  29412. source: "./media/characters/iris/maw.svg"
  29413. }
  29414. },
  29415. },
  29416. [
  29417. {
  29418. name: "Mewter cat",
  29419. height: math.unit(1.2, "meters")
  29420. },
  29421. {
  29422. name: "Minimacro",
  29423. height: math.unit(2.5, "meters"),
  29424. default: true
  29425. },
  29426. {
  29427. name: "Macro",
  29428. height: math.unit(180, "meters")
  29429. },
  29430. {
  29431. name: "Megamacro",
  29432. height: math.unit(2746, "meters")
  29433. },
  29434. ]
  29435. ))
  29436. characterMakers.push(() => makeCharacter(
  29437. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29438. {
  29439. front: {
  29440. height: math.unit(6, "feet"),
  29441. weight: math.unit(135, "lb"),
  29442. name: "Front",
  29443. image: {
  29444. source: "./media/characters/axel/front.svg",
  29445. extra: 908 / 908,
  29446. bottom: 58 / 966
  29447. }
  29448. },
  29449. side: {
  29450. height: math.unit(6, "feet"),
  29451. weight: math.unit(135, "lb"),
  29452. name: "Side",
  29453. image: {
  29454. source: "./media/characters/axel/side.svg",
  29455. extra: 958 / 958,
  29456. bottom: 11 / 969
  29457. }
  29458. },
  29459. back: {
  29460. height: math.unit(6, "feet"),
  29461. weight: math.unit(135, "lb"),
  29462. name: "Back",
  29463. image: {
  29464. source: "./media/characters/axel/back.svg",
  29465. extra: 887 / 887,
  29466. bottom: 34 / 921
  29467. }
  29468. },
  29469. head: {
  29470. height: math.unit(1.07, "feet"),
  29471. name: "Head",
  29472. image: {
  29473. source: "./media/characters/axel/head.svg"
  29474. }
  29475. },
  29476. beak: {
  29477. height: math.unit(1.4, "feet"),
  29478. name: "Beak",
  29479. image: {
  29480. source: "./media/characters/axel/beak.svg"
  29481. }
  29482. },
  29483. beakSide: {
  29484. height: math.unit(1.4, "feet"),
  29485. name: "Beak Side",
  29486. image: {
  29487. source: "./media/characters/axel/beak-side.svg"
  29488. }
  29489. },
  29490. sheath: {
  29491. height: math.unit(0.5, "feet"),
  29492. name: "Sheath",
  29493. image: {
  29494. source: "./media/characters/axel/sheath.svg"
  29495. }
  29496. },
  29497. dick: {
  29498. height: math.unit(0.98, "feet"),
  29499. name: "Dick",
  29500. image: {
  29501. source: "./media/characters/axel/dick.svg"
  29502. }
  29503. },
  29504. },
  29505. [
  29506. {
  29507. name: "Macro",
  29508. height: math.unit(68, "meters"),
  29509. default: true
  29510. },
  29511. ]
  29512. ))
  29513. characterMakers.push(() => makeCharacter(
  29514. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29515. {
  29516. front: {
  29517. height: math.unit(3.5, "meters"),
  29518. weight: math.unit(1200, "kg"),
  29519. name: "Front",
  29520. image: {
  29521. source: "./media/characters/joanna/front.svg",
  29522. extra: 1596 / 1488,
  29523. bottom: 29 / 1625
  29524. }
  29525. },
  29526. back: {
  29527. height: math.unit(3.5, "meters"),
  29528. weight: math.unit(1200, "kg"),
  29529. name: "Back",
  29530. image: {
  29531. source: "./media/characters/joanna/back.svg",
  29532. extra: 1594 / 1495,
  29533. bottom: 26 / 1620
  29534. }
  29535. },
  29536. frontShorts: {
  29537. height: math.unit(3.5, "meters"),
  29538. weight: math.unit(1200, "kg"),
  29539. name: "Front (Shorts)",
  29540. image: {
  29541. source: "./media/characters/joanna/front-shorts.svg",
  29542. extra: 1596 / 1488,
  29543. bottom: 29 / 1625
  29544. }
  29545. },
  29546. frontBiker: {
  29547. height: math.unit(3.5, "meters"),
  29548. weight: math.unit(1200, "kg"),
  29549. name: "Front (Biker)",
  29550. image: {
  29551. source: "./media/characters/joanna/front-biker.svg",
  29552. extra: 1596 / 1488,
  29553. bottom: 29 / 1625
  29554. }
  29555. },
  29556. backBiker: {
  29557. height: math.unit(3.5, "meters"),
  29558. weight: math.unit(1200, "kg"),
  29559. name: "Back (Biker)",
  29560. image: {
  29561. source: "./media/characters/joanna/back-biker.svg",
  29562. extra: 1594 / 1495,
  29563. bottom: 88 / 1682
  29564. }
  29565. },
  29566. bikeLeft: {
  29567. height: math.unit(2.4, "meters"),
  29568. weight: math.unit(1600, "kg"),
  29569. name: "Bike (Left)",
  29570. image: {
  29571. source: "./media/characters/joanna/bike-left.svg",
  29572. extra: 720 / 720,
  29573. bottom: 8 / 728
  29574. }
  29575. },
  29576. bikeRight: {
  29577. height: math.unit(2.4, "meters"),
  29578. weight: math.unit(1600, "kg"),
  29579. name: "Bike (Right)",
  29580. image: {
  29581. source: "./media/characters/joanna/bike-right.svg",
  29582. extra: 720 / 720,
  29583. bottom: 8 / 728
  29584. }
  29585. },
  29586. },
  29587. [
  29588. {
  29589. name: "Incognito",
  29590. height: math.unit(3.5, "meters")
  29591. },
  29592. {
  29593. name: "Casual Big",
  29594. height: math.unit(200, "meters")
  29595. },
  29596. {
  29597. name: "Macro",
  29598. height: math.unit(600, "meters")
  29599. },
  29600. {
  29601. name: "Original",
  29602. height: math.unit(20, "km"),
  29603. default: true
  29604. },
  29605. {
  29606. name: "Giga",
  29607. height: math.unit(400, "km")
  29608. },
  29609. {
  29610. name: "Lounging",
  29611. height: math.unit(1500, "km")
  29612. },
  29613. {
  29614. name: "Planetary",
  29615. height: math.unit(200000, "km")
  29616. },
  29617. ]
  29618. ))
  29619. characterMakers.push(() => makeCharacter(
  29620. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29621. {
  29622. front: {
  29623. height: math.unit(6, "feet"),
  29624. weight: math.unit(150, "lb"),
  29625. name: "Front",
  29626. image: {
  29627. source: "./media/characters/hugo-sigil/front.svg",
  29628. extra: 522 / 500,
  29629. bottom: 2 / 524
  29630. }
  29631. },
  29632. back: {
  29633. height: math.unit(6, "feet"),
  29634. weight: math.unit(150, "lb"),
  29635. name: "Back",
  29636. image: {
  29637. source: "./media/characters/hugo-sigil/back.svg",
  29638. extra: 519 / 495,
  29639. bottom: 5 / 524
  29640. }
  29641. },
  29642. maw: {
  29643. height: math.unit(1.4, "feet"),
  29644. weight: math.unit(150, "lb"),
  29645. name: "Maw",
  29646. image: {
  29647. source: "./media/characters/hugo-sigil/maw.svg"
  29648. }
  29649. },
  29650. feet: {
  29651. height: math.unit(1.56, "feet"),
  29652. weight: math.unit(150, "lb"),
  29653. name: "Feet",
  29654. image: {
  29655. source: "./media/characters/hugo-sigil/feet.svg",
  29656. extra: 177 / 177,
  29657. bottom: 12 / 189
  29658. }
  29659. },
  29660. },
  29661. [
  29662. {
  29663. name: "Normal",
  29664. height: math.unit(6, "feet")
  29665. },
  29666. {
  29667. name: "Macro",
  29668. height: math.unit(200, "feet"),
  29669. default: true
  29670. },
  29671. ]
  29672. ))
  29673. characterMakers.push(() => makeCharacter(
  29674. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  29675. {
  29676. front: {
  29677. height: math.unit(6, "feet"),
  29678. weight: math.unit(150, "lb"),
  29679. name: "Front",
  29680. image: {
  29681. source: "./media/characters/peri/front.svg",
  29682. extra: 2354 / 2233,
  29683. bottom: 49 / 2403
  29684. }
  29685. },
  29686. },
  29687. [
  29688. {
  29689. name: "Really Small",
  29690. height: math.unit(1, "nm")
  29691. },
  29692. {
  29693. name: "Micro",
  29694. height: math.unit(4, "inches")
  29695. },
  29696. {
  29697. name: "Normal",
  29698. height: math.unit(7, "inches"),
  29699. default: true
  29700. },
  29701. {
  29702. name: "Macro",
  29703. height: math.unit(400, "feet")
  29704. },
  29705. {
  29706. name: "Megamacro",
  29707. height: math.unit(100, "miles")
  29708. },
  29709. ]
  29710. ))
  29711. characterMakers.push(() => makeCharacter(
  29712. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  29713. {
  29714. frontSlim: {
  29715. height: math.unit(7, "feet"),
  29716. name: "Front (Slim)",
  29717. image: {
  29718. source: "./media/characters/issilora/front-slim.svg",
  29719. extra: 529 / 449,
  29720. bottom: 53 / 582
  29721. }
  29722. },
  29723. sideSlim: {
  29724. height: math.unit(7, "feet"),
  29725. name: "Side (Slim)",
  29726. image: {
  29727. source: "./media/characters/issilora/side-slim.svg",
  29728. extra: 570 / 480,
  29729. bottom: 30 / 600
  29730. }
  29731. },
  29732. backSlim: {
  29733. height: math.unit(7, "feet"),
  29734. name: "Back (Slim)",
  29735. image: {
  29736. source: "./media/characters/issilora/back-slim.svg",
  29737. extra: 537 / 455,
  29738. bottom: 46 / 583
  29739. }
  29740. },
  29741. frontBuff: {
  29742. height: math.unit(7, "feet"),
  29743. name: "Front (Buff)",
  29744. image: {
  29745. source: "./media/characters/issilora/front-buff.svg",
  29746. extra: 2310 / 2035,
  29747. bottom: 335 / 2645
  29748. }
  29749. },
  29750. head: {
  29751. height: math.unit(1.94, "feet"),
  29752. name: "Head",
  29753. image: {
  29754. source: "./media/characters/issilora/head.svg"
  29755. }
  29756. },
  29757. },
  29758. [
  29759. {
  29760. name: "Minimum",
  29761. height: math.unit(7, "feet")
  29762. },
  29763. {
  29764. name: "Comfortable",
  29765. height: math.unit(17, "feet")
  29766. },
  29767. {
  29768. name: "Fun Size",
  29769. height: math.unit(47, "feet")
  29770. },
  29771. {
  29772. name: "Natural Macro",
  29773. height: math.unit(137, "feet"),
  29774. default: true
  29775. },
  29776. {
  29777. name: "Maximum Kaiju",
  29778. height: math.unit(397, "feet")
  29779. },
  29780. ]
  29781. ))
  29782. characterMakers.push(() => makeCharacter(
  29783. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  29784. {
  29785. front: {
  29786. height: math.unit(50 + 9/12, "feet"),
  29787. weight: math.unit(32.8, "tons"),
  29788. name: "Front",
  29789. image: {
  29790. source: "./media/characters/irb'iiritaahn/front.svg",
  29791. extra: 1878/1826,
  29792. bottom: 326/2204
  29793. }
  29794. },
  29795. back: {
  29796. height: math.unit(50 + 9/12, "feet"),
  29797. weight: math.unit(32.8, "tons"),
  29798. name: "Back",
  29799. image: {
  29800. source: "./media/characters/irb'iiritaahn/back.svg",
  29801. extra: 2052/2018,
  29802. bottom: 152/2204
  29803. }
  29804. },
  29805. head: {
  29806. height: math.unit(12.86, "feet"),
  29807. name: "Head",
  29808. image: {
  29809. source: "./media/characters/irb'iiritaahn/head.svg"
  29810. }
  29811. },
  29812. maw: {
  29813. height: math.unit(9.66, "feet"),
  29814. name: "Maw",
  29815. image: {
  29816. source: "./media/characters/irb'iiritaahn/maw.svg"
  29817. }
  29818. },
  29819. frontDick: {
  29820. height: math.unit(8.78461, "feet"),
  29821. name: "Front Dick",
  29822. image: {
  29823. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  29824. }
  29825. },
  29826. rearDick: {
  29827. height: math.unit(8.78461, "feet"),
  29828. name: "Rear Dick",
  29829. image: {
  29830. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  29831. }
  29832. },
  29833. rearDickUnfolded: {
  29834. height: math.unit(8.78, "feet"),
  29835. name: "Rear Dick (Unfolded)",
  29836. image: {
  29837. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  29838. }
  29839. },
  29840. wings: {
  29841. height: math.unit(43, "feet"),
  29842. name: "Wings",
  29843. image: {
  29844. source: "./media/characters/irb'iiritaahn/wings.svg"
  29845. }
  29846. },
  29847. },
  29848. [
  29849. {
  29850. name: "Macro",
  29851. height: math.unit(50 + 9/12, "feet"),
  29852. default: true
  29853. },
  29854. ]
  29855. ))
  29856. characterMakers.push(() => makeCharacter(
  29857. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  29858. {
  29859. front: {
  29860. height: math.unit(205, "cm"),
  29861. weight: math.unit(102, "kg"),
  29862. name: "Front",
  29863. image: {
  29864. source: "./media/characters/irbisgreif/front.svg",
  29865. extra: 785/706,
  29866. bottom: 13/798
  29867. }
  29868. },
  29869. back: {
  29870. height: math.unit(205, "cm"),
  29871. weight: math.unit(102, "kg"),
  29872. name: "Back",
  29873. image: {
  29874. source: "./media/characters/irbisgreif/back.svg",
  29875. extra: 713/701,
  29876. bottom: 26/739
  29877. }
  29878. },
  29879. frontDressed: {
  29880. height: math.unit(216, "cm"),
  29881. weight: math.unit(102, "kg"),
  29882. name: "Front-dressed",
  29883. image: {
  29884. source: "./media/characters/irbisgreif/front-dressed.svg",
  29885. extra: 902/776,
  29886. bottom: 14/916
  29887. }
  29888. },
  29889. sideDressed: {
  29890. height: math.unit(195, "cm"),
  29891. weight: math.unit(102, "kg"),
  29892. name: "Side-dressed",
  29893. image: {
  29894. source: "./media/characters/irbisgreif/side-dressed.svg",
  29895. extra: 788/688,
  29896. bottom: 21/809
  29897. }
  29898. },
  29899. backDressed: {
  29900. height: math.unit(216, "cm"),
  29901. weight: math.unit(102, "kg"),
  29902. name: "Back-dressed",
  29903. image: {
  29904. source: "./media/characters/irbisgreif/back-dressed.svg",
  29905. extra: 901/783,
  29906. bottom: 10/911
  29907. }
  29908. },
  29909. dick: {
  29910. height: math.unit(0.49, "feet"),
  29911. name: "Dick",
  29912. image: {
  29913. source: "./media/characters/irbisgreif/dick.svg"
  29914. }
  29915. },
  29916. wingTop: {
  29917. height: math.unit(1.93 , "feet"),
  29918. name: "Wing-top",
  29919. image: {
  29920. source: "./media/characters/irbisgreif/wing-top.svg"
  29921. }
  29922. },
  29923. wingBottom: {
  29924. height: math.unit(1.93 , "feet"),
  29925. name: "Wing-bottom",
  29926. image: {
  29927. source: "./media/characters/irbisgreif/wing-bottom.svg"
  29928. }
  29929. },
  29930. },
  29931. [
  29932. {
  29933. name: "Normal",
  29934. height: math.unit(216, "cm"),
  29935. default: true
  29936. },
  29937. ]
  29938. ))
  29939. characterMakers.push(() => makeCharacter(
  29940. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  29941. {
  29942. front: {
  29943. height: math.unit(6, "feet"),
  29944. weight: math.unit(150, "lb"),
  29945. name: "Front",
  29946. image: {
  29947. source: "./media/characters/pride/front.svg",
  29948. extra: 1299/1230,
  29949. bottom: 18/1317
  29950. }
  29951. },
  29952. },
  29953. [
  29954. {
  29955. name: "Normal",
  29956. height: math.unit(7, "feet")
  29957. },
  29958. {
  29959. name: "Mini-macro",
  29960. height: math.unit(11, "feet")
  29961. },
  29962. {
  29963. name: "Macro",
  29964. height: math.unit(15, "meters"),
  29965. default: true
  29966. },
  29967. {
  29968. name: "Macro+",
  29969. height: math.unit(40, "meters")
  29970. },
  29971. ]
  29972. ))
  29973. characterMakers.push(() => makeCharacter(
  29974. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  29975. {
  29976. front: {
  29977. height: math.unit(4 + 2 / 12, "feet"),
  29978. weight: math.unit(95, "lb"),
  29979. name: "Front",
  29980. image: {
  29981. source: "./media/characters/vaelophis-nyx/front.svg",
  29982. extra: 2532/2330,
  29983. bottom: 0/2532
  29984. }
  29985. },
  29986. back: {
  29987. height: math.unit(4 + 2 / 12, "feet"),
  29988. weight: math.unit(95, "lb"),
  29989. name: "Back",
  29990. image: {
  29991. source: "./media/characters/vaelophis-nyx/back.svg",
  29992. extra: 2484/2361,
  29993. bottom: 0/2484
  29994. }
  29995. },
  29996. feralSide: {
  29997. height: math.unit(2 + 1/12, "feet"),
  29998. weight: math.unit(20, "lb"),
  29999. name: "Feral (Side)",
  30000. image: {
  30001. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30002. extra: 1721/1581,
  30003. bottom: 70/1791
  30004. }
  30005. },
  30006. feralLazing: {
  30007. height: math.unit(1.08, "feet"),
  30008. weight: math.unit(20, "lb"),
  30009. name: "Feral (Lazing)",
  30010. image: {
  30011. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30012. extra: 822/822,
  30013. bottom: 248/1070
  30014. }
  30015. },
  30016. ear: {
  30017. height: math.unit(0.416, "feet"),
  30018. name: "Ear",
  30019. image: {
  30020. source: "./media/characters/vaelophis-nyx/ear.svg"
  30021. }
  30022. },
  30023. eye: {
  30024. height: math.unit(0.0748, "feet"),
  30025. name: "Eye",
  30026. image: {
  30027. source: "./media/characters/vaelophis-nyx/eye.svg"
  30028. }
  30029. },
  30030. mouth: {
  30031. height: math.unit(0.378, "feet"),
  30032. name: "Mouth",
  30033. image: {
  30034. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30035. }
  30036. },
  30037. spade: {
  30038. height: math.unit(0.55, "feet"),
  30039. name: "Spade",
  30040. image: {
  30041. source: "./media/characters/vaelophis-nyx/spade.svg"
  30042. }
  30043. },
  30044. },
  30045. [
  30046. {
  30047. name: "Normal",
  30048. height: math.unit(4 + 2/12, "feet"),
  30049. default: true
  30050. },
  30051. ]
  30052. ))
  30053. characterMakers.push(() => makeCharacter(
  30054. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30055. {
  30056. front: {
  30057. height: math.unit(7, "feet"),
  30058. weight: math.unit(231, "lb"),
  30059. name: "Front",
  30060. image: {
  30061. source: "./media/characters/flux/front.svg",
  30062. extra: 919/871,
  30063. bottom: 0/919
  30064. }
  30065. },
  30066. back: {
  30067. height: math.unit(7, "feet"),
  30068. weight: math.unit(231, "lb"),
  30069. name: "Back",
  30070. image: {
  30071. source: "./media/characters/flux/back.svg",
  30072. extra: 1040/992,
  30073. bottom: 0/1040
  30074. }
  30075. },
  30076. frontDressed: {
  30077. height: math.unit(7, "feet"),
  30078. weight: math.unit(231, "lb"),
  30079. name: "Front (Dressed)",
  30080. image: {
  30081. source: "./media/characters/flux/front-dressed.svg",
  30082. extra: 919/871,
  30083. bottom: 0/919
  30084. }
  30085. },
  30086. feralSide: {
  30087. height: math.unit(5, "feet"),
  30088. weight: math.unit(150, "lb"),
  30089. name: "Feral (Side)",
  30090. image: {
  30091. source: "./media/characters/flux/feral-side.svg",
  30092. extra: 598/528,
  30093. bottom: 28/626
  30094. }
  30095. },
  30096. head: {
  30097. height: math.unit(1.585, "feet"),
  30098. name: "Head",
  30099. image: {
  30100. source: "./media/characters/flux/head.svg"
  30101. }
  30102. },
  30103. headSide: {
  30104. height: math.unit(1.74, "feet"),
  30105. name: "Head (Side)",
  30106. image: {
  30107. source: "./media/characters/flux/head-side.svg"
  30108. }
  30109. },
  30110. headSideFire: {
  30111. height: math.unit(1.76, "feet"),
  30112. name: "Head (Side, Fire)",
  30113. image: {
  30114. source: "./media/characters/flux/head-side-fire.svg"
  30115. }
  30116. },
  30117. },
  30118. [
  30119. {
  30120. name: "Normal",
  30121. height: math.unit(7, "feet"),
  30122. default: true
  30123. },
  30124. ]
  30125. ))
  30126. characterMakers.push(() => makeCharacter(
  30127. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30128. {
  30129. front: {
  30130. height: math.unit(9, "feet"),
  30131. weight: math.unit(1012, "lb"),
  30132. name: "Front",
  30133. image: {
  30134. source: "./media/characters/ulfra-lupae/front.svg",
  30135. extra: 1083/1011,
  30136. bottom: 67/1150
  30137. }
  30138. },
  30139. },
  30140. [
  30141. {
  30142. name: "Micro",
  30143. height: math.unit(6, "inches")
  30144. },
  30145. {
  30146. name: "Socializing",
  30147. height: math.unit(6 + 5/12, "feet")
  30148. },
  30149. {
  30150. name: "Normal",
  30151. height: math.unit(9, "feet"),
  30152. default: true
  30153. },
  30154. {
  30155. name: "Macro",
  30156. height: math.unit(150, "feet")
  30157. },
  30158. ]
  30159. ))
  30160. characterMakers.push(() => makeCharacter(
  30161. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30162. {
  30163. front: {
  30164. height: math.unit(5 + 2/12, "feet"),
  30165. weight: math.unit(120, "lb"),
  30166. name: "Front",
  30167. image: {
  30168. source: "./media/characters/timber/front.svg",
  30169. extra: 2814/2705,
  30170. bottom: 181/2995
  30171. }
  30172. },
  30173. },
  30174. [
  30175. {
  30176. name: "Normal",
  30177. height: math.unit(5 + 2/12, "feet"),
  30178. default: true
  30179. },
  30180. ]
  30181. ))
  30182. characterMakers.push(() => makeCharacter(
  30183. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30184. {
  30185. front: {
  30186. height: math.unit(5 + 7/12, "feet"),
  30187. weight: math.unit(220, "lb"),
  30188. name: "Front",
  30189. image: {
  30190. source: "./media/characters/nicki/front.svg",
  30191. extra: 453/419,
  30192. bottom: 7/460
  30193. }
  30194. },
  30195. frontAlt: {
  30196. height: math.unit(5 + 7/12, "feet"),
  30197. weight: math.unit(220, "lb"),
  30198. name: "Front-alt",
  30199. image: {
  30200. source: "./media/characters/nicki/front-alt.svg",
  30201. extra: 435/411,
  30202. bottom: 12/447
  30203. }
  30204. },
  30205. back: {
  30206. height: math.unit(5 + 7/12, "feet"),
  30207. weight: math.unit(220, "lb"),
  30208. name: "Back",
  30209. image: {
  30210. source: "./media/characters/nicki/back.svg",
  30211. extra: 440/413,
  30212. bottom: 19/459
  30213. }
  30214. },
  30215. frontNsfw: {
  30216. height: math.unit(5 + 7/12, "feet"),
  30217. weight: math.unit(220, "lb"),
  30218. name: "Front (NSFW)",
  30219. image: {
  30220. source: "./media/characters/nicki/front-nsfw.svg",
  30221. extra: 453/419,
  30222. bottom: 7/460
  30223. }
  30224. },
  30225. frontNsfwAlt: {
  30226. height: math.unit(5 + 7/12, "feet"),
  30227. weight: math.unit(220, "lb"),
  30228. name: "Front (Alt, NSFW)",
  30229. image: {
  30230. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30231. extra: 435/411,
  30232. bottom: 12/447
  30233. }
  30234. },
  30235. backNsfw: {
  30236. height: math.unit(5 + 7/12, "feet"),
  30237. weight: math.unit(220, "lb"),
  30238. name: "Back (NSFW)",
  30239. image: {
  30240. source: "./media/characters/nicki/back-nsfw.svg",
  30241. extra: 440/413,
  30242. bottom: 19/459
  30243. }
  30244. },
  30245. head: {
  30246. height: math.unit(2.1, "feet"),
  30247. name: "Head",
  30248. image: {
  30249. source: "./media/characters/nicki/head.svg"
  30250. }
  30251. },
  30252. paw: {
  30253. height: math.unit(1.88, "feet"),
  30254. name: "Paw",
  30255. image: {
  30256. source: "./media/characters/nicki/paw.svg"
  30257. }
  30258. },
  30259. },
  30260. [
  30261. {
  30262. name: "Normal",
  30263. height: math.unit(5 + 7/12, "feet"),
  30264. default: true
  30265. },
  30266. ]
  30267. ))
  30268. characterMakers.push(() => makeCharacter(
  30269. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30270. {
  30271. front: {
  30272. height: math.unit(7 + 10/12, "feet"),
  30273. weight: math.unit(3.5, "tons"),
  30274. name: "Front",
  30275. image: {
  30276. source: "./media/characters/lee/front.svg",
  30277. extra: 1773/1615,
  30278. bottom: 86/1859
  30279. }
  30280. },
  30281. hand: {
  30282. height: math.unit(1.78, "feet"),
  30283. name: "Hand",
  30284. image: {
  30285. source: "./media/characters/lee/hand.svg"
  30286. }
  30287. },
  30288. maw: {
  30289. height: math.unit(1.18, "feet"),
  30290. name: "Maw",
  30291. image: {
  30292. source: "./media/characters/lee/maw.svg"
  30293. }
  30294. },
  30295. },
  30296. [
  30297. {
  30298. name: "Normal",
  30299. height: math.unit(7 + 10/12, "feet"),
  30300. default: true
  30301. },
  30302. ]
  30303. ))
  30304. characterMakers.push(() => makeCharacter(
  30305. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30306. {
  30307. front: {
  30308. height: math.unit(9, "feet"),
  30309. name: "Front",
  30310. image: {
  30311. source: "./media/characters/guti/front.svg",
  30312. extra: 4551/4355,
  30313. bottom: 123/4674
  30314. }
  30315. },
  30316. tongue: {
  30317. height: math.unit(1, "feet"),
  30318. name: "Tongue",
  30319. image: {
  30320. source: "./media/characters/guti/tongue.svg"
  30321. }
  30322. },
  30323. paw: {
  30324. height: math.unit(1.18, "feet"),
  30325. name: "Paw",
  30326. image: {
  30327. source: "./media/characters/guti/paw.svg"
  30328. }
  30329. },
  30330. },
  30331. [
  30332. {
  30333. name: "Normal",
  30334. height: math.unit(9, "feet"),
  30335. default: true
  30336. },
  30337. ]
  30338. ))
  30339. characterMakers.push(() => makeCharacter(
  30340. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30341. {
  30342. side: {
  30343. height: math.unit(5, "meters"),
  30344. name: "Side",
  30345. image: {
  30346. source: "./media/characters/vesper/side.svg",
  30347. extra: 1605/1518,
  30348. bottom: 0/1605
  30349. }
  30350. },
  30351. },
  30352. [
  30353. {
  30354. name: "Small",
  30355. height: math.unit(5, "meters")
  30356. },
  30357. {
  30358. name: "Sage",
  30359. height: math.unit(100, "meters"),
  30360. default: true
  30361. },
  30362. {
  30363. name: "Fun Size",
  30364. height: math.unit(600, "meters")
  30365. },
  30366. {
  30367. name: "Goddess",
  30368. height: math.unit(20000, "km")
  30369. },
  30370. {
  30371. name: "Maximum",
  30372. height: math.unit(5, "galaxies")
  30373. },
  30374. ]
  30375. ))
  30376. characterMakers.push(() => makeCharacter(
  30377. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30378. {
  30379. front: {
  30380. height: math.unit(6 + 3/12, "feet"),
  30381. weight: math.unit(190, "lb"),
  30382. name: "Front",
  30383. image: {
  30384. source: "./media/characters/gawain/front.svg",
  30385. extra: 2222/2139,
  30386. bottom: 90/2312
  30387. }
  30388. },
  30389. back: {
  30390. height: math.unit(6 + 3/12, "feet"),
  30391. weight: math.unit(190, "lb"),
  30392. name: "Back",
  30393. image: {
  30394. source: "./media/characters/gawain/back.svg",
  30395. extra: 2199/2111,
  30396. bottom: 73/2272
  30397. }
  30398. },
  30399. },
  30400. [
  30401. {
  30402. name: "Normal",
  30403. height: math.unit(6 + 3/12, "feet"),
  30404. default: true
  30405. },
  30406. ]
  30407. ))
  30408. characterMakers.push(() => makeCharacter(
  30409. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30410. {
  30411. side: {
  30412. height: math.unit(3.5, "meters"),
  30413. weight: math.unit(16000, "lb"),
  30414. name: "Side",
  30415. image: {
  30416. source: "./media/characters/dascalti/side.svg",
  30417. extra: 392/273,
  30418. bottom: 47/439
  30419. }
  30420. },
  30421. breath: {
  30422. height: math.unit(7.4, "feet"),
  30423. name: "Breath",
  30424. image: {
  30425. source: "./media/characters/dascalti/breath.svg"
  30426. }
  30427. },
  30428. fed: {
  30429. height: math.unit(3.6, "meters"),
  30430. weight: math.unit(16000, "lb"),
  30431. name: "Fed",
  30432. image: {
  30433. source: "./media/characters/dascalti/fed.svg",
  30434. extra: 1419/820,
  30435. bottom: 95/1514
  30436. }
  30437. },
  30438. },
  30439. [
  30440. {
  30441. name: "Normal",
  30442. height: math.unit(3.5, "meters"),
  30443. default: true
  30444. },
  30445. ]
  30446. ))
  30447. characterMakers.push(() => makeCharacter(
  30448. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30449. {
  30450. front: {
  30451. height: math.unit(3 + 5/12, "feet"),
  30452. name: "Front",
  30453. image: {
  30454. source: "./media/characters/mauve/front.svg",
  30455. extra: 1126/1033,
  30456. bottom: 65/1191
  30457. }
  30458. },
  30459. side: {
  30460. height: math.unit(3 + 5/12, "feet"),
  30461. name: "Side",
  30462. image: {
  30463. source: "./media/characters/mauve/side.svg",
  30464. extra: 1089/1001,
  30465. bottom: 29/1118
  30466. }
  30467. },
  30468. back: {
  30469. height: math.unit(3 + 5/12, "feet"),
  30470. name: "Back",
  30471. image: {
  30472. source: "./media/characters/mauve/back.svg",
  30473. extra: 1173/1053,
  30474. bottom: 109/1282
  30475. }
  30476. },
  30477. },
  30478. [
  30479. {
  30480. name: "Normal",
  30481. height: math.unit(3 + 5/12, "feet"),
  30482. default: true
  30483. },
  30484. ]
  30485. ))
  30486. characterMakers.push(() => makeCharacter(
  30487. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30488. {
  30489. front: {
  30490. height: math.unit(6 + 3/12, "feet"),
  30491. weight: math.unit(430, "lb"),
  30492. name: "Front",
  30493. image: {
  30494. source: "./media/characters/carlos/front.svg",
  30495. extra: 1964/1913,
  30496. bottom: 70/2034
  30497. }
  30498. },
  30499. },
  30500. [
  30501. {
  30502. name: "Normal",
  30503. height: math.unit(6 + 3/12, "feet"),
  30504. default: true
  30505. },
  30506. ]
  30507. ))
  30508. characterMakers.push(() => makeCharacter(
  30509. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30510. {
  30511. back: {
  30512. height: math.unit(5 + 10/12, "feet"),
  30513. weight: math.unit(200, "lb"),
  30514. name: "Back",
  30515. image: {
  30516. source: "./media/characters/jax/back.svg",
  30517. extra: 764/739,
  30518. bottom: 25/789
  30519. }
  30520. },
  30521. },
  30522. [
  30523. {
  30524. name: "Normal",
  30525. height: math.unit(5 + 10/12, "feet"),
  30526. default: true
  30527. },
  30528. ]
  30529. ))
  30530. characterMakers.push(() => makeCharacter(
  30531. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30532. {
  30533. front: {
  30534. height: math.unit(8, "feet"),
  30535. weight: math.unit(250, "lb"),
  30536. name: "Front",
  30537. image: {
  30538. source: "./media/characters/eikthynir/front.svg",
  30539. extra: 1332/1166,
  30540. bottom: 82/1414
  30541. }
  30542. },
  30543. back: {
  30544. height: math.unit(8, "feet"),
  30545. weight: math.unit(250, "lb"),
  30546. name: "Back",
  30547. image: {
  30548. source: "./media/characters/eikthynir/back.svg",
  30549. extra: 1342/1190,
  30550. bottom: 19/1361
  30551. }
  30552. },
  30553. dick: {
  30554. height: math.unit(2.35, "feet"),
  30555. name: "Dick",
  30556. image: {
  30557. source: "./media/characters/eikthynir/dick.svg"
  30558. }
  30559. },
  30560. },
  30561. [
  30562. {
  30563. name: "Normal",
  30564. height: math.unit(8, "feet"),
  30565. default: true
  30566. },
  30567. ]
  30568. ))
  30569. characterMakers.push(() => makeCharacter(
  30570. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30571. {
  30572. front: {
  30573. height: math.unit(99, "meters"),
  30574. weight: math.unit(13000, "tons"),
  30575. name: "Front",
  30576. image: {
  30577. source: "./media/characters/zlmos/front.svg",
  30578. extra: 2202/1992,
  30579. bottom: 315/2517
  30580. }
  30581. },
  30582. },
  30583. [
  30584. {
  30585. name: "Macro",
  30586. height: math.unit(99, "meters"),
  30587. default: true
  30588. },
  30589. ]
  30590. ))
  30591. characterMakers.push(() => makeCharacter(
  30592. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30593. {
  30594. front: {
  30595. height: math.unit(6 + 5/12, "feet"),
  30596. name: "Front",
  30597. image: {
  30598. source: "./media/characters/purri/front.svg",
  30599. extra: 1698/1610,
  30600. bottom: 32/1730
  30601. }
  30602. },
  30603. frontAlt: {
  30604. height: math.unit(6 + 5/12, "feet"),
  30605. name: "Front (Alt)",
  30606. image: {
  30607. source: "./media/characters/purri/front-alt.svg",
  30608. extra: 450/420,
  30609. bottom: 26/476
  30610. }
  30611. },
  30612. boots: {
  30613. height: math.unit(5.5, "feet"),
  30614. name: "Boots",
  30615. image: {
  30616. source: "./media/characters/purri/boots.svg",
  30617. extra: 905/853,
  30618. bottom: 18/923
  30619. }
  30620. },
  30621. lying: {
  30622. height: math.unit(2, "feet"),
  30623. name: "Lying",
  30624. image: {
  30625. source: "./media/characters/purri/lying.svg",
  30626. extra: 940/843,
  30627. bottom: 146/1086
  30628. }
  30629. },
  30630. devious: {
  30631. height: math.unit(1.77, "feet"),
  30632. name: "Devious",
  30633. image: {
  30634. source: "./media/characters/purri/devious.svg",
  30635. extra: 1440/1155,
  30636. bottom: 147/1587
  30637. }
  30638. },
  30639. bean: {
  30640. height: math.unit(1.94, "feet"),
  30641. name: "Bean",
  30642. image: {
  30643. source: "./media/characters/purri/bean.svg"
  30644. }
  30645. },
  30646. },
  30647. [
  30648. {
  30649. name: "Micro",
  30650. height: math.unit(1, "mm")
  30651. },
  30652. {
  30653. name: "Normal",
  30654. height: math.unit(6 + 5/12, "feet"),
  30655. default: true
  30656. },
  30657. {
  30658. name: "Macro :3c",
  30659. height: math.unit(2, "miles")
  30660. },
  30661. ]
  30662. ))
  30663. characterMakers.push(() => makeCharacter(
  30664. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  30665. {
  30666. front: {
  30667. height: math.unit(6 + 2/12, "feet"),
  30668. weight: math.unit(250, "lb"),
  30669. name: "Front",
  30670. image: {
  30671. source: "./media/characters/moonlight/front.svg",
  30672. extra: 1044/908,
  30673. bottom: 56/1100
  30674. }
  30675. },
  30676. paw: {
  30677. height: math.unit(1, "feet"),
  30678. name: "Paw",
  30679. image: {
  30680. source: "./media/characters/moonlight/paw.svg"
  30681. }
  30682. },
  30683. paws: {
  30684. height: math.unit(0.98, "feet"),
  30685. name: "Paws",
  30686. image: {
  30687. source: "./media/characters/moonlight/paws.svg",
  30688. extra: 939/939,
  30689. bottom: 50/989
  30690. }
  30691. },
  30692. mouth: {
  30693. height: math.unit(0.48, "feet"),
  30694. name: "Mouth",
  30695. image: {
  30696. source: "./media/characters/moonlight/mouth.svg"
  30697. }
  30698. },
  30699. },
  30700. [
  30701. {
  30702. name: "Normal",
  30703. height: math.unit(6 + 2/12, "feet"),
  30704. default: true
  30705. },
  30706. {
  30707. name: "Macro",
  30708. height: math.unit(300, "feet")
  30709. },
  30710. {
  30711. name: "Macro+",
  30712. height: math.unit(1, "mile")
  30713. },
  30714. {
  30715. name: "Mt. Moon",
  30716. height: math.unit(5, "miles")
  30717. },
  30718. {
  30719. name: "Megamacro",
  30720. height: math.unit(15, "miles")
  30721. },
  30722. ]
  30723. ))
  30724. characterMakers.push(() => makeCharacter(
  30725. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  30726. {
  30727. back: {
  30728. height: math.unit(6, "feet"),
  30729. weight: math.unit(150, "lb"),
  30730. name: "Back",
  30731. image: {
  30732. source: "./media/characters/sylen/back.svg",
  30733. extra: 1335/1273,
  30734. bottom: 107/1442
  30735. }
  30736. },
  30737. },
  30738. [
  30739. {
  30740. name: "Normal",
  30741. height: math.unit(5 + 5/12, "feet")
  30742. },
  30743. {
  30744. name: "Megamacro",
  30745. height: math.unit(3, "miles"),
  30746. default: true
  30747. },
  30748. ]
  30749. ))
  30750. characterMakers.push(() => makeCharacter(
  30751. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  30752. {
  30753. front: {
  30754. height: math.unit(6, "feet"),
  30755. weight: math.unit(190, "lb"),
  30756. name: "Front",
  30757. image: {
  30758. source: "./media/characters/huttser/front.svg",
  30759. extra: 1152/1058,
  30760. bottom: 23/1175
  30761. }
  30762. },
  30763. side: {
  30764. height: math.unit(6, "feet"),
  30765. weight: math.unit(190, "lb"),
  30766. name: "Side",
  30767. image: {
  30768. source: "./media/characters/huttser/side.svg",
  30769. extra: 1174/1065,
  30770. bottom: 18/1192
  30771. }
  30772. },
  30773. back: {
  30774. height: math.unit(6, "feet"),
  30775. weight: math.unit(190, "lb"),
  30776. name: "Back",
  30777. image: {
  30778. source: "./media/characters/huttser/back.svg",
  30779. extra: 1158/1056,
  30780. bottom: 12/1170
  30781. }
  30782. },
  30783. },
  30784. [
  30785. ]
  30786. ))
  30787. characterMakers.push(() => makeCharacter(
  30788. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  30789. {
  30790. side: {
  30791. height: math.unit(12 + 9/12, "feet"),
  30792. weight: math.unit(15000, "lb"),
  30793. name: "Side",
  30794. image: {
  30795. source: "./media/characters/faan/side.svg",
  30796. extra: 2747/2697,
  30797. bottom: 0/2747
  30798. }
  30799. },
  30800. front: {
  30801. height: math.unit(12 + 9/12, "feet"),
  30802. weight: math.unit(15000, "lb"),
  30803. name: "Front",
  30804. image: {
  30805. source: "./media/characters/faan/front.svg",
  30806. extra: 607/571,
  30807. bottom: 24/631
  30808. }
  30809. },
  30810. head: {
  30811. height: math.unit(2.85, "feet"),
  30812. name: "Head",
  30813. image: {
  30814. source: "./media/characters/faan/head.svg"
  30815. }
  30816. },
  30817. headAlt: {
  30818. height: math.unit(3.13, "feet"),
  30819. name: "Head-alt",
  30820. image: {
  30821. source: "./media/characters/faan/head-alt.svg"
  30822. }
  30823. },
  30824. },
  30825. [
  30826. {
  30827. name: "Normal",
  30828. height: math.unit(12 + 9/12, "feet"),
  30829. default: true
  30830. },
  30831. ]
  30832. ))
  30833. characterMakers.push(() => makeCharacter(
  30834. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  30835. {
  30836. front: {
  30837. height: math.unit(6, "feet"),
  30838. weight: math.unit(300, "lb"),
  30839. name: "Front",
  30840. image: {
  30841. source: "./media/characters/tanio/front.svg",
  30842. extra: 711/673,
  30843. bottom: 25/736
  30844. }
  30845. },
  30846. },
  30847. [
  30848. {
  30849. name: "Normal",
  30850. height: math.unit(6, "feet"),
  30851. default: true
  30852. },
  30853. ]
  30854. ))
  30855. characterMakers.push(() => makeCharacter(
  30856. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  30857. {
  30858. front: {
  30859. height: math.unit(3, "inches"),
  30860. name: "Front",
  30861. image: {
  30862. source: "./media/characters/noboru/front.svg",
  30863. extra: 1039/932,
  30864. bottom: 18/1057
  30865. }
  30866. },
  30867. },
  30868. [
  30869. {
  30870. name: "Micro",
  30871. height: math.unit(3, "inches"),
  30872. default: true
  30873. },
  30874. ]
  30875. ))
  30876. characterMakers.push(() => makeCharacter(
  30877. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  30878. {
  30879. front: {
  30880. height: math.unit(1.85, "meters"),
  30881. weight: math.unit(80, "kg"),
  30882. name: "Front",
  30883. image: {
  30884. source: "./media/characters/daniel-barrett/front.svg",
  30885. extra: 355/337,
  30886. bottom: 9/364
  30887. }
  30888. },
  30889. },
  30890. [
  30891. {
  30892. name: "Pico",
  30893. height: math.unit(0.0433, "mm")
  30894. },
  30895. {
  30896. name: "Nano",
  30897. height: math.unit(1.5, "mm")
  30898. },
  30899. {
  30900. name: "Micro",
  30901. height: math.unit(5.3, "cm"),
  30902. default: true
  30903. },
  30904. {
  30905. name: "Normal",
  30906. height: math.unit(1.85, "meters")
  30907. },
  30908. {
  30909. name: "Macro",
  30910. height: math.unit(64.7, "meters")
  30911. },
  30912. {
  30913. name: "Megamacro",
  30914. height: math.unit(2.26, "km")
  30915. },
  30916. {
  30917. name: "Gigamacro",
  30918. height: math.unit(79, "km")
  30919. },
  30920. {
  30921. name: "Teramacro",
  30922. height: math.unit(2765, "km")
  30923. },
  30924. {
  30925. name: "Petamacro",
  30926. height: math.unit(96678, "km")
  30927. },
  30928. ]
  30929. ))
  30930. //characters
  30931. function makeCharacters() {
  30932. const results = [];
  30933. characterMakers.forEach(character => {
  30934. results.push(character());
  30935. });
  30936. return results;
  30937. }