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.
 
 
 

31996 lines
802 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. "slime-dragon": {
  1420. name: "Slime Dragon",
  1421. parents: ["dragon"]
  1422. },
  1423. "enderman": {
  1424. name: "Enderman",
  1425. parents: ["monster"]
  1426. },
  1427. "gremlin": {
  1428. name: "Gremlin",
  1429. parents: ["monster"]
  1430. },
  1431. }
  1432. //species
  1433. function getSpeciesInfo(speciesList) {
  1434. let result = new Set();
  1435. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1436. result.add(entry)
  1437. });
  1438. return Array.from(result);
  1439. };
  1440. function getSpeciesInfoHelper(species) {
  1441. if (!speciesData[species]) {
  1442. console.warn(species + " doesn't exist");
  1443. return [];
  1444. }
  1445. if (speciesData[species].parents) {
  1446. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1447. } else {
  1448. return [species];
  1449. }
  1450. }
  1451. characterMakers.push(() => makeCharacter(
  1452. {
  1453. name: "Fen",
  1454. species: ["crux"],
  1455. description: {
  1456. title: "Bio",
  1457. text: "Very furry. Sheds on everything."
  1458. },
  1459. tags: [
  1460. "anthro",
  1461. "goo"
  1462. ]
  1463. },
  1464. {
  1465. back: {
  1466. height: math.unit(2.2428, "meter"),
  1467. weight: math.unit(124.738, "kg"),
  1468. name: "Back",
  1469. image: {
  1470. source: "./media/characters/fen/back.svg",
  1471. extra: 2024 / 1867,
  1472. bottom: 13 / 2037
  1473. },
  1474. info: {
  1475. description: {
  1476. mode: "append",
  1477. text: "\n\nHe is not currently looking at you."
  1478. }
  1479. }
  1480. },
  1481. full: {
  1482. height: math.unit(1.34, "meter"),
  1483. weight: math.unit(225, "kg"),
  1484. name: "Full",
  1485. image: {
  1486. source: "./media/characters/fen/full.svg"
  1487. },
  1488. info: {
  1489. description: {
  1490. mode: "append",
  1491. text: "\n\nMunch."
  1492. }
  1493. }
  1494. },
  1495. kneeling: {
  1496. height: math.unit(5.4, "feet"),
  1497. weight: math.unit(124.738, "kg"),
  1498. name: "Kneeling",
  1499. image: {
  1500. source: "./media/characters/fen/kneeling.svg",
  1501. extra: 563 / 507
  1502. }
  1503. },
  1504. goo: {
  1505. height: math.unit(2.8, "feet"),
  1506. weight: math.unit(125, "kg"),
  1507. capacity: math.unit(1, "people"),
  1508. name: "Goo",
  1509. image: {
  1510. source: "./media/characters/fen/goo.svg",
  1511. bottom: 116 / 613
  1512. }
  1513. },
  1514. lounging: {
  1515. height: math.unit(6.5, "feet"),
  1516. weight: math.unit(125, "kg"),
  1517. name: "Lounging",
  1518. image: {
  1519. source: "./media/characters/fen/lounging.svg"
  1520. }
  1521. },
  1522. },
  1523. [
  1524. {
  1525. name: "Normal",
  1526. height: math.unit(2.2428, "meter")
  1527. },
  1528. {
  1529. name: "Big",
  1530. height: math.unit(12, "feet")
  1531. },
  1532. {
  1533. name: "Minimacro",
  1534. height: math.unit(40, "feet"),
  1535. default: true,
  1536. info: {
  1537. description: {
  1538. mode: "append",
  1539. text: "\n\nTOO DAMN BIG"
  1540. }
  1541. }
  1542. },
  1543. {
  1544. name: "Macro",
  1545. height: math.unit(100, "feet"),
  1546. info: {
  1547. description: {
  1548. mode: "append",
  1549. text: "\n\nTOO DAMN BIG"
  1550. }
  1551. }
  1552. },
  1553. {
  1554. name: "Macro+",
  1555. height: math.unit(300, "feet")
  1556. },
  1557. {
  1558. name: "Megamacro",
  1559. height: math.unit(2, "miles")
  1560. }
  1561. ]
  1562. ))
  1563. characterMakers.push(() => makeCharacter(
  1564. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1565. {
  1566. front: {
  1567. height: math.unit(183, "cm"),
  1568. weight: math.unit(80, "kg"),
  1569. name: "Front",
  1570. image: {
  1571. source: "./media/characters/sofia-fluttertail/front.svg",
  1572. bottom: 0.01,
  1573. extra: 2154 / 2081
  1574. }
  1575. },
  1576. frontAlt: {
  1577. height: math.unit(183, "cm"),
  1578. weight: math.unit(80, "kg"),
  1579. name: "Front (alt)",
  1580. image: {
  1581. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1582. }
  1583. },
  1584. back: {
  1585. height: math.unit(183, "cm"),
  1586. weight: math.unit(80, "kg"),
  1587. name: "Back",
  1588. image: {
  1589. source: "./media/characters/sofia-fluttertail/back.svg"
  1590. }
  1591. },
  1592. kneeling: {
  1593. height: math.unit(125, "cm"),
  1594. weight: math.unit(80, "kg"),
  1595. name: "Kneeling",
  1596. image: {
  1597. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1598. extra: 1033 / 977,
  1599. bottom: 23.7 / 1057
  1600. }
  1601. },
  1602. maw: {
  1603. height: math.unit(183 / 5, "cm"),
  1604. name: "Maw",
  1605. image: {
  1606. source: "./media/characters/sofia-fluttertail/maw.svg"
  1607. }
  1608. },
  1609. mawcloseup: {
  1610. height: math.unit(183 / 5 * 0.41, "cm"),
  1611. name: "Maw (Closeup)",
  1612. image: {
  1613. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1614. }
  1615. },
  1616. paws: {
  1617. height: math.unit(1.17, "feet"),
  1618. name: "Paws",
  1619. image: {
  1620. source: "./media/characters/sofia-fluttertail/paws.svg",
  1621. extra: 851 / 851,
  1622. bottom: 17 / 868
  1623. }
  1624. },
  1625. },
  1626. [
  1627. {
  1628. name: "Normal",
  1629. height: math.unit(1.83, "meter")
  1630. },
  1631. {
  1632. name: "Size Thief",
  1633. height: math.unit(18, "feet")
  1634. },
  1635. {
  1636. name: "50 Foot Collie",
  1637. height: math.unit(50, "feet")
  1638. },
  1639. {
  1640. name: "Macro",
  1641. height: math.unit(96, "feet"),
  1642. default: true
  1643. },
  1644. {
  1645. name: "Megamerger",
  1646. height: math.unit(650, "feet")
  1647. },
  1648. ]
  1649. ))
  1650. characterMakers.push(() => makeCharacter(
  1651. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1652. {
  1653. front: {
  1654. height: math.unit(7, "feet"),
  1655. weight: math.unit(100, "kg"),
  1656. name: "Front",
  1657. image: {
  1658. source: "./media/characters/march/front.svg",
  1659. extra: 1,
  1660. bottom: 0.015
  1661. }
  1662. },
  1663. foot: {
  1664. height: math.unit(0.9, "feet"),
  1665. name: "Foot",
  1666. image: {
  1667. source: "./media/characters/march/foot.svg"
  1668. }
  1669. },
  1670. },
  1671. [
  1672. {
  1673. name: "Normal",
  1674. height: math.unit(7.9, "feet")
  1675. },
  1676. {
  1677. name: "Macro",
  1678. height: math.unit(220, "meters")
  1679. },
  1680. {
  1681. name: "Megamacro",
  1682. height: math.unit(2.98, "km"),
  1683. default: true
  1684. },
  1685. {
  1686. name: "Gigamacro",
  1687. height: math.unit(15963, "km")
  1688. },
  1689. {
  1690. name: "Teramacro",
  1691. height: math.unit(2980000000, "km")
  1692. },
  1693. {
  1694. name: "Examacro",
  1695. height: math.unit(250, "parsecs")
  1696. },
  1697. ]
  1698. ))
  1699. characterMakers.push(() => makeCharacter(
  1700. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1701. {
  1702. front: {
  1703. height: math.unit(6, "feet"),
  1704. weight: math.unit(60, "kg"),
  1705. name: "Front",
  1706. image: {
  1707. source: "./media/characters/noir/front.svg",
  1708. extra: 1,
  1709. bottom: 0.032
  1710. }
  1711. },
  1712. },
  1713. [
  1714. {
  1715. name: "Normal",
  1716. height: math.unit(6.6, "feet")
  1717. },
  1718. {
  1719. name: "Macro",
  1720. height: math.unit(500, "feet")
  1721. },
  1722. {
  1723. name: "Megamacro",
  1724. height: math.unit(2.5, "km"),
  1725. default: true
  1726. },
  1727. {
  1728. name: "Gigamacro",
  1729. height: math.unit(22500, "km")
  1730. },
  1731. {
  1732. name: "Teramacro",
  1733. height: math.unit(2500000000, "km")
  1734. },
  1735. {
  1736. name: "Examacro",
  1737. height: math.unit(200, "parsecs")
  1738. },
  1739. ]
  1740. ))
  1741. characterMakers.push(() => makeCharacter(
  1742. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1743. {
  1744. front: {
  1745. height: math.unit(7, "feet"),
  1746. weight: math.unit(100, "kg"),
  1747. name: "Front",
  1748. image: {
  1749. source: "./media/characters/okuri/front.svg",
  1750. extra: 1,
  1751. bottom: 0.037
  1752. }
  1753. },
  1754. back: {
  1755. height: math.unit(7, "feet"),
  1756. weight: math.unit(100, "kg"),
  1757. name: "Back",
  1758. image: {
  1759. source: "./media/characters/okuri/back.svg",
  1760. extra: 1,
  1761. bottom: 0.007
  1762. }
  1763. },
  1764. },
  1765. [
  1766. {
  1767. name: "Megamacro",
  1768. height: math.unit(100, "miles"),
  1769. default: true
  1770. },
  1771. ]
  1772. ))
  1773. characterMakers.push(() => makeCharacter(
  1774. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1775. {
  1776. front: {
  1777. height: math.unit(7, "feet"),
  1778. weight: math.unit(100, "kg"),
  1779. name: "Front",
  1780. image: {
  1781. source: "./media/characters/manny/front.svg",
  1782. extra: 1,
  1783. bottom: 0.06
  1784. }
  1785. },
  1786. back: {
  1787. height: math.unit(7, "feet"),
  1788. weight: math.unit(100, "kg"),
  1789. name: "Back",
  1790. image: {
  1791. source: "./media/characters/manny/back.svg",
  1792. extra: 1,
  1793. bottom: 0.014
  1794. }
  1795. },
  1796. },
  1797. [
  1798. {
  1799. name: "Normal",
  1800. height: math.unit(7, "feet"),
  1801. },
  1802. {
  1803. name: "Macro",
  1804. height: math.unit(78, "feet"),
  1805. default: true
  1806. },
  1807. {
  1808. name: "Macro+",
  1809. height: math.unit(300, "meters")
  1810. },
  1811. {
  1812. name: "Macro++",
  1813. height: math.unit(2400, "meters")
  1814. },
  1815. {
  1816. name: "Megamacro",
  1817. height: math.unit(5167, "meters")
  1818. },
  1819. {
  1820. name: "Gigamacro",
  1821. height: math.unit(41769, "miles")
  1822. },
  1823. ]
  1824. ))
  1825. characterMakers.push(() => makeCharacter(
  1826. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1827. {
  1828. front: {
  1829. height: math.unit(7, "feet"),
  1830. weight: math.unit(100, "kg"),
  1831. name: "Front",
  1832. image: {
  1833. source: "./media/characters/adake/front-1.svg"
  1834. }
  1835. },
  1836. frontAlt: {
  1837. height: math.unit(7, "feet"),
  1838. weight: math.unit(100, "kg"),
  1839. name: "Front (Alt)",
  1840. image: {
  1841. source: "./media/characters/adake/front-2.svg",
  1842. extra: 1,
  1843. bottom: 0.01
  1844. }
  1845. },
  1846. back: {
  1847. height: math.unit(7, "feet"),
  1848. weight: math.unit(100, "kg"),
  1849. name: "Back",
  1850. image: {
  1851. source: "./media/characters/adake/back.svg",
  1852. }
  1853. },
  1854. kneel: {
  1855. height: math.unit(5.385, "feet"),
  1856. weight: math.unit(100, "kg"),
  1857. name: "Kneeling",
  1858. image: {
  1859. source: "./media/characters/adake/kneel.svg",
  1860. bottom: 0.052
  1861. }
  1862. },
  1863. },
  1864. [
  1865. {
  1866. name: "Normal",
  1867. height: math.unit(7, "feet"),
  1868. },
  1869. {
  1870. name: "Macro",
  1871. height: math.unit(78, "feet"),
  1872. default: true
  1873. },
  1874. {
  1875. name: "Macro+",
  1876. height: math.unit(300, "meters")
  1877. },
  1878. {
  1879. name: "Macro++",
  1880. height: math.unit(2400, "meters")
  1881. },
  1882. {
  1883. name: "Megamacro",
  1884. height: math.unit(5167, "meters")
  1885. },
  1886. {
  1887. name: "Gigamacro",
  1888. height: math.unit(41769, "miles")
  1889. },
  1890. ]
  1891. ))
  1892. characterMakers.push(() => makeCharacter(
  1893. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1894. {
  1895. front: {
  1896. height: math.unit(1.65, "meters"),
  1897. weight: math.unit(50, "kg"),
  1898. name: "Front",
  1899. image: {
  1900. source: "./media/characters/elijah/front.svg",
  1901. extra: 858 / 830,
  1902. bottom: 95.5 / 953.8559
  1903. }
  1904. },
  1905. back: {
  1906. height: math.unit(1.65, "meters"),
  1907. weight: math.unit(50, "kg"),
  1908. name: "Back",
  1909. image: {
  1910. source: "./media/characters/elijah/back.svg",
  1911. extra: 895 / 850,
  1912. bottom: 5.3 / 897.956
  1913. }
  1914. },
  1915. frontNsfw: {
  1916. height: math.unit(1.65, "meters"),
  1917. weight: math.unit(50, "kg"),
  1918. name: "Front (NSFW)",
  1919. image: {
  1920. source: "./media/characters/elijah/front-nsfw.svg",
  1921. extra: 858 / 830,
  1922. bottom: 95.5 / 953.8559
  1923. }
  1924. },
  1925. backNsfw: {
  1926. height: math.unit(1.65, "meters"),
  1927. weight: math.unit(50, "kg"),
  1928. name: "Back (NSFW)",
  1929. image: {
  1930. source: "./media/characters/elijah/back-nsfw.svg",
  1931. extra: 895 / 850,
  1932. bottom: 5.3 / 897.956
  1933. }
  1934. },
  1935. dick: {
  1936. height: math.unit(1, "feet"),
  1937. name: "Dick",
  1938. image: {
  1939. source: "./media/characters/elijah/dick.svg"
  1940. }
  1941. },
  1942. beakOpen: {
  1943. height: math.unit(1.25, "feet"),
  1944. name: "Beak (Open)",
  1945. image: {
  1946. source: "./media/characters/elijah/beak-open.svg"
  1947. }
  1948. },
  1949. beakShut: {
  1950. height: math.unit(1.25, "feet"),
  1951. name: "Beak (Shut)",
  1952. image: {
  1953. source: "./media/characters/elijah/beak-shut.svg"
  1954. }
  1955. },
  1956. footFlexing: {
  1957. height: math.unit(1.61, "feet"),
  1958. name: "Foot (Flexing)",
  1959. image: {
  1960. source: "./media/characters/elijah/foot-flexing.svg"
  1961. }
  1962. },
  1963. footStepping: {
  1964. height: math.unit(1.44, "feet"),
  1965. name: "Foot (Stepping)",
  1966. image: {
  1967. source: "./media/characters/elijah/foot-stepping.svg"
  1968. }
  1969. },
  1970. plantigradeLeg: {
  1971. height: math.unit(2.34, "feet"),
  1972. name: "Plantigrade Leg",
  1973. image: {
  1974. source: "./media/characters/elijah/plantigrade-leg.svg"
  1975. }
  1976. },
  1977. plantigradeFootLeft: {
  1978. height: math.unit(0.9, "feet"),
  1979. name: "Plantigrade Foot (Left)",
  1980. image: {
  1981. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1982. }
  1983. },
  1984. plantigradeFootRight: {
  1985. height: math.unit(0.9, "feet"),
  1986. name: "Plantigrade Foot (Right)",
  1987. image: {
  1988. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1989. }
  1990. },
  1991. },
  1992. [
  1993. {
  1994. name: "Normal",
  1995. height: math.unit(1.65, "meters")
  1996. },
  1997. {
  1998. name: "Macro",
  1999. height: math.unit(55, "meters"),
  2000. default: true
  2001. },
  2002. {
  2003. name: "Macro+",
  2004. height: math.unit(105, "meters")
  2005. },
  2006. ]
  2007. ))
  2008. characterMakers.push(() => makeCharacter(
  2009. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2010. {
  2011. front: {
  2012. height: math.unit(11, "feet"),
  2013. weight: math.unit(80, "kg"),
  2014. name: "Front",
  2015. image: {
  2016. source: "./media/characters/rai/front.svg",
  2017. extra: 1,
  2018. bottom: 0.03
  2019. }
  2020. },
  2021. side: {
  2022. height: math.unit(11, "feet"),
  2023. weight: math.unit(80, "kg"),
  2024. name: "Side",
  2025. image: {
  2026. source: "./media/characters/rai/side.svg"
  2027. }
  2028. },
  2029. back: {
  2030. height: math.unit(11, "feet"),
  2031. weight: math.unit(80, "lb"),
  2032. name: "Back",
  2033. image: {
  2034. source: "./media/characters/rai/back.svg",
  2035. extra: 1,
  2036. bottom: 0.01
  2037. }
  2038. },
  2039. feral: {
  2040. height: math.unit(11, "feet"),
  2041. weight: math.unit(800, "lb"),
  2042. name: "Feral",
  2043. image: {
  2044. source: "./media/characters/rai/feral.svg",
  2045. extra: 1050 / 659,
  2046. bottom: 0.07
  2047. }
  2048. },
  2049. dragon: {
  2050. height: math.unit(23, "feet"),
  2051. weight: math.unit(50000, "lb"),
  2052. name: "Dragon",
  2053. image: {
  2054. source: "./media/characters/rai/dragon.svg",
  2055. extra: 2498 / 2030,
  2056. bottom: 85.2 / 2584
  2057. }
  2058. },
  2059. maw: {
  2060. height: math.unit(6 / 3.81416, "feet"),
  2061. name: "Maw",
  2062. image: {
  2063. source: "./media/characters/rai/maw.svg"
  2064. }
  2065. },
  2066. },
  2067. [
  2068. {
  2069. name: "Normal",
  2070. height: math.unit(11, "feet")
  2071. },
  2072. {
  2073. name: "Macro",
  2074. height: math.unit(302, "feet"),
  2075. default: true
  2076. },
  2077. ]
  2078. ))
  2079. characterMakers.push(() => makeCharacter(
  2080. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2081. {
  2082. frontDressed: {
  2083. height: math.unit(216, "feet"),
  2084. weight: math.unit(7000000, "lb"),
  2085. name: "Front (Dressed)",
  2086. image: {
  2087. source: "./media/characters/jazzy/front-dressed.svg",
  2088. extra: 2738 / 2651,
  2089. bottom: 41.8 / 2786
  2090. }
  2091. },
  2092. backDressed: {
  2093. height: math.unit(216, "feet"),
  2094. weight: math.unit(7000000, "lb"),
  2095. name: "Back (Dressed)",
  2096. image: {
  2097. source: "./media/characters/jazzy/back-dressed.svg",
  2098. extra: 2775 / 2673,
  2099. bottom: 36.8 / 2817
  2100. }
  2101. },
  2102. front: {
  2103. height: math.unit(216, "feet"),
  2104. weight: math.unit(7000000, "lb"),
  2105. name: "Front",
  2106. image: {
  2107. source: "./media/characters/jazzy/front.svg",
  2108. extra: 2738 / 2651,
  2109. bottom: 41.8 / 2786
  2110. }
  2111. },
  2112. back: {
  2113. height: math.unit(216, "feet"),
  2114. weight: math.unit(7000000, "lb"),
  2115. name: "Back",
  2116. image: {
  2117. source: "./media/characters/jazzy/back.svg",
  2118. extra: 2775 / 2673,
  2119. bottom: 36.8 / 2817
  2120. }
  2121. },
  2122. maw: {
  2123. height: math.unit(20, "feet"),
  2124. name: "Maw",
  2125. image: {
  2126. source: "./media/characters/jazzy/maw.svg"
  2127. }
  2128. },
  2129. paws: {
  2130. height: math.unit(27.5, "feet"),
  2131. name: "Paws",
  2132. image: {
  2133. source: "./media/characters/jazzy/paws.svg"
  2134. }
  2135. },
  2136. eye: {
  2137. height: math.unit(4.4, "feet"),
  2138. name: "Eye",
  2139. image: {
  2140. source: "./media/characters/jazzy/eye.svg"
  2141. }
  2142. },
  2143. droneOffense: {
  2144. height: math.unit(9.5, "inches"),
  2145. name: "Drone (Offense)",
  2146. image: {
  2147. source: "./media/characters/jazzy/drone-offense.svg"
  2148. }
  2149. },
  2150. droneRecon: {
  2151. height: math.unit(9.5, "inches"),
  2152. name: "Drone (Recon)",
  2153. image: {
  2154. source: "./media/characters/jazzy/drone-recon.svg"
  2155. }
  2156. },
  2157. droneDefense: {
  2158. height: math.unit(9.5, "inches"),
  2159. name: "Drone (Defense)",
  2160. image: {
  2161. source: "./media/characters/jazzy/drone-defense.svg"
  2162. }
  2163. },
  2164. },
  2165. [
  2166. {
  2167. name: "Macro",
  2168. height: math.unit(216, "feet"),
  2169. default: true
  2170. },
  2171. ]
  2172. ))
  2173. characterMakers.push(() => makeCharacter(
  2174. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2175. {
  2176. front: {
  2177. height: math.unit(7, "feet"),
  2178. weight: math.unit(80, "kg"),
  2179. name: "Front",
  2180. image: {
  2181. source: "./media/characters/flamm/front.svg",
  2182. extra: 1794 / 1677,
  2183. bottom: 31.7 / 1828.5
  2184. }
  2185. },
  2186. },
  2187. [
  2188. {
  2189. name: "Normal",
  2190. height: math.unit(9.5, "feet")
  2191. },
  2192. {
  2193. name: "Macro",
  2194. height: math.unit(200, "feet"),
  2195. default: true
  2196. },
  2197. ]
  2198. ))
  2199. characterMakers.push(() => makeCharacter(
  2200. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2201. {
  2202. front: {
  2203. height: math.unit(7, "feet"),
  2204. weight: math.unit(80, "kg"),
  2205. name: "Front",
  2206. image: {
  2207. source: "./media/characters/zephiro/front.svg",
  2208. extra: 2309 / 2162,
  2209. bottom: 0.069
  2210. }
  2211. },
  2212. side: {
  2213. height: math.unit(7, "feet"),
  2214. weight: math.unit(80, "kg"),
  2215. name: "Side",
  2216. image: {
  2217. source: "./media/characters/zephiro/side.svg",
  2218. extra: 2403 / 2279,
  2219. bottom: 0.015
  2220. }
  2221. },
  2222. back: {
  2223. height: math.unit(7, "feet"),
  2224. weight: math.unit(80, "kg"),
  2225. name: "Back",
  2226. image: {
  2227. source: "./media/characters/zephiro/back.svg",
  2228. extra: 2373 / 2244,
  2229. bottom: 0.013
  2230. }
  2231. },
  2232. },
  2233. [
  2234. {
  2235. name: "Micro",
  2236. height: math.unit(3, "inches")
  2237. },
  2238. {
  2239. name: "Normal",
  2240. height: math.unit(5 + 3 / 12, "feet"),
  2241. default: true
  2242. },
  2243. {
  2244. name: "Macro",
  2245. height: math.unit(118, "feet")
  2246. },
  2247. ]
  2248. ))
  2249. characterMakers.push(() => makeCharacter(
  2250. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2251. {
  2252. front: {
  2253. height: math.unit(5, "feet"),
  2254. weight: math.unit(90, "kg"),
  2255. name: "Front",
  2256. image: {
  2257. source: "./media/characters/fory/front.svg",
  2258. extra: 2862 / 2674,
  2259. bottom: 180 / 3043.8
  2260. }
  2261. },
  2262. back: {
  2263. height: math.unit(5, "feet"),
  2264. weight: math.unit(90, "kg"),
  2265. name: "Back",
  2266. image: {
  2267. source: "./media/characters/fory/back.svg",
  2268. extra: 2962 / 2791,
  2269. bottom: 106 / 3071.8
  2270. }
  2271. },
  2272. foot: {
  2273. height: math.unit(2.14, "feet"),
  2274. name: "Foot",
  2275. image: {
  2276. source: "./media/characters/fory/foot.svg"
  2277. }
  2278. },
  2279. },
  2280. [
  2281. {
  2282. name: "Normal",
  2283. height: math.unit(5, "feet")
  2284. },
  2285. {
  2286. name: "Macro",
  2287. height: math.unit(50, "feet"),
  2288. default: true
  2289. },
  2290. {
  2291. name: "Megamacro",
  2292. height: math.unit(10, "miles")
  2293. },
  2294. {
  2295. name: "Gigamacro",
  2296. height: math.unit(5, "earths")
  2297. },
  2298. ]
  2299. ))
  2300. characterMakers.push(() => makeCharacter(
  2301. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2302. {
  2303. front: {
  2304. height: math.unit(7, "feet"),
  2305. weight: math.unit(90, "kg"),
  2306. name: "Front",
  2307. image: {
  2308. source: "./media/characters/kurrikage/front.svg",
  2309. extra: 1,
  2310. bottom: 0.035
  2311. }
  2312. },
  2313. back: {
  2314. height: math.unit(7, "feet"),
  2315. weight: math.unit(90, "lb"),
  2316. name: "Back",
  2317. image: {
  2318. source: "./media/characters/kurrikage/back.svg"
  2319. }
  2320. },
  2321. paw: {
  2322. height: math.unit(1.5, "feet"),
  2323. name: "Paw",
  2324. image: {
  2325. source: "./media/characters/kurrikage/paw.svg"
  2326. }
  2327. },
  2328. staff: {
  2329. height: math.unit(6.7, "feet"),
  2330. name: "Staff",
  2331. image: {
  2332. source: "./media/characters/kurrikage/staff.svg"
  2333. }
  2334. },
  2335. peek: {
  2336. height: math.unit(1.05, "feet"),
  2337. name: "Peeking",
  2338. image: {
  2339. source: "./media/characters/kurrikage/peek.svg",
  2340. bottom: 0.08
  2341. }
  2342. },
  2343. },
  2344. [
  2345. {
  2346. name: "Normal",
  2347. height: math.unit(12, "feet"),
  2348. default: true
  2349. },
  2350. {
  2351. name: "Big",
  2352. height: math.unit(20, "feet")
  2353. },
  2354. {
  2355. name: "Macro",
  2356. height: math.unit(500, "feet")
  2357. },
  2358. {
  2359. name: "Megamacro",
  2360. height: math.unit(20, "miles")
  2361. },
  2362. ]
  2363. ))
  2364. characterMakers.push(() => makeCharacter(
  2365. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2366. {
  2367. front: {
  2368. height: math.unit(6, "feet"),
  2369. weight: math.unit(75, "kg"),
  2370. name: "Front",
  2371. image: {
  2372. source: "./media/characters/shingo/front.svg",
  2373. extra: 3511 / 3338,
  2374. bottom: 0.005
  2375. }
  2376. },
  2377. paw: {
  2378. height: math.unit(1, "feet"),
  2379. name: "Paw",
  2380. image: {
  2381. source: "./media/characters/shingo/paw.svg"
  2382. }
  2383. },
  2384. },
  2385. [
  2386. {
  2387. name: "Micro",
  2388. height: math.unit(4, "inches")
  2389. },
  2390. {
  2391. name: "Normal",
  2392. height: math.unit(6, "feet"),
  2393. default: true
  2394. },
  2395. {
  2396. name: "Macro",
  2397. height: math.unit(108, "feet")
  2398. },
  2399. {
  2400. name: "Macro+",
  2401. height: math.unit(1500, "feet")
  2402. },
  2403. ]
  2404. ))
  2405. characterMakers.push(() => makeCharacter(
  2406. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2407. {
  2408. side: {
  2409. height: math.unit(6, "feet"),
  2410. weight: math.unit(75, "kg"),
  2411. name: "Side",
  2412. image: {
  2413. source: "./media/characters/aigey/side.svg"
  2414. }
  2415. },
  2416. },
  2417. [
  2418. {
  2419. name: "Macro",
  2420. height: math.unit(200, "feet"),
  2421. default: true
  2422. },
  2423. {
  2424. name: "Megamacro",
  2425. height: math.unit(100, "miles")
  2426. },
  2427. ]
  2428. )
  2429. )
  2430. characterMakers.push(() => makeCharacter(
  2431. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2432. {
  2433. front: {
  2434. height: math.unit(5 + 5 / 12, "feet"),
  2435. weight: math.unit(75, "kg"),
  2436. name: "Front",
  2437. image: {
  2438. source: "./media/characters/natasha/front.svg",
  2439. extra: 859 / 824,
  2440. bottom: 23 / 879.6
  2441. }
  2442. },
  2443. frontNsfw: {
  2444. height: math.unit(5 + 5 / 12, "feet"),
  2445. weight: math.unit(75, "kg"),
  2446. name: "Front (NSFW)",
  2447. image: {
  2448. source: "./media/characters/natasha/front-nsfw.svg",
  2449. extra: 859 / 824,
  2450. bottom: 23 / 879.6
  2451. }
  2452. },
  2453. frontErect: {
  2454. height: math.unit(5 + 5 / 12, "feet"),
  2455. weight: math.unit(75, "kg"),
  2456. name: "Front (Erect)",
  2457. image: {
  2458. source: "./media/characters/natasha/front-erect.svg",
  2459. extra: 859 / 824,
  2460. bottom: 23 / 879.6
  2461. }
  2462. },
  2463. back: {
  2464. height: math.unit(5 + 5 / 12, "feet"),
  2465. weight: math.unit(75, "kg"),
  2466. name: "Back",
  2467. image: {
  2468. source: "./media/characters/natasha/back.svg",
  2469. extra: 887.9 / 852.6,
  2470. bottom: 9.7 / 896.4
  2471. }
  2472. },
  2473. backAlt: {
  2474. height: math.unit(5 + 5 / 12, "feet"),
  2475. weight: math.unit(75, "kg"),
  2476. name: "Back (Alt)",
  2477. image: {
  2478. source: "./media/characters/natasha/back-alt.svg",
  2479. extra: 1236.7 / 1192,
  2480. bottom: 22.3 / 1258.2
  2481. }
  2482. },
  2483. dick: {
  2484. height: math.unit(1.772, "feet"),
  2485. name: "Dick",
  2486. image: {
  2487. source: "./media/characters/natasha/dick.svg"
  2488. }
  2489. },
  2490. paw: {
  2491. height: math.unit(0.250, "meters"),
  2492. name: "Paw",
  2493. image: {
  2494. source: "./media/characters/natasha/paw.svg"
  2495. }
  2496. },
  2497. },
  2498. [
  2499. {
  2500. name: "Normal",
  2501. height: math.unit(5 + 5 / 12, "feet")
  2502. },
  2503. {
  2504. name: "Large",
  2505. height: math.unit(12, "feet")
  2506. },
  2507. {
  2508. name: "Macro",
  2509. height: math.unit(100, "feet"),
  2510. default: true
  2511. },
  2512. {
  2513. name: "Macro+",
  2514. height: math.unit(260, "feet")
  2515. },
  2516. {
  2517. name: "Macro++",
  2518. height: math.unit(1, "mile")
  2519. },
  2520. ]
  2521. ))
  2522. characterMakers.push(() => makeCharacter(
  2523. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2524. {
  2525. front: {
  2526. height: math.unit(6, "feet"),
  2527. weight: math.unit(75, "kg"),
  2528. name: "Front",
  2529. image: {
  2530. source: "./media/characters/malik/front.svg"
  2531. }
  2532. },
  2533. side: {
  2534. height: math.unit(6, "feet"),
  2535. weight: math.unit(75, "kg"),
  2536. name: "Side",
  2537. image: {
  2538. source: "./media/characters/malik/side.svg",
  2539. extra: 1.1539
  2540. }
  2541. },
  2542. back: {
  2543. height: math.unit(6, "feet"),
  2544. weight: math.unit(75, "kg"),
  2545. name: "Back",
  2546. image: {
  2547. source: "./media/characters/malik/back.svg"
  2548. }
  2549. },
  2550. },
  2551. [
  2552. {
  2553. name: "Macro",
  2554. height: math.unit(156, "feet"),
  2555. default: true
  2556. },
  2557. {
  2558. name: "Macro+",
  2559. height: math.unit(1188, "feet")
  2560. },
  2561. ]
  2562. ))
  2563. characterMakers.push(() => makeCharacter(
  2564. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2565. {
  2566. front: {
  2567. height: math.unit(6, "feet"),
  2568. weight: math.unit(75, "kg"),
  2569. name: "Front",
  2570. image: {
  2571. source: "./media/characters/sefer/front.svg",
  2572. extra: 848 / 659,
  2573. bottom: 28.3 / 876.442
  2574. }
  2575. },
  2576. back: {
  2577. height: math.unit(6, "feet"),
  2578. weight: math.unit(75, "kg"),
  2579. name: "Back",
  2580. image: {
  2581. source: "./media/characters/sefer/back.svg",
  2582. extra: 864 / 695,
  2583. bottom: 10 / 871
  2584. }
  2585. },
  2586. frontDressed: {
  2587. height: math.unit(6, "feet"),
  2588. weight: math.unit(75, "kg"),
  2589. name: "Front (Dressed)",
  2590. image: {
  2591. source: "./media/characters/sefer/front-dressed.svg",
  2592. extra: 839 / 653,
  2593. bottom: 37.6 / 878
  2594. }
  2595. },
  2596. },
  2597. [
  2598. {
  2599. name: "Normal",
  2600. height: math.unit(6, "feet"),
  2601. default: true
  2602. },
  2603. ]
  2604. ))
  2605. characterMakers.push(() => makeCharacter(
  2606. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2607. {
  2608. body: {
  2609. height: math.unit(2.2428, "meter"),
  2610. weight: math.unit(124.738, "kg"),
  2611. name: "Body",
  2612. image: {
  2613. extra: 1225 / 1050,
  2614. source: "./media/characters/north/front.svg"
  2615. }
  2616. }
  2617. },
  2618. [
  2619. {
  2620. name: "Micro",
  2621. height: math.unit(4, "inches")
  2622. },
  2623. {
  2624. name: "Macro",
  2625. height: math.unit(63, "meters")
  2626. },
  2627. {
  2628. name: "Megamacro",
  2629. height: math.unit(101, "miles"),
  2630. default: true
  2631. }
  2632. ]
  2633. ))
  2634. characterMakers.push(() => makeCharacter(
  2635. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2636. {
  2637. angled: {
  2638. height: math.unit(4, "meter"),
  2639. weight: math.unit(150, "kg"),
  2640. name: "Angled",
  2641. image: {
  2642. source: "./media/characters/talan/angled-sfw.svg",
  2643. bottom: 29 / 3734
  2644. }
  2645. },
  2646. angledNsfw: {
  2647. height: math.unit(4, "meter"),
  2648. weight: math.unit(150, "kg"),
  2649. name: "Angled (NSFW)",
  2650. image: {
  2651. source: "./media/characters/talan/angled-nsfw.svg",
  2652. bottom: 29 / 3734
  2653. }
  2654. },
  2655. frontNsfw: {
  2656. height: math.unit(4, "meter"),
  2657. weight: math.unit(150, "kg"),
  2658. name: "Front (NSFW)",
  2659. image: {
  2660. source: "./media/characters/talan/front-nsfw.svg",
  2661. bottom: 29 / 3734
  2662. }
  2663. },
  2664. sideNsfw: {
  2665. height: math.unit(4, "meter"),
  2666. weight: math.unit(150, "kg"),
  2667. name: "Side (NSFW)",
  2668. image: {
  2669. source: "./media/characters/talan/side-nsfw.svg",
  2670. bottom: 29 / 3734
  2671. }
  2672. },
  2673. back: {
  2674. height: math.unit(4, "meter"),
  2675. weight: math.unit(150, "kg"),
  2676. name: "Back",
  2677. image: {
  2678. source: "./media/characters/talan/back.svg"
  2679. }
  2680. },
  2681. dickBottom: {
  2682. height: math.unit(0.621, "meter"),
  2683. name: "Dick (Bottom)",
  2684. image: {
  2685. source: "./media/characters/talan/dick-bottom.svg"
  2686. }
  2687. },
  2688. dickTop: {
  2689. height: math.unit(0.621, "meter"),
  2690. name: "Dick (Top)",
  2691. image: {
  2692. source: "./media/characters/talan/dick-top.svg"
  2693. }
  2694. },
  2695. dickSide: {
  2696. height: math.unit(0.305, "meter"),
  2697. name: "Dick (Side)",
  2698. image: {
  2699. source: "./media/characters/talan/dick-side.svg"
  2700. }
  2701. },
  2702. dickFront: {
  2703. height: math.unit(0.305, "meter"),
  2704. name: "Dick (Front)",
  2705. image: {
  2706. source: "./media/characters/talan/dick-front.svg"
  2707. }
  2708. },
  2709. },
  2710. [
  2711. {
  2712. name: "Normal",
  2713. height: math.unit(4, "meters")
  2714. },
  2715. {
  2716. name: "Macro",
  2717. height: math.unit(100, "meters")
  2718. },
  2719. {
  2720. name: "Megamacro",
  2721. height: math.unit(2, "miles"),
  2722. default: true
  2723. },
  2724. {
  2725. name: "Gigamacro",
  2726. height: math.unit(5000, "miles")
  2727. },
  2728. {
  2729. name: "Teramacro",
  2730. height: math.unit(100, "parsecs")
  2731. }
  2732. ]
  2733. ))
  2734. characterMakers.push(() => makeCharacter(
  2735. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2736. {
  2737. front: {
  2738. height: math.unit(2, "meter"),
  2739. weight: math.unit(90, "kg"),
  2740. name: "Front",
  2741. image: {
  2742. source: "./media/characters/gael'rathus/front.svg"
  2743. }
  2744. },
  2745. frontAlt: {
  2746. height: math.unit(2, "meter"),
  2747. weight: math.unit(90, "kg"),
  2748. name: "Front (alt)",
  2749. image: {
  2750. source: "./media/characters/gael'rathus/front-alt.svg"
  2751. }
  2752. },
  2753. frontAlt2: {
  2754. height: math.unit(2, "meter"),
  2755. weight: math.unit(90, "kg"),
  2756. name: "Front (alt 2)",
  2757. image: {
  2758. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2759. }
  2760. }
  2761. },
  2762. [
  2763. {
  2764. name: "Normal",
  2765. height: math.unit(9, "feet"),
  2766. default: true
  2767. },
  2768. {
  2769. name: "Large",
  2770. height: math.unit(25, "feet")
  2771. },
  2772. {
  2773. name: "Macro",
  2774. height: math.unit(0.25, "miles")
  2775. },
  2776. {
  2777. name: "Megamacro",
  2778. height: math.unit(10, "miles")
  2779. }
  2780. ]
  2781. ))
  2782. characterMakers.push(() => makeCharacter(
  2783. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2784. {
  2785. side: {
  2786. height: math.unit(2, "meter"),
  2787. weight: math.unit(140, "kg"),
  2788. name: "Side",
  2789. image: {
  2790. source: "./media/characters/sosha/side.svg",
  2791. bottom: 0.042
  2792. }
  2793. },
  2794. },
  2795. [
  2796. {
  2797. name: "Normal",
  2798. height: math.unit(12, "feet"),
  2799. default: true
  2800. }
  2801. ]
  2802. ))
  2803. characterMakers.push(() => makeCharacter(
  2804. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2805. {
  2806. side: {
  2807. height: math.unit(5 + 5 / 12, "feet"),
  2808. weight: math.unit(170, "kg"),
  2809. name: "Side",
  2810. image: {
  2811. source: "./media/characters/runnola/side.svg",
  2812. extra: 741 / 448,
  2813. bottom: 0.05
  2814. }
  2815. },
  2816. },
  2817. [
  2818. {
  2819. name: "Small",
  2820. height: math.unit(3, "feet")
  2821. },
  2822. {
  2823. name: "Normal",
  2824. height: math.unit(5 + 5 / 12, "feet"),
  2825. default: true
  2826. },
  2827. {
  2828. name: "Big",
  2829. height: math.unit(10, "feet")
  2830. },
  2831. ]
  2832. ))
  2833. characterMakers.push(() => makeCharacter(
  2834. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2835. {
  2836. front: {
  2837. height: math.unit(2, "meter"),
  2838. weight: math.unit(50, "kg"),
  2839. name: "Front",
  2840. image: {
  2841. source: "./media/characters/kurribird/front.svg",
  2842. bottom: 0.015
  2843. }
  2844. },
  2845. frontAlt: {
  2846. height: math.unit(1.5, "meter"),
  2847. weight: math.unit(50, "kg"),
  2848. name: "Front (Alt)",
  2849. image: {
  2850. source: "./media/characters/kurribird/front-alt.svg",
  2851. extra: 1.45
  2852. }
  2853. },
  2854. },
  2855. [
  2856. {
  2857. name: "Normal",
  2858. height: math.unit(7, "feet")
  2859. },
  2860. {
  2861. name: "Big",
  2862. height: math.unit(12, "feet"),
  2863. default: true
  2864. },
  2865. {
  2866. name: "Macro",
  2867. height: math.unit(1500, "feet")
  2868. },
  2869. {
  2870. name: "Megamacro",
  2871. height: math.unit(2, "miles")
  2872. }
  2873. ]
  2874. ))
  2875. characterMakers.push(() => makeCharacter(
  2876. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2877. {
  2878. front: {
  2879. height: math.unit(2, "meter"),
  2880. weight: math.unit(80, "kg"),
  2881. name: "Front",
  2882. image: {
  2883. source: "./media/characters/elbial/front.svg",
  2884. extra: 1643 / 1556,
  2885. bottom: 60.2 / 1696
  2886. }
  2887. },
  2888. side: {
  2889. height: math.unit(2, "meter"),
  2890. weight: math.unit(80, "kg"),
  2891. name: "Side",
  2892. image: {
  2893. source: "./media/characters/elbial/side.svg",
  2894. extra: 1630 / 1565,
  2895. bottom: 71.5 / 1697
  2896. }
  2897. },
  2898. back: {
  2899. height: math.unit(2, "meter"),
  2900. weight: math.unit(80, "kg"),
  2901. name: "Back",
  2902. image: {
  2903. source: "./media/characters/elbial/back.svg",
  2904. extra: 1668 / 1595,
  2905. bottom: 5.6 / 1672
  2906. }
  2907. },
  2908. frontDressed: {
  2909. height: math.unit(2, "meter"),
  2910. weight: math.unit(80, "kg"),
  2911. name: "Front (Dressed)",
  2912. image: {
  2913. source: "./media/characters/elbial/front-dressed.svg",
  2914. extra: 1653 / 1584,
  2915. bottom: 57 / 1708
  2916. }
  2917. },
  2918. genitals: {
  2919. height: math.unit(2 / 3.367, "meter"),
  2920. name: "Genitals",
  2921. image: {
  2922. source: "./media/characters/elbial/genitals.svg"
  2923. }
  2924. },
  2925. },
  2926. [
  2927. {
  2928. name: "Large",
  2929. height: math.unit(100, "feet")
  2930. },
  2931. {
  2932. name: "Macro",
  2933. height: math.unit(500, "feet"),
  2934. default: true
  2935. },
  2936. {
  2937. name: "Megamacro",
  2938. height: math.unit(10, "miles")
  2939. },
  2940. {
  2941. name: "Gigamacro",
  2942. height: math.unit(25000, "miles")
  2943. },
  2944. {
  2945. name: "Full-Size",
  2946. height: math.unit(8000000, "gigaparsecs")
  2947. }
  2948. ]
  2949. ))
  2950. characterMakers.push(() => makeCharacter(
  2951. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2952. {
  2953. front: {
  2954. height: math.unit(2, "meter"),
  2955. weight: math.unit(60, "kg"),
  2956. name: "Front",
  2957. image: {
  2958. source: "./media/characters/noah/front.svg"
  2959. }
  2960. },
  2961. talons: {
  2962. height: math.unit(0.315, "meter"),
  2963. name: "Talons",
  2964. image: {
  2965. source: "./media/characters/noah/talons.svg"
  2966. }
  2967. }
  2968. },
  2969. [
  2970. {
  2971. name: "Large",
  2972. height: math.unit(50, "feet")
  2973. },
  2974. {
  2975. name: "Macro",
  2976. height: math.unit(750, "feet"),
  2977. default: true
  2978. },
  2979. {
  2980. name: "Megamacro",
  2981. height: math.unit(50, "miles")
  2982. },
  2983. {
  2984. name: "Gigamacro",
  2985. height: math.unit(100000, "miles")
  2986. },
  2987. {
  2988. name: "Full-Size",
  2989. height: math.unit(3000000000, "miles")
  2990. }
  2991. ]
  2992. ))
  2993. characterMakers.push(() => makeCharacter(
  2994. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2995. {
  2996. front: {
  2997. height: math.unit(2, "meter"),
  2998. weight: math.unit(80, "kg"),
  2999. name: "Front",
  3000. image: {
  3001. source: "./media/characters/natalya/front.svg"
  3002. }
  3003. },
  3004. back: {
  3005. height: math.unit(2, "meter"),
  3006. weight: math.unit(80, "kg"),
  3007. name: "Back",
  3008. image: {
  3009. source: "./media/characters/natalya/back.svg"
  3010. }
  3011. }
  3012. },
  3013. [
  3014. {
  3015. name: "Normal",
  3016. height: math.unit(150, "feet"),
  3017. default: true
  3018. },
  3019. {
  3020. name: "Megamacro",
  3021. height: math.unit(5, "miles")
  3022. },
  3023. {
  3024. name: "Full-Size",
  3025. height: math.unit(600, "kiloparsecs")
  3026. }
  3027. ]
  3028. ))
  3029. characterMakers.push(() => makeCharacter(
  3030. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3031. {
  3032. front: {
  3033. height: math.unit(2, "meter"),
  3034. weight: math.unit(50, "kg"),
  3035. name: "Front",
  3036. image: {
  3037. source: "./media/characters/erestrebah/front.svg",
  3038. extra: 208 / 193,
  3039. bottom: 0.055
  3040. }
  3041. },
  3042. back: {
  3043. height: math.unit(2, "meter"),
  3044. weight: math.unit(50, "kg"),
  3045. name: "Back",
  3046. image: {
  3047. source: "./media/characters/erestrebah/back.svg",
  3048. extra: 1.3
  3049. }
  3050. }
  3051. },
  3052. [
  3053. {
  3054. name: "Normal",
  3055. height: math.unit(10, "feet")
  3056. },
  3057. {
  3058. name: "Large",
  3059. height: math.unit(50, "feet"),
  3060. default: true
  3061. },
  3062. {
  3063. name: "Macro",
  3064. height: math.unit(300, "feet")
  3065. },
  3066. {
  3067. name: "Macro+",
  3068. height: math.unit(750, "feet")
  3069. },
  3070. {
  3071. name: "Megamacro",
  3072. height: math.unit(3, "miles")
  3073. }
  3074. ]
  3075. ))
  3076. characterMakers.push(() => makeCharacter(
  3077. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3078. {
  3079. front: {
  3080. height: math.unit(2, "meter"),
  3081. weight: math.unit(80, "kg"),
  3082. name: "Front",
  3083. image: {
  3084. source: "./media/characters/jennifer/front.svg",
  3085. bottom: 0.11,
  3086. extra: 1.16
  3087. }
  3088. },
  3089. frontAlt: {
  3090. height: math.unit(2, "meter"),
  3091. weight: math.unit(80, "kg"),
  3092. name: "Front (Alt)",
  3093. image: {
  3094. source: "./media/characters/jennifer/front-alt.svg"
  3095. }
  3096. }
  3097. },
  3098. [
  3099. {
  3100. name: "Canon Height",
  3101. height: math.unit(120, "feet"),
  3102. default: true
  3103. },
  3104. {
  3105. name: "Macro+",
  3106. height: math.unit(300, "feet")
  3107. },
  3108. {
  3109. name: "Megamacro",
  3110. height: math.unit(20000, "feet")
  3111. }
  3112. ]
  3113. ))
  3114. characterMakers.push(() => makeCharacter(
  3115. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3116. {
  3117. front: {
  3118. height: math.unit(2, "meter"),
  3119. weight: math.unit(50, "kg"),
  3120. name: "Front",
  3121. image: {
  3122. source: "./media/characters/kalista/front.svg",
  3123. extra: 1947 / 1700,
  3124. bottom: 76.6 / 1412.98
  3125. }
  3126. },
  3127. back: {
  3128. height: math.unit(2, "meter"),
  3129. weight: math.unit(50, "kg"),
  3130. name: "Back",
  3131. image: {
  3132. source: "./media/characters/kalista/back.svg",
  3133. extra: 1366 / 1156,
  3134. bottom: 33.9 / 1362.78
  3135. }
  3136. }
  3137. },
  3138. [
  3139. {
  3140. name: "Uncomfortably Small",
  3141. height: math.unit(10, "feet")
  3142. },
  3143. {
  3144. name: "Small",
  3145. height: math.unit(30, "feet")
  3146. },
  3147. {
  3148. name: "Macro",
  3149. height: math.unit(100, "feet"),
  3150. default: true
  3151. },
  3152. {
  3153. name: "Macro+",
  3154. height: math.unit(2000, "feet")
  3155. },
  3156. {
  3157. name: "True Form",
  3158. height: math.unit(8924, "miles")
  3159. }
  3160. ]
  3161. ))
  3162. characterMakers.push(() => makeCharacter(
  3163. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3164. {
  3165. front: {
  3166. height: math.unit(2, "meter"),
  3167. weight: math.unit(120, "kg"),
  3168. name: "Front",
  3169. image: {
  3170. source: "./media/characters/ggv/front.svg"
  3171. }
  3172. },
  3173. side: {
  3174. height: math.unit(2, "meter"),
  3175. weight: math.unit(120, "kg"),
  3176. name: "Side",
  3177. image: {
  3178. source: "./media/characters/ggv/side.svg"
  3179. }
  3180. }
  3181. },
  3182. [
  3183. {
  3184. name: "Extremely Puny",
  3185. height: math.unit(9 + 5 / 12, "feet")
  3186. },
  3187. {
  3188. name: "Horribly Small",
  3189. height: math.unit(47.7, "miles"),
  3190. default: true
  3191. },
  3192. {
  3193. name: "Reasonably Sized",
  3194. height: math.unit(25000, "parsecs")
  3195. },
  3196. {
  3197. name: "Slightly Uncompressed",
  3198. height: math.unit(7.77e31, "parsecs")
  3199. },
  3200. {
  3201. name: "Omniversal",
  3202. height: math.unit(1e300, "meters")
  3203. },
  3204. ]
  3205. ))
  3206. characterMakers.push(() => makeCharacter(
  3207. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3208. {
  3209. front: {
  3210. height: math.unit(2, "meter"),
  3211. weight: math.unit(75, "lb"),
  3212. name: "Front",
  3213. image: {
  3214. source: "./media/characters/napalm/front.svg"
  3215. }
  3216. },
  3217. back: {
  3218. height: math.unit(2, "meter"),
  3219. weight: math.unit(75, "lb"),
  3220. name: "Back",
  3221. image: {
  3222. source: "./media/characters/napalm/back.svg"
  3223. }
  3224. }
  3225. },
  3226. [
  3227. {
  3228. name: "Standard",
  3229. height: math.unit(55, "feet"),
  3230. default: true
  3231. }
  3232. ]
  3233. ))
  3234. characterMakers.push(() => makeCharacter(
  3235. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3236. {
  3237. front: {
  3238. height: math.unit(7 + 5 / 6, "feet"),
  3239. weight: math.unit(325, "lb"),
  3240. name: "Front",
  3241. image: {
  3242. source: "./media/characters/asana/front.svg",
  3243. extra: 1133 / 1060,
  3244. bottom: 15.2 / 1148.6
  3245. }
  3246. },
  3247. back: {
  3248. height: math.unit(7 + 5 / 6, "feet"),
  3249. weight: math.unit(325, "lb"),
  3250. name: "Back",
  3251. image: {
  3252. source: "./media/characters/asana/back.svg",
  3253. extra: 1114 / 1043,
  3254. bottom: 5 / 1120
  3255. }
  3256. },
  3257. dressedDark: {
  3258. height: math.unit(7 + 5 / 6, "feet"),
  3259. weight: math.unit(325, "lb"),
  3260. name: "Dressed (Dark)",
  3261. image: {
  3262. source: "./media/characters/asana/dressed-dark.svg",
  3263. extra: 1133 / 1060,
  3264. bottom: 15.2 / 1148.6
  3265. }
  3266. },
  3267. dressedLight: {
  3268. height: math.unit(7 + 5 / 6, "feet"),
  3269. weight: math.unit(325, "lb"),
  3270. name: "Dressed (Light)",
  3271. image: {
  3272. source: "./media/characters/asana/dressed-light.svg",
  3273. extra: 1133 / 1060,
  3274. bottom: 15.2 / 1148.6
  3275. }
  3276. },
  3277. },
  3278. [
  3279. {
  3280. name: "Standard",
  3281. height: math.unit(7 + 5 / 6, "feet"),
  3282. default: true
  3283. },
  3284. {
  3285. name: "Large",
  3286. height: math.unit(10, "meters")
  3287. },
  3288. {
  3289. name: "Macro",
  3290. height: math.unit(2500, "meters")
  3291. },
  3292. {
  3293. name: "Megamacro",
  3294. height: math.unit(5e6, "meters")
  3295. },
  3296. {
  3297. name: "Examacro",
  3298. height: math.unit(5e12, "lightyears")
  3299. },
  3300. {
  3301. name: "Max Size",
  3302. height: math.unit(1e31, "lightyears")
  3303. }
  3304. ]
  3305. ))
  3306. characterMakers.push(() => makeCharacter(
  3307. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3308. {
  3309. front: {
  3310. height: math.unit(2, "meter"),
  3311. weight: math.unit(60, "kg"),
  3312. name: "Front",
  3313. image: {
  3314. source: "./media/characters/ebony/front.svg",
  3315. bottom: 0.03,
  3316. extra: 1045 / 810 + 0.03
  3317. }
  3318. },
  3319. side: {
  3320. height: math.unit(2, "meter"),
  3321. weight: math.unit(60, "kg"),
  3322. name: "Side",
  3323. image: {
  3324. source: "./media/characters/ebony/side.svg",
  3325. bottom: 0.03,
  3326. extra: 1045 / 810 + 0.03
  3327. }
  3328. },
  3329. back: {
  3330. height: math.unit(2, "meter"),
  3331. weight: math.unit(60, "kg"),
  3332. name: "Back",
  3333. image: {
  3334. source: "./media/characters/ebony/back.svg",
  3335. bottom: 0.01,
  3336. extra: 1045 / 810 + 0.01
  3337. }
  3338. },
  3339. },
  3340. [
  3341. // TODO check why I did this lol
  3342. {
  3343. name: "Standard",
  3344. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3345. default: true
  3346. },
  3347. {
  3348. name: "Macro",
  3349. height: math.unit(200, "feet")
  3350. },
  3351. {
  3352. name: "Gigamacro",
  3353. height: math.unit(13000, "km")
  3354. }
  3355. ]
  3356. ))
  3357. characterMakers.push(() => makeCharacter(
  3358. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3359. {
  3360. front: {
  3361. height: math.unit(6, "feet"),
  3362. weight: math.unit(175, "lb"),
  3363. name: "Front",
  3364. image: {
  3365. source: "./media/characters/mountain/front.svg",
  3366. extra: 972 / 955,
  3367. bottom: 64 / 1036.6
  3368. }
  3369. },
  3370. back: {
  3371. height: math.unit(6, "feet"),
  3372. weight: math.unit(175, "lb"),
  3373. name: "Back",
  3374. image: {
  3375. source: "./media/characters/mountain/back.svg",
  3376. extra: 970 / 950,
  3377. bottom: 28.25 / 999
  3378. }
  3379. },
  3380. },
  3381. [
  3382. {
  3383. name: "Large",
  3384. height: math.unit(20, "meters")
  3385. },
  3386. {
  3387. name: "Macro",
  3388. height: math.unit(300, "meters")
  3389. },
  3390. {
  3391. name: "Gigamacro",
  3392. height: math.unit(10000, "km"),
  3393. default: true
  3394. },
  3395. {
  3396. name: "Examacro",
  3397. height: math.unit(10e9, "lightyears")
  3398. }
  3399. ]
  3400. ))
  3401. characterMakers.push(() => makeCharacter(
  3402. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3403. {
  3404. front: {
  3405. height: math.unit(8, "feet"),
  3406. weight: math.unit(500, "lb"),
  3407. name: "Front",
  3408. image: {
  3409. source: "./media/characters/rick/front.svg"
  3410. }
  3411. }
  3412. },
  3413. [
  3414. {
  3415. name: "Normal",
  3416. height: math.unit(8, "feet"),
  3417. default: true
  3418. },
  3419. {
  3420. name: "Macro",
  3421. height: math.unit(5, "km")
  3422. }
  3423. ]
  3424. ))
  3425. characterMakers.push(() => makeCharacter(
  3426. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3427. {
  3428. front: {
  3429. height: math.unit(8, "feet"),
  3430. weight: math.unit(120, "lb"),
  3431. name: "Front",
  3432. image: {
  3433. source: "./media/characters/ona/front.svg"
  3434. }
  3435. },
  3436. frontAlt: {
  3437. height: math.unit(8, "feet"),
  3438. weight: math.unit(120, "lb"),
  3439. name: "Front (Alt)",
  3440. image: {
  3441. source: "./media/characters/ona/front-alt.svg"
  3442. }
  3443. },
  3444. back: {
  3445. height: math.unit(8, "feet"),
  3446. weight: math.unit(120, "lb"),
  3447. name: "Back",
  3448. image: {
  3449. source: "./media/characters/ona/back.svg"
  3450. }
  3451. },
  3452. foot: {
  3453. height: math.unit(1.1, "feet"),
  3454. name: "Foot",
  3455. image: {
  3456. source: "./media/characters/ona/foot.svg"
  3457. }
  3458. }
  3459. },
  3460. [
  3461. {
  3462. name: "Megamacro",
  3463. height: math.unit(70, "km"),
  3464. default: true
  3465. },
  3466. {
  3467. name: "Gigamacro",
  3468. height: math.unit(681818, "miles")
  3469. },
  3470. {
  3471. name: "Examacro",
  3472. height: math.unit(3800000, "lightyears")
  3473. },
  3474. ]
  3475. ))
  3476. characterMakers.push(() => makeCharacter(
  3477. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3478. {
  3479. front: {
  3480. height: math.unit(12, "feet"),
  3481. weight: math.unit(3000, "lb"),
  3482. name: "Front",
  3483. image: {
  3484. source: "./media/characters/mech/front.svg",
  3485. extra: 2900 / 2770,
  3486. bottom: 110 / 3010
  3487. }
  3488. },
  3489. back: {
  3490. height: math.unit(12, "feet"),
  3491. weight: math.unit(3000, "lb"),
  3492. name: "Back",
  3493. image: {
  3494. source: "./media/characters/mech/back.svg",
  3495. extra: 3011 / 2890,
  3496. bottom: 94 / 3105
  3497. }
  3498. },
  3499. maw: {
  3500. height: math.unit(3.07, "feet"),
  3501. name: "Maw",
  3502. image: {
  3503. source: "./media/characters/mech/maw.svg"
  3504. }
  3505. },
  3506. head: {
  3507. height: math.unit(2.82, "feet"),
  3508. name: "Head",
  3509. image: {
  3510. source: "./media/characters/mech/head.svg"
  3511. }
  3512. },
  3513. dick: {
  3514. height: math.unit(1.43, "feet"),
  3515. name: "Dick",
  3516. image: {
  3517. source: "./media/characters/mech/dick.svg"
  3518. }
  3519. },
  3520. },
  3521. [
  3522. {
  3523. name: "Normal",
  3524. height: math.unit(12, "feet")
  3525. },
  3526. {
  3527. name: "Macro",
  3528. height: math.unit(300, "feet"),
  3529. default: true
  3530. },
  3531. {
  3532. name: "Macro+",
  3533. height: math.unit(1500, "feet")
  3534. },
  3535. ]
  3536. ))
  3537. characterMakers.push(() => makeCharacter(
  3538. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3539. {
  3540. front: {
  3541. height: math.unit(1.3, "meter"),
  3542. weight: math.unit(30, "kg"),
  3543. name: "Front",
  3544. image: {
  3545. source: "./media/characters/gregory/front.svg",
  3546. }
  3547. }
  3548. },
  3549. [
  3550. {
  3551. name: "Normal",
  3552. height: math.unit(1.3, "meter"),
  3553. default: true
  3554. },
  3555. {
  3556. name: "Macro",
  3557. height: math.unit(20, "meter")
  3558. }
  3559. ]
  3560. ))
  3561. characterMakers.push(() => makeCharacter(
  3562. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3563. {
  3564. front: {
  3565. height: math.unit(2.8, "meter"),
  3566. weight: math.unit(200, "kg"),
  3567. name: "Front",
  3568. image: {
  3569. source: "./media/characters/elory/front.svg",
  3570. }
  3571. }
  3572. },
  3573. [
  3574. {
  3575. name: "Normal",
  3576. height: math.unit(2.8, "meter"),
  3577. default: true
  3578. },
  3579. {
  3580. name: "Macro",
  3581. height: math.unit(38, "meter")
  3582. }
  3583. ]
  3584. ))
  3585. characterMakers.push(() => makeCharacter(
  3586. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3587. {
  3588. front: {
  3589. height: math.unit(470, "feet"),
  3590. weight: math.unit(924, "tons"),
  3591. name: "Front",
  3592. image: {
  3593. source: "./media/characters/angelpatamon/front.svg",
  3594. }
  3595. }
  3596. },
  3597. [
  3598. {
  3599. name: "Normal",
  3600. height: math.unit(470, "feet"),
  3601. default: true
  3602. },
  3603. {
  3604. name: "Deity Size I",
  3605. height: math.unit(28651.2, "km")
  3606. },
  3607. {
  3608. name: "Deity Size II",
  3609. height: math.unit(171907.2, "km")
  3610. }
  3611. ]
  3612. ))
  3613. characterMakers.push(() => makeCharacter(
  3614. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3615. {
  3616. side: {
  3617. height: math.unit(7.2, "meter"),
  3618. weight: math.unit(8.2, "tons"),
  3619. name: "Side",
  3620. image: {
  3621. source: "./media/characters/cryae/side.svg",
  3622. extra: 3500 / 1500
  3623. }
  3624. }
  3625. },
  3626. [
  3627. {
  3628. name: "Normal",
  3629. height: math.unit(7.2, "meter"),
  3630. default: true
  3631. }
  3632. ]
  3633. ))
  3634. characterMakers.push(() => makeCharacter(
  3635. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3636. {
  3637. front: {
  3638. height: math.unit(6, "feet"),
  3639. weight: math.unit(175, "lb"),
  3640. name: "Front",
  3641. image: {
  3642. source: "./media/characters/xera/front.svg",
  3643. extra: 2377 / 1972,
  3644. bottom: 75.5 / 2452
  3645. }
  3646. },
  3647. side: {
  3648. height: math.unit(6, "feet"),
  3649. weight: math.unit(175, "lb"),
  3650. name: "Side",
  3651. image: {
  3652. source: "./media/characters/xera/side.svg",
  3653. extra: 2345 / 2019,
  3654. bottom: 39.7 / 2384
  3655. }
  3656. },
  3657. back: {
  3658. height: math.unit(6, "feet"),
  3659. weight: math.unit(175, "lb"),
  3660. name: "Back",
  3661. image: {
  3662. source: "./media/characters/xera/back.svg",
  3663. extra: 2095 / 1984,
  3664. bottom: 67 / 2166
  3665. }
  3666. },
  3667. },
  3668. [
  3669. {
  3670. name: "Small",
  3671. height: math.unit(10, "feet")
  3672. },
  3673. {
  3674. name: "Macro",
  3675. height: math.unit(500, "meters"),
  3676. default: true
  3677. },
  3678. {
  3679. name: "Macro+",
  3680. height: math.unit(10, "km")
  3681. },
  3682. {
  3683. name: "Gigamacro",
  3684. height: math.unit(25000, "km")
  3685. },
  3686. {
  3687. name: "Teramacro",
  3688. height: math.unit(3e6, "km")
  3689. }
  3690. ]
  3691. ))
  3692. characterMakers.push(() => makeCharacter(
  3693. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3694. {
  3695. front: {
  3696. height: math.unit(6, "feet"),
  3697. weight: math.unit(175, "lb"),
  3698. name: "Front",
  3699. image: {
  3700. source: "./media/characters/nebula/front.svg",
  3701. extra: 2566 / 2362,
  3702. bottom: 81 / 2644
  3703. }
  3704. }
  3705. },
  3706. [
  3707. {
  3708. name: "Small",
  3709. height: math.unit(4.5, "meters")
  3710. },
  3711. {
  3712. name: "Macro",
  3713. height: math.unit(1500, "meters"),
  3714. default: true
  3715. },
  3716. {
  3717. name: "Megamacro",
  3718. height: math.unit(150, "km")
  3719. },
  3720. {
  3721. name: "Gigamacro",
  3722. height: math.unit(27000, "km")
  3723. }
  3724. ]
  3725. ))
  3726. characterMakers.push(() => makeCharacter(
  3727. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3728. {
  3729. front: {
  3730. height: math.unit(6, "feet"),
  3731. weight: math.unit(225, "lb"),
  3732. name: "Front",
  3733. image: {
  3734. source: "./media/characters/abysgar/front.svg"
  3735. }
  3736. }
  3737. },
  3738. [
  3739. {
  3740. name: "Small",
  3741. height: math.unit(4.5, "meters")
  3742. },
  3743. {
  3744. name: "Macro",
  3745. height: math.unit(1250, "meters"),
  3746. default: true
  3747. },
  3748. {
  3749. name: "Megamacro",
  3750. height: math.unit(125, "km")
  3751. },
  3752. {
  3753. name: "Gigamacro",
  3754. height: math.unit(26000, "km")
  3755. }
  3756. ]
  3757. ))
  3758. characterMakers.push(() => makeCharacter(
  3759. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3760. {
  3761. front: {
  3762. height: math.unit(6, "feet"),
  3763. weight: math.unit(180, "lb"),
  3764. name: "Front",
  3765. image: {
  3766. source: "./media/characters/yakuz/front.svg"
  3767. }
  3768. }
  3769. },
  3770. [
  3771. {
  3772. name: "Small",
  3773. height: math.unit(5, "meters")
  3774. },
  3775. {
  3776. name: "Macro",
  3777. height: math.unit(1500, "meters"),
  3778. default: true
  3779. },
  3780. {
  3781. name: "Megamacro",
  3782. height: math.unit(200, "km")
  3783. },
  3784. {
  3785. name: "Gigamacro",
  3786. height: math.unit(100000, "km")
  3787. }
  3788. ]
  3789. ))
  3790. characterMakers.push(() => makeCharacter(
  3791. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3792. {
  3793. front: {
  3794. height: math.unit(6, "feet"),
  3795. weight: math.unit(175, "lb"),
  3796. name: "Front",
  3797. image: {
  3798. source: "./media/characters/mirova/front.svg",
  3799. extra: 3334 / 3071,
  3800. bottom: 42 / 3375.6
  3801. }
  3802. }
  3803. },
  3804. [
  3805. {
  3806. name: "Small",
  3807. height: math.unit(5, "meters")
  3808. },
  3809. {
  3810. name: "Macro",
  3811. height: math.unit(900, "meters"),
  3812. default: true
  3813. },
  3814. {
  3815. name: "Megamacro",
  3816. height: math.unit(135, "km")
  3817. },
  3818. {
  3819. name: "Gigamacro",
  3820. height: math.unit(20000, "km")
  3821. }
  3822. ]
  3823. ))
  3824. characterMakers.push(() => makeCharacter(
  3825. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3826. {
  3827. side: {
  3828. height: math.unit(28.35, "feet"),
  3829. weight: math.unit(99.75, "tons"),
  3830. name: "Side",
  3831. image: {
  3832. source: "./media/characters/asana-mech/side.svg",
  3833. extra: 923 / 699,
  3834. bottom: 50 / 975
  3835. }
  3836. },
  3837. chaingun: {
  3838. height: math.unit(7, "feet"),
  3839. weight: math.unit(2400, "lb"),
  3840. name: "Chaingun",
  3841. image: {
  3842. source: "./media/characters/asana-mech/chaingun.svg"
  3843. }
  3844. },
  3845. laser: {
  3846. height: math.unit(7.12, "feet"),
  3847. weight: math.unit(2000, "lb"),
  3848. name: "Laser",
  3849. image: {
  3850. source: "./media/characters/asana-mech/laser.svg"
  3851. }
  3852. },
  3853. },
  3854. [
  3855. {
  3856. name: "Normal",
  3857. height: math.unit(28.35, "feet"),
  3858. default: true
  3859. },
  3860. {
  3861. name: "Macro",
  3862. height: math.unit(2500, "feet")
  3863. },
  3864. {
  3865. name: "Megamacro",
  3866. height: math.unit(25, "miles")
  3867. },
  3868. {
  3869. name: "Examacro",
  3870. height: math.unit(6e8, "lightyears")
  3871. },
  3872. ]
  3873. ))
  3874. characterMakers.push(() => makeCharacter(
  3875. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3876. {
  3877. front: {
  3878. height: math.unit(5, "meters"),
  3879. weight: math.unit(1000, "kg"),
  3880. name: "Front",
  3881. image: {
  3882. source: "./media/characters/asche/front.svg",
  3883. extra: 1258 / 1190,
  3884. bottom: 47 / 1305
  3885. }
  3886. },
  3887. frontUnderwear: {
  3888. height: math.unit(5, "meters"),
  3889. weight: math.unit(1000, "kg"),
  3890. name: "Front (Underwear)",
  3891. image: {
  3892. source: "./media/characters/asche/front-underwear.svg",
  3893. extra: 1258 / 1190,
  3894. bottom: 47 / 1305
  3895. }
  3896. },
  3897. frontDressed: {
  3898. height: math.unit(5, "meters"),
  3899. weight: math.unit(1000, "kg"),
  3900. name: "Front (Dressed)",
  3901. image: {
  3902. source: "./media/characters/asche/front-dressed.svg",
  3903. extra: 1258 / 1190,
  3904. bottom: 47 / 1305
  3905. }
  3906. },
  3907. frontArmor: {
  3908. height: math.unit(5, "meters"),
  3909. weight: math.unit(1000, "kg"),
  3910. name: "Front (Armored)",
  3911. image: {
  3912. source: "./media/characters/asche/front-armored.svg",
  3913. extra: 1374 / 1308,
  3914. bottom: 23 / 1397
  3915. }
  3916. },
  3917. mp724: {
  3918. height: math.unit(0.96, "meters"),
  3919. weight: math.unit(38, "kg"),
  3920. name: "H&K MP724",
  3921. image: {
  3922. source: "./media/characters/asche/h&k-mp724.svg"
  3923. }
  3924. },
  3925. side: {
  3926. height: math.unit(5, "meters"),
  3927. weight: math.unit(1000, "kg"),
  3928. name: "Side",
  3929. image: {
  3930. source: "./media/characters/asche/side.svg",
  3931. extra: 1717 / 1609,
  3932. bottom: 0.005
  3933. }
  3934. },
  3935. back: {
  3936. height: math.unit(5, "meters"),
  3937. weight: math.unit(1000, "kg"),
  3938. name: "Back",
  3939. image: {
  3940. source: "./media/characters/asche/back.svg",
  3941. extra: 1570 / 1501
  3942. }
  3943. },
  3944. },
  3945. [
  3946. {
  3947. name: "DEFCON 5",
  3948. height: math.unit(5, "meters")
  3949. },
  3950. {
  3951. name: "DEFCON 4",
  3952. height: math.unit(500, "meters"),
  3953. default: true
  3954. },
  3955. {
  3956. name: "DEFCON 3",
  3957. height: math.unit(5, "km")
  3958. },
  3959. {
  3960. name: "DEFCON 2",
  3961. height: math.unit(500, "km")
  3962. },
  3963. {
  3964. name: "DEFCON 1",
  3965. height: math.unit(500000, "km")
  3966. },
  3967. {
  3968. name: "DEFCON 0",
  3969. height: math.unit(3, "gigaparsecs")
  3970. },
  3971. ]
  3972. ))
  3973. characterMakers.push(() => makeCharacter(
  3974. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3975. {
  3976. front: {
  3977. height: math.unit(2, "meters"),
  3978. weight: math.unit(76, "kg"),
  3979. name: "Front",
  3980. image: {
  3981. source: "./media/characters/gale/front.svg"
  3982. }
  3983. },
  3984. frontAlt1: {
  3985. height: math.unit(2, "meters"),
  3986. weight: math.unit(76, "kg"),
  3987. name: "Front (Alt 1)",
  3988. image: {
  3989. source: "./media/characters/gale/front-alt-1.svg"
  3990. }
  3991. },
  3992. frontAlt2: {
  3993. height: math.unit(2, "meters"),
  3994. weight: math.unit(76, "kg"),
  3995. name: "Front (Alt 2)",
  3996. image: {
  3997. source: "./media/characters/gale/front-alt-2.svg"
  3998. }
  3999. },
  4000. },
  4001. [
  4002. {
  4003. name: "Normal",
  4004. height: math.unit(7, "feet")
  4005. },
  4006. {
  4007. name: "Macro",
  4008. height: math.unit(150, "feet"),
  4009. default: true
  4010. },
  4011. {
  4012. name: "Macro+",
  4013. height: math.unit(300, "feet")
  4014. },
  4015. ]
  4016. ))
  4017. characterMakers.push(() => makeCharacter(
  4018. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4019. {
  4020. front: {
  4021. height: math.unit(2, "meters"),
  4022. weight: math.unit(76, "kg"),
  4023. name: "Front",
  4024. image: {
  4025. source: "./media/characters/draylen/front.svg"
  4026. }
  4027. }
  4028. },
  4029. [
  4030. {
  4031. name: "Macro",
  4032. height: math.unit(150, "feet"),
  4033. default: true
  4034. }
  4035. ]
  4036. ))
  4037. characterMakers.push(() => makeCharacter(
  4038. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4039. {
  4040. front: {
  4041. height: math.unit(7 + 9 / 12, "feet"),
  4042. weight: math.unit(379, "lbs"),
  4043. name: "Front",
  4044. image: {
  4045. source: "./media/characters/chez/front.svg"
  4046. }
  4047. },
  4048. side: {
  4049. height: math.unit(7 + 9 / 12, "feet"),
  4050. weight: math.unit(379, "lbs"),
  4051. name: "Side",
  4052. image: {
  4053. source: "./media/characters/chez/side.svg"
  4054. }
  4055. }
  4056. },
  4057. [
  4058. {
  4059. name: "Normal",
  4060. height: math.unit(7 + 9 / 12, "feet"),
  4061. default: true
  4062. },
  4063. {
  4064. name: "God King",
  4065. height: math.unit(9750000, "meters")
  4066. }
  4067. ]
  4068. ))
  4069. characterMakers.push(() => makeCharacter(
  4070. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4071. {
  4072. front: {
  4073. height: math.unit(6, "feet"),
  4074. weight: math.unit(275, "lbs"),
  4075. name: "Front",
  4076. image: {
  4077. source: "./media/characters/kaylum/front.svg",
  4078. bottom: 0.01,
  4079. extra: 1166 / 1031
  4080. }
  4081. },
  4082. frontWingless: {
  4083. height: math.unit(6, "feet"),
  4084. weight: math.unit(275, "lbs"),
  4085. name: "Front (Wingless)",
  4086. image: {
  4087. source: "./media/characters/kaylum/front-wingless.svg",
  4088. bottom: 0.01,
  4089. extra: 1117 / 1031
  4090. }
  4091. }
  4092. },
  4093. [
  4094. {
  4095. name: "Normal",
  4096. height: math.unit(3.05, "meters")
  4097. },
  4098. {
  4099. name: "Master",
  4100. height: math.unit(5.5, "meters")
  4101. },
  4102. {
  4103. name: "Rampage",
  4104. height: math.unit(19, "meters")
  4105. },
  4106. {
  4107. name: "Macro Lite",
  4108. height: math.unit(37, "meters")
  4109. },
  4110. {
  4111. name: "Hyper Predator",
  4112. height: math.unit(61, "meters")
  4113. },
  4114. {
  4115. name: "Macro",
  4116. height: math.unit(138, "meters"),
  4117. default: true
  4118. }
  4119. ]
  4120. ))
  4121. characterMakers.push(() => makeCharacter(
  4122. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4123. {
  4124. front: {
  4125. height: math.unit(6, "feet"),
  4126. weight: math.unit(150, "lbs"),
  4127. name: "Front",
  4128. image: {
  4129. source: "./media/characters/geta/front.svg"
  4130. }
  4131. }
  4132. },
  4133. [
  4134. {
  4135. name: "Micro",
  4136. height: math.unit(3, "inches"),
  4137. default: true
  4138. },
  4139. {
  4140. name: "Normal",
  4141. height: math.unit(5 + 5 / 12, "feet")
  4142. }
  4143. ]
  4144. ))
  4145. characterMakers.push(() => makeCharacter(
  4146. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4147. {
  4148. front: {
  4149. height: math.unit(6, "feet"),
  4150. weight: math.unit(300, "lbs"),
  4151. name: "Front",
  4152. image: {
  4153. source: "./media/characters/tyrnn/front.svg"
  4154. }
  4155. }
  4156. },
  4157. [
  4158. {
  4159. name: "Main Height",
  4160. height: math.unit(355, "feet"),
  4161. default: true
  4162. },
  4163. {
  4164. name: "Fave. Height",
  4165. height: math.unit(2400, "feet")
  4166. }
  4167. ]
  4168. ))
  4169. characterMakers.push(() => makeCharacter(
  4170. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4171. {
  4172. front: {
  4173. height: math.unit(6, "feet"),
  4174. weight: math.unit(300, "lbs"),
  4175. name: "Front",
  4176. image: {
  4177. source: "./media/characters/appledectomy/front.svg"
  4178. }
  4179. }
  4180. },
  4181. [
  4182. {
  4183. name: "Macro",
  4184. height: math.unit(2500, "feet")
  4185. },
  4186. {
  4187. name: "Megamacro",
  4188. height: math.unit(50, "miles"),
  4189. default: true
  4190. },
  4191. {
  4192. name: "Gigamacro",
  4193. height: math.unit(5000, "miles")
  4194. },
  4195. {
  4196. name: "Teramacro",
  4197. height: math.unit(250000, "miles")
  4198. },
  4199. ]
  4200. ))
  4201. characterMakers.push(() => makeCharacter(
  4202. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4203. {
  4204. front: {
  4205. height: math.unit(6, "feet"),
  4206. weight: math.unit(200, "lbs"),
  4207. name: "Front",
  4208. image: {
  4209. source: "./media/characters/vulpes/front.svg",
  4210. extra: 573 / 543,
  4211. bottom: 0.033
  4212. }
  4213. },
  4214. side: {
  4215. height: math.unit(6, "feet"),
  4216. weight: math.unit(200, "lbs"),
  4217. name: "Side",
  4218. image: {
  4219. source: "./media/characters/vulpes/side.svg",
  4220. extra: 577 / 549,
  4221. bottom: 11 / 588
  4222. }
  4223. },
  4224. back: {
  4225. height: math.unit(6, "feet"),
  4226. weight: math.unit(200, "lbs"),
  4227. name: "Back",
  4228. image: {
  4229. source: "./media/characters/vulpes/back.svg",
  4230. extra: 573 / 549,
  4231. bottom: 20 / 593
  4232. }
  4233. },
  4234. feet: {
  4235. height: math.unit(1.276, "feet"),
  4236. name: "Feet",
  4237. image: {
  4238. source: "./media/characters/vulpes/feet.svg"
  4239. }
  4240. },
  4241. maw: {
  4242. height: math.unit(1.18, "feet"),
  4243. name: "Maw",
  4244. image: {
  4245. source: "./media/characters/vulpes/maw.svg"
  4246. }
  4247. },
  4248. },
  4249. [
  4250. {
  4251. name: "Micro",
  4252. height: math.unit(2, "inches")
  4253. },
  4254. {
  4255. name: "Normal",
  4256. height: math.unit(6.3, "feet")
  4257. },
  4258. {
  4259. name: "Macro",
  4260. height: math.unit(850, "feet")
  4261. },
  4262. {
  4263. name: "Megamacro",
  4264. height: math.unit(7500, "feet"),
  4265. default: true
  4266. },
  4267. {
  4268. name: "Gigamacro",
  4269. height: math.unit(570000, "miles")
  4270. }
  4271. ]
  4272. ))
  4273. characterMakers.push(() => makeCharacter(
  4274. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4275. {
  4276. front: {
  4277. height: math.unit(6, "feet"),
  4278. weight: math.unit(210, "lbs"),
  4279. name: "Front",
  4280. image: {
  4281. source: "./media/characters/rain-fallen/front.svg"
  4282. }
  4283. },
  4284. side: {
  4285. height: math.unit(6, "feet"),
  4286. weight: math.unit(210, "lbs"),
  4287. name: "Side",
  4288. image: {
  4289. source: "./media/characters/rain-fallen/side.svg"
  4290. }
  4291. },
  4292. back: {
  4293. height: math.unit(6, "feet"),
  4294. weight: math.unit(210, "lbs"),
  4295. name: "Back",
  4296. image: {
  4297. source: "./media/characters/rain-fallen/back.svg"
  4298. }
  4299. },
  4300. feral: {
  4301. height: math.unit(9, "feet"),
  4302. weight: math.unit(700, "lbs"),
  4303. name: "Feral",
  4304. image: {
  4305. source: "./media/characters/rain-fallen/feral.svg"
  4306. }
  4307. },
  4308. },
  4309. [
  4310. {
  4311. name: "Meddling with Mortals",
  4312. height: math.unit(8 + 8/12, "feet")
  4313. },
  4314. {
  4315. name: "Normal",
  4316. height: math.unit(5, "meter")
  4317. },
  4318. {
  4319. name: "Macro",
  4320. height: math.unit(150, "meter"),
  4321. default: true
  4322. },
  4323. {
  4324. name: "Megamacro",
  4325. height: math.unit(278e6, "meter")
  4326. },
  4327. {
  4328. name: "Gigamacro",
  4329. height: math.unit(2e9, "meter")
  4330. },
  4331. {
  4332. name: "Teramacro",
  4333. height: math.unit(8e12, "meter")
  4334. },
  4335. {
  4336. name: "Devourer",
  4337. height: math.unit(14, "zettameters")
  4338. },
  4339. {
  4340. name: "Scarlet King",
  4341. height: math.unit(18, "yottameters")
  4342. },
  4343. {
  4344. name: "Void",
  4345. height: math.unit(6.66e66, "yottameters")
  4346. }
  4347. ]
  4348. ))
  4349. characterMakers.push(() => makeCharacter(
  4350. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4351. {
  4352. standing: {
  4353. height: math.unit(6, "feet"),
  4354. weight: math.unit(180, "lbs"),
  4355. name: "Standing",
  4356. image: {
  4357. source: "./media/characters/zaakira/standing.svg"
  4358. }
  4359. },
  4360. laying: {
  4361. height: math.unit(3, "feet"),
  4362. weight: math.unit(180, "lbs"),
  4363. name: "Laying",
  4364. image: {
  4365. source: "./media/characters/zaakira/laying.svg"
  4366. }
  4367. },
  4368. },
  4369. [
  4370. {
  4371. name: "Normal",
  4372. height: math.unit(12, "feet")
  4373. },
  4374. {
  4375. name: "Macro",
  4376. height: math.unit(279, "feet"),
  4377. default: true
  4378. }
  4379. ]
  4380. ))
  4381. characterMakers.push(() => makeCharacter(
  4382. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4383. {
  4384. femSfw: {
  4385. height: math.unit(8, "feet"),
  4386. weight: math.unit(350, "lb"),
  4387. name: "Fem",
  4388. image: {
  4389. source: "./media/characters/sigvald/fem-sfw.svg",
  4390. extra: 182 / 164,
  4391. bottom: 8.7 / 190.5
  4392. }
  4393. },
  4394. femNsfw: {
  4395. height: math.unit(8, "feet"),
  4396. weight: math.unit(350, "lb"),
  4397. name: "Fem (NSFW)",
  4398. image: {
  4399. source: "./media/characters/sigvald/fem-nsfw.svg",
  4400. extra: 182 / 164,
  4401. bottom: 8.7 / 190.5
  4402. }
  4403. },
  4404. maleNsfw: {
  4405. height: math.unit(8, "feet"),
  4406. weight: math.unit(350, "lb"),
  4407. name: "Male (NSFW)",
  4408. image: {
  4409. source: "./media/characters/sigvald/male-nsfw.svg",
  4410. extra: 182 / 164,
  4411. bottom: 8.7 / 190.5
  4412. }
  4413. },
  4414. hermNsfw: {
  4415. height: math.unit(8, "feet"),
  4416. weight: math.unit(350, "lb"),
  4417. name: "Herm (NSFW)",
  4418. image: {
  4419. source: "./media/characters/sigvald/herm-nsfw.svg",
  4420. extra: 182 / 164,
  4421. bottom: 8.7 / 190.5
  4422. }
  4423. },
  4424. dick: {
  4425. height: math.unit(2.36, "feet"),
  4426. name: "Dick",
  4427. image: {
  4428. source: "./media/characters/sigvald/dick.svg"
  4429. }
  4430. },
  4431. eye: {
  4432. height: math.unit(0.31, "feet"),
  4433. name: "Eye",
  4434. image: {
  4435. source: "./media/characters/sigvald/eye.svg"
  4436. }
  4437. },
  4438. mouth: {
  4439. height: math.unit(0.92, "feet"),
  4440. name: "Mouth",
  4441. image: {
  4442. source: "./media/characters/sigvald/mouth.svg"
  4443. }
  4444. },
  4445. paws: {
  4446. height: math.unit(2.2, "feet"),
  4447. name: "Paws",
  4448. image: {
  4449. source: "./media/characters/sigvald/paws.svg"
  4450. }
  4451. }
  4452. },
  4453. [
  4454. {
  4455. name: "Normal",
  4456. height: math.unit(8, "feet")
  4457. },
  4458. {
  4459. name: "Large",
  4460. height: math.unit(12, "feet")
  4461. },
  4462. {
  4463. name: "Larger",
  4464. height: math.unit(20, "feet")
  4465. },
  4466. {
  4467. name: "Macro",
  4468. height: math.unit(150, "feet")
  4469. },
  4470. {
  4471. name: "Macro+",
  4472. height: math.unit(200, "feet"),
  4473. default: true
  4474. },
  4475. ]
  4476. ))
  4477. characterMakers.push(() => makeCharacter(
  4478. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4479. {
  4480. side: {
  4481. height: math.unit(12, "feet"),
  4482. weight: math.unit(2000, "kg"),
  4483. name: "Side",
  4484. image: {
  4485. source: "./media/characters/scott/side.svg",
  4486. extra: 754 / 724,
  4487. bottom: 0.069
  4488. }
  4489. },
  4490. upright: {
  4491. height: math.unit(12, "feet"),
  4492. weight: math.unit(2000, "kg"),
  4493. name: "Upright",
  4494. image: {
  4495. source: "./media/characters/scott/upright.svg",
  4496. extra: 3881 / 3722,
  4497. bottom: 0.05
  4498. }
  4499. },
  4500. },
  4501. [
  4502. {
  4503. name: "Normal",
  4504. height: math.unit(12, "feet"),
  4505. default: true
  4506. },
  4507. ]
  4508. ))
  4509. characterMakers.push(() => makeCharacter(
  4510. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4511. {
  4512. side: {
  4513. height: math.unit(8, "meters"),
  4514. weight: math.unit(84755, "lbs"),
  4515. name: "Side",
  4516. image: {
  4517. source: "./media/characters/tobias/side.svg",
  4518. extra: 1474 / 1096,
  4519. bottom: 38.9 / 1513.1235
  4520. }
  4521. },
  4522. },
  4523. [
  4524. {
  4525. name: "Normal",
  4526. height: math.unit(8, "meters"),
  4527. default: true
  4528. },
  4529. ]
  4530. ))
  4531. characterMakers.push(() => makeCharacter(
  4532. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4533. {
  4534. front: {
  4535. height: math.unit(5.5, "feet"),
  4536. weight: math.unit(400, "lbs"),
  4537. name: "Front",
  4538. image: {
  4539. source: "./media/characters/kieran/front.svg",
  4540. extra: 2694 / 2364,
  4541. bottom: 217 / 2908
  4542. }
  4543. },
  4544. side: {
  4545. height: math.unit(5.5, "feet"),
  4546. weight: math.unit(400, "lbs"),
  4547. name: "Side",
  4548. image: {
  4549. source: "./media/characters/kieran/side.svg",
  4550. extra: 875 / 777,
  4551. bottom: 84.6 / 959
  4552. }
  4553. },
  4554. },
  4555. [
  4556. {
  4557. name: "Normal",
  4558. height: math.unit(5.5, "feet"),
  4559. default: true
  4560. },
  4561. ]
  4562. ))
  4563. characterMakers.push(() => makeCharacter(
  4564. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4565. {
  4566. side: {
  4567. height: math.unit(2, "meters"),
  4568. weight: math.unit(70, "kg"),
  4569. name: "Side",
  4570. image: {
  4571. source: "./media/characters/sanya/side.svg",
  4572. bottom: 0.02,
  4573. extra: 1.02
  4574. }
  4575. },
  4576. },
  4577. [
  4578. {
  4579. name: "Small",
  4580. height: math.unit(2, "meters")
  4581. },
  4582. {
  4583. name: "Normal",
  4584. height: math.unit(3, "meters")
  4585. },
  4586. {
  4587. name: "Macro",
  4588. height: math.unit(16, "meters"),
  4589. default: true
  4590. },
  4591. ]
  4592. ))
  4593. characterMakers.push(() => makeCharacter(
  4594. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4595. {
  4596. front: {
  4597. height: math.unit(2, "meters"),
  4598. weight: math.unit(120, "kg"),
  4599. name: "Front",
  4600. image: {
  4601. source: "./media/characters/miranda/front.svg",
  4602. extra: 195 / 185,
  4603. bottom: 10.9 / 206.5
  4604. }
  4605. },
  4606. back: {
  4607. height: math.unit(2, "meters"),
  4608. weight: math.unit(120, "kg"),
  4609. name: "Back",
  4610. image: {
  4611. source: "./media/characters/miranda/back.svg",
  4612. extra: 201 / 193,
  4613. bottom: 2.3 / 203.7
  4614. }
  4615. },
  4616. },
  4617. [
  4618. {
  4619. name: "Normal",
  4620. height: math.unit(10, "feet"),
  4621. default: true
  4622. }
  4623. ]
  4624. ))
  4625. characterMakers.push(() => makeCharacter(
  4626. { name: "James", species: ["deer"], tags: ["anthro"] },
  4627. {
  4628. side: {
  4629. height: math.unit(2, "meters"),
  4630. weight: math.unit(100, "kg"),
  4631. name: "Front",
  4632. image: {
  4633. source: "./media/characters/james/front.svg",
  4634. extra: 10 / 8.5
  4635. }
  4636. },
  4637. },
  4638. [
  4639. {
  4640. name: "Normal",
  4641. height: math.unit(8.5, "feet"),
  4642. default: true
  4643. }
  4644. ]
  4645. ))
  4646. characterMakers.push(() => makeCharacter(
  4647. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4648. {
  4649. side: {
  4650. height: math.unit(9.5, "feet"),
  4651. weight: math.unit(2500, "lbs"),
  4652. name: "Side",
  4653. image: {
  4654. source: "./media/characters/heather/side.svg"
  4655. }
  4656. },
  4657. },
  4658. [
  4659. {
  4660. name: "Normal",
  4661. height: math.unit(9.5, "feet"),
  4662. default: true
  4663. }
  4664. ]
  4665. ))
  4666. characterMakers.push(() => makeCharacter(
  4667. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4668. {
  4669. side: {
  4670. height: math.unit(6.5, "feet"),
  4671. weight: math.unit(400, "lbs"),
  4672. name: "Side",
  4673. image: {
  4674. source: "./media/characters/lukas/side.svg",
  4675. extra: 7.25 / 6.5
  4676. }
  4677. },
  4678. },
  4679. [
  4680. {
  4681. name: "Normal",
  4682. height: math.unit(6.5, "feet"),
  4683. default: true
  4684. }
  4685. ]
  4686. ))
  4687. characterMakers.push(() => makeCharacter(
  4688. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4689. {
  4690. side: {
  4691. height: math.unit(5, "feet"),
  4692. weight: math.unit(3000, "lbs"),
  4693. name: "Side",
  4694. image: {
  4695. source: "./media/characters/louise/side.svg"
  4696. }
  4697. },
  4698. },
  4699. [
  4700. {
  4701. name: "Normal",
  4702. height: math.unit(5, "feet"),
  4703. default: true
  4704. }
  4705. ]
  4706. ))
  4707. characterMakers.push(() => makeCharacter(
  4708. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4709. {
  4710. side: {
  4711. height: math.unit(6, "feet"),
  4712. weight: math.unit(150, "lbs"),
  4713. name: "Side",
  4714. image: {
  4715. source: "./media/characters/ramona/side.svg"
  4716. }
  4717. },
  4718. },
  4719. [
  4720. {
  4721. name: "Normal",
  4722. height: math.unit(5.3, "meters"),
  4723. default: true
  4724. },
  4725. {
  4726. name: "Macro",
  4727. height: math.unit(20, "stories")
  4728. },
  4729. {
  4730. name: "Macro+",
  4731. height: math.unit(50, "stories")
  4732. },
  4733. ]
  4734. ))
  4735. characterMakers.push(() => makeCharacter(
  4736. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4737. {
  4738. standing: {
  4739. height: math.unit(5.75, "feet"),
  4740. weight: math.unit(160, "lbs"),
  4741. name: "Standing",
  4742. image: {
  4743. source: "./media/characters/deerpuff/standing.svg",
  4744. extra: 682 / 624
  4745. }
  4746. },
  4747. sitting: {
  4748. height: math.unit(5.75 / 1.79, "feet"),
  4749. weight: math.unit(160, "lbs"),
  4750. name: "Sitting",
  4751. image: {
  4752. source: "./media/characters/deerpuff/sitting.svg",
  4753. bottom: 44 / 400,
  4754. extra: 1
  4755. }
  4756. },
  4757. taurLaying: {
  4758. height: math.unit(6, "feet"),
  4759. weight: math.unit(400, "lbs"),
  4760. name: "Taur (Laying)",
  4761. image: {
  4762. source: "./media/characters/deerpuff/taur-laying.svg"
  4763. }
  4764. },
  4765. },
  4766. [
  4767. {
  4768. name: "Puffball",
  4769. height: math.unit(6, "inches")
  4770. },
  4771. {
  4772. name: "Normalpuff",
  4773. height: math.unit(5.75, "feet")
  4774. },
  4775. {
  4776. name: "Macropuff",
  4777. height: math.unit(1500, "feet"),
  4778. default: true
  4779. },
  4780. {
  4781. name: "Megapuff",
  4782. height: math.unit(500, "miles")
  4783. },
  4784. {
  4785. name: "Gigapuff",
  4786. height: math.unit(250000, "miles")
  4787. },
  4788. {
  4789. name: "Omegapuff",
  4790. height: math.unit(1000, "lightyears")
  4791. },
  4792. ]
  4793. ))
  4794. characterMakers.push(() => makeCharacter(
  4795. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4796. {
  4797. stomping: {
  4798. height: math.unit(6, "feet"),
  4799. weight: math.unit(170, "lbs"),
  4800. name: "Stomping",
  4801. image: {
  4802. source: "./media/characters/vivian/stomping.svg"
  4803. }
  4804. },
  4805. sitting: {
  4806. height: math.unit(6 / 1.75, "feet"),
  4807. weight: math.unit(170, "lbs"),
  4808. name: "Sitting",
  4809. image: {
  4810. source: "./media/characters/vivian/sitting.svg",
  4811. bottom: 1 / 6.4,
  4812. extra: 1,
  4813. }
  4814. },
  4815. },
  4816. [
  4817. {
  4818. name: "Normal",
  4819. height: math.unit(7, "feet"),
  4820. default: true
  4821. },
  4822. {
  4823. name: "Macro",
  4824. height: math.unit(10, "stories")
  4825. },
  4826. {
  4827. name: "Macro+",
  4828. height: math.unit(30, "stories")
  4829. },
  4830. {
  4831. name: "Megamacro",
  4832. height: math.unit(10, "miles")
  4833. },
  4834. {
  4835. name: "Megamacro+",
  4836. height: math.unit(2750000, "meters")
  4837. },
  4838. ]
  4839. ))
  4840. characterMakers.push(() => makeCharacter(
  4841. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4842. {
  4843. front: {
  4844. height: math.unit(6, "feet"),
  4845. weight: math.unit(160, "lbs"),
  4846. name: "Front",
  4847. image: {
  4848. source: "./media/characters/prince/front.svg",
  4849. extra: 3400 / 3000
  4850. }
  4851. },
  4852. jumping: {
  4853. height: math.unit(6, "feet"),
  4854. weight: math.unit(160, "lbs"),
  4855. name: "Jumping",
  4856. image: {
  4857. source: "./media/characters/prince/jump.svg",
  4858. extra: 2555 / 2134
  4859. }
  4860. },
  4861. },
  4862. [
  4863. {
  4864. name: "Normal",
  4865. height: math.unit(7.75, "feet"),
  4866. default: true
  4867. },
  4868. {
  4869. name: "Not cute",
  4870. height: math.unit(17, "feet")
  4871. },
  4872. {
  4873. name: "I said NOT",
  4874. height: math.unit(91, "feet")
  4875. },
  4876. {
  4877. name: "Please stop",
  4878. height: math.unit(560, "feet")
  4879. },
  4880. {
  4881. name: "What have you done",
  4882. height: math.unit(2200, "feet")
  4883. },
  4884. {
  4885. name: "Deer God",
  4886. height: math.unit(3.6, "miles")
  4887. },
  4888. ]
  4889. ))
  4890. characterMakers.push(() => makeCharacter(
  4891. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4892. {
  4893. standing: {
  4894. height: math.unit(6, "feet"),
  4895. weight: math.unit(300, "lbs"),
  4896. name: "Standing",
  4897. image: {
  4898. source: "./media/characters/psymon/standing.svg",
  4899. extra: 1888 / 1810,
  4900. bottom: 0.05
  4901. }
  4902. },
  4903. slithering: {
  4904. height: math.unit(6, "feet"),
  4905. weight: math.unit(300, "lbs"),
  4906. name: "Slithering",
  4907. image: {
  4908. source: "./media/characters/psymon/slithering.svg",
  4909. extra: 1330 / 1224
  4910. }
  4911. },
  4912. slitheringAlt: {
  4913. height: math.unit(6, "feet"),
  4914. weight: math.unit(300, "lbs"),
  4915. name: "Slithering (Alt)",
  4916. image: {
  4917. source: "./media/characters/psymon/slithering-alt.svg",
  4918. extra: 1330 / 1224
  4919. }
  4920. },
  4921. },
  4922. [
  4923. {
  4924. name: "Normal",
  4925. height: math.unit(11.25, "feet"),
  4926. default: true
  4927. },
  4928. {
  4929. name: "Large",
  4930. height: math.unit(27, "feet")
  4931. },
  4932. {
  4933. name: "Giant",
  4934. height: math.unit(87, "feet")
  4935. },
  4936. {
  4937. name: "Macro",
  4938. height: math.unit(365, "feet")
  4939. },
  4940. {
  4941. name: "Megamacro",
  4942. height: math.unit(3, "miles")
  4943. },
  4944. {
  4945. name: "World Serpent",
  4946. height: math.unit(8000, "miles")
  4947. },
  4948. ]
  4949. ))
  4950. characterMakers.push(() => makeCharacter(
  4951. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4952. {
  4953. front: {
  4954. height: math.unit(6, "feet"),
  4955. weight: math.unit(180, "lbs"),
  4956. name: "Front",
  4957. image: {
  4958. source: "./media/characters/daimos/front.svg",
  4959. extra: 4160 / 3897,
  4960. bottom: 0.021
  4961. }
  4962. }
  4963. },
  4964. [
  4965. {
  4966. name: "Normal",
  4967. height: math.unit(8, "feet"),
  4968. default: true
  4969. },
  4970. {
  4971. name: "Big Dog",
  4972. height: math.unit(22, "feet")
  4973. },
  4974. {
  4975. name: "Macro",
  4976. height: math.unit(127, "feet")
  4977. },
  4978. {
  4979. name: "Megamacro",
  4980. height: math.unit(3600, "feet")
  4981. },
  4982. ]
  4983. ))
  4984. characterMakers.push(() => makeCharacter(
  4985. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4986. {
  4987. side: {
  4988. height: math.unit(6, "feet"),
  4989. weight: math.unit(180, "lbs"),
  4990. name: "Side",
  4991. image: {
  4992. source: "./media/characters/blake/side.svg",
  4993. extra: 1212 / 1120,
  4994. bottom: 0.05
  4995. }
  4996. },
  4997. crouched: {
  4998. height: math.unit(6 * 0.57, "feet"),
  4999. weight: math.unit(180, "lbs"),
  5000. name: "Crouched",
  5001. image: {
  5002. source: "./media/characters/blake/crouched.svg",
  5003. extra: 840 / 587,
  5004. bottom: 0.04
  5005. }
  5006. },
  5007. bent: {
  5008. height: math.unit(6 * 0.75, "feet"),
  5009. weight: math.unit(180, "lbs"),
  5010. name: "Bent",
  5011. image: {
  5012. source: "./media/characters/blake/bent.svg",
  5013. extra: 592 / 544,
  5014. bottom: 0.035
  5015. }
  5016. },
  5017. },
  5018. [
  5019. {
  5020. name: "Normal",
  5021. height: math.unit(8 + 1 / 6, "feet"),
  5022. default: true
  5023. },
  5024. {
  5025. name: "Big Backside",
  5026. height: math.unit(37, "feet")
  5027. },
  5028. {
  5029. name: "Subway Shredder",
  5030. height: math.unit(72, "feet")
  5031. },
  5032. {
  5033. name: "City Carver",
  5034. height: math.unit(1675, "feet")
  5035. },
  5036. {
  5037. name: "Tectonic Tweaker",
  5038. height: math.unit(2300, "miles")
  5039. },
  5040. ]
  5041. ))
  5042. characterMakers.push(() => makeCharacter(
  5043. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5044. {
  5045. front: {
  5046. height: math.unit(6, "feet"),
  5047. weight: math.unit(180, "lbs"),
  5048. name: "Front",
  5049. image: {
  5050. source: "./media/characters/guisetto/front.svg",
  5051. extra: 856 / 817,
  5052. bottom: 0.06
  5053. }
  5054. },
  5055. airborne: {
  5056. height: math.unit(6, "feet"),
  5057. weight: math.unit(180, "lbs"),
  5058. name: "Airborne",
  5059. image: {
  5060. source: "./media/characters/guisetto/airborne.svg",
  5061. extra: 584 / 525
  5062. }
  5063. },
  5064. },
  5065. [
  5066. {
  5067. name: "Normal",
  5068. height: math.unit(10 + 11 / 12, "feet"),
  5069. default: true
  5070. },
  5071. {
  5072. name: "Large",
  5073. height: math.unit(35, "feet")
  5074. },
  5075. {
  5076. name: "Macro",
  5077. height: math.unit(475, "feet")
  5078. },
  5079. ]
  5080. ))
  5081. characterMakers.push(() => makeCharacter(
  5082. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5083. {
  5084. front: {
  5085. height: math.unit(6, "feet"),
  5086. weight: math.unit(180, "lbs"),
  5087. name: "Front",
  5088. image: {
  5089. source: "./media/characters/luxor/front.svg",
  5090. extra: 2940 / 2152
  5091. }
  5092. },
  5093. back: {
  5094. height: math.unit(6, "feet"),
  5095. weight: math.unit(180, "lbs"),
  5096. name: "Back",
  5097. image: {
  5098. source: "./media/characters/luxor/back.svg",
  5099. extra: 1083 / 960
  5100. }
  5101. },
  5102. },
  5103. [
  5104. {
  5105. name: "Normal",
  5106. height: math.unit(5 + 5 / 6, "feet"),
  5107. default: true
  5108. },
  5109. {
  5110. name: "Lamp",
  5111. height: math.unit(50, "feet")
  5112. },
  5113. {
  5114. name: "Lämp",
  5115. height: math.unit(300, "feet")
  5116. },
  5117. {
  5118. name: "The sun is a lamp",
  5119. height: math.unit(250000, "miles")
  5120. },
  5121. ]
  5122. ))
  5123. characterMakers.push(() => makeCharacter(
  5124. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5125. {
  5126. front: {
  5127. height: math.unit(6, "feet"),
  5128. weight: math.unit(50, "lbs"),
  5129. name: "Front",
  5130. image: {
  5131. source: "./media/characters/huoyan/front.svg"
  5132. }
  5133. },
  5134. side: {
  5135. height: math.unit(6, "feet"),
  5136. weight: math.unit(180, "lbs"),
  5137. name: "Side",
  5138. image: {
  5139. source: "./media/characters/huoyan/side.svg"
  5140. }
  5141. },
  5142. },
  5143. [
  5144. {
  5145. name: "Chef",
  5146. height: math.unit(9, "feet")
  5147. },
  5148. {
  5149. name: "Normal",
  5150. height: math.unit(65, "feet"),
  5151. default: true
  5152. },
  5153. {
  5154. name: "Macro",
  5155. height: math.unit(780, "feet")
  5156. },
  5157. {
  5158. name: "Flaming Mountain",
  5159. height: math.unit(4.8, "miles")
  5160. },
  5161. {
  5162. name: "Celestial",
  5163. height: math.unit(765000, "miles")
  5164. },
  5165. ]
  5166. ))
  5167. characterMakers.push(() => makeCharacter(
  5168. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5169. {
  5170. front: {
  5171. height: math.unit(5 + 3 / 4, "feet"),
  5172. weight: math.unit(120, "lbs"),
  5173. name: "Front",
  5174. image: {
  5175. source: "./media/characters/tails/front.svg"
  5176. }
  5177. }
  5178. },
  5179. [
  5180. {
  5181. name: "Normal",
  5182. height: math.unit(5 + 3 / 4, "feet"),
  5183. default: true
  5184. }
  5185. ]
  5186. ))
  5187. characterMakers.push(() => makeCharacter(
  5188. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5189. {
  5190. front: {
  5191. height: math.unit(4, "feet"),
  5192. weight: math.unit(50, "lbs"),
  5193. name: "Front",
  5194. image: {
  5195. source: "./media/characters/rainy/front.svg"
  5196. }
  5197. }
  5198. },
  5199. [
  5200. {
  5201. name: "Macro",
  5202. height: math.unit(800, "feet"),
  5203. default: true
  5204. }
  5205. ]
  5206. ))
  5207. characterMakers.push(() => makeCharacter(
  5208. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5209. {
  5210. front: {
  5211. height: math.unit(6, "feet"),
  5212. weight: math.unit(150, "lbs"),
  5213. name: "Front",
  5214. image: {
  5215. source: "./media/characters/rainier/front.svg"
  5216. }
  5217. }
  5218. },
  5219. [
  5220. {
  5221. name: "Micro",
  5222. height: math.unit(2, "mm"),
  5223. default: true
  5224. }
  5225. ]
  5226. ))
  5227. characterMakers.push(() => makeCharacter(
  5228. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5229. {
  5230. front: {
  5231. height: math.unit(6, "feet"),
  5232. weight: math.unit(180, "lbs"),
  5233. name: "Front",
  5234. image: {
  5235. source: "./media/characters/andy/front.svg"
  5236. }
  5237. }
  5238. },
  5239. [
  5240. {
  5241. name: "Normal",
  5242. height: math.unit(8, "feet"),
  5243. default: true
  5244. },
  5245. {
  5246. name: "Macro",
  5247. height: math.unit(1000, "feet")
  5248. },
  5249. {
  5250. name: "Megamacro",
  5251. height: math.unit(5, "miles")
  5252. },
  5253. {
  5254. name: "Gigamacro",
  5255. height: math.unit(5000, "miles")
  5256. },
  5257. ]
  5258. ))
  5259. characterMakers.push(() => makeCharacter(
  5260. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5261. {
  5262. front: {
  5263. height: math.unit(6, "feet"),
  5264. weight: math.unit(210, "lbs"),
  5265. name: "Front",
  5266. image: {
  5267. source: "./media/characters/cimmaron/front-sfw.svg",
  5268. extra: 701 / 676,
  5269. bottom: 0.046
  5270. }
  5271. },
  5272. back: {
  5273. height: math.unit(6, "feet"),
  5274. weight: math.unit(210, "lbs"),
  5275. name: "Back",
  5276. image: {
  5277. source: "./media/characters/cimmaron/back-sfw.svg",
  5278. extra: 701 / 676,
  5279. bottom: 0.046
  5280. }
  5281. },
  5282. frontNsfw: {
  5283. height: math.unit(6, "feet"),
  5284. weight: math.unit(210, "lbs"),
  5285. name: "Front (NSFW)",
  5286. image: {
  5287. source: "./media/characters/cimmaron/front-nsfw.svg",
  5288. extra: 701 / 676,
  5289. bottom: 0.046
  5290. }
  5291. },
  5292. backNsfw: {
  5293. height: math.unit(6, "feet"),
  5294. weight: math.unit(210, "lbs"),
  5295. name: "Back (NSFW)",
  5296. image: {
  5297. source: "./media/characters/cimmaron/back-nsfw.svg",
  5298. extra: 701 / 676,
  5299. bottom: 0.046
  5300. }
  5301. },
  5302. dick: {
  5303. height: math.unit(1.714, "feet"),
  5304. name: "Dick",
  5305. image: {
  5306. source: "./media/characters/cimmaron/dick.svg"
  5307. }
  5308. },
  5309. },
  5310. [
  5311. {
  5312. name: "Normal",
  5313. height: math.unit(6, "feet"),
  5314. default: true
  5315. },
  5316. {
  5317. name: "Macro Mayor",
  5318. height: math.unit(350, "meters")
  5319. },
  5320. ]
  5321. ))
  5322. characterMakers.push(() => makeCharacter(
  5323. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5324. {
  5325. front: {
  5326. height: math.unit(6, "feet"),
  5327. weight: math.unit(200, "lbs"),
  5328. name: "Front",
  5329. image: {
  5330. source: "./media/characters/akari/front.svg",
  5331. extra: 962 / 901,
  5332. bottom: 0.04
  5333. }
  5334. }
  5335. },
  5336. [
  5337. {
  5338. name: "Micro",
  5339. height: math.unit(5, "inches"),
  5340. default: true
  5341. },
  5342. {
  5343. name: "Normal",
  5344. height: math.unit(7, "feet")
  5345. },
  5346. ]
  5347. ))
  5348. characterMakers.push(() => makeCharacter(
  5349. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5350. {
  5351. front: {
  5352. height: math.unit(6, "feet"),
  5353. weight: math.unit(140, "lbs"),
  5354. name: "Front",
  5355. image: {
  5356. source: "./media/characters/cynosura/front.svg",
  5357. extra: 896 / 847
  5358. }
  5359. },
  5360. back: {
  5361. height: math.unit(6, "feet"),
  5362. weight: math.unit(140, "lbs"),
  5363. name: "Back",
  5364. image: {
  5365. source: "./media/characters/cynosura/back.svg",
  5366. extra: 1365 / 1250
  5367. }
  5368. },
  5369. },
  5370. [
  5371. {
  5372. name: "Micro",
  5373. height: math.unit(4, "inches")
  5374. },
  5375. {
  5376. name: "Normal",
  5377. height: math.unit(5.75, "feet"),
  5378. default: true
  5379. },
  5380. {
  5381. name: "Tall",
  5382. height: math.unit(10, "feet")
  5383. },
  5384. {
  5385. name: "Big",
  5386. height: math.unit(20, "feet")
  5387. },
  5388. {
  5389. name: "Macro",
  5390. height: math.unit(50, "feet")
  5391. },
  5392. ]
  5393. ))
  5394. characterMakers.push(() => makeCharacter(
  5395. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5396. {
  5397. front: {
  5398. height: math.unit(6, "feet"),
  5399. weight: math.unit(170, "lbs"),
  5400. name: "Front",
  5401. image: {
  5402. source: "./media/characters/gin/front.svg",
  5403. extra: 1.053,
  5404. bottom: 0.025
  5405. }
  5406. },
  5407. foot: {
  5408. height: math.unit(6 / 4.25, "feet"),
  5409. name: "Foot",
  5410. image: {
  5411. source: "./media/characters/gin/foot.svg"
  5412. }
  5413. },
  5414. sole: {
  5415. height: math.unit(6 / 4.40, "feet"),
  5416. name: "Sole",
  5417. image: {
  5418. source: "./media/characters/gin/sole.svg"
  5419. }
  5420. },
  5421. },
  5422. [
  5423. {
  5424. name: "Normal",
  5425. height: math.unit(13 + 2 / 12, "feet")
  5426. },
  5427. {
  5428. name: "Macro",
  5429. height: math.unit(1500, "feet")
  5430. },
  5431. {
  5432. name: "Megamacro",
  5433. height: math.unit(200, "miles"),
  5434. default: true
  5435. },
  5436. {
  5437. name: "Gigamacro",
  5438. height: math.unit(500, "megameters")
  5439. },
  5440. {
  5441. name: "Teramacro",
  5442. height: math.unit(15, "lightyears")
  5443. }
  5444. ]
  5445. ))
  5446. characterMakers.push(() => makeCharacter(
  5447. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5448. {
  5449. front: {
  5450. height: math.unit(6 + 1 / 6, "feet"),
  5451. weight: math.unit(178, "lbs"),
  5452. name: "Front",
  5453. image: {
  5454. source: "./media/characters/guy/front.svg"
  5455. }
  5456. }
  5457. },
  5458. [
  5459. {
  5460. name: "Normal",
  5461. height: math.unit(6 + 1 / 6, "feet"),
  5462. default: true
  5463. },
  5464. {
  5465. name: "Large",
  5466. height: math.unit(25 + 7 / 12, "feet")
  5467. },
  5468. {
  5469. name: "Macro",
  5470. height: math.unit(60 + 9 / 12, "feet")
  5471. },
  5472. {
  5473. name: "Macro+",
  5474. height: math.unit(246, "feet")
  5475. },
  5476. {
  5477. name: "Macro++",
  5478. height: math.unit(878, "feet")
  5479. }
  5480. ]
  5481. ))
  5482. characterMakers.push(() => makeCharacter(
  5483. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5484. {
  5485. front: {
  5486. height: math.unit(9, "feet"),
  5487. weight: math.unit(800, "lbs"),
  5488. name: "Front",
  5489. image: {
  5490. source: "./media/characters/tiberius/front.svg",
  5491. extra: 2295 / 2071
  5492. }
  5493. },
  5494. back: {
  5495. height: math.unit(9, "feet"),
  5496. weight: math.unit(800, "lbs"),
  5497. name: "Back",
  5498. image: {
  5499. source: "./media/characters/tiberius/back.svg",
  5500. extra: 2373 / 2160
  5501. }
  5502. },
  5503. },
  5504. [
  5505. {
  5506. name: "Normal",
  5507. height: math.unit(9, "feet"),
  5508. default: true
  5509. }
  5510. ]
  5511. ))
  5512. characterMakers.push(() => makeCharacter(
  5513. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5514. {
  5515. front: {
  5516. height: math.unit(6, "feet"),
  5517. weight: math.unit(600, "lbs"),
  5518. name: "Front",
  5519. image: {
  5520. source: "./media/characters/surgo/front.svg",
  5521. extra: 3591 / 2227
  5522. }
  5523. },
  5524. back: {
  5525. height: math.unit(6, "feet"),
  5526. weight: math.unit(600, "lbs"),
  5527. name: "Back",
  5528. image: {
  5529. source: "./media/characters/surgo/back.svg",
  5530. extra: 3557 / 2228
  5531. }
  5532. },
  5533. laying: {
  5534. height: math.unit(6 * 0.85, "feet"),
  5535. weight: math.unit(600, "lbs"),
  5536. name: "Laying",
  5537. image: {
  5538. source: "./media/characters/surgo/laying.svg"
  5539. }
  5540. },
  5541. },
  5542. [
  5543. {
  5544. name: "Normal",
  5545. height: math.unit(6, "feet"),
  5546. default: true
  5547. }
  5548. ]
  5549. ))
  5550. characterMakers.push(() => makeCharacter(
  5551. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5552. {
  5553. side: {
  5554. height: math.unit(6, "feet"),
  5555. weight: math.unit(150, "lbs"),
  5556. name: "Side",
  5557. image: {
  5558. source: "./media/characters/cibus/side.svg",
  5559. extra: 800 / 400
  5560. }
  5561. },
  5562. },
  5563. [
  5564. {
  5565. name: "Normal",
  5566. height: math.unit(6, "feet"),
  5567. default: true
  5568. }
  5569. ]
  5570. ))
  5571. characterMakers.push(() => makeCharacter(
  5572. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5573. {
  5574. front: {
  5575. height: math.unit(6, "feet"),
  5576. weight: math.unit(240, "lbs"),
  5577. name: "Front",
  5578. image: {
  5579. source: "./media/characters/nibbles/front.svg"
  5580. }
  5581. },
  5582. side: {
  5583. height: math.unit(6, "feet"),
  5584. weight: math.unit(240, "lbs"),
  5585. name: "Side",
  5586. image: {
  5587. source: "./media/characters/nibbles/side.svg"
  5588. }
  5589. },
  5590. },
  5591. [
  5592. {
  5593. name: "Normal",
  5594. height: math.unit(9, "feet"),
  5595. default: true
  5596. }
  5597. ]
  5598. ))
  5599. characterMakers.push(() => makeCharacter(
  5600. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5601. {
  5602. side: {
  5603. height: math.unit(5 + 1 / 6, "feet"),
  5604. weight: math.unit(130, "lbs"),
  5605. name: "Side",
  5606. image: {
  5607. source: "./media/characters/rikky/side.svg",
  5608. extra: 851 / 801
  5609. }
  5610. },
  5611. },
  5612. [
  5613. {
  5614. name: "Normal",
  5615. height: math.unit(5 + 1 / 6, "feet")
  5616. },
  5617. {
  5618. name: "Macro",
  5619. height: math.unit(152, "feet"),
  5620. default: true
  5621. },
  5622. {
  5623. name: "Megamacro",
  5624. height: math.unit(7, "miles")
  5625. }
  5626. ]
  5627. ))
  5628. characterMakers.push(() => makeCharacter(
  5629. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5630. {
  5631. side: {
  5632. height: math.unit(370, "cm"),
  5633. weight: math.unit(350, "lbs"),
  5634. name: "Side",
  5635. image: {
  5636. source: "./media/characters/malfressa/side.svg"
  5637. }
  5638. },
  5639. walking: {
  5640. height: math.unit(370, "cm"),
  5641. weight: math.unit(350, "lbs"),
  5642. name: "Walking",
  5643. image: {
  5644. source: "./media/characters/malfressa/walking.svg"
  5645. }
  5646. },
  5647. feral: {
  5648. height: math.unit(2500, "cm"),
  5649. weight: math.unit(100000, "lbs"),
  5650. name: "Feral",
  5651. image: {
  5652. source: "./media/characters/malfressa/feral.svg",
  5653. extra: 2108 / 837,
  5654. bottom: 0.02
  5655. }
  5656. },
  5657. },
  5658. [
  5659. {
  5660. name: "Normal",
  5661. height: math.unit(370, "cm")
  5662. },
  5663. {
  5664. name: "Macro",
  5665. height: math.unit(300, "meters"),
  5666. default: true
  5667. }
  5668. ]
  5669. ))
  5670. characterMakers.push(() => makeCharacter(
  5671. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5672. {
  5673. front: {
  5674. height: math.unit(6, "feet"),
  5675. weight: math.unit(60, "kg"),
  5676. name: "Front",
  5677. image: {
  5678. source: "./media/characters/jaro/front.svg"
  5679. }
  5680. },
  5681. back: {
  5682. height: math.unit(6, "feet"),
  5683. weight: math.unit(60, "kg"),
  5684. name: "Back",
  5685. image: {
  5686. source: "./media/characters/jaro/back.svg"
  5687. }
  5688. },
  5689. },
  5690. [
  5691. {
  5692. name: "Micro",
  5693. height: math.unit(7, "inches")
  5694. },
  5695. {
  5696. name: "Normal",
  5697. height: math.unit(5.5, "feet"),
  5698. default: true
  5699. },
  5700. {
  5701. name: "Minimacro",
  5702. height: math.unit(20, "feet")
  5703. },
  5704. {
  5705. name: "Macro",
  5706. height: math.unit(200, "meters")
  5707. }
  5708. ]
  5709. ))
  5710. characterMakers.push(() => makeCharacter(
  5711. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5712. {
  5713. front: {
  5714. height: math.unit(6, "feet"),
  5715. weight: math.unit(195, "lb"),
  5716. name: "Front",
  5717. image: {
  5718. source: "./media/characters/rogue/front.svg"
  5719. }
  5720. },
  5721. },
  5722. [
  5723. {
  5724. name: "Macro",
  5725. height: math.unit(90, "feet"),
  5726. default: true
  5727. },
  5728. ]
  5729. ))
  5730. characterMakers.push(() => makeCharacter(
  5731. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5732. {
  5733. front: {
  5734. height: math.unit(5 + 8 / 12, "feet"),
  5735. weight: math.unit(140, "lb"),
  5736. name: "Front",
  5737. image: {
  5738. source: "./media/characters/piper/front.svg",
  5739. extra: 3928 / 3681
  5740. }
  5741. },
  5742. },
  5743. [
  5744. {
  5745. name: "Micro",
  5746. height: math.unit(2, "inches")
  5747. },
  5748. {
  5749. name: "Normal",
  5750. height: math.unit(5 + 8 / 12, "feet")
  5751. },
  5752. {
  5753. name: "Macro",
  5754. height: math.unit(250, "feet"),
  5755. default: true
  5756. },
  5757. {
  5758. name: "Megamacro",
  5759. height: math.unit(7, "miles")
  5760. },
  5761. ]
  5762. ))
  5763. characterMakers.push(() => makeCharacter(
  5764. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5765. {
  5766. front: {
  5767. height: math.unit(6, "feet"),
  5768. weight: math.unit(220, "lb"),
  5769. name: "Front",
  5770. image: {
  5771. source: "./media/characters/gemini/front.svg"
  5772. }
  5773. },
  5774. back: {
  5775. height: math.unit(6, "feet"),
  5776. weight: math.unit(220, "lb"),
  5777. name: "Back",
  5778. image: {
  5779. source: "./media/characters/gemini/back.svg"
  5780. }
  5781. },
  5782. kneeling: {
  5783. height: math.unit(6 / 1.5, "feet"),
  5784. weight: math.unit(220, "lb"),
  5785. name: "Kneeling",
  5786. image: {
  5787. source: "./media/characters/gemini/kneeling.svg",
  5788. bottom: 0.02
  5789. }
  5790. },
  5791. },
  5792. [
  5793. {
  5794. name: "Macro",
  5795. height: math.unit(300, "meters"),
  5796. default: true
  5797. },
  5798. {
  5799. name: "Megamacro",
  5800. height: math.unit(6900, "meters")
  5801. },
  5802. ]
  5803. ))
  5804. characterMakers.push(() => makeCharacter(
  5805. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5806. {
  5807. anthro: {
  5808. height: math.unit(2.35, "meters"),
  5809. weight: math.unit(73, "kg"),
  5810. name: "Anthro",
  5811. image: {
  5812. source: "./media/characters/alicia/anthro.svg",
  5813. extra: 2571 / 2385,
  5814. bottom: 75 / 2648
  5815. }
  5816. },
  5817. paw: {
  5818. height: math.unit(1.32, "feet"),
  5819. name: "Paw",
  5820. image: {
  5821. source: "./media/characters/alicia/paw.svg"
  5822. }
  5823. },
  5824. feral: {
  5825. height: math.unit(1.69, "meters"),
  5826. weight: math.unit(73, "kg"),
  5827. name: "Feral",
  5828. image: {
  5829. source: "./media/characters/alicia/feral.svg",
  5830. extra: 2123 / 1715,
  5831. bottom: 222 / 2349
  5832. }
  5833. },
  5834. },
  5835. [
  5836. {
  5837. name: "Normal",
  5838. height: math.unit(2.35, "meters")
  5839. },
  5840. {
  5841. name: "Macro",
  5842. height: math.unit(60, "meters"),
  5843. default: true
  5844. },
  5845. {
  5846. name: "Megamacro",
  5847. height: math.unit(10000, "kilometers")
  5848. },
  5849. ]
  5850. ))
  5851. characterMakers.push(() => makeCharacter(
  5852. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5853. {
  5854. front: {
  5855. height: math.unit(7, "feet"),
  5856. weight: math.unit(250, "lbs"),
  5857. name: "Front",
  5858. image: {
  5859. source: "./media/characters/archy/front.svg"
  5860. }
  5861. }
  5862. },
  5863. [
  5864. {
  5865. name: "Micro",
  5866. height: math.unit(1, "inch")
  5867. },
  5868. {
  5869. name: "Shorty",
  5870. height: math.unit(5, "feet")
  5871. },
  5872. {
  5873. name: "Normal",
  5874. height: math.unit(7, "feet")
  5875. },
  5876. {
  5877. name: "Macro",
  5878. height: math.unit(600, "meters"),
  5879. default: true
  5880. },
  5881. {
  5882. name: "Megamacro",
  5883. height: math.unit(1, "mile")
  5884. },
  5885. ]
  5886. ))
  5887. characterMakers.push(() => makeCharacter(
  5888. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5889. {
  5890. front: {
  5891. height: math.unit(1.65, "meters"),
  5892. weight: math.unit(74, "kg"),
  5893. name: "Front",
  5894. image: {
  5895. source: "./media/characters/berri/front.svg",
  5896. extra: 857 / 837,
  5897. bottom: 18 / 877
  5898. }
  5899. },
  5900. bum: {
  5901. height: math.unit(1.46, "feet"),
  5902. name: "Bum",
  5903. image: {
  5904. source: "./media/characters/berri/bum.svg"
  5905. }
  5906. },
  5907. mouth: {
  5908. height: math.unit(0.44, "feet"),
  5909. name: "Mouth",
  5910. image: {
  5911. source: "./media/characters/berri/mouth.svg"
  5912. }
  5913. },
  5914. paw: {
  5915. height: math.unit(0.826, "feet"),
  5916. name: "Paw",
  5917. image: {
  5918. source: "./media/characters/berri/paw.svg"
  5919. }
  5920. },
  5921. },
  5922. [
  5923. {
  5924. name: "Normal",
  5925. height: math.unit(1.65, "meters")
  5926. },
  5927. {
  5928. name: "Macro",
  5929. height: math.unit(60, "m"),
  5930. default: true
  5931. },
  5932. {
  5933. name: "Megamacro",
  5934. height: math.unit(9.213, "km")
  5935. },
  5936. {
  5937. name: "Planet Eater",
  5938. height: math.unit(489, "megameters")
  5939. },
  5940. {
  5941. name: "Teramacro",
  5942. height: math.unit(2471635000000, "meters")
  5943. },
  5944. {
  5945. name: "Examacro",
  5946. height: math.unit(8.0624e+26, "meters")
  5947. }
  5948. ]
  5949. ))
  5950. characterMakers.push(() => makeCharacter(
  5951. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5952. {
  5953. front: {
  5954. height: math.unit(1.72, "meters"),
  5955. weight: math.unit(68, "kg"),
  5956. name: "Front",
  5957. image: {
  5958. source: "./media/characters/lexi/front.svg"
  5959. }
  5960. }
  5961. },
  5962. [
  5963. {
  5964. name: "Very Smol",
  5965. height: math.unit(10, "mm")
  5966. },
  5967. {
  5968. name: "Micro",
  5969. height: math.unit(6.8, "cm"),
  5970. default: true
  5971. },
  5972. {
  5973. name: "Normal",
  5974. height: math.unit(1.72, "m")
  5975. }
  5976. ]
  5977. ))
  5978. characterMakers.push(() => makeCharacter(
  5979. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5980. {
  5981. front: {
  5982. height: math.unit(1.69, "meters"),
  5983. weight: math.unit(68, "kg"),
  5984. name: "Front",
  5985. image: {
  5986. source: "./media/characters/martin/front.svg",
  5987. extra: 596 / 581
  5988. }
  5989. }
  5990. },
  5991. [
  5992. {
  5993. name: "Micro",
  5994. height: math.unit(6.85, "cm"),
  5995. default: true
  5996. },
  5997. {
  5998. name: "Normal",
  5999. height: math.unit(1.69, "m")
  6000. }
  6001. ]
  6002. ))
  6003. characterMakers.push(() => makeCharacter(
  6004. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6005. {
  6006. front: {
  6007. height: math.unit(1.69, "meters"),
  6008. weight: math.unit(68, "kg"),
  6009. name: "Front",
  6010. image: {
  6011. source: "./media/characters/juno/front.svg"
  6012. }
  6013. }
  6014. },
  6015. [
  6016. {
  6017. name: "Micro",
  6018. height: math.unit(7, "cm")
  6019. },
  6020. {
  6021. name: "Normal",
  6022. height: math.unit(1.89, "m")
  6023. },
  6024. {
  6025. name: "Macro",
  6026. height: math.unit(353, "meters"),
  6027. default: true
  6028. }
  6029. ]
  6030. ))
  6031. characterMakers.push(() => makeCharacter(
  6032. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6033. {
  6034. front: {
  6035. height: math.unit(1.93, "meters"),
  6036. weight: math.unit(83, "kg"),
  6037. name: "Front",
  6038. image: {
  6039. source: "./media/characters/samantha/front.svg"
  6040. }
  6041. },
  6042. frontClothed: {
  6043. height: math.unit(1.93, "meters"),
  6044. weight: math.unit(83, "kg"),
  6045. name: "Front (Clothed)",
  6046. image: {
  6047. source: "./media/characters/samantha/front-clothed.svg"
  6048. }
  6049. },
  6050. back: {
  6051. height: math.unit(1.93, "meters"),
  6052. weight: math.unit(83, "kg"),
  6053. name: "Back",
  6054. image: {
  6055. source: "./media/characters/samantha/back.svg"
  6056. }
  6057. },
  6058. },
  6059. [
  6060. {
  6061. name: "Normal",
  6062. height: math.unit(1.93, "m")
  6063. },
  6064. {
  6065. name: "Macro",
  6066. height: math.unit(74, "meters"),
  6067. default: true
  6068. },
  6069. {
  6070. name: "Macro+",
  6071. height: math.unit(223, "meters"),
  6072. },
  6073. {
  6074. name: "Megamacro",
  6075. height: math.unit(8381, "meters"),
  6076. },
  6077. {
  6078. name: "Megamacro+",
  6079. height: math.unit(12000, "kilometers")
  6080. },
  6081. ]
  6082. ))
  6083. characterMakers.push(() => makeCharacter(
  6084. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6085. {
  6086. front: {
  6087. height: math.unit(1.92, "meters"),
  6088. weight: math.unit(80, "kg"),
  6089. name: "Front",
  6090. image: {
  6091. source: "./media/characters/dr-clay/front.svg"
  6092. }
  6093. },
  6094. frontClothed: {
  6095. height: math.unit(1.92, "meters"),
  6096. weight: math.unit(80, "kg"),
  6097. name: "Front (Clothed)",
  6098. image: {
  6099. source: "./media/characters/dr-clay/front-clothed.svg"
  6100. }
  6101. }
  6102. },
  6103. [
  6104. {
  6105. name: "Normal",
  6106. height: math.unit(1.92, "m")
  6107. },
  6108. {
  6109. name: "Macro",
  6110. height: math.unit(214, "meters"),
  6111. default: true
  6112. },
  6113. {
  6114. name: "Macro+",
  6115. height: math.unit(12.237, "meters"),
  6116. },
  6117. {
  6118. name: "Megamacro",
  6119. height: math.unit(557, "megameters"),
  6120. },
  6121. {
  6122. name: "Unimaginable",
  6123. height: math.unit(120e9, "lightyears")
  6124. },
  6125. ]
  6126. ))
  6127. characterMakers.push(() => makeCharacter(
  6128. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6129. {
  6130. front: {
  6131. height: math.unit(2, "meters"),
  6132. weight: math.unit(80, "kg"),
  6133. name: "Front",
  6134. image: {
  6135. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6136. }
  6137. }
  6138. },
  6139. [
  6140. {
  6141. name: "Teramacro",
  6142. height: math.unit(500000, "lightyears"),
  6143. default: true
  6144. },
  6145. ]
  6146. ))
  6147. characterMakers.push(() => makeCharacter(
  6148. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6149. {
  6150. front: {
  6151. height: math.unit(2, "meters"),
  6152. weight: math.unit(150, "kg"),
  6153. name: "Front",
  6154. image: {
  6155. source: "./media/characters/vemus/front.svg",
  6156. extra: 2384 / 2084,
  6157. bottom: 0.0123
  6158. }
  6159. }
  6160. },
  6161. [
  6162. {
  6163. name: "Normal",
  6164. height: math.unit(3.75, "meters"),
  6165. default: true
  6166. },
  6167. {
  6168. name: "Big",
  6169. height: math.unit(8, "meters")
  6170. },
  6171. {
  6172. name: "Macro",
  6173. height: math.unit(100, "meters")
  6174. },
  6175. {
  6176. name: "Macro+",
  6177. height: math.unit(1500, "meters")
  6178. },
  6179. {
  6180. name: "Stellar",
  6181. height: math.unit(14e8, "meters")
  6182. },
  6183. ]
  6184. ))
  6185. characterMakers.push(() => makeCharacter(
  6186. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6187. {
  6188. front: {
  6189. height: math.unit(2, "meters"),
  6190. weight: math.unit(70, "kg"),
  6191. name: "Front",
  6192. image: {
  6193. source: "./media/characters/beherit/front.svg",
  6194. extra: 1408 / 1242
  6195. }
  6196. }
  6197. },
  6198. [
  6199. {
  6200. name: "Normal",
  6201. height: math.unit(6, "feet")
  6202. },
  6203. {
  6204. name: "Lorg",
  6205. height: math.unit(25, "feet"),
  6206. default: true
  6207. },
  6208. {
  6209. name: "Lorger",
  6210. height: math.unit(75, "feet")
  6211. },
  6212. {
  6213. name: "Macro",
  6214. height: math.unit(200, "meters")
  6215. },
  6216. ]
  6217. ))
  6218. characterMakers.push(() => makeCharacter(
  6219. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6220. {
  6221. front: {
  6222. height: math.unit(2, "meters"),
  6223. weight: math.unit(150, "kg"),
  6224. name: "Front",
  6225. image: {
  6226. source: "./media/characters/everett/front.svg",
  6227. extra: 2038 / 1737,
  6228. bottom: 0.03
  6229. }
  6230. },
  6231. paw: {
  6232. height: math.unit(2 / 3.6, "meters"),
  6233. name: "Paw",
  6234. image: {
  6235. source: "./media/characters/everett/paw.svg"
  6236. }
  6237. },
  6238. },
  6239. [
  6240. {
  6241. name: "Normal",
  6242. height: math.unit(15, "feet"),
  6243. default: true
  6244. },
  6245. {
  6246. name: "Lorg",
  6247. height: math.unit(70, "feet"),
  6248. default: true
  6249. },
  6250. {
  6251. name: "Lorger",
  6252. height: math.unit(250, "feet")
  6253. },
  6254. {
  6255. name: "Macro",
  6256. height: math.unit(500, "meters")
  6257. },
  6258. ]
  6259. ))
  6260. characterMakers.push(() => makeCharacter(
  6261. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6262. {
  6263. front: {
  6264. height: math.unit(2, "meters"),
  6265. weight: math.unit(86, "kg"),
  6266. name: "Front",
  6267. image: {
  6268. source: "./media/characters/rose/front.svg",
  6269. extra: 350/335,
  6270. bottom: 10/360
  6271. }
  6272. },
  6273. frontAlt: {
  6274. height: math.unit(1.6, "meters"),
  6275. weight: math.unit(86, "kg"),
  6276. name: "Front (Alt)",
  6277. image: {
  6278. source: "./media/characters/rose/front-alt.svg",
  6279. extra: 299/283,
  6280. bottom: 3/302
  6281. }
  6282. },
  6283. plush: {
  6284. height: math.unit(2, "meters"),
  6285. weight: math.unit(86/3, "kg"),
  6286. name: "Plush",
  6287. image: {
  6288. source: "./media/characters/rose/plush.svg",
  6289. extra: 361/337,
  6290. bottom: 11/372
  6291. }
  6292. },
  6293. },
  6294. [
  6295. {
  6296. name: "Mini-Micro",
  6297. height: math.unit(1, "cm")
  6298. },
  6299. {
  6300. name: "Micro",
  6301. height: math.unit(3.5, "inches"),
  6302. default: true
  6303. },
  6304. {
  6305. name: "Normal",
  6306. height: math.unit(6 + 1 / 6, "feet")
  6307. },
  6308. {
  6309. name: "Mini-Macro",
  6310. height: math.unit(9 + 10 / 12, "feet")
  6311. },
  6312. ]
  6313. ))
  6314. characterMakers.push(() => makeCharacter(
  6315. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6316. {
  6317. front: {
  6318. height: math.unit(2, "meters"),
  6319. weight: math.unit(350, "lbs"),
  6320. name: "Front",
  6321. image: {
  6322. source: "./media/characters/regal/front.svg"
  6323. }
  6324. },
  6325. back: {
  6326. height: math.unit(2, "meters"),
  6327. weight: math.unit(350, "lbs"),
  6328. name: "Back",
  6329. image: {
  6330. source: "./media/characters/regal/back.svg"
  6331. }
  6332. },
  6333. },
  6334. [
  6335. {
  6336. name: "Macro",
  6337. height: math.unit(350, "feet"),
  6338. default: true
  6339. }
  6340. ]
  6341. ))
  6342. characterMakers.push(() => makeCharacter(
  6343. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6344. {
  6345. front: {
  6346. height: math.unit(4 + 11 / 12, "feet"),
  6347. weight: math.unit(100, "lbs"),
  6348. name: "Front",
  6349. image: {
  6350. source: "./media/characters/opal/front.svg"
  6351. }
  6352. },
  6353. frontAlt: {
  6354. height: math.unit(4 + 11 / 12, "feet"),
  6355. weight: math.unit(100, "lbs"),
  6356. name: "Front (Alt)",
  6357. image: {
  6358. source: "./media/characters/opal/front-alt.svg"
  6359. }
  6360. },
  6361. },
  6362. [
  6363. {
  6364. name: "Small",
  6365. height: math.unit(4 + 11 / 12, "feet")
  6366. },
  6367. {
  6368. name: "Normal",
  6369. height: math.unit(20, "feet"),
  6370. default: true
  6371. },
  6372. {
  6373. name: "Macro",
  6374. height: math.unit(120, "feet")
  6375. },
  6376. {
  6377. name: "Megamacro",
  6378. height: math.unit(80, "miles")
  6379. },
  6380. {
  6381. name: "True Size",
  6382. height: math.unit(100000, "lightyears")
  6383. },
  6384. ]
  6385. ))
  6386. characterMakers.push(() => makeCharacter(
  6387. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6388. {
  6389. front: {
  6390. height: math.unit(6, "feet"),
  6391. weight: math.unit(200, "lbs"),
  6392. name: "Front",
  6393. image: {
  6394. source: "./media/characters/vector-wuff/front.svg"
  6395. }
  6396. }
  6397. },
  6398. [
  6399. {
  6400. name: "Normal",
  6401. height: math.unit(2.8, "meters")
  6402. },
  6403. {
  6404. name: "Macro",
  6405. height: math.unit(450, "meters"),
  6406. default: true
  6407. },
  6408. {
  6409. name: "Megamacro",
  6410. height: math.unit(15, "kilometers")
  6411. }
  6412. ]
  6413. ))
  6414. characterMakers.push(() => makeCharacter(
  6415. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6416. {
  6417. front: {
  6418. height: math.unit(6, "feet"),
  6419. weight: math.unit(256, "lbs"),
  6420. name: "Front",
  6421. image: {
  6422. source: "./media/characters/dannik/front.svg"
  6423. }
  6424. }
  6425. },
  6426. [
  6427. {
  6428. name: "Macro",
  6429. height: math.unit(69.57, "meters"),
  6430. default: true
  6431. },
  6432. ]
  6433. ))
  6434. characterMakers.push(() => makeCharacter(
  6435. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6436. {
  6437. front: {
  6438. height: math.unit(6, "feet"),
  6439. weight: math.unit(120, "lbs"),
  6440. name: "Front",
  6441. image: {
  6442. source: "./media/characters/azura-saharah/front.svg"
  6443. }
  6444. },
  6445. back: {
  6446. height: math.unit(6, "feet"),
  6447. weight: math.unit(120, "lbs"),
  6448. name: "Back",
  6449. image: {
  6450. source: "./media/characters/azura-saharah/back.svg"
  6451. }
  6452. },
  6453. },
  6454. [
  6455. {
  6456. name: "Macro",
  6457. height: math.unit(100, "feet"),
  6458. default: true
  6459. },
  6460. ]
  6461. ))
  6462. characterMakers.push(() => makeCharacter(
  6463. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6464. {
  6465. side: {
  6466. height: math.unit(5 + 4 / 12, "feet"),
  6467. weight: math.unit(163, "lbs"),
  6468. name: "Side",
  6469. image: {
  6470. source: "./media/characters/kennedy/side.svg"
  6471. }
  6472. }
  6473. },
  6474. [
  6475. {
  6476. name: "Standard Doggo",
  6477. height: math.unit(5 + 4 / 12, "feet")
  6478. },
  6479. {
  6480. name: "Big Doggo",
  6481. height: math.unit(25 + 3 / 12, "feet"),
  6482. default: true
  6483. },
  6484. ]
  6485. ))
  6486. characterMakers.push(() => makeCharacter(
  6487. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6488. {
  6489. front: {
  6490. height: math.unit(6, "feet"),
  6491. weight: math.unit(90, "lbs"),
  6492. name: "Front",
  6493. image: {
  6494. source: "./media/characters/odi-lunar/front.svg"
  6495. }
  6496. }
  6497. },
  6498. [
  6499. {
  6500. name: "Micro",
  6501. height: math.unit(3, "inches"),
  6502. default: true
  6503. },
  6504. {
  6505. name: "Normal",
  6506. height: math.unit(5.5, "feet")
  6507. }
  6508. ]
  6509. ))
  6510. characterMakers.push(() => makeCharacter(
  6511. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6512. {
  6513. back: {
  6514. height: math.unit(6, "feet"),
  6515. weight: math.unit(220, "lbs"),
  6516. name: "Back",
  6517. image: {
  6518. source: "./media/characters/mandake/back.svg"
  6519. }
  6520. }
  6521. },
  6522. [
  6523. {
  6524. name: "Normal",
  6525. height: math.unit(7, "feet"),
  6526. default: true
  6527. },
  6528. {
  6529. name: "Macro",
  6530. height: math.unit(78, "feet")
  6531. },
  6532. {
  6533. name: "Macro+",
  6534. height: math.unit(300, "meters")
  6535. },
  6536. {
  6537. name: "Macro++",
  6538. height: math.unit(2400, "feet")
  6539. },
  6540. {
  6541. name: "Megamacro",
  6542. height: math.unit(5167, "meters")
  6543. },
  6544. {
  6545. name: "Gigamacro",
  6546. height: math.unit(41769, "miles")
  6547. },
  6548. ]
  6549. ))
  6550. characterMakers.push(() => makeCharacter(
  6551. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6552. {
  6553. front: {
  6554. height: math.unit(6, "feet"),
  6555. weight: math.unit(120, "lbs"),
  6556. name: "Front",
  6557. image: {
  6558. source: "./media/characters/yozey/front.svg"
  6559. }
  6560. },
  6561. frontAlt: {
  6562. height: math.unit(6, "feet"),
  6563. weight: math.unit(120, "lbs"),
  6564. name: "Front (Alt)",
  6565. image: {
  6566. source: "./media/characters/yozey/front-alt.svg"
  6567. }
  6568. },
  6569. side: {
  6570. height: math.unit(6, "feet"),
  6571. weight: math.unit(120, "lbs"),
  6572. name: "Side",
  6573. image: {
  6574. source: "./media/characters/yozey/side.svg"
  6575. }
  6576. },
  6577. },
  6578. [
  6579. {
  6580. name: "Micro",
  6581. height: math.unit(3, "inches"),
  6582. default: true
  6583. },
  6584. {
  6585. name: "Normal",
  6586. height: math.unit(6, "feet")
  6587. }
  6588. ]
  6589. ))
  6590. characterMakers.push(() => makeCharacter(
  6591. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6592. {
  6593. front: {
  6594. height: math.unit(6, "feet"),
  6595. weight: math.unit(103, "lbs"),
  6596. name: "Front",
  6597. image: {
  6598. source: "./media/characters/valeska-voss/front.svg"
  6599. }
  6600. }
  6601. },
  6602. [
  6603. {
  6604. name: "Mini-Sized Sub",
  6605. height: math.unit(3.1, "inches")
  6606. },
  6607. {
  6608. name: "Mid-Sized Sub",
  6609. height: math.unit(6.2, "inches")
  6610. },
  6611. {
  6612. name: "Full-Sized Sub",
  6613. height: math.unit(9.3, "inches")
  6614. },
  6615. {
  6616. name: "Normal",
  6617. height: math.unit(5 + 2 / 12, "foot"),
  6618. default: true
  6619. },
  6620. ]
  6621. ))
  6622. characterMakers.push(() => makeCharacter(
  6623. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6624. {
  6625. front: {
  6626. height: math.unit(6, "feet"),
  6627. weight: math.unit(160, "lbs"),
  6628. name: "Front",
  6629. image: {
  6630. source: "./media/characters/gene-zeta/front.svg",
  6631. extra: 3006 / 2826,
  6632. bottom: 182 / 3188
  6633. }
  6634. }
  6635. },
  6636. [
  6637. {
  6638. name: "Micro",
  6639. height: math.unit(6, "inches")
  6640. },
  6641. {
  6642. name: "Normal",
  6643. height: math.unit(5 + 11 / 12, "foot"),
  6644. default: true
  6645. },
  6646. {
  6647. name: "Macro",
  6648. height: math.unit(140, "feet")
  6649. },
  6650. {
  6651. name: "Supercharged",
  6652. height: math.unit(2500, "feet")
  6653. },
  6654. ]
  6655. ))
  6656. characterMakers.push(() => makeCharacter(
  6657. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6658. {
  6659. front: {
  6660. height: math.unit(6, "feet"),
  6661. weight: math.unit(350, "lbs"),
  6662. name: "Front",
  6663. image: {
  6664. source: "./media/characters/razinox/front.svg",
  6665. extra: 1686 / 1548,
  6666. bottom: 28.2 / 1868
  6667. }
  6668. },
  6669. back: {
  6670. height: math.unit(6, "feet"),
  6671. weight: math.unit(350, "lbs"),
  6672. name: "Back",
  6673. image: {
  6674. source: "./media/characters/razinox/back.svg",
  6675. extra: 1660 / 1590,
  6676. bottom: 15 / 1665
  6677. }
  6678. },
  6679. },
  6680. [
  6681. {
  6682. name: "Normal",
  6683. height: math.unit(10 + 8 / 12, "foot")
  6684. },
  6685. {
  6686. name: "Minimacro",
  6687. height: math.unit(15, "foot")
  6688. },
  6689. {
  6690. name: "Macro",
  6691. height: math.unit(60, "foot"),
  6692. default: true
  6693. },
  6694. {
  6695. name: "Megamacro",
  6696. height: math.unit(5, "miles")
  6697. },
  6698. {
  6699. name: "Gigamacro",
  6700. height: math.unit(6000, "miles")
  6701. },
  6702. ]
  6703. ))
  6704. characterMakers.push(() => makeCharacter(
  6705. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6706. {
  6707. front: {
  6708. height: math.unit(6, "feet"),
  6709. weight: math.unit(150, "lbs"),
  6710. name: "Front",
  6711. image: {
  6712. source: "./media/characters/cobalt/front.svg"
  6713. }
  6714. }
  6715. },
  6716. [
  6717. {
  6718. name: "Normal",
  6719. height: math.unit(8 + 1 / 12, "foot")
  6720. },
  6721. {
  6722. name: "Macro",
  6723. height: math.unit(111, "foot"),
  6724. default: true
  6725. },
  6726. {
  6727. name: "Supracosmic",
  6728. height: math.unit(1e42, "feet")
  6729. },
  6730. ]
  6731. ))
  6732. characterMakers.push(() => makeCharacter(
  6733. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6734. {
  6735. front: {
  6736. height: math.unit(6, "feet"),
  6737. weight: math.unit(140, "lbs"),
  6738. name: "Front",
  6739. image: {
  6740. source: "./media/characters/amanda/front.svg"
  6741. }
  6742. }
  6743. },
  6744. [
  6745. {
  6746. name: "Micro",
  6747. height: math.unit(5, "inches"),
  6748. default: true
  6749. },
  6750. ]
  6751. ))
  6752. characterMakers.push(() => makeCharacter(
  6753. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6754. {
  6755. front: {
  6756. height: math.unit(2.75, "meters"),
  6757. weight: math.unit(1200, "lb"),
  6758. name: "Front",
  6759. image: {
  6760. source: "./media/characters/teal/front.svg",
  6761. extra: 2463 / 2320,
  6762. bottom: 166 / 2629
  6763. }
  6764. },
  6765. back: {
  6766. height: math.unit(2.75, "meters"),
  6767. weight: math.unit(1200, "lb"),
  6768. name: "Back",
  6769. image: {
  6770. source: "./media/characters/teal/back.svg",
  6771. extra: 2580 / 2489,
  6772. bottom: 151 / 2731
  6773. }
  6774. },
  6775. sitting: {
  6776. height: math.unit(1.9, "meters"),
  6777. weight: math.unit(1200, "lb"),
  6778. name: "Sitting",
  6779. image: {
  6780. source: "./media/characters/teal/sitting.svg",
  6781. extra: 623 / 590,
  6782. bottom: 121 / 744
  6783. }
  6784. },
  6785. standing: {
  6786. height: math.unit(2.75, "meters"),
  6787. weight: math.unit(1200, "lb"),
  6788. name: "Standing",
  6789. image: {
  6790. source: "./media/characters/teal/standing.svg",
  6791. extra: 923 / 893,
  6792. bottom: 60 / 983
  6793. }
  6794. },
  6795. stretching: {
  6796. height: math.unit(3.65, "meters"),
  6797. weight: math.unit(1200, "lb"),
  6798. name: "Stretching",
  6799. image: {
  6800. source: "./media/characters/teal/stretching.svg",
  6801. extra: 1276 / 1244,
  6802. bottom: 0 / 1276
  6803. }
  6804. },
  6805. legged: {
  6806. height: math.unit(1.3, "meters"),
  6807. weight: math.unit(100, "lb"),
  6808. name: "Legged",
  6809. image: {
  6810. source: "./media/characters/teal/legged.svg",
  6811. extra: 462 / 437,
  6812. bottom: 24 / 486
  6813. }
  6814. },
  6815. naga: {
  6816. height: math.unit(5.4, "meters"),
  6817. weight: math.unit(4000, "lb"),
  6818. name: "Naga",
  6819. image: {
  6820. source: "./media/characters/teal/naga.svg",
  6821. extra: 1902 / 1858,
  6822. bottom: 0 / 1902
  6823. }
  6824. },
  6825. hand: {
  6826. height: math.unit(0.52, "meters"),
  6827. name: "Hand",
  6828. image: {
  6829. source: "./media/characters/teal/hand.svg"
  6830. }
  6831. },
  6832. maw: {
  6833. height: math.unit(0.43, "meters"),
  6834. name: "Maw",
  6835. image: {
  6836. source: "./media/characters/teal/maw.svg"
  6837. }
  6838. },
  6839. slit: {
  6840. height: math.unit(0.25, "meters"),
  6841. name: "Slit",
  6842. image: {
  6843. source: "./media/characters/teal/slit.svg"
  6844. }
  6845. },
  6846. },
  6847. [
  6848. {
  6849. name: "Normal",
  6850. height: math.unit(2.75, "meters"),
  6851. default: true
  6852. },
  6853. {
  6854. name: "Macro",
  6855. height: math.unit(300, "feet")
  6856. },
  6857. {
  6858. name: "Macro+",
  6859. height: math.unit(2000, "feet")
  6860. },
  6861. ]
  6862. ))
  6863. characterMakers.push(() => makeCharacter(
  6864. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6865. {
  6866. frontCat: {
  6867. height: math.unit(6, "feet"),
  6868. weight: math.unit(180, "lbs"),
  6869. name: "Front (Cat)",
  6870. image: {
  6871. source: "./media/characters/ravin-amulet/front-cat.svg"
  6872. }
  6873. },
  6874. frontCatAlt: {
  6875. height: math.unit(6, "feet"),
  6876. weight: math.unit(180, "lbs"),
  6877. name: "Front (Alt, Cat)",
  6878. image: {
  6879. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6880. }
  6881. },
  6882. frontWerewolf: {
  6883. height: math.unit(6 * 1.2, "feet"),
  6884. weight: math.unit(225, "lbs"),
  6885. name: "Front (Werewolf)",
  6886. image: {
  6887. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6888. }
  6889. },
  6890. backWerewolf: {
  6891. height: math.unit(6 * 1.2, "feet"),
  6892. weight: math.unit(225, "lbs"),
  6893. name: "Back (Werewolf)",
  6894. image: {
  6895. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6896. }
  6897. },
  6898. },
  6899. [
  6900. {
  6901. name: "Nano",
  6902. height: math.unit(1, "micrometer")
  6903. },
  6904. {
  6905. name: "Micro",
  6906. height: math.unit(1, "inch")
  6907. },
  6908. {
  6909. name: "Normal",
  6910. height: math.unit(6, "feet"),
  6911. default: true
  6912. },
  6913. {
  6914. name: "Macro",
  6915. height: math.unit(60, "feet")
  6916. }
  6917. ]
  6918. ))
  6919. characterMakers.push(() => makeCharacter(
  6920. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6921. {
  6922. front: {
  6923. height: math.unit(6, "feet"),
  6924. weight: math.unit(165, "lbs"),
  6925. name: "Front",
  6926. image: {
  6927. source: "./media/characters/fluoresce/front.svg"
  6928. }
  6929. }
  6930. },
  6931. [
  6932. {
  6933. name: "Micro",
  6934. height: math.unit(6, "cm")
  6935. },
  6936. {
  6937. name: "Normal",
  6938. height: math.unit(5 + 7 / 12, "feet"),
  6939. default: true
  6940. },
  6941. {
  6942. name: "Macro",
  6943. height: math.unit(56, "feet")
  6944. },
  6945. {
  6946. name: "Megamacro",
  6947. height: math.unit(1.9, "miles")
  6948. },
  6949. ]
  6950. ))
  6951. characterMakers.push(() => makeCharacter(
  6952. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6953. {
  6954. front: {
  6955. height: math.unit(9 + 6 / 12, "feet"),
  6956. weight: math.unit(523, "lbs"),
  6957. name: "Side",
  6958. image: {
  6959. source: "./media/characters/aurora/side.svg"
  6960. }
  6961. }
  6962. },
  6963. [
  6964. {
  6965. name: "Normal",
  6966. height: math.unit(9 + 6 / 12, "feet")
  6967. },
  6968. {
  6969. name: "Macro",
  6970. height: math.unit(96, "feet"),
  6971. default: true
  6972. },
  6973. {
  6974. name: "Macro+",
  6975. height: math.unit(243, "feet")
  6976. },
  6977. ]
  6978. ))
  6979. characterMakers.push(() => makeCharacter(
  6980. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6981. {
  6982. front: {
  6983. height: math.unit(194, "cm"),
  6984. weight: math.unit(90, "kg"),
  6985. name: "Front",
  6986. image: {
  6987. source: "./media/characters/ranek/front.svg"
  6988. }
  6989. },
  6990. side: {
  6991. height: math.unit(194, "cm"),
  6992. weight: math.unit(90, "kg"),
  6993. name: "Side",
  6994. image: {
  6995. source: "./media/characters/ranek/side.svg"
  6996. }
  6997. },
  6998. back: {
  6999. height: math.unit(194, "cm"),
  7000. weight: math.unit(90, "kg"),
  7001. name: "Back",
  7002. image: {
  7003. source: "./media/characters/ranek/back.svg"
  7004. }
  7005. },
  7006. feral: {
  7007. height: math.unit(30, "cm"),
  7008. weight: math.unit(1.6, "lbs"),
  7009. name: "Feral",
  7010. image: {
  7011. source: "./media/characters/ranek/feral.svg"
  7012. }
  7013. },
  7014. },
  7015. [
  7016. {
  7017. name: "Normal",
  7018. height: math.unit(194, "cm"),
  7019. default: true
  7020. },
  7021. {
  7022. name: "Macro",
  7023. height: math.unit(100, "meters")
  7024. },
  7025. ]
  7026. ))
  7027. characterMakers.push(() => makeCharacter(
  7028. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7029. {
  7030. front: {
  7031. height: math.unit(5 + 6 / 12, "feet"),
  7032. weight: math.unit(153, "lbs"),
  7033. name: "Front",
  7034. image: {
  7035. source: "./media/characters/andrew-cooper/front.svg"
  7036. }
  7037. },
  7038. },
  7039. [
  7040. {
  7041. name: "Nano",
  7042. height: math.unit(1, "mm")
  7043. },
  7044. {
  7045. name: "Micro",
  7046. height: math.unit(2, "inches")
  7047. },
  7048. {
  7049. name: "Normal",
  7050. height: math.unit(5 + 6 / 12, "feet"),
  7051. default: true
  7052. }
  7053. ]
  7054. ))
  7055. characterMakers.push(() => makeCharacter(
  7056. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7057. {
  7058. front: {
  7059. height: math.unit(6, "feet"),
  7060. weight: math.unit(180, "lbs"),
  7061. name: "Front",
  7062. image: {
  7063. source: "./media/characters/akane-sato/front.svg",
  7064. extra: 1219 / 1140
  7065. }
  7066. },
  7067. back: {
  7068. height: math.unit(6, "feet"),
  7069. weight: math.unit(180, "lbs"),
  7070. name: "Back",
  7071. image: {
  7072. source: "./media/characters/akane-sato/back.svg",
  7073. extra: 1219 / 1170
  7074. }
  7075. },
  7076. },
  7077. [
  7078. {
  7079. name: "Normal",
  7080. height: math.unit(2.5, "meters")
  7081. },
  7082. {
  7083. name: "Macro",
  7084. height: math.unit(250, "meters"),
  7085. default: true
  7086. },
  7087. {
  7088. name: "Megamacro",
  7089. height: math.unit(25, "km")
  7090. },
  7091. ]
  7092. ))
  7093. characterMakers.push(() => makeCharacter(
  7094. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7095. {
  7096. front: {
  7097. height: math.unit(6, "feet"),
  7098. weight: math.unit(65, "kg"),
  7099. name: "Front",
  7100. image: {
  7101. source: "./media/characters/rook/front.svg",
  7102. extra: 960 / 950
  7103. }
  7104. }
  7105. },
  7106. [
  7107. {
  7108. name: "Normal",
  7109. height: math.unit(8.8, "feet")
  7110. },
  7111. {
  7112. name: "Macro",
  7113. height: math.unit(88, "feet"),
  7114. default: true
  7115. },
  7116. {
  7117. name: "Megamacro",
  7118. height: math.unit(8, "miles")
  7119. },
  7120. ]
  7121. ))
  7122. characterMakers.push(() => makeCharacter(
  7123. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7124. {
  7125. front: {
  7126. height: math.unit(12 + 2 / 12, "feet"),
  7127. weight: math.unit(808, "lbs"),
  7128. name: "Front",
  7129. image: {
  7130. source: "./media/characters/prodigy/front.svg"
  7131. }
  7132. }
  7133. },
  7134. [
  7135. {
  7136. name: "Normal",
  7137. height: math.unit(12 + 2 / 12, "feet"),
  7138. default: true
  7139. },
  7140. {
  7141. name: "Macro",
  7142. height: math.unit(143, "feet")
  7143. },
  7144. {
  7145. name: "Macro+",
  7146. height: math.unit(400, "feet")
  7147. },
  7148. ]
  7149. ))
  7150. characterMakers.push(() => makeCharacter(
  7151. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7152. {
  7153. front: {
  7154. height: math.unit(6, "feet"),
  7155. weight: math.unit(225, "lbs"),
  7156. name: "Front",
  7157. image: {
  7158. source: "./media/characters/daniel/front.svg"
  7159. }
  7160. },
  7161. leaning: {
  7162. height: math.unit(6, "feet"),
  7163. weight: math.unit(225, "lbs"),
  7164. name: "Leaning",
  7165. image: {
  7166. source: "./media/characters/daniel/leaning.svg"
  7167. }
  7168. },
  7169. },
  7170. [
  7171. {
  7172. name: "Macro",
  7173. height: math.unit(1000, "feet"),
  7174. default: true
  7175. },
  7176. ]
  7177. ))
  7178. characterMakers.push(() => makeCharacter(
  7179. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7180. {
  7181. front: {
  7182. height: math.unit(6, "feet"),
  7183. weight: math.unit(88, "lbs"),
  7184. name: "Front",
  7185. image: {
  7186. source: "./media/characters/chiros/front.svg",
  7187. extra: 306 / 226
  7188. }
  7189. },
  7190. side: {
  7191. height: math.unit(6, "feet"),
  7192. weight: math.unit(88, "lbs"),
  7193. name: "Side",
  7194. image: {
  7195. source: "./media/characters/chiros/side.svg",
  7196. extra: 306 / 226
  7197. }
  7198. },
  7199. },
  7200. [
  7201. {
  7202. name: "Normal",
  7203. height: math.unit(6, "cm"),
  7204. default: true
  7205. },
  7206. ]
  7207. ))
  7208. characterMakers.push(() => makeCharacter(
  7209. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7210. {
  7211. front: {
  7212. height: math.unit(6, "feet"),
  7213. weight: math.unit(100, "lbs"),
  7214. name: "Front",
  7215. image: {
  7216. source: "./media/characters/selka/front.svg",
  7217. extra: 947 / 887
  7218. }
  7219. }
  7220. },
  7221. [
  7222. {
  7223. name: "Normal",
  7224. height: math.unit(5, "cm"),
  7225. default: true
  7226. },
  7227. ]
  7228. ))
  7229. characterMakers.push(() => makeCharacter(
  7230. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7231. {
  7232. front: {
  7233. height: math.unit(8 + 3 / 12, "feet"),
  7234. weight: math.unit(424, "lbs"),
  7235. name: "Front",
  7236. image: {
  7237. source: "./media/characters/verin/front.svg",
  7238. extra: 1845 / 1550
  7239. }
  7240. },
  7241. frontArmored: {
  7242. height: math.unit(8 + 3 / 12, "feet"),
  7243. weight: math.unit(424, "lbs"),
  7244. name: "Front (Armored)",
  7245. image: {
  7246. source: "./media/characters/verin/front-armor.svg",
  7247. extra: 1845 / 1550,
  7248. bottom: 0.01
  7249. }
  7250. },
  7251. back: {
  7252. height: math.unit(8 + 3 / 12, "feet"),
  7253. weight: math.unit(424, "lbs"),
  7254. name: "Back",
  7255. image: {
  7256. source: "./media/characters/verin/back.svg",
  7257. bottom: 0.1,
  7258. extra: 1
  7259. }
  7260. },
  7261. foot: {
  7262. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7263. name: "Foot",
  7264. image: {
  7265. source: "./media/characters/verin/foot.svg"
  7266. }
  7267. },
  7268. },
  7269. [
  7270. {
  7271. name: "Normal",
  7272. height: math.unit(8 + 3 / 12, "feet")
  7273. },
  7274. {
  7275. name: "Minimacro",
  7276. height: math.unit(21, "feet"),
  7277. default: true
  7278. },
  7279. {
  7280. name: "Macro",
  7281. height: math.unit(626, "feet")
  7282. },
  7283. ]
  7284. ))
  7285. characterMakers.push(() => makeCharacter(
  7286. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7287. {
  7288. front: {
  7289. height: math.unit(2.718, "meters"),
  7290. weight: math.unit(150, "lbs"),
  7291. name: "Front",
  7292. image: {
  7293. source: "./media/characters/sovrim-terraquian/front.svg"
  7294. }
  7295. },
  7296. back: {
  7297. height: math.unit(2.718, "meters"),
  7298. weight: math.unit(150, "lbs"),
  7299. name: "Back",
  7300. image: {
  7301. source: "./media/characters/sovrim-terraquian/back.svg"
  7302. }
  7303. }
  7304. },
  7305. [
  7306. {
  7307. name: "Micro",
  7308. height: math.unit(2, "inches")
  7309. },
  7310. {
  7311. name: "Small",
  7312. height: math.unit(1, "meter")
  7313. },
  7314. {
  7315. name: "Normal",
  7316. height: math.unit(Math.E, "meters"),
  7317. default: true
  7318. },
  7319. {
  7320. name: "Macro",
  7321. height: math.unit(20, "meters")
  7322. },
  7323. {
  7324. name: "Macro+",
  7325. height: math.unit(400, "meters")
  7326. },
  7327. ]
  7328. ))
  7329. characterMakers.push(() => makeCharacter(
  7330. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7331. {
  7332. front: {
  7333. height: math.unit(7, "feet"),
  7334. weight: math.unit(489, "lbs"),
  7335. name: "Front",
  7336. image: {
  7337. source: "./media/characters/reece-silvermane/front.svg",
  7338. bottom: 0.02,
  7339. extra: 1
  7340. }
  7341. },
  7342. },
  7343. [
  7344. {
  7345. name: "Macro",
  7346. height: math.unit(1.5, "miles"),
  7347. default: true
  7348. },
  7349. ]
  7350. ))
  7351. characterMakers.push(() => makeCharacter(
  7352. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7353. {
  7354. front: {
  7355. height: math.unit(6, "feet"),
  7356. weight: math.unit(78, "kg"),
  7357. name: "Front",
  7358. image: {
  7359. source: "./media/characters/kane/front.svg",
  7360. extra: 978 / 899
  7361. }
  7362. },
  7363. },
  7364. [
  7365. {
  7366. name: "Normal",
  7367. height: math.unit(2.1, "m"),
  7368. },
  7369. {
  7370. name: "Macro",
  7371. height: math.unit(1, "km"),
  7372. default: true
  7373. },
  7374. ]
  7375. ))
  7376. characterMakers.push(() => makeCharacter(
  7377. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7378. {
  7379. front: {
  7380. height: math.unit(6, "feet"),
  7381. weight: math.unit(200, "kg"),
  7382. name: "Front",
  7383. image: {
  7384. source: "./media/characters/tegon/front.svg",
  7385. bottom: 0.01,
  7386. extra: 1
  7387. }
  7388. },
  7389. },
  7390. [
  7391. {
  7392. name: "Micro",
  7393. height: math.unit(1, "inch")
  7394. },
  7395. {
  7396. name: "Normal",
  7397. height: math.unit(6 + 3 / 12, "feet"),
  7398. default: true
  7399. },
  7400. {
  7401. name: "Macro",
  7402. height: math.unit(300, "feet")
  7403. },
  7404. {
  7405. name: "Megamacro",
  7406. height: math.unit(69, "miles")
  7407. },
  7408. ]
  7409. ))
  7410. characterMakers.push(() => makeCharacter(
  7411. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7412. {
  7413. side: {
  7414. height: math.unit(6, "feet"),
  7415. weight: math.unit(2304, "lbs"),
  7416. name: "Side",
  7417. image: {
  7418. source: "./media/characters/arcturax/side.svg",
  7419. extra: 790 / 376,
  7420. bottom: 0.01
  7421. }
  7422. },
  7423. },
  7424. [
  7425. {
  7426. name: "Micro",
  7427. height: math.unit(2, "inch")
  7428. },
  7429. {
  7430. name: "Normal",
  7431. height: math.unit(6, "feet")
  7432. },
  7433. {
  7434. name: "Macro",
  7435. height: math.unit(39, "feet"),
  7436. default: true
  7437. },
  7438. {
  7439. name: "Megamacro",
  7440. height: math.unit(7, "miles")
  7441. },
  7442. ]
  7443. ))
  7444. characterMakers.push(() => makeCharacter(
  7445. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7446. {
  7447. front: {
  7448. height: math.unit(6, "feet"),
  7449. weight: math.unit(50, "lbs"),
  7450. name: "Front",
  7451. image: {
  7452. source: "./media/characters/sentri/front.svg",
  7453. extra: 1750 / 1570,
  7454. bottom: 0.025
  7455. }
  7456. },
  7457. frontAlt: {
  7458. height: math.unit(6, "feet"),
  7459. weight: math.unit(50, "lbs"),
  7460. name: "Front (Alt)",
  7461. image: {
  7462. source: "./media/characters/sentri/front-alt.svg",
  7463. extra: 1750 / 1570,
  7464. bottom: 0.025
  7465. }
  7466. },
  7467. },
  7468. [
  7469. {
  7470. name: "Normal",
  7471. height: math.unit(15, "feet"),
  7472. default: true
  7473. },
  7474. {
  7475. name: "Macro",
  7476. height: math.unit(2500, "feet")
  7477. }
  7478. ]
  7479. ))
  7480. characterMakers.push(() => makeCharacter(
  7481. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7482. {
  7483. front: {
  7484. height: math.unit(5 + 8 / 12, "feet"),
  7485. weight: math.unit(130, "lbs"),
  7486. name: "Front",
  7487. image: {
  7488. source: "./media/characters/corvin/front.svg",
  7489. extra: 1803 / 1629
  7490. }
  7491. },
  7492. frontShirt: {
  7493. height: math.unit(5 + 8 / 12, "feet"),
  7494. weight: math.unit(130, "lbs"),
  7495. name: "Front (Shirt)",
  7496. image: {
  7497. source: "./media/characters/corvin/front-shirt.svg",
  7498. extra: 1803 / 1629
  7499. }
  7500. },
  7501. frontPoncho: {
  7502. height: math.unit(5 + 8 / 12, "feet"),
  7503. weight: math.unit(130, "lbs"),
  7504. name: "Front (Poncho)",
  7505. image: {
  7506. source: "./media/characters/corvin/front-poncho.svg",
  7507. extra: 1803 / 1629
  7508. }
  7509. },
  7510. side: {
  7511. height: math.unit(5 + 8 / 12, "feet"),
  7512. weight: math.unit(130, "lbs"),
  7513. name: "Side",
  7514. image: {
  7515. source: "./media/characters/corvin/side.svg",
  7516. extra: 1012 / 945
  7517. }
  7518. },
  7519. back: {
  7520. height: math.unit(5 + 8 / 12, "feet"),
  7521. weight: math.unit(130, "lbs"),
  7522. name: "Back",
  7523. image: {
  7524. source: "./media/characters/corvin/back.svg",
  7525. extra: 1803 / 1629
  7526. }
  7527. },
  7528. },
  7529. [
  7530. {
  7531. name: "Micro",
  7532. height: math.unit(3, "inches")
  7533. },
  7534. {
  7535. name: "Normal",
  7536. height: math.unit(5 + 8 / 12, "feet")
  7537. },
  7538. {
  7539. name: "Macro",
  7540. height: math.unit(300, "feet"),
  7541. default: true
  7542. },
  7543. {
  7544. name: "Megamacro",
  7545. height: math.unit(500, "miles")
  7546. }
  7547. ]
  7548. ))
  7549. characterMakers.push(() => makeCharacter(
  7550. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7551. {
  7552. front: {
  7553. height: math.unit(6, "feet"),
  7554. weight: math.unit(135, "lbs"),
  7555. name: "Front",
  7556. image: {
  7557. source: "./media/characters/q/front.svg",
  7558. extra: 854 / 752,
  7559. bottom: 0.005
  7560. }
  7561. },
  7562. back: {
  7563. height: math.unit(6, "feet"),
  7564. weight: math.unit(130, "lbs"),
  7565. name: "Back",
  7566. image: {
  7567. source: "./media/characters/q/back.svg",
  7568. extra: 854 / 752
  7569. }
  7570. },
  7571. },
  7572. [
  7573. {
  7574. name: "Macro",
  7575. height: math.unit(90, "feet"),
  7576. default: true
  7577. },
  7578. {
  7579. name: "Extra Macro",
  7580. height: math.unit(300, "feet"),
  7581. },
  7582. {
  7583. name: "BIG WALF",
  7584. height: math.unit(750, "feet"),
  7585. },
  7586. ]
  7587. ))
  7588. characterMakers.push(() => makeCharacter(
  7589. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7590. {
  7591. front: {
  7592. height: math.unit(6, "feet"),
  7593. weight: math.unit(150, "lbs"),
  7594. name: "Front",
  7595. image: {
  7596. source: "./media/characters/carley/front.svg",
  7597. extra: 3927 / 3540,
  7598. bottom: 29.2 / 735
  7599. }
  7600. }
  7601. },
  7602. [
  7603. {
  7604. name: "Normal",
  7605. height: math.unit(6 + 3 / 12, "feet")
  7606. },
  7607. {
  7608. name: "Macro",
  7609. height: math.unit(185, "feet"),
  7610. default: true
  7611. },
  7612. {
  7613. name: "Megamacro",
  7614. height: math.unit(8, "miles"),
  7615. },
  7616. ]
  7617. ))
  7618. characterMakers.push(() => makeCharacter(
  7619. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7620. {
  7621. front: {
  7622. height: math.unit(3, "feet"),
  7623. weight: math.unit(28, "lbs"),
  7624. name: "Front",
  7625. image: {
  7626. source: "./media/characters/citrine/front.svg"
  7627. }
  7628. }
  7629. },
  7630. [
  7631. {
  7632. name: "Normal",
  7633. height: math.unit(3, "feet"),
  7634. default: true
  7635. }
  7636. ]
  7637. ))
  7638. characterMakers.push(() => makeCharacter(
  7639. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7640. {
  7641. front: {
  7642. height: math.unit(14, "feet"),
  7643. weight: math.unit(1450, "kg"),
  7644. capacity: math.unit(15, "people"),
  7645. name: "Front",
  7646. image: {
  7647. source: "./media/characters/aura-starwind/front.svg",
  7648. extra: 1455 / 1335
  7649. }
  7650. },
  7651. side: {
  7652. height: math.unit(14, "feet"),
  7653. weight: math.unit(1450, "kg"),
  7654. capacity: math.unit(15, "people"),
  7655. name: "Side",
  7656. image: {
  7657. source: "./media/characters/aura-starwind/side.svg",
  7658. extra: 1654 / 1497
  7659. }
  7660. },
  7661. taur: {
  7662. height: math.unit(18, "feet"),
  7663. weight: math.unit(5500, "kg"),
  7664. capacity: math.unit(50, "people"),
  7665. name: "Taur",
  7666. image: {
  7667. source: "./media/characters/aura-starwind/taur.svg",
  7668. extra: 1760 / 1650
  7669. }
  7670. },
  7671. feral: {
  7672. height: math.unit(46, "feet"),
  7673. weight: math.unit(25000, "kg"),
  7674. capacity: math.unit(120, "people"),
  7675. name: "Feral",
  7676. image: {
  7677. source: "./media/characters/aura-starwind/feral.svg"
  7678. }
  7679. },
  7680. },
  7681. [
  7682. {
  7683. name: "Normal",
  7684. height: math.unit(14, "feet"),
  7685. default: true
  7686. },
  7687. {
  7688. name: "Macro",
  7689. height: math.unit(50, "meters")
  7690. },
  7691. {
  7692. name: "Megamacro",
  7693. height: math.unit(5000, "meters")
  7694. },
  7695. {
  7696. name: "Gigamacro",
  7697. height: math.unit(100000, "kilometers")
  7698. },
  7699. ]
  7700. ))
  7701. characterMakers.push(() => makeCharacter(
  7702. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7703. {
  7704. front: {
  7705. height: math.unit(2 + 7 / 12, "feet"),
  7706. weight: math.unit(32, "lbs"),
  7707. name: "Front",
  7708. image: {
  7709. source: "./media/characters/rivet/front.svg",
  7710. extra: 1716 / 1658,
  7711. bottom: 0.03
  7712. }
  7713. },
  7714. foot: {
  7715. height: math.unit(0.551, "feet"),
  7716. name: "Rivet's Foot",
  7717. image: {
  7718. source: "./media/characters/rivet/foot.svg"
  7719. },
  7720. rename: true
  7721. }
  7722. },
  7723. [
  7724. {
  7725. name: "Micro",
  7726. height: math.unit(1.5, "inches"),
  7727. },
  7728. {
  7729. name: "Normal",
  7730. height: math.unit(2 + 7 / 12, "feet"),
  7731. default: true
  7732. },
  7733. {
  7734. name: "Macro",
  7735. height: math.unit(85, "feet")
  7736. },
  7737. {
  7738. name: "Megamacro",
  7739. height: math.unit(2.2, "km")
  7740. }
  7741. ]
  7742. ))
  7743. characterMakers.push(() => makeCharacter(
  7744. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7745. {
  7746. front: {
  7747. height: math.unit(5 + 9 / 12, "feet"),
  7748. weight: math.unit(150, "lbs"),
  7749. name: "Front",
  7750. image: {
  7751. source: "./media/characters/coffee/front.svg",
  7752. extra: 3666 / 3032,
  7753. bottom: 0.04
  7754. }
  7755. },
  7756. foot: {
  7757. height: math.unit(1.29, "feet"),
  7758. name: "Foot",
  7759. image: {
  7760. source: "./media/characters/coffee/foot.svg"
  7761. }
  7762. },
  7763. },
  7764. [
  7765. {
  7766. name: "Micro",
  7767. height: math.unit(2, "inches"),
  7768. },
  7769. {
  7770. name: "Normal",
  7771. height: math.unit(5 + 9 / 12, "feet"),
  7772. default: true
  7773. },
  7774. {
  7775. name: "Macro",
  7776. height: math.unit(800, "feet")
  7777. },
  7778. {
  7779. name: "Megamacro",
  7780. height: math.unit(25, "miles")
  7781. }
  7782. ]
  7783. ))
  7784. characterMakers.push(() => makeCharacter(
  7785. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7786. {
  7787. front: {
  7788. height: math.unit(6, "feet"),
  7789. weight: math.unit(200, "lbs"),
  7790. name: "Front",
  7791. image: {
  7792. source: "./media/characters/chari-gal/front.svg",
  7793. extra: 1568 / 1385,
  7794. bottom: 0.047
  7795. }
  7796. },
  7797. gigantamax: {
  7798. height: math.unit(6 * 16, "feet"),
  7799. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7800. name: "Gigantamax",
  7801. image: {
  7802. source: "./media/characters/chari-gal/gigantamax.svg",
  7803. extra: 1124 / 888,
  7804. bottom: 0.03
  7805. }
  7806. },
  7807. },
  7808. [
  7809. {
  7810. name: "Normal",
  7811. height: math.unit(5 + 7 / 12, "feet")
  7812. },
  7813. {
  7814. name: "Macro",
  7815. height: math.unit(200, "feet"),
  7816. default: true
  7817. }
  7818. ]
  7819. ))
  7820. characterMakers.push(() => makeCharacter(
  7821. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7822. {
  7823. front: {
  7824. height: math.unit(6, "feet"),
  7825. weight: math.unit(150, "lbs"),
  7826. name: "Front",
  7827. image: {
  7828. source: "./media/characters/nova/front.svg",
  7829. extra: 5000 / 4722,
  7830. bottom: 0.02
  7831. }
  7832. }
  7833. },
  7834. [
  7835. {
  7836. name: "Micro-",
  7837. height: math.unit(0.8, "inches")
  7838. },
  7839. {
  7840. name: "Micro",
  7841. height: math.unit(2, "inches"),
  7842. default: true
  7843. },
  7844. ]
  7845. ))
  7846. characterMakers.push(() => makeCharacter(
  7847. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7848. {
  7849. front: {
  7850. height: math.unit(3 + 1 / 12, "feet"),
  7851. weight: math.unit(21.7, "lbs"),
  7852. name: "Front",
  7853. image: {
  7854. source: "./media/characters/argent/front.svg",
  7855. extra: 1471 / 1331,
  7856. bottom: 100.8 / 1575.5
  7857. }
  7858. }
  7859. },
  7860. [
  7861. {
  7862. name: "Micro",
  7863. height: math.unit(2, "inches")
  7864. },
  7865. {
  7866. name: "Normal",
  7867. height: math.unit(3 + 1 / 12, "feet"),
  7868. default: true
  7869. },
  7870. {
  7871. name: "Macro",
  7872. height: math.unit(120, "feet")
  7873. },
  7874. ]
  7875. ))
  7876. characterMakers.push(() => makeCharacter(
  7877. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7878. {
  7879. lamp: {
  7880. height: math.unit(7 * 1559 / 989, "feet"),
  7881. name: "Magic Lamp",
  7882. image: {
  7883. source: "./media/characters/mira-al-cul/lamp.svg",
  7884. extra: 1617 / 1559
  7885. }
  7886. },
  7887. front: {
  7888. height: math.unit(7, "feet"),
  7889. name: "Front",
  7890. image: {
  7891. source: "./media/characters/mira-al-cul/front.svg",
  7892. extra: 1044 / 990
  7893. }
  7894. },
  7895. },
  7896. [
  7897. {
  7898. name: "Heavily Restricted",
  7899. height: math.unit(7 * 1559 / 989, "feet")
  7900. },
  7901. {
  7902. name: "Freshly Freed",
  7903. height: math.unit(50 * 1559 / 989, "feet")
  7904. },
  7905. {
  7906. name: "World Encompassing",
  7907. height: math.unit(10000 * 1559 / 989, "miles")
  7908. },
  7909. {
  7910. name: "Galactic",
  7911. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7912. },
  7913. {
  7914. name: "Palmed Universe",
  7915. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7916. default: true
  7917. },
  7918. {
  7919. name: "Multiversal Matriarch",
  7920. height: math.unit(8.87e10, "yottameters")
  7921. },
  7922. {
  7923. name: "Void Mother",
  7924. height: math.unit(3.14e110, "yottaparsecs")
  7925. },
  7926. {
  7927. name: "Toying with Transcendence",
  7928. height: math.unit(1e307, "meters")
  7929. },
  7930. ]
  7931. ))
  7932. characterMakers.push(() => makeCharacter(
  7933. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7934. {
  7935. front: {
  7936. height: math.unit(17 + 1 / 12, "feet"),
  7937. weight: math.unit(476.2 * 5, "lbs"),
  7938. name: "Front",
  7939. image: {
  7940. source: "./media/characters/kuro-shi-uchū/front.svg",
  7941. extra: 2329 / 1835,
  7942. bottom: 0.02
  7943. }
  7944. },
  7945. },
  7946. [
  7947. {
  7948. name: "Micro",
  7949. height: math.unit(2, "inches")
  7950. },
  7951. {
  7952. name: "Normal",
  7953. height: math.unit(12, "meters")
  7954. },
  7955. {
  7956. name: "Planetary",
  7957. height: math.unit(0.00929, "AU"),
  7958. default: true
  7959. },
  7960. {
  7961. name: "Universal",
  7962. height: math.unit(20, "gigaparsecs")
  7963. },
  7964. ]
  7965. ))
  7966. characterMakers.push(() => makeCharacter(
  7967. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7968. {
  7969. front: {
  7970. height: math.unit(5 + 2 / 12, "feet"),
  7971. weight: math.unit(120, "lbs"),
  7972. name: "Front",
  7973. image: {
  7974. source: "./media/characters/katherine/front.svg",
  7975. extra: 2075 / 1969
  7976. }
  7977. },
  7978. dress: {
  7979. height: math.unit(5 + 2 / 12, "feet"),
  7980. weight: math.unit(120, "lbs"),
  7981. name: "Dress",
  7982. image: {
  7983. source: "./media/characters/katherine/dress.svg",
  7984. extra: 2258 / 2064
  7985. }
  7986. },
  7987. },
  7988. [
  7989. {
  7990. name: "Micro",
  7991. height: math.unit(1, "inches"),
  7992. default: true
  7993. },
  7994. {
  7995. name: "Normal",
  7996. height: math.unit(5 + 2 / 12, "feet")
  7997. },
  7998. {
  7999. name: "Macro",
  8000. height: math.unit(100, "meters")
  8001. },
  8002. {
  8003. name: "Megamacro",
  8004. height: math.unit(80, "miles")
  8005. },
  8006. ]
  8007. ))
  8008. characterMakers.push(() => makeCharacter(
  8009. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8010. {
  8011. front: {
  8012. height: math.unit(7 + 8 / 12, "feet"),
  8013. weight: math.unit(250, "lbs"),
  8014. name: "Front",
  8015. image: {
  8016. source: "./media/characters/yevis/front.svg",
  8017. extra: 1938 / 1755
  8018. }
  8019. }
  8020. },
  8021. [
  8022. {
  8023. name: "Mortal",
  8024. height: math.unit(7 + 8 / 12, "feet")
  8025. },
  8026. {
  8027. name: "Battle",
  8028. height: math.unit(25 + 11 / 12, "feet")
  8029. },
  8030. {
  8031. name: "Wrath",
  8032. height: math.unit(1654 + 11 / 12, "feet")
  8033. },
  8034. {
  8035. name: "Planet Destroyer",
  8036. height: math.unit(12000, "miles")
  8037. },
  8038. {
  8039. name: "Galaxy Conqueror",
  8040. height: math.unit(1.45, "zettameters"),
  8041. default: true
  8042. },
  8043. {
  8044. name: "Universal War",
  8045. height: math.unit(184, "gigaparsecs")
  8046. },
  8047. {
  8048. name: "Eternity War",
  8049. height: math.unit(1.98e55, "yottaparsecs")
  8050. },
  8051. ]
  8052. ))
  8053. characterMakers.push(() => makeCharacter(
  8054. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8055. {
  8056. front: {
  8057. height: math.unit(5 + 8 / 12, "feet"),
  8058. weight: math.unit(63, "kg"),
  8059. name: "Front",
  8060. image: {
  8061. source: "./media/characters/xavier/front.svg",
  8062. extra: 944 / 883
  8063. }
  8064. },
  8065. frontStretch: {
  8066. height: math.unit(5 + 8 / 12, "feet"),
  8067. weight: math.unit(63, "kg"),
  8068. name: "Stretching",
  8069. image: {
  8070. source: "./media/characters/xavier/front-stretch.svg",
  8071. extra: 962 / 820
  8072. }
  8073. },
  8074. },
  8075. [
  8076. {
  8077. name: "Normal",
  8078. height: math.unit(5 + 8 / 12, "feet")
  8079. },
  8080. {
  8081. name: "Macro",
  8082. height: math.unit(100, "meters"),
  8083. default: true
  8084. },
  8085. {
  8086. name: "McLargeHuge",
  8087. height: math.unit(10, "miles")
  8088. },
  8089. ]
  8090. ))
  8091. characterMakers.push(() => makeCharacter(
  8092. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8093. {
  8094. front: {
  8095. height: math.unit(5 + 5 / 12, "feet"),
  8096. weight: math.unit(150, "lb"),
  8097. name: "Front",
  8098. image: {
  8099. source: "./media/characters/joshii/front.svg",
  8100. extra: 765 / 653,
  8101. bottom: 51 / 816
  8102. }
  8103. },
  8104. foot: {
  8105. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8106. name: "Foot",
  8107. image: {
  8108. source: "./media/characters/joshii/foot.svg"
  8109. }
  8110. },
  8111. },
  8112. [
  8113. {
  8114. name: "Micro",
  8115. height: math.unit(2, "inches"),
  8116. default: true
  8117. },
  8118. {
  8119. name: "Normal",
  8120. height: math.unit(5 + 5 / 12, "feet")
  8121. },
  8122. {
  8123. name: "Macro",
  8124. height: math.unit(785, "feet")
  8125. },
  8126. {
  8127. name: "Megamacro",
  8128. height: math.unit(24.5, "miles")
  8129. },
  8130. ]
  8131. ))
  8132. characterMakers.push(() => makeCharacter(
  8133. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8134. {
  8135. front: {
  8136. height: math.unit(6, "feet"),
  8137. weight: math.unit(150, "lb"),
  8138. name: "Front",
  8139. image: {
  8140. source: "./media/characters/goddess-elizabeth/front.svg",
  8141. extra: 1800 / 1525,
  8142. bottom: 0.005
  8143. }
  8144. },
  8145. foot: {
  8146. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8147. name: "Foot",
  8148. image: {
  8149. source: "./media/characters/goddess-elizabeth/foot.svg"
  8150. }
  8151. },
  8152. mouth: {
  8153. height: math.unit(6, "feet"),
  8154. name: "Mouth",
  8155. image: {
  8156. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8157. }
  8158. },
  8159. },
  8160. [
  8161. {
  8162. name: "Micro",
  8163. height: math.unit(12, "feet")
  8164. },
  8165. {
  8166. name: "Normal",
  8167. height: math.unit(80, "miles"),
  8168. default: true
  8169. },
  8170. {
  8171. name: "Macro",
  8172. height: math.unit(15000, "parsecs")
  8173. },
  8174. ]
  8175. ))
  8176. characterMakers.push(() => makeCharacter(
  8177. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8178. {
  8179. front: {
  8180. height: math.unit(5 + 9 / 12, "feet"),
  8181. weight: math.unit(144, "lb"),
  8182. name: "Front",
  8183. image: {
  8184. source: "./media/characters/kara/front.svg"
  8185. }
  8186. },
  8187. feet: {
  8188. height: math.unit(6 / 6.765, "feet"),
  8189. name: "Kara's Feet",
  8190. rename: true,
  8191. image: {
  8192. source: "./media/characters/kara/feet.svg"
  8193. }
  8194. },
  8195. },
  8196. [
  8197. {
  8198. name: "Normal",
  8199. height: math.unit(5 + 9 / 12, "feet")
  8200. },
  8201. {
  8202. name: "Macro",
  8203. height: math.unit(174, "feet"),
  8204. default: true
  8205. },
  8206. ]
  8207. ))
  8208. characterMakers.push(() => makeCharacter(
  8209. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8210. {
  8211. front: {
  8212. height: math.unit(18, "feet"),
  8213. weight: math.unit(4050, "lb"),
  8214. name: "Front",
  8215. image: {
  8216. source: "./media/characters/tyrone/front.svg",
  8217. extra: 2405 / 2270,
  8218. bottom: 182 / 2587
  8219. }
  8220. },
  8221. },
  8222. [
  8223. {
  8224. name: "Normal",
  8225. height: math.unit(18, "feet"),
  8226. default: true
  8227. },
  8228. {
  8229. name: "Macro",
  8230. height: math.unit(300, "feet")
  8231. },
  8232. {
  8233. name: "Megamacro",
  8234. height: math.unit(15, "km")
  8235. },
  8236. {
  8237. name: "Gigamacro",
  8238. height: math.unit(500, "km")
  8239. },
  8240. {
  8241. name: "Teramacro",
  8242. height: math.unit(0.5, "gigameters")
  8243. },
  8244. {
  8245. name: "Omnimacro",
  8246. height: math.unit(1e252, "yottauniverse")
  8247. },
  8248. ]
  8249. ))
  8250. characterMakers.push(() => makeCharacter(
  8251. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8252. {
  8253. front: {
  8254. height: math.unit(7 + 8 / 12, "feet"),
  8255. weight: math.unit(120, "lb"),
  8256. name: "Front",
  8257. image: {
  8258. source: "./media/characters/danny/front.svg",
  8259. extra: 1490 / 1350
  8260. }
  8261. },
  8262. back: {
  8263. height: math.unit(7 + 8 / 12, "feet"),
  8264. weight: math.unit(120, "lb"),
  8265. name: "Back",
  8266. image: {
  8267. source: "./media/characters/danny/back.svg",
  8268. extra: 1490 / 1350
  8269. }
  8270. },
  8271. },
  8272. [
  8273. {
  8274. name: "Normal",
  8275. height: math.unit(7 + 8 / 12, "feet"),
  8276. default: true
  8277. },
  8278. ]
  8279. ))
  8280. characterMakers.push(() => makeCharacter(
  8281. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8282. {
  8283. front: {
  8284. height: math.unit(3.5, "inches"),
  8285. weight: math.unit(19, "grams"),
  8286. name: "Front",
  8287. image: {
  8288. source: "./media/characters/mallow/front.svg",
  8289. extra: 471 / 431
  8290. }
  8291. },
  8292. back: {
  8293. height: math.unit(3.5, "inches"),
  8294. weight: math.unit(19, "grams"),
  8295. name: "Back",
  8296. image: {
  8297. source: "./media/characters/mallow/back.svg",
  8298. extra: 471 / 431
  8299. }
  8300. },
  8301. },
  8302. [
  8303. {
  8304. name: "Normal",
  8305. height: math.unit(3.5, "inches"),
  8306. default: true
  8307. },
  8308. ]
  8309. ))
  8310. characterMakers.push(() => makeCharacter(
  8311. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8312. {
  8313. front: {
  8314. height: math.unit(9, "feet"),
  8315. weight: math.unit(230, "kg"),
  8316. name: "Front",
  8317. image: {
  8318. source: "./media/characters/starry-aqua/front.svg"
  8319. }
  8320. },
  8321. back: {
  8322. height: math.unit(9, "feet"),
  8323. weight: math.unit(230, "kg"),
  8324. name: "Back",
  8325. image: {
  8326. source: "./media/characters/starry-aqua/back.svg"
  8327. }
  8328. },
  8329. hand: {
  8330. height: math.unit(9 * 0.1168, "feet"),
  8331. name: "Hand",
  8332. image: {
  8333. source: "./media/characters/starry-aqua/hand.svg"
  8334. }
  8335. },
  8336. foot: {
  8337. height: math.unit(9 * 0.18, "feet"),
  8338. name: "Foot",
  8339. image: {
  8340. source: "./media/characters/starry-aqua/foot.svg"
  8341. }
  8342. }
  8343. },
  8344. [
  8345. {
  8346. name: "Micro",
  8347. height: math.unit(3, "inches")
  8348. },
  8349. {
  8350. name: "Normal",
  8351. height: math.unit(9, "feet")
  8352. },
  8353. {
  8354. name: "Macro",
  8355. height: math.unit(300, "feet"),
  8356. default: true
  8357. },
  8358. {
  8359. name: "Megamacro",
  8360. height: math.unit(3200, "feet")
  8361. }
  8362. ]
  8363. ))
  8364. characterMakers.push(() => makeCharacter(
  8365. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8366. {
  8367. front: {
  8368. height: math.unit(6, "feet"),
  8369. weight: math.unit(230, "lb"),
  8370. name: "Front",
  8371. image: {
  8372. source: "./media/characters/luka/front.svg",
  8373. extra: 1,
  8374. bottom: 0.025
  8375. }
  8376. },
  8377. },
  8378. [
  8379. {
  8380. name: "Normal",
  8381. height: math.unit(12 + 8 / 12, "feet"),
  8382. default: true
  8383. },
  8384. {
  8385. name: "Minimacro",
  8386. height: math.unit(20, "feet")
  8387. },
  8388. {
  8389. name: "Macro",
  8390. height: math.unit(250, "feet")
  8391. },
  8392. {
  8393. name: "Megamacro",
  8394. height: math.unit(5, "miles")
  8395. },
  8396. {
  8397. name: "Gigamacro",
  8398. height: math.unit(8000, "miles")
  8399. },
  8400. ]
  8401. ))
  8402. characterMakers.push(() => makeCharacter(
  8403. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8404. {
  8405. front: {
  8406. height: math.unit(6, "feet"),
  8407. weight: math.unit(150, "lb"),
  8408. name: "Front",
  8409. image: {
  8410. source: "./media/characters/natalie-nightring/front.svg",
  8411. extra: 1,
  8412. bottom: 0.06
  8413. }
  8414. },
  8415. },
  8416. [
  8417. {
  8418. name: "Uh Oh",
  8419. height: math.unit(0.1, "mm")
  8420. },
  8421. {
  8422. name: "Small",
  8423. height: math.unit(3, "inches")
  8424. },
  8425. {
  8426. name: "Human Scale",
  8427. height: math.unit(6, "feet")
  8428. },
  8429. {
  8430. name: "Librarian",
  8431. height: math.unit(50, "feet"),
  8432. default: true
  8433. },
  8434. {
  8435. name: "Immense",
  8436. height: math.unit(200, "miles")
  8437. },
  8438. ]
  8439. ))
  8440. characterMakers.push(() => makeCharacter(
  8441. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8442. {
  8443. front: {
  8444. height: math.unit(6, "feet"),
  8445. weight: math.unit(180, "lbs"),
  8446. name: "Front",
  8447. image: {
  8448. source: "./media/characters/danni-rosie/front.svg",
  8449. extra: 1260 / 1128,
  8450. bottom: 0.022
  8451. }
  8452. },
  8453. },
  8454. [
  8455. {
  8456. name: "Micro",
  8457. height: math.unit(2, "inches"),
  8458. default: true
  8459. },
  8460. ]
  8461. ))
  8462. characterMakers.push(() => makeCharacter(
  8463. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8464. {
  8465. front: {
  8466. height: math.unit(5 + 9 / 12, "feet"),
  8467. weight: math.unit(220, "lb"),
  8468. name: "Front",
  8469. image: {
  8470. source: "./media/characters/samantha-kruse/front.svg",
  8471. extra: (985 / 935),
  8472. bottom: 0.03
  8473. }
  8474. },
  8475. frontUndressed: {
  8476. height: math.unit(5 + 9 / 12, "feet"),
  8477. weight: math.unit(220, "lb"),
  8478. name: "Front (Undressed)",
  8479. image: {
  8480. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8481. extra: (973 / 923),
  8482. bottom: 0.025
  8483. }
  8484. },
  8485. fat: {
  8486. height: math.unit(5 + 9 / 12, "feet"),
  8487. weight: math.unit(900, "lb"),
  8488. name: "Front (Fat)",
  8489. image: {
  8490. source: "./media/characters/samantha-kruse/fat.svg",
  8491. extra: 2688 / 2561
  8492. }
  8493. },
  8494. },
  8495. [
  8496. {
  8497. name: "Normal",
  8498. height: math.unit(5 + 9 / 12, "feet"),
  8499. default: true
  8500. }
  8501. ]
  8502. ))
  8503. characterMakers.push(() => makeCharacter(
  8504. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8505. {
  8506. back: {
  8507. height: math.unit(5 + 4 / 12, "feet"),
  8508. weight: math.unit(4963, "lb"),
  8509. name: "Back",
  8510. image: {
  8511. source: "./media/characters/amelia-rosie/back.svg",
  8512. extra: 1113 / 963,
  8513. bottom: 0.01
  8514. }
  8515. },
  8516. },
  8517. [
  8518. {
  8519. name: "Level 0",
  8520. height: math.unit(5 + 4 / 12, "feet")
  8521. },
  8522. {
  8523. name: "Level 1",
  8524. height: math.unit(164597, "feet"),
  8525. default: true
  8526. },
  8527. {
  8528. name: "Level 2",
  8529. height: math.unit(956243, "miles")
  8530. },
  8531. {
  8532. name: "Level 3",
  8533. height: math.unit(29421709423, "miles")
  8534. },
  8535. {
  8536. name: "Level 4",
  8537. height: math.unit(154, "lightyears")
  8538. },
  8539. {
  8540. name: "Level 5",
  8541. height: math.unit(4738272, "lightyears")
  8542. },
  8543. {
  8544. name: "Level 6",
  8545. height: math.unit(145787152896, "lightyears")
  8546. },
  8547. ]
  8548. ))
  8549. characterMakers.push(() => makeCharacter(
  8550. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8551. {
  8552. front: {
  8553. height: math.unit(5 + 11 / 12, "feet"),
  8554. weight: math.unit(65, "kg"),
  8555. name: "Front",
  8556. image: {
  8557. source: "./media/characters/rook-kitara/front.svg",
  8558. extra: 1347 / 1274,
  8559. bottom: 0.005
  8560. }
  8561. },
  8562. },
  8563. [
  8564. {
  8565. name: "Totally Unfair",
  8566. height: math.unit(1.8, "mm")
  8567. },
  8568. {
  8569. name: "Lap Rookie",
  8570. height: math.unit(1.4, "feet")
  8571. },
  8572. {
  8573. name: "Normal",
  8574. height: math.unit(5 + 11 / 12, "feet"),
  8575. default: true
  8576. },
  8577. {
  8578. name: "How Did This Happen",
  8579. height: math.unit(80, "miles")
  8580. }
  8581. ]
  8582. ))
  8583. characterMakers.push(() => makeCharacter(
  8584. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8585. {
  8586. front: {
  8587. height: math.unit(7, "feet"),
  8588. weight: math.unit(300, "lb"),
  8589. name: "Front",
  8590. image: {
  8591. source: "./media/characters/pisces/front.svg",
  8592. extra: 2255 / 2115,
  8593. bottom: 0.03
  8594. }
  8595. },
  8596. back: {
  8597. height: math.unit(7, "feet"),
  8598. weight: math.unit(300, "lb"),
  8599. name: "Back",
  8600. image: {
  8601. source: "./media/characters/pisces/back.svg",
  8602. extra: 2146 / 2055,
  8603. bottom: 0.04
  8604. }
  8605. },
  8606. },
  8607. [
  8608. {
  8609. name: "Normal",
  8610. height: math.unit(7, "feet"),
  8611. default: true
  8612. },
  8613. {
  8614. name: "Swimming Pool",
  8615. height: math.unit(12.2, "meters")
  8616. },
  8617. {
  8618. name: "Olympic Swimming Pool",
  8619. height: math.unit(56.3, "meters")
  8620. },
  8621. {
  8622. name: "Lake Superior",
  8623. height: math.unit(93900, "meters")
  8624. },
  8625. {
  8626. name: "Mediterranean Sea",
  8627. height: math.unit(644457, "meters")
  8628. },
  8629. {
  8630. name: "World's Oceans",
  8631. height: math.unit(4567491, "meters")
  8632. },
  8633. ]
  8634. ))
  8635. characterMakers.push(() => makeCharacter(
  8636. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8637. {
  8638. front: {
  8639. height: math.unit(2.3, "meters"),
  8640. weight: math.unit(120, "kg"),
  8641. name: "Front",
  8642. image: {
  8643. source: "./media/characters/zelas/front.svg"
  8644. }
  8645. },
  8646. side: {
  8647. height: math.unit(2.3, "meters"),
  8648. weight: math.unit(120, "kg"),
  8649. name: "Side",
  8650. image: {
  8651. source: "./media/characters/zelas/side.svg"
  8652. }
  8653. },
  8654. back: {
  8655. height: math.unit(2.3, "meters"),
  8656. weight: math.unit(120, "kg"),
  8657. name: "Back",
  8658. image: {
  8659. source: "./media/characters/zelas/back.svg"
  8660. }
  8661. },
  8662. foot: {
  8663. height: math.unit(1.116, "feet"),
  8664. name: "Foot",
  8665. image: {
  8666. source: "./media/characters/zelas/foot.svg"
  8667. }
  8668. },
  8669. },
  8670. [
  8671. {
  8672. name: "Normal",
  8673. height: math.unit(2.3, "meters")
  8674. },
  8675. {
  8676. name: "Macro",
  8677. height: math.unit(30, "meters"),
  8678. default: true
  8679. },
  8680. ]
  8681. ))
  8682. characterMakers.push(() => makeCharacter(
  8683. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8684. {
  8685. front: {
  8686. height: math.unit(1, "inch"),
  8687. weight: math.unit(0.21, "grams"),
  8688. name: "Front",
  8689. image: {
  8690. source: "./media/characters/talbot/front.svg",
  8691. extra: 594 / 544
  8692. }
  8693. },
  8694. },
  8695. [
  8696. {
  8697. name: "Micro",
  8698. height: math.unit(1, "inch"),
  8699. default: true
  8700. },
  8701. ]
  8702. ))
  8703. characterMakers.push(() => makeCharacter(
  8704. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8705. {
  8706. front: {
  8707. height: math.unit(3 + 3 / 12, "feet"),
  8708. weight: math.unit(51.8, "lb"),
  8709. name: "Front",
  8710. image: {
  8711. source: "./media/characters/fliss/front.svg",
  8712. extra: 840 / 640
  8713. }
  8714. },
  8715. },
  8716. [
  8717. {
  8718. name: "Teeny Tiny",
  8719. height: math.unit(1, "mm")
  8720. },
  8721. {
  8722. name: "Small",
  8723. height: math.unit(1, "inch"),
  8724. default: true
  8725. },
  8726. {
  8727. name: "Standard Sylveon",
  8728. height: math.unit(3 + 3 / 12, "feet")
  8729. },
  8730. {
  8731. name: "Large Nuisance",
  8732. height: math.unit(33, "feet")
  8733. },
  8734. {
  8735. name: "City Filler",
  8736. height: math.unit(3000, "feet")
  8737. },
  8738. {
  8739. name: "New Horizon",
  8740. height: math.unit(6000, "miles")
  8741. },
  8742. ]
  8743. ))
  8744. characterMakers.push(() => makeCharacter(
  8745. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8746. {
  8747. front: {
  8748. height: math.unit(5, "cm"),
  8749. weight: math.unit(1.94, "g"),
  8750. name: "Front",
  8751. image: {
  8752. source: "./media/characters/fleta/front.svg",
  8753. extra: 835 / 803
  8754. }
  8755. },
  8756. back: {
  8757. height: math.unit(5, "cm"),
  8758. weight: math.unit(1.94, "g"),
  8759. name: "Back",
  8760. image: {
  8761. source: "./media/characters/fleta/back.svg",
  8762. extra: 835 / 803
  8763. }
  8764. },
  8765. },
  8766. [
  8767. {
  8768. name: "Micro",
  8769. height: math.unit(5, "cm"),
  8770. default: true
  8771. },
  8772. ]
  8773. ))
  8774. characterMakers.push(() => makeCharacter(
  8775. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8776. {
  8777. front: {
  8778. height: math.unit(6, "feet"),
  8779. weight: math.unit(225, "lb"),
  8780. name: "Front",
  8781. image: {
  8782. source: "./media/characters/dominic/front.svg",
  8783. extra: 1770 / 1620,
  8784. bottom: 0.025
  8785. }
  8786. },
  8787. back: {
  8788. height: math.unit(6, "feet"),
  8789. weight: math.unit(225, "lb"),
  8790. name: "Back",
  8791. image: {
  8792. source: "./media/characters/dominic/back.svg",
  8793. extra: 1745 / 1620,
  8794. bottom: 0.065
  8795. }
  8796. },
  8797. },
  8798. [
  8799. {
  8800. name: "Nano",
  8801. height: math.unit(0.1, "mm")
  8802. },
  8803. {
  8804. name: "Micro-",
  8805. height: math.unit(1, "mm")
  8806. },
  8807. {
  8808. name: "Micro",
  8809. height: math.unit(4, "inches")
  8810. },
  8811. {
  8812. name: "Normal",
  8813. height: math.unit(6 + 4 / 12, "feet"),
  8814. default: true
  8815. },
  8816. {
  8817. name: "Macro",
  8818. height: math.unit(115, "feet")
  8819. },
  8820. {
  8821. name: "Macro+",
  8822. height: math.unit(955, "feet")
  8823. },
  8824. {
  8825. name: "Megamacro",
  8826. height: math.unit(8990, "feet")
  8827. },
  8828. {
  8829. name: "Gigmacro",
  8830. height: math.unit(9310, "miles")
  8831. },
  8832. {
  8833. name: "Teramacro",
  8834. height: math.unit(1567005010, "miles")
  8835. },
  8836. {
  8837. name: "Examacro",
  8838. height: math.unit(1425, "parsecs")
  8839. },
  8840. ]
  8841. ))
  8842. characterMakers.push(() => makeCharacter(
  8843. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8844. {
  8845. front: {
  8846. height: math.unit(400, "feet"),
  8847. weight: math.unit(44444444, "lb"),
  8848. name: "Front",
  8849. image: {
  8850. source: "./media/characters/major-colonel/front.svg"
  8851. }
  8852. },
  8853. back: {
  8854. height: math.unit(400, "feet"),
  8855. weight: math.unit(44444444, "lb"),
  8856. name: "Back",
  8857. image: {
  8858. source: "./media/characters/major-colonel/back.svg"
  8859. }
  8860. },
  8861. },
  8862. [
  8863. {
  8864. name: "Macro",
  8865. height: math.unit(400, "feet"),
  8866. default: true
  8867. },
  8868. ]
  8869. ))
  8870. characterMakers.push(() => makeCharacter(
  8871. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8872. {
  8873. catFront: {
  8874. height: math.unit(6, "feet"),
  8875. weight: math.unit(120, "lb"),
  8876. name: "Front (Cat Side)",
  8877. image: {
  8878. source: "./media/characters/axel-lycan/cat-front.svg",
  8879. extra: 430 / 402,
  8880. bottom: 43 / 472.35
  8881. }
  8882. },
  8883. catBack: {
  8884. height: math.unit(6, "feet"),
  8885. weight: math.unit(120, "lb"),
  8886. name: "Back (Cat Side)",
  8887. image: {
  8888. source: "./media/characters/axel-lycan/cat-back.svg",
  8889. extra: 447 / 419,
  8890. bottom: 23.3 / 469
  8891. }
  8892. },
  8893. wolfFront: {
  8894. height: math.unit(6, "feet"),
  8895. weight: math.unit(120, "lb"),
  8896. name: "Front (Wolf Side)",
  8897. image: {
  8898. source: "./media/characters/axel-lycan/wolf-front.svg",
  8899. extra: 485 / 456,
  8900. bottom: 19 / 504
  8901. }
  8902. },
  8903. wolfBack: {
  8904. height: math.unit(6, "feet"),
  8905. weight: math.unit(120, "lb"),
  8906. name: "Back (Wolf Side)",
  8907. image: {
  8908. source: "./media/characters/axel-lycan/wolf-back.svg",
  8909. extra: 475 / 438,
  8910. bottom: 39.2 / 514
  8911. }
  8912. },
  8913. },
  8914. [
  8915. {
  8916. name: "Macro",
  8917. height: math.unit(1, "km"),
  8918. default: true
  8919. },
  8920. ]
  8921. ))
  8922. characterMakers.push(() => makeCharacter(
  8923. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8924. {
  8925. front: {
  8926. height: math.unit(5 + 9 / 12, "feet"),
  8927. weight: math.unit(175, "lb"),
  8928. name: "Front",
  8929. image: {
  8930. source: "./media/characters/vanrel-hyena/front.svg",
  8931. extra: 1086 / 1010,
  8932. bottom: 0.04
  8933. }
  8934. },
  8935. },
  8936. [
  8937. {
  8938. name: "Normal",
  8939. height: math.unit(5 + 9 / 12, "feet"),
  8940. default: true
  8941. },
  8942. ]
  8943. ))
  8944. characterMakers.push(() => makeCharacter(
  8945. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8946. {
  8947. front: {
  8948. height: math.unit(6, "feet"),
  8949. weight: math.unit(103, "lb"),
  8950. name: "Front",
  8951. image: {
  8952. source: "./media/characters/abbott-absol/front.svg",
  8953. extra: 2010 / 1842
  8954. }
  8955. },
  8956. },
  8957. [
  8958. {
  8959. name: "Megamicro",
  8960. height: math.unit(0.1, "mm")
  8961. },
  8962. {
  8963. name: "Micro",
  8964. height: math.unit(1, "inch")
  8965. },
  8966. {
  8967. name: "Normal",
  8968. height: math.unit(6, "feet"),
  8969. default: true
  8970. },
  8971. ]
  8972. ))
  8973. characterMakers.push(() => makeCharacter(
  8974. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8975. {
  8976. front: {
  8977. height: math.unit(6, "feet"),
  8978. weight: math.unit(264, "lb"),
  8979. name: "Front",
  8980. image: {
  8981. source: "./media/characters/hector/front.svg",
  8982. extra: 2280 / 2130,
  8983. bottom: 0.07
  8984. }
  8985. },
  8986. },
  8987. [
  8988. {
  8989. name: "Normal",
  8990. height: math.unit(12.25, "foot"),
  8991. default: true
  8992. },
  8993. {
  8994. name: "Macro",
  8995. height: math.unit(160, "feet")
  8996. },
  8997. ]
  8998. ))
  8999. characterMakers.push(() => makeCharacter(
  9000. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9001. {
  9002. front: {
  9003. height: math.unit(6, "feet"),
  9004. weight: math.unit(150, "lb"),
  9005. name: "Front",
  9006. image: {
  9007. source: "./media/characters/sal/front.svg",
  9008. extra: 1846 / 1699,
  9009. bottom: 0.04
  9010. }
  9011. },
  9012. },
  9013. [
  9014. {
  9015. name: "Megamacro",
  9016. height: math.unit(10, "miles"),
  9017. default: true
  9018. },
  9019. ]
  9020. ))
  9021. characterMakers.push(() => makeCharacter(
  9022. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9023. {
  9024. front: {
  9025. height: math.unit(3, "meters"),
  9026. weight: math.unit(450, "kg"),
  9027. name: "front",
  9028. image: {
  9029. source: "./media/characters/ranger/front.svg",
  9030. extra: 2401 / 2243,
  9031. bottom: 0.05
  9032. }
  9033. },
  9034. },
  9035. [
  9036. {
  9037. name: "Normal",
  9038. height: math.unit(3, "meters"),
  9039. default: true
  9040. },
  9041. ]
  9042. ))
  9043. characterMakers.push(() => makeCharacter(
  9044. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9045. {
  9046. front: {
  9047. height: math.unit(14, "feet"),
  9048. weight: math.unit(800, "kg"),
  9049. name: "Front",
  9050. image: {
  9051. source: "./media/characters/theresa/front.svg",
  9052. extra: 3575 / 3346,
  9053. bottom: 0.03
  9054. }
  9055. },
  9056. },
  9057. [
  9058. {
  9059. name: "Normal",
  9060. height: math.unit(14, "feet"),
  9061. default: true
  9062. },
  9063. ]
  9064. ))
  9065. characterMakers.push(() => makeCharacter(
  9066. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9067. {
  9068. front: {
  9069. height: math.unit(6, "feet"),
  9070. weight: math.unit(3, "kg"),
  9071. name: "Front",
  9072. image: {
  9073. source: "./media/characters/ine/front.svg",
  9074. extra: 678 / 539,
  9075. bottom: 0.023
  9076. }
  9077. },
  9078. },
  9079. [
  9080. {
  9081. name: "Normal",
  9082. height: math.unit(2.265, "feet"),
  9083. default: true
  9084. },
  9085. ]
  9086. ))
  9087. characterMakers.push(() => makeCharacter(
  9088. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9089. {
  9090. front: {
  9091. height: math.unit(5, "feet"),
  9092. weight: math.unit(30, "kg"),
  9093. name: "Front",
  9094. image: {
  9095. source: "./media/characters/vial/front.svg",
  9096. extra: 1365 / 1277,
  9097. bottom: 0.04
  9098. }
  9099. },
  9100. },
  9101. [
  9102. {
  9103. name: "Normal",
  9104. height: math.unit(5, "feet"),
  9105. default: true
  9106. },
  9107. ]
  9108. ))
  9109. characterMakers.push(() => makeCharacter(
  9110. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9111. {
  9112. side: {
  9113. height: math.unit(3.4, "meters"),
  9114. weight: math.unit(1000, "lb"),
  9115. name: "Side",
  9116. image: {
  9117. source: "./media/characters/rovoska/side.svg",
  9118. extra: 4403 / 1515
  9119. }
  9120. },
  9121. },
  9122. [
  9123. {
  9124. name: "Normal",
  9125. height: math.unit(3.4, "meters"),
  9126. default: true
  9127. },
  9128. ]
  9129. ))
  9130. characterMakers.push(() => makeCharacter(
  9131. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9132. {
  9133. front: {
  9134. height: math.unit(8, "feet"),
  9135. weight: math.unit(315, "lb"),
  9136. name: "Front",
  9137. image: {
  9138. source: "./media/characters/gunner-rotthbauer/front.svg"
  9139. }
  9140. },
  9141. back: {
  9142. height: math.unit(8, "feet"),
  9143. weight: math.unit(315, "lb"),
  9144. name: "Back",
  9145. image: {
  9146. source: "./media/characters/gunner-rotthbauer/back.svg"
  9147. }
  9148. },
  9149. },
  9150. [
  9151. {
  9152. name: "Micro",
  9153. height: math.unit(3.5, "inches")
  9154. },
  9155. {
  9156. name: "Normal",
  9157. height: math.unit(8, "feet"),
  9158. default: true
  9159. },
  9160. {
  9161. name: "Macro",
  9162. height: math.unit(250, "feet")
  9163. },
  9164. {
  9165. name: "Megamacro",
  9166. height: math.unit(1, "AU")
  9167. },
  9168. ]
  9169. ))
  9170. characterMakers.push(() => makeCharacter(
  9171. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9172. {
  9173. front: {
  9174. height: math.unit(5 + 5 / 12, "feet"),
  9175. weight: math.unit(140, "lb"),
  9176. name: "Front",
  9177. image: {
  9178. source: "./media/characters/allatia/front.svg",
  9179. extra: 1227 / 1180,
  9180. bottom: 0.027
  9181. }
  9182. },
  9183. },
  9184. [
  9185. {
  9186. name: "Normal",
  9187. height: math.unit(5 + 5 / 12, "feet")
  9188. },
  9189. {
  9190. name: "Macro",
  9191. height: math.unit(250, "feet"),
  9192. default: true
  9193. },
  9194. {
  9195. name: "Megamacro",
  9196. height: math.unit(8, "miles")
  9197. }
  9198. ]
  9199. ))
  9200. characterMakers.push(() => makeCharacter(
  9201. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9202. {
  9203. front: {
  9204. height: math.unit(6, "feet"),
  9205. weight: math.unit(120, "lb"),
  9206. name: "Front",
  9207. image: {
  9208. source: "./media/characters/tene/front.svg",
  9209. extra: 1728 / 1578,
  9210. bottom: 0.022
  9211. }
  9212. },
  9213. stomping: {
  9214. height: math.unit(2.025, "meters"),
  9215. weight: math.unit(120, "lb"),
  9216. name: "Stomping",
  9217. image: {
  9218. source: "./media/characters/tene/stomping.svg",
  9219. extra: 938 / 873,
  9220. bottom: 0.01
  9221. }
  9222. },
  9223. sitting: {
  9224. height: math.unit(1, "meter"),
  9225. weight: math.unit(120, "lb"),
  9226. name: "Sitting",
  9227. image: {
  9228. source: "./media/characters/tene/sitting.svg",
  9229. extra: 437 / 415,
  9230. bottom: 0.1
  9231. }
  9232. },
  9233. feral: {
  9234. height: math.unit(3.9, "feet"),
  9235. weight: math.unit(250, "lb"),
  9236. name: "Feral",
  9237. image: {
  9238. source: "./media/characters/tene/feral.svg",
  9239. extra: 717 / 458,
  9240. bottom: 0.179
  9241. }
  9242. },
  9243. },
  9244. [
  9245. {
  9246. name: "Normal",
  9247. height: math.unit(6, "feet")
  9248. },
  9249. {
  9250. name: "Macro",
  9251. height: math.unit(300, "feet"),
  9252. default: true
  9253. },
  9254. {
  9255. name: "Megamacro",
  9256. height: math.unit(5, "miles")
  9257. },
  9258. ]
  9259. ))
  9260. characterMakers.push(() => makeCharacter(
  9261. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9262. {
  9263. side: {
  9264. height: math.unit(6, "feet"),
  9265. name: "Side",
  9266. image: {
  9267. source: "./media/characters/evander/side.svg",
  9268. extra: 877 / 477
  9269. }
  9270. },
  9271. },
  9272. [
  9273. {
  9274. name: "Normal",
  9275. height: math.unit(0.83, "meters"),
  9276. default: true
  9277. },
  9278. ]
  9279. ))
  9280. characterMakers.push(() => makeCharacter(
  9281. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9282. {
  9283. front: {
  9284. height: math.unit(12, "feet"),
  9285. weight: math.unit(1000, "lb"),
  9286. name: "Front",
  9287. image: {
  9288. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9289. extra: 1762 / 1611
  9290. }
  9291. },
  9292. back: {
  9293. height: math.unit(12, "feet"),
  9294. weight: math.unit(1000, "lb"),
  9295. name: "Back",
  9296. image: {
  9297. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9298. extra: 1762 / 1611
  9299. }
  9300. },
  9301. },
  9302. [
  9303. {
  9304. name: "Normal",
  9305. height: math.unit(12, "feet"),
  9306. default: true
  9307. },
  9308. {
  9309. name: "Kaiju",
  9310. height: math.unit(150, "feet")
  9311. },
  9312. ]
  9313. ))
  9314. characterMakers.push(() => makeCharacter(
  9315. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9316. {
  9317. front: {
  9318. height: math.unit(6, "feet"),
  9319. weight: math.unit(150, "lb"),
  9320. name: "Front",
  9321. image: {
  9322. source: "./media/characters/zero-alurus/front.svg"
  9323. }
  9324. },
  9325. back: {
  9326. height: math.unit(6, "feet"),
  9327. weight: math.unit(150, "lb"),
  9328. name: "Back",
  9329. image: {
  9330. source: "./media/characters/zero-alurus/back.svg"
  9331. }
  9332. },
  9333. },
  9334. [
  9335. {
  9336. name: "Normal",
  9337. height: math.unit(5 + 10 / 12, "feet")
  9338. },
  9339. {
  9340. name: "Macro",
  9341. height: math.unit(60, "feet"),
  9342. default: true
  9343. },
  9344. {
  9345. name: "Macro+",
  9346. height: math.unit(450, "feet")
  9347. },
  9348. ]
  9349. ))
  9350. characterMakers.push(() => makeCharacter(
  9351. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9352. {
  9353. front: {
  9354. height: math.unit(6, "feet"),
  9355. weight: math.unit(200, "lb"),
  9356. name: "Front",
  9357. image: {
  9358. source: "./media/characters/mega-shi/front.svg",
  9359. extra: 1279 / 1250,
  9360. bottom: 0.02
  9361. }
  9362. },
  9363. back: {
  9364. height: math.unit(6, "feet"),
  9365. weight: math.unit(200, "lb"),
  9366. name: "Back",
  9367. image: {
  9368. source: "./media/characters/mega-shi/back.svg",
  9369. extra: 1279 / 1250,
  9370. bottom: 0.02
  9371. }
  9372. },
  9373. },
  9374. [
  9375. {
  9376. name: "Micro",
  9377. height: math.unit(16 + 6 / 12, "feet")
  9378. },
  9379. {
  9380. name: "Third Dimension",
  9381. height: math.unit(40, "meters")
  9382. },
  9383. {
  9384. name: "Normal",
  9385. height: math.unit(660, "feet"),
  9386. default: true
  9387. },
  9388. {
  9389. name: "Megamacro",
  9390. height: math.unit(10, "miles")
  9391. },
  9392. {
  9393. name: "Planetary Launch",
  9394. height: math.unit(500, "miles")
  9395. },
  9396. {
  9397. name: "Interstellar",
  9398. height: math.unit(1e9, "miles")
  9399. },
  9400. {
  9401. name: "Leaving the Universe",
  9402. height: math.unit(1, "gigaparsec")
  9403. },
  9404. {
  9405. name: "Travelling Universes",
  9406. height: math.unit(30e15, "parsecs")
  9407. },
  9408. ]
  9409. ))
  9410. characterMakers.push(() => makeCharacter(
  9411. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9412. {
  9413. front: {
  9414. height: math.unit(6, "feet"),
  9415. weight: math.unit(150, "lb"),
  9416. name: "Front",
  9417. image: {
  9418. source: "./media/characters/odyssey/front.svg",
  9419. extra: 1782 / 1582,
  9420. bottom: 0.01
  9421. }
  9422. },
  9423. side: {
  9424. height: math.unit(5.7, "feet"),
  9425. weight: math.unit(140, "lb"),
  9426. name: "Side",
  9427. image: {
  9428. source: "./media/characters/odyssey/side.svg",
  9429. extra: 6462 / 5700
  9430. }
  9431. },
  9432. },
  9433. [
  9434. {
  9435. name: "Normal",
  9436. height: math.unit(5 + 4 / 12, "feet")
  9437. },
  9438. {
  9439. name: "Macro",
  9440. height: math.unit(1, "km")
  9441. },
  9442. {
  9443. name: "Megamacro",
  9444. height: math.unit(3000, "km")
  9445. },
  9446. {
  9447. name: "Gigamacro",
  9448. height: math.unit(1, "AU"),
  9449. default: true
  9450. },
  9451. {
  9452. name: "Omniversal",
  9453. height: math.unit(100e14, "lightyears")
  9454. },
  9455. ]
  9456. ))
  9457. characterMakers.push(() => makeCharacter(
  9458. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9459. {
  9460. front: {
  9461. height: math.unit(6, "feet"),
  9462. weight: math.unit(300, "lb"),
  9463. name: "Front",
  9464. image: {
  9465. source: "./media/characters/mekuto/front.svg",
  9466. extra: 921 / 832,
  9467. bottom: 0.03
  9468. }
  9469. },
  9470. hand: {
  9471. height: math.unit(6 / 10.24, "feet"),
  9472. name: "Hand",
  9473. image: {
  9474. source: "./media/characters/mekuto/hand.svg"
  9475. }
  9476. },
  9477. foot: {
  9478. height: math.unit(6 / 5.05, "feet"),
  9479. name: "Foot",
  9480. image: {
  9481. source: "./media/characters/mekuto/foot.svg"
  9482. }
  9483. },
  9484. },
  9485. [
  9486. {
  9487. name: "Minimicro",
  9488. height: math.unit(0.2, "inches")
  9489. },
  9490. {
  9491. name: "Micro",
  9492. height: math.unit(1.5, "inches")
  9493. },
  9494. {
  9495. name: "Normal",
  9496. height: math.unit(5 + 11 / 12, "feet"),
  9497. default: true
  9498. },
  9499. {
  9500. name: "Minimacro",
  9501. height: math.unit(17 + 9 / 12, "feet")
  9502. },
  9503. {
  9504. name: "Macro",
  9505. height: math.unit(177.5, "feet")
  9506. },
  9507. {
  9508. name: "Megamacro",
  9509. height: math.unit(152, "miles")
  9510. },
  9511. ]
  9512. ))
  9513. characterMakers.push(() => makeCharacter(
  9514. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9515. {
  9516. front: {
  9517. height: math.unit(6.5, "inches"),
  9518. weight: math.unit(13, "oz"),
  9519. name: "Front",
  9520. image: {
  9521. source: "./media/characters/dafydd-tomos/front.svg",
  9522. extra: 2990 / 2603,
  9523. bottom: 0.03
  9524. }
  9525. },
  9526. },
  9527. [
  9528. {
  9529. name: "Micro",
  9530. height: math.unit(6.5, "inches"),
  9531. default: true
  9532. },
  9533. ]
  9534. ))
  9535. characterMakers.push(() => makeCharacter(
  9536. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9537. {
  9538. front: {
  9539. height: math.unit(6, "feet"),
  9540. weight: math.unit(150, "lb"),
  9541. name: "Front",
  9542. image: {
  9543. source: "./media/characters/splinter/front.svg",
  9544. extra: 2990 / 2882,
  9545. bottom: 0.04
  9546. }
  9547. },
  9548. back: {
  9549. height: math.unit(6, "feet"),
  9550. weight: math.unit(150, "lb"),
  9551. name: "Back",
  9552. image: {
  9553. source: "./media/characters/splinter/back.svg",
  9554. extra: 2990 / 2882,
  9555. bottom: 0.04
  9556. }
  9557. },
  9558. },
  9559. [
  9560. {
  9561. name: "Normal",
  9562. height: math.unit(6, "feet")
  9563. },
  9564. {
  9565. name: "Macro",
  9566. height: math.unit(230, "meters"),
  9567. default: true
  9568. },
  9569. ]
  9570. ))
  9571. characterMakers.push(() => makeCharacter(
  9572. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9573. {
  9574. front: {
  9575. height: math.unit(4 + 10 / 12, "feet"),
  9576. weight: math.unit(480, "lb"),
  9577. name: "Front",
  9578. image: {
  9579. source: "./media/characters/snow-gabumon/front.svg",
  9580. extra: 1140 / 963,
  9581. bottom: 0.058
  9582. }
  9583. },
  9584. back: {
  9585. height: math.unit(4 + 10 / 12, "feet"),
  9586. weight: math.unit(480, "lb"),
  9587. name: "Back",
  9588. image: {
  9589. source: "./media/characters/snow-gabumon/back.svg",
  9590. extra: 1115 / 962,
  9591. bottom: 0.041
  9592. }
  9593. },
  9594. frontUndresed: {
  9595. height: math.unit(4 + 10 / 12, "feet"),
  9596. weight: math.unit(480, "lb"),
  9597. name: "Front (Undressed)",
  9598. image: {
  9599. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9600. extra: 1061 / 960,
  9601. bottom: 0.045
  9602. }
  9603. },
  9604. },
  9605. [
  9606. {
  9607. name: "Micro",
  9608. height: math.unit(1, "inch")
  9609. },
  9610. {
  9611. name: "Normal",
  9612. height: math.unit(4 + 10 / 12, "feet"),
  9613. default: true
  9614. },
  9615. {
  9616. name: "Macro",
  9617. height: math.unit(200, "feet")
  9618. },
  9619. {
  9620. name: "Megamacro",
  9621. height: math.unit(120, "miles")
  9622. },
  9623. {
  9624. name: "Gigamacro",
  9625. height: math.unit(9800, "miles")
  9626. },
  9627. ]
  9628. ))
  9629. characterMakers.push(() => makeCharacter(
  9630. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9631. {
  9632. front: {
  9633. height: math.unit(1.7, "meters"),
  9634. weight: math.unit(140, "lb"),
  9635. name: "Front",
  9636. image: {
  9637. source: "./media/characters/moody/front.svg",
  9638. extra: 3226 / 3007,
  9639. bottom: 0.087
  9640. }
  9641. },
  9642. },
  9643. [
  9644. {
  9645. name: "Micro",
  9646. height: math.unit(1, "mm")
  9647. },
  9648. {
  9649. name: "Normal",
  9650. height: math.unit(1.7, "meters"),
  9651. default: true
  9652. },
  9653. {
  9654. name: "Macro",
  9655. height: math.unit(80, "meters")
  9656. },
  9657. {
  9658. name: "Macro+",
  9659. height: math.unit(500, "meters")
  9660. },
  9661. ]
  9662. ))
  9663. characterMakers.push(() => makeCharacter(
  9664. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9665. {
  9666. front: {
  9667. height: math.unit(6, "feet"),
  9668. weight: math.unit(150, "lb"),
  9669. name: "Front",
  9670. image: {
  9671. source: "./media/characters/zyas/front.svg",
  9672. extra: 1180 / 1120,
  9673. bottom: 0.045
  9674. }
  9675. },
  9676. },
  9677. [
  9678. {
  9679. name: "Normal",
  9680. height: math.unit(10, "feet"),
  9681. default: true
  9682. },
  9683. {
  9684. name: "Macro",
  9685. height: math.unit(500, "feet")
  9686. },
  9687. {
  9688. name: "Megamacro",
  9689. height: math.unit(5, "miles")
  9690. },
  9691. {
  9692. name: "Teramacro",
  9693. height: math.unit(150000, "miles")
  9694. },
  9695. ]
  9696. ))
  9697. characterMakers.push(() => makeCharacter(
  9698. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9699. {
  9700. front: {
  9701. height: math.unit(6, "feet"),
  9702. weight: math.unit(150, "lb"),
  9703. name: "Front",
  9704. image: {
  9705. source: "./media/characters/cuon/front.svg",
  9706. extra: 1390 / 1320,
  9707. bottom: 0.008
  9708. }
  9709. },
  9710. },
  9711. [
  9712. {
  9713. name: "Micro",
  9714. height: math.unit(3, "inches")
  9715. },
  9716. {
  9717. name: "Normal",
  9718. height: math.unit(18 + 9 / 12, "feet"),
  9719. default: true
  9720. },
  9721. {
  9722. name: "Macro",
  9723. height: math.unit(360, "feet")
  9724. },
  9725. {
  9726. name: "Megamacro",
  9727. height: math.unit(360, "miles")
  9728. },
  9729. ]
  9730. ))
  9731. characterMakers.push(() => makeCharacter(
  9732. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9733. {
  9734. front: {
  9735. height: math.unit(2.4, "meters"),
  9736. weight: math.unit(70, "kg"),
  9737. name: "Front",
  9738. image: {
  9739. source: "./media/characters/nyanuxk/front.svg",
  9740. extra: 1172 / 1084,
  9741. bottom: 0.065
  9742. }
  9743. },
  9744. side: {
  9745. height: math.unit(2.4, "meters"),
  9746. weight: math.unit(70, "kg"),
  9747. name: "Side",
  9748. image: {
  9749. source: "./media/characters/nyanuxk/side.svg",
  9750. extra: 1190 / 1132,
  9751. bottom: 0.007
  9752. }
  9753. },
  9754. back: {
  9755. height: math.unit(2.4, "meters"),
  9756. weight: math.unit(70, "kg"),
  9757. name: "Back",
  9758. image: {
  9759. source: "./media/characters/nyanuxk/back.svg",
  9760. extra: 1200 / 1141,
  9761. bottom: 0.015
  9762. }
  9763. },
  9764. foot: {
  9765. height: math.unit(0.52, "meters"),
  9766. name: "Foot",
  9767. image: {
  9768. source: "./media/characters/nyanuxk/foot.svg"
  9769. }
  9770. },
  9771. },
  9772. [
  9773. {
  9774. name: "Micro",
  9775. height: math.unit(2, "cm")
  9776. },
  9777. {
  9778. name: "Normal",
  9779. height: math.unit(2.4, "meters"),
  9780. default: true
  9781. },
  9782. {
  9783. name: "Smaller Macro",
  9784. height: math.unit(120, "meters")
  9785. },
  9786. {
  9787. name: "Bigger Macro",
  9788. height: math.unit(1.2, "km")
  9789. },
  9790. {
  9791. name: "Megamacro",
  9792. height: math.unit(15, "kilometers")
  9793. },
  9794. {
  9795. name: "Gigamacro",
  9796. height: math.unit(2000, "km")
  9797. },
  9798. {
  9799. name: "Teramacro",
  9800. height: math.unit(500000, "km")
  9801. },
  9802. ]
  9803. ))
  9804. characterMakers.push(() => makeCharacter(
  9805. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9806. {
  9807. side: {
  9808. height: math.unit(6, "feet"),
  9809. name: "Side",
  9810. image: {
  9811. source: "./media/characters/ailbhe/side.svg",
  9812. extra: 757 / 464,
  9813. bottom: 0.041
  9814. }
  9815. },
  9816. },
  9817. [
  9818. {
  9819. name: "Normal",
  9820. height: math.unit(1.07, "meters"),
  9821. default: true
  9822. },
  9823. ]
  9824. ))
  9825. characterMakers.push(() => makeCharacter(
  9826. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9827. {
  9828. front: {
  9829. height: math.unit(6, "feet"),
  9830. weight: math.unit(120, "kg"),
  9831. name: "Front",
  9832. image: {
  9833. source: "./media/characters/zevulfius/front.svg",
  9834. extra: 965 / 903
  9835. }
  9836. },
  9837. side: {
  9838. height: math.unit(6, "feet"),
  9839. weight: math.unit(120, "kg"),
  9840. name: "Side",
  9841. image: {
  9842. source: "./media/characters/zevulfius/side.svg",
  9843. extra: 939 / 900
  9844. }
  9845. },
  9846. back: {
  9847. height: math.unit(6, "feet"),
  9848. weight: math.unit(120, "kg"),
  9849. name: "Back",
  9850. image: {
  9851. source: "./media/characters/zevulfius/back.svg",
  9852. extra: 918 / 854,
  9853. bottom: 0.005
  9854. }
  9855. },
  9856. foot: {
  9857. height: math.unit(6 / 3.72, "feet"),
  9858. name: "Foot",
  9859. image: {
  9860. source: "./media/characters/zevulfius/foot.svg"
  9861. }
  9862. },
  9863. },
  9864. [
  9865. {
  9866. name: "Macro",
  9867. height: math.unit(750, "meters")
  9868. },
  9869. {
  9870. name: "Megamacro",
  9871. height: math.unit(20, "km"),
  9872. default: true
  9873. },
  9874. {
  9875. name: "Gigamacro",
  9876. height: math.unit(2000, "km")
  9877. },
  9878. {
  9879. name: "Teramacro",
  9880. height: math.unit(250000, "km")
  9881. },
  9882. ]
  9883. ))
  9884. characterMakers.push(() => makeCharacter(
  9885. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9886. {
  9887. front: {
  9888. height: math.unit(100, "feet"),
  9889. weight: math.unit(350, "kg"),
  9890. name: "Front",
  9891. image: {
  9892. source: "./media/characters/rikes/front.svg",
  9893. extra: 1565 / 1483,
  9894. bottom: 0.017
  9895. }
  9896. },
  9897. },
  9898. [
  9899. {
  9900. name: "Macro",
  9901. height: math.unit(100, "feet"),
  9902. default: true
  9903. },
  9904. ]
  9905. ))
  9906. characterMakers.push(() => makeCharacter(
  9907. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9908. {
  9909. anthro: {
  9910. height: math.unit(8, "feet"),
  9911. weight: math.unit(120, "kg"),
  9912. name: "Anthro",
  9913. image: {
  9914. source: "./media/characters/adam-silver-mane/anthro.svg",
  9915. extra: 5743 / 5339,
  9916. bottom: 0.07
  9917. }
  9918. },
  9919. taur: {
  9920. height: math.unit(16, "feet"),
  9921. weight: math.unit(1500, "kg"),
  9922. name: "Taur",
  9923. image: {
  9924. source: "./media/characters/adam-silver-mane/taur.svg",
  9925. extra: 1713 / 1571,
  9926. bottom: 0.01
  9927. }
  9928. },
  9929. },
  9930. [
  9931. {
  9932. name: "Normal",
  9933. height: math.unit(8, "feet")
  9934. },
  9935. {
  9936. name: "Minimacro",
  9937. height: math.unit(80, "feet")
  9938. },
  9939. {
  9940. name: "Macro",
  9941. height: math.unit(800, "feet"),
  9942. default: true
  9943. },
  9944. {
  9945. name: "Megamacro",
  9946. height: math.unit(8000, "feet")
  9947. },
  9948. {
  9949. name: "Gigamacro",
  9950. height: math.unit(800, "miles")
  9951. },
  9952. {
  9953. name: "Teramacro",
  9954. height: math.unit(80000, "miles")
  9955. },
  9956. {
  9957. name: "Celestial",
  9958. height: math.unit(8e6, "miles")
  9959. },
  9960. {
  9961. name: "Star Dragon",
  9962. height: math.unit(800000, "parsecs")
  9963. },
  9964. {
  9965. name: "Godly",
  9966. height: math.unit(800, "teraparsecs")
  9967. },
  9968. ]
  9969. ))
  9970. characterMakers.push(() => makeCharacter(
  9971. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9972. {
  9973. front: {
  9974. height: math.unit(6, "feet"),
  9975. weight: math.unit(150, "lb"),
  9976. name: "Front",
  9977. image: {
  9978. source: "./media/characters/ky'owin/front.svg",
  9979. extra: 3888 / 3068,
  9980. bottom: 0.015
  9981. }
  9982. },
  9983. },
  9984. [
  9985. {
  9986. name: "Normal",
  9987. height: math.unit(6 + 8 / 12, "feet")
  9988. },
  9989. {
  9990. name: "Large",
  9991. height: math.unit(68, "feet")
  9992. },
  9993. {
  9994. name: "Macro",
  9995. height: math.unit(132, "feet")
  9996. },
  9997. {
  9998. name: "Macro+",
  9999. height: math.unit(340, "feet")
  10000. },
  10001. {
  10002. name: "Macro++",
  10003. height: math.unit(680, "feet"),
  10004. default: true
  10005. },
  10006. {
  10007. name: "Megamacro",
  10008. height: math.unit(1, "mile")
  10009. },
  10010. {
  10011. name: "Megamacro+",
  10012. height: math.unit(10, "miles")
  10013. },
  10014. ]
  10015. ))
  10016. characterMakers.push(() => makeCharacter(
  10017. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10018. {
  10019. front: {
  10020. height: math.unit(4, "feet"),
  10021. weight: math.unit(50, "lb"),
  10022. name: "Front",
  10023. image: {
  10024. source: "./media/characters/mal/front.svg",
  10025. extra: 785 / 724,
  10026. bottom: 0.07
  10027. }
  10028. },
  10029. },
  10030. [
  10031. {
  10032. name: "Micro",
  10033. height: math.unit(4, "inches")
  10034. },
  10035. {
  10036. name: "Normal",
  10037. height: math.unit(4, "feet"),
  10038. default: true
  10039. },
  10040. {
  10041. name: "Macro",
  10042. height: math.unit(200, "feet")
  10043. },
  10044. ]
  10045. ))
  10046. characterMakers.push(() => makeCharacter(
  10047. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10048. {
  10049. front: {
  10050. height: math.unit(6, "feet"),
  10051. weight: math.unit(150, "lb"),
  10052. name: "Front",
  10053. image: {
  10054. source: "./media/characters/jordan-deware/front.svg",
  10055. extra: 1191 / 1012
  10056. }
  10057. },
  10058. },
  10059. [
  10060. {
  10061. name: "Nano",
  10062. height: math.unit(0.01, "mm")
  10063. },
  10064. {
  10065. name: "Minimicro",
  10066. height: math.unit(1, "mm")
  10067. },
  10068. {
  10069. name: "Micro",
  10070. height: math.unit(0.5, "inches")
  10071. },
  10072. {
  10073. name: "Normal",
  10074. height: math.unit(4, "feet"),
  10075. default: true
  10076. },
  10077. {
  10078. name: "Minimacro",
  10079. height: math.unit(40, "meters")
  10080. },
  10081. {
  10082. name: "Small Macro",
  10083. height: math.unit(400, "meters")
  10084. },
  10085. {
  10086. name: "Macro",
  10087. height: math.unit(4, "miles")
  10088. },
  10089. {
  10090. name: "Megamacro",
  10091. height: math.unit(40, "miles")
  10092. },
  10093. {
  10094. name: "Megamacro+",
  10095. height: math.unit(400, "miles")
  10096. },
  10097. {
  10098. name: "Gigamacro",
  10099. height: math.unit(400000, "miles")
  10100. },
  10101. ]
  10102. ))
  10103. characterMakers.push(() => makeCharacter(
  10104. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10105. {
  10106. side: {
  10107. height: math.unit(6, "feet"),
  10108. weight: math.unit(150, "lb"),
  10109. name: "Side",
  10110. image: {
  10111. source: "./media/characters/kimiko/side.svg",
  10112. extra: 600 / 358
  10113. }
  10114. },
  10115. },
  10116. [
  10117. {
  10118. name: "Normal",
  10119. height: math.unit(15, "feet"),
  10120. default: true
  10121. },
  10122. {
  10123. name: "Macro",
  10124. height: math.unit(220, "feet")
  10125. },
  10126. {
  10127. name: "Macro+",
  10128. height: math.unit(1450, "feet")
  10129. },
  10130. {
  10131. name: "Megamacro",
  10132. height: math.unit(11500, "feet")
  10133. },
  10134. {
  10135. name: "Gigamacro",
  10136. height: math.unit(9500, "miles")
  10137. },
  10138. {
  10139. name: "Teramacro",
  10140. height: math.unit(2208005005, "miles")
  10141. },
  10142. {
  10143. name: "Examacro",
  10144. height: math.unit(2750, "parsecs")
  10145. },
  10146. {
  10147. name: "Zettamacro",
  10148. height: math.unit(101500, "parsecs")
  10149. },
  10150. ]
  10151. ))
  10152. characterMakers.push(() => makeCharacter(
  10153. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10154. {
  10155. front: {
  10156. height: math.unit(6, "feet"),
  10157. weight: math.unit(70, "kg"),
  10158. name: "Front",
  10159. image: {
  10160. source: "./media/characters/andrew-sleepy/front.svg"
  10161. }
  10162. },
  10163. side: {
  10164. height: math.unit(6, "feet"),
  10165. weight: math.unit(70, "kg"),
  10166. name: "Side",
  10167. image: {
  10168. source: "./media/characters/andrew-sleepy/side.svg"
  10169. }
  10170. },
  10171. },
  10172. [
  10173. {
  10174. name: "Micro",
  10175. height: math.unit(1, "mm"),
  10176. default: true
  10177. },
  10178. ]
  10179. ))
  10180. characterMakers.push(() => makeCharacter(
  10181. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10182. {
  10183. front: {
  10184. height: math.unit(6, "feet"),
  10185. weight: math.unit(150, "lb"),
  10186. name: "Front",
  10187. image: {
  10188. source: "./media/characters/judio/front.svg",
  10189. extra: 1258 / 1110
  10190. }
  10191. },
  10192. },
  10193. [
  10194. {
  10195. name: "Normal",
  10196. height: math.unit(5 + 6 / 12, "feet")
  10197. },
  10198. {
  10199. name: "Macro",
  10200. height: math.unit(1000, "feet"),
  10201. default: true
  10202. },
  10203. {
  10204. name: "Megamacro",
  10205. height: math.unit(10, "miles")
  10206. },
  10207. ]
  10208. ))
  10209. characterMakers.push(() => makeCharacter(
  10210. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10211. {
  10212. front: {
  10213. height: math.unit(6, "feet"),
  10214. weight: math.unit(68, "kg"),
  10215. name: "Front",
  10216. image: {
  10217. source: "./media/characters/nomaxice/front.svg",
  10218. extra: 1498 / 1073,
  10219. bottom: 0.075
  10220. }
  10221. },
  10222. foot: {
  10223. height: math.unit(1.1, "feet"),
  10224. name: "Foot",
  10225. image: {
  10226. source: "./media/characters/nomaxice/foot.svg"
  10227. }
  10228. },
  10229. },
  10230. [
  10231. {
  10232. name: "Micro",
  10233. height: math.unit(8, "cm")
  10234. },
  10235. {
  10236. name: "Norm",
  10237. height: math.unit(1.82, "m")
  10238. },
  10239. {
  10240. name: "Norm+",
  10241. height: math.unit(8.8, "feet")
  10242. },
  10243. {
  10244. name: "Big",
  10245. height: math.unit(8, "meters"),
  10246. default: true
  10247. },
  10248. {
  10249. name: "Macro",
  10250. height: math.unit(18, "meters")
  10251. },
  10252. {
  10253. name: "Macro+",
  10254. height: math.unit(88, "meters")
  10255. },
  10256. ]
  10257. ))
  10258. characterMakers.push(() => makeCharacter(
  10259. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10260. {
  10261. front: {
  10262. height: math.unit(12, "feet"),
  10263. weight: math.unit(1.5, "tons"),
  10264. name: "Front",
  10265. image: {
  10266. source: "./media/characters/dydros/front.svg",
  10267. extra: 863 / 800,
  10268. bottom: 0.015
  10269. }
  10270. },
  10271. back: {
  10272. height: math.unit(12, "feet"),
  10273. weight: math.unit(1.5, "tons"),
  10274. name: "Back",
  10275. image: {
  10276. source: "./media/characters/dydros/back.svg",
  10277. extra: 900 / 843,
  10278. bottom: 0.005
  10279. }
  10280. },
  10281. },
  10282. [
  10283. {
  10284. name: "Normal",
  10285. height: math.unit(12, "feet"),
  10286. default: true
  10287. },
  10288. ]
  10289. ))
  10290. characterMakers.push(() => makeCharacter(
  10291. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10292. {
  10293. front: {
  10294. height: math.unit(6, "feet"),
  10295. weight: math.unit(100, "kg"),
  10296. name: "Front",
  10297. image: {
  10298. source: "./media/characters/riggi/front.svg",
  10299. extra: 5787 / 5303
  10300. }
  10301. },
  10302. hyper: {
  10303. height: math.unit(6 * 5 / 3, "feet"),
  10304. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10305. name: "Hyper",
  10306. image: {
  10307. source: "./media/characters/riggi/hyper.svg",
  10308. extra: 3595 / 3485
  10309. }
  10310. },
  10311. },
  10312. [
  10313. {
  10314. name: "Small Macro",
  10315. height: math.unit(50, "feet")
  10316. },
  10317. {
  10318. name: "Default",
  10319. height: math.unit(200, "feet"),
  10320. default: true
  10321. },
  10322. {
  10323. name: "Loom",
  10324. height: math.unit(10000, "feet")
  10325. },
  10326. {
  10327. name: "Cruising Altitude",
  10328. height: math.unit(30000, "feet")
  10329. },
  10330. {
  10331. name: "Megamacro",
  10332. height: math.unit(100, "miles")
  10333. },
  10334. {
  10335. name: "Continent Sized",
  10336. height: math.unit(2800, "miles")
  10337. },
  10338. {
  10339. name: "Earth Sized",
  10340. height: math.unit(8000, "miles")
  10341. },
  10342. ]
  10343. ))
  10344. characterMakers.push(() => makeCharacter(
  10345. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10346. {
  10347. front: {
  10348. height: math.unit(6, "feet"),
  10349. weight: math.unit(250, "lb"),
  10350. name: "Front",
  10351. image: {
  10352. source: "./media/characters/alexi/front.svg",
  10353. extra: 3483 / 3291,
  10354. bottom: 0.04
  10355. }
  10356. },
  10357. back: {
  10358. height: math.unit(6, "feet"),
  10359. weight: math.unit(250, "lb"),
  10360. name: "Back",
  10361. image: {
  10362. source: "./media/characters/alexi/back.svg",
  10363. extra: 3533 / 3356,
  10364. bottom: 0.021
  10365. }
  10366. },
  10367. frontTransforming: {
  10368. height: math.unit(8.58, "feet"),
  10369. weight: math.unit(1300, "lb"),
  10370. name: "Transforming",
  10371. image: {
  10372. source: "./media/characters/alexi/front-transforming.svg",
  10373. extra: 437 / 409,
  10374. bottom: 19 / 458.66
  10375. }
  10376. },
  10377. frontTransformed: {
  10378. height: math.unit(12.5, "feet"),
  10379. weight: math.unit(4000, "lb"),
  10380. name: "Transformed",
  10381. image: {
  10382. source: "./media/characters/alexi/front-transformed.svg",
  10383. extra: 639 / 614,
  10384. bottom: 30.55 / 671
  10385. }
  10386. },
  10387. },
  10388. [
  10389. {
  10390. name: "Normal",
  10391. height: math.unit(14, "feet"),
  10392. default: true
  10393. },
  10394. {
  10395. name: "Minimacro",
  10396. height: math.unit(30, "meters")
  10397. },
  10398. {
  10399. name: "Macro",
  10400. height: math.unit(500, "meters")
  10401. },
  10402. {
  10403. name: "Megamacro",
  10404. height: math.unit(9000, "km")
  10405. },
  10406. {
  10407. name: "Teramacro",
  10408. height: math.unit(384000, "km")
  10409. },
  10410. ]
  10411. ))
  10412. characterMakers.push(() => makeCharacter(
  10413. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10414. {
  10415. front: {
  10416. height: math.unit(6, "feet"),
  10417. weight: math.unit(150, "lb"),
  10418. name: "Front",
  10419. image: {
  10420. source: "./media/characters/kayroo/front.svg",
  10421. extra: 1153 / 1038,
  10422. bottom: 0.06
  10423. }
  10424. },
  10425. foot: {
  10426. height: math.unit(6, "feet"),
  10427. weight: math.unit(150, "lb"),
  10428. name: "Foot",
  10429. image: {
  10430. source: "./media/characters/kayroo/foot.svg"
  10431. }
  10432. },
  10433. },
  10434. [
  10435. {
  10436. name: "Normal",
  10437. height: math.unit(8, "feet"),
  10438. default: true
  10439. },
  10440. {
  10441. name: "Minimacro",
  10442. height: math.unit(250, "feet")
  10443. },
  10444. {
  10445. name: "Macro",
  10446. height: math.unit(2800, "feet")
  10447. },
  10448. {
  10449. name: "Megamacro",
  10450. height: math.unit(5200, "feet")
  10451. },
  10452. {
  10453. name: "Gigamacro",
  10454. height: math.unit(27000, "feet")
  10455. },
  10456. {
  10457. name: "Omega",
  10458. height: math.unit(45000, "feet")
  10459. },
  10460. ]
  10461. ))
  10462. characterMakers.push(() => makeCharacter(
  10463. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10464. {
  10465. front: {
  10466. height: math.unit(18, "feet"),
  10467. weight: math.unit(5800, "lb"),
  10468. name: "Front",
  10469. image: {
  10470. source: "./media/characters/rhys/front.svg",
  10471. extra: 3386 / 3090,
  10472. bottom: 0.07
  10473. }
  10474. },
  10475. },
  10476. [
  10477. {
  10478. name: "Normal",
  10479. height: math.unit(18, "feet"),
  10480. default: true
  10481. },
  10482. {
  10483. name: "Working Size",
  10484. height: math.unit(200, "feet")
  10485. },
  10486. {
  10487. name: "Demolition Size",
  10488. height: math.unit(2000, "feet")
  10489. },
  10490. {
  10491. name: "Maximum Licensed Size",
  10492. height: math.unit(5, "miles")
  10493. },
  10494. {
  10495. name: "Maximum Observed Size",
  10496. height: math.unit(10, "yottameters")
  10497. },
  10498. ]
  10499. ))
  10500. characterMakers.push(() => makeCharacter(
  10501. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10502. {
  10503. front: {
  10504. height: math.unit(6, "feet"),
  10505. weight: math.unit(250, "lb"),
  10506. name: "Front",
  10507. image: {
  10508. source: "./media/characters/toto/front.svg",
  10509. extra: 527 / 479,
  10510. bottom: 0.05
  10511. }
  10512. },
  10513. },
  10514. [
  10515. {
  10516. name: "Micro",
  10517. height: math.unit(3, "feet")
  10518. },
  10519. {
  10520. name: "Normal",
  10521. height: math.unit(10, "feet")
  10522. },
  10523. {
  10524. name: "Macro",
  10525. height: math.unit(150, "feet"),
  10526. default: true
  10527. },
  10528. {
  10529. name: "Megamacro",
  10530. height: math.unit(1200, "feet")
  10531. },
  10532. ]
  10533. ))
  10534. characterMakers.push(() => makeCharacter(
  10535. { name: "King", species: ["lion"], tags: ["anthro"] },
  10536. {
  10537. back: {
  10538. height: math.unit(6, "feet"),
  10539. weight: math.unit(150, "lb"),
  10540. name: "Back",
  10541. image: {
  10542. source: "./media/characters/king/back.svg"
  10543. }
  10544. },
  10545. },
  10546. [
  10547. {
  10548. name: "Micro",
  10549. height: math.unit(2, "inches")
  10550. },
  10551. {
  10552. name: "Normal",
  10553. height: math.unit(8, "feet")
  10554. },
  10555. {
  10556. name: "Macro",
  10557. height: math.unit(200, "feet"),
  10558. default: true
  10559. },
  10560. {
  10561. name: "Megamacro",
  10562. height: math.unit(50, "miles")
  10563. },
  10564. ]
  10565. ))
  10566. characterMakers.push(() => makeCharacter(
  10567. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10568. {
  10569. anthro: {
  10570. height: math.unit(6 + 5 / 12, "feet"),
  10571. weight: math.unit(280, "lb"),
  10572. name: "Anthro",
  10573. image: {
  10574. source: "./media/characters/cordite/anthro.svg",
  10575. extra: 1986 / 1905,
  10576. bottom: 0.025
  10577. }
  10578. },
  10579. feral: {
  10580. height: math.unit(2, "feet"),
  10581. weight: math.unit(90, "lb"),
  10582. name: "Feral",
  10583. image: {
  10584. source: "./media/characters/cordite/feral.svg",
  10585. extra: 1260 / 755,
  10586. bottom: 0.05
  10587. }
  10588. },
  10589. },
  10590. [
  10591. {
  10592. name: "Normal",
  10593. height: math.unit(6 + 5 / 12, "feet"),
  10594. default: true
  10595. },
  10596. ]
  10597. ))
  10598. characterMakers.push(() => makeCharacter(
  10599. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10600. {
  10601. front: {
  10602. height: math.unit(6, "feet"),
  10603. weight: math.unit(150, "lb"),
  10604. name: "Front",
  10605. image: {
  10606. source: "./media/characters/pianostrong/front.svg",
  10607. extra: 6577 / 6254,
  10608. bottom: 0.02
  10609. }
  10610. },
  10611. side: {
  10612. height: math.unit(6, "feet"),
  10613. weight: math.unit(150, "lb"),
  10614. name: "Side",
  10615. image: {
  10616. source: "./media/characters/pianostrong/side.svg",
  10617. extra: 6106 / 5730
  10618. }
  10619. },
  10620. back: {
  10621. height: math.unit(6, "feet"),
  10622. weight: math.unit(150, "lb"),
  10623. name: "Back",
  10624. image: {
  10625. source: "./media/characters/pianostrong/back.svg",
  10626. extra: 6085 / 5733,
  10627. bottom: 0.01
  10628. }
  10629. },
  10630. },
  10631. [
  10632. {
  10633. name: "Macro",
  10634. height: math.unit(100, "feet")
  10635. },
  10636. {
  10637. name: "Macro+",
  10638. height: math.unit(300, "feet"),
  10639. default: true
  10640. },
  10641. {
  10642. name: "Macro++",
  10643. height: math.unit(1000, "feet")
  10644. },
  10645. ]
  10646. ))
  10647. characterMakers.push(() => makeCharacter(
  10648. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10649. {
  10650. front: {
  10651. height: math.unit(6, "feet"),
  10652. weight: math.unit(150, "lb"),
  10653. name: "Front",
  10654. image: {
  10655. source: "./media/characters/kona/front.svg",
  10656. extra: 2960 / 2629,
  10657. bottom: 0.005
  10658. }
  10659. },
  10660. },
  10661. [
  10662. {
  10663. name: "Normal",
  10664. height: math.unit(11 + 8 / 12, "feet")
  10665. },
  10666. {
  10667. name: "Macro",
  10668. height: math.unit(850, "feet"),
  10669. default: true
  10670. },
  10671. {
  10672. name: "Macro+",
  10673. height: math.unit(1.5, "km"),
  10674. default: true
  10675. },
  10676. {
  10677. name: "Megamacro",
  10678. height: math.unit(80, "miles")
  10679. },
  10680. {
  10681. name: "Gigamacro",
  10682. height: math.unit(3500, "miles")
  10683. },
  10684. ]
  10685. ))
  10686. characterMakers.push(() => makeCharacter(
  10687. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10688. {
  10689. side: {
  10690. height: math.unit(1.9, "meters"),
  10691. weight: math.unit(326, "kg"),
  10692. name: "Side",
  10693. image: {
  10694. source: "./media/characters/levi/side.svg",
  10695. extra: 1704 / 1334,
  10696. bottom: 0.02
  10697. }
  10698. },
  10699. },
  10700. [
  10701. {
  10702. name: "Normal",
  10703. height: math.unit(1.9, "meters"),
  10704. default: true
  10705. },
  10706. {
  10707. name: "Macro",
  10708. height: math.unit(20, "meters")
  10709. },
  10710. {
  10711. name: "Macro+",
  10712. height: math.unit(200, "meters")
  10713. },
  10714. {
  10715. name: "Megamacro",
  10716. height: math.unit(2, "km")
  10717. },
  10718. {
  10719. name: "Megamacro+",
  10720. height: math.unit(20, "km")
  10721. },
  10722. {
  10723. name: "Gigamacro",
  10724. height: math.unit(2500, "km")
  10725. },
  10726. {
  10727. name: "Gigamacro+",
  10728. height: math.unit(120000, "km")
  10729. },
  10730. {
  10731. name: "Teramacro",
  10732. height: math.unit(7.77e6, "km")
  10733. },
  10734. ]
  10735. ))
  10736. characterMakers.push(() => makeCharacter(
  10737. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10738. {
  10739. front: {
  10740. height: math.unit(6 + 4 / 12, "feet"),
  10741. weight: math.unit(188, "lb"),
  10742. name: "Front",
  10743. image: {
  10744. source: "./media/characters/bmc/front.svg",
  10745. extra: 1067 / 1022,
  10746. bottom: 0.047
  10747. }
  10748. },
  10749. },
  10750. [
  10751. {
  10752. name: "Human-sized",
  10753. height: math.unit(6 + 4 / 12, "feet")
  10754. },
  10755. {
  10756. name: "Small",
  10757. height: math.unit(250, "feet")
  10758. },
  10759. {
  10760. name: "Normal",
  10761. height: math.unit(1250, "feet"),
  10762. default: true
  10763. },
  10764. {
  10765. name: "Good Day",
  10766. height: math.unit(88, "miles")
  10767. },
  10768. {
  10769. name: "Largest Measured Size",
  10770. height: math.unit(11.2e6, "lightyears")
  10771. },
  10772. ]
  10773. ))
  10774. characterMakers.push(() => makeCharacter(
  10775. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10776. {
  10777. front: {
  10778. height: math.unit(20, "feet"),
  10779. weight: math.unit(2016, "kg"),
  10780. name: "Front",
  10781. image: {
  10782. source: "./media/characters/sven-the-kaiju/front.svg",
  10783. extra: 1479 / 1449,
  10784. bottom: 0.05
  10785. }
  10786. },
  10787. },
  10788. [
  10789. {
  10790. name: "Fairy",
  10791. height: math.unit(6, "inches")
  10792. },
  10793. {
  10794. name: "Normal",
  10795. height: math.unit(20, "feet"),
  10796. default: true
  10797. },
  10798. {
  10799. name: "Rampage",
  10800. height: math.unit(200, "feet")
  10801. },
  10802. {
  10803. name: "Archfey Forest Guardian",
  10804. height: math.unit(1, "mile")
  10805. },
  10806. ]
  10807. ))
  10808. characterMakers.push(() => makeCharacter(
  10809. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10810. {
  10811. front: {
  10812. height: math.unit(4, "meters"),
  10813. weight: math.unit(2, "tons"),
  10814. name: "Front",
  10815. image: {
  10816. source: "./media/characters/marik/front.svg",
  10817. extra: 1057 / 1003,
  10818. bottom: 0.08
  10819. }
  10820. },
  10821. },
  10822. [
  10823. {
  10824. name: "Normal",
  10825. height: math.unit(4, "meters"),
  10826. default: true
  10827. },
  10828. {
  10829. name: "Macro",
  10830. height: math.unit(20, "meters")
  10831. },
  10832. {
  10833. name: "Megamacro",
  10834. height: math.unit(50, "km")
  10835. },
  10836. {
  10837. name: "Gigamacro",
  10838. height: math.unit(100, "km")
  10839. },
  10840. {
  10841. name: "Alpha Macro",
  10842. height: math.unit(7.88e7, "yottameters")
  10843. },
  10844. ]
  10845. ))
  10846. characterMakers.push(() => makeCharacter(
  10847. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10848. {
  10849. front: {
  10850. height: math.unit(6, "feet"),
  10851. weight: math.unit(110, "lb"),
  10852. name: "Front",
  10853. image: {
  10854. source: "./media/characters/mel/front.svg",
  10855. extra: 736 / 617,
  10856. bottom: 0.017
  10857. }
  10858. },
  10859. },
  10860. [
  10861. {
  10862. name: "Pico",
  10863. height: math.unit(3, "pm")
  10864. },
  10865. {
  10866. name: "Nano",
  10867. height: math.unit(3, "nm")
  10868. },
  10869. {
  10870. name: "Micro",
  10871. height: math.unit(0.3, "mm"),
  10872. default: true
  10873. },
  10874. {
  10875. name: "Micro+",
  10876. height: math.unit(3, "mm")
  10877. },
  10878. {
  10879. name: "Normal",
  10880. height: math.unit(5 + 10.5 / 12, "feet")
  10881. },
  10882. ]
  10883. ))
  10884. characterMakers.push(() => makeCharacter(
  10885. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10886. {
  10887. kaiju: {
  10888. height: math.unit(1.75, "meters"),
  10889. weight: math.unit(55, "kg"),
  10890. name: "Kaiju",
  10891. image: {
  10892. source: "./media/characters/lykonous/kaiju.svg",
  10893. extra: 1055 / 946,
  10894. bottom: 0.135
  10895. }
  10896. },
  10897. },
  10898. [
  10899. {
  10900. name: "Normal",
  10901. height: math.unit(2.5, "meters"),
  10902. default: true
  10903. },
  10904. {
  10905. name: "Kaiju Dragon",
  10906. height: math.unit(60, "meters")
  10907. },
  10908. {
  10909. name: "Mega Kaiju",
  10910. height: math.unit(120, "km")
  10911. },
  10912. {
  10913. name: "Giga Kaiju",
  10914. height: math.unit(200, "megameters")
  10915. },
  10916. {
  10917. name: "Terra Kaiju",
  10918. height: math.unit(400, "gigameters")
  10919. },
  10920. {
  10921. name: "Kaiju Dragon God",
  10922. height: math.unit(13000, "exaparsecs")
  10923. },
  10924. ]
  10925. ))
  10926. characterMakers.push(() => makeCharacter(
  10927. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10928. {
  10929. front: {
  10930. height: math.unit(6, "feet"),
  10931. weight: math.unit(150, "lb"),
  10932. name: "Front",
  10933. image: {
  10934. source: "./media/characters/blü/front.svg",
  10935. extra: 1883 / 1564,
  10936. bottom: 0.031
  10937. }
  10938. },
  10939. },
  10940. [
  10941. {
  10942. name: "Normal",
  10943. height: math.unit(13, "feet"),
  10944. default: true
  10945. },
  10946. {
  10947. name: "Big Boi",
  10948. height: math.unit(150, "meters")
  10949. },
  10950. {
  10951. name: "Mini Stomper",
  10952. height: math.unit(300, "meters")
  10953. },
  10954. {
  10955. name: "Macro",
  10956. height: math.unit(1000, "meters")
  10957. },
  10958. {
  10959. name: "Megamacro",
  10960. height: math.unit(11000, "meters")
  10961. },
  10962. {
  10963. name: "Gigamacro",
  10964. height: math.unit(11000, "km")
  10965. },
  10966. {
  10967. name: "Teramacro",
  10968. height: math.unit(420000, "km")
  10969. },
  10970. {
  10971. name: "Examacro",
  10972. height: math.unit(120, "parsecs")
  10973. },
  10974. {
  10975. name: "God Tho",
  10976. height: math.unit(98000000000, "parsecs")
  10977. },
  10978. ]
  10979. ))
  10980. characterMakers.push(() => makeCharacter(
  10981. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10982. {
  10983. taurFront: {
  10984. height: math.unit(6, "feet"),
  10985. weight: math.unit(200, "lb"),
  10986. name: "Taur (Front)",
  10987. image: {
  10988. source: "./media/characters/scales/taur-front.svg",
  10989. extra: 1,
  10990. bottom: 0.05
  10991. }
  10992. },
  10993. taurBack: {
  10994. height: math.unit(6, "feet"),
  10995. weight: math.unit(200, "lb"),
  10996. name: "Taur (Back)",
  10997. image: {
  10998. source: "./media/characters/scales/taur-back.svg",
  10999. extra: 1,
  11000. bottom: 0.08
  11001. }
  11002. },
  11003. anthro: {
  11004. height: math.unit(6 * 7 / 12, "feet"),
  11005. weight: math.unit(100, "lb"),
  11006. name: "Anthro",
  11007. image: {
  11008. source: "./media/characters/scales/anthro.svg",
  11009. extra: 1,
  11010. bottom: 0.06
  11011. }
  11012. },
  11013. },
  11014. [
  11015. {
  11016. name: "Normal",
  11017. height: math.unit(12, "feet"),
  11018. default: true
  11019. },
  11020. ]
  11021. ))
  11022. characterMakers.push(() => makeCharacter(
  11023. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11024. {
  11025. front: {
  11026. height: math.unit(6, "feet"),
  11027. weight: math.unit(150, "lb"),
  11028. name: "Front",
  11029. image: {
  11030. source: "./media/characters/koragos/front.svg",
  11031. extra: 841 / 794,
  11032. bottom: 0.035
  11033. }
  11034. },
  11035. back: {
  11036. height: math.unit(6, "feet"),
  11037. weight: math.unit(150, "lb"),
  11038. name: "Back",
  11039. image: {
  11040. source: "./media/characters/koragos/back.svg",
  11041. extra: 841 / 810,
  11042. bottom: 0.022
  11043. }
  11044. },
  11045. },
  11046. [
  11047. {
  11048. name: "Normal",
  11049. height: math.unit(6 + 11 / 12, "feet"),
  11050. default: true
  11051. },
  11052. {
  11053. name: "Macro",
  11054. height: math.unit(490, "feet")
  11055. },
  11056. {
  11057. name: "Megamacro",
  11058. height: math.unit(10, "miles")
  11059. },
  11060. {
  11061. name: "Gigamacro",
  11062. height: math.unit(50, "miles")
  11063. },
  11064. ]
  11065. ))
  11066. characterMakers.push(() => makeCharacter(
  11067. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11068. {
  11069. front: {
  11070. height: math.unit(6, "feet"),
  11071. weight: math.unit(250, "lb"),
  11072. name: "Front",
  11073. image: {
  11074. source: "./media/characters/xylrem/front.svg",
  11075. extra: 3323 / 3050,
  11076. bottom: 0.065
  11077. }
  11078. },
  11079. },
  11080. [
  11081. {
  11082. name: "Micro",
  11083. height: math.unit(4, "feet")
  11084. },
  11085. {
  11086. name: "Normal",
  11087. height: math.unit(16, "feet"),
  11088. default: true
  11089. },
  11090. {
  11091. name: "Macro",
  11092. height: math.unit(2720, "feet")
  11093. },
  11094. {
  11095. name: "Megamacro",
  11096. height: math.unit(25000, "miles")
  11097. },
  11098. ]
  11099. ))
  11100. characterMakers.push(() => makeCharacter(
  11101. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11102. {
  11103. front: {
  11104. height: math.unit(8, "feet"),
  11105. weight: math.unit(250, "kg"),
  11106. name: "Front",
  11107. image: {
  11108. source: "./media/characters/ikideru/front.svg",
  11109. extra: 930 / 870,
  11110. bottom: 0.087
  11111. }
  11112. },
  11113. back: {
  11114. height: math.unit(8, "feet"),
  11115. weight: math.unit(250, "kg"),
  11116. name: "Back",
  11117. image: {
  11118. source: "./media/characters/ikideru/back.svg",
  11119. extra: 919 / 852,
  11120. bottom: 0.055
  11121. }
  11122. },
  11123. },
  11124. [
  11125. {
  11126. name: "Rare",
  11127. height: math.unit(8, "feet"),
  11128. default: true
  11129. },
  11130. {
  11131. name: "Playful Loom",
  11132. height: math.unit(80, "feet")
  11133. },
  11134. {
  11135. name: "City Leaner",
  11136. height: math.unit(230, "feet")
  11137. },
  11138. {
  11139. name: "Megamacro",
  11140. height: math.unit(2500, "feet")
  11141. },
  11142. {
  11143. name: "Gigamacro",
  11144. height: math.unit(26400, "feet")
  11145. },
  11146. {
  11147. name: "Tectonic Shifter",
  11148. height: math.unit(1.7, "megameters")
  11149. },
  11150. {
  11151. name: "Planet Carer",
  11152. height: math.unit(21, "megameters")
  11153. },
  11154. {
  11155. name: "God",
  11156. height: math.unit(11157.22, "parsecs")
  11157. },
  11158. ]
  11159. ))
  11160. characterMakers.push(() => makeCharacter(
  11161. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11162. {
  11163. front: {
  11164. height: math.unit(6, "feet"),
  11165. weight: math.unit(120, "lb"),
  11166. name: "Front",
  11167. image: {
  11168. source: "./media/characters/neo/front.svg"
  11169. }
  11170. },
  11171. },
  11172. [
  11173. {
  11174. name: "Micro",
  11175. height: math.unit(2, "inches"),
  11176. default: true
  11177. },
  11178. {
  11179. name: "Human Size",
  11180. height: math.unit(5 + 8 / 12, "feet")
  11181. },
  11182. ]
  11183. ))
  11184. characterMakers.push(() => makeCharacter(
  11185. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11186. {
  11187. front: {
  11188. height: math.unit(13 + 10 / 12, "feet"),
  11189. weight: math.unit(5320, "lb"),
  11190. name: "Front",
  11191. image: {
  11192. source: "./media/characters/chauncey-chantz/front.svg",
  11193. extra: 1587 / 1435,
  11194. bottom: 0.02
  11195. }
  11196. },
  11197. },
  11198. [
  11199. {
  11200. name: "Normal",
  11201. height: math.unit(13 + 10 / 12, "feet"),
  11202. default: true
  11203. },
  11204. {
  11205. name: "Macro",
  11206. height: math.unit(45, "feet")
  11207. },
  11208. {
  11209. name: "Megamacro",
  11210. height: math.unit(250, "miles")
  11211. },
  11212. {
  11213. name: "Planetary",
  11214. height: math.unit(10000, "miles")
  11215. },
  11216. {
  11217. name: "Galactic",
  11218. height: math.unit(40000, "parsecs")
  11219. },
  11220. {
  11221. name: "Universal",
  11222. height: math.unit(1, "yottameter")
  11223. },
  11224. ]
  11225. ))
  11226. characterMakers.push(() => makeCharacter(
  11227. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11228. {
  11229. front: {
  11230. height: math.unit(6, "feet"),
  11231. weight: math.unit(150, "lb"),
  11232. name: "Front",
  11233. image: {
  11234. source: "./media/characters/epifox/front.svg",
  11235. extra: 1,
  11236. bottom: 0.075
  11237. }
  11238. },
  11239. },
  11240. [
  11241. {
  11242. name: "Micro",
  11243. height: math.unit(6, "inches")
  11244. },
  11245. {
  11246. name: "Normal",
  11247. height: math.unit(12, "feet"),
  11248. default: true
  11249. },
  11250. {
  11251. name: "Macro",
  11252. height: math.unit(3810, "feet")
  11253. },
  11254. {
  11255. name: "Megamacro",
  11256. height: math.unit(500, "miles")
  11257. },
  11258. ]
  11259. ))
  11260. characterMakers.push(() => makeCharacter(
  11261. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11262. {
  11263. front: {
  11264. height: math.unit(1.8796, "m"),
  11265. weight: math.unit(230, "lb"),
  11266. name: "Front",
  11267. image: {
  11268. source: "./media/characters/colin-t/front.svg",
  11269. extra: 1272 / 1193,
  11270. bottom: 0.07
  11271. }
  11272. },
  11273. },
  11274. [
  11275. {
  11276. name: "Micro",
  11277. height: math.unit(0.571, "meters")
  11278. },
  11279. {
  11280. name: "Normal",
  11281. height: math.unit(1.8796, "meters"),
  11282. default: true
  11283. },
  11284. {
  11285. name: "Tall",
  11286. height: math.unit(4, "meters")
  11287. },
  11288. {
  11289. name: "Macro",
  11290. height: math.unit(67.241, "meters")
  11291. },
  11292. {
  11293. name: "Megamacro",
  11294. height: math.unit(371.856, "meters")
  11295. },
  11296. {
  11297. name: "Planetary",
  11298. height: math.unit(12631.5689, "km")
  11299. },
  11300. ]
  11301. ))
  11302. characterMakers.push(() => makeCharacter(
  11303. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11304. {
  11305. front: {
  11306. height: math.unit(1.85, "meters"),
  11307. weight: math.unit(80, "kg"),
  11308. name: "Front",
  11309. image: {
  11310. source: "./media/characters/matvei/front.svg",
  11311. extra: 614 / 594,
  11312. bottom: 0.01
  11313. }
  11314. },
  11315. },
  11316. [
  11317. {
  11318. name: "Normal",
  11319. height: math.unit(1.85, "meters"),
  11320. default: true
  11321. },
  11322. ]
  11323. ))
  11324. characterMakers.push(() => makeCharacter(
  11325. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11326. {
  11327. front: {
  11328. height: math.unit(5 + 9 / 12, "feet"),
  11329. weight: math.unit(70, "lb"),
  11330. name: "Front",
  11331. image: {
  11332. source: "./media/characters/quincy/front.svg",
  11333. extra: 3041 / 2751
  11334. }
  11335. },
  11336. back: {
  11337. height: math.unit(5 + 9 / 12, "feet"),
  11338. weight: math.unit(70, "lb"),
  11339. name: "Back",
  11340. image: {
  11341. source: "./media/characters/quincy/back.svg",
  11342. extra: 3041 / 2751
  11343. }
  11344. },
  11345. flying: {
  11346. height: math.unit(5 + 4 / 12, "feet"),
  11347. weight: math.unit(70, "lb"),
  11348. name: "Flying",
  11349. image: {
  11350. source: "./media/characters/quincy/flying.svg",
  11351. extra: 1044 / 930
  11352. }
  11353. },
  11354. },
  11355. [
  11356. {
  11357. name: "Micro",
  11358. height: math.unit(3, "cm")
  11359. },
  11360. {
  11361. name: "Normal",
  11362. height: math.unit(5 + 9 / 12, "feet")
  11363. },
  11364. {
  11365. name: "Macro",
  11366. height: math.unit(200, "meters"),
  11367. default: true
  11368. },
  11369. {
  11370. name: "Megamacro",
  11371. height: math.unit(1000, "meters")
  11372. },
  11373. ]
  11374. ))
  11375. characterMakers.push(() => makeCharacter(
  11376. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11377. {
  11378. front: {
  11379. height: math.unit(4 + 7 / 12, "feet"),
  11380. weight: math.unit(50, "lb"),
  11381. name: "Front",
  11382. image: {
  11383. source: "./media/characters/vanrel/front.svg",
  11384. extra: 1,
  11385. bottom: 0.02
  11386. }
  11387. },
  11388. frontAlt: {
  11389. height: math.unit(4 + 7 / 12, "feet"),
  11390. weight: math.unit(50, "lb"),
  11391. name: "Front-alt",
  11392. image: {
  11393. source: "./media/characters/vanrel/front-alt.svg",
  11394. extra: 1,
  11395. bottom: 15 / 1511
  11396. }
  11397. },
  11398. elemental: {
  11399. height: math.unit(3, "feet"),
  11400. weight: math.unit(50, "lb"),
  11401. name: "Elemental",
  11402. image: {
  11403. source: "./media/characters/vanrel/elemental.svg",
  11404. extra: 192.3 / 162.8,
  11405. bottom: 1.79 / 194.17
  11406. }
  11407. },
  11408. side: {
  11409. height: math.unit(4 + 7 / 12, "feet"),
  11410. weight: math.unit(50, "lb"),
  11411. name: "Side",
  11412. image: {
  11413. source: "./media/characters/vanrel/side.svg",
  11414. extra: 1,
  11415. bottom: 0.025
  11416. }
  11417. },
  11418. tome: {
  11419. height: math.unit(1.35, "feet"),
  11420. weight: math.unit(10, "lb"),
  11421. name: "Vanrel's Tome",
  11422. rename: true,
  11423. image: {
  11424. source: "./media/characters/vanrel/tome.svg"
  11425. }
  11426. },
  11427. beans: {
  11428. height: math.unit(0.89, "feet"),
  11429. name: "Beans",
  11430. image: {
  11431. source: "./media/characters/vanrel/beans.svg"
  11432. }
  11433. },
  11434. },
  11435. [
  11436. {
  11437. name: "Normal",
  11438. height: math.unit(4 + 7 / 12, "feet"),
  11439. default: true
  11440. },
  11441. ]
  11442. ))
  11443. characterMakers.push(() => makeCharacter(
  11444. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11445. {
  11446. front: {
  11447. height: math.unit(7 + 5 / 12, "feet"),
  11448. weight: math.unit(150, "lb"),
  11449. name: "Front",
  11450. image: {
  11451. source: "./media/characters/kuiper-vanrel/front.svg",
  11452. extra: 1118 / 1068,
  11453. bottom: 0.09
  11454. }
  11455. },
  11456. foot: {
  11457. height: math.unit(0.55, "meters"),
  11458. name: "Foot",
  11459. image: {
  11460. source: "./media/characters/kuiper-vanrel/foot.svg",
  11461. }
  11462. },
  11463. battle: {
  11464. height: math.unit(6.824, "feet"),
  11465. weight: math.unit(150, "lb"),
  11466. name: "Battle",
  11467. image: {
  11468. source: "./media/characters/kuiper-vanrel/battle.svg",
  11469. extra: 1466 / 1327,
  11470. bottom: 29 / 1492.5
  11471. }
  11472. },
  11473. battleAlt: {
  11474. height: math.unit(6.824, "feet"),
  11475. weight: math.unit(150, "lb"),
  11476. name: "Battle (Alt)",
  11477. image: {
  11478. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11479. extra: 2081 / 1965,
  11480. bottom: 40 / 2121
  11481. }
  11482. },
  11483. },
  11484. [
  11485. {
  11486. name: "Normal",
  11487. height: math.unit(7 + 5 / 12, "feet"),
  11488. default: true
  11489. },
  11490. ]
  11491. ))
  11492. characterMakers.push(() => makeCharacter(
  11493. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11494. {
  11495. front: {
  11496. height: math.unit(8 + 5 / 12, "feet"),
  11497. weight: math.unit(150, "lb"),
  11498. name: "Front",
  11499. image: {
  11500. source: "./media/characters/keset-vanrel/front.svg",
  11501. extra: 1150 / 1084,
  11502. bottom: 0.05
  11503. }
  11504. },
  11505. hand: {
  11506. height: math.unit(0.6, "meters"),
  11507. name: "Hand",
  11508. image: {
  11509. source: "./media/characters/keset-vanrel/hand.svg"
  11510. }
  11511. },
  11512. foot: {
  11513. height: math.unit(0.94978, "meters"),
  11514. name: "Foot",
  11515. image: {
  11516. source: "./media/characters/keset-vanrel/foot.svg"
  11517. }
  11518. },
  11519. battle: {
  11520. height: math.unit(7.408, "feet"),
  11521. weight: math.unit(150, "lb"),
  11522. name: "Battle",
  11523. image: {
  11524. source: "./media/characters/keset-vanrel/battle.svg",
  11525. extra: 1890 / 1386,
  11526. bottom: 73.28 / 1970
  11527. }
  11528. },
  11529. },
  11530. [
  11531. {
  11532. name: "Normal",
  11533. height: math.unit(8 + 5 / 12, "feet"),
  11534. default: true
  11535. },
  11536. ]
  11537. ))
  11538. characterMakers.push(() => makeCharacter(
  11539. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11540. {
  11541. front: {
  11542. height: math.unit(6, "feet"),
  11543. weight: math.unit(150, "lb"),
  11544. name: "Front",
  11545. image: {
  11546. source: "./media/characters/neos/front.svg",
  11547. extra: 1696 / 992,
  11548. bottom: 0.14
  11549. }
  11550. },
  11551. },
  11552. [
  11553. {
  11554. name: "Normal",
  11555. height: math.unit(54, "cm"),
  11556. default: true
  11557. },
  11558. {
  11559. name: "Macro",
  11560. height: math.unit(100, "m")
  11561. },
  11562. {
  11563. name: "Megamacro",
  11564. height: math.unit(10, "km")
  11565. },
  11566. {
  11567. name: "Megamacro+",
  11568. height: math.unit(100, "km")
  11569. },
  11570. {
  11571. name: "Gigamacro",
  11572. height: math.unit(100, "Mm")
  11573. },
  11574. {
  11575. name: "Teramacro",
  11576. height: math.unit(100, "Gm")
  11577. },
  11578. {
  11579. name: "Examacro",
  11580. height: math.unit(100, "Em")
  11581. },
  11582. {
  11583. name: "Godly",
  11584. height: math.unit(10000, "Ym")
  11585. },
  11586. {
  11587. name: "Beyond Godly",
  11588. height: math.unit(25, "multiverses")
  11589. },
  11590. ]
  11591. ))
  11592. characterMakers.push(() => makeCharacter(
  11593. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11594. {
  11595. feminine: {
  11596. height: math.unit(5, "feet"),
  11597. weight: math.unit(100, "lb"),
  11598. name: "Feminine",
  11599. image: {
  11600. source: "./media/characters/sammy-mouse/feminine.svg",
  11601. extra: 2526 / 2425,
  11602. bottom: 0.123
  11603. }
  11604. },
  11605. masculine: {
  11606. height: math.unit(5, "feet"),
  11607. weight: math.unit(100, "lb"),
  11608. name: "Masculine",
  11609. image: {
  11610. source: "./media/characters/sammy-mouse/masculine.svg",
  11611. extra: 2526 / 2425,
  11612. bottom: 0.123
  11613. }
  11614. },
  11615. },
  11616. [
  11617. {
  11618. name: "Micro",
  11619. height: math.unit(5, "inches")
  11620. },
  11621. {
  11622. name: "Normal",
  11623. height: math.unit(5, "feet"),
  11624. default: true
  11625. },
  11626. {
  11627. name: "Macro",
  11628. height: math.unit(60, "feet")
  11629. },
  11630. ]
  11631. ))
  11632. characterMakers.push(() => makeCharacter(
  11633. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11634. {
  11635. front: {
  11636. height: math.unit(4, "feet"),
  11637. weight: math.unit(50, "lb"),
  11638. name: "Front",
  11639. image: {
  11640. source: "./media/characters/kole/front.svg",
  11641. extra: 1423 / 1303,
  11642. bottom: 0.025
  11643. }
  11644. },
  11645. back: {
  11646. height: math.unit(4, "feet"),
  11647. weight: math.unit(50, "lb"),
  11648. name: "Back",
  11649. image: {
  11650. source: "./media/characters/kole/back.svg",
  11651. extra: 1426 / 1280,
  11652. bottom: 0.02
  11653. }
  11654. },
  11655. },
  11656. [
  11657. {
  11658. name: "Normal",
  11659. height: math.unit(4, "feet"),
  11660. default: true
  11661. },
  11662. ]
  11663. ))
  11664. characterMakers.push(() => makeCharacter(
  11665. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11666. {
  11667. front: {
  11668. height: math.unit(2 + 6 / 12, "feet"),
  11669. weight: math.unit(20, "lb"),
  11670. name: "Front",
  11671. image: {
  11672. source: "./media/characters/rufran/front.svg",
  11673. extra: 2041 / 1839,
  11674. bottom: 0.055
  11675. }
  11676. },
  11677. back: {
  11678. height: math.unit(2 + 6 / 12, "feet"),
  11679. weight: math.unit(20, "lb"),
  11680. name: "Back",
  11681. image: {
  11682. source: "./media/characters/rufran/back.svg",
  11683. extra: 2054 / 1839,
  11684. bottom: 0.01
  11685. }
  11686. },
  11687. hand: {
  11688. height: math.unit(0.2166, "meters"),
  11689. name: "Hand",
  11690. image: {
  11691. source: "./media/characters/rufran/hand.svg"
  11692. }
  11693. },
  11694. foot: {
  11695. height: math.unit(0.185, "meters"),
  11696. name: "Foot",
  11697. image: {
  11698. source: "./media/characters/rufran/foot.svg"
  11699. }
  11700. },
  11701. },
  11702. [
  11703. {
  11704. name: "Micro",
  11705. height: math.unit(1, "inch")
  11706. },
  11707. {
  11708. name: "Normal",
  11709. height: math.unit(2 + 6 / 12, "feet"),
  11710. default: true
  11711. },
  11712. {
  11713. name: "Big",
  11714. height: math.unit(60, "feet")
  11715. },
  11716. {
  11717. name: "Macro",
  11718. height: math.unit(325, "feet")
  11719. },
  11720. ]
  11721. ))
  11722. characterMakers.push(() => makeCharacter(
  11723. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11724. {
  11725. front: {
  11726. height: math.unit(0.3, "meters"),
  11727. weight: math.unit(3.5, "kg"),
  11728. name: "Front",
  11729. image: {
  11730. source: "./media/characters/chip/front.svg",
  11731. extra: 748 / 674
  11732. }
  11733. },
  11734. },
  11735. [
  11736. {
  11737. name: "Micro",
  11738. height: math.unit(1, "inch"),
  11739. default: true
  11740. },
  11741. ]
  11742. ))
  11743. characterMakers.push(() => makeCharacter(
  11744. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11745. {
  11746. side: {
  11747. height: math.unit(2.3, "meters"),
  11748. weight: math.unit(3500, "lb"),
  11749. name: "Side",
  11750. image: {
  11751. source: "./media/characters/torvid/side.svg",
  11752. extra: 1972 / 722,
  11753. bottom: 0.035
  11754. }
  11755. },
  11756. },
  11757. [
  11758. {
  11759. name: "Normal",
  11760. height: math.unit(2.3, "meters"),
  11761. default: true
  11762. },
  11763. ]
  11764. ))
  11765. characterMakers.push(() => makeCharacter(
  11766. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11767. {
  11768. front: {
  11769. height: math.unit(2, "meters"),
  11770. weight: math.unit(150.5, "kg"),
  11771. name: "Front",
  11772. image: {
  11773. source: "./media/characters/susan/front.svg",
  11774. extra: 693 / 635,
  11775. bottom: 0.05
  11776. }
  11777. },
  11778. },
  11779. [
  11780. {
  11781. name: "Megamacro",
  11782. height: math.unit(505, "miles"),
  11783. default: true
  11784. },
  11785. ]
  11786. ))
  11787. characterMakers.push(() => makeCharacter(
  11788. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11789. {
  11790. front: {
  11791. height: math.unit(6, "feet"),
  11792. weight: math.unit(150, "lb"),
  11793. name: "Front",
  11794. image: {
  11795. source: "./media/characters/raindrops/front.svg",
  11796. extra: 2655 / 2461,
  11797. bottom: 49 / 2705
  11798. }
  11799. },
  11800. back: {
  11801. height: math.unit(6, "feet"),
  11802. weight: math.unit(150, "lb"),
  11803. name: "Back",
  11804. image: {
  11805. source: "./media/characters/raindrops/back.svg",
  11806. extra: 2574 / 2400,
  11807. bottom: 65 / 2634
  11808. }
  11809. },
  11810. },
  11811. [
  11812. {
  11813. name: "Micro",
  11814. height: math.unit(6, "inches")
  11815. },
  11816. {
  11817. name: "Normal",
  11818. height: math.unit(6 + 2 / 12, "feet")
  11819. },
  11820. {
  11821. name: "Macro",
  11822. height: math.unit(131, "feet"),
  11823. default: true
  11824. },
  11825. {
  11826. name: "Megamacro",
  11827. height: math.unit(15, "miles")
  11828. },
  11829. {
  11830. name: "Gigamacro",
  11831. height: math.unit(4000, "miles")
  11832. },
  11833. {
  11834. name: "Teramacro",
  11835. height: math.unit(315000, "miles")
  11836. },
  11837. ]
  11838. ))
  11839. characterMakers.push(() => makeCharacter(
  11840. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11841. {
  11842. front: {
  11843. height: math.unit(2.794, "meters"),
  11844. weight: math.unit(325, "kg"),
  11845. name: "Front",
  11846. image: {
  11847. source: "./media/characters/tezwa/front.svg",
  11848. extra: 2083 / 1906,
  11849. bottom: 0.031
  11850. }
  11851. },
  11852. foot: {
  11853. height: math.unit(0.687, "meters"),
  11854. name: "Foot",
  11855. image: {
  11856. source: "./media/characters/tezwa/foot.svg"
  11857. }
  11858. },
  11859. },
  11860. [
  11861. {
  11862. name: "Normal",
  11863. height: math.unit(9 + 2 / 12, "feet"),
  11864. default: true
  11865. },
  11866. ]
  11867. ))
  11868. characterMakers.push(() => makeCharacter(
  11869. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11870. {
  11871. front: {
  11872. height: math.unit(58, "feet"),
  11873. weight: math.unit(89000, "lb"),
  11874. name: "Front",
  11875. image: {
  11876. source: "./media/characters/typhus/front.svg",
  11877. extra: 816 / 800,
  11878. bottom: 0.065
  11879. }
  11880. },
  11881. },
  11882. [
  11883. {
  11884. name: "Macro",
  11885. height: math.unit(58, "feet"),
  11886. default: true
  11887. },
  11888. ]
  11889. ))
  11890. characterMakers.push(() => makeCharacter(
  11891. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11892. {
  11893. front: {
  11894. height: math.unit(12, "feet"),
  11895. weight: math.unit(6, "tonnes"),
  11896. name: "Front",
  11897. image: {
  11898. source: "./media/characters/lyra-von-wulf/front.svg",
  11899. extra: 1,
  11900. bottom: 0.10
  11901. }
  11902. },
  11903. frontMecha: {
  11904. height: math.unit(12, "feet"),
  11905. weight: math.unit(12, "tonnes"),
  11906. name: "Front (Mecha)",
  11907. image: {
  11908. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11909. extra: 1,
  11910. bottom: 0.042
  11911. }
  11912. },
  11913. maw: {
  11914. height: math.unit(2.2, "feet"),
  11915. name: "Maw",
  11916. image: {
  11917. source: "./media/characters/lyra-von-wulf/maw.svg"
  11918. }
  11919. },
  11920. },
  11921. [
  11922. {
  11923. name: "Normal",
  11924. height: math.unit(12, "feet"),
  11925. default: true
  11926. },
  11927. {
  11928. name: "Classic",
  11929. height: math.unit(50, "feet")
  11930. },
  11931. {
  11932. name: "Macro",
  11933. height: math.unit(500, "feet")
  11934. },
  11935. {
  11936. name: "Megamacro",
  11937. height: math.unit(1, "mile")
  11938. },
  11939. {
  11940. name: "Gigamacro",
  11941. height: math.unit(400, "miles")
  11942. },
  11943. {
  11944. name: "Teramacro",
  11945. height: math.unit(22000, "miles")
  11946. },
  11947. {
  11948. name: "Solarmacro",
  11949. height: math.unit(8600000, "miles")
  11950. },
  11951. {
  11952. name: "Galactic",
  11953. height: math.unit(1057000, "lightyears")
  11954. },
  11955. ]
  11956. ))
  11957. characterMakers.push(() => makeCharacter(
  11958. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11959. {
  11960. front: {
  11961. height: math.unit(6 + 10 / 12, "feet"),
  11962. weight: math.unit(150, "lb"),
  11963. name: "Front",
  11964. image: {
  11965. source: "./media/characters/dixon/front.svg",
  11966. extra: 3361 / 3209,
  11967. bottom: 0.01
  11968. }
  11969. },
  11970. },
  11971. [
  11972. {
  11973. name: "Normal",
  11974. height: math.unit(6 + 10 / 12, "feet"),
  11975. default: true
  11976. },
  11977. {
  11978. name: "Big",
  11979. height: math.unit(12, "meters")
  11980. },
  11981. {
  11982. name: "Macro",
  11983. height: math.unit(500, "meters")
  11984. },
  11985. {
  11986. name: "Megamacro",
  11987. height: math.unit(2, "km")
  11988. },
  11989. ]
  11990. ))
  11991. characterMakers.push(() => makeCharacter(
  11992. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11993. {
  11994. front: {
  11995. height: math.unit(185, "cm"),
  11996. weight: math.unit(68, "kg"),
  11997. name: "Front",
  11998. image: {
  11999. source: "./media/characters/kauko/front.svg",
  12000. extra: 1455 / 1421,
  12001. bottom: 0.03
  12002. }
  12003. },
  12004. back: {
  12005. height: math.unit(185, "cm"),
  12006. weight: math.unit(68, "kg"),
  12007. name: "Back",
  12008. image: {
  12009. source: "./media/characters/kauko/back.svg",
  12010. extra: 1455 / 1421,
  12011. bottom: 0.004
  12012. }
  12013. },
  12014. },
  12015. [
  12016. {
  12017. name: "Normal",
  12018. height: math.unit(185, "cm"),
  12019. default: true
  12020. },
  12021. ]
  12022. ))
  12023. characterMakers.push(() => makeCharacter(
  12024. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12025. {
  12026. front: {
  12027. height: math.unit(6, "feet"),
  12028. weight: math.unit(150, "kg"),
  12029. name: "Front",
  12030. image: {
  12031. source: "./media/characters/varg/front.svg",
  12032. extra: 1108 / 1018,
  12033. bottom: 0.0375
  12034. }
  12035. },
  12036. },
  12037. [
  12038. {
  12039. name: "Normal",
  12040. height: math.unit(5, "meters")
  12041. },
  12042. {
  12043. name: "Macro",
  12044. height: math.unit(200, "meters")
  12045. },
  12046. {
  12047. name: "Megamacro",
  12048. height: math.unit(20, "kilometers")
  12049. },
  12050. {
  12051. name: "True Size",
  12052. height: math.unit(211, "km"),
  12053. default: true
  12054. },
  12055. {
  12056. name: "Gigamacro",
  12057. height: math.unit(1000, "km")
  12058. },
  12059. {
  12060. name: "Gigamacro+",
  12061. height: math.unit(8000, "km")
  12062. },
  12063. {
  12064. name: "Teramacro",
  12065. height: math.unit(1000000, "km")
  12066. },
  12067. ]
  12068. ))
  12069. characterMakers.push(() => makeCharacter(
  12070. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12071. {
  12072. front: {
  12073. height: math.unit(7 + 7 / 12, "feet"),
  12074. weight: math.unit(267, "lb"),
  12075. name: "Front",
  12076. image: {
  12077. source: "./media/characters/dayza/front.svg",
  12078. extra: 1262 / 1200,
  12079. bottom: 0.035
  12080. }
  12081. },
  12082. side: {
  12083. height: math.unit(7 + 7 / 12, "feet"),
  12084. weight: math.unit(267, "lb"),
  12085. name: "Side",
  12086. image: {
  12087. source: "./media/characters/dayza/side.svg",
  12088. extra: 1295 / 1245,
  12089. bottom: 0.05
  12090. }
  12091. },
  12092. back: {
  12093. height: math.unit(7 + 7 / 12, "feet"),
  12094. weight: math.unit(267, "lb"),
  12095. name: "Back",
  12096. image: {
  12097. source: "./media/characters/dayza/back.svg",
  12098. extra: 1241 / 1170
  12099. }
  12100. },
  12101. },
  12102. [
  12103. {
  12104. name: "Normal",
  12105. height: math.unit(7 + 7 / 12, "feet"),
  12106. default: true
  12107. },
  12108. {
  12109. name: "Macro",
  12110. height: math.unit(155, "feet")
  12111. },
  12112. ]
  12113. ))
  12114. characterMakers.push(() => makeCharacter(
  12115. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12116. {
  12117. front: {
  12118. height: math.unit(6 + 5 / 12, "feet"),
  12119. weight: math.unit(160, "lb"),
  12120. name: "Front",
  12121. image: {
  12122. source: "./media/characters/xanthos/front.svg",
  12123. extra: 1,
  12124. bottom: 0.04
  12125. }
  12126. },
  12127. back: {
  12128. height: math.unit(6 + 5 / 12, "feet"),
  12129. weight: math.unit(160, "lb"),
  12130. name: "Back",
  12131. image: {
  12132. source: "./media/characters/xanthos/back.svg",
  12133. extra: 1,
  12134. bottom: 0.03
  12135. }
  12136. },
  12137. hand: {
  12138. height: math.unit(0.928, "feet"),
  12139. name: "Hand",
  12140. image: {
  12141. source: "./media/characters/xanthos/hand.svg"
  12142. }
  12143. },
  12144. foot: {
  12145. height: math.unit(1.286, "feet"),
  12146. name: "Foot",
  12147. image: {
  12148. source: "./media/characters/xanthos/foot.svg"
  12149. }
  12150. },
  12151. },
  12152. [
  12153. {
  12154. name: "Normal",
  12155. height: math.unit(6 + 5 / 12, "feet"),
  12156. default: true
  12157. },
  12158. {
  12159. name: "Normal+",
  12160. height: math.unit(6, "meters")
  12161. },
  12162. {
  12163. name: "Macro",
  12164. height: math.unit(40, "feet")
  12165. },
  12166. {
  12167. name: "Macro+",
  12168. height: math.unit(200, "meters")
  12169. },
  12170. {
  12171. name: "Megamacro",
  12172. height: math.unit(20, "km")
  12173. },
  12174. {
  12175. name: "Megamacro+",
  12176. height: math.unit(100, "km")
  12177. },
  12178. ]
  12179. ))
  12180. characterMakers.push(() => makeCharacter(
  12181. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12182. {
  12183. front: {
  12184. height: math.unit(6 + 3 / 12, "feet"),
  12185. weight: math.unit(215, "lb"),
  12186. name: "Front",
  12187. image: {
  12188. source: "./media/characters/grynn/front.svg",
  12189. extra: 4627 / 4209,
  12190. bottom: 0.047
  12191. }
  12192. },
  12193. },
  12194. [
  12195. {
  12196. name: "Micro",
  12197. height: math.unit(6, "inches")
  12198. },
  12199. {
  12200. name: "Normal",
  12201. height: math.unit(6 + 3 / 12, "feet"),
  12202. default: true
  12203. },
  12204. {
  12205. name: "Big",
  12206. height: math.unit(104, "feet")
  12207. },
  12208. {
  12209. name: "Macro",
  12210. height: math.unit(944, "feet")
  12211. },
  12212. {
  12213. name: "Macro+",
  12214. height: math.unit(9480, "feet")
  12215. },
  12216. {
  12217. name: "Megamacro",
  12218. height: math.unit(78752, "feet")
  12219. },
  12220. {
  12221. name: "Megamacro+",
  12222. height: math.unit(630128, "feet")
  12223. },
  12224. {
  12225. name: "Megamacro++",
  12226. height: math.unit(3150695, "feet")
  12227. },
  12228. ]
  12229. ))
  12230. characterMakers.push(() => makeCharacter(
  12231. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12232. {
  12233. front: {
  12234. height: math.unit(7 + 5 / 12, "feet"),
  12235. weight: math.unit(450, "lb"),
  12236. name: "Front",
  12237. image: {
  12238. source: "./media/characters/mocha-aura/front.svg",
  12239. extra: 1907 / 1817,
  12240. bottom: 0.04
  12241. }
  12242. },
  12243. back: {
  12244. height: math.unit(7 + 5 / 12, "feet"),
  12245. weight: math.unit(450, "lb"),
  12246. name: "Back",
  12247. image: {
  12248. source: "./media/characters/mocha-aura/back.svg",
  12249. extra: 1900 / 1825,
  12250. bottom: 0.045
  12251. }
  12252. },
  12253. },
  12254. [
  12255. {
  12256. name: "Nano",
  12257. height: math.unit(1, "nm")
  12258. },
  12259. {
  12260. name: "Megamicro",
  12261. height: math.unit(1, "mm")
  12262. },
  12263. {
  12264. name: "Micro",
  12265. height: math.unit(3, "inches")
  12266. },
  12267. {
  12268. name: "Normal",
  12269. height: math.unit(7 + 5 / 12, "feet"),
  12270. default: true
  12271. },
  12272. {
  12273. name: "Macro",
  12274. height: math.unit(30, "feet")
  12275. },
  12276. {
  12277. name: "Megamacro",
  12278. height: math.unit(3500, "feet")
  12279. },
  12280. {
  12281. name: "Teramacro",
  12282. height: math.unit(500000, "miles")
  12283. },
  12284. {
  12285. name: "Petamacro",
  12286. height: math.unit(50000000000000000, "parsecs")
  12287. },
  12288. ]
  12289. ))
  12290. characterMakers.push(() => makeCharacter(
  12291. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12292. {
  12293. front: {
  12294. height: math.unit(6, "feet"),
  12295. weight: math.unit(150, "lb"),
  12296. name: "Front",
  12297. image: {
  12298. source: "./media/characters/ilisha-devya/front.svg",
  12299. extra: 1,
  12300. bottom: 0.175
  12301. }
  12302. },
  12303. back: {
  12304. height: math.unit(6, "feet"),
  12305. weight: math.unit(150, "lb"),
  12306. name: "Back",
  12307. image: {
  12308. source: "./media/characters/ilisha-devya/back.svg",
  12309. extra: 1,
  12310. bottom: 0.015
  12311. }
  12312. },
  12313. },
  12314. [
  12315. {
  12316. name: "Macro",
  12317. height: math.unit(500, "feet"),
  12318. default: true
  12319. },
  12320. {
  12321. name: "Megamacro",
  12322. height: math.unit(10, "miles")
  12323. },
  12324. {
  12325. name: "Gigamacro",
  12326. height: math.unit(100000, "miles")
  12327. },
  12328. {
  12329. name: "Examacro",
  12330. height: math.unit(1e9, "lightyears")
  12331. },
  12332. {
  12333. name: "Omniversal",
  12334. height: math.unit(1e33, "lightyears")
  12335. },
  12336. {
  12337. name: "Beyond Infinite",
  12338. height: math.unit(1e100, "lightyears")
  12339. },
  12340. ]
  12341. ))
  12342. characterMakers.push(() => makeCharacter(
  12343. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12344. {
  12345. Side: {
  12346. height: math.unit(6, "feet"),
  12347. weight: math.unit(150, "lb"),
  12348. name: "Side",
  12349. image: {
  12350. source: "./media/characters/mira/side.svg",
  12351. extra: 900 / 799,
  12352. bottom: 0.02
  12353. }
  12354. },
  12355. },
  12356. [
  12357. {
  12358. name: "Human Size",
  12359. height: math.unit(6, "feet")
  12360. },
  12361. {
  12362. name: "Macro",
  12363. height: math.unit(100, "feet"),
  12364. default: true
  12365. },
  12366. {
  12367. name: "Megamacro",
  12368. height: math.unit(10, "miles")
  12369. },
  12370. {
  12371. name: "Gigamacro",
  12372. height: math.unit(25000, "miles")
  12373. },
  12374. {
  12375. name: "Teramacro",
  12376. height: math.unit(300, "AU")
  12377. },
  12378. {
  12379. name: "Full Size",
  12380. height: math.unit(4.5e10, "lightyears")
  12381. },
  12382. ]
  12383. ))
  12384. characterMakers.push(() => makeCharacter(
  12385. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12386. {
  12387. front: {
  12388. height: math.unit(6, "feet"),
  12389. weight: math.unit(150, "lb"),
  12390. name: "Front",
  12391. image: {
  12392. source: "./media/characters/holly/front.svg",
  12393. extra: 639 / 606
  12394. }
  12395. },
  12396. back: {
  12397. height: math.unit(6, "feet"),
  12398. weight: math.unit(150, "lb"),
  12399. name: "Back",
  12400. image: {
  12401. source: "./media/characters/holly/back.svg",
  12402. extra: 623 / 598
  12403. }
  12404. },
  12405. frontWorking: {
  12406. height: math.unit(6, "feet"),
  12407. weight: math.unit(150, "lb"),
  12408. name: "Front (Working)",
  12409. image: {
  12410. source: "./media/characters/holly/front-working.svg",
  12411. extra: 607 / 577,
  12412. bottom: 0.048
  12413. }
  12414. },
  12415. },
  12416. [
  12417. {
  12418. name: "Normal",
  12419. height: math.unit(12 + 3 / 12, "feet"),
  12420. default: true
  12421. },
  12422. ]
  12423. ))
  12424. characterMakers.push(() => makeCharacter(
  12425. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12426. {
  12427. front: {
  12428. height: math.unit(6, "feet"),
  12429. weight: math.unit(150, "lb"),
  12430. name: "Front",
  12431. image: {
  12432. source: "./media/characters/porter/front.svg",
  12433. extra: 1,
  12434. bottom: 0.01
  12435. }
  12436. },
  12437. frontRobes: {
  12438. height: math.unit(6, "feet"),
  12439. weight: math.unit(150, "lb"),
  12440. name: "Front (Robes)",
  12441. image: {
  12442. source: "./media/characters/porter/front-robes.svg",
  12443. extra: 1.01,
  12444. bottom: 0.01
  12445. }
  12446. },
  12447. },
  12448. [
  12449. {
  12450. name: "Normal",
  12451. height: math.unit(11 + 9 / 12, "feet"),
  12452. default: true
  12453. },
  12454. ]
  12455. ))
  12456. characterMakers.push(() => makeCharacter(
  12457. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12458. {
  12459. legendary: {
  12460. height: math.unit(6, "feet"),
  12461. weight: math.unit(150, "lb"),
  12462. name: "Legendary",
  12463. image: {
  12464. source: "./media/characters/lucy/legendary.svg",
  12465. extra: 1355 / 1100,
  12466. bottom: 0.045
  12467. }
  12468. },
  12469. },
  12470. [
  12471. {
  12472. name: "Legendary",
  12473. height: math.unit(86882 * 2, "miles"),
  12474. default: true
  12475. },
  12476. ]
  12477. ))
  12478. characterMakers.push(() => makeCharacter(
  12479. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12480. {
  12481. front: {
  12482. height: math.unit(6, "feet"),
  12483. weight: math.unit(150, "lb"),
  12484. name: "Front",
  12485. image: {
  12486. source: "./media/characters/drusilla/front.svg",
  12487. extra: 678 / 635,
  12488. bottom: 0.03
  12489. }
  12490. },
  12491. back: {
  12492. height: math.unit(6, "feet"),
  12493. weight: math.unit(150, "lb"),
  12494. name: "Back",
  12495. image: {
  12496. source: "./media/characters/drusilla/back.svg",
  12497. extra: 678 / 635,
  12498. bottom: 0.005
  12499. }
  12500. },
  12501. },
  12502. [
  12503. {
  12504. name: "Macro",
  12505. height: math.unit(100, "feet")
  12506. },
  12507. {
  12508. name: "Canon Height",
  12509. height: math.unit(2000, "feet"),
  12510. default: true
  12511. },
  12512. ]
  12513. ))
  12514. characterMakers.push(() => makeCharacter(
  12515. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12516. {
  12517. front: {
  12518. height: math.unit(6, "feet"),
  12519. weight: math.unit(180, "lb"),
  12520. name: "Front",
  12521. image: {
  12522. source: "./media/characters/renard-thatch/front.svg",
  12523. extra: 2411 / 2275,
  12524. bottom: 0.01
  12525. }
  12526. },
  12527. frontPosing: {
  12528. height: math.unit(6, "feet"),
  12529. weight: math.unit(180, "lb"),
  12530. name: "Front (Posing)",
  12531. image: {
  12532. source: "./media/characters/renard-thatch/front-posing.svg",
  12533. extra: 2381 / 2261,
  12534. bottom: 0.01
  12535. }
  12536. },
  12537. back: {
  12538. height: math.unit(6, "feet"),
  12539. weight: math.unit(180, "lb"),
  12540. name: "Back",
  12541. image: {
  12542. source: "./media/characters/renard-thatch/back.svg",
  12543. extra: 2428 / 2288
  12544. }
  12545. },
  12546. },
  12547. [
  12548. {
  12549. name: "Micro",
  12550. height: math.unit(3, "inches")
  12551. },
  12552. {
  12553. name: "Default",
  12554. height: math.unit(6, "feet"),
  12555. default: true
  12556. },
  12557. {
  12558. name: "Macro",
  12559. height: math.unit(75, "feet")
  12560. },
  12561. ]
  12562. ))
  12563. characterMakers.push(() => makeCharacter(
  12564. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12565. {
  12566. front: {
  12567. height: math.unit(1450, "feet"),
  12568. weight: math.unit(1.21e6, "tons"),
  12569. name: "Front",
  12570. image: {
  12571. source: "./media/characters/sekvra/front.svg",
  12572. extra: 1,
  12573. bottom: 0.03
  12574. }
  12575. },
  12576. frontClothed: {
  12577. height: math.unit(1450, "feet"),
  12578. weight: math.unit(1.21e6, "tons"),
  12579. name: "Front (Clothed)",
  12580. image: {
  12581. source: "./media/characters/sekvra/front-clothed.svg",
  12582. extra: 1,
  12583. bottom: 0.03
  12584. }
  12585. },
  12586. side: {
  12587. height: math.unit(1450, "feet"),
  12588. weight: math.unit(1.21e6, "tons"),
  12589. name: "Side",
  12590. image: {
  12591. source: "./media/characters/sekvra/side.svg",
  12592. extra: 1,
  12593. bottom: 0.025
  12594. }
  12595. },
  12596. back: {
  12597. height: math.unit(1450, "feet"),
  12598. weight: math.unit(1.21e6, "tons"),
  12599. name: "Back",
  12600. image: {
  12601. source: "./media/characters/sekvra/back.svg",
  12602. extra: 1,
  12603. bottom: 0.005
  12604. }
  12605. },
  12606. },
  12607. [
  12608. {
  12609. name: "Macro",
  12610. height: math.unit(1450, "feet"),
  12611. default: true
  12612. },
  12613. {
  12614. name: "Megamacro",
  12615. height: math.unit(15000, "feet")
  12616. },
  12617. ]
  12618. ))
  12619. characterMakers.push(() => makeCharacter(
  12620. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12621. {
  12622. front: {
  12623. height: math.unit(6, "feet"),
  12624. weight: math.unit(150, "lb"),
  12625. name: "Front",
  12626. image: {
  12627. source: "./media/characters/carmine/front.svg",
  12628. extra: 1,
  12629. bottom: 0.035
  12630. }
  12631. },
  12632. frontArmor: {
  12633. height: math.unit(6, "feet"),
  12634. weight: math.unit(150, "lb"),
  12635. name: "Front (Armor)",
  12636. image: {
  12637. source: "./media/characters/carmine/front-armor.svg",
  12638. extra: 1,
  12639. bottom: 0.035
  12640. }
  12641. },
  12642. },
  12643. [
  12644. {
  12645. name: "Large",
  12646. height: math.unit(1, "mile")
  12647. },
  12648. {
  12649. name: "Huge",
  12650. height: math.unit(40, "miles"),
  12651. default: true
  12652. },
  12653. {
  12654. name: "Colossal",
  12655. height: math.unit(2500, "miles")
  12656. },
  12657. ]
  12658. ))
  12659. characterMakers.push(() => makeCharacter(
  12660. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12661. {
  12662. front: {
  12663. height: math.unit(6, "feet"),
  12664. weight: math.unit(150, "lb"),
  12665. name: "Front",
  12666. image: {
  12667. source: "./media/characters/elyssia/front.svg",
  12668. extra: 2201 / 2035,
  12669. bottom: 0.05
  12670. }
  12671. },
  12672. frontClothed: {
  12673. height: math.unit(6, "feet"),
  12674. weight: math.unit(150, "lb"),
  12675. name: "Front (Clothed)",
  12676. image: {
  12677. source: "./media/characters/elyssia/front-clothed.svg",
  12678. extra: 2201 / 2035,
  12679. bottom: 0.05
  12680. }
  12681. },
  12682. back: {
  12683. height: math.unit(6, "feet"),
  12684. weight: math.unit(150, "lb"),
  12685. name: "Back",
  12686. image: {
  12687. source: "./media/characters/elyssia/back.svg",
  12688. extra: 2201 / 2035,
  12689. bottom: 0.013
  12690. }
  12691. },
  12692. },
  12693. [
  12694. {
  12695. name: "Smaller",
  12696. height: math.unit(150, "feet")
  12697. },
  12698. {
  12699. name: "Standard",
  12700. height: math.unit(1400, "feet"),
  12701. default: true
  12702. },
  12703. {
  12704. name: "Distracted",
  12705. height: math.unit(15000, "feet")
  12706. },
  12707. ]
  12708. ))
  12709. characterMakers.push(() => makeCharacter(
  12710. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12711. {
  12712. front: {
  12713. height: math.unit(7 + 4 / 12, "feet"),
  12714. weight: math.unit(500, "lb"),
  12715. name: "Front",
  12716. image: {
  12717. source: "./media/characters/geno-maxwell/front.svg",
  12718. extra: 2207 / 2040,
  12719. bottom: 0.015
  12720. }
  12721. },
  12722. },
  12723. [
  12724. {
  12725. name: "Micro",
  12726. height: math.unit(3, "inches")
  12727. },
  12728. {
  12729. name: "Normal",
  12730. height: math.unit(7 + 4 / 12, "feet"),
  12731. default: true
  12732. },
  12733. {
  12734. name: "Macro",
  12735. height: math.unit(220, "feet")
  12736. },
  12737. {
  12738. name: "Megamacro",
  12739. height: math.unit(11, "miles")
  12740. },
  12741. ]
  12742. ))
  12743. characterMakers.push(() => makeCharacter(
  12744. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12745. {
  12746. front: {
  12747. height: math.unit(7 + 4 / 12, "feet"),
  12748. weight: math.unit(500, "lb"),
  12749. name: "Front",
  12750. image: {
  12751. source: "./media/characters/regena-maxwell/front.svg",
  12752. extra: 3115 / 2770,
  12753. bottom: 0.02
  12754. }
  12755. },
  12756. },
  12757. [
  12758. {
  12759. name: "Normal",
  12760. height: math.unit(7 + 4 / 12, "feet"),
  12761. default: true
  12762. },
  12763. {
  12764. name: "Macro",
  12765. height: math.unit(220, "feet")
  12766. },
  12767. {
  12768. name: "Megamacro",
  12769. height: math.unit(11, "miles")
  12770. },
  12771. ]
  12772. ))
  12773. characterMakers.push(() => makeCharacter(
  12774. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12775. {
  12776. front: {
  12777. height: math.unit(6, "feet"),
  12778. weight: math.unit(150, "lb"),
  12779. name: "Front",
  12780. image: {
  12781. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12782. extra: 860 / 690,
  12783. bottom: 0.03
  12784. }
  12785. },
  12786. },
  12787. [
  12788. {
  12789. name: "Normal",
  12790. height: math.unit(1.7, "meters"),
  12791. default: true
  12792. },
  12793. ]
  12794. ))
  12795. characterMakers.push(() => makeCharacter(
  12796. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12797. {
  12798. front: {
  12799. height: math.unit(6, "feet"),
  12800. weight: math.unit(150, "lb"),
  12801. name: "Front",
  12802. image: {
  12803. source: "./media/characters/quilly/front.svg",
  12804. extra: 890 / 776
  12805. }
  12806. },
  12807. },
  12808. [
  12809. {
  12810. name: "Gigamacro",
  12811. height: math.unit(404090, "miles"),
  12812. default: true
  12813. },
  12814. ]
  12815. ))
  12816. characterMakers.push(() => makeCharacter(
  12817. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12818. {
  12819. front: {
  12820. height: math.unit(7 + 8 / 12, "feet"),
  12821. weight: math.unit(350, "lb"),
  12822. name: "Front",
  12823. image: {
  12824. source: "./media/characters/tempest/front.svg",
  12825. extra: 1175 / 1086,
  12826. bottom: 0.02
  12827. }
  12828. },
  12829. },
  12830. [
  12831. {
  12832. name: "Normal",
  12833. height: math.unit(7 + 8 / 12, "feet"),
  12834. default: true
  12835. },
  12836. ]
  12837. ))
  12838. characterMakers.push(() => makeCharacter(
  12839. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12840. {
  12841. side: {
  12842. height: math.unit(4 + 5 / 12, "feet"),
  12843. weight: math.unit(80, "lb"),
  12844. name: "Side",
  12845. image: {
  12846. source: "./media/characters/rodger/side.svg",
  12847. extra: 1235 / 1118
  12848. }
  12849. },
  12850. },
  12851. [
  12852. {
  12853. name: "Micro",
  12854. height: math.unit(1, "inch")
  12855. },
  12856. {
  12857. name: "Normal",
  12858. height: math.unit(4 + 5 / 12, "feet"),
  12859. default: true
  12860. },
  12861. {
  12862. name: "Macro",
  12863. height: math.unit(120, "feet")
  12864. },
  12865. ]
  12866. ))
  12867. characterMakers.push(() => makeCharacter(
  12868. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12869. {
  12870. front: {
  12871. height: math.unit(6, "feet"),
  12872. weight: math.unit(150, "lb"),
  12873. name: "Front",
  12874. image: {
  12875. source: "./media/characters/danyel/front.svg",
  12876. extra: 1185 / 1123,
  12877. bottom: 0.05
  12878. }
  12879. },
  12880. },
  12881. [
  12882. {
  12883. name: "Shrunken",
  12884. height: math.unit(0.5, "mm")
  12885. },
  12886. {
  12887. name: "Micro",
  12888. height: math.unit(1, "mm"),
  12889. default: true
  12890. },
  12891. {
  12892. name: "Upsized",
  12893. height: math.unit(5 + 5 / 12, "feet")
  12894. },
  12895. ]
  12896. ))
  12897. characterMakers.push(() => makeCharacter(
  12898. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12899. {
  12900. front: {
  12901. height: math.unit(5 + 6 / 12, "feet"),
  12902. weight: math.unit(200, "lb"),
  12903. name: "Front",
  12904. image: {
  12905. source: "./media/characters/vivian-bijoux/front.svg",
  12906. extra: 1,
  12907. bottom: 0.072
  12908. }
  12909. },
  12910. },
  12911. [
  12912. {
  12913. name: "Normal",
  12914. height: math.unit(5 + 6 / 12, "feet"),
  12915. default: true
  12916. },
  12917. {
  12918. name: "Bad Dream",
  12919. height: math.unit(500, "feet")
  12920. },
  12921. {
  12922. name: "Nightmare",
  12923. height: math.unit(500, "miles")
  12924. },
  12925. ]
  12926. ))
  12927. characterMakers.push(() => makeCharacter(
  12928. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12929. {
  12930. front: {
  12931. height: math.unit(6 + 1 / 12, "feet"),
  12932. weight: math.unit(260, "lb"),
  12933. name: "Front",
  12934. image: {
  12935. source: "./media/characters/zeta/front.svg",
  12936. extra: 1968 / 1889,
  12937. bottom: 0.06
  12938. }
  12939. },
  12940. back: {
  12941. height: math.unit(6 + 1 / 12, "feet"),
  12942. weight: math.unit(260, "lb"),
  12943. name: "Back",
  12944. image: {
  12945. source: "./media/characters/zeta/back.svg",
  12946. extra: 1944 / 1858,
  12947. bottom: 0.03
  12948. }
  12949. },
  12950. hand: {
  12951. height: math.unit(1.112, "feet"),
  12952. name: "Hand",
  12953. image: {
  12954. source: "./media/characters/zeta/hand.svg"
  12955. }
  12956. },
  12957. foot: {
  12958. height: math.unit(1.48, "feet"),
  12959. name: "Foot",
  12960. image: {
  12961. source: "./media/characters/zeta/foot.svg"
  12962. }
  12963. },
  12964. },
  12965. [
  12966. {
  12967. name: "Micro",
  12968. height: math.unit(6, "inches")
  12969. },
  12970. {
  12971. name: "Normal",
  12972. height: math.unit(6 + 1 / 12, "feet"),
  12973. default: true
  12974. },
  12975. {
  12976. name: "Macro",
  12977. height: math.unit(20, "feet")
  12978. },
  12979. ]
  12980. ))
  12981. characterMakers.push(() => makeCharacter(
  12982. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12983. {
  12984. front: {
  12985. height: math.unit(6, "feet"),
  12986. weight: math.unit(150, "lb"),
  12987. name: "Front",
  12988. image: {
  12989. source: "./media/characters/jamie-larsen/front.svg",
  12990. extra: 962 / 933,
  12991. bottom: 0.02
  12992. }
  12993. },
  12994. back: {
  12995. height: math.unit(6, "feet"),
  12996. weight: math.unit(150, "lb"),
  12997. name: "Back",
  12998. image: {
  12999. source: "./media/characters/jamie-larsen/back.svg",
  13000. extra: 997 / 946
  13001. }
  13002. },
  13003. },
  13004. [
  13005. {
  13006. name: "Macro",
  13007. height: math.unit(28 + 7 / 12, "feet"),
  13008. default: true
  13009. },
  13010. {
  13011. name: "Macro+",
  13012. height: math.unit(180, "feet")
  13013. },
  13014. {
  13015. name: "Megamacro",
  13016. height: math.unit(10, "miles")
  13017. },
  13018. {
  13019. name: "Gigamacro",
  13020. height: math.unit(200000, "miles")
  13021. },
  13022. ]
  13023. ))
  13024. characterMakers.push(() => makeCharacter(
  13025. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13026. {
  13027. front: {
  13028. height: math.unit(6, "feet"),
  13029. weight: math.unit(120, "lb"),
  13030. name: "Front",
  13031. image: {
  13032. source: "./media/characters/vance/front.svg",
  13033. extra: 1980 / 1890,
  13034. bottom: 0.09
  13035. }
  13036. },
  13037. back: {
  13038. height: math.unit(6, "feet"),
  13039. weight: math.unit(120, "lb"),
  13040. name: "Back",
  13041. image: {
  13042. source: "./media/characters/vance/back.svg",
  13043. extra: 2081 / 1994,
  13044. bottom: 0.014
  13045. }
  13046. },
  13047. hand: {
  13048. height: math.unit(0.88, "feet"),
  13049. name: "Hand",
  13050. image: {
  13051. source: "./media/characters/vance/hand.svg"
  13052. }
  13053. },
  13054. foot: {
  13055. height: math.unit(0.64, "feet"),
  13056. name: "Foot",
  13057. image: {
  13058. source: "./media/characters/vance/foot.svg"
  13059. }
  13060. },
  13061. },
  13062. [
  13063. {
  13064. name: "Small",
  13065. height: math.unit(90, "feet"),
  13066. default: true
  13067. },
  13068. {
  13069. name: "Macro",
  13070. height: math.unit(100, "meters")
  13071. },
  13072. {
  13073. name: "Megamacro",
  13074. height: math.unit(15, "miles")
  13075. },
  13076. ]
  13077. ))
  13078. characterMakers.push(() => makeCharacter(
  13079. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13080. {
  13081. front: {
  13082. height: math.unit(6, "feet"),
  13083. weight: math.unit(180, "lb"),
  13084. name: "Front",
  13085. image: {
  13086. source: "./media/characters/xochitl/front.svg",
  13087. extra: 2297 / 2261,
  13088. bottom: 0.065
  13089. }
  13090. },
  13091. back: {
  13092. height: math.unit(6, "feet"),
  13093. weight: math.unit(180, "lb"),
  13094. name: "Back",
  13095. image: {
  13096. source: "./media/characters/xochitl/back.svg",
  13097. extra: 2386 / 2354,
  13098. bottom: 0.01
  13099. }
  13100. },
  13101. foot: {
  13102. height: math.unit(6 / 5 * 1.15, "feet"),
  13103. weight: math.unit(150, "lb"),
  13104. name: "Foot",
  13105. image: {
  13106. source: "./media/characters/xochitl/foot.svg"
  13107. }
  13108. },
  13109. },
  13110. [
  13111. {
  13112. name: "Macro",
  13113. height: math.unit(80, "feet")
  13114. },
  13115. {
  13116. name: "Macro+",
  13117. height: math.unit(400, "feet"),
  13118. default: true
  13119. },
  13120. {
  13121. name: "Gigamacro",
  13122. height: math.unit(80000, "miles")
  13123. },
  13124. {
  13125. name: "Gigamacro+",
  13126. height: math.unit(400000, "miles")
  13127. },
  13128. {
  13129. name: "Teramacro",
  13130. height: math.unit(300, "AU")
  13131. },
  13132. ]
  13133. ))
  13134. characterMakers.push(() => makeCharacter(
  13135. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13136. {
  13137. front: {
  13138. height: math.unit(6, "feet"),
  13139. weight: math.unit(150, "lb"),
  13140. name: "Front",
  13141. image: {
  13142. source: "./media/characters/vincent/front.svg",
  13143. extra: 1130 / 1080,
  13144. bottom: 0.055
  13145. }
  13146. },
  13147. beak: {
  13148. height: math.unit(6 * 0.1, "feet"),
  13149. name: "Beak",
  13150. image: {
  13151. source: "./media/characters/vincent/beak.svg"
  13152. }
  13153. },
  13154. hand: {
  13155. height: math.unit(6 * 0.85, "feet"),
  13156. weight: math.unit(150, "lb"),
  13157. name: "Hand",
  13158. image: {
  13159. source: "./media/characters/vincent/hand.svg"
  13160. }
  13161. },
  13162. foot: {
  13163. height: math.unit(6 * 0.19, "feet"),
  13164. weight: math.unit(150, "lb"),
  13165. name: "Foot",
  13166. image: {
  13167. source: "./media/characters/vincent/foot.svg"
  13168. }
  13169. },
  13170. },
  13171. [
  13172. {
  13173. name: "Base",
  13174. height: math.unit(6 + 5 / 12, "feet"),
  13175. default: true
  13176. },
  13177. {
  13178. name: "Macro",
  13179. height: math.unit(300, "feet")
  13180. },
  13181. {
  13182. name: "Megamacro",
  13183. height: math.unit(2, "miles")
  13184. },
  13185. {
  13186. name: "Gigamacro",
  13187. height: math.unit(1000, "miles")
  13188. },
  13189. ]
  13190. ))
  13191. characterMakers.push(() => makeCharacter(
  13192. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  13193. {
  13194. front: {
  13195. height: math.unit(6 + 2 / 12, "feet"),
  13196. weight: math.unit(265, "lb"),
  13197. name: "Front",
  13198. image: {
  13199. source: "./media/characters/jay/front.svg",
  13200. extra: 1510 / 1430,
  13201. bottom: 0.042
  13202. }
  13203. },
  13204. back: {
  13205. height: math.unit(6 + 2 / 12, "feet"),
  13206. weight: math.unit(265, "lb"),
  13207. name: "Back",
  13208. image: {
  13209. source: "./media/characters/jay/back.svg",
  13210. extra: 1510 / 1430,
  13211. bottom: 0.025
  13212. }
  13213. },
  13214. clothed: {
  13215. height: math.unit(6 + 2 / 12, "feet"),
  13216. weight: math.unit(265, "lb"),
  13217. name: "Front (Clothed)",
  13218. image: {
  13219. source: "./media/characters/jay/clothed.svg",
  13220. extra: 744 / 699,
  13221. bottom: 0.043
  13222. }
  13223. },
  13224. head: {
  13225. height: math.unit(1.772, "feet"),
  13226. name: "Head",
  13227. image: {
  13228. source: "./media/characters/jay/head.svg"
  13229. }
  13230. },
  13231. sizeRay: {
  13232. height: math.unit(1.331, "feet"),
  13233. name: "Size Ray",
  13234. image: {
  13235. source: "./media/characters/jay/size-ray.svg"
  13236. }
  13237. },
  13238. },
  13239. [
  13240. {
  13241. name: "Micro",
  13242. height: math.unit(1, "inch")
  13243. },
  13244. {
  13245. name: "Normal",
  13246. height: math.unit(6 + 2 / 12, "feet"),
  13247. default: true
  13248. },
  13249. {
  13250. name: "Macro",
  13251. height: math.unit(1, "mile")
  13252. },
  13253. {
  13254. name: "Megamacro",
  13255. height: math.unit(100, "miles")
  13256. },
  13257. ]
  13258. ))
  13259. characterMakers.push(() => makeCharacter(
  13260. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13261. {
  13262. front: {
  13263. height: math.unit(2, "meters"),
  13264. weight: math.unit(500, "kg"),
  13265. name: "Front",
  13266. image: {
  13267. source: "./media/characters/coatl/front.svg",
  13268. extra: 3948 / 3500,
  13269. bottom: 0.082
  13270. }
  13271. },
  13272. },
  13273. [
  13274. {
  13275. name: "Normal",
  13276. height: math.unit(4, "meters")
  13277. },
  13278. {
  13279. name: "Macro",
  13280. height: math.unit(100, "meters"),
  13281. default: true
  13282. },
  13283. {
  13284. name: "Macro+",
  13285. height: math.unit(300, "meters")
  13286. },
  13287. {
  13288. name: "Megamacro",
  13289. height: math.unit(3, "gigameters")
  13290. },
  13291. {
  13292. name: "Megamacro+",
  13293. height: math.unit(300, "terameters")
  13294. },
  13295. {
  13296. name: "Megamacro++",
  13297. height: math.unit(3, "lightyears")
  13298. },
  13299. ]
  13300. ))
  13301. characterMakers.push(() => makeCharacter(
  13302. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13303. {
  13304. front: {
  13305. height: math.unit(6, "feet"),
  13306. weight: math.unit(50, "kg"),
  13307. name: "front",
  13308. image: {
  13309. source: "./media/characters/shiroryu/front.svg",
  13310. extra: 1990 / 1935
  13311. }
  13312. },
  13313. },
  13314. [
  13315. {
  13316. name: "Mortal Mingling",
  13317. height: math.unit(3, "meters")
  13318. },
  13319. {
  13320. name: "Kaiju-ish",
  13321. height: math.unit(250, "meters")
  13322. },
  13323. {
  13324. name: "Somewhat Godly",
  13325. height: math.unit(400, "km"),
  13326. default: true
  13327. },
  13328. {
  13329. name: "Planetary",
  13330. height: math.unit(300, "megameters")
  13331. },
  13332. {
  13333. name: "Galaxy-dwarfing",
  13334. height: math.unit(450, "kiloparsecs")
  13335. },
  13336. {
  13337. name: "Universe Eater",
  13338. height: math.unit(150, "gigaparsecs")
  13339. },
  13340. {
  13341. name: "Almost Immeasurable",
  13342. height: math.unit(1.3e266, "yottaparsecs")
  13343. },
  13344. ]
  13345. ))
  13346. characterMakers.push(() => makeCharacter(
  13347. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13348. {
  13349. front: {
  13350. height: math.unit(6, "feet"),
  13351. weight: math.unit(150, "lb"),
  13352. name: "Front",
  13353. image: {
  13354. source: "./media/characters/umeko/front.svg",
  13355. extra: 1,
  13356. bottom: 0.019
  13357. }
  13358. },
  13359. frontArmored: {
  13360. height: math.unit(6, "feet"),
  13361. weight: math.unit(150, "lb"),
  13362. name: "Front (Armored)",
  13363. image: {
  13364. source: "./media/characters/umeko/front-armored.svg",
  13365. extra: 1,
  13366. bottom: 0.021
  13367. }
  13368. },
  13369. },
  13370. [
  13371. {
  13372. name: "Macro",
  13373. height: math.unit(220, "feet"),
  13374. default: true
  13375. },
  13376. {
  13377. name: "Guardian Dragon",
  13378. height: math.unit(50, "miles")
  13379. },
  13380. {
  13381. name: "Cosmic",
  13382. height: math.unit(800000, "miles")
  13383. },
  13384. ]
  13385. ))
  13386. characterMakers.push(() => makeCharacter(
  13387. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13388. {
  13389. front: {
  13390. height: math.unit(6, "feet"),
  13391. weight: math.unit(150, "lb"),
  13392. name: "Front",
  13393. image: {
  13394. source: "./media/characters/cassidy/front.svg",
  13395. extra: 1,
  13396. bottom: 0.043
  13397. }
  13398. },
  13399. },
  13400. [
  13401. {
  13402. name: "Canon Height",
  13403. height: math.unit(120, "feet"),
  13404. default: true
  13405. },
  13406. {
  13407. name: "Macro+",
  13408. height: math.unit(400, "feet")
  13409. },
  13410. {
  13411. name: "Macro++",
  13412. height: math.unit(4000, "feet")
  13413. },
  13414. {
  13415. name: "Megamacro",
  13416. height: math.unit(3, "miles")
  13417. },
  13418. ]
  13419. ))
  13420. characterMakers.push(() => makeCharacter(
  13421. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13422. {
  13423. front: {
  13424. height: math.unit(6, "feet"),
  13425. weight: math.unit(150, "lb"),
  13426. name: "Front",
  13427. image: {
  13428. source: "./media/characters/isaac/front.svg",
  13429. extra: 896 / 815,
  13430. bottom: 0.11
  13431. }
  13432. },
  13433. },
  13434. [
  13435. {
  13436. name: "Human Size",
  13437. height: math.unit(8, "feet"),
  13438. default: true
  13439. },
  13440. {
  13441. name: "Macro",
  13442. height: math.unit(400, "feet")
  13443. },
  13444. {
  13445. name: "Megamacro",
  13446. height: math.unit(50, "miles")
  13447. },
  13448. {
  13449. name: "Canon Height",
  13450. height: math.unit(200, "AU")
  13451. },
  13452. ]
  13453. ))
  13454. characterMakers.push(() => makeCharacter(
  13455. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13456. {
  13457. front: {
  13458. height: math.unit(6, "feet"),
  13459. weight: math.unit(72, "kg"),
  13460. name: "Front",
  13461. image: {
  13462. source: "./media/characters/sleekit/front.svg",
  13463. extra: 4693 / 4487,
  13464. bottom: 0.012
  13465. }
  13466. },
  13467. },
  13468. [
  13469. {
  13470. name: "Minimum Height",
  13471. height: math.unit(10, "meters")
  13472. },
  13473. {
  13474. name: "Smaller",
  13475. height: math.unit(25, "meters")
  13476. },
  13477. {
  13478. name: "Larger",
  13479. height: math.unit(38, "meters"),
  13480. default: true
  13481. },
  13482. {
  13483. name: "Maximum height",
  13484. height: math.unit(100, "meters")
  13485. },
  13486. ]
  13487. ))
  13488. characterMakers.push(() => makeCharacter(
  13489. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13490. {
  13491. front: {
  13492. height: math.unit(6, "feet"),
  13493. weight: math.unit(150, "lb"),
  13494. name: "Front",
  13495. image: {
  13496. source: "./media/characters/nillia/front.svg",
  13497. extra: 2195 / 2037,
  13498. bottom: 0.005
  13499. }
  13500. },
  13501. back: {
  13502. height: math.unit(6, "feet"),
  13503. weight: math.unit(150, "lb"),
  13504. name: "Back",
  13505. image: {
  13506. source: "./media/characters/nillia/back.svg",
  13507. extra: 2195 / 2037,
  13508. bottom: 0.005
  13509. }
  13510. },
  13511. },
  13512. [
  13513. {
  13514. name: "Canon Height",
  13515. height: math.unit(489, "feet"),
  13516. default: true
  13517. }
  13518. ]
  13519. ))
  13520. characterMakers.push(() => makeCharacter(
  13521. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13522. {
  13523. front: {
  13524. height: math.unit(6, "feet"),
  13525. weight: math.unit(150, "lb"),
  13526. name: "Front",
  13527. image: {
  13528. source: "./media/characters/mesmyriza/front.svg",
  13529. extra: 2067 / 1784,
  13530. bottom: 0.035
  13531. }
  13532. },
  13533. foot: {
  13534. height: math.unit(6 / (250 / 35), "feet"),
  13535. name: "Foot",
  13536. image: {
  13537. source: "./media/characters/mesmyriza/foot.svg"
  13538. }
  13539. },
  13540. },
  13541. [
  13542. {
  13543. name: "Macro",
  13544. height: math.unit(457, "meters"),
  13545. default: true
  13546. },
  13547. {
  13548. name: "Megamacro",
  13549. height: math.unit(8, "megameters")
  13550. },
  13551. ]
  13552. ))
  13553. characterMakers.push(() => makeCharacter(
  13554. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13555. {
  13556. front: {
  13557. height: math.unit(6, "feet"),
  13558. weight: math.unit(250, "lb"),
  13559. name: "Front",
  13560. image: {
  13561. source: "./media/characters/saudade/front.svg",
  13562. extra: 1172 / 1139,
  13563. bottom: 0.035
  13564. }
  13565. },
  13566. },
  13567. [
  13568. {
  13569. name: "Micro",
  13570. height: math.unit(3, "inches")
  13571. },
  13572. {
  13573. name: "Normal",
  13574. height: math.unit(6, "feet"),
  13575. default: true
  13576. },
  13577. {
  13578. name: "Macro",
  13579. height: math.unit(50, "feet")
  13580. },
  13581. {
  13582. name: "Megamacro",
  13583. height: math.unit(2800, "feet")
  13584. },
  13585. ]
  13586. ))
  13587. characterMakers.push(() => makeCharacter(
  13588. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13589. {
  13590. front: {
  13591. height: math.unit(5 + 4 / 12, "feet"),
  13592. weight: math.unit(100, "lb"),
  13593. name: "Front",
  13594. image: {
  13595. source: "./media/characters/keireer/front.svg",
  13596. extra: 716 / 666,
  13597. bottom: 0.05
  13598. }
  13599. },
  13600. },
  13601. [
  13602. {
  13603. name: "Normal",
  13604. height: math.unit(5 + 4 / 12, "feet"),
  13605. default: true
  13606. },
  13607. ]
  13608. ))
  13609. characterMakers.push(() => makeCharacter(
  13610. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13611. {
  13612. front: {
  13613. height: math.unit(6, "feet"),
  13614. weight: math.unit(90, "kg"),
  13615. name: "Front",
  13616. image: {
  13617. source: "./media/characters/mirja/front.svg",
  13618. extra: 1789 / 1683,
  13619. bottom: 0.05
  13620. }
  13621. },
  13622. frontDressed: {
  13623. height: math.unit(6, "feet"),
  13624. weight: math.unit(90, "lb"),
  13625. name: "Front (Dressed)",
  13626. image: {
  13627. source: "./media/characters/mirja/front-dressed.svg",
  13628. extra: 1789 / 1683,
  13629. bottom: 0.05
  13630. }
  13631. },
  13632. back: {
  13633. height: math.unit(6, "feet"),
  13634. weight: math.unit(90, "lb"),
  13635. name: "Back",
  13636. image: {
  13637. source: "./media/characters/mirja/back.svg",
  13638. extra: 953 / 917,
  13639. bottom: 0.017
  13640. }
  13641. },
  13642. },
  13643. [
  13644. {
  13645. name: "\"Incognito\"",
  13646. height: math.unit(3, "meters")
  13647. },
  13648. {
  13649. name: "Strolling Size",
  13650. height: math.unit(15, "km")
  13651. },
  13652. {
  13653. name: "Larger Strolling Size",
  13654. height: math.unit(400, "km")
  13655. },
  13656. {
  13657. name: "Preferred Size",
  13658. height: math.unit(5000, "km")
  13659. },
  13660. {
  13661. name: "True Size",
  13662. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13663. default: true
  13664. },
  13665. ]
  13666. ))
  13667. characterMakers.push(() => makeCharacter(
  13668. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13669. {
  13670. front: {
  13671. height: math.unit(15, "feet"),
  13672. weight: math.unit(880, "kg"),
  13673. name: "Front",
  13674. image: {
  13675. source: "./media/characters/nightraver/front.svg",
  13676. extra: 2444 / 2160,
  13677. bottom: 0.027
  13678. }
  13679. },
  13680. back: {
  13681. height: math.unit(15, "feet"),
  13682. weight: math.unit(880, "kg"),
  13683. name: "Back",
  13684. image: {
  13685. source: "./media/characters/nightraver/back.svg",
  13686. extra: 2309 / 2180,
  13687. bottom: 0.005
  13688. }
  13689. },
  13690. sole: {
  13691. height: math.unit(2.878, "feet"),
  13692. name: "Sole",
  13693. image: {
  13694. source: "./media/characters/nightraver/sole.svg"
  13695. }
  13696. },
  13697. foot: {
  13698. height: math.unit(2.285, "feet"),
  13699. name: "Foot",
  13700. image: {
  13701. source: "./media/characters/nightraver/foot.svg"
  13702. }
  13703. },
  13704. maw: {
  13705. height: math.unit(2.67, "feet"),
  13706. name: "Maw",
  13707. image: {
  13708. source: "./media/characters/nightraver/maw.svg"
  13709. }
  13710. },
  13711. },
  13712. [
  13713. {
  13714. name: "Micro",
  13715. height: math.unit(1, "cm")
  13716. },
  13717. {
  13718. name: "Normal",
  13719. height: math.unit(15, "feet"),
  13720. default: true
  13721. },
  13722. {
  13723. name: "Macro",
  13724. height: math.unit(300, "feet")
  13725. },
  13726. {
  13727. name: "Megamacro",
  13728. height: math.unit(300, "miles")
  13729. },
  13730. {
  13731. name: "Gigamacro",
  13732. height: math.unit(10000, "miles")
  13733. },
  13734. ]
  13735. ))
  13736. characterMakers.push(() => makeCharacter(
  13737. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13738. {
  13739. side: {
  13740. height: math.unit(2, "inches"),
  13741. weight: math.unit(5, "grams"),
  13742. name: "Side",
  13743. image: {
  13744. source: "./media/characters/arc/side.svg"
  13745. }
  13746. },
  13747. },
  13748. [
  13749. {
  13750. name: "Micro",
  13751. height: math.unit(2, "inches"),
  13752. default: true
  13753. },
  13754. ]
  13755. ))
  13756. characterMakers.push(() => makeCharacter(
  13757. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13758. {
  13759. front: {
  13760. height: math.unit(1.1938, "meters"),
  13761. weight: math.unit(54, "kg"),
  13762. name: "Front",
  13763. image: {
  13764. source: "./media/characters/nebula-shahar/front.svg",
  13765. extra: 1642 / 1436,
  13766. bottom: 0.06
  13767. }
  13768. },
  13769. },
  13770. [
  13771. {
  13772. name: "Megamicro",
  13773. height: math.unit(0.3, "mm")
  13774. },
  13775. {
  13776. name: "Micro",
  13777. height: math.unit(3, "cm")
  13778. },
  13779. {
  13780. name: "Normal",
  13781. height: math.unit(138, "cm"),
  13782. default: true
  13783. },
  13784. {
  13785. name: "Macro",
  13786. height: math.unit(30, "m")
  13787. },
  13788. ]
  13789. ))
  13790. characterMakers.push(() => makeCharacter(
  13791. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13792. {
  13793. front: {
  13794. height: math.unit(5.24, "feet"),
  13795. weight: math.unit(150, "lb"),
  13796. name: "Front",
  13797. image: {
  13798. source: "./media/characters/shayla/front.svg",
  13799. extra: 1512 / 1414,
  13800. bottom: 0.01
  13801. }
  13802. },
  13803. back: {
  13804. height: math.unit(5.24, "feet"),
  13805. weight: math.unit(150, "lb"),
  13806. name: "Back",
  13807. image: {
  13808. source: "./media/characters/shayla/back.svg",
  13809. extra: 1512 / 1414
  13810. }
  13811. },
  13812. hand: {
  13813. height: math.unit(0.7781496062992126, "feet"),
  13814. name: "Hand",
  13815. image: {
  13816. source: "./media/characters/shayla/hand.svg"
  13817. }
  13818. },
  13819. foot: {
  13820. height: math.unit(1.4206036745406823, "feet"),
  13821. name: "Foot",
  13822. image: {
  13823. source: "./media/characters/shayla/foot.svg"
  13824. }
  13825. },
  13826. },
  13827. [
  13828. {
  13829. name: "Micro",
  13830. height: math.unit(0.32, "feet")
  13831. },
  13832. {
  13833. name: "Normal",
  13834. height: math.unit(5.24, "feet"),
  13835. default: true
  13836. },
  13837. {
  13838. name: "Macro",
  13839. height: math.unit(492.12, "feet")
  13840. },
  13841. {
  13842. name: "Megamacro",
  13843. height: math.unit(186.41, "miles")
  13844. },
  13845. ]
  13846. ))
  13847. characterMakers.push(() => makeCharacter(
  13848. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13849. {
  13850. front: {
  13851. height: math.unit(2.2, "m"),
  13852. weight: math.unit(120, "kg"),
  13853. name: "Front",
  13854. image: {
  13855. source: "./media/characters/pia-jr/front.svg",
  13856. extra: 1000 / 970,
  13857. bottom: 0.035
  13858. }
  13859. },
  13860. hand: {
  13861. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13862. name: "Hand",
  13863. image: {
  13864. source: "./media/characters/pia-jr/hand.svg"
  13865. }
  13866. },
  13867. paw: {
  13868. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13869. name: "Paw",
  13870. image: {
  13871. source: "./media/characters/pia-jr/paw.svg"
  13872. }
  13873. },
  13874. },
  13875. [
  13876. {
  13877. name: "Micro",
  13878. height: math.unit(1.2, "cm")
  13879. },
  13880. {
  13881. name: "Normal",
  13882. height: math.unit(2.2, "m"),
  13883. default: true
  13884. },
  13885. {
  13886. name: "Macro",
  13887. height: math.unit(180, "m")
  13888. },
  13889. {
  13890. name: "Megamacro",
  13891. height: math.unit(420, "km")
  13892. },
  13893. ]
  13894. ))
  13895. characterMakers.push(() => makeCharacter(
  13896. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13897. {
  13898. front: {
  13899. height: math.unit(2, "m"),
  13900. weight: math.unit(115, "kg"),
  13901. name: "Front",
  13902. image: {
  13903. source: "./media/characters/pia-sr/front.svg",
  13904. extra: 760 / 730,
  13905. bottom: 0.015
  13906. }
  13907. },
  13908. back: {
  13909. height: math.unit(2, "m"),
  13910. weight: math.unit(115, "kg"),
  13911. name: "Back",
  13912. image: {
  13913. source: "./media/characters/pia-sr/back.svg",
  13914. extra: 760 / 730,
  13915. bottom: 0.01
  13916. }
  13917. },
  13918. hand: {
  13919. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13920. name: "Hand",
  13921. image: {
  13922. source: "./media/characters/pia-sr/hand.svg"
  13923. }
  13924. },
  13925. foot: {
  13926. height: math.unit(1.83, "feet"),
  13927. name: "Foot",
  13928. image: {
  13929. source: "./media/characters/pia-sr/foot.svg"
  13930. }
  13931. },
  13932. },
  13933. [
  13934. {
  13935. name: "Micro",
  13936. height: math.unit(88, "mm")
  13937. },
  13938. {
  13939. name: "Normal",
  13940. height: math.unit(2, "m"),
  13941. default: true
  13942. },
  13943. {
  13944. name: "Macro",
  13945. height: math.unit(200, "m")
  13946. },
  13947. {
  13948. name: "Megamacro",
  13949. height: math.unit(420, "km")
  13950. },
  13951. ]
  13952. ))
  13953. characterMakers.push(() => makeCharacter(
  13954. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13955. {
  13956. front: {
  13957. height: math.unit(8 + 2 / 12, "feet"),
  13958. weight: math.unit(300, "lb"),
  13959. name: "Front",
  13960. image: {
  13961. source: "./media/characters/kibibyte/front.svg",
  13962. extra: 2221 / 2098,
  13963. bottom: 0.04
  13964. }
  13965. },
  13966. },
  13967. [
  13968. {
  13969. name: "Normal",
  13970. height: math.unit(8 + 2 / 12, "feet"),
  13971. default: true
  13972. },
  13973. {
  13974. name: "Socialable Macro",
  13975. height: math.unit(50, "feet")
  13976. },
  13977. {
  13978. name: "Macro",
  13979. height: math.unit(300, "feet")
  13980. },
  13981. {
  13982. name: "Megamacro",
  13983. height: math.unit(500, "miles")
  13984. },
  13985. ]
  13986. ))
  13987. characterMakers.push(() => makeCharacter(
  13988. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13989. {
  13990. front: {
  13991. height: math.unit(6, "feet"),
  13992. weight: math.unit(150, "lb"),
  13993. name: "Front",
  13994. image: {
  13995. source: "./media/characters/felix/front.svg",
  13996. extra: 762 / 722,
  13997. bottom: 0.02
  13998. }
  13999. },
  14000. frontClothed: {
  14001. height: math.unit(6, "feet"),
  14002. weight: math.unit(150, "lb"),
  14003. name: "Front (Clothed)",
  14004. image: {
  14005. source: "./media/characters/felix/front-clothed.svg",
  14006. extra: 762 / 722,
  14007. bottom: 0.02
  14008. }
  14009. },
  14010. },
  14011. [
  14012. {
  14013. name: "Normal",
  14014. height: math.unit(6 + 8 / 12, "feet"),
  14015. default: true
  14016. },
  14017. {
  14018. name: "Macro",
  14019. height: math.unit(2600, "feet")
  14020. },
  14021. {
  14022. name: "Megamacro",
  14023. height: math.unit(450, "miles")
  14024. },
  14025. ]
  14026. ))
  14027. characterMakers.push(() => makeCharacter(
  14028. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14029. {
  14030. front: {
  14031. height: math.unit(6 + 1 / 12, "feet"),
  14032. weight: math.unit(250, "lb"),
  14033. name: "Front",
  14034. image: {
  14035. source: "./media/characters/tobo/front.svg",
  14036. extra: 608 / 586,
  14037. bottom: 0.023
  14038. }
  14039. },
  14040. back: {
  14041. height: math.unit(6 + 1 / 12, "feet"),
  14042. weight: math.unit(250, "lb"),
  14043. name: "Back",
  14044. image: {
  14045. source: "./media/characters/tobo/back.svg",
  14046. extra: 608 / 586
  14047. }
  14048. },
  14049. },
  14050. [
  14051. {
  14052. name: "Nano",
  14053. height: math.unit(2, "nm")
  14054. },
  14055. {
  14056. name: "Megamicro",
  14057. height: math.unit(0.1, "mm")
  14058. },
  14059. {
  14060. name: "Micro",
  14061. height: math.unit(1, "inch"),
  14062. default: true
  14063. },
  14064. {
  14065. name: "Human-sized",
  14066. height: math.unit(6 + 1 / 12, "feet")
  14067. },
  14068. {
  14069. name: "Macro",
  14070. height: math.unit(250, "feet")
  14071. },
  14072. {
  14073. name: "Megamacro",
  14074. height: math.unit(75, "miles")
  14075. },
  14076. {
  14077. name: "Texas-sized",
  14078. height: math.unit(750, "miles")
  14079. },
  14080. {
  14081. name: "Teramacro",
  14082. height: math.unit(50000, "miles")
  14083. },
  14084. ]
  14085. ))
  14086. characterMakers.push(() => makeCharacter(
  14087. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14088. {
  14089. front: {
  14090. height: math.unit(6, "feet"),
  14091. weight: math.unit(269, "lb"),
  14092. name: "Front",
  14093. image: {
  14094. source: "./media/characters/danny-kapowsky/front.svg",
  14095. extra: 766 / 736,
  14096. bottom: 0.044
  14097. }
  14098. },
  14099. back: {
  14100. height: math.unit(6, "feet"),
  14101. weight: math.unit(269, "lb"),
  14102. name: "Back",
  14103. image: {
  14104. source: "./media/characters/danny-kapowsky/back.svg",
  14105. extra: 797 / 760,
  14106. bottom: 0.025
  14107. }
  14108. },
  14109. },
  14110. [
  14111. {
  14112. name: "Macro",
  14113. height: math.unit(150, "feet"),
  14114. default: true
  14115. },
  14116. {
  14117. name: "Macro+",
  14118. height: math.unit(200, "feet")
  14119. },
  14120. {
  14121. name: "Macro++",
  14122. height: math.unit(300, "feet")
  14123. },
  14124. {
  14125. name: "Macro+++",
  14126. height: math.unit(400, "feet")
  14127. },
  14128. ]
  14129. ))
  14130. characterMakers.push(() => makeCharacter(
  14131. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14132. {
  14133. side: {
  14134. height: math.unit(6, "feet"),
  14135. weight: math.unit(170, "lb"),
  14136. name: "Side",
  14137. image: {
  14138. source: "./media/characters/finn/side.svg",
  14139. extra: 1953 / 1807,
  14140. bottom: 0.057
  14141. }
  14142. },
  14143. },
  14144. [
  14145. {
  14146. name: "Megamacro",
  14147. height: math.unit(14445, "feet"),
  14148. default: true
  14149. },
  14150. ]
  14151. ))
  14152. characterMakers.push(() => makeCharacter(
  14153. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14154. {
  14155. front: {
  14156. height: math.unit(5 + 6 / 12, "feet"),
  14157. weight: math.unit(125, "lb"),
  14158. name: "Front",
  14159. image: {
  14160. source: "./media/characters/roy/front.svg",
  14161. extra: 1,
  14162. bottom: 0.11
  14163. }
  14164. },
  14165. },
  14166. [
  14167. {
  14168. name: "Micro",
  14169. height: math.unit(3, "inches"),
  14170. default: true
  14171. },
  14172. {
  14173. name: "Normal",
  14174. height: math.unit(5 + 6 / 12, "feet")
  14175. },
  14176. {
  14177. name: "Lesser Macro",
  14178. height: math.unit(60, "feet")
  14179. },
  14180. {
  14181. name: "Greater Macro",
  14182. height: math.unit(120, "feet")
  14183. },
  14184. ]
  14185. ))
  14186. characterMakers.push(() => makeCharacter(
  14187. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14188. {
  14189. front: {
  14190. height: math.unit(6, "feet"),
  14191. weight: math.unit(100, "lb"),
  14192. name: "Front",
  14193. image: {
  14194. source: "./media/characters/aevsivs/front.svg",
  14195. extra: 1,
  14196. bottom: 0.03
  14197. }
  14198. },
  14199. back: {
  14200. height: math.unit(6, "feet"),
  14201. weight: math.unit(100, "lb"),
  14202. name: "Back",
  14203. image: {
  14204. source: "./media/characters/aevsivs/back.svg"
  14205. }
  14206. },
  14207. },
  14208. [
  14209. {
  14210. name: "Micro",
  14211. height: math.unit(2, "inches"),
  14212. default: true
  14213. },
  14214. {
  14215. name: "Normal",
  14216. height: math.unit(5, "feet")
  14217. },
  14218. ]
  14219. ))
  14220. characterMakers.push(() => makeCharacter(
  14221. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14222. {
  14223. front: {
  14224. height: math.unit(5 + 7 / 12, "feet"),
  14225. weight: math.unit(159, "lb"),
  14226. name: "Front",
  14227. image: {
  14228. source: "./media/characters/hildegard/front.svg",
  14229. extra: 289 / 269,
  14230. bottom: 7.63 / 297.8
  14231. }
  14232. },
  14233. back: {
  14234. height: math.unit(5 + 7 / 12, "feet"),
  14235. weight: math.unit(159, "lb"),
  14236. name: "Back",
  14237. image: {
  14238. source: "./media/characters/hildegard/back.svg",
  14239. extra: 280 / 260,
  14240. bottom: 2.3 / 282
  14241. }
  14242. },
  14243. },
  14244. [
  14245. {
  14246. name: "Normal",
  14247. height: math.unit(5 + 7 / 12, "feet"),
  14248. default: true
  14249. },
  14250. ]
  14251. ))
  14252. characterMakers.push(() => makeCharacter(
  14253. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14254. {
  14255. bernard: {
  14256. height: math.unit(2 + 7 / 12, "feet"),
  14257. weight: math.unit(66, "lb"),
  14258. name: "Bernard",
  14259. rename: true,
  14260. image: {
  14261. source: "./media/characters/bernard-wilder/bernard.svg",
  14262. extra: 192 / 128,
  14263. bottom: 0.05
  14264. }
  14265. },
  14266. wilder: {
  14267. height: math.unit(5 + 8 / 12, "feet"),
  14268. weight: math.unit(143, "lb"),
  14269. name: "Wilder",
  14270. rename: true,
  14271. image: {
  14272. source: "./media/characters/bernard-wilder/wilder.svg",
  14273. extra: 361 / 312,
  14274. bottom: 0.02
  14275. }
  14276. },
  14277. },
  14278. [
  14279. {
  14280. name: "Normal",
  14281. height: math.unit(2 + 7 / 12, "feet"),
  14282. default: true
  14283. },
  14284. ]
  14285. ))
  14286. characterMakers.push(() => makeCharacter(
  14287. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14288. {
  14289. anthro: {
  14290. height: math.unit(6 + 1 / 12, "feet"),
  14291. weight: math.unit(155, "lb"),
  14292. name: "Anthro",
  14293. image: {
  14294. source: "./media/characters/hearth/anthro.svg",
  14295. extra: 260 / 250,
  14296. bottom: 0.02
  14297. }
  14298. },
  14299. feral: {
  14300. height: math.unit(3.78, "feet"),
  14301. weight: math.unit(35, "kg"),
  14302. name: "Feral",
  14303. image: {
  14304. source: "./media/characters/hearth/feral.svg",
  14305. extra: 153 / 135,
  14306. bottom: 0.03
  14307. }
  14308. },
  14309. },
  14310. [
  14311. {
  14312. name: "Normal",
  14313. height: math.unit(6 + 1 / 12, "feet"),
  14314. default: true
  14315. },
  14316. ]
  14317. ))
  14318. characterMakers.push(() => makeCharacter(
  14319. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14320. {
  14321. front: {
  14322. height: math.unit(6, "feet"),
  14323. weight: math.unit(182, "lb"),
  14324. name: "Front",
  14325. image: {
  14326. source: "./media/characters/ingrid/front.svg",
  14327. extra: 294 / 268,
  14328. bottom: 0.027
  14329. }
  14330. },
  14331. },
  14332. [
  14333. {
  14334. name: "Normal",
  14335. height: math.unit(6, "feet"),
  14336. default: true
  14337. },
  14338. ]
  14339. ))
  14340. characterMakers.push(() => makeCharacter(
  14341. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14342. {
  14343. eevee: {
  14344. height: math.unit(2 + 10 / 12, "feet"),
  14345. weight: math.unit(86, "lb"),
  14346. name: "Malgam",
  14347. image: {
  14348. source: "./media/characters/malgam/eevee.svg",
  14349. extra: 218 / 180,
  14350. bottom: 0.2
  14351. }
  14352. },
  14353. sylveon: {
  14354. height: math.unit(4, "feet"),
  14355. weight: math.unit(101, "lb"),
  14356. name: "Future Malgam",
  14357. rename: true,
  14358. image: {
  14359. source: "./media/characters/malgam/sylveon.svg",
  14360. extra: 371 / 325,
  14361. bottom: 0.015
  14362. }
  14363. },
  14364. gigantamax: {
  14365. height: math.unit(50, "feet"),
  14366. name: "Gigantamax Malgam",
  14367. rename: true,
  14368. image: {
  14369. source: "./media/characters/malgam/gigantamax.svg"
  14370. }
  14371. },
  14372. },
  14373. [
  14374. {
  14375. name: "Normal",
  14376. height: math.unit(2 + 10 / 12, "feet"),
  14377. default: true
  14378. },
  14379. ]
  14380. ))
  14381. characterMakers.push(() => makeCharacter(
  14382. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14383. {
  14384. front: {
  14385. height: math.unit(5 + 11 / 12, "feet"),
  14386. weight: math.unit(188, "lb"),
  14387. name: "Front",
  14388. image: {
  14389. source: "./media/characters/fleur/front.svg",
  14390. extra: 309 / 283,
  14391. bottom: 0.007
  14392. }
  14393. },
  14394. },
  14395. [
  14396. {
  14397. name: "Normal",
  14398. height: math.unit(5 + 11 / 12, "feet"),
  14399. default: true
  14400. },
  14401. ]
  14402. ))
  14403. characterMakers.push(() => makeCharacter(
  14404. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14405. {
  14406. front: {
  14407. height: math.unit(5 + 4 / 12, "feet"),
  14408. weight: math.unit(122, "lb"),
  14409. name: "Front",
  14410. image: {
  14411. source: "./media/characters/jude/front.svg",
  14412. extra: 288 / 273,
  14413. bottom: 0.03
  14414. }
  14415. },
  14416. },
  14417. [
  14418. {
  14419. name: "Normal",
  14420. height: math.unit(5 + 4 / 12, "feet"),
  14421. default: true
  14422. },
  14423. ]
  14424. ))
  14425. characterMakers.push(() => makeCharacter(
  14426. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14427. {
  14428. front: {
  14429. height: math.unit(5 + 11 / 12, "feet"),
  14430. weight: math.unit(190, "lb"),
  14431. name: "Front",
  14432. image: {
  14433. source: "./media/characters/seara/front.svg",
  14434. extra: 1,
  14435. bottom: 0.05
  14436. }
  14437. },
  14438. },
  14439. [
  14440. {
  14441. name: "Normal",
  14442. height: math.unit(5 + 11 / 12, "feet"),
  14443. default: true
  14444. },
  14445. ]
  14446. ))
  14447. characterMakers.push(() => makeCharacter(
  14448. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14449. {
  14450. front: {
  14451. height: math.unit(16 + 5 / 12, "feet"),
  14452. weight: math.unit(524, "lb"),
  14453. name: "Front",
  14454. image: {
  14455. source: "./media/characters/caspian/front.svg",
  14456. extra: 1,
  14457. bottom: 0.04
  14458. }
  14459. },
  14460. },
  14461. [
  14462. {
  14463. name: "Normal",
  14464. height: math.unit(16 + 5 / 12, "feet"),
  14465. default: true
  14466. },
  14467. ]
  14468. ))
  14469. characterMakers.push(() => makeCharacter(
  14470. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14471. {
  14472. front: {
  14473. height: math.unit(5 + 7 / 12, "feet"),
  14474. weight: math.unit(170, "lb"),
  14475. name: "Front",
  14476. image: {
  14477. source: "./media/characters/mika/front.svg",
  14478. extra: 1,
  14479. bottom: 0.016
  14480. }
  14481. },
  14482. },
  14483. [
  14484. {
  14485. name: "Normal",
  14486. height: math.unit(5 + 7 / 12, "feet"),
  14487. default: true
  14488. },
  14489. ]
  14490. ))
  14491. characterMakers.push(() => makeCharacter(
  14492. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14493. {
  14494. front: {
  14495. height: math.unit(6 + 2 / 12, "feet"),
  14496. weight: math.unit(268, "lb"),
  14497. name: "Front",
  14498. image: {
  14499. source: "./media/characters/sol/front.svg",
  14500. extra: 247 / 231,
  14501. bottom: 0.05
  14502. }
  14503. },
  14504. },
  14505. [
  14506. {
  14507. name: "Normal",
  14508. height: math.unit(6 + 2 / 12, "feet"),
  14509. default: true
  14510. },
  14511. ]
  14512. ))
  14513. characterMakers.push(() => makeCharacter(
  14514. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14515. {
  14516. buizel: {
  14517. height: math.unit(2 + 5 / 12, "feet"),
  14518. weight: math.unit(87, "lb"),
  14519. name: "Buizel",
  14520. image: {
  14521. source: "./media/characters/umiko/buizel.svg",
  14522. extra: 172 / 157,
  14523. bottom: 0.01
  14524. }
  14525. },
  14526. floatzel: {
  14527. height: math.unit(5 + 9 / 12, "feet"),
  14528. weight: math.unit(250, "lb"),
  14529. name: "Floatzel",
  14530. image: {
  14531. source: "./media/characters/umiko/floatzel.svg",
  14532. extra: 262 / 248
  14533. }
  14534. },
  14535. },
  14536. [
  14537. {
  14538. name: "Normal",
  14539. height: math.unit(2 + 5 / 12, "feet"),
  14540. default: true
  14541. },
  14542. ]
  14543. ))
  14544. characterMakers.push(() => makeCharacter(
  14545. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14546. {
  14547. front: {
  14548. height: math.unit(6 + 2 / 12, "feet"),
  14549. weight: math.unit(146, "lb"),
  14550. name: "Front",
  14551. image: {
  14552. source: "./media/characters/iliac/front.svg",
  14553. extra: 389 / 365,
  14554. bottom: 0.035
  14555. }
  14556. },
  14557. },
  14558. [
  14559. {
  14560. name: "Normal",
  14561. height: math.unit(6 + 2 / 12, "feet"),
  14562. default: true
  14563. },
  14564. ]
  14565. ))
  14566. characterMakers.push(() => makeCharacter(
  14567. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14568. {
  14569. front: {
  14570. height: math.unit(6, "feet"),
  14571. weight: math.unit(170, "lb"),
  14572. name: "Front",
  14573. image: {
  14574. source: "./media/characters/topaz/front.svg",
  14575. extra: 317 / 303,
  14576. bottom: 0.055
  14577. }
  14578. },
  14579. },
  14580. [
  14581. {
  14582. name: "Normal",
  14583. height: math.unit(6, "feet"),
  14584. default: true
  14585. },
  14586. ]
  14587. ))
  14588. characterMakers.push(() => makeCharacter(
  14589. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14590. {
  14591. front: {
  14592. height: math.unit(5 + 11 / 12, "feet"),
  14593. weight: math.unit(144, "lb"),
  14594. name: "Front",
  14595. image: {
  14596. source: "./media/characters/gabriel/front.svg",
  14597. extra: 285 / 262,
  14598. bottom: 0.004
  14599. }
  14600. },
  14601. },
  14602. [
  14603. {
  14604. name: "Normal",
  14605. height: math.unit(5 + 11 / 12, "feet"),
  14606. default: true
  14607. },
  14608. ]
  14609. ))
  14610. characterMakers.push(() => makeCharacter(
  14611. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14612. {
  14613. side: {
  14614. height: math.unit(6 + 5 / 12, "feet"),
  14615. weight: math.unit(300, "lb"),
  14616. name: "Side",
  14617. image: {
  14618. source: "./media/characters/tempest-suicune/side.svg",
  14619. extra: 195 / 154,
  14620. bottom: 0.04
  14621. }
  14622. },
  14623. },
  14624. [
  14625. {
  14626. name: "Normal",
  14627. height: math.unit(6 + 5 / 12, "feet"),
  14628. default: true
  14629. },
  14630. ]
  14631. ))
  14632. characterMakers.push(() => makeCharacter(
  14633. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14634. {
  14635. front: {
  14636. height: math.unit(7 + 2 / 12, "feet"),
  14637. weight: math.unit(322, "lb"),
  14638. name: "Front",
  14639. image: {
  14640. source: "./media/characters/vulcan/front.svg",
  14641. extra: 154 / 147,
  14642. bottom: 0.04
  14643. }
  14644. },
  14645. },
  14646. [
  14647. {
  14648. name: "Normal",
  14649. height: math.unit(7 + 2 / 12, "feet"),
  14650. default: true
  14651. },
  14652. ]
  14653. ))
  14654. characterMakers.push(() => makeCharacter(
  14655. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14656. {
  14657. front: {
  14658. height: math.unit(5 + 10 / 12, "feet"),
  14659. weight: math.unit(264, "lb"),
  14660. name: "Front",
  14661. image: {
  14662. source: "./media/characters/gault/front.svg",
  14663. extra: 161 / 140,
  14664. bottom: 0.028
  14665. }
  14666. },
  14667. },
  14668. [
  14669. {
  14670. name: "Normal",
  14671. height: math.unit(5 + 10 / 12, "feet"),
  14672. default: true
  14673. },
  14674. ]
  14675. ))
  14676. characterMakers.push(() => makeCharacter(
  14677. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14678. {
  14679. front: {
  14680. height: math.unit(6, "feet"),
  14681. weight: math.unit(150, "lb"),
  14682. name: "Front",
  14683. image: {
  14684. source: "./media/characters/shard/front.svg",
  14685. extra: 273 / 238,
  14686. bottom: 0.02
  14687. }
  14688. },
  14689. },
  14690. [
  14691. {
  14692. name: "Normal",
  14693. height: math.unit(3 + 6 / 12, "feet"),
  14694. default: true
  14695. },
  14696. ]
  14697. ))
  14698. characterMakers.push(() => makeCharacter(
  14699. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14700. {
  14701. front: {
  14702. height: math.unit(5 + 11 / 12, "feet"),
  14703. weight: math.unit(146, "lb"),
  14704. name: "Front",
  14705. image: {
  14706. source: "./media/characters/ashe/front.svg",
  14707. extra: 400 / 373,
  14708. bottom: 0.01
  14709. }
  14710. },
  14711. },
  14712. [
  14713. {
  14714. name: "Normal",
  14715. height: math.unit(5 + 11 / 12, "feet"),
  14716. default: true
  14717. },
  14718. ]
  14719. ))
  14720. characterMakers.push(() => makeCharacter(
  14721. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14722. {
  14723. front: {
  14724. height: math.unit(5 + 5 / 12, "feet"),
  14725. weight: math.unit(135, "lb"),
  14726. name: "Front",
  14727. image: {
  14728. source: "./media/characters/beatrix/front.svg",
  14729. extra: 392 / 379,
  14730. bottom: 0.01
  14731. }
  14732. },
  14733. },
  14734. [
  14735. {
  14736. name: "Normal",
  14737. height: math.unit(6, "feet"),
  14738. default: true
  14739. },
  14740. ]
  14741. ))
  14742. characterMakers.push(() => makeCharacter(
  14743. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14744. {
  14745. front: {
  14746. height: math.unit(6, "feet"),
  14747. weight: math.unit(150, "lb"),
  14748. name: "Front",
  14749. image: {
  14750. source: "./media/characters/ignatius/front.svg",
  14751. extra: 245 / 222,
  14752. bottom: 0.01
  14753. }
  14754. },
  14755. },
  14756. [
  14757. {
  14758. name: "Normal",
  14759. height: math.unit(5 + 5 / 12, "feet"),
  14760. default: true
  14761. },
  14762. ]
  14763. ))
  14764. characterMakers.push(() => makeCharacter(
  14765. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14766. {
  14767. front: {
  14768. height: math.unit(6 + 2 / 12, "feet"),
  14769. weight: math.unit(138, "lb"),
  14770. name: "Front",
  14771. image: {
  14772. source: "./media/characters/mei-li/front.svg",
  14773. extra: 237 / 229,
  14774. bottom: 0.03
  14775. }
  14776. },
  14777. },
  14778. [
  14779. {
  14780. name: "Normal",
  14781. height: math.unit(6 + 2 / 12, "feet"),
  14782. default: true
  14783. },
  14784. ]
  14785. ))
  14786. characterMakers.push(() => makeCharacter(
  14787. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14788. {
  14789. front: {
  14790. height: math.unit(2 + 4 / 12, "feet"),
  14791. weight: math.unit(62, "lb"),
  14792. name: "Front",
  14793. image: {
  14794. source: "./media/characters/puru/front.svg",
  14795. extra: 206 / 149,
  14796. bottom: 0.06
  14797. }
  14798. },
  14799. },
  14800. [
  14801. {
  14802. name: "Normal",
  14803. height: math.unit(2 + 4 / 12, "feet"),
  14804. default: true
  14805. },
  14806. ]
  14807. ))
  14808. characterMakers.push(() => makeCharacter(
  14809. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14810. {
  14811. taur: {
  14812. height: math.unit(11, "feet"),
  14813. weight: math.unit(500, "lb"),
  14814. name: "Taur",
  14815. image: {
  14816. source: "./media/characters/kee/taur.svg",
  14817. extra: 1,
  14818. bottom: 0.04
  14819. }
  14820. },
  14821. },
  14822. [
  14823. {
  14824. name: "Normal",
  14825. height: math.unit(11, "feet"),
  14826. default: true
  14827. },
  14828. ]
  14829. ))
  14830. characterMakers.push(() => makeCharacter(
  14831. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14832. {
  14833. anthro: {
  14834. height: math.unit(7, "feet"),
  14835. weight: math.unit(190, "lb"),
  14836. name: "Anthro",
  14837. image: {
  14838. source: "./media/characters/cobalt-dracha/anthro.svg",
  14839. extra: 231 / 225,
  14840. bottom: 0.04
  14841. }
  14842. },
  14843. feral: {
  14844. height: math.unit(9 + 7 / 12, "feet"),
  14845. weight: math.unit(294, "lb"),
  14846. name: "Feral",
  14847. image: {
  14848. source: "./media/characters/cobalt-dracha/feral.svg",
  14849. extra: 692 / 633,
  14850. bottom: 0.05
  14851. }
  14852. },
  14853. },
  14854. [
  14855. {
  14856. name: "Normal",
  14857. height: math.unit(7, "feet"),
  14858. default: true
  14859. },
  14860. ]
  14861. ))
  14862. characterMakers.push(() => makeCharacter(
  14863. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14864. {
  14865. fallen: {
  14866. height: math.unit(11 + 8 / 12, "feet"),
  14867. weight: math.unit(485, "lb"),
  14868. name: "Java (Fallen)",
  14869. rename: true,
  14870. image: {
  14871. source: "./media/characters/java/fallen.svg",
  14872. extra: 226 / 208,
  14873. bottom: 0.005
  14874. }
  14875. },
  14876. godkin: {
  14877. height: math.unit(10 + 6 / 12, "feet"),
  14878. weight: math.unit(328, "lb"),
  14879. name: "Java (Godkin)",
  14880. rename: true,
  14881. image: {
  14882. source: "./media/characters/java/godkin.svg",
  14883. extra: 270 / 262,
  14884. bottom: 0.02
  14885. }
  14886. },
  14887. },
  14888. [
  14889. {
  14890. name: "Normal",
  14891. height: math.unit(11 + 8 / 12, "feet"),
  14892. default: true
  14893. },
  14894. ]
  14895. ))
  14896. characterMakers.push(() => makeCharacter(
  14897. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14898. {
  14899. front: {
  14900. height: math.unit(7 + 8 / 12, "feet"),
  14901. weight: math.unit(320, "lb"),
  14902. name: "Front",
  14903. image: {
  14904. source: "./media/characters/skoll/front.svg",
  14905. extra: 232 / 220,
  14906. bottom: 0.02
  14907. }
  14908. },
  14909. },
  14910. [
  14911. {
  14912. name: "Normal",
  14913. height: math.unit(7 + 8 / 12, "feet"),
  14914. default: true
  14915. },
  14916. ]
  14917. ))
  14918. characterMakers.push(() => makeCharacter(
  14919. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14920. {
  14921. front: {
  14922. height: math.unit(5 + 9 / 12, "feet"),
  14923. weight: math.unit(170, "lb"),
  14924. name: "Front",
  14925. image: {
  14926. source: "./media/characters/purna/front.svg",
  14927. extra: 239 / 229,
  14928. bottom: 0.01
  14929. }
  14930. },
  14931. },
  14932. [
  14933. {
  14934. name: "Normal",
  14935. height: math.unit(5 + 9 / 12, "feet"),
  14936. default: true
  14937. },
  14938. ]
  14939. ))
  14940. characterMakers.push(() => makeCharacter(
  14941. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14942. {
  14943. front: {
  14944. height: math.unit(5 + 9 / 12, "feet"),
  14945. weight: math.unit(142, "lb"),
  14946. name: "Front",
  14947. image: {
  14948. source: "./media/characters/kuva/front.svg",
  14949. extra: 281 / 271,
  14950. bottom: 0.006
  14951. }
  14952. },
  14953. },
  14954. [
  14955. {
  14956. name: "Normal",
  14957. height: math.unit(5 + 9 / 12, "feet"),
  14958. default: true
  14959. },
  14960. ]
  14961. ))
  14962. characterMakers.push(() => makeCharacter(
  14963. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14964. {
  14965. anthro: {
  14966. height: math.unit(9 + 2 / 12, "feet"),
  14967. weight: math.unit(270, "lb"),
  14968. name: "Anthro",
  14969. image: {
  14970. source: "./media/characters/embra/anthro.svg",
  14971. extra: 200 / 187,
  14972. bottom: 0.02
  14973. }
  14974. },
  14975. feral: {
  14976. height: math.unit(18 + 8 / 12, "feet"),
  14977. weight: math.unit(576, "lb"),
  14978. name: "Feral",
  14979. image: {
  14980. source: "./media/characters/embra/feral.svg",
  14981. extra: 152 / 137,
  14982. bottom: 0.037
  14983. }
  14984. },
  14985. },
  14986. [
  14987. {
  14988. name: "Normal",
  14989. height: math.unit(9 + 2 / 12, "feet"),
  14990. default: true
  14991. },
  14992. ]
  14993. ))
  14994. characterMakers.push(() => makeCharacter(
  14995. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14996. {
  14997. anthro: {
  14998. height: math.unit(10 + 9 / 12, "feet"),
  14999. weight: math.unit(224, "lb"),
  15000. name: "Anthro",
  15001. image: {
  15002. source: "./media/characters/grottos/anthro.svg",
  15003. extra: 350 / 332,
  15004. bottom: 0.045
  15005. }
  15006. },
  15007. feral: {
  15008. height: math.unit(20 + 7 / 12, "feet"),
  15009. weight: math.unit(629, "lb"),
  15010. name: "Feral",
  15011. image: {
  15012. source: "./media/characters/grottos/feral.svg",
  15013. extra: 207 / 190,
  15014. bottom: 0.05
  15015. }
  15016. },
  15017. },
  15018. [
  15019. {
  15020. name: "Normal",
  15021. height: math.unit(10 + 9 / 12, "feet"),
  15022. default: true
  15023. },
  15024. ]
  15025. ))
  15026. characterMakers.push(() => makeCharacter(
  15027. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15028. {
  15029. anthro: {
  15030. height: math.unit(9 + 6 / 12, "feet"),
  15031. weight: math.unit(298, "lb"),
  15032. name: "Anthro",
  15033. image: {
  15034. source: "./media/characters/frifna/anthro.svg",
  15035. extra: 282 / 269,
  15036. bottom: 0.015
  15037. }
  15038. },
  15039. feral: {
  15040. height: math.unit(16 + 2 / 12, "feet"),
  15041. weight: math.unit(624, "lb"),
  15042. name: "Feral",
  15043. image: {
  15044. source: "./media/characters/frifna/feral.svg"
  15045. }
  15046. },
  15047. },
  15048. [
  15049. {
  15050. name: "Normal",
  15051. height: math.unit(9 + 6 / 12, "feet"),
  15052. default: true
  15053. },
  15054. ]
  15055. ))
  15056. characterMakers.push(() => makeCharacter(
  15057. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15058. {
  15059. front: {
  15060. height: math.unit(6 + 2 / 12, "feet"),
  15061. weight: math.unit(168, "lb"),
  15062. name: "Front",
  15063. image: {
  15064. source: "./media/characters/elise/front.svg",
  15065. extra: 276 / 271
  15066. }
  15067. },
  15068. },
  15069. [
  15070. {
  15071. name: "Normal",
  15072. height: math.unit(6 + 2 / 12, "feet"),
  15073. default: true
  15074. },
  15075. ]
  15076. ))
  15077. characterMakers.push(() => makeCharacter(
  15078. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15079. {
  15080. front: {
  15081. height: math.unit(5 + 10 / 12, "feet"),
  15082. weight: math.unit(210, "lb"),
  15083. name: "Front",
  15084. image: {
  15085. source: "./media/characters/glade/front.svg",
  15086. extra: 258 / 247,
  15087. bottom: 0.008
  15088. }
  15089. },
  15090. },
  15091. [
  15092. {
  15093. name: "Normal",
  15094. height: math.unit(5 + 10 / 12, "feet"),
  15095. default: true
  15096. },
  15097. ]
  15098. ))
  15099. characterMakers.push(() => makeCharacter(
  15100. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15101. {
  15102. front: {
  15103. height: math.unit(5 + 10 / 12, "feet"),
  15104. weight: math.unit(129, "lb"),
  15105. name: "Front",
  15106. image: {
  15107. source: "./media/characters/rina/front.svg",
  15108. extra: 266 / 255,
  15109. bottom: 0.005
  15110. }
  15111. },
  15112. },
  15113. [
  15114. {
  15115. name: "Normal",
  15116. height: math.unit(5 + 10 / 12, "feet"),
  15117. default: true
  15118. },
  15119. ]
  15120. ))
  15121. characterMakers.push(() => makeCharacter(
  15122. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15123. {
  15124. front: {
  15125. height: math.unit(6 + 1 / 12, "feet"),
  15126. weight: math.unit(192, "lb"),
  15127. name: "Front",
  15128. image: {
  15129. source: "./media/characters/veronica/front.svg",
  15130. extra: 319 / 309,
  15131. bottom: 0.005
  15132. }
  15133. },
  15134. },
  15135. [
  15136. {
  15137. name: "Normal",
  15138. height: math.unit(6 + 1 / 12, "feet"),
  15139. default: true
  15140. },
  15141. ]
  15142. ))
  15143. characterMakers.push(() => makeCharacter(
  15144. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15145. {
  15146. front: {
  15147. height: math.unit(9 + 3 / 12, "feet"),
  15148. weight: math.unit(1100, "lb"),
  15149. name: "Front",
  15150. image: {
  15151. source: "./media/characters/braxton/front.svg",
  15152. extra: 1057 / 984,
  15153. bottom: 0.05
  15154. }
  15155. },
  15156. },
  15157. [
  15158. {
  15159. name: "Normal",
  15160. height: math.unit(9 + 3 / 12, "feet")
  15161. },
  15162. {
  15163. name: "Giant",
  15164. height: math.unit(300, "feet"),
  15165. default: true
  15166. },
  15167. {
  15168. name: "Macro",
  15169. height: math.unit(700, "feet")
  15170. },
  15171. {
  15172. name: "Megamacro",
  15173. height: math.unit(6000, "feet")
  15174. },
  15175. ]
  15176. ))
  15177. characterMakers.push(() => makeCharacter(
  15178. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15179. {
  15180. front: {
  15181. height: math.unit(6 + 7 / 12, "feet"),
  15182. weight: math.unit(150, "lb"),
  15183. name: "Front",
  15184. image: {
  15185. source: "./media/characters/blue-feyonics/front.svg",
  15186. extra: 1403 / 1306,
  15187. bottom: 0.047
  15188. }
  15189. },
  15190. },
  15191. [
  15192. {
  15193. name: "Normal",
  15194. height: math.unit(6 + 7 / 12, "feet"),
  15195. default: true
  15196. },
  15197. ]
  15198. ))
  15199. characterMakers.push(() => makeCharacter(
  15200. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15201. {
  15202. front: {
  15203. height: math.unit(1.8, "meters"),
  15204. weight: math.unit(60, "kg"),
  15205. name: "Front",
  15206. image: {
  15207. source: "./media/characters/maxwell/front.svg",
  15208. extra: 2060 / 1873
  15209. }
  15210. },
  15211. },
  15212. [
  15213. {
  15214. name: "Micro",
  15215. height: math.unit(1, "mm")
  15216. },
  15217. {
  15218. name: "Normal",
  15219. height: math.unit(1.8, "meter"),
  15220. default: true
  15221. },
  15222. {
  15223. name: "Macro",
  15224. height: math.unit(30, "meters")
  15225. },
  15226. {
  15227. name: "Megamacro",
  15228. height: math.unit(10, "km")
  15229. },
  15230. ]
  15231. ))
  15232. characterMakers.push(() => makeCharacter(
  15233. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15234. {
  15235. front: {
  15236. height: math.unit(6, "feet"),
  15237. weight: math.unit(150, "lb"),
  15238. name: "Front",
  15239. image: {
  15240. source: "./media/characters/jack/front.svg",
  15241. extra: 1754 / 1640,
  15242. bottom: 0.01
  15243. }
  15244. },
  15245. },
  15246. [
  15247. {
  15248. name: "Normal",
  15249. height: math.unit(80000, "feet"),
  15250. default: true
  15251. },
  15252. {
  15253. name: "Max size",
  15254. height: math.unit(10, "lightyears")
  15255. },
  15256. ]
  15257. ))
  15258. characterMakers.push(() => makeCharacter(
  15259. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15260. {
  15261. upright: {
  15262. height: math.unit(7, "feet"),
  15263. weight: math.unit(170, "lb"),
  15264. name: "Upright",
  15265. image: {
  15266. source: "./media/characters/cafat/upright.svg",
  15267. bottom: 0.01
  15268. }
  15269. },
  15270. uprightFull: {
  15271. height: math.unit(7, "feet"),
  15272. weight: math.unit(170, "lb"),
  15273. name: "Upright (Full)",
  15274. image: {
  15275. source: "./media/characters/cafat/upright-full.svg",
  15276. bottom: 0.01
  15277. }
  15278. },
  15279. side: {
  15280. height: math.unit(5, "feet"),
  15281. weight: math.unit(150, "lb"),
  15282. name: "Side",
  15283. image: {
  15284. source: "./media/characters/cafat/side.svg"
  15285. }
  15286. },
  15287. },
  15288. [
  15289. {
  15290. name: "Small",
  15291. height: math.unit(7, "feet"),
  15292. default: true
  15293. },
  15294. {
  15295. name: "Large",
  15296. height: math.unit(15.5, "feet")
  15297. },
  15298. ]
  15299. ))
  15300. characterMakers.push(() => makeCharacter(
  15301. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15302. {
  15303. front: {
  15304. height: math.unit(6, "feet"),
  15305. weight: math.unit(150, "lb"),
  15306. name: "Front",
  15307. image: {
  15308. source: "./media/characters/verin-raharra/front.svg",
  15309. extra: 5019 / 4835,
  15310. bottom: 0.023
  15311. }
  15312. },
  15313. },
  15314. [
  15315. {
  15316. name: "Normal",
  15317. height: math.unit(7 + 5 / 12, "feet"),
  15318. default: true
  15319. },
  15320. {
  15321. name: "Upsized",
  15322. height: math.unit(20, "feet")
  15323. },
  15324. ]
  15325. ))
  15326. characterMakers.push(() => makeCharacter(
  15327. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15328. {
  15329. front: {
  15330. height: math.unit(7, "feet"),
  15331. weight: math.unit(230, "lb"),
  15332. name: "Front",
  15333. image: {
  15334. source: "./media/characters/nakata/front.svg",
  15335. extra: 1.005,
  15336. bottom: 0.01
  15337. }
  15338. },
  15339. },
  15340. [
  15341. {
  15342. name: "Normal",
  15343. height: math.unit(7, "feet"),
  15344. default: true
  15345. },
  15346. {
  15347. name: "Big",
  15348. height: math.unit(14, "feet")
  15349. },
  15350. {
  15351. name: "Macro",
  15352. height: math.unit(400, "feet")
  15353. },
  15354. ]
  15355. ))
  15356. characterMakers.push(() => makeCharacter(
  15357. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15358. {
  15359. front: {
  15360. height: math.unit(4.91, "feet"),
  15361. weight: math.unit(100, "lb"),
  15362. name: "Front",
  15363. image: {
  15364. source: "./media/characters/lily/front.svg",
  15365. extra: 1585 / 1415,
  15366. bottom: 0.02
  15367. }
  15368. },
  15369. },
  15370. [
  15371. {
  15372. name: "Normal",
  15373. height: math.unit(4.91, "feet"),
  15374. default: true
  15375. },
  15376. ]
  15377. ))
  15378. characterMakers.push(() => makeCharacter(
  15379. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15380. {
  15381. laying: {
  15382. height: math.unit(4 + 4 / 12, "feet"),
  15383. weight: math.unit(600, "lb"),
  15384. name: "Laying",
  15385. image: {
  15386. source: "./media/characters/sheila/laying.svg",
  15387. extra: 1333 / 1265,
  15388. bottom: 0.16
  15389. }
  15390. },
  15391. },
  15392. [
  15393. {
  15394. name: "Normal",
  15395. height: math.unit(4 + 4 / 12, "feet"),
  15396. default: true
  15397. },
  15398. ]
  15399. ))
  15400. characterMakers.push(() => makeCharacter(
  15401. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15402. {
  15403. front: {
  15404. height: math.unit(6, "feet"),
  15405. weight: math.unit(190, "lb"),
  15406. name: "Front",
  15407. image: {
  15408. source: "./media/characters/sax/front.svg",
  15409. extra: 1187 / 973,
  15410. bottom: 0.042
  15411. }
  15412. },
  15413. },
  15414. [
  15415. {
  15416. name: "Micro",
  15417. height: math.unit(4, "inches"),
  15418. default: true
  15419. },
  15420. ]
  15421. ))
  15422. characterMakers.push(() => makeCharacter(
  15423. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15424. {
  15425. front: {
  15426. height: math.unit(6, "feet"),
  15427. weight: math.unit(150, "lb"),
  15428. name: "Front",
  15429. image: {
  15430. source: "./media/characters/pandora/front.svg",
  15431. extra: 2720 / 2556,
  15432. bottom: 0.015
  15433. }
  15434. },
  15435. back: {
  15436. height: math.unit(6, "feet"),
  15437. weight: math.unit(150, "lb"),
  15438. name: "Back",
  15439. image: {
  15440. source: "./media/characters/pandora/back.svg",
  15441. extra: 2720 / 2556,
  15442. bottom: 0.01
  15443. }
  15444. },
  15445. beans: {
  15446. height: math.unit(6 / 8, "feet"),
  15447. name: "Beans",
  15448. image: {
  15449. source: "./media/characters/pandora/beans.svg"
  15450. }
  15451. },
  15452. skirt: {
  15453. height: math.unit(6, "feet"),
  15454. weight: math.unit(150, "lb"),
  15455. name: "Skirt",
  15456. image: {
  15457. source: "./media/characters/pandora/skirt.svg",
  15458. extra: 1622 / 1525,
  15459. bottom: 0.015
  15460. }
  15461. },
  15462. hoodie: {
  15463. height: math.unit(6, "feet"),
  15464. weight: math.unit(150, "lb"),
  15465. name: "Hoodie",
  15466. image: {
  15467. source: "./media/characters/pandora/hoodie.svg",
  15468. extra: 1622 / 1525,
  15469. bottom: 0.015
  15470. }
  15471. },
  15472. casual: {
  15473. height: math.unit(6, "feet"),
  15474. weight: math.unit(150, "lb"),
  15475. name: "Casual",
  15476. image: {
  15477. source: "./media/characters/pandora/casual.svg",
  15478. extra: 1622 / 1525,
  15479. bottom: 0.015
  15480. }
  15481. },
  15482. },
  15483. [
  15484. {
  15485. name: "Normal",
  15486. height: math.unit(6, "feet")
  15487. },
  15488. {
  15489. name: "Big Steppy",
  15490. height: math.unit(1, "km"),
  15491. default: true
  15492. },
  15493. ]
  15494. ))
  15495. characterMakers.push(() => makeCharacter(
  15496. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15497. {
  15498. side: {
  15499. height: math.unit(10, "feet"),
  15500. weight: math.unit(800, "kg"),
  15501. name: "Side",
  15502. image: {
  15503. source: "./media/characters/venio-darcony/side.svg",
  15504. extra: 1373 / 1003,
  15505. bottom: 0.037
  15506. }
  15507. },
  15508. front: {
  15509. height: math.unit(19, "feet"),
  15510. weight: math.unit(800, "kg"),
  15511. name: "Front",
  15512. image: {
  15513. source: "./media/characters/venio-darcony/front.svg"
  15514. }
  15515. },
  15516. back: {
  15517. height: math.unit(19, "feet"),
  15518. weight: math.unit(800, "kg"),
  15519. name: "Back",
  15520. image: {
  15521. source: "./media/characters/venio-darcony/back.svg"
  15522. }
  15523. },
  15524. sideNsfw: {
  15525. height: math.unit(10, "feet"),
  15526. weight: math.unit(800, "kg"),
  15527. name: "Side (NSFW)",
  15528. image: {
  15529. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15530. extra: 1373 / 1003,
  15531. bottom: 0.037
  15532. }
  15533. },
  15534. frontNsfw: {
  15535. height: math.unit(19, "feet"),
  15536. weight: math.unit(800, "kg"),
  15537. name: "Front (NSFW)",
  15538. image: {
  15539. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15540. }
  15541. },
  15542. backNsfw: {
  15543. height: math.unit(19, "feet"),
  15544. weight: math.unit(800, "kg"),
  15545. name: "Back (NSFW)",
  15546. image: {
  15547. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15548. }
  15549. },
  15550. sideArmored: {
  15551. height: math.unit(10, "feet"),
  15552. weight: math.unit(800, "kg"),
  15553. name: "Side (Armored)",
  15554. image: {
  15555. source: "./media/characters/venio-darcony/side-armored.svg",
  15556. extra: 1373 / 1003,
  15557. bottom: 0.037
  15558. }
  15559. },
  15560. frontArmored: {
  15561. height: math.unit(19, "feet"),
  15562. weight: math.unit(900, "kg"),
  15563. name: "Front (Armored)",
  15564. image: {
  15565. source: "./media/characters/venio-darcony/front-armored.svg"
  15566. }
  15567. },
  15568. backArmored: {
  15569. height: math.unit(19, "feet"),
  15570. weight: math.unit(900, "kg"),
  15571. name: "Back (Armored)",
  15572. image: {
  15573. source: "./media/characters/venio-darcony/back-armored.svg"
  15574. }
  15575. },
  15576. sword: {
  15577. height: math.unit(10, "feet"),
  15578. weight: math.unit(50, "lb"),
  15579. name: "Sword",
  15580. image: {
  15581. source: "./media/characters/venio-darcony/sword.svg"
  15582. }
  15583. },
  15584. },
  15585. [
  15586. {
  15587. name: "Normal",
  15588. height: math.unit(10, "feet")
  15589. },
  15590. {
  15591. name: "Macro",
  15592. height: math.unit(130, "feet"),
  15593. default: true
  15594. },
  15595. {
  15596. name: "Macro+",
  15597. height: math.unit(240, "feet")
  15598. },
  15599. ]
  15600. ))
  15601. characterMakers.push(() => makeCharacter(
  15602. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15603. {
  15604. front: {
  15605. height: math.unit(6, "feet"),
  15606. weight: math.unit(150, "lb"),
  15607. name: "Front",
  15608. image: {
  15609. source: "./media/characters/veski/front.svg",
  15610. extra: 1299 / 1225,
  15611. bottom: 0.04
  15612. }
  15613. },
  15614. back: {
  15615. height: math.unit(6, "feet"),
  15616. weight: math.unit(150, "lb"),
  15617. name: "Back",
  15618. image: {
  15619. source: "./media/characters/veski/back.svg",
  15620. extra: 1299 / 1225,
  15621. bottom: 0.008
  15622. }
  15623. },
  15624. maw: {
  15625. height: math.unit(1.5 * 1.21, "feet"),
  15626. name: "Maw",
  15627. image: {
  15628. source: "./media/characters/veski/maw.svg"
  15629. }
  15630. },
  15631. },
  15632. [
  15633. {
  15634. name: "Macro",
  15635. height: math.unit(2, "km"),
  15636. default: true
  15637. },
  15638. ]
  15639. ))
  15640. characterMakers.push(() => makeCharacter(
  15641. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15642. {
  15643. front: {
  15644. height: math.unit(5 + 7 / 12, "feet"),
  15645. name: "Front",
  15646. image: {
  15647. source: "./media/characters/isabelle/front.svg",
  15648. extra: 2130 / 1976,
  15649. bottom: 0.05
  15650. }
  15651. },
  15652. },
  15653. [
  15654. {
  15655. name: "Supermicro",
  15656. height: math.unit(10, "micrometers")
  15657. },
  15658. {
  15659. name: "Micro",
  15660. height: math.unit(1, "inch")
  15661. },
  15662. {
  15663. name: "Tiny",
  15664. height: math.unit(5, "inches")
  15665. },
  15666. {
  15667. name: "Standard",
  15668. height: math.unit(5 + 7 / 12, "inches")
  15669. },
  15670. {
  15671. name: "Macro",
  15672. height: math.unit(80, "meters"),
  15673. default: true
  15674. },
  15675. {
  15676. name: "Megamacro",
  15677. height: math.unit(250, "meters")
  15678. },
  15679. {
  15680. name: "Gigamacro",
  15681. height: math.unit(5, "km")
  15682. },
  15683. {
  15684. name: "Cosmic",
  15685. height: math.unit(2.5e6, "miles")
  15686. },
  15687. ]
  15688. ))
  15689. characterMakers.push(() => makeCharacter(
  15690. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15691. {
  15692. front: {
  15693. height: math.unit(6, "feet"),
  15694. weight: math.unit(150, "lb"),
  15695. name: "Front",
  15696. image: {
  15697. source: "./media/characters/hanzo/front.svg",
  15698. extra: 374 / 344,
  15699. bottom: 0.02
  15700. }
  15701. },
  15702. },
  15703. [
  15704. {
  15705. name: "Normal",
  15706. height: math.unit(8, "feet"),
  15707. default: true
  15708. },
  15709. ]
  15710. ))
  15711. characterMakers.push(() => makeCharacter(
  15712. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15713. {
  15714. front: {
  15715. height: math.unit(7, "feet"),
  15716. weight: math.unit(130, "lb"),
  15717. name: "Front",
  15718. image: {
  15719. source: "./media/characters/anna/front.svg",
  15720. extra: 169 / 145,
  15721. bottom: 0.06
  15722. }
  15723. },
  15724. full: {
  15725. height: math.unit(4.96, "feet"),
  15726. weight: math.unit(220, "lb"),
  15727. name: "Full",
  15728. image: {
  15729. source: "./media/characters/anna/full.svg",
  15730. extra: 138 / 114,
  15731. bottom: 0.15
  15732. }
  15733. },
  15734. tongue: {
  15735. height: math.unit(2.53, "feet"),
  15736. name: "Tongue",
  15737. image: {
  15738. source: "./media/characters/anna/tongue.svg"
  15739. }
  15740. },
  15741. },
  15742. [
  15743. {
  15744. name: "Normal",
  15745. height: math.unit(7, "feet"),
  15746. default: true
  15747. },
  15748. ]
  15749. ))
  15750. characterMakers.push(() => makeCharacter(
  15751. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15752. {
  15753. front: {
  15754. height: math.unit(7, "feet"),
  15755. weight: math.unit(150, "lb"),
  15756. name: "Front",
  15757. image: {
  15758. source: "./media/characters/ian-corvid/front.svg",
  15759. extra: 150 / 142,
  15760. bottom: 0.02
  15761. }
  15762. },
  15763. back: {
  15764. height: math.unit(7, "feet"),
  15765. weight: math.unit(150, "lb"),
  15766. name: "Back",
  15767. image: {
  15768. source: "./media/characters/ian-corvid/back.svg",
  15769. extra: 150 / 143,
  15770. bottom: 0.01
  15771. }
  15772. },
  15773. stomping: {
  15774. height: math.unit(7, "feet"),
  15775. weight: math.unit(150, "lb"),
  15776. name: "Stomping",
  15777. image: {
  15778. source: "./media/characters/ian-corvid/stomping.svg",
  15779. extra: 76 / 72
  15780. }
  15781. },
  15782. sitting: {
  15783. height: math.unit(7 / 1.8, "feet"),
  15784. weight: math.unit(150, "lb"),
  15785. name: "Sitting",
  15786. image: {
  15787. source: "./media/characters/ian-corvid/sitting.svg",
  15788. extra: 1400 / 1269,
  15789. bottom: 0.15
  15790. }
  15791. },
  15792. },
  15793. [
  15794. {
  15795. name: "Tiny Microw",
  15796. height: math.unit(1, "inch")
  15797. },
  15798. {
  15799. name: "Microw",
  15800. height: math.unit(6, "inches")
  15801. },
  15802. {
  15803. name: "Crow",
  15804. height: math.unit(7 + 1 / 12, "feet"),
  15805. default: true
  15806. },
  15807. {
  15808. name: "Macrow",
  15809. height: math.unit(176, "feet")
  15810. },
  15811. ]
  15812. ))
  15813. characterMakers.push(() => makeCharacter(
  15814. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15815. {
  15816. front: {
  15817. height: math.unit(5 + 7 / 12, "feet"),
  15818. weight: math.unit(147, "lb"),
  15819. name: "Front",
  15820. image: {
  15821. source: "./media/characters/natalie-kellon/front.svg",
  15822. extra: 1214 / 1141,
  15823. bottom: 0.02
  15824. }
  15825. },
  15826. },
  15827. [
  15828. {
  15829. name: "Micro",
  15830. height: math.unit(1 / 16, "inch")
  15831. },
  15832. {
  15833. name: "Tiny",
  15834. height: math.unit(4, "inches")
  15835. },
  15836. {
  15837. name: "Normal",
  15838. height: math.unit(5 + 7 / 12, "feet"),
  15839. default: true
  15840. },
  15841. {
  15842. name: "Amazon",
  15843. height: math.unit(12, "feet")
  15844. },
  15845. {
  15846. name: "Giantess",
  15847. height: math.unit(160, "meters")
  15848. },
  15849. {
  15850. name: "Titaness",
  15851. height: math.unit(800, "meters")
  15852. },
  15853. ]
  15854. ))
  15855. characterMakers.push(() => makeCharacter(
  15856. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15857. {
  15858. front: {
  15859. height: math.unit(6, "feet"),
  15860. weight: math.unit(150, "lb"),
  15861. name: "Front",
  15862. image: {
  15863. source: "./media/characters/alluria/front.svg",
  15864. extra: 806 / 738,
  15865. bottom: 0.01
  15866. }
  15867. },
  15868. side: {
  15869. height: math.unit(6, "feet"),
  15870. weight: math.unit(150, "lb"),
  15871. name: "Side",
  15872. image: {
  15873. source: "./media/characters/alluria/side.svg",
  15874. extra: 800 / 750,
  15875. }
  15876. },
  15877. back: {
  15878. height: math.unit(6, "feet"),
  15879. weight: math.unit(150, "lb"),
  15880. name: "Back",
  15881. image: {
  15882. source: "./media/characters/alluria/back.svg",
  15883. extra: 806 / 738,
  15884. }
  15885. },
  15886. frontMaid: {
  15887. height: math.unit(6, "feet"),
  15888. weight: math.unit(150, "lb"),
  15889. name: "Front (Maid)",
  15890. image: {
  15891. source: "./media/characters/alluria/front-maid.svg",
  15892. extra: 806 / 738,
  15893. bottom: 0.01
  15894. }
  15895. },
  15896. sideMaid: {
  15897. height: math.unit(6, "feet"),
  15898. weight: math.unit(150, "lb"),
  15899. name: "Side (Maid)",
  15900. image: {
  15901. source: "./media/characters/alluria/side-maid.svg",
  15902. extra: 800 / 750,
  15903. bottom: 0.005
  15904. }
  15905. },
  15906. backMaid: {
  15907. height: math.unit(6, "feet"),
  15908. weight: math.unit(150, "lb"),
  15909. name: "Back (Maid)",
  15910. image: {
  15911. source: "./media/characters/alluria/back-maid.svg",
  15912. extra: 806 / 738,
  15913. }
  15914. },
  15915. },
  15916. [
  15917. {
  15918. name: "Micro",
  15919. height: math.unit(6, "inches"),
  15920. default: true
  15921. },
  15922. ]
  15923. ))
  15924. characterMakers.push(() => makeCharacter(
  15925. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15926. {
  15927. front: {
  15928. height: math.unit(6, "feet"),
  15929. weight: math.unit(150, "lb"),
  15930. name: "Front",
  15931. image: {
  15932. source: "./media/characters/kyle/front.svg",
  15933. extra: 1069 / 962,
  15934. bottom: 77.228 / 1727.45
  15935. }
  15936. },
  15937. },
  15938. [
  15939. {
  15940. name: "Macro",
  15941. height: math.unit(150, "feet"),
  15942. default: true
  15943. },
  15944. ]
  15945. ))
  15946. characterMakers.push(() => makeCharacter(
  15947. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15948. {
  15949. front: {
  15950. height: math.unit(6, "feet"),
  15951. weight: math.unit(300, "lb"),
  15952. name: "Front",
  15953. image: {
  15954. source: "./media/characters/duncan/front.svg",
  15955. extra: 1650 / 1482,
  15956. bottom: 0.05
  15957. }
  15958. },
  15959. },
  15960. [
  15961. {
  15962. name: "Macro",
  15963. height: math.unit(100, "feet"),
  15964. default: true
  15965. },
  15966. ]
  15967. ))
  15968. characterMakers.push(() => makeCharacter(
  15969. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15970. {
  15971. front: {
  15972. height: math.unit(5 + 4 / 12, "feet"),
  15973. weight: math.unit(220, "lb"),
  15974. name: "Front",
  15975. image: {
  15976. source: "./media/characters/memory/front.svg",
  15977. extra: 3641 / 3545,
  15978. bottom: 0.03
  15979. }
  15980. },
  15981. back: {
  15982. height: math.unit(5 + 4 / 12, "feet"),
  15983. weight: math.unit(220, "lb"),
  15984. name: "Back",
  15985. image: {
  15986. source: "./media/characters/memory/back.svg",
  15987. extra: 3641 / 3545,
  15988. bottom: 0.025
  15989. }
  15990. },
  15991. frontSkirt: {
  15992. height: math.unit(5 + 4 / 12, "feet"),
  15993. weight: math.unit(220, "lb"),
  15994. name: "Front (Skirt)",
  15995. image: {
  15996. source: "./media/characters/memory/front-skirt.svg",
  15997. extra: 3641 / 3545,
  15998. bottom: 0.03
  15999. }
  16000. },
  16001. frontDress: {
  16002. height: math.unit(5 + 4 / 12, "feet"),
  16003. weight: math.unit(220, "lb"),
  16004. name: "Front (Dress)",
  16005. image: {
  16006. source: "./media/characters/memory/front-dress.svg",
  16007. extra: 3641 / 3545,
  16008. bottom: 0.03
  16009. }
  16010. },
  16011. },
  16012. [
  16013. {
  16014. name: "Micro",
  16015. height: math.unit(6, "inches"),
  16016. default: true
  16017. },
  16018. {
  16019. name: "Normal",
  16020. height: math.unit(5 + 4 / 12, "feet")
  16021. },
  16022. ]
  16023. ))
  16024. characterMakers.push(() => makeCharacter(
  16025. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16026. {
  16027. front: {
  16028. height: math.unit(4 + 11 / 12, "feet"),
  16029. weight: math.unit(100, "lb"),
  16030. name: "Front",
  16031. image: {
  16032. source: "./media/characters/luno/front.svg",
  16033. extra: 1535 / 1487,
  16034. bottom: 0.03
  16035. }
  16036. },
  16037. },
  16038. [
  16039. {
  16040. name: "Micro",
  16041. height: math.unit(3, "inches")
  16042. },
  16043. {
  16044. name: "Normal",
  16045. height: math.unit(4 + 11 / 12, "feet"),
  16046. default: true
  16047. },
  16048. {
  16049. name: "Macro",
  16050. height: math.unit(300, "feet")
  16051. },
  16052. {
  16053. name: "Megamacro",
  16054. height: math.unit(700, "miles")
  16055. },
  16056. ]
  16057. ))
  16058. characterMakers.push(() => makeCharacter(
  16059. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16060. {
  16061. front: {
  16062. height: math.unit(6 + 2 / 12, "feet"),
  16063. weight: math.unit(170, "lb"),
  16064. name: "Front",
  16065. image: {
  16066. source: "./media/characters/jamesy/front.svg",
  16067. extra: 440 / 382,
  16068. bottom: 0.005
  16069. }
  16070. },
  16071. },
  16072. [
  16073. {
  16074. name: "Micro",
  16075. height: math.unit(3, "inches")
  16076. },
  16077. {
  16078. name: "Normal",
  16079. height: math.unit(6 + 2 / 12, "feet"),
  16080. default: true
  16081. },
  16082. {
  16083. name: "Macro",
  16084. height: math.unit(300, "feet")
  16085. },
  16086. {
  16087. name: "Megamacro",
  16088. height: math.unit(700, "miles")
  16089. },
  16090. ]
  16091. ))
  16092. characterMakers.push(() => makeCharacter(
  16093. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16094. {
  16095. front: {
  16096. height: math.unit(6, "feet"),
  16097. weight: math.unit(160, "lb"),
  16098. name: "Front",
  16099. image: {
  16100. source: "./media/characters/mark/front.svg",
  16101. extra: 3300 / 3100,
  16102. bottom: 136.42 / 3440.47
  16103. }
  16104. },
  16105. },
  16106. [
  16107. {
  16108. name: "Macro",
  16109. height: math.unit(120, "meters")
  16110. },
  16111. {
  16112. name: "Bigger Macro",
  16113. height: math.unit(350, "meters")
  16114. },
  16115. {
  16116. name: "Megamacro",
  16117. height: math.unit(8, "km"),
  16118. default: true
  16119. },
  16120. {
  16121. name: "Continental",
  16122. height: math.unit(4550, "km")
  16123. },
  16124. {
  16125. name: "Planetary",
  16126. height: math.unit(65000, "km")
  16127. },
  16128. ]
  16129. ))
  16130. characterMakers.push(() => makeCharacter(
  16131. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16132. {
  16133. front: {
  16134. height: math.unit(6, "feet"),
  16135. weight: math.unit(400, "lb"),
  16136. name: "Front",
  16137. image: {
  16138. source: "./media/characters/mac/front.svg",
  16139. extra: 1048 / 987.7,
  16140. bottom: 60 / 1107.6,
  16141. }
  16142. },
  16143. },
  16144. [
  16145. {
  16146. name: "Macro",
  16147. height: math.unit(500, "feet"),
  16148. default: true
  16149. },
  16150. ]
  16151. ))
  16152. characterMakers.push(() => makeCharacter(
  16153. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16154. {
  16155. front: {
  16156. height: math.unit(5 + 2 / 12, "feet"),
  16157. weight: math.unit(190, "lb"),
  16158. name: "Front",
  16159. image: {
  16160. source: "./media/characters/bari/front.svg",
  16161. extra: 3156 / 2880,
  16162. bottom: 0.03
  16163. }
  16164. },
  16165. back: {
  16166. height: math.unit(5 + 2 / 12, "feet"),
  16167. weight: math.unit(190, "lb"),
  16168. name: "Back",
  16169. image: {
  16170. source: "./media/characters/bari/back.svg",
  16171. extra: 3260 / 2834,
  16172. bottom: 0.025
  16173. }
  16174. },
  16175. frontPlush: {
  16176. height: math.unit(5 + 2 / 12, "feet"),
  16177. weight: math.unit(190, "lb"),
  16178. name: "Front (Plush)",
  16179. image: {
  16180. source: "./media/characters/bari/front-plush.svg",
  16181. extra: 1112 / 1061,
  16182. bottom: 0.002
  16183. }
  16184. },
  16185. },
  16186. [
  16187. {
  16188. name: "Micro",
  16189. height: math.unit(3, "inches")
  16190. },
  16191. {
  16192. name: "Normal",
  16193. height: math.unit(5 + 2 / 12, "feet"),
  16194. default: true
  16195. },
  16196. {
  16197. name: "Macro",
  16198. height: math.unit(20, "feet")
  16199. },
  16200. ]
  16201. ))
  16202. characterMakers.push(() => makeCharacter(
  16203. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16204. {
  16205. front: {
  16206. height: math.unit(6 + 1 / 12, "feet"),
  16207. weight: math.unit(275, "lb"),
  16208. name: "Front",
  16209. image: {
  16210. source: "./media/characters/hunter-misha-raven/front.svg"
  16211. }
  16212. },
  16213. },
  16214. [
  16215. {
  16216. name: "Mortal",
  16217. height: math.unit(6 + 1 / 12, "feet")
  16218. },
  16219. {
  16220. name: "Divine",
  16221. height: math.unit(1.12134e34, "parsecs"),
  16222. default: true
  16223. },
  16224. ]
  16225. ))
  16226. characterMakers.push(() => makeCharacter(
  16227. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16228. {
  16229. front: {
  16230. height: math.unit(6 + 3 / 12, "feet"),
  16231. weight: math.unit(220, "lb"),
  16232. name: "Front",
  16233. image: {
  16234. source: "./media/characters/max-calore/front.svg",
  16235. extra: 1700 / 1648,
  16236. bottom: 0.01
  16237. }
  16238. },
  16239. back: {
  16240. height: math.unit(6 + 3 / 12, "feet"),
  16241. weight: math.unit(220, "lb"),
  16242. name: "Back",
  16243. image: {
  16244. source: "./media/characters/max-calore/back.svg",
  16245. extra: 1700 / 1648,
  16246. bottom: 0.01
  16247. }
  16248. },
  16249. },
  16250. [
  16251. {
  16252. name: "Normal",
  16253. height: math.unit(6 + 3 / 12, "feet"),
  16254. default: true
  16255. },
  16256. ]
  16257. ))
  16258. characterMakers.push(() => makeCharacter(
  16259. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16260. {
  16261. side: {
  16262. height: math.unit(2 + 8 / 12, "feet"),
  16263. weight: math.unit(99, "lb"),
  16264. name: "Side",
  16265. image: {
  16266. source: "./media/characters/aspen/side.svg",
  16267. extra: 152 / 138,
  16268. bottom: 0.032
  16269. }
  16270. },
  16271. },
  16272. [
  16273. {
  16274. name: "Normal",
  16275. height: math.unit(2 + 8 / 12, "feet"),
  16276. default: true
  16277. },
  16278. ]
  16279. ))
  16280. characterMakers.push(() => makeCharacter(
  16281. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16282. {
  16283. side: {
  16284. height: math.unit(3 + 2 / 12, "feet"),
  16285. weight: math.unit(224, "lb"),
  16286. name: "Side",
  16287. image: {
  16288. source: "./media/characters/sheila-feral-wolf/side.svg",
  16289. extra: 179 / 166,
  16290. bottom: 0.03
  16291. }
  16292. },
  16293. },
  16294. [
  16295. {
  16296. name: "Normal",
  16297. height: math.unit(3 + 2 / 12, "feet"),
  16298. default: true
  16299. },
  16300. ]
  16301. ))
  16302. characterMakers.push(() => makeCharacter(
  16303. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16304. {
  16305. side: {
  16306. height: math.unit(1 + 9 / 12, "feet"),
  16307. weight: math.unit(38, "lb"),
  16308. name: "Side",
  16309. image: {
  16310. source: "./media/characters/michelle/side.svg",
  16311. extra: 147 / 136.7,
  16312. bottom: 0.03
  16313. }
  16314. },
  16315. },
  16316. [
  16317. {
  16318. name: "Normal",
  16319. height: math.unit(1 + 9 / 12, "feet"),
  16320. default: true
  16321. },
  16322. ]
  16323. ))
  16324. characterMakers.push(() => makeCharacter(
  16325. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16326. {
  16327. front: {
  16328. height: math.unit(1 + 1 / 12, "feet"),
  16329. weight: math.unit(18, "lb"),
  16330. name: "Front",
  16331. image: {
  16332. source: "./media/characters/nino/front.svg"
  16333. }
  16334. },
  16335. },
  16336. [
  16337. {
  16338. name: "Normal",
  16339. height: math.unit(1 + 1 / 12, "feet"),
  16340. default: true
  16341. },
  16342. ]
  16343. ))
  16344. characterMakers.push(() => makeCharacter(
  16345. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16346. {
  16347. front: {
  16348. height: math.unit(1, "feet"),
  16349. weight: math.unit(16, "lb"),
  16350. name: "Front",
  16351. image: {
  16352. source: "./media/characters/viola/front.svg"
  16353. }
  16354. },
  16355. },
  16356. [
  16357. {
  16358. name: "Normal",
  16359. height: math.unit(1, "feet"),
  16360. default: true
  16361. },
  16362. ]
  16363. ))
  16364. characterMakers.push(() => makeCharacter(
  16365. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16366. {
  16367. front: {
  16368. height: math.unit(6 + 5 / 12, "feet"),
  16369. weight: math.unit(580, "lb"),
  16370. name: "Front",
  16371. image: {
  16372. source: "./media/characters/atlas/front.svg",
  16373. extra: 298.5 / 290,
  16374. bottom: 0.015
  16375. }
  16376. },
  16377. },
  16378. [
  16379. {
  16380. name: "Normal",
  16381. height: math.unit(6 + 5 / 12, "feet"),
  16382. default: true
  16383. },
  16384. ]
  16385. ))
  16386. characterMakers.push(() => makeCharacter(
  16387. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16388. {
  16389. side: {
  16390. height: math.unit(1 + 10 / 12, "feet"),
  16391. weight: math.unit(25, "lb"),
  16392. name: "Side",
  16393. image: {
  16394. source: "./media/characters/davy/side.svg",
  16395. extra: 200 / 170,
  16396. bottom: 0.01
  16397. }
  16398. },
  16399. },
  16400. [
  16401. {
  16402. name: "Normal",
  16403. height: math.unit(1 + 10 / 12, "feet"),
  16404. default: true
  16405. },
  16406. ]
  16407. ))
  16408. characterMakers.push(() => makeCharacter(
  16409. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16410. {
  16411. side: {
  16412. height: math.unit(4 + 8 / 12, "feet"),
  16413. weight: math.unit(166, "lb"),
  16414. name: "Side",
  16415. image: {
  16416. source: "./media/characters/fiona/side.svg",
  16417. extra: 232 / 220,
  16418. bottom: 0.03
  16419. }
  16420. },
  16421. },
  16422. [
  16423. {
  16424. name: "Normal",
  16425. height: math.unit(4 + 8 / 12, "feet"),
  16426. default: true
  16427. },
  16428. ]
  16429. ))
  16430. characterMakers.push(() => makeCharacter(
  16431. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16432. {
  16433. front: {
  16434. height: math.unit(2, "feet"),
  16435. weight: math.unit(62, "lb"),
  16436. name: "Front",
  16437. image: {
  16438. source: "./media/characters/lyla/front.svg",
  16439. bottom: 0.1
  16440. }
  16441. },
  16442. },
  16443. [
  16444. {
  16445. name: "Normal",
  16446. height: math.unit(2, "feet"),
  16447. default: true
  16448. },
  16449. ]
  16450. ))
  16451. characterMakers.push(() => makeCharacter(
  16452. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16453. {
  16454. side: {
  16455. height: math.unit(1.8, "feet"),
  16456. weight: math.unit(44, "lb"),
  16457. name: "Side",
  16458. image: {
  16459. source: "./media/characters/perseus/side.svg",
  16460. bottom: 0.21
  16461. }
  16462. },
  16463. },
  16464. [
  16465. {
  16466. name: "Normal",
  16467. height: math.unit(1.8, "feet"),
  16468. default: true
  16469. },
  16470. ]
  16471. ))
  16472. characterMakers.push(() => makeCharacter(
  16473. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16474. {
  16475. side: {
  16476. height: math.unit(4 + 2 / 12, "feet"),
  16477. weight: math.unit(20, "lb"),
  16478. name: "Side",
  16479. image: {
  16480. source: "./media/characters/remus/side.svg"
  16481. }
  16482. },
  16483. },
  16484. [
  16485. {
  16486. name: "Normal",
  16487. height: math.unit(4 + 2 / 12, "feet"),
  16488. default: true
  16489. },
  16490. ]
  16491. ))
  16492. characterMakers.push(() => makeCharacter(
  16493. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16494. {
  16495. front: {
  16496. height: math.unit(4 + 11 / 12, "feet"),
  16497. weight: math.unit(114, "lb"),
  16498. name: "Front",
  16499. image: {
  16500. source: "./media/characters/raf/front.svg",
  16501. bottom: 20.5 / 1863
  16502. }
  16503. },
  16504. side: {
  16505. height: math.unit(4 + 11 / 12, "feet"),
  16506. weight: math.unit(114, "lb"),
  16507. name: "Side",
  16508. image: {
  16509. source: "./media/characters/raf/side.svg",
  16510. bottom: 22 / 1822
  16511. }
  16512. },
  16513. },
  16514. [
  16515. {
  16516. name: "Micro",
  16517. height: math.unit(2, "inches")
  16518. },
  16519. {
  16520. name: "Normal",
  16521. height: math.unit(4 + 11 / 12, "feet"),
  16522. default: true
  16523. },
  16524. {
  16525. name: "Macro",
  16526. height: math.unit(70, "feet")
  16527. },
  16528. ]
  16529. ))
  16530. characterMakers.push(() => makeCharacter(
  16531. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16532. {
  16533. front: {
  16534. height: math.unit(1.5, "meters"),
  16535. weight: math.unit(68, "kg"),
  16536. name: "Front",
  16537. image: {
  16538. source: "./media/characters/liam-einarr/front.svg",
  16539. extra: 2822 / 2666
  16540. }
  16541. },
  16542. back: {
  16543. height: math.unit(1.5, "meters"),
  16544. weight: math.unit(68, "kg"),
  16545. name: "Back",
  16546. image: {
  16547. source: "./media/characters/liam-einarr/back.svg",
  16548. extra: 2822 / 2666,
  16549. bottom: 0.015
  16550. }
  16551. },
  16552. },
  16553. [
  16554. {
  16555. name: "Normal",
  16556. height: math.unit(1.5, "meters"),
  16557. default: true
  16558. },
  16559. {
  16560. name: "Macro",
  16561. height: math.unit(150, "meters")
  16562. },
  16563. {
  16564. name: "Megamacro",
  16565. height: math.unit(35, "km")
  16566. },
  16567. ]
  16568. ))
  16569. characterMakers.push(() => makeCharacter(
  16570. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16571. {
  16572. front: {
  16573. height: math.unit(6, "feet"),
  16574. weight: math.unit(75, "kg"),
  16575. name: "Front",
  16576. image: {
  16577. source: "./media/characters/linda/front.svg",
  16578. extra: 930 / 874,
  16579. bottom: 0.004
  16580. }
  16581. },
  16582. },
  16583. [
  16584. {
  16585. name: "Normal",
  16586. height: math.unit(6, "feet"),
  16587. default: true
  16588. },
  16589. ]
  16590. ))
  16591. characterMakers.push(() => makeCharacter(
  16592. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16593. {
  16594. front: {
  16595. height: math.unit(6 + 8 / 12, "feet"),
  16596. weight: math.unit(220, "lb"),
  16597. name: "Front",
  16598. image: {
  16599. source: "./media/characters/caylex/front.svg",
  16600. extra: 821 / 772,
  16601. bottom: 0.07
  16602. }
  16603. },
  16604. back: {
  16605. height: math.unit(6 + 8 / 12, "feet"),
  16606. weight: math.unit(220, "lb"),
  16607. name: "Back",
  16608. image: {
  16609. source: "./media/characters/caylex/back.svg",
  16610. extra: 821 / 772,
  16611. bottom: 0.022
  16612. }
  16613. },
  16614. hand: {
  16615. height: math.unit(1.25, "feet"),
  16616. name: "Hand",
  16617. image: {
  16618. source: "./media/characters/caylex/hand.svg"
  16619. }
  16620. },
  16621. foot: {
  16622. height: math.unit(1.6, "feet"),
  16623. name: "Foot",
  16624. image: {
  16625. source: "./media/characters/caylex/foot.svg"
  16626. }
  16627. },
  16628. armored: {
  16629. height: math.unit(6 + 8 / 12, "feet"),
  16630. weight: math.unit(250, "lb"),
  16631. name: "Armored",
  16632. image: {
  16633. source: "./media/characters/caylex/armored.svg",
  16634. extra: 1420 / 1310,
  16635. bottom: 0.045
  16636. }
  16637. },
  16638. },
  16639. [
  16640. {
  16641. name: "Normal",
  16642. height: math.unit(6 + 8 / 12, "feet"),
  16643. default: true
  16644. },
  16645. {
  16646. name: "Normal+",
  16647. height: math.unit(12, "feet")
  16648. },
  16649. ]
  16650. ))
  16651. characterMakers.push(() => makeCharacter(
  16652. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16653. {
  16654. front: {
  16655. height: math.unit(7 + 6 / 12, "feet"),
  16656. weight: math.unit(288, "lb"),
  16657. name: "Front",
  16658. image: {
  16659. source: "./media/characters/alana/front.svg",
  16660. extra: 679 / 653,
  16661. bottom: 22.5 / 701
  16662. }
  16663. },
  16664. },
  16665. [
  16666. {
  16667. name: "Normal",
  16668. height: math.unit(7 + 6 / 12, "feet")
  16669. },
  16670. {
  16671. name: "Large",
  16672. height: math.unit(50, "feet")
  16673. },
  16674. {
  16675. name: "Macro",
  16676. height: math.unit(100, "feet"),
  16677. default: true
  16678. },
  16679. {
  16680. name: "Macro+",
  16681. height: math.unit(200, "feet")
  16682. },
  16683. ]
  16684. ))
  16685. characterMakers.push(() => makeCharacter(
  16686. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16687. {
  16688. front: {
  16689. height: math.unit(6 + 1 / 12, "feet"),
  16690. weight: math.unit(210, "lb"),
  16691. name: "Front",
  16692. image: {
  16693. source: "./media/characters/hasani/front.svg",
  16694. extra: 244 / 232,
  16695. bottom: 0.01
  16696. }
  16697. },
  16698. back: {
  16699. height: math.unit(6 + 1 / 12, "feet"),
  16700. weight: math.unit(210, "lb"),
  16701. name: "Back",
  16702. image: {
  16703. source: "./media/characters/hasani/back.svg",
  16704. extra: 244 / 232,
  16705. bottom: 0.01
  16706. }
  16707. },
  16708. },
  16709. [
  16710. {
  16711. name: "Normal",
  16712. height: math.unit(6 + 1 / 12, "feet")
  16713. },
  16714. {
  16715. name: "Macro",
  16716. height: math.unit(175, "feet"),
  16717. default: true
  16718. },
  16719. ]
  16720. ))
  16721. characterMakers.push(() => makeCharacter(
  16722. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16723. {
  16724. front: {
  16725. height: math.unit(1.82, "meters"),
  16726. weight: math.unit(140, "lb"),
  16727. name: "Front",
  16728. image: {
  16729. source: "./media/characters/nita/front.svg",
  16730. extra: 2473 / 2363,
  16731. bottom: 0.01
  16732. }
  16733. },
  16734. },
  16735. [
  16736. {
  16737. name: "Normal",
  16738. height: math.unit(1.82, "m")
  16739. },
  16740. {
  16741. name: "Macro",
  16742. height: math.unit(300, "m")
  16743. },
  16744. {
  16745. name: "Mistake Canon",
  16746. height: math.unit(0.5, "miles"),
  16747. default: true
  16748. },
  16749. {
  16750. name: "Big Mistake",
  16751. height: math.unit(13, "miles")
  16752. },
  16753. {
  16754. name: "Playing God",
  16755. height: math.unit(2450, "miles")
  16756. },
  16757. ]
  16758. ))
  16759. characterMakers.push(() => makeCharacter(
  16760. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16761. {
  16762. front: {
  16763. height: math.unit(4, "feet"),
  16764. weight: math.unit(120, "lb"),
  16765. name: "Front",
  16766. image: {
  16767. source: "./media/characters/shiriko/front.svg",
  16768. extra: 195 / 188
  16769. }
  16770. },
  16771. },
  16772. [
  16773. {
  16774. name: "Normal",
  16775. height: math.unit(4, "feet"),
  16776. default: true
  16777. },
  16778. ]
  16779. ))
  16780. characterMakers.push(() => makeCharacter(
  16781. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16782. {
  16783. front: {
  16784. height: math.unit(6, "feet"),
  16785. name: "front",
  16786. image: {
  16787. source: "./media/characters/deja/front.svg",
  16788. extra: 926 / 840,
  16789. bottom: 0.07
  16790. }
  16791. },
  16792. },
  16793. [
  16794. {
  16795. name: "Planck Length",
  16796. height: math.unit(1.6e-35, "meters")
  16797. },
  16798. {
  16799. name: "Normal",
  16800. height: math.unit(30.48, "meters"),
  16801. default: true
  16802. },
  16803. {
  16804. name: "Universal",
  16805. height: math.unit(8.8e26, "meters")
  16806. },
  16807. ]
  16808. ))
  16809. characterMakers.push(() => makeCharacter(
  16810. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16811. {
  16812. side: {
  16813. height: math.unit(8, "feet"),
  16814. weight: math.unit(6300, "lb"),
  16815. name: "Side",
  16816. image: {
  16817. source: "./media/characters/anima/side.svg",
  16818. bottom: 0.035
  16819. }
  16820. },
  16821. },
  16822. [
  16823. {
  16824. name: "Normal",
  16825. height: math.unit(8, "feet"),
  16826. default: true
  16827. },
  16828. ]
  16829. ))
  16830. characterMakers.push(() => makeCharacter(
  16831. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16832. {
  16833. front: {
  16834. height: math.unit(8, "feet"),
  16835. weight: math.unit(350, "lb"),
  16836. name: "Front",
  16837. image: {
  16838. source: "./media/characters/bianca/front.svg",
  16839. extra: 234 / 225,
  16840. bottom: 0.03
  16841. }
  16842. },
  16843. },
  16844. [
  16845. {
  16846. name: "Normal",
  16847. height: math.unit(8, "feet"),
  16848. default: true
  16849. },
  16850. ]
  16851. ))
  16852. characterMakers.push(() => makeCharacter(
  16853. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16854. {
  16855. front: {
  16856. height: math.unit(6, "feet"),
  16857. weight: math.unit(150, "lb"),
  16858. name: "Front",
  16859. image: {
  16860. source: "./media/characters/adinia/front.svg",
  16861. extra: 1845 / 1672,
  16862. bottom: 0.02
  16863. }
  16864. },
  16865. back: {
  16866. height: math.unit(6, "feet"),
  16867. weight: math.unit(150, "lb"),
  16868. name: "Back",
  16869. image: {
  16870. source: "./media/characters/adinia/back.svg",
  16871. extra: 1845 / 1672,
  16872. bottom: 0.002
  16873. }
  16874. },
  16875. },
  16876. [
  16877. {
  16878. name: "Normal",
  16879. height: math.unit(11 + 5 / 12, "feet"),
  16880. default: true
  16881. },
  16882. ]
  16883. ))
  16884. characterMakers.push(() => makeCharacter(
  16885. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16886. {
  16887. front: {
  16888. height: math.unit(3, "meters"),
  16889. weight: math.unit(200, "kg"),
  16890. name: "Front",
  16891. image: {
  16892. source: "./media/characters/lykasa/front.svg",
  16893. extra: 1076 / 976,
  16894. bottom: 0.06
  16895. }
  16896. },
  16897. },
  16898. [
  16899. {
  16900. name: "Normal",
  16901. height: math.unit(3, "meters")
  16902. },
  16903. {
  16904. name: "Kaiju",
  16905. height: math.unit(120, "meters"),
  16906. default: true
  16907. },
  16908. {
  16909. name: "Mega Kaiju",
  16910. height: math.unit(240, "km")
  16911. },
  16912. {
  16913. name: "Giga Kaiju",
  16914. height: math.unit(400, "megameters")
  16915. },
  16916. {
  16917. name: "Tera Kaiju",
  16918. height: math.unit(800, "gigameters")
  16919. },
  16920. {
  16921. name: "Kaiju Dragon Goddess",
  16922. height: math.unit(26, "zettaparsecs")
  16923. },
  16924. ]
  16925. ))
  16926. characterMakers.push(() => makeCharacter(
  16927. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16928. {
  16929. side: {
  16930. height: math.unit(283 / 124 * 6, "feet"),
  16931. weight: math.unit(35000, "lb"),
  16932. name: "Side",
  16933. image: {
  16934. source: "./media/characters/malfaren/side.svg",
  16935. extra: 2500 / 1010,
  16936. bottom: 0.01
  16937. }
  16938. },
  16939. front: {
  16940. height: math.unit(22.36, "feet"),
  16941. weight: math.unit(35000, "lb"),
  16942. name: "Front",
  16943. image: {
  16944. source: "./media/characters/malfaren/front.svg",
  16945. extra: 1631 / 1476,
  16946. bottom: 0.01
  16947. }
  16948. },
  16949. maw: {
  16950. height: math.unit(6.9, "feet"),
  16951. name: "Maw",
  16952. image: {
  16953. source: "./media/characters/malfaren/maw.svg"
  16954. }
  16955. },
  16956. },
  16957. [
  16958. {
  16959. name: "Big",
  16960. height: math.unit(283 / 162 * 6, "feet"),
  16961. },
  16962. {
  16963. name: "Bigger",
  16964. height: math.unit(283 / 124 * 6, "feet")
  16965. },
  16966. {
  16967. name: "Massive",
  16968. height: math.unit(283 / 92 * 6, "feet"),
  16969. default: true
  16970. },
  16971. {
  16972. name: "👀💦",
  16973. height: math.unit(283 / 73 * 6, "feet"),
  16974. },
  16975. ]
  16976. ))
  16977. characterMakers.push(() => makeCharacter(
  16978. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16979. {
  16980. front: {
  16981. height: math.unit(1.7, "m"),
  16982. weight: math.unit(70, "kg"),
  16983. name: "Front",
  16984. image: {
  16985. source: "./media/characters/kernel/front.svg",
  16986. extra: 222 / 210,
  16987. bottom: 0.007
  16988. }
  16989. },
  16990. },
  16991. [
  16992. {
  16993. name: "Nano",
  16994. height: math.unit(17, "micrometers")
  16995. },
  16996. {
  16997. name: "Micro",
  16998. height: math.unit(1.7, "mm")
  16999. },
  17000. {
  17001. name: "Small",
  17002. height: math.unit(1.7, "cm")
  17003. },
  17004. {
  17005. name: "Normal",
  17006. height: math.unit(1.7, "m"),
  17007. default: true
  17008. },
  17009. ]
  17010. ))
  17011. characterMakers.push(() => makeCharacter(
  17012. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17013. {
  17014. front: {
  17015. height: math.unit(1.75, "meters"),
  17016. weight: math.unit(65, "kg"),
  17017. name: "Front",
  17018. image: {
  17019. source: "./media/characters/jayne-folest/front.svg",
  17020. extra: 2115 / 2007,
  17021. bottom: 0.02
  17022. }
  17023. },
  17024. back: {
  17025. height: math.unit(1.75, "meters"),
  17026. weight: math.unit(65, "kg"),
  17027. name: "Back",
  17028. image: {
  17029. source: "./media/characters/jayne-folest/back.svg",
  17030. extra: 2115 / 2007,
  17031. bottom: 0.005
  17032. }
  17033. },
  17034. frontClothed: {
  17035. height: math.unit(1.75, "meters"),
  17036. weight: math.unit(65, "kg"),
  17037. name: "Front (Clothed)",
  17038. image: {
  17039. source: "./media/characters/jayne-folest/front-clothed.svg",
  17040. extra: 2115 / 2007,
  17041. bottom: 0.035
  17042. }
  17043. },
  17044. hand: {
  17045. height: math.unit(1 / 1.260, "feet"),
  17046. name: "Hand",
  17047. image: {
  17048. source: "./media/characters/jayne-folest/hand.svg"
  17049. }
  17050. },
  17051. foot: {
  17052. height: math.unit(1 / 0.918, "feet"),
  17053. name: "Foot",
  17054. image: {
  17055. source: "./media/characters/jayne-folest/foot.svg"
  17056. }
  17057. },
  17058. },
  17059. [
  17060. {
  17061. name: "Micro",
  17062. height: math.unit(4, "cm")
  17063. },
  17064. {
  17065. name: "Normal",
  17066. height: math.unit(1.75, "meters")
  17067. },
  17068. {
  17069. name: "Macro",
  17070. height: math.unit(47.5, "meters"),
  17071. default: true
  17072. },
  17073. ]
  17074. ))
  17075. characterMakers.push(() => makeCharacter(
  17076. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17077. {
  17078. front: {
  17079. height: math.unit(180, "cm"),
  17080. weight: math.unit(70, "kg"),
  17081. name: "Front",
  17082. image: {
  17083. source: "./media/characters/algier/front.svg",
  17084. extra: 596 / 572,
  17085. bottom: 0.04
  17086. }
  17087. },
  17088. back: {
  17089. height: math.unit(180, "cm"),
  17090. weight: math.unit(70, "kg"),
  17091. name: "Back",
  17092. image: {
  17093. source: "./media/characters/algier/back.svg",
  17094. extra: 596 / 572,
  17095. bottom: 0.025
  17096. }
  17097. },
  17098. frontdressed: {
  17099. height: math.unit(180, "cm"),
  17100. weight: math.unit(150, "kg"),
  17101. name: "Front-dressed",
  17102. image: {
  17103. source: "./media/characters/algier/front-dressed.svg",
  17104. extra: 596 / 572,
  17105. bottom: 0.038
  17106. }
  17107. },
  17108. },
  17109. [
  17110. {
  17111. name: "Micro",
  17112. height: math.unit(5, "cm")
  17113. },
  17114. {
  17115. name: "Normal",
  17116. height: math.unit(180, "cm"),
  17117. default: true
  17118. },
  17119. {
  17120. name: "Macro",
  17121. height: math.unit(64, "m")
  17122. },
  17123. ]
  17124. ))
  17125. characterMakers.push(() => makeCharacter(
  17126. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17127. {
  17128. upright: {
  17129. height: math.unit(7, "feet"),
  17130. weight: math.unit(300, "lb"),
  17131. name: "Upright",
  17132. image: {
  17133. source: "./media/characters/pretzel/upright.svg",
  17134. extra: 534 / 522,
  17135. bottom: 0.065
  17136. }
  17137. },
  17138. sprawling: {
  17139. height: math.unit(3.75, "feet"),
  17140. weight: math.unit(300, "lb"),
  17141. name: "Sprawling",
  17142. image: {
  17143. source: "./media/characters/pretzel/sprawling.svg",
  17144. extra: 314 / 281,
  17145. bottom: 0.1
  17146. }
  17147. },
  17148. tongue: {
  17149. height: math.unit(2, "feet"),
  17150. name: "Tongue",
  17151. image: {
  17152. source: "./media/characters/pretzel/tongue.svg"
  17153. }
  17154. },
  17155. },
  17156. [
  17157. {
  17158. name: "Normal",
  17159. height: math.unit(7, "feet"),
  17160. default: true
  17161. },
  17162. {
  17163. name: "Oversized",
  17164. height: math.unit(15, "feet")
  17165. },
  17166. {
  17167. name: "Huge",
  17168. height: math.unit(30, "feet")
  17169. },
  17170. {
  17171. name: "Macro",
  17172. height: math.unit(250, "feet")
  17173. },
  17174. ]
  17175. ))
  17176. characterMakers.push(() => makeCharacter(
  17177. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17178. {
  17179. sideFront: {
  17180. height: math.unit(5 + 2 / 12, "feet"),
  17181. weight: math.unit(120, "lb"),
  17182. name: "Front Side",
  17183. image: {
  17184. source: "./media/characters/roxi/side-front.svg",
  17185. extra: 2924 / 2717,
  17186. bottom: 0.08
  17187. }
  17188. },
  17189. sideBack: {
  17190. height: math.unit(5 + 2 / 12, "feet"),
  17191. weight: math.unit(120, "lb"),
  17192. name: "Back Side",
  17193. image: {
  17194. source: "./media/characters/roxi/side-back.svg",
  17195. extra: 2904 / 2693,
  17196. bottom: 0.06
  17197. }
  17198. },
  17199. front: {
  17200. height: math.unit(5 + 2 / 12, "feet"),
  17201. weight: math.unit(120, "lb"),
  17202. name: "Front",
  17203. image: {
  17204. source: "./media/characters/roxi/front.svg",
  17205. extra: 2028 / 1907,
  17206. bottom: 0.01
  17207. }
  17208. },
  17209. frontAlt: {
  17210. height: math.unit(5 + 2 / 12, "feet"),
  17211. weight: math.unit(120, "lb"),
  17212. name: "Front (Alt)",
  17213. image: {
  17214. source: "./media/characters/roxi/front-alt.svg",
  17215. extra: 1828 / 1798,
  17216. bottom: 0.01
  17217. }
  17218. },
  17219. sitting: {
  17220. height: math.unit(2.8, "feet"),
  17221. weight: math.unit(120, "lb"),
  17222. name: "Sitting",
  17223. image: {
  17224. source: "./media/characters/roxi/sitting.svg",
  17225. extra: 2660 / 2462,
  17226. bottom: 0.1
  17227. }
  17228. },
  17229. },
  17230. [
  17231. {
  17232. name: "Normal",
  17233. height: math.unit(5 + 2 / 12, "feet"),
  17234. default: true
  17235. },
  17236. ]
  17237. ))
  17238. characterMakers.push(() => makeCharacter(
  17239. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17240. {
  17241. side: {
  17242. height: math.unit(55, "feet"),
  17243. weight: math.unit(153, "tons"),
  17244. name: "Side",
  17245. image: {
  17246. source: "./media/characters/shadow/side.svg",
  17247. extra: 701 / 628,
  17248. bottom: 0.02
  17249. }
  17250. },
  17251. flying: {
  17252. height: math.unit(145, "feet"),
  17253. weight: math.unit(153, "tons"),
  17254. name: "Flying",
  17255. image: {
  17256. source: "./media/characters/shadow/flying.svg"
  17257. }
  17258. },
  17259. },
  17260. [
  17261. {
  17262. name: "Normal",
  17263. height: math.unit(55, "feet"),
  17264. default: true
  17265. },
  17266. ]
  17267. ))
  17268. characterMakers.push(() => makeCharacter(
  17269. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17270. {
  17271. front: {
  17272. height: math.unit(6, "feet"),
  17273. weight: math.unit(200, "lb"),
  17274. name: "Front",
  17275. image: {
  17276. source: "./media/characters/marcie/front.svg",
  17277. extra: 960 / 876,
  17278. bottom: 58 / 1017.87
  17279. }
  17280. },
  17281. },
  17282. [
  17283. {
  17284. name: "Macro",
  17285. height: math.unit(1, "mile"),
  17286. default: true
  17287. },
  17288. ]
  17289. ))
  17290. characterMakers.push(() => makeCharacter(
  17291. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17292. {
  17293. front: {
  17294. height: math.unit(7, "feet"),
  17295. weight: math.unit(200, "lb"),
  17296. name: "Front",
  17297. image: {
  17298. source: "./media/characters/kachina/front.svg",
  17299. extra: 1290.68 / 1119,
  17300. bottom: 36.5 / 1327.18
  17301. }
  17302. },
  17303. },
  17304. [
  17305. {
  17306. name: "Normal",
  17307. height: math.unit(7, "feet"),
  17308. default: true
  17309. },
  17310. ]
  17311. ))
  17312. characterMakers.push(() => makeCharacter(
  17313. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17314. {
  17315. looking: {
  17316. height: math.unit(2, "meters"),
  17317. weight: math.unit(300, "kg"),
  17318. name: "Looking",
  17319. image: {
  17320. source: "./media/characters/kash/looking.svg",
  17321. extra: 474 / 344,
  17322. bottom: 0.03
  17323. }
  17324. },
  17325. side: {
  17326. height: math.unit(2, "meters"),
  17327. weight: math.unit(300, "kg"),
  17328. name: "Side",
  17329. image: {
  17330. source: "./media/characters/kash/side.svg",
  17331. extra: 302 / 251,
  17332. bottom: 0.03
  17333. }
  17334. },
  17335. front: {
  17336. height: math.unit(2, "meters"),
  17337. weight: math.unit(300, "kg"),
  17338. name: "Front",
  17339. image: {
  17340. source: "./media/characters/kash/front.svg",
  17341. extra: 495 / 360,
  17342. bottom: 0.015
  17343. }
  17344. },
  17345. },
  17346. [
  17347. {
  17348. name: "Normal",
  17349. height: math.unit(2, "meters"),
  17350. default: true
  17351. },
  17352. {
  17353. name: "Big",
  17354. height: math.unit(3, "meters")
  17355. },
  17356. {
  17357. name: "Large",
  17358. height: math.unit(5, "meters")
  17359. },
  17360. ]
  17361. ))
  17362. characterMakers.push(() => makeCharacter(
  17363. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17364. {
  17365. feeding: {
  17366. height: math.unit(6.7, "feet"),
  17367. weight: math.unit(350, "lb"),
  17368. name: "Feeding",
  17369. image: {
  17370. source: "./media/characters/lalim/feeding.svg",
  17371. }
  17372. },
  17373. },
  17374. [
  17375. {
  17376. name: "Normal",
  17377. height: math.unit(6.7, "feet"),
  17378. default: true
  17379. },
  17380. ]
  17381. ))
  17382. characterMakers.push(() => makeCharacter(
  17383. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17384. {
  17385. front: {
  17386. height: math.unit(9.5, "feet"),
  17387. weight: math.unit(600, "lb"),
  17388. name: "Front",
  17389. image: {
  17390. source: "./media/characters/de'vout/front.svg",
  17391. extra: 1443 / 1328,
  17392. bottom: 0.025
  17393. }
  17394. },
  17395. back: {
  17396. height: math.unit(9.5, "feet"),
  17397. weight: math.unit(600, "lb"),
  17398. name: "Back",
  17399. image: {
  17400. source: "./media/characters/de'vout/back.svg",
  17401. extra: 1443 / 1328
  17402. }
  17403. },
  17404. frontDressed: {
  17405. height: math.unit(9.5, "feet"),
  17406. weight: math.unit(600, "lb"),
  17407. name: "Front (Dressed",
  17408. image: {
  17409. source: "./media/characters/de'vout/front-dressed.svg",
  17410. extra: 1443 / 1328,
  17411. bottom: 0.025
  17412. }
  17413. },
  17414. backDressed: {
  17415. height: math.unit(9.5, "feet"),
  17416. weight: math.unit(600, "lb"),
  17417. name: "Back (Dressed",
  17418. image: {
  17419. source: "./media/characters/de'vout/back-dressed.svg",
  17420. extra: 1443 / 1328
  17421. }
  17422. },
  17423. },
  17424. [
  17425. {
  17426. name: "Normal",
  17427. height: math.unit(9.5, "feet"),
  17428. default: true
  17429. },
  17430. ]
  17431. ))
  17432. characterMakers.push(() => makeCharacter(
  17433. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17434. {
  17435. front: {
  17436. height: math.unit(8, "feet"),
  17437. weight: math.unit(225, "lb"),
  17438. name: "Front",
  17439. image: {
  17440. source: "./media/characters/talana/front.svg",
  17441. extra: 1410 / 1300,
  17442. bottom: 0.015
  17443. }
  17444. },
  17445. frontDressed: {
  17446. height: math.unit(8, "feet"),
  17447. weight: math.unit(225, "lb"),
  17448. name: "Front (Dressed",
  17449. image: {
  17450. source: "./media/characters/talana/front-dressed.svg",
  17451. extra: 1410 / 1300,
  17452. bottom: 0.015
  17453. }
  17454. },
  17455. },
  17456. [
  17457. {
  17458. name: "Normal",
  17459. height: math.unit(8, "feet"),
  17460. default: true
  17461. },
  17462. ]
  17463. ))
  17464. characterMakers.push(() => makeCharacter(
  17465. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17466. {
  17467. side: {
  17468. height: math.unit(7.2, "feet"),
  17469. weight: math.unit(150, "lb"),
  17470. name: "Side",
  17471. image: {
  17472. source: "./media/characters/xeauvok/side.svg",
  17473. extra: 1975 / 1523,
  17474. bottom: 0.07
  17475. }
  17476. },
  17477. },
  17478. [
  17479. {
  17480. name: "Normal",
  17481. height: math.unit(7.2, "feet"),
  17482. default: true
  17483. },
  17484. ]
  17485. ))
  17486. characterMakers.push(() => makeCharacter(
  17487. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17488. {
  17489. side: {
  17490. height: math.unit(10, "feet"),
  17491. weight: math.unit(900, "kg"),
  17492. name: "Side",
  17493. image: {
  17494. source: "./media/characters/zara/side.svg",
  17495. extra: 504 / 498
  17496. }
  17497. },
  17498. },
  17499. [
  17500. {
  17501. name: "Normal",
  17502. height: math.unit(10, "feet"),
  17503. default: true
  17504. },
  17505. ]
  17506. ))
  17507. characterMakers.push(() => makeCharacter(
  17508. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17509. {
  17510. side: {
  17511. height: math.unit(6, "feet"),
  17512. weight: math.unit(150, "lb"),
  17513. name: "Side",
  17514. image: {
  17515. source: "./media/characters/richard-dragon/side.svg",
  17516. extra: 845 / 340,
  17517. bottom: 0.017
  17518. }
  17519. },
  17520. maw: {
  17521. height: math.unit(2.97, "feet"),
  17522. name: "Maw",
  17523. image: {
  17524. source: "./media/characters/richard-dragon/maw.svg"
  17525. }
  17526. },
  17527. },
  17528. [
  17529. ]
  17530. ))
  17531. characterMakers.push(() => makeCharacter(
  17532. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17533. {
  17534. front: {
  17535. height: math.unit(4, "feet"),
  17536. weight: math.unit(100, "lb"),
  17537. name: "Front",
  17538. image: {
  17539. source: "./media/characters/richard-smeargle/front.svg",
  17540. extra: 2952 / 2820,
  17541. bottom: 0.028
  17542. }
  17543. },
  17544. },
  17545. [
  17546. {
  17547. name: "Normal",
  17548. height: math.unit(4, "feet"),
  17549. default: true
  17550. },
  17551. {
  17552. name: "Dynamax",
  17553. height: math.unit(20, "meters")
  17554. },
  17555. ]
  17556. ))
  17557. characterMakers.push(() => makeCharacter(
  17558. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17559. {
  17560. front: {
  17561. height: math.unit(6, "feet"),
  17562. weight: math.unit(110, "lb"),
  17563. name: "Front",
  17564. image: {
  17565. source: "./media/characters/klay/front.svg",
  17566. extra: 962 / 883,
  17567. bottom: 0.04
  17568. }
  17569. },
  17570. back: {
  17571. height: math.unit(6, "feet"),
  17572. weight: math.unit(110, "lb"),
  17573. name: "Back",
  17574. image: {
  17575. source: "./media/characters/klay/back.svg",
  17576. extra: 962 / 883
  17577. }
  17578. },
  17579. beans: {
  17580. height: math.unit(1.15, "feet"),
  17581. name: "Beans",
  17582. image: {
  17583. source: "./media/characters/klay/beans.svg"
  17584. }
  17585. },
  17586. },
  17587. [
  17588. {
  17589. name: "Micro",
  17590. height: math.unit(6, "inches")
  17591. },
  17592. {
  17593. name: "Mini",
  17594. height: math.unit(3, "feet")
  17595. },
  17596. {
  17597. name: "Normal",
  17598. height: math.unit(6, "feet"),
  17599. default: true
  17600. },
  17601. {
  17602. name: "Big",
  17603. height: math.unit(25, "feet")
  17604. },
  17605. {
  17606. name: "Macro",
  17607. height: math.unit(100, "feet")
  17608. },
  17609. {
  17610. name: "Megamacro",
  17611. height: math.unit(400, "feet")
  17612. },
  17613. ]
  17614. ))
  17615. characterMakers.push(() => makeCharacter(
  17616. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17617. {
  17618. front: {
  17619. height: math.unit(6, "feet"),
  17620. weight: math.unit(160, "lb"),
  17621. name: "Front",
  17622. image: {
  17623. source: "./media/characters/marcus/front.svg",
  17624. extra: 734 / 676,
  17625. bottom: 0.03
  17626. }
  17627. },
  17628. },
  17629. [
  17630. {
  17631. name: "Little",
  17632. height: math.unit(6, "feet")
  17633. },
  17634. {
  17635. name: "Normal",
  17636. height: math.unit(110, "feet"),
  17637. default: true
  17638. },
  17639. {
  17640. name: "Macro",
  17641. height: math.unit(250, "feet")
  17642. },
  17643. {
  17644. name: "Megamacro",
  17645. height: math.unit(1000, "feet")
  17646. },
  17647. ]
  17648. ))
  17649. characterMakers.push(() => makeCharacter(
  17650. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17651. {
  17652. front: {
  17653. height: math.unit(7, "feet"),
  17654. weight: math.unit(275, "lb"),
  17655. name: "Front",
  17656. image: {
  17657. source: "./media/characters/claude-delroute/front.svg",
  17658. extra: 230 / 214,
  17659. bottom: 0.007
  17660. }
  17661. },
  17662. side: {
  17663. height: math.unit(7, "feet"),
  17664. weight: math.unit(275, "lb"),
  17665. name: "Side",
  17666. image: {
  17667. source: "./media/characters/claude-delroute/side.svg",
  17668. extra: 222 / 214,
  17669. bottom: 0.01
  17670. }
  17671. },
  17672. back: {
  17673. height: math.unit(7, "feet"),
  17674. weight: math.unit(275, "lb"),
  17675. name: "Back",
  17676. image: {
  17677. source: "./media/characters/claude-delroute/back.svg",
  17678. extra: 230 / 214,
  17679. bottom: 0.015
  17680. }
  17681. },
  17682. maw: {
  17683. height: math.unit(0.6407, "meters"),
  17684. name: "Maw",
  17685. image: {
  17686. source: "./media/characters/claude-delroute/maw.svg"
  17687. }
  17688. },
  17689. },
  17690. [
  17691. {
  17692. name: "Normal",
  17693. height: math.unit(7, "feet"),
  17694. default: true
  17695. },
  17696. {
  17697. name: "Lorge",
  17698. height: math.unit(20, "feet")
  17699. },
  17700. ]
  17701. ))
  17702. characterMakers.push(() => makeCharacter(
  17703. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17704. {
  17705. front: {
  17706. height: math.unit(8 + 4 / 12, "feet"),
  17707. weight: math.unit(600, "lb"),
  17708. name: "Front",
  17709. image: {
  17710. source: "./media/characters/dragonien/front.svg",
  17711. extra: 100 / 94,
  17712. bottom: 3.3 / 103.3445
  17713. }
  17714. },
  17715. back: {
  17716. height: math.unit(8 + 4 / 12, "feet"),
  17717. weight: math.unit(600, "lb"),
  17718. name: "Back",
  17719. image: {
  17720. source: "./media/characters/dragonien/back.svg",
  17721. extra: 776 / 746,
  17722. bottom: 6.4 / 782.0616
  17723. }
  17724. },
  17725. foot: {
  17726. height: math.unit(1.54, "feet"),
  17727. name: "Foot",
  17728. image: {
  17729. source: "./media/characters/dragonien/foot.svg",
  17730. }
  17731. },
  17732. },
  17733. [
  17734. {
  17735. name: "Normal",
  17736. height: math.unit(8 + 4 / 12, "feet"),
  17737. default: true
  17738. },
  17739. {
  17740. name: "Macro",
  17741. height: math.unit(200, "feet")
  17742. },
  17743. {
  17744. name: "Megamacro",
  17745. height: math.unit(1, "mile")
  17746. },
  17747. {
  17748. name: "Gigamacro",
  17749. height: math.unit(1000, "miles")
  17750. },
  17751. ]
  17752. ))
  17753. characterMakers.push(() => makeCharacter(
  17754. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17755. {
  17756. front: {
  17757. height: math.unit(5 + 2 / 12, "feet"),
  17758. weight: math.unit(110, "lb"),
  17759. name: "Front",
  17760. image: {
  17761. source: "./media/characters/desta/front.svg",
  17762. extra: 767 / 726,
  17763. bottom: 11.7 / 779
  17764. }
  17765. },
  17766. back: {
  17767. height: math.unit(5 + 2 / 12, "feet"),
  17768. weight: math.unit(110, "lb"),
  17769. name: "Back",
  17770. image: {
  17771. source: "./media/characters/desta/back.svg",
  17772. extra: 777 / 728,
  17773. bottom: 6 / 784
  17774. }
  17775. },
  17776. frontAlt: {
  17777. height: math.unit(5 + 2 / 12, "feet"),
  17778. weight: math.unit(110, "lb"),
  17779. name: "Front",
  17780. image: {
  17781. source: "./media/characters/desta/front-alt.svg",
  17782. extra: 1482 / 1417
  17783. }
  17784. },
  17785. side: {
  17786. height: math.unit(5 + 2 / 12, "feet"),
  17787. weight: math.unit(110, "lb"),
  17788. name: "Side",
  17789. image: {
  17790. source: "./media/characters/desta/side.svg",
  17791. extra: 2579 / 2491,
  17792. bottom: 0.053
  17793. }
  17794. },
  17795. },
  17796. [
  17797. {
  17798. name: "Micro",
  17799. height: math.unit(6, "inches")
  17800. },
  17801. {
  17802. name: "Normal",
  17803. height: math.unit(5 + 2 / 12, "feet"),
  17804. default: true
  17805. },
  17806. {
  17807. name: "Macro",
  17808. height: math.unit(62, "feet")
  17809. },
  17810. {
  17811. name: "Megamacro",
  17812. height: math.unit(1800, "feet")
  17813. },
  17814. ]
  17815. ))
  17816. characterMakers.push(() => makeCharacter(
  17817. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17818. {
  17819. front: {
  17820. height: math.unit(10, "feet"),
  17821. weight: math.unit(700, "lb"),
  17822. name: "Front",
  17823. image: {
  17824. source: "./media/characters/storm-alystar/front.svg",
  17825. extra: 2112 / 1898,
  17826. bottom: 0.034
  17827. }
  17828. },
  17829. },
  17830. [
  17831. {
  17832. name: "Micro",
  17833. height: math.unit(3.5, "inches")
  17834. },
  17835. {
  17836. name: "Normal",
  17837. height: math.unit(10, "feet"),
  17838. default: true
  17839. },
  17840. {
  17841. name: "Macro",
  17842. height: math.unit(400, "feet")
  17843. },
  17844. {
  17845. name: "Deific",
  17846. height: math.unit(60, "miles")
  17847. },
  17848. ]
  17849. ))
  17850. characterMakers.push(() => makeCharacter(
  17851. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17852. {
  17853. front: {
  17854. height: math.unit(2.35, "meters"),
  17855. weight: math.unit(119, "kg"),
  17856. name: "Front",
  17857. image: {
  17858. source: "./media/characters/ilia/front.svg",
  17859. extra: 1285 / 1255,
  17860. bottom: 0.06
  17861. }
  17862. },
  17863. },
  17864. [
  17865. {
  17866. name: "Normal",
  17867. height: math.unit(2.35, "meters")
  17868. },
  17869. {
  17870. name: "Macro",
  17871. height: math.unit(140, "meters"),
  17872. default: true
  17873. },
  17874. {
  17875. name: "Megamacro",
  17876. height: math.unit(100, "miles")
  17877. },
  17878. ]
  17879. ))
  17880. characterMakers.push(() => makeCharacter(
  17881. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17882. {
  17883. front: {
  17884. height: math.unit(6 + 5 / 12, "feet"),
  17885. weight: math.unit(190, "lb"),
  17886. name: "Front",
  17887. image: {
  17888. source: "./media/characters/kingdead/front.svg",
  17889. extra: 1228 / 1177
  17890. }
  17891. },
  17892. },
  17893. [
  17894. {
  17895. name: "Micro",
  17896. height: math.unit(7, "inches")
  17897. },
  17898. {
  17899. name: "Normal",
  17900. height: math.unit(6 + 5 / 12, "feet")
  17901. },
  17902. {
  17903. name: "Macro",
  17904. height: math.unit(150, "feet"),
  17905. default: true
  17906. },
  17907. {
  17908. name: "Megamacro",
  17909. height: math.unit(200, "miles")
  17910. },
  17911. ]
  17912. ))
  17913. characterMakers.push(() => makeCharacter(
  17914. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17915. {
  17916. front: {
  17917. height: math.unit(8, "feet"),
  17918. weight: math.unit(600, "lb"),
  17919. name: "Front",
  17920. image: {
  17921. source: "./media/characters/kyrehx/front.svg",
  17922. extra: 1195 / 1095,
  17923. bottom: 0.034
  17924. }
  17925. },
  17926. },
  17927. [
  17928. {
  17929. name: "Micro",
  17930. height: math.unit(2, "inches")
  17931. },
  17932. {
  17933. name: "Normal",
  17934. height: math.unit(8, "feet"),
  17935. default: true
  17936. },
  17937. {
  17938. name: "Macro",
  17939. height: math.unit(255, "feet")
  17940. },
  17941. ]
  17942. ))
  17943. characterMakers.push(() => makeCharacter(
  17944. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17945. {
  17946. front: {
  17947. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17948. weight: math.unit(184, "lb"),
  17949. name: "Front",
  17950. image: {
  17951. source: "./media/characters/xang/front.svg",
  17952. extra: 845 / 755
  17953. }
  17954. },
  17955. },
  17956. [
  17957. {
  17958. name: "Normal",
  17959. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17960. default: true
  17961. },
  17962. {
  17963. name: "Macro",
  17964. height: math.unit(0.935 * 146, "feet")
  17965. },
  17966. {
  17967. name: "Megamacro",
  17968. height: math.unit(0.935 * 3, "miles")
  17969. },
  17970. ]
  17971. ))
  17972. characterMakers.push(() => makeCharacter(
  17973. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17974. {
  17975. frontDressed: {
  17976. height: math.unit(5 + 7 / 12, "feet"),
  17977. weight: math.unit(140, "lb"),
  17978. name: "Front (Dressed)",
  17979. image: {
  17980. source: "./media/characters/doc-weardno/front-dressed.svg",
  17981. extra: 263 / 234
  17982. }
  17983. },
  17984. backDressed: {
  17985. height: math.unit(5 + 7 / 12, "feet"),
  17986. weight: math.unit(140, "lb"),
  17987. name: "Back (Dressed)",
  17988. image: {
  17989. source: "./media/characters/doc-weardno/back-dressed.svg",
  17990. extra: 266 / 238
  17991. }
  17992. },
  17993. front: {
  17994. height: math.unit(5 + 7 / 12, "feet"),
  17995. weight: math.unit(140, "lb"),
  17996. name: "Front",
  17997. image: {
  17998. source: "./media/characters/doc-weardno/front.svg",
  17999. extra: 254 / 233
  18000. }
  18001. },
  18002. },
  18003. [
  18004. {
  18005. name: "Micro",
  18006. height: math.unit(3, "inches")
  18007. },
  18008. {
  18009. name: "Normal",
  18010. height: math.unit(5 + 7 / 12, "feet"),
  18011. default: true
  18012. },
  18013. {
  18014. name: "Macro",
  18015. height: math.unit(25, "feet")
  18016. },
  18017. {
  18018. name: "Megamacro",
  18019. height: math.unit(2, "miles")
  18020. },
  18021. ]
  18022. ))
  18023. characterMakers.push(() => makeCharacter(
  18024. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18025. {
  18026. front: {
  18027. height: math.unit(6 + 2 / 12, "feet"),
  18028. weight: math.unit(153, "lb"),
  18029. name: "Front",
  18030. image: {
  18031. source: "./media/characters/seth-whilst/front.svg",
  18032. bottom: 0.07
  18033. }
  18034. },
  18035. },
  18036. [
  18037. {
  18038. name: "Micro",
  18039. height: math.unit(5, "inches")
  18040. },
  18041. {
  18042. name: "Normal",
  18043. height: math.unit(6 + 2 / 12, "feet"),
  18044. default: true
  18045. },
  18046. ]
  18047. ))
  18048. characterMakers.push(() => makeCharacter(
  18049. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18050. {
  18051. front: {
  18052. height: math.unit(3, "inches"),
  18053. weight: math.unit(8, "grams"),
  18054. name: "Front",
  18055. image: {
  18056. source: "./media/characters/pocket-jabari/front.svg",
  18057. extra: 1024 / 974,
  18058. bottom: 0.039
  18059. }
  18060. },
  18061. },
  18062. [
  18063. {
  18064. name: "Minimicro",
  18065. height: math.unit(8, "mm")
  18066. },
  18067. {
  18068. name: "Micro",
  18069. height: math.unit(3, "inches"),
  18070. default: true
  18071. },
  18072. {
  18073. name: "Normal",
  18074. height: math.unit(3, "feet")
  18075. },
  18076. ]
  18077. ))
  18078. characterMakers.push(() => makeCharacter(
  18079. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18080. {
  18081. front: {
  18082. height: math.unit(15, "feet"),
  18083. weight: math.unit(3280, "lb"),
  18084. name: "Front",
  18085. image: {
  18086. source: "./media/characters/sapphy/front.svg",
  18087. extra: 671 / 577,
  18088. bottom: 0.085
  18089. }
  18090. },
  18091. back: {
  18092. height: math.unit(15, "feet"),
  18093. weight: math.unit(3280, "lb"),
  18094. name: "Back",
  18095. image: {
  18096. source: "./media/characters/sapphy/back.svg",
  18097. extra: 631 / 607,
  18098. bottom: 0.045
  18099. }
  18100. },
  18101. },
  18102. [
  18103. {
  18104. name: "Normal",
  18105. height: math.unit(15, "feet")
  18106. },
  18107. {
  18108. name: "Casual Macro",
  18109. height: math.unit(120, "feet")
  18110. },
  18111. {
  18112. name: "Macro",
  18113. height: math.unit(2150, "feet"),
  18114. default: true
  18115. },
  18116. {
  18117. name: "Megamacro",
  18118. height: math.unit(8, "miles")
  18119. },
  18120. {
  18121. name: "Galaxy Mom",
  18122. height: math.unit(6, "megalightyears")
  18123. },
  18124. ]
  18125. ))
  18126. characterMakers.push(() => makeCharacter(
  18127. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  18128. {
  18129. front: {
  18130. height: math.unit(6, "feet"),
  18131. weight: math.unit(170, "lb"),
  18132. name: "Front",
  18133. image: {
  18134. source: "./media/characters/kiro/front.svg",
  18135. extra: 1064 / 1012,
  18136. bottom: 0.052
  18137. }
  18138. },
  18139. },
  18140. [
  18141. {
  18142. name: "Micro",
  18143. height: math.unit(6, "inches")
  18144. },
  18145. {
  18146. name: "Normal",
  18147. height: math.unit(6, "feet"),
  18148. default: true
  18149. },
  18150. {
  18151. name: "Macro",
  18152. height: math.unit(72, "feet")
  18153. },
  18154. ]
  18155. ))
  18156. characterMakers.push(() => makeCharacter(
  18157. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18158. {
  18159. front: {
  18160. height: math.unit(5 + 9 / 12, "feet"),
  18161. weight: math.unit(175, "lb"),
  18162. name: "Front",
  18163. image: {
  18164. source: "./media/characters/irishfox/front.svg",
  18165. extra: 1912 / 1680,
  18166. bottom: 0.02
  18167. }
  18168. },
  18169. },
  18170. [
  18171. {
  18172. name: "Nano",
  18173. height: math.unit(1, "mm")
  18174. },
  18175. {
  18176. name: "Micro",
  18177. height: math.unit(2, "inches")
  18178. },
  18179. {
  18180. name: "Normal",
  18181. height: math.unit(5 + 9 / 12, "feet"),
  18182. default: true
  18183. },
  18184. {
  18185. name: "Macro",
  18186. height: math.unit(45, "feet")
  18187. },
  18188. ]
  18189. ))
  18190. characterMakers.push(() => makeCharacter(
  18191. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18192. {
  18193. front: {
  18194. height: math.unit(6 + 1 / 12, "feet"),
  18195. weight: math.unit(150, "lb"),
  18196. name: "Front",
  18197. image: {
  18198. source: "./media/characters/aronai-sieyes/front.svg",
  18199. extra: 1556 / 1480,
  18200. bottom: 0.015
  18201. }
  18202. },
  18203. side: {
  18204. height: math.unit(6 + 1 / 12, "feet"),
  18205. weight: math.unit(150, "lb"),
  18206. name: "Side",
  18207. image: {
  18208. source: "./media/characters/aronai-sieyes/side.svg",
  18209. extra: 1433 / 1390,
  18210. bottom: 0.0393
  18211. }
  18212. },
  18213. back: {
  18214. height: math.unit(6 + 1 / 12, "feet"),
  18215. weight: math.unit(150, "lb"),
  18216. name: "Back",
  18217. image: {
  18218. source: "./media/characters/aronai-sieyes/back.svg",
  18219. extra: 1544 / 1494,
  18220. bottom: 0.02
  18221. }
  18222. },
  18223. frontClothed: {
  18224. height: math.unit(6 + 1 / 12, "feet"),
  18225. weight: math.unit(150, "lb"),
  18226. name: "Front (Clothed)",
  18227. image: {
  18228. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18229. extra: 1582 / 1527
  18230. }
  18231. },
  18232. feral: {
  18233. height: math.unit(18, "feet"),
  18234. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  18235. name: "Feral",
  18236. image: {
  18237. source: "./media/characters/aronai-sieyes/feral.svg",
  18238. extra: 1530 / 1240,
  18239. bottom: 0.035
  18240. }
  18241. },
  18242. },
  18243. [
  18244. {
  18245. name: "Micro",
  18246. height: math.unit(2, "inches")
  18247. },
  18248. {
  18249. name: "Normal",
  18250. height: math.unit(6 + 1 / 12, "feet"),
  18251. default: true
  18252. }
  18253. ]
  18254. ))
  18255. characterMakers.push(() => makeCharacter(
  18256. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18257. {
  18258. front: {
  18259. height: math.unit(12, "feet"),
  18260. weight: math.unit(410, "kg"),
  18261. name: "Front",
  18262. image: {
  18263. source: "./media/characters/xuna/front.svg",
  18264. extra: 2184 / 1980
  18265. }
  18266. },
  18267. side: {
  18268. height: math.unit(12, "feet"),
  18269. weight: math.unit(410, "kg"),
  18270. name: "Side",
  18271. image: {
  18272. source: "./media/characters/xuna/side.svg",
  18273. extra: 2184 / 1980
  18274. }
  18275. },
  18276. back: {
  18277. height: math.unit(12, "feet"),
  18278. weight: math.unit(410, "kg"),
  18279. name: "Back",
  18280. image: {
  18281. source: "./media/characters/xuna/back.svg",
  18282. extra: 2184 / 1980
  18283. }
  18284. },
  18285. },
  18286. [
  18287. {
  18288. name: "Nano glow",
  18289. height: math.unit(10, "nm")
  18290. },
  18291. {
  18292. name: "Micro floof",
  18293. height: math.unit(0.3, "m")
  18294. },
  18295. {
  18296. name: "Huggable softy boi",
  18297. height: math.unit(3.6576, "m"),
  18298. default: true
  18299. },
  18300. {
  18301. name: "Admirable floof",
  18302. height: math.unit(80, "meters")
  18303. },
  18304. {
  18305. name: "Gentle macro",
  18306. height: math.unit(300, "meters")
  18307. },
  18308. {
  18309. name: "Very careful floof",
  18310. height: math.unit(3200, "meters")
  18311. },
  18312. {
  18313. name: "The mega floof",
  18314. height: math.unit(36000, "meters")
  18315. },
  18316. {
  18317. name: "Giga-fur-Wicker",
  18318. height: math.unit(4800000, "meters")
  18319. },
  18320. {
  18321. name: "Licky world",
  18322. height: math.unit(20000000, "meters")
  18323. },
  18324. {
  18325. name: "Floofy cyan sun",
  18326. height: math.unit(1500000000, "meters")
  18327. },
  18328. {
  18329. name: "Milky Wicker",
  18330. height: math.unit(1000000000000000000000, "meters")
  18331. },
  18332. {
  18333. name: "The observing Wicker",
  18334. height: math.unit(999999999999999999999999999, "meters")
  18335. },
  18336. ]
  18337. ))
  18338. characterMakers.push(() => makeCharacter(
  18339. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18340. {
  18341. front: {
  18342. height: math.unit(5 + 9 / 12, "feet"),
  18343. weight: math.unit(150, "lb"),
  18344. name: "Front",
  18345. image: {
  18346. source: "./media/characters/arokha-sieyes/front.svg",
  18347. extra: 1425 / 1284,
  18348. bottom: 0.05
  18349. }
  18350. },
  18351. },
  18352. [
  18353. {
  18354. name: "Normal",
  18355. height: math.unit(5 + 9 / 12, "feet")
  18356. },
  18357. {
  18358. name: "Macro",
  18359. height: math.unit(30, "meters"),
  18360. default: true
  18361. },
  18362. ]
  18363. ))
  18364. characterMakers.push(() => makeCharacter(
  18365. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18366. {
  18367. front: {
  18368. height: math.unit(6, "feet"),
  18369. weight: math.unit(180, "lb"),
  18370. name: "Front",
  18371. image: {
  18372. source: "./media/characters/arokh-sieyes/front.svg",
  18373. extra: 1830 / 1769,
  18374. bottom: 0.01
  18375. }
  18376. },
  18377. },
  18378. [
  18379. {
  18380. name: "Normal",
  18381. height: math.unit(6, "feet")
  18382. },
  18383. {
  18384. name: "Macro",
  18385. height: math.unit(30, "meters"),
  18386. default: true
  18387. },
  18388. ]
  18389. ))
  18390. characterMakers.push(() => makeCharacter(
  18391. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18392. {
  18393. side: {
  18394. height: math.unit(13 + 1 / 12, "feet"),
  18395. weight: math.unit(8.5, "tonnes"),
  18396. name: "Side",
  18397. image: {
  18398. source: "./media/characters/goldeneye/side.svg",
  18399. extra: 1182 / 778,
  18400. bottom: 0.067
  18401. }
  18402. },
  18403. paw: {
  18404. height: math.unit(3.4, "feet"),
  18405. name: "Paw",
  18406. image: {
  18407. source: "./media/characters/goldeneye/paw.svg"
  18408. }
  18409. },
  18410. },
  18411. [
  18412. {
  18413. name: "Normal",
  18414. height: math.unit(13 + 1 / 12, "feet"),
  18415. default: true
  18416. },
  18417. ]
  18418. ))
  18419. characterMakers.push(() => makeCharacter(
  18420. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18421. {
  18422. front: {
  18423. height: math.unit(6 + 1 / 12, "feet"),
  18424. weight: math.unit(210, "lb"),
  18425. name: "Front",
  18426. image: {
  18427. source: "./media/characters/leonardo-lycheborne/front.svg",
  18428. extra: 390 / 365,
  18429. bottom: 0.032
  18430. }
  18431. },
  18432. side: {
  18433. height: math.unit(6 + 1 / 12, "feet"),
  18434. weight: math.unit(210, "lb"),
  18435. name: "Side",
  18436. image: {
  18437. source: "./media/characters/leonardo-lycheborne/side.svg",
  18438. extra: 390 / 365,
  18439. bottom: 0.005
  18440. }
  18441. },
  18442. back: {
  18443. height: math.unit(6 + 1 / 12, "feet"),
  18444. weight: math.unit(210, "lb"),
  18445. name: "Back",
  18446. image: {
  18447. source: "./media/characters/leonardo-lycheborne/back.svg",
  18448. extra: 392 / 366,
  18449. bottom: 0.01
  18450. }
  18451. },
  18452. hand: {
  18453. height: math.unit(1.08, "feet"),
  18454. name: "Hand",
  18455. image: {
  18456. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18457. }
  18458. },
  18459. foot: {
  18460. height: math.unit(1.32, "feet"),
  18461. name: "Foot",
  18462. image: {
  18463. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18464. }
  18465. },
  18466. were: {
  18467. height: math.unit(20, "feet"),
  18468. weight: math.unit(7800, "lb"),
  18469. name: "Were",
  18470. image: {
  18471. source: "./media/characters/leonardo-lycheborne/were.svg",
  18472. extra: 308 / 294,
  18473. bottom: 0.048
  18474. }
  18475. },
  18476. feral: {
  18477. height: math.unit(7.5, "feet"),
  18478. weight: math.unit(600, "lb"),
  18479. name: "Feral",
  18480. image: {
  18481. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18482. extra: 210 / 186,
  18483. bottom: 0.108
  18484. }
  18485. },
  18486. taur: {
  18487. height: math.unit(11, "feet"),
  18488. weight: math.unit(3300, "lb"),
  18489. name: "Taur",
  18490. image: {
  18491. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18492. extra: 320 / 303,
  18493. bottom: 0.025
  18494. }
  18495. },
  18496. barghest: {
  18497. height: math.unit(11, "feet"),
  18498. weight: math.unit(1300, "lb"),
  18499. name: "Barghest",
  18500. image: {
  18501. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18502. extra: 323 / 302,
  18503. bottom: 0.027
  18504. }
  18505. },
  18506. dick: {
  18507. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18508. name: "Dick",
  18509. image: {
  18510. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18511. }
  18512. },
  18513. dickWere: {
  18514. height: math.unit((20) / 3.8, "feet"),
  18515. name: "Dick (Were)",
  18516. image: {
  18517. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18518. }
  18519. },
  18520. },
  18521. [
  18522. {
  18523. name: "Normal",
  18524. height: math.unit(6 + 1 / 12, "feet"),
  18525. default: true
  18526. },
  18527. ]
  18528. ))
  18529. characterMakers.push(() => makeCharacter(
  18530. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18531. {
  18532. front: {
  18533. height: math.unit(10, "feet"),
  18534. weight: math.unit(350, "lb"),
  18535. name: "Front",
  18536. image: {
  18537. source: "./media/characters/jet/front.svg",
  18538. extra: 2050 / 1980,
  18539. bottom: 0.013
  18540. }
  18541. },
  18542. back: {
  18543. height: math.unit(10, "feet"),
  18544. weight: math.unit(350, "lb"),
  18545. name: "Back",
  18546. image: {
  18547. source: "./media/characters/jet/back.svg",
  18548. extra: 2050 / 1980,
  18549. bottom: 0.013
  18550. }
  18551. },
  18552. },
  18553. [
  18554. {
  18555. name: "Micro",
  18556. height: math.unit(6, "inches")
  18557. },
  18558. {
  18559. name: "Normal",
  18560. height: math.unit(10, "feet"),
  18561. default: true
  18562. },
  18563. {
  18564. name: "Macro",
  18565. height: math.unit(100, "feet")
  18566. },
  18567. ]
  18568. ))
  18569. characterMakers.push(() => makeCharacter(
  18570. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18571. {
  18572. front: {
  18573. height: math.unit(15, "feet"),
  18574. weight: math.unit(2800, "lb"),
  18575. name: "Front",
  18576. image: {
  18577. source: "./media/characters/tanarath/front.svg",
  18578. extra: 2392 / 2220,
  18579. bottom: 0.03
  18580. }
  18581. },
  18582. back: {
  18583. height: math.unit(15, "feet"),
  18584. weight: math.unit(2800, "lb"),
  18585. name: "Back",
  18586. image: {
  18587. source: "./media/characters/tanarath/back.svg",
  18588. extra: 2392 / 2220,
  18589. bottom: 0.03
  18590. }
  18591. },
  18592. },
  18593. [
  18594. {
  18595. name: "Normal",
  18596. height: math.unit(15, "feet"),
  18597. default: true
  18598. },
  18599. ]
  18600. ))
  18601. characterMakers.push(() => makeCharacter(
  18602. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18603. {
  18604. front: {
  18605. height: math.unit(7 + 1 / 12, "feet"),
  18606. weight: math.unit(175, "lb"),
  18607. name: "Front",
  18608. image: {
  18609. source: "./media/characters/patty-cattybatty/front.svg",
  18610. extra: 908 / 874,
  18611. bottom: 0.025
  18612. }
  18613. },
  18614. },
  18615. [
  18616. {
  18617. name: "Micro",
  18618. height: math.unit(1, "inch")
  18619. },
  18620. {
  18621. name: "Normal",
  18622. height: math.unit(7 + 1 / 12, "feet")
  18623. },
  18624. {
  18625. name: "Mini Macro",
  18626. height: math.unit(155, "feet")
  18627. },
  18628. {
  18629. name: "Macro",
  18630. height: math.unit(1077, "feet")
  18631. },
  18632. {
  18633. name: "Mega Macro",
  18634. height: math.unit(47650, "feet"),
  18635. default: true
  18636. },
  18637. {
  18638. name: "Giga Macro",
  18639. height: math.unit(440, "miles")
  18640. },
  18641. {
  18642. name: "Tera Macro",
  18643. height: math.unit(8700, "miles")
  18644. },
  18645. {
  18646. name: "Planetary Macro",
  18647. height: math.unit(32700, "miles")
  18648. },
  18649. {
  18650. name: "Solar Macro",
  18651. height: math.unit(550000, "miles")
  18652. },
  18653. {
  18654. name: "Celestial Macro",
  18655. height: math.unit(2.5, "AU")
  18656. },
  18657. ]
  18658. ))
  18659. characterMakers.push(() => makeCharacter(
  18660. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18661. {
  18662. front: {
  18663. height: math.unit(4 + 5 / 12, "feet"),
  18664. weight: math.unit(90, "lb"),
  18665. name: "Front",
  18666. image: {
  18667. source: "./media/characters/cappu/front.svg",
  18668. extra: 1247 / 1152,
  18669. bottom: 0.012
  18670. }
  18671. },
  18672. },
  18673. [
  18674. {
  18675. name: "Normal",
  18676. height: math.unit(4 + 5 / 12, "feet"),
  18677. default: true
  18678. },
  18679. ]
  18680. ))
  18681. characterMakers.push(() => makeCharacter(
  18682. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18683. {
  18684. frontDressed: {
  18685. height: math.unit(70, "cm"),
  18686. weight: math.unit(6, "kg"),
  18687. name: "Front (Dressed)",
  18688. image: {
  18689. source: "./media/characters/sebi/front-dressed.svg",
  18690. extra: 713.5 / 686.5,
  18691. bottom: 0.003
  18692. }
  18693. },
  18694. front: {
  18695. height: math.unit(70, "cm"),
  18696. weight: math.unit(5, "kg"),
  18697. name: "Front",
  18698. image: {
  18699. source: "./media/characters/sebi/front.svg",
  18700. extra: 713.5 / 686.5,
  18701. bottom: 0.003
  18702. }
  18703. }
  18704. },
  18705. [
  18706. {
  18707. name: "Normal",
  18708. height: math.unit(70, "cm"),
  18709. default: true
  18710. },
  18711. {
  18712. name: "Macro",
  18713. height: math.unit(8, "meters")
  18714. },
  18715. ]
  18716. ))
  18717. characterMakers.push(() => makeCharacter(
  18718. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18719. {
  18720. front: {
  18721. height: math.unit(6, "feet"),
  18722. weight: math.unit(150, "lb"),
  18723. name: "Front",
  18724. image: {
  18725. source: "./media/characters/typhek/front.svg",
  18726. extra: 1948 / 1929,
  18727. bottom: 0.025
  18728. }
  18729. },
  18730. side: {
  18731. height: math.unit(6, "feet"),
  18732. weight: math.unit(150, "lb"),
  18733. name: "Side",
  18734. image: {
  18735. source: "./media/characters/typhek/side.svg",
  18736. extra: 2034 / 2010,
  18737. bottom: 0.003
  18738. }
  18739. },
  18740. back: {
  18741. height: math.unit(6, "feet"),
  18742. weight: math.unit(150, "lb"),
  18743. name: "Back",
  18744. image: {
  18745. source: "./media/characters/typhek/back.svg",
  18746. extra: 2005 / 1978,
  18747. bottom: 0.004
  18748. }
  18749. },
  18750. palm: {
  18751. height: math.unit(1.2, "feet"),
  18752. name: "Palm",
  18753. image: {
  18754. source: "./media/characters/typhek/palm.svg"
  18755. }
  18756. },
  18757. fist: {
  18758. height: math.unit(1.1, "feet"),
  18759. name: "Fist",
  18760. image: {
  18761. source: "./media/characters/typhek/fist.svg"
  18762. }
  18763. },
  18764. foot: {
  18765. height: math.unit(1.57, "feet"),
  18766. name: "Foot",
  18767. image: {
  18768. source: "./media/characters/typhek/foot.svg"
  18769. }
  18770. },
  18771. sole: {
  18772. height: math.unit(2.05, "feet"),
  18773. name: "Sole",
  18774. image: {
  18775. source: "./media/characters/typhek/sole.svg"
  18776. }
  18777. },
  18778. },
  18779. [
  18780. {
  18781. name: "Macro",
  18782. height: math.unit(40, "stories"),
  18783. default: true
  18784. },
  18785. {
  18786. name: "Megamacro",
  18787. height: math.unit(1, "mile")
  18788. },
  18789. {
  18790. name: "Gigamacro",
  18791. height: math.unit(4000, "solarradii")
  18792. },
  18793. {
  18794. name: "Universal",
  18795. height: math.unit(1.1, "universes")
  18796. }
  18797. ]
  18798. ))
  18799. characterMakers.push(() => makeCharacter(
  18800. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18801. {
  18802. side: {
  18803. height: math.unit(5 + 7 / 12, "feet"),
  18804. weight: math.unit(150, "lb"),
  18805. name: "Side",
  18806. image: {
  18807. source: "./media/characters/kassy/side.svg",
  18808. extra: 1280 / 1225,
  18809. bottom: 0.002
  18810. }
  18811. },
  18812. front: {
  18813. height: math.unit(5 + 7 / 12, "feet"),
  18814. weight: math.unit(150, "lb"),
  18815. name: "Front",
  18816. image: {
  18817. source: "./media/characters/kassy/front.svg",
  18818. extra: 1280 / 1225,
  18819. bottom: 0.025
  18820. }
  18821. },
  18822. back: {
  18823. height: math.unit(5 + 7 / 12, "feet"),
  18824. weight: math.unit(150, "lb"),
  18825. name: "Back",
  18826. image: {
  18827. source: "./media/characters/kassy/back.svg",
  18828. extra: 1280 / 1225,
  18829. bottom: 0.002
  18830. }
  18831. },
  18832. foot: {
  18833. height: math.unit(1.266, "feet"),
  18834. name: "Foot",
  18835. image: {
  18836. source: "./media/characters/kassy/foot.svg"
  18837. }
  18838. },
  18839. },
  18840. [
  18841. {
  18842. name: "Normal",
  18843. height: math.unit(5 + 7 / 12, "feet")
  18844. },
  18845. {
  18846. name: "Macro",
  18847. height: math.unit(137, "feet"),
  18848. default: true
  18849. },
  18850. {
  18851. name: "Megamacro",
  18852. height: math.unit(1, "mile")
  18853. },
  18854. ]
  18855. ))
  18856. characterMakers.push(() => makeCharacter(
  18857. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18858. {
  18859. front: {
  18860. height: math.unit(6 + 1 / 12, "feet"),
  18861. weight: math.unit(200, "lb"),
  18862. name: "Front",
  18863. image: {
  18864. source: "./media/characters/neil/front.svg",
  18865. extra: 1326 / 1250,
  18866. bottom: 0.023
  18867. }
  18868. },
  18869. },
  18870. [
  18871. {
  18872. name: "Normal",
  18873. height: math.unit(6 + 1 / 12, "feet"),
  18874. default: true
  18875. },
  18876. {
  18877. name: "Macro",
  18878. height: math.unit(200, "feet")
  18879. },
  18880. ]
  18881. ))
  18882. characterMakers.push(() => makeCharacter(
  18883. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18884. {
  18885. front: {
  18886. height: math.unit(5 + 9 / 12, "feet"),
  18887. weight: math.unit(190, "lb"),
  18888. name: "Front",
  18889. image: {
  18890. source: "./media/characters/atticus/front.svg",
  18891. extra: 2934 / 2785,
  18892. bottom: 0.025
  18893. }
  18894. },
  18895. },
  18896. [
  18897. {
  18898. name: "Normal",
  18899. height: math.unit(5 + 9 / 12, "feet"),
  18900. default: true
  18901. },
  18902. {
  18903. name: "Macro",
  18904. height: math.unit(180, "feet")
  18905. },
  18906. ]
  18907. ))
  18908. characterMakers.push(() => makeCharacter(
  18909. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18910. {
  18911. side: {
  18912. height: math.unit(9, "feet"),
  18913. weight: math.unit(650, "lb"),
  18914. name: "Side",
  18915. image: {
  18916. source: "./media/characters/milo/side.svg",
  18917. extra: 2644 / 2310,
  18918. bottom: 0.032
  18919. }
  18920. },
  18921. },
  18922. [
  18923. {
  18924. name: "Normal",
  18925. height: math.unit(9, "feet"),
  18926. default: true
  18927. },
  18928. {
  18929. name: "Macro",
  18930. height: math.unit(300, "feet")
  18931. },
  18932. ]
  18933. ))
  18934. characterMakers.push(() => makeCharacter(
  18935. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18936. {
  18937. side: {
  18938. height: math.unit(8, "meters"),
  18939. weight: math.unit(90000, "kg"),
  18940. name: "Side",
  18941. image: {
  18942. source: "./media/characters/ijzer/side.svg",
  18943. extra: 2756 / 1600,
  18944. bottom: 0.01
  18945. }
  18946. },
  18947. },
  18948. [
  18949. {
  18950. name: "Small",
  18951. height: math.unit(3, "meters")
  18952. },
  18953. {
  18954. name: "Normal",
  18955. height: math.unit(8, "meters"),
  18956. default: true
  18957. },
  18958. {
  18959. name: "Normal+",
  18960. height: math.unit(10, "meters")
  18961. },
  18962. {
  18963. name: "Bigger",
  18964. height: math.unit(24, "meters")
  18965. },
  18966. {
  18967. name: "Huge",
  18968. height: math.unit(80, "meters")
  18969. },
  18970. ]
  18971. ))
  18972. characterMakers.push(() => makeCharacter(
  18973. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18974. {
  18975. front: {
  18976. height: math.unit(6 + 2 / 12, "feet"),
  18977. weight: math.unit(153, "lb"),
  18978. name: "Front",
  18979. image: {
  18980. source: "./media/characters/luca-cervicum/front.svg",
  18981. extra: 370 / 327,
  18982. bottom: 0.015
  18983. }
  18984. },
  18985. back: {
  18986. height: math.unit(6 + 2 / 12, "feet"),
  18987. weight: math.unit(153, "lb"),
  18988. name: "Back",
  18989. image: {
  18990. source: "./media/characters/luca-cervicum/back.svg",
  18991. extra: 367 / 333,
  18992. bottom: 0.005
  18993. }
  18994. },
  18995. frontGear: {
  18996. height: math.unit(6 + 2 / 12, "feet"),
  18997. weight: math.unit(173, "lb"),
  18998. name: "Front (Gear)",
  18999. image: {
  19000. source: "./media/characters/luca-cervicum/front-gear.svg",
  19001. extra: 377 / 333,
  19002. bottom: 0.006
  19003. }
  19004. },
  19005. },
  19006. [
  19007. {
  19008. name: "Normal",
  19009. height: math.unit(6 + 2 / 12, "feet"),
  19010. default: true
  19011. },
  19012. ]
  19013. ))
  19014. characterMakers.push(() => makeCharacter(
  19015. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19016. {
  19017. front: {
  19018. height: math.unit(6 + 1 / 12, "feet"),
  19019. weight: math.unit(304, "lb"),
  19020. name: "Front",
  19021. image: {
  19022. source: "./media/characters/oliver/front.svg",
  19023. extra: 157 / 143,
  19024. bottom: 0.08
  19025. }
  19026. },
  19027. },
  19028. [
  19029. {
  19030. name: "Normal",
  19031. height: math.unit(6 + 1 / 12, "feet"),
  19032. default: true
  19033. },
  19034. ]
  19035. ))
  19036. characterMakers.push(() => makeCharacter(
  19037. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19038. {
  19039. front: {
  19040. height: math.unit(5 + 7 / 12, "feet"),
  19041. weight: math.unit(140, "lb"),
  19042. name: "Front",
  19043. image: {
  19044. source: "./media/characters/shane/front.svg",
  19045. extra: 304 / 289,
  19046. bottom: 0.005
  19047. }
  19048. },
  19049. },
  19050. [
  19051. {
  19052. name: "Normal",
  19053. height: math.unit(5 + 7 / 12, "feet"),
  19054. default: true
  19055. },
  19056. ]
  19057. ))
  19058. characterMakers.push(() => makeCharacter(
  19059. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19060. {
  19061. front: {
  19062. height: math.unit(5 + 9 / 12, "feet"),
  19063. weight: math.unit(178, "lb"),
  19064. name: "Front",
  19065. image: {
  19066. source: "./media/characters/shin/front.svg",
  19067. extra: 159 / 151,
  19068. bottom: 0.015
  19069. }
  19070. },
  19071. },
  19072. [
  19073. {
  19074. name: "Normal",
  19075. height: math.unit(5 + 9 / 12, "feet"),
  19076. default: true
  19077. },
  19078. ]
  19079. ))
  19080. characterMakers.push(() => makeCharacter(
  19081. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19082. {
  19083. front: {
  19084. height: math.unit(5 + 10 / 12, "feet"),
  19085. weight: math.unit(168, "lb"),
  19086. name: "Front",
  19087. image: {
  19088. source: "./media/characters/xerxes/front.svg",
  19089. extra: 282 / 260,
  19090. bottom: 0.045
  19091. }
  19092. },
  19093. },
  19094. [
  19095. {
  19096. name: "Normal",
  19097. height: math.unit(5 + 10 / 12, "feet"),
  19098. default: true
  19099. },
  19100. ]
  19101. ))
  19102. characterMakers.push(() => makeCharacter(
  19103. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19104. {
  19105. front: {
  19106. height: math.unit(6 + 7 / 12, "feet"),
  19107. weight: math.unit(208, "lb"),
  19108. name: "Front",
  19109. image: {
  19110. source: "./media/characters/chaska/front.svg",
  19111. extra: 332 / 319,
  19112. bottom: 0.015
  19113. }
  19114. },
  19115. },
  19116. [
  19117. {
  19118. name: "Normal",
  19119. height: math.unit(6 + 7 / 12, "feet"),
  19120. default: true
  19121. },
  19122. ]
  19123. ))
  19124. characterMakers.push(() => makeCharacter(
  19125. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19126. {
  19127. front: {
  19128. height: math.unit(5 + 8 / 12, "feet"),
  19129. weight: math.unit(208, "lb"),
  19130. name: "Front",
  19131. image: {
  19132. source: "./media/characters/enuk/front.svg",
  19133. extra: 437 / 406,
  19134. bottom: 0.02
  19135. }
  19136. },
  19137. },
  19138. [
  19139. {
  19140. name: "Normal",
  19141. height: math.unit(5 + 8 / 12, "feet"),
  19142. default: true
  19143. },
  19144. ]
  19145. ))
  19146. characterMakers.push(() => makeCharacter(
  19147. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19148. {
  19149. front: {
  19150. height: math.unit(5 + 10 / 12, "feet"),
  19151. weight: math.unit(252, "lb"),
  19152. name: "Front",
  19153. image: {
  19154. source: "./media/characters/bruun/front.svg",
  19155. extra: 197 / 187,
  19156. bottom: 0.012
  19157. }
  19158. },
  19159. },
  19160. [
  19161. {
  19162. name: "Normal",
  19163. height: math.unit(5 + 10 / 12, "feet"),
  19164. default: true
  19165. },
  19166. ]
  19167. ))
  19168. characterMakers.push(() => makeCharacter(
  19169. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19170. {
  19171. front: {
  19172. height: math.unit(6 + 10 / 12, "feet"),
  19173. weight: math.unit(255, "lb"),
  19174. name: "Front",
  19175. image: {
  19176. source: "./media/characters/alexeev/front.svg",
  19177. extra: 213 / 200,
  19178. bottom: 0.05
  19179. }
  19180. },
  19181. },
  19182. [
  19183. {
  19184. name: "Normal",
  19185. height: math.unit(6 + 10 / 12, "feet"),
  19186. default: true
  19187. },
  19188. ]
  19189. ))
  19190. characterMakers.push(() => makeCharacter(
  19191. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19192. {
  19193. front: {
  19194. height: math.unit(2 + 8 / 12, "feet"),
  19195. weight: math.unit(22, "lb"),
  19196. name: "Front",
  19197. image: {
  19198. source: "./media/characters/evelyn/front.svg",
  19199. extra: 208 / 180
  19200. }
  19201. },
  19202. },
  19203. [
  19204. {
  19205. name: "Normal",
  19206. height: math.unit(2 + 8 / 12, "feet"),
  19207. default: true
  19208. },
  19209. ]
  19210. ))
  19211. characterMakers.push(() => makeCharacter(
  19212. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19213. {
  19214. front: {
  19215. height: math.unit(5 + 9 / 12, "feet"),
  19216. weight: math.unit(139, "lb"),
  19217. name: "Front",
  19218. image: {
  19219. source: "./media/characters/inca/front.svg",
  19220. extra: 294 / 291,
  19221. bottom: 0.03
  19222. }
  19223. },
  19224. },
  19225. [
  19226. {
  19227. name: "Normal",
  19228. height: math.unit(5 + 9 / 12, "feet"),
  19229. default: true
  19230. },
  19231. ]
  19232. ))
  19233. characterMakers.push(() => makeCharacter(
  19234. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19235. {
  19236. front: {
  19237. height: math.unit(5 + 1 / 12, "feet"),
  19238. weight: math.unit(84, "lb"),
  19239. name: "Front",
  19240. image: {
  19241. source: "./media/characters/magdalene/front.svg",
  19242. extra: 293 / 273
  19243. }
  19244. },
  19245. },
  19246. [
  19247. {
  19248. name: "Normal",
  19249. height: math.unit(5 + 1 / 12, "feet"),
  19250. default: true
  19251. },
  19252. ]
  19253. ))
  19254. characterMakers.push(() => makeCharacter(
  19255. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19256. {
  19257. front: {
  19258. height: math.unit(6 + 3 / 12, "feet"),
  19259. weight: math.unit(185, "lb"),
  19260. name: "Front",
  19261. image: {
  19262. source: "./media/characters/mera/front.svg",
  19263. extra: 291 / 277,
  19264. bottom: 0.03
  19265. }
  19266. },
  19267. },
  19268. [
  19269. {
  19270. name: "Normal",
  19271. height: math.unit(6 + 3 / 12, "feet"),
  19272. default: true
  19273. },
  19274. ]
  19275. ))
  19276. characterMakers.push(() => makeCharacter(
  19277. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19278. {
  19279. front: {
  19280. height: math.unit(6 + 7 / 12, "feet"),
  19281. weight: math.unit(160, "lb"),
  19282. name: "Front",
  19283. image: {
  19284. source: "./media/characters/ceres/front.svg",
  19285. extra: 1023 / 950,
  19286. bottom: 0.027
  19287. }
  19288. },
  19289. back: {
  19290. height: math.unit(6 + 7 / 12, "feet"),
  19291. weight: math.unit(160, "lb"),
  19292. name: "Back",
  19293. image: {
  19294. source: "./media/characters/ceres/back.svg",
  19295. extra: 1023 / 950
  19296. }
  19297. },
  19298. },
  19299. [
  19300. {
  19301. name: "Normal",
  19302. height: math.unit(6 + 7 / 12, "feet"),
  19303. default: true
  19304. },
  19305. ]
  19306. ))
  19307. characterMakers.push(() => makeCharacter(
  19308. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19309. {
  19310. front: {
  19311. height: math.unit(5 + 10 / 12, "feet"),
  19312. weight: math.unit(150, "lb"),
  19313. name: "Front",
  19314. image: {
  19315. source: "./media/characters/kris/front.svg",
  19316. extra: 885 / 803,
  19317. bottom: 0.03
  19318. }
  19319. },
  19320. },
  19321. [
  19322. {
  19323. name: "Normal",
  19324. height: math.unit(5 + 10 / 12, "feet"),
  19325. default: true
  19326. },
  19327. ]
  19328. ))
  19329. characterMakers.push(() => makeCharacter(
  19330. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19331. {
  19332. front: {
  19333. height: math.unit(7, "feet"),
  19334. weight: math.unit(120, "kg"),
  19335. name: "Front",
  19336. image: {
  19337. source: "./media/characters/taluthus/front.svg",
  19338. extra: 903 / 833,
  19339. bottom: 0.015
  19340. }
  19341. },
  19342. },
  19343. [
  19344. {
  19345. name: "Normal",
  19346. height: math.unit(7, "feet"),
  19347. default: true
  19348. },
  19349. {
  19350. name: "Macro",
  19351. height: math.unit(300, "feet")
  19352. },
  19353. ]
  19354. ))
  19355. characterMakers.push(() => makeCharacter(
  19356. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19357. {
  19358. front: {
  19359. height: math.unit(5 + 9 / 12, "feet"),
  19360. weight: math.unit(145, "lb"),
  19361. name: "Front",
  19362. image: {
  19363. source: "./media/characters/dawn/front.svg",
  19364. extra: 2094 / 2016,
  19365. bottom: 0.025
  19366. }
  19367. },
  19368. back: {
  19369. height: math.unit(5 + 9 / 12, "feet"),
  19370. weight: math.unit(160, "lb"),
  19371. name: "Back",
  19372. image: {
  19373. source: "./media/characters/dawn/back.svg",
  19374. extra: 2112 / 2080,
  19375. bottom: 0.005
  19376. }
  19377. },
  19378. },
  19379. [
  19380. {
  19381. name: "Normal",
  19382. height: math.unit(6 + 7 / 12, "feet"),
  19383. default: true
  19384. },
  19385. ]
  19386. ))
  19387. characterMakers.push(() => makeCharacter(
  19388. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19389. {
  19390. anthro: {
  19391. height: math.unit(8 + 3 / 12, "feet"),
  19392. weight: math.unit(450, "lb"),
  19393. name: "Anthro",
  19394. image: {
  19395. source: "./media/characters/arador/anthro.svg",
  19396. extra: 1835 / 1718,
  19397. bottom: 0.025
  19398. }
  19399. },
  19400. feral: {
  19401. height: math.unit(4, "feet"),
  19402. weight: math.unit(200, "lb"),
  19403. name: "Feral",
  19404. image: {
  19405. source: "./media/characters/arador/feral.svg",
  19406. extra: 1683 / 1514,
  19407. bottom: 0.07
  19408. }
  19409. },
  19410. },
  19411. [
  19412. {
  19413. name: "Normal",
  19414. height: math.unit(8 + 3 / 12, "feet")
  19415. },
  19416. {
  19417. name: "Macro",
  19418. height: math.unit(82.5, "feet"),
  19419. default: true
  19420. },
  19421. ]
  19422. ))
  19423. characterMakers.push(() => makeCharacter(
  19424. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19425. {
  19426. front: {
  19427. height: math.unit(5 + 10 / 12, "feet"),
  19428. weight: math.unit(125, "lb"),
  19429. name: "Front",
  19430. image: {
  19431. source: "./media/characters/dharsi/front.svg",
  19432. extra: 716 / 630,
  19433. bottom: 0.035
  19434. }
  19435. },
  19436. },
  19437. [
  19438. {
  19439. name: "Nano",
  19440. height: math.unit(100, "nm")
  19441. },
  19442. {
  19443. name: "Micro",
  19444. height: math.unit(2, "inches")
  19445. },
  19446. {
  19447. name: "Normal",
  19448. height: math.unit(5 + 10 / 12, "feet"),
  19449. default: true
  19450. },
  19451. {
  19452. name: "Macro",
  19453. height: math.unit(1000, "feet")
  19454. },
  19455. {
  19456. name: "Megamacro",
  19457. height: math.unit(10, "miles")
  19458. },
  19459. {
  19460. name: "Gigamacro",
  19461. height: math.unit(3000, "miles")
  19462. },
  19463. {
  19464. name: "Teramacro",
  19465. height: math.unit(500000, "miles")
  19466. },
  19467. {
  19468. name: "Teramacro+",
  19469. height: math.unit(30, "galaxies")
  19470. },
  19471. ]
  19472. ))
  19473. characterMakers.push(() => makeCharacter(
  19474. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19475. {
  19476. front: {
  19477. height: math.unit(6, "feet"),
  19478. weight: math.unit(150, "lb"),
  19479. name: "Front",
  19480. image: {
  19481. source: "./media/characters/deathy/front.svg",
  19482. extra: 1552 / 1463,
  19483. bottom: 0.025
  19484. }
  19485. },
  19486. side: {
  19487. height: math.unit(6, "feet"),
  19488. weight: math.unit(150, "lb"),
  19489. name: "Side",
  19490. image: {
  19491. source: "./media/characters/deathy/side.svg",
  19492. extra: 1604 / 1455,
  19493. bottom: 0.025
  19494. }
  19495. },
  19496. back: {
  19497. height: math.unit(6, "feet"),
  19498. weight: math.unit(150, "lb"),
  19499. name: "Back",
  19500. image: {
  19501. source: "./media/characters/deathy/back.svg",
  19502. extra: 1580 / 1463,
  19503. bottom: 0.005
  19504. }
  19505. },
  19506. },
  19507. [
  19508. {
  19509. name: "Micro",
  19510. height: math.unit(5, "millimeters")
  19511. },
  19512. {
  19513. name: "Normal",
  19514. height: math.unit(6 + 5 / 12, "feet"),
  19515. default: true
  19516. },
  19517. ]
  19518. ))
  19519. characterMakers.push(() => makeCharacter(
  19520. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19521. {
  19522. front: {
  19523. height: math.unit(16, "feet"),
  19524. weight: math.unit(4000, "lb"),
  19525. name: "Front",
  19526. image: {
  19527. source: "./media/characters/juniper/front.svg",
  19528. bottom: 0.04
  19529. }
  19530. },
  19531. },
  19532. [
  19533. {
  19534. name: "Normal",
  19535. height: math.unit(16, "feet"),
  19536. default: true
  19537. },
  19538. ]
  19539. ))
  19540. characterMakers.push(() => makeCharacter(
  19541. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19542. {
  19543. front: {
  19544. height: math.unit(6, "feet"),
  19545. weight: math.unit(150, "lb"),
  19546. name: "Front",
  19547. image: {
  19548. source: "./media/characters/hipster/front.svg",
  19549. extra: 1312 / 1209,
  19550. bottom: 0.025
  19551. }
  19552. },
  19553. back: {
  19554. height: math.unit(6, "feet"),
  19555. weight: math.unit(150, "lb"),
  19556. name: "Back",
  19557. image: {
  19558. source: "./media/characters/hipster/back.svg",
  19559. extra: 1281 / 1196,
  19560. bottom: 0.01
  19561. }
  19562. },
  19563. },
  19564. [
  19565. {
  19566. name: "Micro",
  19567. height: math.unit(1, "mm")
  19568. },
  19569. {
  19570. name: "Normal",
  19571. height: math.unit(4, "inches"),
  19572. default: true
  19573. },
  19574. {
  19575. name: "Macro",
  19576. height: math.unit(500, "feet")
  19577. },
  19578. {
  19579. name: "Megamacro",
  19580. height: math.unit(1000, "miles")
  19581. },
  19582. ]
  19583. ))
  19584. characterMakers.push(() => makeCharacter(
  19585. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19586. {
  19587. front: {
  19588. height: math.unit(6, "feet"),
  19589. weight: math.unit(150, "lb"),
  19590. name: "Front",
  19591. image: {
  19592. source: "./media/characters/tendirmuldr/front.svg",
  19593. extra: 1878 / 1772,
  19594. bottom: 0.015
  19595. }
  19596. },
  19597. },
  19598. [
  19599. {
  19600. name: "Megamacro",
  19601. height: math.unit(1500, "miles"),
  19602. default: true
  19603. },
  19604. ]
  19605. ))
  19606. characterMakers.push(() => makeCharacter(
  19607. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19608. {
  19609. front: {
  19610. height: math.unit(14, "feet"),
  19611. weight: math.unit(12000, "lb"),
  19612. name: "Front",
  19613. image: {
  19614. source: "./media/characters/mort/front.svg",
  19615. extra: 365 / 318,
  19616. bottom: 0.01
  19617. }
  19618. },
  19619. side: {
  19620. height: math.unit(14, "feet"),
  19621. weight: math.unit(12000, "lb"),
  19622. name: "Side",
  19623. image: {
  19624. source: "./media/characters/mort/side.svg",
  19625. extra: 365 / 318,
  19626. bottom: 0.052
  19627. },
  19628. default: true
  19629. },
  19630. back: {
  19631. height: math.unit(14, "feet"),
  19632. weight: math.unit(12000, "lb"),
  19633. name: "Back",
  19634. image: {
  19635. source: "./media/characters/mort/back.svg",
  19636. extra: 371 / 332,
  19637. bottom: 0.18
  19638. }
  19639. },
  19640. },
  19641. [
  19642. {
  19643. name: "Normal",
  19644. height: math.unit(14, "feet"),
  19645. default: true
  19646. },
  19647. ]
  19648. ))
  19649. characterMakers.push(() => makeCharacter(
  19650. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19651. {
  19652. front: {
  19653. height: math.unit(8, "feet"),
  19654. weight: math.unit(1, "ton"),
  19655. name: "Front",
  19656. image: {
  19657. source: "./media/characters/lycoa/front.svg",
  19658. extra: 1875 / 1789,
  19659. bottom: 0.022
  19660. }
  19661. },
  19662. back: {
  19663. height: math.unit(8, "feet"),
  19664. weight: math.unit(1, "ton"),
  19665. name: "Back",
  19666. image: {
  19667. source: "./media/characters/lycoa/back.svg",
  19668. extra: 1835 / 1781,
  19669. bottom: 0.03
  19670. }
  19671. },
  19672. head: {
  19673. height: math.unit(2.1, "feet"),
  19674. name: "Head",
  19675. image: {
  19676. source: "./media/characters/lycoa/head.svg"
  19677. }
  19678. },
  19679. tailmaw: {
  19680. height: math.unit(1.9, "feet"),
  19681. name: "Tailmaw",
  19682. image: {
  19683. source: "./media/characters/lycoa/tailmaw.svg"
  19684. }
  19685. },
  19686. tentacles: {
  19687. height: math.unit(2.1, "feet"),
  19688. name: "Tentacles",
  19689. image: {
  19690. source: "./media/characters/lycoa/tentacles.svg"
  19691. }
  19692. },
  19693. dick: {
  19694. height: math.unit(1.73, "feet"),
  19695. name: "Dick",
  19696. image: {
  19697. source: "./media/characters/lycoa/dick.svg"
  19698. }
  19699. },
  19700. },
  19701. [
  19702. {
  19703. name: "Normal",
  19704. height: math.unit(8, "feet"),
  19705. default: true
  19706. },
  19707. {
  19708. name: "Macro",
  19709. height: math.unit(30, "feet")
  19710. },
  19711. ]
  19712. ))
  19713. characterMakers.push(() => makeCharacter(
  19714. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19715. {
  19716. front: {
  19717. height: math.unit(4 + 2 / 12, "feet"),
  19718. weight: math.unit(70, "lb"),
  19719. name: "Front",
  19720. image: {
  19721. source: "./media/characters/naldara/front.svg",
  19722. extra: 841 / 720,
  19723. bottom: 0.04
  19724. }
  19725. },
  19726. naga: {
  19727. height: math.unit(23, "feet"),
  19728. weight: math.unit(15000, "kg"),
  19729. name: "Naga",
  19730. image: {
  19731. source: "./media/characters/naldara/naga.svg",
  19732. extra: 3290 / 2959,
  19733. bottom: 124 / 3432
  19734. }
  19735. },
  19736. },
  19737. [
  19738. {
  19739. name: "Normal",
  19740. height: math.unit(4 + 2 / 12, "feet"),
  19741. default: true
  19742. },
  19743. ]
  19744. ))
  19745. characterMakers.push(() => makeCharacter(
  19746. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19747. {
  19748. front: {
  19749. height: math.unit(13 + 7 / 12, "feet"),
  19750. weight: math.unit(1500, "lb"),
  19751. name: "Front",
  19752. image: {
  19753. source: "./media/characters/briar/front.svg",
  19754. extra: 626 / 596,
  19755. bottom: 0.08
  19756. }
  19757. },
  19758. },
  19759. [
  19760. {
  19761. name: "Normal",
  19762. height: math.unit(13 + 7 / 12, "feet"),
  19763. default: true
  19764. },
  19765. ]
  19766. ))
  19767. characterMakers.push(() => makeCharacter(
  19768. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19769. {
  19770. side: {
  19771. height: math.unit(10, "feet"),
  19772. weight: math.unit(500, "lb"),
  19773. name: "Side",
  19774. image: {
  19775. source: "./media/characters/vanguard/side.svg",
  19776. extra: 502 / 425,
  19777. bottom: 0.087
  19778. }
  19779. },
  19780. },
  19781. [
  19782. {
  19783. name: "Normal",
  19784. height: math.unit(10, "feet"),
  19785. default: true
  19786. },
  19787. ]
  19788. ))
  19789. characterMakers.push(() => makeCharacter(
  19790. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19791. {
  19792. front: {
  19793. height: math.unit(7.5, "feet"),
  19794. weight: math.unit(2, "lb"),
  19795. name: "Front",
  19796. image: {
  19797. source: "./media/characters/artemis/front.svg",
  19798. extra: 1192 / 1075,
  19799. bottom: 0.07
  19800. }
  19801. },
  19802. frontNsfw: {
  19803. height: math.unit(7.5, "feet"),
  19804. weight: math.unit(2, "lb"),
  19805. name: "Front (NSFW)",
  19806. image: {
  19807. source: "./media/characters/artemis/front-nsfw.svg",
  19808. extra: 1192 / 1075,
  19809. bottom: 0.07
  19810. }
  19811. },
  19812. frontNsfwer: {
  19813. height: math.unit(7.5, "feet"),
  19814. weight: math.unit(2, "lb"),
  19815. name: "Front (NSFW-er)",
  19816. image: {
  19817. source: "./media/characters/artemis/front-nsfwer.svg",
  19818. extra: 1192 / 1075,
  19819. bottom: 0.07
  19820. }
  19821. },
  19822. side: {
  19823. height: math.unit(7.5, "feet"),
  19824. weight: math.unit(2, "lb"),
  19825. name: "Side",
  19826. image: {
  19827. source: "./media/characters/artemis/side.svg",
  19828. extra: 1192 / 1075,
  19829. bottom: 0.07
  19830. }
  19831. },
  19832. sideNsfw: {
  19833. height: math.unit(7.5, "feet"),
  19834. weight: math.unit(2, "lb"),
  19835. name: "Side (NSFW)",
  19836. image: {
  19837. source: "./media/characters/artemis/side-nsfw.svg",
  19838. extra: 1192 / 1075,
  19839. bottom: 0.07
  19840. }
  19841. },
  19842. sideNsfwer: {
  19843. height: math.unit(7.5, "feet"),
  19844. weight: math.unit(2, "lb"),
  19845. name: "Side (NSFW-er)",
  19846. image: {
  19847. source: "./media/characters/artemis/side-nsfwer.svg",
  19848. extra: 1192 / 1075,
  19849. bottom: 0.07
  19850. }
  19851. },
  19852. maw: {
  19853. height: math.unit(1.1, "feet"),
  19854. name: "Maw",
  19855. image: {
  19856. source: "./media/characters/artemis/maw.svg"
  19857. }
  19858. },
  19859. stomach: {
  19860. height: math.unit(0.95, "feet"),
  19861. name: "Stomach",
  19862. image: {
  19863. source: "./media/characters/artemis/stomach.svg"
  19864. }
  19865. },
  19866. dickCanine: {
  19867. height: math.unit(1, "feet"),
  19868. name: "Dick (Canine)",
  19869. image: {
  19870. source: "./media/characters/artemis/dick-canine.svg"
  19871. }
  19872. },
  19873. dickEquine: {
  19874. height: math.unit(0.85, "feet"),
  19875. name: "Dick (Equine)",
  19876. image: {
  19877. source: "./media/characters/artemis/dick-equine.svg"
  19878. }
  19879. },
  19880. dickExotic: {
  19881. height: math.unit(0.85, "feet"),
  19882. name: "Dick (Exotic)",
  19883. image: {
  19884. source: "./media/characters/artemis/dick-exotic.svg"
  19885. }
  19886. },
  19887. },
  19888. [
  19889. {
  19890. name: "Normal",
  19891. height: math.unit(7.5, "feet"),
  19892. default: true
  19893. },
  19894. {
  19895. name: "Enlarged",
  19896. height: math.unit(12, "feet")
  19897. },
  19898. ]
  19899. ))
  19900. characterMakers.push(() => makeCharacter(
  19901. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19902. {
  19903. front: {
  19904. height: math.unit(5 + 3 / 12, "feet"),
  19905. weight: math.unit(160, "lb"),
  19906. name: "Front",
  19907. image: {
  19908. source: "./media/characters/kira/front.svg",
  19909. extra: 906 / 786,
  19910. bottom: 0.01
  19911. }
  19912. },
  19913. back: {
  19914. height: math.unit(5 + 3 / 12, "feet"),
  19915. weight: math.unit(160, "lb"),
  19916. name: "Back",
  19917. image: {
  19918. source: "./media/characters/kira/back.svg",
  19919. extra: 882 / 757,
  19920. bottom: 0.005
  19921. }
  19922. },
  19923. frontDressed: {
  19924. height: math.unit(5 + 3 / 12, "feet"),
  19925. weight: math.unit(160, "lb"),
  19926. name: "Front (Dressed)",
  19927. image: {
  19928. source: "./media/characters/kira/front-dressed.svg",
  19929. extra: 906 / 786,
  19930. bottom: 0.01
  19931. }
  19932. },
  19933. beans: {
  19934. height: math.unit(0.92, "feet"),
  19935. name: "Beans",
  19936. image: {
  19937. source: "./media/characters/kira/beans.svg"
  19938. }
  19939. },
  19940. },
  19941. [
  19942. {
  19943. name: "Normal",
  19944. height: math.unit(5 + 3 / 12, "feet"),
  19945. default: true
  19946. },
  19947. ]
  19948. ))
  19949. characterMakers.push(() => makeCharacter(
  19950. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19951. {
  19952. front: {
  19953. height: math.unit(5 + 4 / 12, "feet"),
  19954. weight: math.unit(145, "lb"),
  19955. name: "Front",
  19956. image: {
  19957. source: "./media/characters/scramble/front.svg",
  19958. extra: 763 / 727,
  19959. bottom: 0.05
  19960. }
  19961. },
  19962. back: {
  19963. height: math.unit(5 + 4 / 12, "feet"),
  19964. weight: math.unit(145, "lb"),
  19965. name: "Back",
  19966. image: {
  19967. source: "./media/characters/scramble/back.svg",
  19968. extra: 826 / 737,
  19969. bottom: 0.002
  19970. }
  19971. },
  19972. },
  19973. [
  19974. {
  19975. name: "Normal",
  19976. height: math.unit(5 + 4 / 12, "feet"),
  19977. default: true
  19978. },
  19979. ]
  19980. ))
  19981. characterMakers.push(() => makeCharacter(
  19982. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19983. {
  19984. side: {
  19985. height: math.unit(6 + 2 / 12, "feet"),
  19986. weight: math.unit(190, "lb"),
  19987. name: "Side",
  19988. image: {
  19989. source: "./media/characters/biscuit/side.svg",
  19990. extra: 858 / 791,
  19991. bottom: 0.044
  19992. }
  19993. },
  19994. },
  19995. [
  19996. {
  19997. name: "Normal",
  19998. height: math.unit(6 + 2 / 12, "feet"),
  19999. default: true
  20000. },
  20001. ]
  20002. ))
  20003. characterMakers.push(() => makeCharacter(
  20004. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20005. {
  20006. front: {
  20007. height: math.unit(5 + 2 / 12, "feet"),
  20008. weight: math.unit(120, "lb"),
  20009. name: "Front",
  20010. image: {
  20011. source: "./media/characters/poffin/front.svg",
  20012. extra: 786 / 680,
  20013. bottom: 0.005
  20014. }
  20015. },
  20016. },
  20017. [
  20018. {
  20019. name: "Normal",
  20020. height: math.unit(5 + 2 / 12, "feet"),
  20021. default: true
  20022. },
  20023. ]
  20024. ))
  20025. characterMakers.push(() => makeCharacter(
  20026. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20027. {
  20028. front: {
  20029. height: math.unit(6 + 3 / 12, "feet"),
  20030. weight: math.unit(519, "lb"),
  20031. name: "Front",
  20032. image: {
  20033. source: "./media/characters/dhari/front.svg",
  20034. extra: 1048 / 946,
  20035. bottom: 0.015
  20036. }
  20037. },
  20038. back: {
  20039. height: math.unit(6 + 3 / 12, "feet"),
  20040. weight: math.unit(519, "lb"),
  20041. name: "Back",
  20042. image: {
  20043. source: "./media/characters/dhari/back.svg",
  20044. extra: 1048 / 931,
  20045. bottom: 0.005
  20046. }
  20047. },
  20048. frontDressed: {
  20049. height: math.unit(6 + 3 / 12, "feet"),
  20050. weight: math.unit(519, "lb"),
  20051. name: "Front (Dressed)",
  20052. image: {
  20053. source: "./media/characters/dhari/front-dressed.svg",
  20054. extra: 1713 / 1546,
  20055. bottom: 0.02
  20056. }
  20057. },
  20058. backDressed: {
  20059. height: math.unit(6 + 3 / 12, "feet"),
  20060. weight: math.unit(519, "lb"),
  20061. name: "Back (Dressed)",
  20062. image: {
  20063. source: "./media/characters/dhari/back-dressed.svg",
  20064. extra: 1699 / 1537,
  20065. bottom: 0.01
  20066. }
  20067. },
  20068. maw: {
  20069. height: math.unit(0.95, "feet"),
  20070. name: "Maw",
  20071. image: {
  20072. source: "./media/characters/dhari/maw.svg"
  20073. }
  20074. },
  20075. wereFront: {
  20076. height: math.unit(12 + 8 / 12, "feet"),
  20077. weight: math.unit(4000, "lb"),
  20078. name: "Front (Were)",
  20079. image: {
  20080. source: "./media/characters/dhari/were-front.svg",
  20081. extra: 1065 / 969,
  20082. bottom: 0.015
  20083. }
  20084. },
  20085. wereBack: {
  20086. height: math.unit(12 + 8 / 12, "feet"),
  20087. weight: math.unit(4000, "lb"),
  20088. name: "Back (Were)",
  20089. image: {
  20090. source: "./media/characters/dhari/were-back.svg",
  20091. extra: 1065 / 969,
  20092. bottom: 0.012
  20093. }
  20094. },
  20095. wereMaw: {
  20096. height: math.unit(0.625, "meters"),
  20097. name: "Maw (Were)",
  20098. image: {
  20099. source: "./media/characters/dhari/were-maw.svg"
  20100. }
  20101. },
  20102. },
  20103. [
  20104. {
  20105. name: "Normal",
  20106. height: math.unit(6 + 3 / 12, "feet"),
  20107. default: true
  20108. },
  20109. ]
  20110. ))
  20111. characterMakers.push(() => makeCharacter(
  20112. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20113. {
  20114. anthro: {
  20115. height: math.unit(5 + 7 / 12, "feet"),
  20116. weight: math.unit(175, "lb"),
  20117. name: "Anthro",
  20118. image: {
  20119. source: "./media/characters/rena-dyne/anthro.svg",
  20120. extra: 1849 / 1785,
  20121. bottom: 0.005
  20122. }
  20123. },
  20124. taur: {
  20125. height: math.unit(15 + 6 / 12, "feet"),
  20126. weight: math.unit(8000, "lb"),
  20127. name: "Taur",
  20128. image: {
  20129. source: "./media/characters/rena-dyne/taur.svg",
  20130. extra: 2315 / 2234,
  20131. bottom: 0.033
  20132. }
  20133. },
  20134. },
  20135. [
  20136. {
  20137. name: "Normal",
  20138. height: math.unit(5 + 7 / 12, "feet"),
  20139. default: true
  20140. },
  20141. ]
  20142. ))
  20143. characterMakers.push(() => makeCharacter(
  20144. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20145. {
  20146. front: {
  20147. height: math.unit(8, "feet"),
  20148. weight: math.unit(600, "lb"),
  20149. name: "Front",
  20150. image: {
  20151. source: "./media/characters/weremeep/front.svg",
  20152. extra: 967 / 862,
  20153. bottom: 0.01
  20154. }
  20155. },
  20156. },
  20157. [
  20158. {
  20159. name: "Normal",
  20160. height: math.unit(8, "feet"),
  20161. default: true
  20162. },
  20163. {
  20164. name: "Lorg",
  20165. height: math.unit(12, "feet")
  20166. },
  20167. {
  20168. name: "Oh Lawd She Comin'",
  20169. height: math.unit(20, "feet")
  20170. },
  20171. ]
  20172. ))
  20173. characterMakers.push(() => makeCharacter(
  20174. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20175. {
  20176. front: {
  20177. height: math.unit(4, "feet"),
  20178. weight: math.unit(90, "lb"),
  20179. name: "Front",
  20180. image: {
  20181. source: "./media/characters/reza/front.svg",
  20182. extra: 1183 / 1111,
  20183. bottom: 0.017
  20184. }
  20185. },
  20186. back: {
  20187. height: math.unit(4, "feet"),
  20188. weight: math.unit(90, "lb"),
  20189. name: "Back",
  20190. image: {
  20191. source: "./media/characters/reza/back.svg",
  20192. extra: 1183 / 1111,
  20193. bottom: 0.01
  20194. }
  20195. },
  20196. drake: {
  20197. height: math.unit(30, "feet"),
  20198. weight: math.unit(246960, "lb"),
  20199. name: "Drake",
  20200. image: {
  20201. source: "./media/characters/reza/drake.svg",
  20202. extra: 2350 / 2024,
  20203. bottom: 60.7 / 2403
  20204. }
  20205. },
  20206. },
  20207. [
  20208. {
  20209. name: "Normal",
  20210. height: math.unit(4, "feet"),
  20211. default: true
  20212. },
  20213. ]
  20214. ))
  20215. characterMakers.push(() => makeCharacter(
  20216. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20217. {
  20218. side: {
  20219. height: math.unit(15, "feet"),
  20220. weight: math.unit(14, "tons"),
  20221. name: "Side",
  20222. image: {
  20223. source: "./media/characters/athea/side.svg",
  20224. extra: 960 / 540,
  20225. bottom: 0.003
  20226. }
  20227. },
  20228. sitting: {
  20229. height: math.unit(6 * 2.85, "feet"),
  20230. weight: math.unit(14, "tons"),
  20231. name: "Sitting",
  20232. image: {
  20233. source: "./media/characters/athea/sitting.svg",
  20234. extra: 621 / 581,
  20235. bottom: 0.075
  20236. }
  20237. },
  20238. maw: {
  20239. height: math.unit(7.59498031496063, "feet"),
  20240. name: "Maw",
  20241. image: {
  20242. source: "./media/characters/athea/maw.svg"
  20243. }
  20244. },
  20245. },
  20246. [
  20247. {
  20248. name: "Lap Cat",
  20249. height: math.unit(2.5, "feet")
  20250. },
  20251. {
  20252. name: "Minimacro",
  20253. height: math.unit(15, "feet"),
  20254. default: true
  20255. },
  20256. {
  20257. name: "Macro",
  20258. height: math.unit(120, "feet")
  20259. },
  20260. {
  20261. name: "Macro+",
  20262. height: math.unit(640, "feet")
  20263. },
  20264. {
  20265. name: "Colossus",
  20266. height: math.unit(2.2, "miles")
  20267. },
  20268. ]
  20269. ))
  20270. characterMakers.push(() => makeCharacter(
  20271. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20272. {
  20273. front: {
  20274. height: math.unit(8 + 8 / 12, "feet"),
  20275. weight: math.unit(130, "kg"),
  20276. name: "Front",
  20277. image: {
  20278. source: "./media/characters/seroko/front.svg",
  20279. extra: 1385 / 1280,
  20280. bottom: 0.025
  20281. }
  20282. },
  20283. back: {
  20284. height: math.unit(8 + 8 / 12, "feet"),
  20285. weight: math.unit(130, "kg"),
  20286. name: "Back",
  20287. image: {
  20288. source: "./media/characters/seroko/back.svg",
  20289. extra: 1369 / 1238,
  20290. bottom: 0.018
  20291. }
  20292. },
  20293. frontDressed: {
  20294. height: math.unit(8 + 8 / 12, "feet"),
  20295. weight: math.unit(130, "kg"),
  20296. name: "Front (Dressed)",
  20297. image: {
  20298. source: "./media/characters/seroko/front-dressed.svg",
  20299. extra: 1366 / 1275,
  20300. bottom: 0.03
  20301. }
  20302. },
  20303. },
  20304. [
  20305. {
  20306. name: "Normal",
  20307. height: math.unit(8 + 8 / 12, "feet"),
  20308. default: true
  20309. },
  20310. ]
  20311. ))
  20312. characterMakers.push(() => makeCharacter(
  20313. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20314. {
  20315. front: {
  20316. height: math.unit(5.5, "feet"),
  20317. weight: math.unit(160, "lb"),
  20318. name: "Front",
  20319. image: {
  20320. source: "./media/characters/quatzi/front.svg",
  20321. extra: 2346 / 2242,
  20322. bottom: 0.015
  20323. }
  20324. },
  20325. },
  20326. [
  20327. {
  20328. name: "Normal",
  20329. height: math.unit(5.5, "feet"),
  20330. default: true
  20331. },
  20332. {
  20333. name: "Big",
  20334. height: math.unit(7.7, "feet")
  20335. },
  20336. ]
  20337. ))
  20338. characterMakers.push(() => makeCharacter(
  20339. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20340. {
  20341. front: {
  20342. height: math.unit(5 + 11 / 12, "feet"),
  20343. weight: math.unit(180, "lb"),
  20344. name: "Front",
  20345. image: {
  20346. source: "./media/characters/sen/front.svg",
  20347. extra: 1321 / 1254,
  20348. bottom: 0.015
  20349. }
  20350. },
  20351. side: {
  20352. height: math.unit(5 + 11 / 12, "feet"),
  20353. weight: math.unit(180, "lb"),
  20354. name: "Side",
  20355. image: {
  20356. source: "./media/characters/sen/side.svg",
  20357. extra: 1321 / 1254,
  20358. bottom: 0.007
  20359. }
  20360. },
  20361. back: {
  20362. height: math.unit(5 + 11 / 12, "feet"),
  20363. weight: math.unit(180, "lb"),
  20364. name: "Back",
  20365. image: {
  20366. source: "./media/characters/sen/back.svg",
  20367. extra: 1321 / 1254
  20368. }
  20369. },
  20370. },
  20371. [
  20372. {
  20373. name: "Normal",
  20374. height: math.unit(5 + 11 / 12, "feet"),
  20375. default: true
  20376. },
  20377. ]
  20378. ))
  20379. characterMakers.push(() => makeCharacter(
  20380. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20381. {
  20382. front: {
  20383. height: math.unit(166.6, "cm"),
  20384. weight: math.unit(66.6, "kg"),
  20385. name: "Front",
  20386. image: {
  20387. source: "./media/characters/fruity/front.svg",
  20388. extra: 1510 / 1386,
  20389. bottom: 0.04
  20390. }
  20391. },
  20392. back: {
  20393. height: math.unit(166.6, "cm"),
  20394. weight: math.unit(66.6, "lb"),
  20395. name: "Back",
  20396. image: {
  20397. source: "./media/characters/fruity/back.svg",
  20398. extra: 1563 / 1435,
  20399. bottom: 0.005
  20400. }
  20401. },
  20402. },
  20403. [
  20404. {
  20405. name: "Normal",
  20406. height: math.unit(166.6, "cm"),
  20407. default: true
  20408. },
  20409. {
  20410. name: "Demonic",
  20411. height: math.unit(166.6, "feet")
  20412. },
  20413. ]
  20414. ))
  20415. characterMakers.push(() => makeCharacter(
  20416. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20417. {
  20418. side: {
  20419. height: math.unit(10, "feet"),
  20420. weight: math.unit(500, "lb"),
  20421. name: "Side",
  20422. image: {
  20423. source: "./media/characters/zost/side.svg",
  20424. extra: 966 / 880,
  20425. bottom: 0.075
  20426. }
  20427. },
  20428. mawFront: {
  20429. height: math.unit(1.08, "meters"),
  20430. name: "Maw (Front)",
  20431. image: {
  20432. source: "./media/characters/zost/maw-front.svg"
  20433. }
  20434. },
  20435. mawSide: {
  20436. height: math.unit(2.66, "feet"),
  20437. name: "Maw (Side)",
  20438. image: {
  20439. source: "./media/characters/zost/maw-side.svg"
  20440. }
  20441. },
  20442. },
  20443. [
  20444. {
  20445. name: "Normal",
  20446. height: math.unit(10, "feet"),
  20447. default: true
  20448. },
  20449. ]
  20450. ))
  20451. characterMakers.push(() => makeCharacter(
  20452. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20453. {
  20454. front: {
  20455. height: math.unit(5 + 4 / 12, "feet"),
  20456. weight: math.unit(120, "lb"),
  20457. name: "Front",
  20458. image: {
  20459. source: "./media/characters/luci/front.svg",
  20460. extra: 1985 / 1884,
  20461. bottom: 0.04
  20462. }
  20463. },
  20464. back: {
  20465. height: math.unit(5 + 4 / 12, "feet"),
  20466. weight: math.unit(120, "lb"),
  20467. name: "Back",
  20468. image: {
  20469. source: "./media/characters/luci/back.svg",
  20470. extra: 1892 / 1791,
  20471. bottom: 0.002
  20472. }
  20473. },
  20474. },
  20475. [
  20476. {
  20477. name: "Normal",
  20478. height: math.unit(5 + 4 / 12, "feet"),
  20479. default: true
  20480. },
  20481. ]
  20482. ))
  20483. characterMakers.push(() => makeCharacter(
  20484. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20485. {
  20486. front: {
  20487. height: math.unit(1500, "feet"),
  20488. weight: math.unit(3.8e6, "tons"),
  20489. name: "Front",
  20490. image: {
  20491. source: "./media/characters/2th/front.svg",
  20492. extra: 3489 / 3350,
  20493. bottom: 0.1
  20494. }
  20495. },
  20496. foot: {
  20497. height: math.unit(461, "feet"),
  20498. name: "Foot",
  20499. image: {
  20500. source: "./media/characters/2th/foot.svg"
  20501. }
  20502. },
  20503. },
  20504. [
  20505. {
  20506. name: "\"Micro\"",
  20507. height: math.unit(15 + 7 / 12, "feet")
  20508. },
  20509. {
  20510. name: "Normal",
  20511. height: math.unit(1500, "feet"),
  20512. default: true
  20513. },
  20514. {
  20515. name: "Macro",
  20516. height: math.unit(5000, "feet")
  20517. },
  20518. {
  20519. name: "Megamacro",
  20520. height: math.unit(15, "miles")
  20521. },
  20522. {
  20523. name: "Gigamacro",
  20524. height: math.unit(4000, "miles")
  20525. },
  20526. {
  20527. name: "Galactic",
  20528. height: math.unit(50, "AU")
  20529. },
  20530. ]
  20531. ))
  20532. characterMakers.push(() => makeCharacter(
  20533. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20534. {
  20535. front: {
  20536. height: math.unit(5 + 6 / 12, "feet"),
  20537. weight: math.unit(220, "lb"),
  20538. name: "Front",
  20539. image: {
  20540. source: "./media/characters/amethyst/front.svg",
  20541. extra: 2078 / 2040,
  20542. bottom: 0.045
  20543. }
  20544. },
  20545. back: {
  20546. height: math.unit(5 + 6 / 12, "feet"),
  20547. weight: math.unit(220, "lb"),
  20548. name: "Back",
  20549. image: {
  20550. source: "./media/characters/amethyst/back.svg",
  20551. extra: 2021 / 1989,
  20552. bottom: 0.02
  20553. }
  20554. },
  20555. },
  20556. [
  20557. {
  20558. name: "Normal",
  20559. height: math.unit(5 + 6 / 12, "feet"),
  20560. default: true
  20561. },
  20562. ]
  20563. ))
  20564. characterMakers.push(() => makeCharacter(
  20565. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20566. {
  20567. front: {
  20568. height: math.unit(4 + 11 / 12, "feet"),
  20569. weight: math.unit(120, "lb"),
  20570. name: "Front",
  20571. image: {
  20572. source: "./media/characters/yumi-akiyama/front.svg",
  20573. extra: 1327 / 1235,
  20574. bottom: 0.02
  20575. }
  20576. },
  20577. back: {
  20578. height: math.unit(4 + 11 / 12, "feet"),
  20579. weight: math.unit(120, "lb"),
  20580. name: "Back",
  20581. image: {
  20582. source: "./media/characters/yumi-akiyama/back.svg",
  20583. extra: 1287 / 1245,
  20584. bottom: 0.002
  20585. }
  20586. },
  20587. },
  20588. [
  20589. {
  20590. name: "Galactic",
  20591. height: math.unit(50, "galaxies"),
  20592. default: true
  20593. },
  20594. {
  20595. name: "Universal",
  20596. height: math.unit(100, "universes")
  20597. },
  20598. ]
  20599. ))
  20600. characterMakers.push(() => makeCharacter(
  20601. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20602. {
  20603. front: {
  20604. height: math.unit(8, "feet"),
  20605. weight: math.unit(500, "lb"),
  20606. name: "Front",
  20607. image: {
  20608. source: "./media/characters/rifter-yrmori/front.svg",
  20609. extra: 1180 / 1125,
  20610. bottom: 0.02
  20611. }
  20612. },
  20613. back: {
  20614. height: math.unit(8, "feet"),
  20615. weight: math.unit(500, "lb"),
  20616. name: "Back",
  20617. image: {
  20618. source: "./media/characters/rifter-yrmori/back.svg",
  20619. extra: 1190 / 1145,
  20620. bottom: 0.001
  20621. }
  20622. },
  20623. wings: {
  20624. height: math.unit(7.75, "feet"),
  20625. weight: math.unit(500, "lb"),
  20626. name: "Wings",
  20627. image: {
  20628. source: "./media/characters/rifter-yrmori/wings.svg",
  20629. extra: 1357 / 1285
  20630. }
  20631. },
  20632. maw: {
  20633. height: math.unit(0.8, "feet"),
  20634. name: "Maw",
  20635. image: {
  20636. source: "./media/characters/rifter-yrmori/maw.svg"
  20637. }
  20638. },
  20639. mawfront: {
  20640. height: math.unit(1.45, "feet"),
  20641. name: "Maw (Front)",
  20642. image: {
  20643. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20644. }
  20645. },
  20646. },
  20647. [
  20648. {
  20649. name: "Normal",
  20650. height: math.unit(8, "feet"),
  20651. default: true
  20652. },
  20653. {
  20654. name: "Macro",
  20655. height: math.unit(42, "meters")
  20656. },
  20657. ]
  20658. ))
  20659. characterMakers.push(() => makeCharacter(
  20660. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20661. {
  20662. were: {
  20663. height: math.unit(25 + 6 / 12, "feet"),
  20664. weight: math.unit(10000, "lb"),
  20665. name: "Were",
  20666. image: {
  20667. source: "./media/characters/tahajin/were.svg",
  20668. extra: 801 / 770,
  20669. bottom: 0.042
  20670. }
  20671. },
  20672. aquatic: {
  20673. height: math.unit(6 + 4 / 12, "feet"),
  20674. weight: math.unit(160, "lb"),
  20675. name: "Aquatic",
  20676. image: {
  20677. source: "./media/characters/tahajin/aquatic.svg",
  20678. extra: 572 / 542,
  20679. bottom: 0.04
  20680. }
  20681. },
  20682. chow: {
  20683. height: math.unit(8 + 11 / 12, "feet"),
  20684. weight: math.unit(450, "lb"),
  20685. name: "Chow",
  20686. image: {
  20687. source: "./media/characters/tahajin/chow.svg",
  20688. extra: 660 / 640,
  20689. bottom: 0.015
  20690. }
  20691. },
  20692. demiNaga: {
  20693. height: math.unit(6 + 8 / 12, "feet"),
  20694. weight: math.unit(300, "lb"),
  20695. name: "Demi Naga",
  20696. image: {
  20697. source: "./media/characters/tahajin/demi-naga.svg",
  20698. extra: 643 / 615,
  20699. bottom: 0.1
  20700. }
  20701. },
  20702. data: {
  20703. height: math.unit(5, "inches"),
  20704. weight: math.unit(0.1, "lb"),
  20705. name: "Data",
  20706. image: {
  20707. source: "./media/characters/tahajin/data.svg"
  20708. }
  20709. },
  20710. fluu: {
  20711. height: math.unit(5 + 7 / 12, "feet"),
  20712. weight: math.unit(140, "lb"),
  20713. name: "Fluu",
  20714. image: {
  20715. source: "./media/characters/tahajin/fluu.svg",
  20716. extra: 628 / 592,
  20717. bottom: 0.02
  20718. }
  20719. },
  20720. starWarrior: {
  20721. height: math.unit(4 + 5 / 12, "feet"),
  20722. weight: math.unit(50, "lb"),
  20723. name: "Star Warrior",
  20724. image: {
  20725. source: "./media/characters/tahajin/star-warrior.svg"
  20726. }
  20727. },
  20728. },
  20729. [
  20730. {
  20731. name: "Normal",
  20732. height: math.unit(25 + 6 / 12, "feet"),
  20733. default: true
  20734. },
  20735. ]
  20736. ))
  20737. characterMakers.push(() => makeCharacter(
  20738. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20739. {
  20740. front: {
  20741. height: math.unit(8, "feet"),
  20742. weight: math.unit(350, "lb"),
  20743. name: "Front",
  20744. image: {
  20745. source: "./media/characters/gabira/front.svg",
  20746. extra: 608 / 580,
  20747. bottom: 0.03
  20748. }
  20749. },
  20750. back: {
  20751. height: math.unit(8, "feet"),
  20752. weight: math.unit(350, "lb"),
  20753. name: "Back",
  20754. image: {
  20755. source: "./media/characters/gabira/back.svg",
  20756. extra: 608 / 580,
  20757. bottom: 0.03
  20758. }
  20759. },
  20760. },
  20761. [
  20762. {
  20763. name: "Normal",
  20764. height: math.unit(8, "feet"),
  20765. default: true
  20766. },
  20767. ]
  20768. ))
  20769. characterMakers.push(() => makeCharacter(
  20770. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20771. {
  20772. front: {
  20773. height: math.unit(5 + 3 / 12, "feet"),
  20774. weight: math.unit(137, "lb"),
  20775. name: "Front",
  20776. image: {
  20777. source: "./media/characters/sasha-katraine/front.svg",
  20778. bottom: 0.045
  20779. }
  20780. },
  20781. },
  20782. [
  20783. {
  20784. name: "Micro",
  20785. height: math.unit(5, "inches")
  20786. },
  20787. {
  20788. name: "Normal",
  20789. height: math.unit(5 + 3 / 12, "feet"),
  20790. default: true
  20791. },
  20792. ]
  20793. ))
  20794. characterMakers.push(() => makeCharacter(
  20795. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20796. {
  20797. side: {
  20798. height: math.unit(4, "inches"),
  20799. weight: math.unit(200, "grams"),
  20800. name: "Side",
  20801. image: {
  20802. source: "./media/characters/der/side.svg",
  20803. extra: 719 / 400,
  20804. bottom: 30.6 / 749.9187
  20805. }
  20806. },
  20807. },
  20808. [
  20809. {
  20810. name: "Micro",
  20811. height: math.unit(4, "inches"),
  20812. default: true
  20813. },
  20814. ]
  20815. ))
  20816. characterMakers.push(() => makeCharacter(
  20817. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20818. {
  20819. side: {
  20820. height: math.unit(30, "meters"),
  20821. weight: math.unit(700, "tonnes"),
  20822. name: "Side",
  20823. image: {
  20824. source: "./media/characters/fixerdragon/side.svg",
  20825. extra: (1293.0514 - 116.03) / 1106.86,
  20826. bottom: 116.03 / 1293.0514
  20827. }
  20828. },
  20829. },
  20830. [
  20831. {
  20832. name: "Planck",
  20833. height: math.unit(1.6e-35, "meters")
  20834. },
  20835. {
  20836. name: "Micro",
  20837. height: math.unit(0.4, "meters")
  20838. },
  20839. {
  20840. name: "Normal",
  20841. height: math.unit(30, "meters"),
  20842. default: true
  20843. },
  20844. {
  20845. name: "Megamacro",
  20846. height: math.unit(1.2, "megameters")
  20847. },
  20848. {
  20849. name: "Teramacro",
  20850. height: math.unit(130, "terameters")
  20851. },
  20852. {
  20853. name: "Yottamacro",
  20854. height: math.unit(6200, "yottameters")
  20855. },
  20856. ]
  20857. ));
  20858. characterMakers.push(() => makeCharacter(
  20859. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20860. {
  20861. front: {
  20862. height: math.unit(8, "feet"),
  20863. weight: math.unit(250, "lb"),
  20864. name: "Front",
  20865. image: {
  20866. source: "./media/characters/kite/front.svg",
  20867. extra: 2796 / 2659,
  20868. bottom: 0.002
  20869. }
  20870. },
  20871. },
  20872. [
  20873. {
  20874. name: "Normal",
  20875. height: math.unit(8, "feet"),
  20876. default: true
  20877. },
  20878. {
  20879. name: "Macro",
  20880. height: math.unit(360, "feet")
  20881. },
  20882. {
  20883. name: "Megamacro",
  20884. height: math.unit(1500, "feet")
  20885. },
  20886. ]
  20887. ))
  20888. characterMakers.push(() => makeCharacter(
  20889. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20890. {
  20891. front: {
  20892. height: math.unit(5 + 10 / 12, "feet"),
  20893. weight: math.unit(150, "lb"),
  20894. name: "Front",
  20895. image: {
  20896. source: "./media/characters/poojawa-vynar/front.svg",
  20897. extra: (1506.1547 - 55) / 1356.6,
  20898. bottom: 55 / 1506.1547
  20899. }
  20900. },
  20901. frontTailless: {
  20902. height: math.unit(5 + 10 / 12, "feet"),
  20903. weight: math.unit(150, "lb"),
  20904. name: "Front (Tailless)",
  20905. image: {
  20906. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20907. extra: (1506.1547 - 55) / 1356.6,
  20908. bottom: 55 / 1506.1547
  20909. }
  20910. },
  20911. },
  20912. [
  20913. {
  20914. name: "Normal",
  20915. height: math.unit(5 + 10 / 12, "feet"),
  20916. default: true
  20917. },
  20918. ]
  20919. ))
  20920. characterMakers.push(() => makeCharacter(
  20921. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20922. {
  20923. front: {
  20924. height: math.unit(293, "meters"),
  20925. weight: math.unit(70400, "tons"),
  20926. name: "Front",
  20927. image: {
  20928. source: "./media/characters/violette/front.svg",
  20929. extra: 1227 / 1180,
  20930. bottom: 0.005
  20931. }
  20932. },
  20933. back: {
  20934. height: math.unit(293, "meters"),
  20935. weight: math.unit(70400, "tons"),
  20936. name: "Back",
  20937. image: {
  20938. source: "./media/characters/violette/back.svg",
  20939. extra: 1227 / 1180,
  20940. bottom: 0.005
  20941. }
  20942. },
  20943. },
  20944. [
  20945. {
  20946. name: "Macro",
  20947. height: math.unit(293, "meters"),
  20948. default: true
  20949. },
  20950. ]
  20951. ))
  20952. characterMakers.push(() => makeCharacter(
  20953. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20954. {
  20955. front: {
  20956. height: math.unit(1050, "feet"),
  20957. weight: math.unit(200000, "tons"),
  20958. name: "Front",
  20959. image: {
  20960. source: "./media/characters/alessandra/front.svg",
  20961. extra: 960 / 912,
  20962. bottom: 0.06
  20963. }
  20964. },
  20965. },
  20966. [
  20967. {
  20968. name: "Macro",
  20969. height: math.unit(1050, "feet")
  20970. },
  20971. {
  20972. name: "Macro+",
  20973. height: math.unit(900, "meters"),
  20974. default: true
  20975. },
  20976. ]
  20977. ))
  20978. characterMakers.push(() => makeCharacter(
  20979. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20980. {
  20981. front: {
  20982. height: math.unit(5, "feet"),
  20983. weight: math.unit(187, "lb"),
  20984. name: "Front",
  20985. image: {
  20986. source: "./media/characters/person/front.svg",
  20987. extra: 3087 / 2945,
  20988. bottom: 91 / 3181
  20989. }
  20990. },
  20991. },
  20992. [
  20993. {
  20994. name: "Micro",
  20995. height: math.unit(3, "inches")
  20996. },
  20997. {
  20998. name: "Normal",
  20999. height: math.unit(5, "feet"),
  21000. default: true
  21001. },
  21002. {
  21003. name: "Macro",
  21004. height: math.unit(90, "feet")
  21005. },
  21006. {
  21007. name: "Max Size",
  21008. height: math.unit(280, "feet")
  21009. },
  21010. ]
  21011. ))
  21012. characterMakers.push(() => makeCharacter(
  21013. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21014. {
  21015. front: {
  21016. height: math.unit(4.5, "meters"),
  21017. weight: math.unit(3200, "lb"),
  21018. name: "Front",
  21019. image: {
  21020. source: "./media/characters/ty/front.svg",
  21021. extra: 1038 / 960,
  21022. bottom: 31.156 / 1068
  21023. }
  21024. },
  21025. back: {
  21026. height: math.unit(4.5, "meters"),
  21027. weight: math.unit(3200, "lb"),
  21028. name: "Back",
  21029. image: {
  21030. source: "./media/characters/ty/back.svg",
  21031. extra: 1044 / 966,
  21032. bottom: 7.48 / 1049
  21033. }
  21034. },
  21035. },
  21036. [
  21037. {
  21038. name: "Normal",
  21039. height: math.unit(4.5, "meters"),
  21040. default: true
  21041. },
  21042. ]
  21043. ))
  21044. characterMakers.push(() => makeCharacter(
  21045. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21046. {
  21047. front: {
  21048. height: math.unit(5 + 4 / 12, "feet"),
  21049. weight: math.unit(115, "lb"),
  21050. name: "Front",
  21051. image: {
  21052. source: "./media/characters/rocky/front.svg",
  21053. extra: 1012 / 975,
  21054. bottom: 54 / 1066
  21055. }
  21056. },
  21057. },
  21058. [
  21059. {
  21060. name: "Normal",
  21061. height: math.unit(5 + 4 / 12, "feet"),
  21062. default: true
  21063. },
  21064. ]
  21065. ))
  21066. characterMakers.push(() => makeCharacter(
  21067. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21068. {
  21069. upright: {
  21070. height: math.unit(6, "meters"),
  21071. weight: math.unit(4000, "kg"),
  21072. name: "Upright",
  21073. image: {
  21074. source: "./media/characters/ruin/upright.svg",
  21075. extra: 668 / 661,
  21076. bottom: 42 / 799.8396
  21077. }
  21078. },
  21079. },
  21080. [
  21081. {
  21082. name: "Normal",
  21083. height: math.unit(6, "meters"),
  21084. default: true
  21085. },
  21086. ]
  21087. ))
  21088. characterMakers.push(() => makeCharacter(
  21089. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21090. {
  21091. front: {
  21092. height: math.unit(5, "feet"),
  21093. weight: math.unit(106, "lb"),
  21094. name: "Front",
  21095. image: {
  21096. source: "./media/characters/robin/front.svg",
  21097. extra: 862 / 799,
  21098. bottom: 42.4 / 914.8856
  21099. }
  21100. },
  21101. },
  21102. [
  21103. {
  21104. name: "Normal",
  21105. height: math.unit(5, "feet"),
  21106. default: true
  21107. },
  21108. ]
  21109. ))
  21110. characterMakers.push(() => makeCharacter(
  21111. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21112. {
  21113. side: {
  21114. height: math.unit(3, "feet"),
  21115. weight: math.unit(225, "lb"),
  21116. name: "Side",
  21117. image: {
  21118. source: "./media/characters/saian/side.svg",
  21119. extra: 566 / 356,
  21120. bottom: 79.7 / 643
  21121. }
  21122. },
  21123. maw: {
  21124. height: math.unit(2.85, "feet"),
  21125. name: "Maw",
  21126. image: {
  21127. source: "./media/characters/saian/maw.svg"
  21128. }
  21129. },
  21130. },
  21131. [
  21132. {
  21133. name: "Normal",
  21134. height: math.unit(3, "feet"),
  21135. default: true
  21136. },
  21137. ]
  21138. ))
  21139. characterMakers.push(() => makeCharacter(
  21140. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21141. {
  21142. side: {
  21143. height: math.unit(8, "feet"),
  21144. weight: math.unit(300, "lb"),
  21145. name: "Side",
  21146. image: {
  21147. source: "./media/characters/equus-silvermane/side.svg",
  21148. extra: 2176 / 2050,
  21149. bottom: 65.7 / 2245
  21150. }
  21151. },
  21152. front: {
  21153. height: math.unit(8, "feet"),
  21154. weight: math.unit(300, "lb"),
  21155. name: "Front",
  21156. image: {
  21157. source: "./media/characters/equus-silvermane/front.svg",
  21158. extra: 4633 / 4400,
  21159. bottom: 71.3 / 4706.915
  21160. }
  21161. },
  21162. sideStepping: {
  21163. height: math.unit(8, "feet"),
  21164. weight: math.unit(300, "lb"),
  21165. name: "Side (Stepping)",
  21166. image: {
  21167. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21168. extra: 1968 / 1860,
  21169. bottom: 16.4 / 1989
  21170. }
  21171. },
  21172. },
  21173. [
  21174. {
  21175. name: "Normal",
  21176. height: math.unit(8, "feet")
  21177. },
  21178. {
  21179. name: "Minimacro",
  21180. height: math.unit(75, "feet"),
  21181. default: true
  21182. },
  21183. {
  21184. name: "Macro",
  21185. height: math.unit(150, "feet")
  21186. },
  21187. {
  21188. name: "Macro+",
  21189. height: math.unit(1000, "feet")
  21190. },
  21191. {
  21192. name: "Megamacro",
  21193. height: math.unit(1, "mile")
  21194. },
  21195. ]
  21196. ))
  21197. characterMakers.push(() => makeCharacter(
  21198. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21199. {
  21200. side: {
  21201. height: math.unit(20, "feet"),
  21202. weight: math.unit(30000, "kg"),
  21203. name: "Side",
  21204. image: {
  21205. source: "./media/characters/windar/side.svg",
  21206. extra: 1491 / 1248,
  21207. bottom: 82.56 / 1568
  21208. }
  21209. },
  21210. },
  21211. [
  21212. {
  21213. name: "Normal",
  21214. height: math.unit(20, "feet"),
  21215. default: true
  21216. },
  21217. ]
  21218. ))
  21219. characterMakers.push(() => makeCharacter(
  21220. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21221. {
  21222. side: {
  21223. height: math.unit(15.66, "feet"),
  21224. weight: math.unit(150, "lb"),
  21225. name: "Side",
  21226. image: {
  21227. source: "./media/characters/melody/side.svg",
  21228. extra: 1097 / 944,
  21229. bottom: 11.8 / 1109
  21230. }
  21231. },
  21232. sideOutfit: {
  21233. height: math.unit(15.66, "feet"),
  21234. weight: math.unit(150, "lb"),
  21235. name: "Side (Outfit)",
  21236. image: {
  21237. source: "./media/characters/melody/side-outfit.svg",
  21238. extra: 1097 / 944,
  21239. bottom: 11.8 / 1109
  21240. }
  21241. },
  21242. },
  21243. [
  21244. {
  21245. name: "Normal",
  21246. height: math.unit(15.66, "feet"),
  21247. default: true
  21248. },
  21249. ]
  21250. ))
  21251. characterMakers.push(() => makeCharacter(
  21252. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21253. {
  21254. front: {
  21255. height: math.unit(8, "feet"),
  21256. weight: math.unit(325, "lb"),
  21257. name: "Front",
  21258. image: {
  21259. source: "./media/characters/windera/front.svg",
  21260. extra: 3180 / 2845,
  21261. bottom: 178 / 3365
  21262. }
  21263. },
  21264. },
  21265. [
  21266. {
  21267. name: "Normal",
  21268. height: math.unit(8, "feet"),
  21269. default: true
  21270. },
  21271. ]
  21272. ))
  21273. characterMakers.push(() => makeCharacter(
  21274. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21275. {
  21276. front: {
  21277. height: math.unit(28.75, "feet"),
  21278. weight: math.unit(2000, "kg"),
  21279. name: "Front",
  21280. image: {
  21281. source: "./media/characters/sonear/front.svg",
  21282. extra: 1041.1 / 964.9,
  21283. bottom: 53.7 / 1096.6
  21284. }
  21285. },
  21286. },
  21287. [
  21288. {
  21289. name: "Normal",
  21290. height: math.unit(28.75, "feet"),
  21291. default: true
  21292. },
  21293. ]
  21294. ))
  21295. characterMakers.push(() => makeCharacter(
  21296. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21297. {
  21298. side: {
  21299. height: math.unit(25.5, "feet"),
  21300. weight: math.unit(23000, "kg"),
  21301. name: "Side",
  21302. image: {
  21303. source: "./media/characters/kanara/side.svg"
  21304. }
  21305. },
  21306. },
  21307. [
  21308. {
  21309. name: "Normal",
  21310. height: math.unit(25.5, "feet"),
  21311. default: true
  21312. },
  21313. ]
  21314. ))
  21315. characterMakers.push(() => makeCharacter(
  21316. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21317. {
  21318. side: {
  21319. height: math.unit(10, "feet"),
  21320. weight: math.unit(1000, "kg"),
  21321. name: "Side",
  21322. image: {
  21323. source: "./media/characters/ereus/side.svg",
  21324. extra: 1157 / 959,
  21325. bottom: 153 / 1312.5
  21326. }
  21327. },
  21328. },
  21329. [
  21330. {
  21331. name: "Normal",
  21332. height: math.unit(10, "feet"),
  21333. default: true
  21334. },
  21335. ]
  21336. ))
  21337. characterMakers.push(() => makeCharacter(
  21338. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21339. {
  21340. side: {
  21341. height: math.unit(4.5, "feet"),
  21342. weight: math.unit(500, "lb"),
  21343. name: "Side",
  21344. image: {
  21345. source: "./media/characters/e-ter/side.svg",
  21346. extra: 1550 / 1248,
  21347. bottom: 146 / 1694
  21348. }
  21349. },
  21350. },
  21351. [
  21352. {
  21353. name: "Normal",
  21354. height: math.unit(4.5, "feet"),
  21355. default: true
  21356. },
  21357. ]
  21358. ))
  21359. characterMakers.push(() => makeCharacter(
  21360. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21361. {
  21362. side: {
  21363. height: math.unit(9.7, "feet"),
  21364. weight: math.unit(4000, "kg"),
  21365. name: "Side",
  21366. image: {
  21367. source: "./media/characters/yamie/side.svg"
  21368. }
  21369. },
  21370. },
  21371. [
  21372. {
  21373. name: "Normal",
  21374. height: math.unit(9.7, "feet"),
  21375. default: true
  21376. },
  21377. ]
  21378. ))
  21379. characterMakers.push(() => makeCharacter(
  21380. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21381. {
  21382. front: {
  21383. height: math.unit(50, "feet"),
  21384. weight: math.unit(50000, "kg"),
  21385. name: "Front",
  21386. image: {
  21387. source: "./media/characters/anders/front.svg",
  21388. extra: 570 / 539,
  21389. bottom: 14.7 / 586.7
  21390. }
  21391. },
  21392. },
  21393. [
  21394. {
  21395. name: "Large",
  21396. height: math.unit(50, "feet")
  21397. },
  21398. {
  21399. name: "Macro",
  21400. height: math.unit(2000, "feet"),
  21401. default: true
  21402. },
  21403. {
  21404. name: "Megamacro",
  21405. height: math.unit(12, "miles")
  21406. },
  21407. ]
  21408. ))
  21409. characterMakers.push(() => makeCharacter(
  21410. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21411. {
  21412. front: {
  21413. height: math.unit(7 + 2 / 12, "feet"),
  21414. weight: math.unit(300, "lb"),
  21415. name: "Front",
  21416. image: {
  21417. source: "./media/characters/reban/front.svg",
  21418. extra: 516 / 487,
  21419. bottom: 42.82 / 558.356
  21420. }
  21421. },
  21422. dick: {
  21423. height: math.unit(7 / 5, "feet"),
  21424. name: "Dick",
  21425. image: {
  21426. source: "./media/characters/reban/dick.svg"
  21427. }
  21428. },
  21429. },
  21430. [
  21431. {
  21432. name: "Natural Height",
  21433. height: math.unit(7 + 2 / 12, "feet")
  21434. },
  21435. {
  21436. name: "Macro",
  21437. height: math.unit(500, "feet"),
  21438. default: true
  21439. },
  21440. {
  21441. name: "Canon Height",
  21442. height: math.unit(50, "AU")
  21443. },
  21444. ]
  21445. ))
  21446. characterMakers.push(() => makeCharacter(
  21447. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21448. {
  21449. front: {
  21450. height: math.unit(6, "feet"),
  21451. weight: math.unit(150, "lb"),
  21452. name: "Front",
  21453. image: {
  21454. source: "./media/characters/terrance-keayes/front.svg",
  21455. extra: 1.005,
  21456. bottom: 151 / 1615
  21457. }
  21458. },
  21459. side: {
  21460. height: math.unit(6, "feet"),
  21461. weight: math.unit(150, "lb"),
  21462. name: "Side",
  21463. image: {
  21464. source: "./media/characters/terrance-keayes/side.svg",
  21465. extra: 1.005,
  21466. bottom: 129.4 / 1544
  21467. }
  21468. },
  21469. back: {
  21470. height: math.unit(6, "feet"),
  21471. weight: math.unit(150, "lb"),
  21472. name: "Back",
  21473. image: {
  21474. source: "./media/characters/terrance-keayes/back.svg",
  21475. extra: 1.005,
  21476. bottom: 58.4 / 1557.3
  21477. }
  21478. },
  21479. dick: {
  21480. height: math.unit(6 * 0.208, "feet"),
  21481. name: "Dick",
  21482. image: {
  21483. source: "./media/characters/terrance-keayes/dick.svg"
  21484. }
  21485. },
  21486. },
  21487. [
  21488. {
  21489. name: "Canon Height",
  21490. height: math.unit(35, "miles"),
  21491. default: true
  21492. },
  21493. ]
  21494. ))
  21495. characterMakers.push(() => makeCharacter(
  21496. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21497. {
  21498. front: {
  21499. height: math.unit(6, "feet"),
  21500. weight: math.unit(150, "lb"),
  21501. name: "Front",
  21502. image: {
  21503. source: "./media/characters/ofelia/front.svg",
  21504. extra: 546 / 541,
  21505. bottom: 39 / 583
  21506. }
  21507. },
  21508. back: {
  21509. height: math.unit(6, "feet"),
  21510. weight: math.unit(150, "lb"),
  21511. name: "Back",
  21512. image: {
  21513. source: "./media/characters/ofelia/back.svg",
  21514. extra: 564 / 559.5,
  21515. bottom: 8.69 / 573.02
  21516. }
  21517. },
  21518. maw: {
  21519. height: math.unit(1, "feet"),
  21520. name: "Maw",
  21521. image: {
  21522. source: "./media/characters/ofelia/maw.svg"
  21523. }
  21524. },
  21525. foot: {
  21526. height: math.unit(1.949, "feet"),
  21527. name: "Foot",
  21528. image: {
  21529. source: "./media/characters/ofelia/foot.svg"
  21530. }
  21531. },
  21532. },
  21533. [
  21534. {
  21535. name: "Canon Height",
  21536. height: math.unit(2000, "miles"),
  21537. default: true
  21538. },
  21539. ]
  21540. ))
  21541. characterMakers.push(() => makeCharacter(
  21542. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21543. {
  21544. front: {
  21545. height: math.unit(6, "feet"),
  21546. weight: math.unit(150, "lb"),
  21547. name: "Front",
  21548. image: {
  21549. source: "./media/characters/samuel/front.svg",
  21550. extra: 265 / 258,
  21551. bottom: 2 / 266.1566
  21552. }
  21553. },
  21554. },
  21555. [
  21556. {
  21557. name: "Macro",
  21558. height: math.unit(100, "feet"),
  21559. default: true
  21560. },
  21561. {
  21562. name: "Full Size",
  21563. height: math.unit(1000, "miles")
  21564. },
  21565. ]
  21566. ))
  21567. characterMakers.push(() => makeCharacter(
  21568. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21569. {
  21570. front: {
  21571. height: math.unit(6, "feet"),
  21572. weight: math.unit(300, "lb"),
  21573. name: "Front",
  21574. image: {
  21575. source: "./media/characters/beishir-kiel/front.svg",
  21576. extra: 569 / 547,
  21577. bottom: 41.9 / 609
  21578. }
  21579. },
  21580. maw: {
  21581. height: math.unit(6 * 0.202, "feet"),
  21582. name: "Maw",
  21583. image: {
  21584. source: "./media/characters/beishir-kiel/maw.svg"
  21585. }
  21586. },
  21587. },
  21588. [
  21589. {
  21590. name: "Macro",
  21591. height: math.unit(300, "feet"),
  21592. default: true
  21593. },
  21594. ]
  21595. ))
  21596. characterMakers.push(() => makeCharacter(
  21597. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21598. {
  21599. front: {
  21600. height: math.unit(5 + 8 / 12, "feet"),
  21601. weight: math.unit(120, "lb"),
  21602. name: "Front",
  21603. image: {
  21604. source: "./media/characters/logan-grey/front.svg",
  21605. extra: 2539 / 2393,
  21606. bottom: 97.6 / 2636.37
  21607. }
  21608. },
  21609. frontAlt: {
  21610. height: math.unit(5 + 8 / 12, "feet"),
  21611. weight: math.unit(120, "lb"),
  21612. name: "Front (Alt)",
  21613. image: {
  21614. source: "./media/characters/logan-grey/front-alt.svg",
  21615. extra: 958 / 893,
  21616. bottom: 15 / 970.768
  21617. }
  21618. },
  21619. back: {
  21620. height: math.unit(5 + 8 / 12, "feet"),
  21621. weight: math.unit(120, "lb"),
  21622. name: "Back",
  21623. image: {
  21624. source: "./media/characters/logan-grey/back.svg",
  21625. extra: 958 / 893,
  21626. bottom: 2.1881 / 970.9788
  21627. }
  21628. },
  21629. dick: {
  21630. height: math.unit(1.437, "feet"),
  21631. name: "Dick",
  21632. image: {
  21633. source: "./media/characters/logan-grey/dick.svg"
  21634. }
  21635. },
  21636. },
  21637. [
  21638. {
  21639. name: "Normal",
  21640. height: math.unit(5 + 8 / 12, "feet")
  21641. },
  21642. {
  21643. name: "The 500 Foot Femboy",
  21644. height: math.unit(500, "feet"),
  21645. default: true
  21646. },
  21647. {
  21648. name: "Megmacro",
  21649. height: math.unit(20, "miles")
  21650. },
  21651. ]
  21652. ))
  21653. characterMakers.push(() => makeCharacter(
  21654. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21655. {
  21656. front: {
  21657. height: math.unit(8 + 2 / 12, "feet"),
  21658. weight: math.unit(275, "lb"),
  21659. name: "Front",
  21660. image: {
  21661. source: "./media/characters/draganta/front.svg",
  21662. extra: 1177 / 1135,
  21663. bottom: 33.46 / 1212.1
  21664. }
  21665. },
  21666. },
  21667. [
  21668. {
  21669. name: "Normal",
  21670. height: math.unit(8 + 6 / 12, "feet"),
  21671. default: true
  21672. },
  21673. {
  21674. name: "Macro",
  21675. height: math.unit(150, "feet")
  21676. },
  21677. {
  21678. name: "Megamacro",
  21679. height: math.unit(1000, "miles")
  21680. },
  21681. ]
  21682. ))
  21683. characterMakers.push(() => makeCharacter(
  21684. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21685. {
  21686. front: {
  21687. height: math.unit(1.72, "m"),
  21688. weight: math.unit(80, "lb"),
  21689. name: "Front",
  21690. image: {
  21691. source: "./media/characters/voski/front.svg",
  21692. extra: 2076.22 / 2022.4,
  21693. bottom: 102.7 / 2177.3866
  21694. }
  21695. },
  21696. frontNsfw: {
  21697. height: math.unit(1.72, "m"),
  21698. weight: math.unit(80, "lb"),
  21699. name: "Front (NSFW)",
  21700. image: {
  21701. source: "./media/characters/voski/front-nsfw.svg",
  21702. extra: 2076.22 / 2022.4,
  21703. bottom: 102.7 / 2177.3866
  21704. }
  21705. },
  21706. back: {
  21707. height: math.unit(1.72, "m"),
  21708. weight: math.unit(80, "lb"),
  21709. name: "Back",
  21710. image: {
  21711. source: "./media/characters/voski/back.svg",
  21712. extra: 2104 / 2051,
  21713. bottom: 10.45 / 2113.63
  21714. }
  21715. },
  21716. },
  21717. [
  21718. {
  21719. name: "Normal",
  21720. height: math.unit(1.72, "m")
  21721. },
  21722. {
  21723. name: "Macro",
  21724. height: math.unit(55, "m"),
  21725. default: true
  21726. },
  21727. {
  21728. name: "Macro+",
  21729. height: math.unit(300, "m")
  21730. },
  21731. {
  21732. name: "Macro++",
  21733. height: math.unit(700, "m")
  21734. },
  21735. {
  21736. name: "Macro+++",
  21737. height: math.unit(4500, "m")
  21738. },
  21739. {
  21740. name: "Macro++++",
  21741. height: math.unit(45, "km")
  21742. },
  21743. {
  21744. name: "Macro+++++",
  21745. height: math.unit(1220, "km")
  21746. },
  21747. ]
  21748. ))
  21749. characterMakers.push(() => makeCharacter(
  21750. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21751. {
  21752. front: {
  21753. height: math.unit(2.3, "m"),
  21754. weight: math.unit(304, "kg"),
  21755. name: "Front",
  21756. image: {
  21757. source: "./media/characters/icowom-lee/front.svg",
  21758. extra: 985 / 955,
  21759. bottom: 25.4 / 1012
  21760. }
  21761. },
  21762. fronttentacles: {
  21763. height: math.unit(2.3, "m"),
  21764. weight: math.unit(304, "kg"),
  21765. name: "Front-tentacles",
  21766. image: {
  21767. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21768. extra: 985 / 955,
  21769. bottom: 25.4 / 1012
  21770. }
  21771. },
  21772. back: {
  21773. height: math.unit(2.3, "m"),
  21774. weight: math.unit(304, "kg"),
  21775. name: "Back",
  21776. image: {
  21777. source: "./media/characters/icowom-lee/back.svg",
  21778. extra: 975 / 954,
  21779. bottom: 9.5 / 985
  21780. }
  21781. },
  21782. backtentacles: {
  21783. height: math.unit(2.3, "m"),
  21784. weight: math.unit(304, "kg"),
  21785. name: "Back-tentacles",
  21786. image: {
  21787. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21788. extra: 975 / 954,
  21789. bottom: 9.5 / 985
  21790. }
  21791. },
  21792. frontDressed: {
  21793. height: math.unit(2.3, "m"),
  21794. weight: math.unit(304, "kg"),
  21795. name: "Front (Dressed)",
  21796. image: {
  21797. source: "./media/characters/icowom-lee/front-dressed.svg",
  21798. extra: 3076 / 2933,
  21799. bottom: 51.4 / 3125.1889
  21800. }
  21801. },
  21802. rump: {
  21803. height: math.unit(0.776, "meters"),
  21804. name: "Rump",
  21805. image: {
  21806. source: "./media/characters/icowom-lee/rump.svg"
  21807. }
  21808. },
  21809. genitals: {
  21810. height: math.unit(0.78, "meters"),
  21811. name: "Genitals",
  21812. image: {
  21813. source: "./media/characters/icowom-lee/genitals.svg"
  21814. }
  21815. },
  21816. },
  21817. [
  21818. {
  21819. name: "Normal",
  21820. height: math.unit(2.3, "meters"),
  21821. default: true
  21822. },
  21823. {
  21824. name: "Macro",
  21825. height: math.unit(94, "meters"),
  21826. default: true
  21827. },
  21828. ]
  21829. ))
  21830. characterMakers.push(() => makeCharacter(
  21831. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21832. {
  21833. front: {
  21834. height: math.unit(22, "meters"),
  21835. weight: math.unit(21000, "kg"),
  21836. name: "Front",
  21837. image: {
  21838. source: "./media/characters/shock-diamond/front.svg",
  21839. extra: 2204 / 2053,
  21840. bottom: 65 / 2239.47
  21841. }
  21842. },
  21843. frontNude: {
  21844. height: math.unit(22, "meters"),
  21845. weight: math.unit(21000, "kg"),
  21846. name: "Front (Nude)",
  21847. image: {
  21848. source: "./media/characters/shock-diamond/front-nude.svg",
  21849. extra: 2514 / 2285,
  21850. bottom: 13 / 2527.56
  21851. }
  21852. },
  21853. },
  21854. [
  21855. {
  21856. name: "Normal",
  21857. height: math.unit(3, "meters")
  21858. },
  21859. {
  21860. name: "Macro",
  21861. height: math.unit(22, "meters"),
  21862. default: true
  21863. },
  21864. ]
  21865. ))
  21866. characterMakers.push(() => makeCharacter(
  21867. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21868. {
  21869. front: {
  21870. height: math.unit(5 + 4 / 12, "feet"),
  21871. weight: math.unit(120, "lb"),
  21872. name: "Front",
  21873. image: {
  21874. source: "./media/characters/rory/front.svg",
  21875. extra: 589 / 556,
  21876. bottom: 45.7 / 635.76
  21877. }
  21878. },
  21879. frontNude: {
  21880. height: math.unit(5 + 4 / 12, "feet"),
  21881. weight: math.unit(120, "lb"),
  21882. name: "Front (Nude)",
  21883. image: {
  21884. source: "./media/characters/rory/front-nude.svg",
  21885. extra: 589 / 556,
  21886. bottom: 45.7 / 635.76
  21887. }
  21888. },
  21889. side: {
  21890. height: math.unit(5 + 4 / 12, "feet"),
  21891. weight: math.unit(120, "lb"),
  21892. name: "Side",
  21893. image: {
  21894. source: "./media/characters/rory/side.svg",
  21895. extra: 597 / 564,
  21896. bottom: 55 / 653
  21897. }
  21898. },
  21899. back: {
  21900. height: math.unit(5 + 4 / 12, "feet"),
  21901. weight: math.unit(120, "lb"),
  21902. name: "Back",
  21903. image: {
  21904. source: "./media/characters/rory/back.svg",
  21905. extra: 620 / 585,
  21906. bottom: 8.86 / 630.43
  21907. }
  21908. },
  21909. dick: {
  21910. height: math.unit(0.86, "feet"),
  21911. name: "Dick",
  21912. image: {
  21913. source: "./media/characters/rory/dick.svg"
  21914. }
  21915. },
  21916. },
  21917. [
  21918. {
  21919. name: "Normal",
  21920. height: math.unit(5 + 4 / 12, "feet"),
  21921. default: true
  21922. },
  21923. {
  21924. name: "Macro",
  21925. height: math.unit(100, "feet")
  21926. },
  21927. {
  21928. name: "Macro+",
  21929. height: math.unit(140, "feet")
  21930. },
  21931. {
  21932. name: "Macro++",
  21933. height: math.unit(300, "feet")
  21934. },
  21935. ]
  21936. ))
  21937. characterMakers.push(() => makeCharacter(
  21938. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21939. {
  21940. front: {
  21941. height: math.unit(5 + 9 / 12, "feet"),
  21942. weight: math.unit(190, "lb"),
  21943. name: "Front",
  21944. image: {
  21945. source: "./media/characters/sprisk/front.svg",
  21946. extra: 1225 / 1180,
  21947. bottom: 42.7 / 1266.4
  21948. }
  21949. },
  21950. frontNsfw: {
  21951. height: math.unit(5 + 9 / 12, "feet"),
  21952. weight: math.unit(190, "lb"),
  21953. name: "Front (NSFW)",
  21954. image: {
  21955. source: "./media/characters/sprisk/front-nsfw.svg",
  21956. extra: 1225 / 1180,
  21957. bottom: 42.7 / 1266.4
  21958. }
  21959. },
  21960. back: {
  21961. height: math.unit(5 + 9 / 12, "feet"),
  21962. weight: math.unit(190, "lb"),
  21963. name: "Back",
  21964. image: {
  21965. source: "./media/characters/sprisk/back.svg",
  21966. extra: 1247 / 1200,
  21967. bottom: 5.6 / 1253.04
  21968. }
  21969. },
  21970. },
  21971. [
  21972. {
  21973. name: "Tiny",
  21974. height: math.unit(2, "inches")
  21975. },
  21976. {
  21977. name: "Normal",
  21978. height: math.unit(5 + 9 / 12, "feet"),
  21979. default: true
  21980. },
  21981. {
  21982. name: "Mini Macro",
  21983. height: math.unit(18, "feet")
  21984. },
  21985. {
  21986. name: "Macro",
  21987. height: math.unit(100, "feet")
  21988. },
  21989. {
  21990. name: "MACRO",
  21991. height: math.unit(50, "miles")
  21992. },
  21993. {
  21994. name: "M A C R O",
  21995. height: math.unit(300, "miles")
  21996. },
  21997. ]
  21998. ))
  21999. characterMakers.push(() => makeCharacter(
  22000. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22001. {
  22002. side: {
  22003. height: math.unit(15.6, "meters"),
  22004. weight: math.unit(700000, "kg"),
  22005. name: "Side",
  22006. image: {
  22007. source: "./media/characters/bunsen/side.svg",
  22008. extra: 1644 / 358
  22009. }
  22010. },
  22011. foot: {
  22012. height: math.unit(1.611 * 1644 / 358, "meter"),
  22013. name: "Foot",
  22014. image: {
  22015. source: "./media/characters/bunsen/foot.svg"
  22016. }
  22017. },
  22018. },
  22019. [
  22020. {
  22021. name: "Small",
  22022. height: math.unit(10, "feet")
  22023. },
  22024. {
  22025. name: "Normal",
  22026. height: math.unit(15.6, "meters"),
  22027. default: true
  22028. },
  22029. ]
  22030. ))
  22031. characterMakers.push(() => makeCharacter(
  22032. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22033. {
  22034. front: {
  22035. height: math.unit(4 + 11 / 12, "feet"),
  22036. weight: math.unit(140, "lb"),
  22037. name: "Front",
  22038. image: {
  22039. source: "./media/characters/sesh/front.svg",
  22040. extra: 3420 / 3231,
  22041. bottom: 72 / 3949.5
  22042. }
  22043. },
  22044. },
  22045. [
  22046. {
  22047. name: "Normal",
  22048. height: math.unit(4 + 11 / 12, "feet")
  22049. },
  22050. {
  22051. name: "Grown",
  22052. height: math.unit(15, "feet"),
  22053. default: true
  22054. },
  22055. {
  22056. name: "Macro",
  22057. height: math.unit(1500, "feet")
  22058. },
  22059. {
  22060. name: "Megamacro",
  22061. height: math.unit(30, "miles")
  22062. },
  22063. {
  22064. name: "Continental",
  22065. height: math.unit(3000, "miles")
  22066. },
  22067. {
  22068. name: "Gravity Mass",
  22069. height: math.unit(300000, "miles")
  22070. },
  22071. {
  22072. name: "Planet Buster",
  22073. height: math.unit(30000000, "miles")
  22074. },
  22075. {
  22076. name: "Big",
  22077. height: math.unit(3000000000, "miles")
  22078. },
  22079. ]
  22080. ))
  22081. characterMakers.push(() => makeCharacter(
  22082. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22083. {
  22084. front: {
  22085. height: math.unit(9, "feet"),
  22086. weight: math.unit(350, "lb"),
  22087. name: "Front",
  22088. image: {
  22089. source: "./media/characters/pepper/front.svg",
  22090. extra: 1448 / 1312,
  22091. bottom: 9.4 / 1457.88
  22092. }
  22093. },
  22094. back: {
  22095. height: math.unit(9, "feet"),
  22096. weight: math.unit(350, "lb"),
  22097. name: "Back",
  22098. image: {
  22099. source: "./media/characters/pepper/back.svg",
  22100. extra: 1423 / 1300,
  22101. bottom: 4.6 / 1429
  22102. }
  22103. },
  22104. maw: {
  22105. height: math.unit(0.932, "feet"),
  22106. name: "Maw",
  22107. image: {
  22108. source: "./media/characters/pepper/maw.svg"
  22109. }
  22110. },
  22111. },
  22112. [
  22113. {
  22114. name: "Normal",
  22115. height: math.unit(9, "feet"),
  22116. default: true
  22117. },
  22118. ]
  22119. ))
  22120. characterMakers.push(() => makeCharacter(
  22121. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22122. {
  22123. front: {
  22124. height: math.unit(6, "feet"),
  22125. weight: math.unit(150, "lb"),
  22126. name: "Front",
  22127. image: {
  22128. source: "./media/characters/maelstrom/front.svg",
  22129. extra: 2100 / 1883,
  22130. bottom: 94 / 2196.7
  22131. }
  22132. },
  22133. },
  22134. [
  22135. {
  22136. name: "Less Kaiju",
  22137. height: math.unit(200, "feet")
  22138. },
  22139. {
  22140. name: "Kaiju",
  22141. height: math.unit(400, "feet"),
  22142. default: true
  22143. },
  22144. {
  22145. name: "Kaiju-er",
  22146. height: math.unit(600, "feet")
  22147. },
  22148. ]
  22149. ))
  22150. characterMakers.push(() => makeCharacter(
  22151. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22152. {
  22153. front: {
  22154. height: math.unit(6 + 5 / 12, "feet"),
  22155. weight: math.unit(180, "lb"),
  22156. name: "Front",
  22157. image: {
  22158. source: "./media/characters/lexir/front.svg",
  22159. extra: 180 / 172,
  22160. bottom: 12 / 192
  22161. }
  22162. },
  22163. back: {
  22164. height: math.unit(6 + 5 / 12, "feet"),
  22165. weight: math.unit(180, "lb"),
  22166. name: "Back",
  22167. image: {
  22168. source: "./media/characters/lexir/back.svg",
  22169. extra: 183.84 / 175.5,
  22170. bottom: 3.1 / 187
  22171. }
  22172. },
  22173. },
  22174. [
  22175. {
  22176. name: "Very Smal",
  22177. height: math.unit(1, "nm")
  22178. },
  22179. {
  22180. name: "Normal",
  22181. height: math.unit(6 + 5 / 12, "feet"),
  22182. default: true
  22183. },
  22184. {
  22185. name: "Macro",
  22186. height: math.unit(1, "mile")
  22187. },
  22188. {
  22189. name: "Megamacro",
  22190. height: math.unit(50, "miles")
  22191. },
  22192. ]
  22193. ))
  22194. characterMakers.push(() => makeCharacter(
  22195. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22196. {
  22197. front: {
  22198. height: math.unit(1.5, "meters"),
  22199. weight: math.unit(100, "lb"),
  22200. name: "Front",
  22201. image: {
  22202. source: "./media/characters/maksio/front.svg",
  22203. extra: 1549 / 1531,
  22204. bottom: 123.7 / 1674.5429
  22205. }
  22206. },
  22207. back: {
  22208. height: math.unit(1.5, "meters"),
  22209. weight: math.unit(100, "lb"),
  22210. name: "Back",
  22211. image: {
  22212. source: "./media/characters/maksio/back.svg",
  22213. extra: 1541 / 1509,
  22214. bottom: 97 / 1639
  22215. }
  22216. },
  22217. hand: {
  22218. height: math.unit(0.621, "feet"),
  22219. name: "Hand",
  22220. image: {
  22221. source: "./media/characters/maksio/hand.svg"
  22222. }
  22223. },
  22224. foot: {
  22225. height: math.unit(1.611, "feet"),
  22226. name: "Foot",
  22227. image: {
  22228. source: "./media/characters/maksio/foot.svg"
  22229. }
  22230. },
  22231. },
  22232. [
  22233. {
  22234. name: "Shrunken",
  22235. height: math.unit(10, "cm")
  22236. },
  22237. {
  22238. name: "Normal",
  22239. height: math.unit(150, "cm"),
  22240. default: true
  22241. },
  22242. ]
  22243. ))
  22244. characterMakers.push(() => makeCharacter(
  22245. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22246. {
  22247. front: {
  22248. height: math.unit(100, "feet"),
  22249. name: "Front",
  22250. image: {
  22251. source: "./media/characters/erza-bear/front.svg",
  22252. extra: 2449 / 2390,
  22253. bottom: 46 / 2494
  22254. }
  22255. },
  22256. back: {
  22257. height: math.unit(100, "feet"),
  22258. name: "Back",
  22259. image: {
  22260. source: "./media/characters/erza-bear/back.svg",
  22261. extra: 2489 / 2430,
  22262. bottom: 85.4 / 2480
  22263. }
  22264. },
  22265. tail: {
  22266. height: math.unit(42, "feet"),
  22267. name: "Tail",
  22268. image: {
  22269. source: "./media/characters/erza-bear/tail.svg"
  22270. }
  22271. },
  22272. tongue: {
  22273. height: math.unit(8, "feet"),
  22274. name: "Tongue",
  22275. image: {
  22276. source: "./media/characters/erza-bear/tongue.svg"
  22277. }
  22278. },
  22279. dick: {
  22280. height: math.unit(10.5, "feet"),
  22281. name: "Dick",
  22282. image: {
  22283. source: "./media/characters/erza-bear/dick.svg"
  22284. }
  22285. },
  22286. dickVertical: {
  22287. height: math.unit(16.9, "feet"),
  22288. name: "Dick (Vertical)",
  22289. image: {
  22290. source: "./media/characters/erza-bear/dick-vertical.svg"
  22291. }
  22292. },
  22293. },
  22294. [
  22295. {
  22296. name: "Macro",
  22297. height: math.unit(100, "feet"),
  22298. default: true
  22299. },
  22300. ]
  22301. ))
  22302. characterMakers.push(() => makeCharacter(
  22303. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22304. {
  22305. front: {
  22306. height: math.unit(172, "cm"),
  22307. weight: math.unit(73, "kg"),
  22308. name: "Front",
  22309. image: {
  22310. source: "./media/characters/violet-flor/front.svg",
  22311. extra: 1530 / 1442,
  22312. bottom: 61.9 / 1588.8
  22313. }
  22314. },
  22315. back: {
  22316. height: math.unit(180, "cm"),
  22317. weight: math.unit(73, "kg"),
  22318. name: "Back",
  22319. image: {
  22320. source: "./media/characters/violet-flor/back.svg",
  22321. extra: 1692 / 1630,
  22322. bottom: 20 / 1712
  22323. }
  22324. },
  22325. },
  22326. [
  22327. {
  22328. name: "Normal",
  22329. height: math.unit(172, "cm"),
  22330. default: true
  22331. },
  22332. ]
  22333. ))
  22334. characterMakers.push(() => makeCharacter(
  22335. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22336. {
  22337. front: {
  22338. height: math.unit(6, "feet"),
  22339. weight: math.unit(220, "lb"),
  22340. name: "Front",
  22341. image: {
  22342. source: "./media/characters/lynn-rhea/front.svg",
  22343. extra: 310 / 273
  22344. }
  22345. },
  22346. back: {
  22347. height: math.unit(6, "feet"),
  22348. weight: math.unit(220, "lb"),
  22349. name: "Back",
  22350. image: {
  22351. source: "./media/characters/lynn-rhea/back.svg",
  22352. extra: 310 / 273
  22353. }
  22354. },
  22355. dicks: {
  22356. height: math.unit(0.9, "feet"),
  22357. name: "Dicks",
  22358. image: {
  22359. source: "./media/characters/lynn-rhea/dicks.svg"
  22360. }
  22361. },
  22362. slit: {
  22363. height: math.unit(0.4, "feet"),
  22364. name: "Slit",
  22365. image: {
  22366. source: "./media/characters/lynn-rhea/slit.svg"
  22367. }
  22368. },
  22369. },
  22370. [
  22371. {
  22372. name: "Micro",
  22373. height: math.unit(1, "inch")
  22374. },
  22375. {
  22376. name: "Macro",
  22377. height: math.unit(60, "feet"),
  22378. default: true
  22379. },
  22380. {
  22381. name: "Megamacro",
  22382. height: math.unit(2, "miles")
  22383. },
  22384. {
  22385. name: "Gigamacro",
  22386. height: math.unit(3, "earths")
  22387. },
  22388. {
  22389. name: "Galactic",
  22390. height: math.unit(0.8, "galaxies")
  22391. },
  22392. ]
  22393. ))
  22394. characterMakers.push(() => makeCharacter(
  22395. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22396. {
  22397. front: {
  22398. height: math.unit(1600, "feet"),
  22399. weight: math.unit(85758785169, "kg"),
  22400. name: "Front",
  22401. image: {
  22402. source: "./media/characters/valathos/front.svg",
  22403. extra: 1451 / 1339
  22404. }
  22405. },
  22406. },
  22407. [
  22408. {
  22409. name: "Macro",
  22410. height: math.unit(1600, "feet"),
  22411. default: true
  22412. },
  22413. ]
  22414. ))
  22415. characterMakers.push(() => makeCharacter(
  22416. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22417. {
  22418. front: {
  22419. height: math.unit(7 + 5 / 12, "feet"),
  22420. weight: math.unit(300, "lb"),
  22421. name: "Front",
  22422. image: {
  22423. source: "./media/characters/azula/front.svg",
  22424. extra: 3208 / 2880,
  22425. bottom: 80.2 / 3277
  22426. }
  22427. },
  22428. back: {
  22429. height: math.unit(7 + 5 / 12, "feet"),
  22430. weight: math.unit(300, "lb"),
  22431. name: "Back",
  22432. image: {
  22433. source: "./media/characters/azula/back.svg",
  22434. extra: 3169 / 2822,
  22435. bottom: 150.6 / 3321
  22436. }
  22437. },
  22438. },
  22439. [
  22440. {
  22441. name: "Normal",
  22442. height: math.unit(7 + 5 / 12, "feet"),
  22443. default: true
  22444. },
  22445. {
  22446. name: "Big",
  22447. height: math.unit(20, "feet")
  22448. },
  22449. ]
  22450. ))
  22451. characterMakers.push(() => makeCharacter(
  22452. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22453. {
  22454. front: {
  22455. height: math.unit(5 + 1 / 12, "feet"),
  22456. weight: math.unit(110, "lb"),
  22457. name: "Front",
  22458. image: {
  22459. source: "./media/characters/rupert/front.svg",
  22460. extra: 1549 / 1495,
  22461. bottom: 54.2 / 1604.4
  22462. }
  22463. },
  22464. },
  22465. [
  22466. {
  22467. name: "Normal",
  22468. height: math.unit(5 + 1 / 12, "feet"),
  22469. default: true
  22470. },
  22471. ]
  22472. ))
  22473. characterMakers.push(() => makeCharacter(
  22474. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22475. {
  22476. front: {
  22477. height: math.unit(8 + 4 / 12, "feet"),
  22478. weight: math.unit(350, "lb"),
  22479. name: "Front",
  22480. image: {
  22481. source: "./media/characters/sheera-castellar/front.svg",
  22482. extra: 1957 / 1894,
  22483. bottom: 26.97 / 1975.017
  22484. }
  22485. },
  22486. side: {
  22487. height: math.unit(8 + 4 / 12, "feet"),
  22488. weight: math.unit(350, "lb"),
  22489. name: "Side",
  22490. image: {
  22491. source: "./media/characters/sheera-castellar/side.svg",
  22492. extra: 1957 / 1894
  22493. }
  22494. },
  22495. back: {
  22496. height: math.unit(8 + 4 / 12, "feet"),
  22497. weight: math.unit(350, "lb"),
  22498. name: "Back",
  22499. image: {
  22500. source: "./media/characters/sheera-castellar/back.svg",
  22501. extra: 1957 / 1894
  22502. }
  22503. },
  22504. angled: {
  22505. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22506. weight: math.unit(350, "lb"),
  22507. name: "Angled",
  22508. image: {
  22509. source: "./media/characters/sheera-castellar/angled.svg",
  22510. extra: 1807 / 1707,
  22511. bottom: 68 / 1875
  22512. }
  22513. },
  22514. genitals: {
  22515. height: math.unit(2.2, "feet"),
  22516. name: "Genitals",
  22517. image: {
  22518. source: "./media/characters/sheera-castellar/genitals.svg"
  22519. }
  22520. },
  22521. },
  22522. [
  22523. {
  22524. name: "Normal",
  22525. height: math.unit(8 + 4 / 12, "feet")
  22526. },
  22527. {
  22528. name: "Macro",
  22529. height: math.unit(150, "feet"),
  22530. default: true
  22531. },
  22532. {
  22533. name: "Macro+",
  22534. height: math.unit(800, "feet")
  22535. },
  22536. ]
  22537. ))
  22538. characterMakers.push(() => makeCharacter(
  22539. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22540. {
  22541. front: {
  22542. height: math.unit(6, "feet"),
  22543. weight: math.unit(150, "lb"),
  22544. name: "Front",
  22545. image: {
  22546. source: "./media/characters/jaipur/front.svg",
  22547. extra: 3860 / 3731,
  22548. bottom: 287 / 4140
  22549. }
  22550. },
  22551. back: {
  22552. height: math.unit(6, "feet"),
  22553. weight: math.unit(150, "lb"),
  22554. name: "Back",
  22555. image: {
  22556. source: "./media/characters/jaipur/back.svg",
  22557. extra: 4060 / 3930,
  22558. bottom: 151 / 4200
  22559. }
  22560. },
  22561. },
  22562. [
  22563. {
  22564. name: "Normal",
  22565. height: math.unit(1.85, "meters"),
  22566. default: true
  22567. },
  22568. {
  22569. name: "Macro",
  22570. height: math.unit(150, "meters")
  22571. },
  22572. {
  22573. name: "Macro+",
  22574. height: math.unit(0.5, "miles")
  22575. },
  22576. {
  22577. name: "Macro++",
  22578. height: math.unit(2.5, "miles")
  22579. },
  22580. {
  22581. name: "Macro+++",
  22582. height: math.unit(12, "miles")
  22583. },
  22584. {
  22585. name: "Macro++++",
  22586. height: math.unit(120, "miles")
  22587. },
  22588. {
  22589. name: "Macro+++++",
  22590. height: math.unit(1200, "miles")
  22591. },
  22592. ]
  22593. ))
  22594. characterMakers.push(() => makeCharacter(
  22595. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22596. {
  22597. front: {
  22598. height: math.unit(6, "feet"),
  22599. weight: math.unit(150, "lb"),
  22600. name: "Front",
  22601. image: {
  22602. source: "./media/characters/sheila-wolf/front.svg",
  22603. extra: 1931 / 1808,
  22604. bottom: 29.5 / 1960
  22605. }
  22606. },
  22607. dick: {
  22608. height: math.unit(1.464, "feet"),
  22609. name: "Dick",
  22610. image: {
  22611. source: "./media/characters/sheila-wolf/dick.svg"
  22612. }
  22613. },
  22614. muzzle: {
  22615. height: math.unit(0.513, "feet"),
  22616. name: "Muzzle",
  22617. image: {
  22618. source: "./media/characters/sheila-wolf/muzzle.svg"
  22619. }
  22620. },
  22621. },
  22622. [
  22623. {
  22624. name: "Macro",
  22625. height: math.unit(70, "feet"),
  22626. default: true
  22627. },
  22628. ]
  22629. ))
  22630. characterMakers.push(() => makeCharacter(
  22631. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22632. {
  22633. front: {
  22634. height: math.unit(32, "meters"),
  22635. weight: math.unit(300000, "kg"),
  22636. name: "Front",
  22637. image: {
  22638. source: "./media/characters/almor/front.svg",
  22639. extra: 1408 / 1322,
  22640. bottom: 94.6 / 1506.5
  22641. }
  22642. },
  22643. },
  22644. [
  22645. {
  22646. name: "Macro",
  22647. height: math.unit(32, "meters"),
  22648. default: true
  22649. },
  22650. ]
  22651. ))
  22652. characterMakers.push(() => makeCharacter(
  22653. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22654. {
  22655. front: {
  22656. height: math.unit(7, "feet"),
  22657. weight: math.unit(200, "lb"),
  22658. name: "Front",
  22659. image: {
  22660. source: "./media/characters/silver/front.svg",
  22661. extra: 472.1 / 450.5,
  22662. bottom: 26.5 / 499.424
  22663. }
  22664. },
  22665. },
  22666. [
  22667. {
  22668. name: "Normal",
  22669. height: math.unit(7, "feet"),
  22670. default: true
  22671. },
  22672. {
  22673. name: "Macro",
  22674. height: math.unit(800, "feet")
  22675. },
  22676. {
  22677. name: "Megamacro",
  22678. height: math.unit(250, "miles")
  22679. },
  22680. ]
  22681. ))
  22682. characterMakers.push(() => makeCharacter(
  22683. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22684. {
  22685. front: {
  22686. height: math.unit(6, "feet"),
  22687. weight: math.unit(150, "lb"),
  22688. name: "Front",
  22689. image: {
  22690. source: "./media/characters/pliskin/front.svg",
  22691. extra: 1469 / 1359,
  22692. bottom: 70 / 1540
  22693. }
  22694. },
  22695. },
  22696. [
  22697. {
  22698. name: "Micro",
  22699. height: math.unit(3, "inches")
  22700. },
  22701. {
  22702. name: "Normal",
  22703. height: math.unit(5 + 11 / 12, "feet"),
  22704. default: true
  22705. },
  22706. {
  22707. name: "Macro",
  22708. height: math.unit(120, "feet")
  22709. },
  22710. ]
  22711. ))
  22712. characterMakers.push(() => makeCharacter(
  22713. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22714. {
  22715. front: {
  22716. height: math.unit(6, "feet"),
  22717. weight: math.unit(150, "lb"),
  22718. name: "Front",
  22719. image: {
  22720. source: "./media/characters/sammy/front.svg",
  22721. extra: 1193 / 1089,
  22722. bottom: 30.5 / 1226
  22723. }
  22724. },
  22725. },
  22726. [
  22727. {
  22728. name: "Macro",
  22729. height: math.unit(1700, "feet"),
  22730. default: true
  22731. },
  22732. {
  22733. name: "Examacro",
  22734. height: math.unit(2.5e9, "lightyears")
  22735. },
  22736. ]
  22737. ))
  22738. characterMakers.push(() => makeCharacter(
  22739. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22740. {
  22741. front: {
  22742. height: math.unit(21, "meters"),
  22743. weight: math.unit(12, "tonnes"),
  22744. name: "Front",
  22745. image: {
  22746. source: "./media/characters/kuru/front.svg",
  22747. extra: 4301 / 3785,
  22748. bottom: 371.3 / 4691
  22749. }
  22750. },
  22751. },
  22752. [
  22753. {
  22754. name: "Macro",
  22755. height: math.unit(21, "meters"),
  22756. default: true
  22757. },
  22758. ]
  22759. ))
  22760. characterMakers.push(() => makeCharacter(
  22761. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22762. {
  22763. front: {
  22764. height: math.unit(23, "meters"),
  22765. weight: math.unit(12.2, "tonnes"),
  22766. name: "Front",
  22767. image: {
  22768. source: "./media/characters/rakka/front.svg",
  22769. extra: 4670 / 4169,
  22770. bottom: 301 / 4968.7
  22771. }
  22772. },
  22773. },
  22774. [
  22775. {
  22776. name: "Macro",
  22777. height: math.unit(23, "meters"),
  22778. default: true
  22779. },
  22780. ]
  22781. ))
  22782. characterMakers.push(() => makeCharacter(
  22783. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22784. {
  22785. front: {
  22786. height: math.unit(6, "feet"),
  22787. weight: math.unit(150, "lb"),
  22788. name: "Front",
  22789. image: {
  22790. source: "./media/characters/rhys-feline/front.svg",
  22791. extra: 2488 / 2308,
  22792. bottom: 35.67 / 2519.19
  22793. }
  22794. },
  22795. },
  22796. [
  22797. {
  22798. name: "Really Small",
  22799. height: math.unit(1, "nm")
  22800. },
  22801. {
  22802. name: "Micro",
  22803. height: math.unit(4, "inches")
  22804. },
  22805. {
  22806. name: "Normal",
  22807. height: math.unit(4 + 10 / 12, "feet"),
  22808. default: true
  22809. },
  22810. {
  22811. name: "Macro",
  22812. height: math.unit(100, "feet")
  22813. },
  22814. {
  22815. name: "Megamacto",
  22816. height: math.unit(50, "miles")
  22817. },
  22818. ]
  22819. ))
  22820. characterMakers.push(() => makeCharacter(
  22821. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22822. {
  22823. side: {
  22824. height: math.unit(30, "feet"),
  22825. weight: math.unit(35000, "kg"),
  22826. name: "Side",
  22827. image: {
  22828. source: "./media/characters/alydar/side.svg",
  22829. extra: 234 / 222,
  22830. bottom: 6.5 / 241
  22831. }
  22832. },
  22833. front: {
  22834. height: math.unit(30, "feet"),
  22835. weight: math.unit(35000, "kg"),
  22836. name: "Front",
  22837. image: {
  22838. source: "./media/characters/alydar/front.svg",
  22839. extra: 223.37 / 210.2,
  22840. bottom: 22.3 / 246.76
  22841. }
  22842. },
  22843. top: {
  22844. height: math.unit(64.54, "feet"),
  22845. weight: math.unit(35000, "kg"),
  22846. name: "Top",
  22847. image: {
  22848. source: "./media/characters/alydar/top.svg"
  22849. }
  22850. },
  22851. anthro: {
  22852. height: math.unit(30, "feet"),
  22853. weight: math.unit(9000, "kg"),
  22854. name: "Anthro",
  22855. image: {
  22856. source: "./media/characters/alydar/anthro.svg",
  22857. extra: 432 / 421,
  22858. bottom: 7.18 / 440
  22859. }
  22860. },
  22861. maw: {
  22862. height: math.unit(11.693, "feet"),
  22863. name: "Maw",
  22864. image: {
  22865. source: "./media/characters/alydar/maw.svg"
  22866. }
  22867. },
  22868. head: {
  22869. height: math.unit(11.693, "feet"),
  22870. name: "Head",
  22871. image: {
  22872. source: "./media/characters/alydar/head.svg"
  22873. }
  22874. },
  22875. headAlt: {
  22876. height: math.unit(12.861, "feet"),
  22877. name: "Head (Alt)",
  22878. image: {
  22879. source: "./media/characters/alydar/head-alt.svg"
  22880. }
  22881. },
  22882. wing: {
  22883. height: math.unit(20.712, "feet"),
  22884. name: "Wing",
  22885. image: {
  22886. source: "./media/characters/alydar/wing.svg"
  22887. }
  22888. },
  22889. wingFeather: {
  22890. height: math.unit(9.662, "feet"),
  22891. name: "Wing Feather",
  22892. image: {
  22893. source: "./media/characters/alydar/wing-feather.svg"
  22894. }
  22895. },
  22896. countourFeather: {
  22897. height: math.unit(4.154, "feet"),
  22898. name: "Contour Feather",
  22899. image: {
  22900. source: "./media/characters/alydar/contour-feather.svg"
  22901. }
  22902. },
  22903. },
  22904. [
  22905. {
  22906. name: "Diplomatic",
  22907. height: math.unit(13, "feet"),
  22908. default: true
  22909. },
  22910. {
  22911. name: "Small",
  22912. height: math.unit(30, "feet")
  22913. },
  22914. {
  22915. name: "Normal",
  22916. height: math.unit(95, "feet"),
  22917. default: true
  22918. },
  22919. {
  22920. name: "Large",
  22921. height: math.unit(285, "feet")
  22922. },
  22923. {
  22924. name: "Incomprehensible",
  22925. height: math.unit(450, "megameters")
  22926. },
  22927. ]
  22928. ))
  22929. characterMakers.push(() => makeCharacter(
  22930. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22931. {
  22932. side: {
  22933. height: math.unit(11, "feet"),
  22934. weight: math.unit(1750, "kg"),
  22935. name: "Side",
  22936. image: {
  22937. source: "./media/characters/selicia/side.svg",
  22938. extra: 440 / 396,
  22939. bottom: 24.8 / 465.979
  22940. }
  22941. },
  22942. maw: {
  22943. height: math.unit(4.665, "feet"),
  22944. name: "Maw",
  22945. image: {
  22946. source: "./media/characters/selicia/maw.svg"
  22947. }
  22948. },
  22949. },
  22950. [
  22951. {
  22952. name: "Normal",
  22953. height: math.unit(11, "feet"),
  22954. default: true
  22955. },
  22956. ]
  22957. ))
  22958. characterMakers.push(() => makeCharacter(
  22959. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22960. {
  22961. side: {
  22962. height: math.unit(2 + 6 / 12, "feet"),
  22963. weight: math.unit(30, "lb"),
  22964. name: "Side",
  22965. image: {
  22966. source: "./media/characters/layla/side.svg",
  22967. extra: 244 / 188,
  22968. bottom: 18.2 / 262.1
  22969. }
  22970. },
  22971. back: {
  22972. height: math.unit(2 + 6 / 12, "feet"),
  22973. weight: math.unit(30, "lb"),
  22974. name: "Back",
  22975. image: {
  22976. source: "./media/characters/layla/back.svg",
  22977. extra: 308 / 241.5,
  22978. bottom: 8.9 / 316.8
  22979. }
  22980. },
  22981. cumming: {
  22982. height: math.unit(2 + 6 / 12, "feet"),
  22983. weight: math.unit(30, "lb"),
  22984. name: "Cumming",
  22985. image: {
  22986. source: "./media/characters/layla/cumming.svg",
  22987. extra: 342 / 279,
  22988. bottom: 595 / 938
  22989. }
  22990. },
  22991. dickFlaccid: {
  22992. height: math.unit(2.595, "feet"),
  22993. name: "Flaccid Genitals",
  22994. image: {
  22995. source: "./media/characters/layla/dick-flaccid.svg"
  22996. }
  22997. },
  22998. dickErect: {
  22999. height: math.unit(2.359, "feet"),
  23000. name: "Erect Genitals",
  23001. image: {
  23002. source: "./media/characters/layla/dick-erect.svg"
  23003. }
  23004. },
  23005. },
  23006. [
  23007. {
  23008. name: "Micro",
  23009. height: math.unit(1, "inch")
  23010. },
  23011. {
  23012. name: "Small",
  23013. height: math.unit(1, "foot")
  23014. },
  23015. {
  23016. name: "Normal",
  23017. height: math.unit(2 + 6 / 12, "feet"),
  23018. default: true
  23019. },
  23020. {
  23021. name: "Macro",
  23022. height: math.unit(200, "feet")
  23023. },
  23024. {
  23025. name: "Megamacro",
  23026. height: math.unit(1000, "miles")
  23027. },
  23028. {
  23029. name: "Planetary",
  23030. height: math.unit(8000, "miles")
  23031. },
  23032. {
  23033. name: "True Layla",
  23034. height: math.unit(200000 * 7, "multiverses")
  23035. },
  23036. ]
  23037. ))
  23038. characterMakers.push(() => makeCharacter(
  23039. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23040. {
  23041. back: {
  23042. height: math.unit(10.5, "feet"),
  23043. weight: math.unit(800, "lb"),
  23044. name: "Back",
  23045. image: {
  23046. source: "./media/characters/knox/back.svg",
  23047. extra: 1486 / 1089,
  23048. bottom: 107 / 1601.4
  23049. }
  23050. },
  23051. side: {
  23052. height: math.unit(10.5, "feet"),
  23053. weight: math.unit(800, "lb"),
  23054. name: "Side",
  23055. image: {
  23056. source: "./media/characters/knox/side.svg",
  23057. extra: 244 / 218,
  23058. bottom: 14 / 260
  23059. }
  23060. },
  23061. },
  23062. [
  23063. {
  23064. name: "Compact",
  23065. height: math.unit(10.5, "feet"),
  23066. default: true
  23067. },
  23068. {
  23069. name: "Dynamax",
  23070. height: math.unit(210, "feet")
  23071. },
  23072. {
  23073. name: "Full Macro",
  23074. height: math.unit(850, "feet")
  23075. },
  23076. ]
  23077. ))
  23078. characterMakers.push(() => makeCharacter(
  23079. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23080. {
  23081. front: {
  23082. height: math.unit(6, "feet"),
  23083. weight: math.unit(152, "lb"),
  23084. name: "Front",
  23085. image: {
  23086. source: "./media/characters/shin-pikachu/front.svg",
  23087. extra: 1574 / 1480,
  23088. bottom: 53.3 / 1626
  23089. }
  23090. },
  23091. hand: {
  23092. height: math.unit(1.055, "feet"),
  23093. name: "Hand",
  23094. image: {
  23095. source: "./media/characters/shin-pikachu/hand.svg"
  23096. }
  23097. },
  23098. foot: {
  23099. height: math.unit(1.1, "feet"),
  23100. name: "Foot",
  23101. image: {
  23102. source: "./media/characters/shin-pikachu/foot.svg"
  23103. }
  23104. },
  23105. collar: {
  23106. height: math.unit(0.386, "feet"),
  23107. name: "Collar",
  23108. image: {
  23109. source: "./media/characters/shin-pikachu/collar.svg"
  23110. }
  23111. },
  23112. },
  23113. [
  23114. {
  23115. name: "Smallest",
  23116. height: math.unit(0.5, "inches")
  23117. },
  23118. {
  23119. name: "Micro",
  23120. height: math.unit(6, "inches")
  23121. },
  23122. {
  23123. name: "Normal",
  23124. height: math.unit(6, "feet"),
  23125. default: true
  23126. },
  23127. {
  23128. name: "Macro",
  23129. height: math.unit(150, "feet")
  23130. },
  23131. ]
  23132. ))
  23133. characterMakers.push(() => makeCharacter(
  23134. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23135. {
  23136. front: {
  23137. height: math.unit(28, "feet"),
  23138. weight: math.unit(10500, "lb"),
  23139. name: "Front",
  23140. image: {
  23141. source: "./media/characters/kayda/front.svg",
  23142. extra: 1536 / 1428,
  23143. bottom: 68.7 / 1603
  23144. }
  23145. },
  23146. back: {
  23147. height: math.unit(28, "feet"),
  23148. weight: math.unit(10500, "lb"),
  23149. name: "Back",
  23150. image: {
  23151. source: "./media/characters/kayda/back.svg",
  23152. extra: 1557 / 1464,
  23153. bottom: 39.5 / 1597.49
  23154. }
  23155. },
  23156. dick: {
  23157. height: math.unit(3.858, "feet"),
  23158. name: "Dick",
  23159. image: {
  23160. source: "./media/characters/kayda/dick.svg"
  23161. }
  23162. },
  23163. },
  23164. [
  23165. {
  23166. name: "Macro",
  23167. height: math.unit(28, "feet"),
  23168. default: true
  23169. },
  23170. ]
  23171. ))
  23172. characterMakers.push(() => makeCharacter(
  23173. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23174. {
  23175. front: {
  23176. height: math.unit(10 + 11 / 12, "feet"),
  23177. weight: math.unit(1400, "lb"),
  23178. name: "Front",
  23179. image: {
  23180. source: "./media/characters/brian/front.svg",
  23181. extra: 737 / 692,
  23182. bottom: 55.4 / 785
  23183. }
  23184. },
  23185. },
  23186. [
  23187. {
  23188. name: "Normal",
  23189. height: math.unit(10 + 11 / 12, "feet"),
  23190. default: true
  23191. },
  23192. ]
  23193. ))
  23194. characterMakers.push(() => makeCharacter(
  23195. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23196. {
  23197. front: {
  23198. height: math.unit(5 + 8 / 12, "feet"),
  23199. weight: math.unit(140, "lb"),
  23200. name: "Front",
  23201. image: {
  23202. source: "./media/characters/khemri/front.svg",
  23203. extra: 4780 / 4059,
  23204. bottom: 80.1 / 4859.25
  23205. }
  23206. },
  23207. },
  23208. [
  23209. {
  23210. name: "Micro",
  23211. height: math.unit(6, "inches")
  23212. },
  23213. {
  23214. name: "Normal",
  23215. height: math.unit(5 + 8 / 12, "feet"),
  23216. default: true
  23217. },
  23218. ]
  23219. ))
  23220. characterMakers.push(() => makeCharacter(
  23221. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23222. {
  23223. front: {
  23224. height: math.unit(13, "feet"),
  23225. weight: math.unit(1700, "lb"),
  23226. name: "Front",
  23227. image: {
  23228. source: "./media/characters/felix-braveheart/front.svg",
  23229. extra: 1222 / 1157,
  23230. bottom: 53.2 / 1280
  23231. }
  23232. },
  23233. back: {
  23234. height: math.unit(13, "feet"),
  23235. weight: math.unit(1700, "lb"),
  23236. name: "Back",
  23237. image: {
  23238. source: "./media/characters/felix-braveheart/back.svg",
  23239. extra: 1277 / 1203,
  23240. bottom: 50.2 / 1327
  23241. }
  23242. },
  23243. feral: {
  23244. height: math.unit(6, "feet"),
  23245. weight: math.unit(400, "lb"),
  23246. name: "Feral",
  23247. image: {
  23248. source: "./media/characters/felix-braveheart/feral.svg",
  23249. extra: 682 / 625,
  23250. bottom: 6.9 / 688
  23251. }
  23252. },
  23253. },
  23254. [
  23255. {
  23256. name: "Normal",
  23257. height: math.unit(13, "feet"),
  23258. default: true
  23259. },
  23260. ]
  23261. ))
  23262. characterMakers.push(() => makeCharacter(
  23263. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23264. {
  23265. side: {
  23266. height: math.unit(5 + 11 / 12, "feet"),
  23267. weight: math.unit(1400, "lb"),
  23268. name: "Side",
  23269. image: {
  23270. source: "./media/characters/shadow-blade/side.svg",
  23271. extra: 1726 / 1267,
  23272. bottom: 58.4 / 1785
  23273. }
  23274. },
  23275. },
  23276. [
  23277. {
  23278. name: "Normal",
  23279. height: math.unit(5 + 11 / 12, "feet"),
  23280. default: true
  23281. },
  23282. ]
  23283. ))
  23284. characterMakers.push(() => makeCharacter(
  23285. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23286. {
  23287. front: {
  23288. height: math.unit(1 + 6 / 12, "feet"),
  23289. weight: math.unit(25, "lb"),
  23290. name: "Front",
  23291. image: {
  23292. source: "./media/characters/karla-halldor/front.svg",
  23293. extra: 1459 / 1383,
  23294. bottom: 12 / 1472
  23295. }
  23296. },
  23297. },
  23298. [
  23299. {
  23300. name: "Normal",
  23301. height: math.unit(1 + 6 / 12, "feet"),
  23302. default: true
  23303. },
  23304. ]
  23305. ))
  23306. characterMakers.push(() => makeCharacter(
  23307. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23308. {
  23309. front: {
  23310. height: math.unit(6 + 2 / 12, "feet"),
  23311. weight: math.unit(160, "lb"),
  23312. name: "Front",
  23313. image: {
  23314. source: "./media/characters/ariam/front.svg",
  23315. extra: 714 / 617,
  23316. bottom: 23.4 / 737,
  23317. }
  23318. },
  23319. squatting: {
  23320. height: math.unit(4.1, "feet"),
  23321. weight: math.unit(160, "lb"),
  23322. name: "Squatting",
  23323. image: {
  23324. source: "./media/characters/ariam/squatting.svg",
  23325. extra: 2617 / 2112,
  23326. bottom: 61.2 / 2681,
  23327. }
  23328. },
  23329. },
  23330. [
  23331. {
  23332. name: "Normal",
  23333. height: math.unit(6 + 2 / 12, "feet"),
  23334. default: true
  23335. },
  23336. {
  23337. name: "Normal+",
  23338. height: math.unit(4, "meters")
  23339. },
  23340. {
  23341. name: "Macro",
  23342. height: math.unit(50, "meters")
  23343. },
  23344. {
  23345. name: "Macro+",
  23346. height: math.unit(100, "meters")
  23347. },
  23348. {
  23349. name: "Megamacro",
  23350. height: math.unit(20, "km")
  23351. },
  23352. ]
  23353. ))
  23354. characterMakers.push(() => makeCharacter(
  23355. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23356. {
  23357. front: {
  23358. height: math.unit(1.67, "meters"),
  23359. weight: math.unit(140, "lb"),
  23360. name: "Front",
  23361. image: {
  23362. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23363. extra: 438 / 410,
  23364. bottom: 0.75 / 439
  23365. }
  23366. },
  23367. },
  23368. [
  23369. {
  23370. name: "Shrunken",
  23371. height: math.unit(7.6, "cm")
  23372. },
  23373. {
  23374. name: "Human Scale",
  23375. height: math.unit(1.67, "meters")
  23376. },
  23377. {
  23378. name: "Wolxi Scale",
  23379. height: math.unit(36.7, "meters"),
  23380. default: true
  23381. },
  23382. ]
  23383. ))
  23384. characterMakers.push(() => makeCharacter(
  23385. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23386. {
  23387. front: {
  23388. height: math.unit(1.73, "meters"),
  23389. weight: math.unit(240, "lb"),
  23390. name: "Front",
  23391. image: {
  23392. source: "./media/characters/izue-two-mothers/front.svg",
  23393. extra: 469 / 437,
  23394. bottom: 1.24 / 470.6
  23395. }
  23396. },
  23397. },
  23398. [
  23399. {
  23400. name: "Shrunken",
  23401. height: math.unit(7.86, "cm")
  23402. },
  23403. {
  23404. name: "Human Scale",
  23405. height: math.unit(1.73, "meters")
  23406. },
  23407. {
  23408. name: "Wolxi Scale",
  23409. height: math.unit(38, "meters"),
  23410. default: true
  23411. },
  23412. ]
  23413. ))
  23414. characterMakers.push(() => makeCharacter(
  23415. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23416. {
  23417. front: {
  23418. height: math.unit(1.55, "meters"),
  23419. weight: math.unit(120, "lb"),
  23420. name: "Front",
  23421. image: {
  23422. source: "./media/characters/teeku-love-shack/front.svg",
  23423. extra: 387 / 362,
  23424. bottom: 1.51 / 388
  23425. }
  23426. },
  23427. },
  23428. [
  23429. {
  23430. name: "Shrunken",
  23431. height: math.unit(7, "cm")
  23432. },
  23433. {
  23434. name: "Human Scale",
  23435. height: math.unit(1.55, "meters")
  23436. },
  23437. {
  23438. name: "Wolxi Scale",
  23439. height: math.unit(34.1, "meters"),
  23440. default: true
  23441. },
  23442. ]
  23443. ))
  23444. characterMakers.push(() => makeCharacter(
  23445. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23446. {
  23447. front: {
  23448. height: math.unit(1.83, "meters"),
  23449. weight: math.unit(135, "lb"),
  23450. name: "Front",
  23451. image: {
  23452. source: "./media/characters/dejma-the-red/front.svg",
  23453. extra: 480 / 458,
  23454. bottom: 1.8 / 482
  23455. }
  23456. },
  23457. },
  23458. [
  23459. {
  23460. name: "Shrunken",
  23461. height: math.unit(8.3, "cm")
  23462. },
  23463. {
  23464. name: "Human Scale",
  23465. height: math.unit(1.83, "meters")
  23466. },
  23467. {
  23468. name: "Wolxi Scale",
  23469. height: math.unit(40, "meters"),
  23470. default: true
  23471. },
  23472. ]
  23473. ))
  23474. characterMakers.push(() => makeCharacter(
  23475. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23476. {
  23477. front: {
  23478. height: math.unit(1.78, "meters"),
  23479. weight: math.unit(65, "kg"),
  23480. name: "Front",
  23481. image: {
  23482. source: "./media/characters/aki/front.svg",
  23483. extra: 452 / 415
  23484. }
  23485. },
  23486. frontNsfw: {
  23487. height: math.unit(1.78, "meters"),
  23488. weight: math.unit(65, "kg"),
  23489. name: "Front (NSFW)",
  23490. image: {
  23491. source: "./media/characters/aki/front-nsfw.svg",
  23492. extra: 452 / 415
  23493. }
  23494. },
  23495. back: {
  23496. height: math.unit(1.78, "meters"),
  23497. weight: math.unit(65, "kg"),
  23498. name: "Back",
  23499. image: {
  23500. source: "./media/characters/aki/back.svg",
  23501. extra: 452 / 415
  23502. }
  23503. },
  23504. rump: {
  23505. height: math.unit(2.05, "feet"),
  23506. name: "Rump",
  23507. image: {
  23508. source: "./media/characters/aki/rump.svg"
  23509. }
  23510. },
  23511. dick: {
  23512. height: math.unit(0.95, "feet"),
  23513. name: "Dick",
  23514. image: {
  23515. source: "./media/characters/aki/dick.svg"
  23516. }
  23517. },
  23518. },
  23519. [
  23520. {
  23521. name: "Micro",
  23522. height: math.unit(15, "cm")
  23523. },
  23524. {
  23525. name: "Normal",
  23526. height: math.unit(178, "cm"),
  23527. default: true
  23528. },
  23529. {
  23530. name: "Macro",
  23531. height: math.unit(214, "m")
  23532. },
  23533. {
  23534. name: "Macro+",
  23535. height: math.unit(534, "m")
  23536. },
  23537. ]
  23538. ))
  23539. characterMakers.push(() => makeCharacter(
  23540. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23541. {
  23542. front: {
  23543. height: math.unit(5 + 5 / 12, "feet"),
  23544. weight: math.unit(120, "lb"),
  23545. name: "Front",
  23546. image: {
  23547. source: "./media/characters/ari/front.svg",
  23548. extra: 714.5 / 682,
  23549. bottom: 8 / 722.5
  23550. }
  23551. },
  23552. },
  23553. [
  23554. {
  23555. name: "Normal",
  23556. height: math.unit(5 + 5 / 12, "feet")
  23557. },
  23558. {
  23559. name: "Macro",
  23560. height: math.unit(100, "feet"),
  23561. default: true
  23562. },
  23563. {
  23564. name: "Megamacro",
  23565. height: math.unit(100, "miles")
  23566. },
  23567. {
  23568. name: "Gigamacro",
  23569. height: math.unit(80000, "miles")
  23570. },
  23571. ]
  23572. ))
  23573. characterMakers.push(() => makeCharacter(
  23574. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23575. {
  23576. side: {
  23577. height: math.unit(9, "feet"),
  23578. weight: math.unit(400, "kg"),
  23579. name: "Side",
  23580. image: {
  23581. source: "./media/characters/bolt/side.svg",
  23582. extra: 1126 / 896,
  23583. bottom: 60 / 1187.3,
  23584. }
  23585. },
  23586. },
  23587. [
  23588. {
  23589. name: "Micro",
  23590. height: math.unit(5, "inches")
  23591. },
  23592. {
  23593. name: "Normal",
  23594. height: math.unit(9, "feet"),
  23595. default: true
  23596. },
  23597. {
  23598. name: "Macro",
  23599. height: math.unit(700, "feet")
  23600. },
  23601. {
  23602. name: "Max Size",
  23603. height: math.unit(1.52e22, "yottameters")
  23604. },
  23605. ]
  23606. ))
  23607. characterMakers.push(() => makeCharacter(
  23608. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23609. {
  23610. front: {
  23611. height: math.unit(4.53, "meters"),
  23612. weight: math.unit(3, "tons"),
  23613. name: "Front",
  23614. image: {
  23615. source: "./media/characters/draekon-sylviar/front.svg",
  23616. extra: 1228 / 1068,
  23617. bottom: 41 / 1270
  23618. }
  23619. },
  23620. tail: {
  23621. height: math.unit(1.772, "meter"),
  23622. name: "Tail",
  23623. image: {
  23624. source: "./media/characters/draekon-sylviar/tail.svg"
  23625. }
  23626. },
  23627. head: {
  23628. height: math.unit(1.331, "meter"),
  23629. name: "Head",
  23630. image: {
  23631. source: "./media/characters/draekon-sylviar/head.svg"
  23632. }
  23633. },
  23634. hand: {
  23635. height: math.unit(0.564, "meter"),
  23636. name: "Hand",
  23637. image: {
  23638. source: "./media/characters/draekon-sylviar/hand.svg"
  23639. }
  23640. },
  23641. foot: {
  23642. height: math.unit(0.621, "meter"),
  23643. name: "Foot",
  23644. image: {
  23645. source: "./media/characters/draekon-sylviar/foot.svg",
  23646. bottom: 32 / 324
  23647. }
  23648. },
  23649. dick: {
  23650. height: math.unit(61, "cm"),
  23651. name: "Dick",
  23652. image: {
  23653. source: "./media/characters/draekon-sylviar/dick.svg"
  23654. }
  23655. },
  23656. dickseparated: {
  23657. height: math.unit(61, "cm"),
  23658. name: "Dick-separated",
  23659. image: {
  23660. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23661. }
  23662. },
  23663. },
  23664. [
  23665. {
  23666. name: "Small",
  23667. height: math.unit(4.53 / 2, "meters"),
  23668. default: true
  23669. },
  23670. {
  23671. name: "Normal",
  23672. height: math.unit(4.53, "meters"),
  23673. default: true
  23674. },
  23675. {
  23676. name: "Large",
  23677. height: math.unit(4.53 * 2, "meters"),
  23678. },
  23679. ]
  23680. ))
  23681. characterMakers.push(() => makeCharacter(
  23682. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23683. {
  23684. front: {
  23685. height: math.unit(6 + 2 / 12, "feet"),
  23686. weight: math.unit(180, "lb"),
  23687. name: "Front",
  23688. image: {
  23689. source: "./media/characters/brawler/front.svg",
  23690. extra: 3301 / 3027,
  23691. bottom: 138 / 3439
  23692. }
  23693. },
  23694. },
  23695. [
  23696. {
  23697. name: "Normal",
  23698. height: math.unit(6 + 2 / 12, "feet"),
  23699. default: true
  23700. },
  23701. ]
  23702. ))
  23703. characterMakers.push(() => makeCharacter(
  23704. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23705. {
  23706. front: {
  23707. height: math.unit(11, "feet"),
  23708. weight: math.unit(1000, "lb"),
  23709. name: "Front",
  23710. image: {
  23711. source: "./media/characters/alex/front.svg",
  23712. bottom: 44.5 / 620
  23713. }
  23714. },
  23715. },
  23716. [
  23717. {
  23718. name: "Micro",
  23719. height: math.unit(5, "inches")
  23720. },
  23721. {
  23722. name: "Normal",
  23723. height: math.unit(11, "feet"),
  23724. default: true
  23725. },
  23726. {
  23727. name: "Macro",
  23728. height: math.unit(9.5e9, "feet")
  23729. },
  23730. {
  23731. name: "Max Size",
  23732. height: math.unit(1.4e283, "yottameters")
  23733. },
  23734. ]
  23735. ))
  23736. characterMakers.push(() => makeCharacter(
  23737. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23738. {
  23739. female: {
  23740. height: math.unit(29.9, "m"),
  23741. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23742. name: "Female",
  23743. image: {
  23744. source: "./media/characters/zenari/female.svg",
  23745. extra: 3281.6 / 3217,
  23746. bottom: 72.2 / 3353
  23747. }
  23748. },
  23749. male: {
  23750. height: math.unit(27.7, "m"),
  23751. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23752. name: "Male",
  23753. image: {
  23754. source: "./media/characters/zenari/male.svg",
  23755. extra: 3008 / 2991,
  23756. bottom: 54.6 / 3069
  23757. }
  23758. },
  23759. },
  23760. [
  23761. {
  23762. name: "Macro",
  23763. height: math.unit(29.7, "meters"),
  23764. default: true
  23765. },
  23766. ]
  23767. ))
  23768. characterMakers.push(() => makeCharacter(
  23769. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23770. {
  23771. female: {
  23772. height: math.unit(23.8, "m"),
  23773. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23774. name: "Female",
  23775. image: {
  23776. source: "./media/characters/mactarian/female.svg",
  23777. extra: 2662 / 2569,
  23778. bottom: 73 / 2736
  23779. }
  23780. },
  23781. male: {
  23782. height: math.unit(23.8, "m"),
  23783. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23784. name: "Male",
  23785. image: {
  23786. source: "./media/characters/mactarian/male.svg",
  23787. extra: 2673 / 2600,
  23788. bottom: 76 / 2750
  23789. }
  23790. },
  23791. },
  23792. [
  23793. {
  23794. name: "Macro",
  23795. height: math.unit(23.8, "meters"),
  23796. default: true
  23797. },
  23798. ]
  23799. ))
  23800. characterMakers.push(() => makeCharacter(
  23801. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23802. {
  23803. female: {
  23804. height: math.unit(19.3, "m"),
  23805. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23806. name: "Female",
  23807. image: {
  23808. source: "./media/characters/umok/female.svg",
  23809. extra: 2186 / 2078,
  23810. bottom: 87 / 2277
  23811. }
  23812. },
  23813. male: {
  23814. height: math.unit(19.5, "m"),
  23815. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23816. name: "Male",
  23817. image: {
  23818. source: "./media/characters/umok/male.svg",
  23819. extra: 2233 / 2140,
  23820. bottom: 24.4 / 2258
  23821. }
  23822. },
  23823. },
  23824. [
  23825. {
  23826. name: "Macro",
  23827. height: math.unit(19.3, "meters"),
  23828. default: true
  23829. },
  23830. ]
  23831. ))
  23832. characterMakers.push(() => makeCharacter(
  23833. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23834. {
  23835. female: {
  23836. height: math.unit(26.15, "m"),
  23837. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23838. name: "Female",
  23839. image: {
  23840. source: "./media/characters/joraxian/female.svg",
  23841. extra: 2912 / 2824,
  23842. bottom: 36 / 2956
  23843. }
  23844. },
  23845. male: {
  23846. height: math.unit(25.4, "m"),
  23847. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23848. name: "Male",
  23849. image: {
  23850. source: "./media/characters/joraxian/male.svg",
  23851. extra: 2877 / 2721,
  23852. bottom: 82 / 2967
  23853. }
  23854. },
  23855. },
  23856. [
  23857. {
  23858. name: "Macro",
  23859. height: math.unit(26.15, "meters"),
  23860. default: true
  23861. },
  23862. ]
  23863. ))
  23864. characterMakers.push(() => makeCharacter(
  23865. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23866. {
  23867. female: {
  23868. height: math.unit(21.6, "m"),
  23869. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23870. name: "Female",
  23871. image: {
  23872. source: "./media/characters/sthara/female.svg",
  23873. extra: 2516 / 2347,
  23874. bottom: 21.5 / 2537
  23875. }
  23876. },
  23877. male: {
  23878. height: math.unit(24, "m"),
  23879. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23880. name: "Male",
  23881. image: {
  23882. source: "./media/characters/sthara/male.svg",
  23883. extra: 2732 / 2607,
  23884. bottom: 23 / 2732
  23885. }
  23886. },
  23887. },
  23888. [
  23889. {
  23890. name: "Macro",
  23891. height: math.unit(21.6, "meters"),
  23892. default: true
  23893. },
  23894. ]
  23895. ))
  23896. characterMakers.push(() => makeCharacter(
  23897. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23898. {
  23899. front: {
  23900. height: math.unit(6 + 4 / 12, "feet"),
  23901. weight: math.unit(175, "lb"),
  23902. name: "Front",
  23903. image: {
  23904. source: "./media/characters/luka-bryzant/front.svg",
  23905. extra: 311 / 289,
  23906. bottom: 4 / 315
  23907. }
  23908. },
  23909. back: {
  23910. height: math.unit(6 + 4 / 12, "feet"),
  23911. weight: math.unit(175, "lb"),
  23912. name: "Back",
  23913. image: {
  23914. source: "./media/characters/luka-bryzant/back.svg",
  23915. extra: 311 / 289,
  23916. bottom: 3.8 / 313.7
  23917. }
  23918. },
  23919. },
  23920. [
  23921. {
  23922. name: "Micro",
  23923. height: math.unit(10, "inches")
  23924. },
  23925. {
  23926. name: "Normal",
  23927. height: math.unit(6 + 4 / 12, "feet"),
  23928. default: true
  23929. },
  23930. {
  23931. name: "Large",
  23932. height: math.unit(12, "feet")
  23933. },
  23934. ]
  23935. ))
  23936. characterMakers.push(() => makeCharacter(
  23937. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23938. {
  23939. front: {
  23940. height: math.unit(5 + 7 / 12, "feet"),
  23941. weight: math.unit(185, "lb"),
  23942. name: "Front",
  23943. image: {
  23944. source: "./media/characters/aman-aquila/front.svg",
  23945. extra: 1013 / 976,
  23946. bottom: 45.6 / 1057
  23947. }
  23948. },
  23949. side: {
  23950. height: math.unit(5 + 7 / 12, "feet"),
  23951. weight: math.unit(185, "lb"),
  23952. name: "Side",
  23953. image: {
  23954. source: "./media/characters/aman-aquila/side.svg",
  23955. extra: 1054 / 1011,
  23956. bottom: 15 / 1070
  23957. }
  23958. },
  23959. back: {
  23960. height: math.unit(5 + 7 / 12, "feet"),
  23961. weight: math.unit(185, "lb"),
  23962. name: "Back",
  23963. image: {
  23964. source: "./media/characters/aman-aquila/back.svg",
  23965. extra: 1026 / 970,
  23966. bottom: 12 / 1039
  23967. }
  23968. },
  23969. head: {
  23970. height: math.unit(1.211, "feet"),
  23971. name: "Head",
  23972. image: {
  23973. source: "./media/characters/aman-aquila/head.svg",
  23974. }
  23975. },
  23976. },
  23977. [
  23978. {
  23979. name: "Minimicro",
  23980. height: math.unit(0.057, "inches")
  23981. },
  23982. {
  23983. name: "Micro",
  23984. height: math.unit(7, "inches")
  23985. },
  23986. {
  23987. name: "Mini",
  23988. height: math.unit(3 + 7 / 12, "feet")
  23989. },
  23990. {
  23991. name: "Normal",
  23992. height: math.unit(5 + 7 / 12, "feet"),
  23993. default: true
  23994. },
  23995. {
  23996. name: "Macro",
  23997. height: math.unit(157 + 7 / 12, "feet")
  23998. },
  23999. {
  24000. name: "Megamacro",
  24001. height: math.unit(1557 + 7 / 12, "feet")
  24002. },
  24003. {
  24004. name: "Gigamacro",
  24005. height: math.unit(15557 + 7 / 12, "feet")
  24006. },
  24007. ]
  24008. ))
  24009. characterMakers.push(() => makeCharacter(
  24010. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24011. {
  24012. front: {
  24013. height: math.unit(3 + 2 / 12, "inches"),
  24014. weight: math.unit(0.3, "ounces"),
  24015. name: "Front",
  24016. image: {
  24017. source: "./media/characters/hiphae/front.svg",
  24018. extra: 1931 / 1683,
  24019. bottom: 24 / 1955
  24020. }
  24021. },
  24022. },
  24023. [
  24024. {
  24025. name: "Normal",
  24026. height: math.unit(3 + 1 / 2, "inches"),
  24027. default: true
  24028. },
  24029. ]
  24030. ))
  24031. characterMakers.push(() => makeCharacter(
  24032. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24033. {
  24034. front: {
  24035. height: math.unit(5 + 10 / 12, "feet"),
  24036. weight: math.unit(165, "lb"),
  24037. name: "Front",
  24038. image: {
  24039. source: "./media/characters/nicky/front.svg",
  24040. extra: 3144 / 2886,
  24041. bottom: 45.6 / 3192
  24042. }
  24043. },
  24044. back: {
  24045. height: math.unit(5 + 10 / 12, "feet"),
  24046. weight: math.unit(165, "lb"),
  24047. name: "Back",
  24048. image: {
  24049. source: "./media/characters/nicky/back.svg",
  24050. extra: 3055 / 2804,
  24051. bottom: 28.4 / 3087
  24052. }
  24053. },
  24054. frontclothed: {
  24055. height: math.unit(5 + 10 / 12, "feet"),
  24056. weight: math.unit(165, "lb"),
  24057. name: "Front-clothed",
  24058. image: {
  24059. source: "./media/characters/nicky/front-clothed.svg",
  24060. extra: 3184.9 / 2926.9,
  24061. bottom: 86.5 / 3239.9
  24062. }
  24063. },
  24064. foot: {
  24065. height: math.unit(1.16, "feet"),
  24066. name: "Foot",
  24067. image: {
  24068. source: "./media/characters/nicky/foot.svg"
  24069. }
  24070. },
  24071. feet: {
  24072. height: math.unit(1.34, "feet"),
  24073. name: "Feet",
  24074. image: {
  24075. source: "./media/characters/nicky/feet.svg"
  24076. }
  24077. },
  24078. maw: {
  24079. height: math.unit(0.9, "feet"),
  24080. name: "Maw",
  24081. image: {
  24082. source: "./media/characters/nicky/maw.svg"
  24083. }
  24084. },
  24085. },
  24086. [
  24087. {
  24088. name: "Normal",
  24089. height: math.unit(5 + 10 / 12, "feet"),
  24090. default: true
  24091. },
  24092. {
  24093. name: "Macro",
  24094. height: math.unit(60, "feet")
  24095. },
  24096. {
  24097. name: "Megamacro",
  24098. height: math.unit(1, "mile")
  24099. },
  24100. ]
  24101. ))
  24102. characterMakers.push(() => makeCharacter(
  24103. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24104. {
  24105. side: {
  24106. height: math.unit(10, "feet"),
  24107. weight: math.unit(600, "lb"),
  24108. name: "Side",
  24109. image: {
  24110. source: "./media/characters/blair/side.svg",
  24111. bottom: 16.6 / 475,
  24112. extra: 458 / 431
  24113. }
  24114. },
  24115. },
  24116. [
  24117. {
  24118. name: "Micro",
  24119. height: math.unit(8, "inches")
  24120. },
  24121. {
  24122. name: "Normal",
  24123. height: math.unit(10, "feet"),
  24124. default: true
  24125. },
  24126. {
  24127. name: "Macro",
  24128. height: math.unit(180, "feet")
  24129. },
  24130. ]
  24131. ))
  24132. characterMakers.push(() => makeCharacter(
  24133. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24134. {
  24135. front: {
  24136. height: math.unit(5 + 4 / 12, "feet"),
  24137. weight: math.unit(125, "lb"),
  24138. name: "Front",
  24139. image: {
  24140. source: "./media/characters/fisher/front.svg",
  24141. extra: 444 / 390,
  24142. bottom: 2 / 444.8
  24143. }
  24144. },
  24145. },
  24146. [
  24147. {
  24148. name: "Micro",
  24149. height: math.unit(4, "inches")
  24150. },
  24151. {
  24152. name: "Normal",
  24153. height: math.unit(5 + 4 / 12, "feet"),
  24154. default: true
  24155. },
  24156. {
  24157. name: "Macro",
  24158. height: math.unit(100, "feet")
  24159. },
  24160. ]
  24161. ))
  24162. characterMakers.push(() => makeCharacter(
  24163. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24164. {
  24165. front: {
  24166. height: math.unit(6.71, "feet"),
  24167. weight: math.unit(200, "lb"),
  24168. capacity: math.unit(1000000, "people"),
  24169. name: "Front",
  24170. image: {
  24171. source: "./media/characters/gliss/front.svg",
  24172. extra: 2347 / 2231,
  24173. bottom: 113 / 2462
  24174. }
  24175. },
  24176. hammerspaceSize: {
  24177. height: math.unit(6.71 * 717, "feet"),
  24178. weight: math.unit(200, "lb"),
  24179. capacity: math.unit(1000000, "people"),
  24180. name: "Hammerspace Size",
  24181. image: {
  24182. source: "./media/characters/gliss/front.svg",
  24183. extra: 2347 / 2231,
  24184. bottom: 113 / 2462
  24185. }
  24186. },
  24187. },
  24188. [
  24189. {
  24190. name: "Normal",
  24191. height: math.unit(6.71, "feet"),
  24192. default: true
  24193. },
  24194. ]
  24195. ))
  24196. characterMakers.push(() => makeCharacter(
  24197. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24198. {
  24199. side: {
  24200. height: math.unit(1.44, "m"),
  24201. weight: math.unit(80, "kg"),
  24202. name: "Side",
  24203. image: {
  24204. source: "./media/characters/dune-anderson/side.svg",
  24205. bottom: 49 / 1426
  24206. }
  24207. },
  24208. },
  24209. [
  24210. {
  24211. name: "Wolf-sized",
  24212. height: math.unit(1.44, "meters")
  24213. },
  24214. {
  24215. name: "Normal",
  24216. height: math.unit(5.05, "meters"),
  24217. default: true
  24218. },
  24219. {
  24220. name: "Big",
  24221. height: math.unit(14.4, "meters")
  24222. },
  24223. {
  24224. name: "Huge",
  24225. height: math.unit(144, "meters")
  24226. },
  24227. ]
  24228. ))
  24229. characterMakers.push(() => makeCharacter(
  24230. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24231. {
  24232. front: {
  24233. height: math.unit(7, "feet"),
  24234. weight: math.unit(425, "lb"),
  24235. name: "Front",
  24236. image: {
  24237. source: "./media/characters/hind/front.svg",
  24238. extra: 2091 / 1860,
  24239. bottom: 129 / 2220
  24240. }
  24241. },
  24242. back: {
  24243. height: math.unit(7, "feet"),
  24244. weight: math.unit(425, "lb"),
  24245. name: "Back",
  24246. image: {
  24247. source: "./media/characters/hind/back.svg",
  24248. extra: 2091 / 1860,
  24249. bottom: 24.6 / 2309
  24250. }
  24251. },
  24252. tail: {
  24253. height: math.unit(2.8, "feet"),
  24254. name: "Tail",
  24255. image: {
  24256. source: "./media/characters/hind/tail.svg"
  24257. }
  24258. },
  24259. head: {
  24260. height: math.unit(2.55, "feet"),
  24261. name: "Head",
  24262. image: {
  24263. source: "./media/characters/hind/head.svg"
  24264. }
  24265. },
  24266. },
  24267. [
  24268. {
  24269. name: "XS",
  24270. height: math.unit(0.7, "feet")
  24271. },
  24272. {
  24273. name: "Normal",
  24274. height: math.unit(7, "feet"),
  24275. default: true
  24276. },
  24277. {
  24278. name: "XL",
  24279. height: math.unit(70, "feet")
  24280. },
  24281. ]
  24282. ))
  24283. characterMakers.push(() => makeCharacter(
  24284. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24285. {
  24286. front: {
  24287. height: math.unit(6, "feet"),
  24288. weight: math.unit(150, "lb"),
  24289. name: "Front",
  24290. image: {
  24291. source: "./media/characters/dylan-skaven/front.svg",
  24292. extra: 2318 / 2063,
  24293. bottom: 93.4 / 2410
  24294. }
  24295. },
  24296. },
  24297. [
  24298. {
  24299. name: "Nano",
  24300. height: math.unit(1, "mm")
  24301. },
  24302. {
  24303. name: "Micro",
  24304. height: math.unit(1, "cm")
  24305. },
  24306. {
  24307. name: "Normal",
  24308. height: math.unit(2.1, "meters"),
  24309. default: true
  24310. },
  24311. ]
  24312. ))
  24313. characterMakers.push(() => makeCharacter(
  24314. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24315. {
  24316. front: {
  24317. height: math.unit(7 + 5 / 12, "feet"),
  24318. weight: math.unit(357, "lb"),
  24319. name: "Front",
  24320. image: {
  24321. source: "./media/characters/solex-draconov/front.svg",
  24322. extra: 1993 / 1865,
  24323. bottom: 117 / 2111
  24324. }
  24325. },
  24326. },
  24327. [
  24328. {
  24329. name: "Natural Height",
  24330. height: math.unit(7 + 5 / 12, "feet"),
  24331. default: true
  24332. },
  24333. {
  24334. name: "Macro",
  24335. height: math.unit(350, "feet")
  24336. },
  24337. {
  24338. name: "Macro+",
  24339. height: math.unit(1000, "feet")
  24340. },
  24341. {
  24342. name: "Megamacro",
  24343. height: math.unit(20, "km")
  24344. },
  24345. {
  24346. name: "Megamacro+",
  24347. height: math.unit(1000, "km")
  24348. },
  24349. {
  24350. name: "Gigamacro",
  24351. height: math.unit(2.5, "Gm")
  24352. },
  24353. {
  24354. name: "Teramacro",
  24355. height: math.unit(15, "Tm")
  24356. },
  24357. {
  24358. name: "Galactic",
  24359. height: math.unit(30, "Zm")
  24360. },
  24361. {
  24362. name: "Universal",
  24363. height: math.unit(21000, "Ym")
  24364. },
  24365. {
  24366. name: "Omniversal",
  24367. height: math.unit(9.861e50, "Ym")
  24368. },
  24369. {
  24370. name: "Existential",
  24371. height: math.unit(1e300, "meters")
  24372. },
  24373. ]
  24374. ))
  24375. characterMakers.push(() => makeCharacter(
  24376. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24377. {
  24378. side: {
  24379. height: math.unit(25, "feet"),
  24380. weight: math.unit(90000, "lb"),
  24381. name: "Side",
  24382. image: {
  24383. source: "./media/characters/mandarax/side.svg",
  24384. extra: 614 / 332,
  24385. bottom: 55 / 630
  24386. }
  24387. },
  24388. head: {
  24389. height: math.unit(11.4, "feet"),
  24390. name: "Head",
  24391. image: {
  24392. source: "./media/characters/mandarax/head.svg"
  24393. }
  24394. },
  24395. belly: {
  24396. height: math.unit(33, "feet"),
  24397. name: "Belly",
  24398. capacity: math.unit(500, "people"),
  24399. image: {
  24400. source: "./media/characters/mandarax/belly.svg"
  24401. }
  24402. },
  24403. dick: {
  24404. height: math.unit(8.46, "feet"),
  24405. name: "Dick",
  24406. image: {
  24407. source: "./media/characters/mandarax/dick.svg"
  24408. }
  24409. },
  24410. top: {
  24411. height: math.unit(28, "meters"),
  24412. name: "Top",
  24413. image: {
  24414. source: "./media/characters/mandarax/top.svg"
  24415. }
  24416. },
  24417. },
  24418. [
  24419. {
  24420. name: "Normal",
  24421. height: math.unit(25, "feet"),
  24422. default: true
  24423. },
  24424. ]
  24425. ))
  24426. characterMakers.push(() => makeCharacter(
  24427. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24428. {
  24429. front: {
  24430. height: math.unit(5, "feet"),
  24431. weight: math.unit(90, "lb"),
  24432. name: "Front",
  24433. image: {
  24434. source: "./media/characters/pixil/front.svg",
  24435. extra: 2000 / 1618,
  24436. bottom: 12.3 / 2011
  24437. }
  24438. },
  24439. },
  24440. [
  24441. {
  24442. name: "Normal",
  24443. height: math.unit(5, "feet"),
  24444. default: true
  24445. },
  24446. {
  24447. name: "Megamacro",
  24448. height: math.unit(10, "miles"),
  24449. },
  24450. ]
  24451. ))
  24452. characterMakers.push(() => makeCharacter(
  24453. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24454. {
  24455. front: {
  24456. height: math.unit(7 + 2 / 12, "feet"),
  24457. weight: math.unit(200, "lb"),
  24458. name: "Front",
  24459. image: {
  24460. source: "./media/characters/angel/front.svg",
  24461. extra: 1830 / 1737,
  24462. bottom: 22.6 / 1854,
  24463. }
  24464. },
  24465. },
  24466. [
  24467. {
  24468. name: "Normal",
  24469. height: math.unit(7 + 2 / 12, "feet"),
  24470. default: true
  24471. },
  24472. {
  24473. name: "Macro",
  24474. height: math.unit(1000, "feet")
  24475. },
  24476. {
  24477. name: "Megamacro",
  24478. height: math.unit(2, "miles")
  24479. },
  24480. {
  24481. name: "Gigamacro",
  24482. height: math.unit(20, "earths")
  24483. },
  24484. ]
  24485. ))
  24486. characterMakers.push(() => makeCharacter(
  24487. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24488. {
  24489. front: {
  24490. height: math.unit(5, "feet"),
  24491. weight: math.unit(180, "lb"),
  24492. name: "Front",
  24493. image: {
  24494. source: "./media/characters/mekana/front.svg",
  24495. extra: 1671 / 1605,
  24496. bottom: 3.5 / 1691
  24497. }
  24498. },
  24499. side: {
  24500. height: math.unit(5, "feet"),
  24501. weight: math.unit(180, "lb"),
  24502. name: "Side",
  24503. image: {
  24504. source: "./media/characters/mekana/side.svg",
  24505. extra: 1671 / 1605,
  24506. bottom: 3.5 / 1691
  24507. }
  24508. },
  24509. back: {
  24510. height: math.unit(5, "feet"),
  24511. weight: math.unit(180, "lb"),
  24512. name: "Back",
  24513. image: {
  24514. source: "./media/characters/mekana/back.svg",
  24515. extra: 1671 / 1605,
  24516. bottom: 3.5 / 1691
  24517. }
  24518. },
  24519. },
  24520. [
  24521. {
  24522. name: "Normal",
  24523. height: math.unit(5, "feet"),
  24524. default: true
  24525. },
  24526. ]
  24527. ))
  24528. characterMakers.push(() => makeCharacter(
  24529. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24530. {
  24531. front: {
  24532. height: math.unit(4 + 6 / 12, "feet"),
  24533. weight: math.unit(80, "lb"),
  24534. name: "Front",
  24535. image: {
  24536. source: "./media/characters/pixie/front.svg",
  24537. extra: 1924 / 1825,
  24538. bottom: 22.4 / 1946
  24539. }
  24540. },
  24541. },
  24542. [
  24543. {
  24544. name: "Normal",
  24545. height: math.unit(4 + 6 / 12, "feet"),
  24546. default: true
  24547. },
  24548. {
  24549. name: "Macro",
  24550. height: math.unit(40, "feet")
  24551. },
  24552. ]
  24553. ))
  24554. characterMakers.push(() => makeCharacter(
  24555. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24556. {
  24557. front: {
  24558. height: math.unit(2.1, "meters"),
  24559. weight: math.unit(200, "lb"),
  24560. name: "Front",
  24561. image: {
  24562. source: "./media/characters/the-lascivious/front.svg",
  24563. extra: 1 / 0.893,
  24564. bottom: 3.5 / 573.7
  24565. }
  24566. },
  24567. },
  24568. [
  24569. {
  24570. name: "Human Scale",
  24571. height: math.unit(2.1, "meters")
  24572. },
  24573. {
  24574. name: "Wolxi Scale",
  24575. height: math.unit(46.2, "m"),
  24576. default: true
  24577. },
  24578. {
  24579. name: "Boinker of Buildings",
  24580. height: math.unit(10, "km")
  24581. },
  24582. {
  24583. name: "Shagger of Skyscrapers",
  24584. height: math.unit(40, "km")
  24585. },
  24586. {
  24587. name: "Banger of Boroughs",
  24588. height: math.unit(4000, "km")
  24589. },
  24590. {
  24591. name: "Screwer of States",
  24592. height: math.unit(100000, "km")
  24593. },
  24594. {
  24595. name: "Pounder of Planets",
  24596. height: math.unit(2000000, "km")
  24597. },
  24598. ]
  24599. ))
  24600. characterMakers.push(() => makeCharacter(
  24601. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24602. {
  24603. front: {
  24604. height: math.unit(6, "feet"),
  24605. weight: math.unit(150, "lb"),
  24606. name: "Front",
  24607. image: {
  24608. source: "./media/characters/aj/front.svg",
  24609. extra: 2039 / 1562,
  24610. bottom: 40 / 2079
  24611. }
  24612. },
  24613. },
  24614. [
  24615. {
  24616. name: "Normal",
  24617. height: math.unit(11 + 6 / 12, "feet"),
  24618. default: true
  24619. },
  24620. {
  24621. name: "Megamacro",
  24622. height: math.unit(60, "megameters")
  24623. },
  24624. ]
  24625. ))
  24626. characterMakers.push(() => makeCharacter(
  24627. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24628. {
  24629. side: {
  24630. height: math.unit(31 + 8 / 12, "feet"),
  24631. weight: math.unit(75000, "kg"),
  24632. name: "Side",
  24633. image: {
  24634. source: "./media/characters/koros/side.svg",
  24635. extra: 1442 / 1297,
  24636. bottom: 122.7 / 1562
  24637. }
  24638. },
  24639. dicksKingsCrown: {
  24640. height: math.unit(6, "feet"),
  24641. name: "Dicks (King's Crown)",
  24642. image: {
  24643. source: "./media/characters/koros/dicks-kings-crown.svg"
  24644. }
  24645. },
  24646. dicksTailSet: {
  24647. height: math.unit(3, "feet"),
  24648. name: "Dicks (Tail Set)",
  24649. image: {
  24650. source: "./media/characters/koros/dicks-tail-set.svg"
  24651. }
  24652. },
  24653. dickCumming: {
  24654. height: math.unit(7.98, "feet"),
  24655. name: "Dick (Cumming)",
  24656. image: {
  24657. source: "./media/characters/koros/dick-cumming.svg"
  24658. }
  24659. },
  24660. dicksBack: {
  24661. height: math.unit(5.9, "feet"),
  24662. name: "Dicks (Back)",
  24663. image: {
  24664. source: "./media/characters/koros/dicks-back.svg"
  24665. }
  24666. },
  24667. dicksFront: {
  24668. height: math.unit(3.72, "feet"),
  24669. name: "Dicks (Front)",
  24670. image: {
  24671. source: "./media/characters/koros/dicks-front.svg"
  24672. }
  24673. },
  24674. dicksPeeking: {
  24675. height: math.unit(3.0, "feet"),
  24676. name: "Dicks (Peeking)",
  24677. image: {
  24678. source: "./media/characters/koros/dicks-peeking.svg"
  24679. }
  24680. },
  24681. eye: {
  24682. height: math.unit(1.7, "feet"),
  24683. name: "Eye",
  24684. image: {
  24685. source: "./media/characters/koros/eye.svg"
  24686. }
  24687. },
  24688. headFront: {
  24689. height: math.unit(11.69, "feet"),
  24690. name: "Head (Front)",
  24691. image: {
  24692. source: "./media/characters/koros/head-front.svg"
  24693. }
  24694. },
  24695. headSide: {
  24696. height: math.unit(14, "feet"),
  24697. name: "Head (Side)",
  24698. image: {
  24699. source: "./media/characters/koros/head-side.svg"
  24700. }
  24701. },
  24702. leg: {
  24703. height: math.unit(17, "feet"),
  24704. name: "Leg",
  24705. image: {
  24706. source: "./media/characters/koros/leg.svg"
  24707. }
  24708. },
  24709. mawSide: {
  24710. height: math.unit(12.8, "feet"),
  24711. name: "Maw (Side)",
  24712. image: {
  24713. source: "./media/characters/koros/maw-side.svg"
  24714. }
  24715. },
  24716. mawSpitting: {
  24717. height: math.unit(17, "feet"),
  24718. name: "Maw (Spitting)",
  24719. image: {
  24720. source: "./media/characters/koros/maw-spitting.svg"
  24721. }
  24722. },
  24723. slit: {
  24724. height: math.unit(2.8, "feet"),
  24725. name: "Slit",
  24726. image: {
  24727. source: "./media/characters/koros/slit.svg"
  24728. }
  24729. },
  24730. stomach: {
  24731. height: math.unit(6.8, "feet"),
  24732. capacity: math.unit(20, "people"),
  24733. name: "Stomach",
  24734. image: {
  24735. source: "./media/characters/koros/stomach.svg"
  24736. }
  24737. },
  24738. wingspanBottom: {
  24739. height: math.unit(114, "feet"),
  24740. name: "Wingspan (Bottom)",
  24741. image: {
  24742. source: "./media/characters/koros/wingspan-bottom.svg"
  24743. }
  24744. },
  24745. wingspanTop: {
  24746. height: math.unit(104, "feet"),
  24747. name: "Wingspan (Top)",
  24748. image: {
  24749. source: "./media/characters/koros/wingspan-top.svg"
  24750. }
  24751. },
  24752. },
  24753. [
  24754. {
  24755. name: "Normal",
  24756. height: math.unit(31 + 8 / 12, "feet"),
  24757. default: true
  24758. },
  24759. ]
  24760. ))
  24761. characterMakers.push(() => makeCharacter(
  24762. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24763. {
  24764. front: {
  24765. height: math.unit(18 + 5 / 12, "feet"),
  24766. weight: math.unit(3750, "kg"),
  24767. name: "Front",
  24768. image: {
  24769. source: "./media/characters/vexx/front.svg",
  24770. extra: 426 / 396,
  24771. bottom: 31.5 / 458
  24772. }
  24773. },
  24774. maw: {
  24775. height: math.unit(6, "feet"),
  24776. name: "Maw",
  24777. image: {
  24778. source: "./media/characters/vexx/maw.svg"
  24779. }
  24780. },
  24781. },
  24782. [
  24783. {
  24784. name: "Normal",
  24785. height: math.unit(18 + 5 / 12, "feet"),
  24786. default: true
  24787. },
  24788. ]
  24789. ))
  24790. characterMakers.push(() => makeCharacter(
  24791. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24792. {
  24793. front: {
  24794. height: math.unit(17 + 6 / 12, "feet"),
  24795. weight: math.unit(150, "lb"),
  24796. name: "Front",
  24797. image: {
  24798. source: "./media/characters/baadra/front.svg",
  24799. extra: 3137 / 2890,
  24800. bottom: 168.4 / 3305
  24801. }
  24802. },
  24803. back: {
  24804. height: math.unit(17 + 6 / 12, "feet"),
  24805. weight: math.unit(150, "lb"),
  24806. name: "Back",
  24807. image: {
  24808. source: "./media/characters/baadra/back.svg",
  24809. extra: 3142 / 2890,
  24810. bottom: 220 / 3371
  24811. }
  24812. },
  24813. head: {
  24814. height: math.unit(5.45, "feet"),
  24815. name: "Head",
  24816. image: {
  24817. source: "./media/characters/baadra/head.svg"
  24818. }
  24819. },
  24820. headAngry: {
  24821. height: math.unit(4.95, "feet"),
  24822. name: "Head (Angry)",
  24823. image: {
  24824. source: "./media/characters/baadra/head-angry.svg"
  24825. }
  24826. },
  24827. headOpen: {
  24828. height: math.unit(6, "feet"),
  24829. name: "Head (Open)",
  24830. image: {
  24831. source: "./media/characters/baadra/head-open.svg"
  24832. }
  24833. },
  24834. },
  24835. [
  24836. {
  24837. name: "Normal",
  24838. height: math.unit(17 + 6 / 12, "feet"),
  24839. default: true
  24840. },
  24841. ]
  24842. ))
  24843. characterMakers.push(() => makeCharacter(
  24844. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24845. {
  24846. front: {
  24847. height: math.unit(7 + 3 / 12, "feet"),
  24848. weight: math.unit(180, "lb"),
  24849. name: "Front",
  24850. image: {
  24851. source: "./media/characters/juri/front.svg",
  24852. extra: 1401 / 1237,
  24853. bottom: 18.5 / 1418
  24854. }
  24855. },
  24856. side: {
  24857. height: math.unit(7 + 3 / 12, "feet"),
  24858. weight: math.unit(180, "lb"),
  24859. name: "Side",
  24860. image: {
  24861. source: "./media/characters/juri/side.svg",
  24862. extra: 1424 / 1242,
  24863. bottom: 18.5 / 1447
  24864. }
  24865. },
  24866. sitting: {
  24867. height: math.unit(6, "feet"),
  24868. weight: math.unit(180, "lb"),
  24869. name: "Sitting",
  24870. image: {
  24871. source: "./media/characters/juri/sitting.svg",
  24872. extra: 1270 / 1143,
  24873. bottom: 100 / 1343
  24874. }
  24875. },
  24876. back: {
  24877. height: math.unit(7 + 3 / 12, "feet"),
  24878. weight: math.unit(180, "lb"),
  24879. name: "Back",
  24880. image: {
  24881. source: "./media/characters/juri/back.svg",
  24882. extra: 1377 / 1240,
  24883. bottom: 23.7 / 1405
  24884. }
  24885. },
  24886. maw: {
  24887. height: math.unit(2.8, "feet"),
  24888. name: "Maw",
  24889. image: {
  24890. source: "./media/characters/juri/maw.svg"
  24891. }
  24892. },
  24893. stomach: {
  24894. height: math.unit(0.89, "feet"),
  24895. capacity: math.unit(4, "liters"),
  24896. name: "Stomach",
  24897. image: {
  24898. source: "./media/characters/juri/stomach.svg"
  24899. }
  24900. },
  24901. },
  24902. [
  24903. {
  24904. name: "Normal",
  24905. height: math.unit(7 + 3 / 12, "feet"),
  24906. default: true
  24907. },
  24908. ]
  24909. ))
  24910. characterMakers.push(() => makeCharacter(
  24911. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  24912. {
  24913. fox: {
  24914. height: math.unit(5 + 6 / 12, "feet"),
  24915. weight: math.unit(140, "lb"),
  24916. name: "Fox",
  24917. image: {
  24918. source: "./media/characters/maxene-sita/fox.svg",
  24919. extra: 146 / 138,
  24920. bottom: 2.1 / 148.19
  24921. }
  24922. },
  24923. foxLaying: {
  24924. height: math.unit(1.70, "feet"),
  24925. weight: math.unit(140, "lb"),
  24926. name: "Fox (Laying)",
  24927. image: {
  24928. source: "./media/characters/maxene-sita/fox-laying.svg",
  24929. extra: 910 / 572,
  24930. bottom: 71 / 981
  24931. }
  24932. },
  24933. kitsune: {
  24934. height: math.unit(10, "feet"),
  24935. weight: math.unit(800, "lb"),
  24936. name: "Kitsune",
  24937. image: {
  24938. source: "./media/characters/maxene-sita/kitsune.svg",
  24939. extra: 185 / 176,
  24940. bottom: 4.7 / 189.9
  24941. }
  24942. },
  24943. hellhound: {
  24944. height: math.unit(10, "feet"),
  24945. weight: math.unit(700, "lb"),
  24946. name: "Hellhound",
  24947. image: {
  24948. source: "./media/characters/maxene-sita/hellhound.svg",
  24949. extra: 1600 / 1545,
  24950. bottom: 81 / 1681
  24951. }
  24952. },
  24953. },
  24954. [
  24955. {
  24956. name: "Normal",
  24957. height: math.unit(5 + 6 / 12, "feet"),
  24958. default: true
  24959. },
  24960. ]
  24961. ))
  24962. characterMakers.push(() => makeCharacter(
  24963. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24964. {
  24965. front: {
  24966. height: math.unit(3 + 4 / 12, "feet"),
  24967. weight: math.unit(70, "lb"),
  24968. name: "Front",
  24969. image: {
  24970. source: "./media/characters/maia/front.svg",
  24971. extra: 227 / 219.5,
  24972. bottom: 40 / 267
  24973. }
  24974. },
  24975. back: {
  24976. height: math.unit(3 + 4 / 12, "feet"),
  24977. weight: math.unit(70, "lb"),
  24978. name: "Back",
  24979. image: {
  24980. source: "./media/characters/maia/back.svg",
  24981. extra: 237 / 225
  24982. }
  24983. },
  24984. },
  24985. [
  24986. {
  24987. name: "Normal",
  24988. height: math.unit(3 + 4 / 12, "feet"),
  24989. default: true
  24990. },
  24991. ]
  24992. ))
  24993. characterMakers.push(() => makeCharacter(
  24994. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  24995. {
  24996. front: {
  24997. height: math.unit(5 + 10 / 12, "feet"),
  24998. weight: math.unit(197, "lb"),
  24999. name: "Front",
  25000. image: {
  25001. source: "./media/characters/jabaro/front.svg",
  25002. extra: 225 / 216,
  25003. bottom: 5.06 / 230
  25004. }
  25005. },
  25006. back: {
  25007. height: math.unit(5 + 10 / 12, "feet"),
  25008. weight: math.unit(197, "lb"),
  25009. name: "Back",
  25010. image: {
  25011. source: "./media/characters/jabaro/back.svg",
  25012. extra: 225 / 219,
  25013. bottom: 1.9 / 227
  25014. }
  25015. },
  25016. },
  25017. [
  25018. {
  25019. name: "Normal",
  25020. height: math.unit(5 + 10 / 12, "feet"),
  25021. default: true
  25022. },
  25023. ]
  25024. ))
  25025. characterMakers.push(() => makeCharacter(
  25026. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25027. {
  25028. front: {
  25029. height: math.unit(5 + 8 / 12, "feet"),
  25030. weight: math.unit(139, "lb"),
  25031. name: "Front",
  25032. image: {
  25033. source: "./media/characters/risa/front.svg",
  25034. extra: 270 / 260,
  25035. bottom: 11.2 / 282
  25036. }
  25037. },
  25038. back: {
  25039. height: math.unit(5 + 8 / 12, "feet"),
  25040. weight: math.unit(139, "lb"),
  25041. name: "Back",
  25042. image: {
  25043. source: "./media/characters/risa/back.svg",
  25044. extra: 264 / 255,
  25045. bottom: 4 / 268
  25046. }
  25047. },
  25048. },
  25049. [
  25050. {
  25051. name: "Normal",
  25052. height: math.unit(5 + 8 / 12, "feet"),
  25053. default: true
  25054. },
  25055. ]
  25056. ))
  25057. characterMakers.push(() => makeCharacter(
  25058. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25059. {
  25060. front: {
  25061. height: math.unit(2 + 11 / 12, "feet"),
  25062. weight: math.unit(30, "lb"),
  25063. name: "Front",
  25064. image: {
  25065. source: "./media/characters/weatley/front.svg",
  25066. bottom: 10.7 / 414,
  25067. extra: 403.5 / 362
  25068. }
  25069. },
  25070. back: {
  25071. height: math.unit(2 + 11 / 12, "feet"),
  25072. weight: math.unit(30, "lb"),
  25073. name: "Back",
  25074. image: {
  25075. source: "./media/characters/weatley/back.svg",
  25076. bottom: 10.7 / 414,
  25077. extra: 403.5 / 362
  25078. }
  25079. },
  25080. },
  25081. [
  25082. {
  25083. name: "Normal",
  25084. height: math.unit(2 + 11 / 12, "feet"),
  25085. default: true
  25086. },
  25087. ]
  25088. ))
  25089. characterMakers.push(() => makeCharacter(
  25090. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25091. {
  25092. front: {
  25093. height: math.unit(5 + 2 / 12, "feet"),
  25094. weight: math.unit(50, "kg"),
  25095. name: "Front",
  25096. image: {
  25097. source: "./media/characters/mercury-crescent/front.svg",
  25098. extra: 1088 / 1033,
  25099. bottom: 18.9 / 1109
  25100. }
  25101. },
  25102. },
  25103. [
  25104. {
  25105. name: "Normal",
  25106. height: math.unit(5 + 2 / 12, "feet"),
  25107. default: true
  25108. },
  25109. ]
  25110. ))
  25111. characterMakers.push(() => makeCharacter(
  25112. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25113. {
  25114. front: {
  25115. height: math.unit(2, "feet"),
  25116. weight: math.unit(15, "kg"),
  25117. name: "Front",
  25118. image: {
  25119. source: "./media/characters/diamond-jones/front.svg",
  25120. bottom: 16 / 568
  25121. }
  25122. },
  25123. },
  25124. [
  25125. {
  25126. name: "Normal",
  25127. height: math.unit(2, "feet"),
  25128. default: true
  25129. },
  25130. ]
  25131. ))
  25132. characterMakers.push(() => makeCharacter(
  25133. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25134. {
  25135. front: {
  25136. height: math.unit(3, "feet"),
  25137. weight: math.unit(30, "kg"),
  25138. name: "Front",
  25139. image: {
  25140. source: "./media/characters/sweet-bit/front.svg",
  25141. extra: 675 / 567,
  25142. bottom: 27.7 / 703
  25143. }
  25144. },
  25145. },
  25146. [
  25147. {
  25148. name: "Normal",
  25149. height: math.unit(3, "feet"),
  25150. default: true
  25151. },
  25152. ]
  25153. ))
  25154. characterMakers.push(() => makeCharacter(
  25155. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25156. {
  25157. side: {
  25158. height: math.unit(9.178, "feet"),
  25159. weight: math.unit(500, "lb"),
  25160. name: "Side",
  25161. image: {
  25162. source: "./media/characters/umbrazen/side.svg",
  25163. extra: 1730 / 1473,
  25164. bottom: 34.6 / 1765
  25165. }
  25166. },
  25167. },
  25168. [
  25169. {
  25170. name: "Normal",
  25171. height: math.unit(9.178, "feet"),
  25172. default: true
  25173. },
  25174. ]
  25175. ))
  25176. characterMakers.push(() => makeCharacter(
  25177. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25178. {
  25179. front: {
  25180. height: math.unit(10, "feet"),
  25181. weight: math.unit(750, "lb"),
  25182. name: "Front",
  25183. image: {
  25184. source: "./media/characters/arlist/front.svg",
  25185. extra: 961 / 778,
  25186. bottom: 6.2 / 986
  25187. }
  25188. },
  25189. },
  25190. [
  25191. {
  25192. name: "Normal",
  25193. height: math.unit(10, "feet"),
  25194. default: true
  25195. },
  25196. ]
  25197. ))
  25198. characterMakers.push(() => makeCharacter(
  25199. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25200. {
  25201. front: {
  25202. height: math.unit(5 + 1 / 12, "feet"),
  25203. weight: math.unit(110, "lb"),
  25204. name: "Front",
  25205. image: {
  25206. source: "./media/characters/aradel/front.svg",
  25207. extra: 324 / 303,
  25208. bottom: 3.6 / 329.4
  25209. }
  25210. },
  25211. },
  25212. [
  25213. {
  25214. name: "Normal",
  25215. height: math.unit(5 + 1 / 12, "feet"),
  25216. default: true
  25217. },
  25218. ]
  25219. ))
  25220. characterMakers.push(() => makeCharacter(
  25221. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25222. {
  25223. front: {
  25224. height: math.unit(3 + 8 / 12, "feet"),
  25225. weight: math.unit(50, "lb"),
  25226. name: "Front",
  25227. image: {
  25228. source: "./media/characters/serryn/front.svg",
  25229. extra: 1792 / 1656,
  25230. bottom: 43.5 / 1840
  25231. }
  25232. },
  25233. },
  25234. [
  25235. {
  25236. name: "Normal",
  25237. height: math.unit(3 + 8 / 12, "feet"),
  25238. default: true
  25239. },
  25240. ]
  25241. ))
  25242. characterMakers.push(() => makeCharacter(
  25243. { name: "Xavier Thyme" },
  25244. {
  25245. front: {
  25246. height: math.unit(7 + 10 / 12, "feet"),
  25247. weight: math.unit(255, "lb"),
  25248. name: "Front",
  25249. image: {
  25250. source: "./media/characters/xavier-thyme/front.svg",
  25251. extra: 3733 / 3642,
  25252. bottom: 131 / 3869
  25253. }
  25254. },
  25255. frontRaven: {
  25256. height: math.unit(7 + 10 / 12, "feet"),
  25257. weight: math.unit(255, "lb"),
  25258. name: "Front (Raven)",
  25259. image: {
  25260. source: "./media/characters/xavier-thyme/front-raven.svg",
  25261. extra: 4385 / 3642,
  25262. bottom: 131 / 4517
  25263. }
  25264. },
  25265. },
  25266. [
  25267. {
  25268. name: "Normal",
  25269. height: math.unit(7 + 10 / 12, "feet"),
  25270. default: true
  25271. },
  25272. ]
  25273. ))
  25274. characterMakers.push(() => makeCharacter(
  25275. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25276. {
  25277. front: {
  25278. height: math.unit(1.6, "m"),
  25279. weight: math.unit(50, "kg"),
  25280. name: "Front",
  25281. image: {
  25282. source: "./media/characters/kiki/front.svg",
  25283. extra: 4682 / 3610,
  25284. bottom: 115 / 4777
  25285. }
  25286. },
  25287. },
  25288. [
  25289. {
  25290. name: "Normal",
  25291. height: math.unit(1.6, "meters"),
  25292. default: true
  25293. },
  25294. ]
  25295. ))
  25296. characterMakers.push(() => makeCharacter(
  25297. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25298. {
  25299. front: {
  25300. height: math.unit(50, "m"),
  25301. weight: math.unit(500, "tonnes"),
  25302. name: "Front",
  25303. image: {
  25304. source: "./media/characters/ryoko/front.svg",
  25305. extra: 4632 / 3926,
  25306. bottom: 193 / 4823
  25307. }
  25308. },
  25309. },
  25310. [
  25311. {
  25312. name: "Normal",
  25313. height: math.unit(50, "meters"),
  25314. default: true
  25315. },
  25316. ]
  25317. ))
  25318. characterMakers.push(() => makeCharacter(
  25319. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25320. {
  25321. front: {
  25322. height: math.unit(30, "m"),
  25323. weight: math.unit(22, "tonnes"),
  25324. name: "Front",
  25325. image: {
  25326. source: "./media/characters/elio/front.svg",
  25327. extra: 4582 / 3720,
  25328. bottom: 236 / 4828
  25329. }
  25330. },
  25331. },
  25332. [
  25333. {
  25334. name: "Normal",
  25335. height: math.unit(30, "meters"),
  25336. default: true
  25337. },
  25338. ]
  25339. ))
  25340. characterMakers.push(() => makeCharacter(
  25341. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25342. {
  25343. front: {
  25344. height: math.unit(6 + 3 / 12, "feet"),
  25345. weight: math.unit(120, "lb"),
  25346. name: "Front",
  25347. image: {
  25348. source: "./media/characters/azura/front.svg",
  25349. extra: 1149 / 1135,
  25350. bottom: 45 / 1194
  25351. }
  25352. },
  25353. frontClothed: {
  25354. height: math.unit(6 + 3 / 12, "feet"),
  25355. weight: math.unit(120, "lb"),
  25356. name: "Front (Clothed)",
  25357. image: {
  25358. source: "./media/characters/azura/front-clothed.svg",
  25359. extra: 1149 / 1135,
  25360. bottom: 45 / 1194
  25361. }
  25362. },
  25363. },
  25364. [
  25365. {
  25366. name: "Normal",
  25367. height: math.unit(6 + 3 / 12, "feet"),
  25368. default: true
  25369. },
  25370. {
  25371. name: "Macro",
  25372. height: math.unit(20 + 6 / 12, "feet")
  25373. },
  25374. {
  25375. name: "Megamacro",
  25376. height: math.unit(12, "miles")
  25377. },
  25378. {
  25379. name: "Gigamacro",
  25380. height: math.unit(10000, "miles")
  25381. },
  25382. {
  25383. name: "Teramacro",
  25384. height: math.unit(900000, "miles")
  25385. },
  25386. ]
  25387. ))
  25388. characterMakers.push(() => makeCharacter(
  25389. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25390. {
  25391. front: {
  25392. height: math.unit(12, "feet"),
  25393. weight: math.unit(1, "ton"),
  25394. capacity: math.unit(660000, "gallons"),
  25395. name: "Front",
  25396. image: {
  25397. source: "./media/characters/zeus/front.svg",
  25398. extra: 5005 / 4717,
  25399. bottom: 363 / 5388
  25400. }
  25401. },
  25402. },
  25403. [
  25404. {
  25405. name: "Normal",
  25406. height: math.unit(12, "feet")
  25407. },
  25408. {
  25409. name: "Preferred Size",
  25410. height: math.unit(0.5, "miles"),
  25411. default: true
  25412. },
  25413. {
  25414. name: "Giga Horse",
  25415. height: math.unit(300, "miles")
  25416. },
  25417. {
  25418. name: "Riding Planets",
  25419. height: math.unit(30, "megameters")
  25420. },
  25421. {
  25422. name: "Cosmic Giant",
  25423. height: math.unit(3, "zettameters")
  25424. },
  25425. {
  25426. name: "Breeding God",
  25427. height: math.unit(9.92e22, "yottameters")
  25428. },
  25429. ]
  25430. ))
  25431. characterMakers.push(() => makeCharacter(
  25432. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25433. {
  25434. side: {
  25435. height: math.unit(9, "feet"),
  25436. weight: math.unit(1500, "kg"),
  25437. name: "Side",
  25438. image: {
  25439. source: "./media/characters/fang/side.svg",
  25440. extra: 924 / 866,
  25441. bottom: 47.5 / 972.3
  25442. }
  25443. },
  25444. },
  25445. [
  25446. {
  25447. name: "Normal",
  25448. height: math.unit(9, "feet"),
  25449. default: true
  25450. },
  25451. {
  25452. name: "Macro",
  25453. height: math.unit(75 + 6 / 12, "feet")
  25454. },
  25455. {
  25456. name: "Teramacro",
  25457. height: math.unit(50000, "miles")
  25458. },
  25459. ]
  25460. ))
  25461. characterMakers.push(() => makeCharacter(
  25462. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25463. {
  25464. front: {
  25465. height: math.unit(10, "feet"),
  25466. weight: math.unit(2, "tons"),
  25467. name: "Front",
  25468. image: {
  25469. source: "./media/characters/rekhit/front.svg",
  25470. extra: 2796 / 2590,
  25471. bottom: 225 / 3022
  25472. }
  25473. },
  25474. },
  25475. [
  25476. {
  25477. name: "Normal",
  25478. height: math.unit(10, "feet"),
  25479. default: true
  25480. },
  25481. {
  25482. name: "Macro",
  25483. height: math.unit(500, "feet")
  25484. },
  25485. ]
  25486. ))
  25487. characterMakers.push(() => makeCharacter(
  25488. { name: "Dahlia Verrick" },
  25489. {
  25490. front: {
  25491. height: math.unit(7 + 6.451 / 12, "feet"),
  25492. weight: math.unit(310, "lb"),
  25493. name: "Front",
  25494. image: {
  25495. source: "./media/characters/dahlia-verrick/front.svg",
  25496. extra: 1488 / 1365,
  25497. bottom: 6.2 / 1495
  25498. }
  25499. },
  25500. back: {
  25501. height: math.unit(7 + 6.451 / 12, "feet"),
  25502. weight: math.unit(310, "lb"),
  25503. name: "Back",
  25504. image: {
  25505. source: "./media/characters/dahlia-verrick/back.svg",
  25506. extra: 1472 / 1351,
  25507. bottom: 5.28 / 1477
  25508. }
  25509. },
  25510. frontBusiness: {
  25511. height: math.unit(7 + 6.451 / 12, "feet"),
  25512. weight: math.unit(200, "lb"),
  25513. name: "Front (Business)",
  25514. image: {
  25515. source: "./media/characters/dahlia-verrick/front-business.svg",
  25516. extra: 1478 / 1381,
  25517. bottom: 5.5 / 1484
  25518. }
  25519. },
  25520. frontCasual: {
  25521. height: math.unit(7 + 6.451 / 12, "feet"),
  25522. weight: math.unit(200, "lb"),
  25523. name: "Front (Casual)",
  25524. image: {
  25525. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25526. extra: 1478 / 1381,
  25527. bottom: 5.5 / 1484
  25528. }
  25529. },
  25530. },
  25531. [
  25532. {
  25533. name: "Travel-Sized",
  25534. height: math.unit(7.45, "inches")
  25535. },
  25536. {
  25537. name: "Normal",
  25538. height: math.unit(7 + 6.451 / 12, "feet"),
  25539. default: true
  25540. },
  25541. {
  25542. name: "Hitting the Town",
  25543. height: math.unit(37 + 8 / 12, "feet")
  25544. },
  25545. {
  25546. name: "Stomp in the Suburbs",
  25547. height: math.unit(964 + 9.728 / 12, "feet")
  25548. },
  25549. {
  25550. name: "Sit on the City",
  25551. height: math.unit(61747 + 10.592 / 12, "feet")
  25552. },
  25553. {
  25554. name: "Glomp the Globe",
  25555. height: math.unit(252919327 + 4.832 / 12, "feet")
  25556. },
  25557. ]
  25558. ))
  25559. characterMakers.push(() => makeCharacter(
  25560. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25561. {
  25562. front: {
  25563. height: math.unit(6 + 4 / 12, "feet"),
  25564. weight: math.unit(320, "lb"),
  25565. name: "Front",
  25566. image: {
  25567. source: "./media/characters/balina-mahigan/front.svg",
  25568. extra: 447 / 428,
  25569. bottom: 18 / 466
  25570. }
  25571. },
  25572. back: {
  25573. height: math.unit(6 + 4 / 12, "feet"),
  25574. weight: math.unit(320, "lb"),
  25575. name: "Back",
  25576. image: {
  25577. source: "./media/characters/balina-mahigan/back.svg",
  25578. extra: 445 / 428,
  25579. bottom: 4.07 / 448
  25580. }
  25581. },
  25582. arm: {
  25583. height: math.unit(1.88, "feet"),
  25584. name: "Arm",
  25585. image: {
  25586. source: "./media/characters/balina-mahigan/arm.svg"
  25587. }
  25588. },
  25589. backPort: {
  25590. height: math.unit(0.685, "feet"),
  25591. name: "Back Port",
  25592. image: {
  25593. source: "./media/characters/balina-mahigan/back-port.svg"
  25594. }
  25595. },
  25596. hoofpaw: {
  25597. height: math.unit(1.41, "feet"),
  25598. name: "Hoofpaw",
  25599. image: {
  25600. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25601. }
  25602. },
  25603. leftHandBack: {
  25604. height: math.unit(0.938, "feet"),
  25605. name: "Left Hand (Back)",
  25606. image: {
  25607. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25608. }
  25609. },
  25610. leftHandFront: {
  25611. height: math.unit(0.938, "feet"),
  25612. name: "Left Hand (Front)",
  25613. image: {
  25614. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25615. }
  25616. },
  25617. rightHandBack: {
  25618. height: math.unit(0.95, "feet"),
  25619. name: "Right Hand (Back)",
  25620. image: {
  25621. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25622. }
  25623. },
  25624. rightHandFront: {
  25625. height: math.unit(0.95, "feet"),
  25626. name: "Right Hand (Front)",
  25627. image: {
  25628. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25629. }
  25630. },
  25631. },
  25632. [
  25633. {
  25634. name: "Normal",
  25635. height: math.unit(6 + 4 / 12, "feet"),
  25636. default: true
  25637. },
  25638. ]
  25639. ))
  25640. characterMakers.push(() => makeCharacter(
  25641. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25642. {
  25643. front: {
  25644. height: math.unit(6, "feet"),
  25645. weight: math.unit(320, "lb"),
  25646. name: "Front",
  25647. image: {
  25648. source: "./media/characters/balina-mejeri/front.svg",
  25649. extra: 517 / 488,
  25650. bottom: 44.2 / 561
  25651. }
  25652. },
  25653. },
  25654. [
  25655. {
  25656. name: "Normal",
  25657. height: math.unit(6 + 4 / 12, "feet")
  25658. },
  25659. {
  25660. name: "Business",
  25661. height: math.unit(155, "feet"),
  25662. default: true
  25663. },
  25664. ]
  25665. ))
  25666. characterMakers.push(() => makeCharacter(
  25667. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25668. {
  25669. kneeling: {
  25670. height: math.unit(6 + 4 / 12, "feet"),
  25671. weight: math.unit(300 * 20, "lb"),
  25672. name: "Kneeling",
  25673. image: {
  25674. source: "./media/characters/balbarian/kneeling.svg",
  25675. extra: 922 / 862,
  25676. bottom: 42.4 / 965
  25677. }
  25678. },
  25679. },
  25680. [
  25681. {
  25682. name: "Normal",
  25683. height: math.unit(6 + 4 / 12, "feet")
  25684. },
  25685. {
  25686. name: "Treasured",
  25687. height: math.unit(18 + 9 / 12, "feet"),
  25688. default: true
  25689. },
  25690. {
  25691. name: "Macro",
  25692. height: math.unit(900, "feet")
  25693. },
  25694. ]
  25695. ))
  25696. characterMakers.push(() => makeCharacter(
  25697. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25698. {
  25699. front: {
  25700. height: math.unit(6 + 4 / 12, "feet"),
  25701. weight: math.unit(325, "lb"),
  25702. name: "Front",
  25703. image: {
  25704. source: "./media/characters/balina-amarini/front.svg",
  25705. extra: 415 / 403,
  25706. bottom: 19 / 433.4
  25707. }
  25708. },
  25709. back: {
  25710. height: math.unit(6 + 4 / 12, "feet"),
  25711. weight: math.unit(325, "lb"),
  25712. name: "Back",
  25713. image: {
  25714. source: "./media/characters/balina-amarini/back.svg",
  25715. extra: 415 / 403,
  25716. bottom: 13.5 / 432
  25717. }
  25718. },
  25719. overdrive: {
  25720. height: math.unit(6 + 4 / 12, "feet"),
  25721. weight: math.unit(400, "lb"),
  25722. name: "Overdrive",
  25723. image: {
  25724. source: "./media/characters/balina-amarini/overdrive.svg",
  25725. extra: 269 / 259,
  25726. bottom: 12 / 282
  25727. }
  25728. },
  25729. },
  25730. [
  25731. {
  25732. name: "Boom",
  25733. height: math.unit(9 + 10 / 12, "feet"),
  25734. default: true
  25735. },
  25736. {
  25737. name: "Macro",
  25738. height: math.unit(280, "feet")
  25739. },
  25740. ]
  25741. ))
  25742. characterMakers.push(() => makeCharacter(
  25743. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25744. {
  25745. goddess: {
  25746. height: math.unit(600, "feet"),
  25747. weight: math.unit(2000000, "tons"),
  25748. name: "Goddess",
  25749. image: {
  25750. source: "./media/characters/lady-kubwa/goddess.svg",
  25751. extra: 1240.5 / 1223,
  25752. bottom: 22 / 1263
  25753. }
  25754. },
  25755. goddesser: {
  25756. height: math.unit(900, "feet"),
  25757. weight: math.unit(20000000, "lb"),
  25758. name: "Goddess-er",
  25759. image: {
  25760. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25761. extra: 899 / 888,
  25762. bottom: 12.6 / 912
  25763. }
  25764. },
  25765. },
  25766. [
  25767. {
  25768. name: "Macro",
  25769. height: math.unit(600, "feet"),
  25770. default: true
  25771. },
  25772. {
  25773. name: "Megamacro",
  25774. height: math.unit(250, "miles")
  25775. },
  25776. ]
  25777. ))
  25778. characterMakers.push(() => makeCharacter(
  25779. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25780. {
  25781. front: {
  25782. height: math.unit(7 + 7 / 12, "feet"),
  25783. weight: math.unit(250, "lb"),
  25784. name: "Front",
  25785. image: {
  25786. source: "./media/characters/tala-grovehorn/front.svg",
  25787. extra: 2636 / 2525,
  25788. bottom: 147 / 2781
  25789. }
  25790. },
  25791. back: {
  25792. height: math.unit(7 + 7 / 12, "feet"),
  25793. weight: math.unit(250, "lb"),
  25794. name: "Back",
  25795. image: {
  25796. source: "./media/characters/tala-grovehorn/back.svg",
  25797. extra: 2635 / 2539,
  25798. bottom: 100 / 2732.8
  25799. }
  25800. },
  25801. mouth: {
  25802. height: math.unit(1.15, "feet"),
  25803. name: "Mouth",
  25804. image: {
  25805. source: "./media/characters/tala-grovehorn/mouth.svg"
  25806. }
  25807. },
  25808. dick: {
  25809. height: math.unit(2.36, "feet"),
  25810. name: "Dick",
  25811. image: {
  25812. source: "./media/characters/tala-grovehorn/dick.svg"
  25813. }
  25814. },
  25815. slit: {
  25816. height: math.unit(0.61, "feet"),
  25817. name: "Slit",
  25818. image: {
  25819. source: "./media/characters/tala-grovehorn/slit.svg"
  25820. }
  25821. },
  25822. },
  25823. [
  25824. ]
  25825. ))
  25826. characterMakers.push(() => makeCharacter(
  25827. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25828. {
  25829. front: {
  25830. height: math.unit(7 + 7 / 12, "feet"),
  25831. weight: math.unit(225, "lb"),
  25832. name: "Front",
  25833. image: {
  25834. source: "./media/characters/epona/front.svg",
  25835. extra: 2445 / 2290,
  25836. bottom: 251 / 2696
  25837. }
  25838. },
  25839. back: {
  25840. height: math.unit(7 + 7 / 12, "feet"),
  25841. weight: math.unit(225, "lb"),
  25842. name: "Back",
  25843. image: {
  25844. source: "./media/characters/epona/back.svg",
  25845. extra: 2546 / 2408,
  25846. bottom: 44 / 2589
  25847. }
  25848. },
  25849. genitals: {
  25850. height: math.unit(1.5, "feet"),
  25851. name: "Genitals",
  25852. image: {
  25853. source: "./media/characters/epona/genitals.svg"
  25854. }
  25855. },
  25856. },
  25857. [
  25858. {
  25859. name: "Normal",
  25860. height: math.unit(7 + 7 / 12, "feet"),
  25861. default: true
  25862. },
  25863. ]
  25864. ))
  25865. characterMakers.push(() => makeCharacter(
  25866. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25867. {
  25868. front: {
  25869. height: math.unit(7, "feet"),
  25870. weight: math.unit(518, "lb"),
  25871. name: "Front",
  25872. image: {
  25873. source: "./media/characters/avia-bloodbourn/front.svg",
  25874. extra: 1466 / 1350,
  25875. bottom: 65 / 1527
  25876. }
  25877. },
  25878. },
  25879. [
  25880. ]
  25881. ))
  25882. characterMakers.push(() => makeCharacter(
  25883. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25884. {
  25885. front: {
  25886. height: math.unit(9.35, "feet"),
  25887. weight: math.unit(600, "lb"),
  25888. name: "Front",
  25889. image: {
  25890. source: "./media/characters/amera/front.svg",
  25891. extra: 891 / 818,
  25892. bottom: 30 / 922.7
  25893. }
  25894. },
  25895. back: {
  25896. height: math.unit(9.35, "feet"),
  25897. weight: math.unit(600, "lb"),
  25898. name: "Back",
  25899. image: {
  25900. source: "./media/characters/amera/back.svg",
  25901. extra: 876 / 824,
  25902. bottom: 6.8 / 884
  25903. }
  25904. },
  25905. dick: {
  25906. height: math.unit(2.14, "feet"),
  25907. name: "Dick",
  25908. image: {
  25909. source: "./media/characters/amera/dick.svg"
  25910. }
  25911. },
  25912. },
  25913. [
  25914. {
  25915. name: "Normal",
  25916. height: math.unit(9.35, "feet"),
  25917. default: true
  25918. },
  25919. ]
  25920. ))
  25921. characterMakers.push(() => makeCharacter(
  25922. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25923. {
  25924. kneeling: {
  25925. height: math.unit(3 + 4 / 12, "feet"),
  25926. weight: math.unit(90, "lb"),
  25927. name: "Kneeling",
  25928. image: {
  25929. source: "./media/characters/rosewen/kneeling.svg",
  25930. extra: 1835 / 1571,
  25931. bottom: 27.7 / 1862
  25932. }
  25933. },
  25934. },
  25935. [
  25936. {
  25937. name: "Normal",
  25938. height: math.unit(3 + 4 / 12, "feet"),
  25939. default: true
  25940. },
  25941. ]
  25942. ))
  25943. characterMakers.push(() => makeCharacter(
  25944. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  25945. {
  25946. front: {
  25947. height: math.unit(5 + 10 / 12, "feet"),
  25948. weight: math.unit(200, "lb"),
  25949. name: "Front",
  25950. image: {
  25951. source: "./media/characters/sabah/front.svg",
  25952. extra: 849 / 763,
  25953. bottom: 33.9 / 881
  25954. }
  25955. },
  25956. },
  25957. [
  25958. {
  25959. name: "Normal",
  25960. height: math.unit(5 + 10 / 12, "feet"),
  25961. default: true
  25962. },
  25963. ]
  25964. ))
  25965. characterMakers.push(() => makeCharacter(
  25966. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  25967. {
  25968. front: {
  25969. height: math.unit(3 + 5 / 12, "feet"),
  25970. weight: math.unit(40, "kg"),
  25971. name: "Front",
  25972. image: {
  25973. source: "./media/characters/purple-flame/front.svg",
  25974. extra: 1577 / 1412,
  25975. bottom: 97 / 1694
  25976. }
  25977. },
  25978. frontDressed: {
  25979. height: math.unit(3 + 5 / 12, "feet"),
  25980. weight: math.unit(40, "kg"),
  25981. name: "Front (Dressed)",
  25982. image: {
  25983. source: "./media/characters/purple-flame/front-dressed.svg",
  25984. extra: 1577 / 1412,
  25985. bottom: 97 / 1694
  25986. }
  25987. },
  25988. headphones: {
  25989. height: math.unit(0.85, "feet"),
  25990. name: "Headphones",
  25991. image: {
  25992. source: "./media/characters/purple-flame/headphones.svg"
  25993. }
  25994. },
  25995. },
  25996. [
  25997. {
  25998. name: "Really Small",
  25999. height: math.unit(5, "cm")
  26000. },
  26001. {
  26002. name: "Micro",
  26003. height: math.unit(1 + 5 / 12, "feet")
  26004. },
  26005. {
  26006. name: "Normal",
  26007. height: math.unit(3 + 5 / 12, "feet"),
  26008. default: true
  26009. },
  26010. {
  26011. name: "Minimacro",
  26012. height: math.unit(125, "feet")
  26013. },
  26014. {
  26015. name: "Macro",
  26016. height: math.unit(0.5, "miles")
  26017. },
  26018. {
  26019. name: "Megamacro",
  26020. height: math.unit(50, "miles")
  26021. },
  26022. {
  26023. name: "Gigantic",
  26024. height: math.unit(750, "miles")
  26025. },
  26026. {
  26027. name: "Planetary",
  26028. height: math.unit(15000, "miles")
  26029. },
  26030. ]
  26031. ))
  26032. characterMakers.push(() => makeCharacter(
  26033. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26034. {
  26035. front: {
  26036. height: math.unit(14, "feet"),
  26037. weight: math.unit(959, "lb"),
  26038. name: "Front",
  26039. image: {
  26040. source: "./media/characters/arsenal/front.svg",
  26041. extra: 2357 / 2157,
  26042. bottom: 93 / 2458
  26043. }
  26044. },
  26045. },
  26046. [
  26047. {
  26048. name: "Normal",
  26049. height: math.unit(14, "feet"),
  26050. default: true
  26051. },
  26052. ]
  26053. ))
  26054. characterMakers.push(() => makeCharacter(
  26055. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26056. {
  26057. front: {
  26058. height: math.unit(6, "feet"),
  26059. weight: math.unit(150, "lb"),
  26060. name: "Front",
  26061. image: {
  26062. source: "./media/characters/adira/front.svg",
  26063. extra: 1078 / 1029,
  26064. bottom: 87 / 1166
  26065. }
  26066. },
  26067. },
  26068. [
  26069. {
  26070. name: "Micro",
  26071. height: math.unit(4, "inches"),
  26072. default: true
  26073. },
  26074. {
  26075. name: "Macro",
  26076. height: math.unit(50, "feet")
  26077. },
  26078. ]
  26079. ))
  26080. characterMakers.push(() => makeCharacter(
  26081. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26082. {
  26083. front: {
  26084. height: math.unit(16, "feet"),
  26085. weight: math.unit(1000, "lb"),
  26086. name: "Front",
  26087. image: {
  26088. source: "./media/characters/grim/front.svg",
  26089. extra: 622 / 614,
  26090. bottom: 18.1 / 642
  26091. }
  26092. },
  26093. back: {
  26094. height: math.unit(16, "feet"),
  26095. weight: math.unit(1000, "lb"),
  26096. name: "Back",
  26097. image: {
  26098. source: "./media/characters/grim/back.svg",
  26099. extra: 610.6 / 602,
  26100. bottom: 40.8 / 652
  26101. }
  26102. },
  26103. hunched: {
  26104. height: math.unit(9.75, "feet"),
  26105. weight: math.unit(1000, "lb"),
  26106. name: "Hunched",
  26107. image: {
  26108. source: "./media/characters/grim/hunched.svg",
  26109. extra: 304 / 297,
  26110. bottom: 35.4 / 394
  26111. }
  26112. },
  26113. },
  26114. [
  26115. {
  26116. name: "Normal",
  26117. height: math.unit(16, "feet"),
  26118. default: true
  26119. },
  26120. ]
  26121. ))
  26122. characterMakers.push(() => makeCharacter(
  26123. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26124. {
  26125. front: {
  26126. height: math.unit(2.3, "meters"),
  26127. weight: math.unit(300, "lb"),
  26128. name: "Front",
  26129. image: {
  26130. source: "./media/characters/sinja/front-sfw.svg",
  26131. extra: 1393 / 1294,
  26132. bottom: 70 / 1463
  26133. }
  26134. },
  26135. frontNsfw: {
  26136. height: math.unit(2.3, "meters"),
  26137. weight: math.unit(300, "lb"),
  26138. name: "Front (NSFW)",
  26139. image: {
  26140. source: "./media/characters/sinja/front-nsfw.svg",
  26141. extra: 1393 / 1294,
  26142. bottom: 70 / 1463
  26143. }
  26144. },
  26145. back: {
  26146. height: math.unit(2.3, "meters"),
  26147. weight: math.unit(300, "lb"),
  26148. name: "Back",
  26149. image: {
  26150. source: "./media/characters/sinja/back.svg",
  26151. extra: 1393 / 1294,
  26152. bottom: 70 / 1463
  26153. }
  26154. },
  26155. head: {
  26156. height: math.unit(1.771, "feet"),
  26157. name: "Head",
  26158. image: {
  26159. source: "./media/characters/sinja/head.svg"
  26160. }
  26161. },
  26162. slit: {
  26163. height: math.unit(0.8, "feet"),
  26164. name: "Slit",
  26165. image: {
  26166. source: "./media/characters/sinja/slit.svg"
  26167. }
  26168. },
  26169. },
  26170. [
  26171. {
  26172. name: "Normal",
  26173. height: math.unit(2.3, "meters")
  26174. },
  26175. {
  26176. name: "Macro",
  26177. height: math.unit(91, "meters"),
  26178. default: true
  26179. },
  26180. {
  26181. name: "Megamacro",
  26182. height: math.unit(91440, "meters")
  26183. },
  26184. {
  26185. name: "Gigamacro",
  26186. height: math.unit(60960000, "meters")
  26187. },
  26188. {
  26189. name: "Teramacro",
  26190. height: math.unit(9144000000, "meters")
  26191. },
  26192. ]
  26193. ))
  26194. characterMakers.push(() => makeCharacter(
  26195. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26196. {
  26197. front: {
  26198. height: math.unit(1.7, "meters"),
  26199. weight: math.unit(130, "lb"),
  26200. name: "Front",
  26201. image: {
  26202. source: "./media/characters/kyu/front.svg",
  26203. extra: 415 / 395,
  26204. bottom: 5 / 420
  26205. }
  26206. },
  26207. head: {
  26208. height: math.unit(1.75, "feet"),
  26209. name: "Head",
  26210. image: {
  26211. source: "./media/characters/kyu/head.svg"
  26212. }
  26213. },
  26214. foot: {
  26215. height: math.unit(0.81, "feet"),
  26216. name: "Foot",
  26217. image: {
  26218. source: "./media/characters/kyu/foot.svg"
  26219. }
  26220. },
  26221. },
  26222. [
  26223. {
  26224. name: "Normal",
  26225. height: math.unit(1.7, "meters")
  26226. },
  26227. {
  26228. name: "Macro",
  26229. height: math.unit(131, "feet"),
  26230. default: true
  26231. },
  26232. {
  26233. name: "Megamacro",
  26234. height: math.unit(91440, "meters")
  26235. },
  26236. {
  26237. name: "Gigamacro",
  26238. height: math.unit(60960000, "meters")
  26239. },
  26240. {
  26241. name: "Teramacro",
  26242. height: math.unit(9144000000, "meters")
  26243. },
  26244. ]
  26245. ))
  26246. characterMakers.push(() => makeCharacter(
  26247. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26248. {
  26249. front: {
  26250. height: math.unit(7 + 1 / 12, "feet"),
  26251. weight: math.unit(250, "lb"),
  26252. name: "Front",
  26253. image: {
  26254. source: "./media/characters/joey/front.svg",
  26255. extra: 1791 / 1537,
  26256. bottom: 28 / 1816
  26257. }
  26258. },
  26259. },
  26260. [
  26261. {
  26262. name: "Micro",
  26263. height: math.unit(3, "inches")
  26264. },
  26265. {
  26266. name: "Normal",
  26267. height: math.unit(7 + 1 / 12, "feet"),
  26268. default: true
  26269. },
  26270. ]
  26271. ))
  26272. characterMakers.push(() => makeCharacter(
  26273. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26274. {
  26275. front: {
  26276. height: math.unit(165, "cm"),
  26277. weight: math.unit(140, "lb"),
  26278. name: "Front",
  26279. image: {
  26280. source: "./media/characters/sam-evans/front.svg",
  26281. extra: 3417 / 3230,
  26282. bottom: 41.3 / 3417
  26283. }
  26284. },
  26285. frontSixTails: {
  26286. height: math.unit(165, "cm"),
  26287. weight: math.unit(140, "lb"),
  26288. name: "Front-six-tails",
  26289. image: {
  26290. source: "./media/characters/sam-evans/front-six-tails.svg",
  26291. extra: 3417 / 3230,
  26292. bottom: 41.3 / 3417
  26293. }
  26294. },
  26295. back: {
  26296. height: math.unit(165, "cm"),
  26297. weight: math.unit(140, "lb"),
  26298. name: "Back",
  26299. image: {
  26300. source: "./media/characters/sam-evans/back.svg",
  26301. extra: 3227 / 3032,
  26302. bottom: 6.8 / 3234
  26303. }
  26304. },
  26305. face: {
  26306. height: math.unit(0.68, "feet"),
  26307. name: "Face",
  26308. image: {
  26309. source: "./media/characters/sam-evans/face.svg"
  26310. }
  26311. },
  26312. },
  26313. [
  26314. {
  26315. name: "Normal",
  26316. height: math.unit(165, "cm"),
  26317. default: true
  26318. },
  26319. {
  26320. name: "Macro",
  26321. height: math.unit(100, "meters")
  26322. },
  26323. {
  26324. name: "Macro+",
  26325. height: math.unit(800, "meters")
  26326. },
  26327. {
  26328. name: "Macro++",
  26329. height: math.unit(3, "km")
  26330. },
  26331. {
  26332. name: "Macro+++",
  26333. height: math.unit(30, "km")
  26334. },
  26335. ]
  26336. ))
  26337. characterMakers.push(() => makeCharacter(
  26338. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26339. {
  26340. front: {
  26341. height: math.unit(10, "feet"),
  26342. weight: math.unit(750, "lb"),
  26343. name: "Front",
  26344. image: {
  26345. source: "./media/characters/juliet-a/front.svg",
  26346. extra: 1766 / 1720,
  26347. bottom: 43 / 1809
  26348. }
  26349. },
  26350. back: {
  26351. height: math.unit(10, "feet"),
  26352. weight: math.unit(750, "lb"),
  26353. name: "Back",
  26354. image: {
  26355. source: "./media/characters/juliet-a/back.svg",
  26356. extra: 1781 / 1734,
  26357. bottom: 35 / 1810,
  26358. }
  26359. },
  26360. },
  26361. [
  26362. {
  26363. name: "Normal",
  26364. height: math.unit(10, "feet"),
  26365. default: true
  26366. },
  26367. {
  26368. name: "Dragon Form",
  26369. height: math.unit(250, "feet")
  26370. },
  26371. {
  26372. name: "Macro",
  26373. height: math.unit(1000, "feet")
  26374. },
  26375. {
  26376. name: "Megamacro",
  26377. height: math.unit(10000, "feet")
  26378. }
  26379. ]
  26380. ))
  26381. characterMakers.push(() => makeCharacter(
  26382. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26383. {
  26384. regular: {
  26385. height: math.unit(7 + 3 / 12, "feet"),
  26386. weight: math.unit(260, "lb"),
  26387. name: "Regular",
  26388. image: {
  26389. source: "./media/characters/wild/regular.svg",
  26390. extra: 97.45 / 92,
  26391. bottom: 6.8 / 104.3
  26392. }
  26393. },
  26394. biggums: {
  26395. height: math.unit(8 + 6 / 12, "feet"),
  26396. weight: math.unit(425, "lb"),
  26397. name: "Biggums",
  26398. image: {
  26399. source: "./media/characters/wild/biggums.svg",
  26400. extra: 97.45 / 92,
  26401. bottom: 7.5 / 132.34
  26402. }
  26403. },
  26404. mawRegular: {
  26405. height: math.unit(1.24, "feet"),
  26406. name: "Maw (Regular)",
  26407. image: {
  26408. source: "./media/characters/wild/maw.svg"
  26409. }
  26410. },
  26411. mawBiggums: {
  26412. height: math.unit(1.47, "feet"),
  26413. name: "Maw (Biggums)",
  26414. image: {
  26415. source: "./media/characters/wild/maw.svg"
  26416. }
  26417. },
  26418. },
  26419. [
  26420. {
  26421. name: "Normal",
  26422. height: math.unit(7 + 3 / 12, "feet"),
  26423. default: true
  26424. },
  26425. ]
  26426. ))
  26427. characterMakers.push(() => makeCharacter(
  26428. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26429. {
  26430. front: {
  26431. height: math.unit(2.5, "meters"),
  26432. weight: math.unit(200, "kg"),
  26433. name: "Front",
  26434. image: {
  26435. source: "./media/characters/vidar/front.svg",
  26436. extra: 2994 / 2795,
  26437. bottom: 56 / 3061
  26438. }
  26439. },
  26440. back: {
  26441. height: math.unit(2.5, "meters"),
  26442. weight: math.unit(200, "kg"),
  26443. name: "Back",
  26444. image: {
  26445. source: "./media/characters/vidar/back.svg",
  26446. extra: 3131 / 2928,
  26447. bottom: 13.5 / 3141.5
  26448. }
  26449. },
  26450. feral: {
  26451. height: math.unit(2.5, "meters"),
  26452. weight: math.unit(2000, "kg"),
  26453. name: "Feral",
  26454. image: {
  26455. source: "./media/characters/vidar/feral.svg",
  26456. extra: 2790 / 1765,
  26457. bottom: 6 / 2796
  26458. }
  26459. },
  26460. },
  26461. [
  26462. {
  26463. name: "Normal",
  26464. height: math.unit(2.5, "meters"),
  26465. default: true
  26466. },
  26467. {
  26468. name: "Macro",
  26469. height: math.unit(100, "meters")
  26470. },
  26471. ]
  26472. ))
  26473. characterMakers.push(() => makeCharacter(
  26474. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26475. {
  26476. front: {
  26477. height: math.unit(5 + 9 / 12, "feet"),
  26478. weight: math.unit(120, "lb"),
  26479. name: "Front",
  26480. image: {
  26481. source: "./media/characters/ash/front.svg",
  26482. extra: 2189 / 1961,
  26483. bottom: 5.2 / 2194
  26484. }
  26485. },
  26486. },
  26487. [
  26488. {
  26489. name: "Normal",
  26490. height: math.unit(5 + 9 / 12, "feet"),
  26491. default: true
  26492. },
  26493. ]
  26494. ))
  26495. characterMakers.push(() => makeCharacter(
  26496. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26497. {
  26498. front: {
  26499. height: math.unit(9, "feet"),
  26500. weight: math.unit(10000, "lb"),
  26501. name: "Front",
  26502. image: {
  26503. source: "./media/characters/gygabite/front.svg",
  26504. bottom: 31.7 / 537.8,
  26505. extra: 505 / 370
  26506. }
  26507. },
  26508. },
  26509. [
  26510. {
  26511. name: "Normal",
  26512. height: math.unit(9, "feet"),
  26513. default: true
  26514. },
  26515. ]
  26516. ))
  26517. characterMakers.push(() => makeCharacter(
  26518. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26519. {
  26520. front: {
  26521. height: math.unit(12, "feet"),
  26522. weight: math.unit(35000, "lb"),
  26523. name: "Front",
  26524. image: {
  26525. source: "./media/characters/p0tat0/front.svg",
  26526. extra: 1065 / 921,
  26527. bottom: 55.7 / 1121.25
  26528. }
  26529. },
  26530. },
  26531. [
  26532. {
  26533. name: "Normal",
  26534. height: math.unit(12, "feet"),
  26535. default: true
  26536. },
  26537. ]
  26538. ))
  26539. characterMakers.push(() => makeCharacter(
  26540. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26541. {
  26542. side: {
  26543. height: math.unit(6.5, "feet"),
  26544. weight: math.unit(800, "lb"),
  26545. name: "Side",
  26546. image: {
  26547. source: "./media/characters/dusk/side.svg",
  26548. extra: 615 / 373,
  26549. bottom: 53 / 664
  26550. }
  26551. },
  26552. sitting: {
  26553. height: math.unit(7, "feet"),
  26554. weight: math.unit(800, "lb"),
  26555. name: "Sitting",
  26556. image: {
  26557. source: "./media/characters/dusk/sitting.svg",
  26558. extra: 753 / 425,
  26559. bottom: 33 / 774
  26560. }
  26561. },
  26562. head: {
  26563. height: math.unit(6.1, "feet"),
  26564. name: "Head",
  26565. image: {
  26566. source: "./media/characters/dusk/head.svg"
  26567. }
  26568. },
  26569. },
  26570. [
  26571. {
  26572. name: "Normal",
  26573. height: math.unit(7, "feet"),
  26574. default: true
  26575. },
  26576. ]
  26577. ))
  26578. characterMakers.push(() => makeCharacter(
  26579. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26580. {
  26581. front: {
  26582. height: math.unit(15, "feet"),
  26583. weight: math.unit(7000, "lb"),
  26584. name: "Front",
  26585. image: {
  26586. source: "./media/characters/jay-direwolf/front.svg",
  26587. extra: 1810 / 1732,
  26588. bottom: 66 / 1892
  26589. }
  26590. },
  26591. },
  26592. [
  26593. {
  26594. name: "Normal",
  26595. height: math.unit(15, "feet"),
  26596. default: true
  26597. },
  26598. ]
  26599. ))
  26600. characterMakers.push(() => makeCharacter(
  26601. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26602. {
  26603. front: {
  26604. height: math.unit(4 + 9 / 12, "feet"),
  26605. weight: math.unit(130, "lb"),
  26606. name: "Front",
  26607. image: {
  26608. source: "./media/characters/anchovie/front.svg",
  26609. extra: 382 / 350,
  26610. bottom: 25 / 409
  26611. }
  26612. },
  26613. back: {
  26614. height: math.unit(4 + 9 / 12, "feet"),
  26615. weight: math.unit(130, "lb"),
  26616. name: "Back",
  26617. image: {
  26618. source: "./media/characters/anchovie/back.svg",
  26619. extra: 385 / 352,
  26620. bottom: 16.6 / 402
  26621. }
  26622. },
  26623. frontDressed: {
  26624. height: math.unit(4 + 9 / 12, "feet"),
  26625. weight: math.unit(130, "lb"),
  26626. name: "Front (Dressed)",
  26627. image: {
  26628. source: "./media/characters/anchovie/front-dressed.svg",
  26629. extra: 382 / 350,
  26630. bottom: 25 / 409
  26631. }
  26632. },
  26633. backDressed: {
  26634. height: math.unit(4 + 9 / 12, "feet"),
  26635. weight: math.unit(130, "lb"),
  26636. name: "Back (Dressed)",
  26637. image: {
  26638. source: "./media/characters/anchovie/back-dressed.svg",
  26639. extra: 385 / 352,
  26640. bottom: 16.6 / 402
  26641. }
  26642. },
  26643. },
  26644. [
  26645. {
  26646. name: "Micro",
  26647. height: math.unit(6.4, "inches")
  26648. },
  26649. {
  26650. name: "Normal",
  26651. height: math.unit(4 + 9 / 12, "feet"),
  26652. default: true
  26653. },
  26654. ]
  26655. ))
  26656. characterMakers.push(() => makeCharacter(
  26657. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26658. {
  26659. front: {
  26660. height: math.unit(2, "meters"),
  26661. weight: math.unit(180, "lb"),
  26662. name: "Front",
  26663. image: {
  26664. source: "./media/characters/acidrenamon/front.svg",
  26665. extra: 987 / 890,
  26666. bottom: 22.8 / 1009
  26667. }
  26668. },
  26669. back: {
  26670. height: math.unit(2, "meters"),
  26671. weight: math.unit(180, "lb"),
  26672. name: "Back",
  26673. image: {
  26674. source: "./media/characters/acidrenamon/back.svg",
  26675. extra: 983 / 891,
  26676. bottom: 8.4 / 992
  26677. }
  26678. },
  26679. head: {
  26680. height: math.unit(1.92, "feet"),
  26681. name: "Head",
  26682. image: {
  26683. source: "./media/characters/acidrenamon/head.svg"
  26684. }
  26685. },
  26686. rump: {
  26687. height: math.unit(1.72, "feet"),
  26688. name: "Rump",
  26689. image: {
  26690. source: "./media/characters/acidrenamon/rump.svg"
  26691. }
  26692. },
  26693. tail: {
  26694. height: math.unit(4.2, "feet"),
  26695. name: "Tail",
  26696. image: {
  26697. source: "./media/characters/acidrenamon/tail.svg"
  26698. }
  26699. },
  26700. },
  26701. [
  26702. {
  26703. name: "Normal",
  26704. height: math.unit(2, "meters"),
  26705. default: true
  26706. },
  26707. {
  26708. name: "Minimacro",
  26709. height: math.unit(7, "meters")
  26710. },
  26711. {
  26712. name: "Macro",
  26713. height: math.unit(200, "meters")
  26714. },
  26715. {
  26716. name: "Gigamacro",
  26717. height: math.unit(0.2, "earths")
  26718. },
  26719. ]
  26720. ))
  26721. characterMakers.push(() => makeCharacter(
  26722. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26723. {
  26724. front: {
  26725. height: math.unit(6, "feet"),
  26726. weight: math.unit(150, "lb"),
  26727. name: "Front",
  26728. image: {
  26729. source: "./media/characters/kenzie-lee/front.svg",
  26730. extra: 1525 / 1465,
  26731. bottom: 45 / 1570
  26732. }
  26733. },
  26734. side: {
  26735. height: math.unit(6, "feet"),
  26736. weight: math.unit(150, "lb"),
  26737. name: "Side",
  26738. image: {
  26739. source: "./media/characters/kenzie-lee/side.svg",
  26740. extra: 5505 / 5383,
  26741. bottom: 60 / 5573
  26742. }
  26743. },
  26744. },
  26745. [
  26746. {
  26747. name: "Normal",
  26748. height: math.unit(152, "feet"),
  26749. default: true
  26750. },
  26751. {
  26752. name: "Megamacro",
  26753. height: math.unit(7, "miles")
  26754. },
  26755. {
  26756. name: "Gigamacro",
  26757. height: math.unit(8000, "miles")
  26758. },
  26759. ]
  26760. ))
  26761. characterMakers.push(() => makeCharacter(
  26762. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26763. {
  26764. side: {
  26765. height: math.unit(6, "feet"),
  26766. weight: math.unit(150, "lb"),
  26767. name: "Side",
  26768. image: {
  26769. source: "./media/characters/withers/side.svg",
  26770. extra: 1830 / 1728,
  26771. bottom: 96 / 1927
  26772. }
  26773. },
  26774. front: {
  26775. height: math.unit(6, "feet"),
  26776. weight: math.unit(150, "lb"),
  26777. name: "Front",
  26778. image: {
  26779. source: "./media/characters/withers/front.svg",
  26780. extra: 1514 / 1438,
  26781. bottom: 118 / 1632
  26782. }
  26783. },
  26784. },
  26785. [
  26786. {
  26787. name: "Macro",
  26788. height: math.unit(168, "feet"),
  26789. default: true
  26790. },
  26791. {
  26792. name: "Megamacro",
  26793. height: math.unit(15, "miles")
  26794. }
  26795. ]
  26796. ))
  26797. characterMakers.push(() => makeCharacter(
  26798. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26799. {
  26800. front: {
  26801. height: math.unit(6 + 7 / 12, "feet"),
  26802. weight: math.unit(250, "lb"),
  26803. name: "Front",
  26804. image: {
  26805. source: "./media/characters/nemoskii/front.svg",
  26806. extra: 2270 / 1734,
  26807. bottom: 86 / 2354
  26808. }
  26809. },
  26810. back: {
  26811. height: math.unit(6 + 7 / 12, "feet"),
  26812. weight: math.unit(250, "lb"),
  26813. name: "Back",
  26814. image: {
  26815. source: "./media/characters/nemoskii/back.svg",
  26816. extra: 1845 / 1788,
  26817. bottom: 10.5 / 1852
  26818. }
  26819. },
  26820. head: {
  26821. height: math.unit(1.31, "feet"),
  26822. name: "Head",
  26823. image: {
  26824. source: "./media/characters/nemoskii/head.svg"
  26825. }
  26826. },
  26827. },
  26828. [
  26829. {
  26830. name: "Normal",
  26831. height: math.unit(6 + 7 / 12, "feet"),
  26832. default: true
  26833. },
  26834. ]
  26835. ))
  26836. characterMakers.push(() => makeCharacter(
  26837. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  26838. {
  26839. front: {
  26840. height: math.unit(1, "mile"),
  26841. weight: math.unit(265261.9, "lb"),
  26842. name: "Front",
  26843. image: {
  26844. source: "./media/characters/shui/front.svg",
  26845. extra: 1633 / 1564,
  26846. bottom: 91.5 / 1726
  26847. }
  26848. },
  26849. },
  26850. [
  26851. {
  26852. name: "Macro",
  26853. height: math.unit(1, "mile"),
  26854. default: true
  26855. },
  26856. ]
  26857. ))
  26858. characterMakers.push(() => makeCharacter(
  26859. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  26860. {
  26861. front: {
  26862. height: math.unit(12 + 6 / 12, "feet"),
  26863. weight: math.unit(1342, "lb"),
  26864. name: "Front",
  26865. image: {
  26866. source: "./media/characters/arokh-takakura/front.svg",
  26867. extra: 1089 / 1043,
  26868. bottom: 77.4 / 1176.7
  26869. }
  26870. },
  26871. back: {
  26872. height: math.unit(12 + 6 / 12, "feet"),
  26873. weight: math.unit(1342, "lb"),
  26874. name: "Back",
  26875. image: {
  26876. source: "./media/characters/arokh-takakura/back.svg",
  26877. extra: 1046 / 1019,
  26878. bottom: 102 / 1150
  26879. }
  26880. },
  26881. },
  26882. [
  26883. {
  26884. name: "Big",
  26885. height: math.unit(12 + 6 / 12, "feet"),
  26886. default: true
  26887. },
  26888. ]
  26889. ))
  26890. characterMakers.push(() => makeCharacter(
  26891. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  26892. {
  26893. front: {
  26894. height: math.unit(5 + 6 / 12, "feet"),
  26895. weight: math.unit(150, "lb"),
  26896. name: "Front",
  26897. image: {
  26898. source: "./media/characters/theo/front.svg",
  26899. extra: 1184 / 1131,
  26900. bottom: 7.4 / 1191
  26901. }
  26902. },
  26903. },
  26904. [
  26905. {
  26906. name: "Micro",
  26907. height: math.unit(5, "inches")
  26908. },
  26909. {
  26910. name: "Normal",
  26911. height: math.unit(5 + 6 / 12, "feet"),
  26912. default: true
  26913. },
  26914. ]
  26915. ))
  26916. characterMakers.push(() => makeCharacter(
  26917. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  26918. {
  26919. front: {
  26920. height: math.unit(5 + 9 / 12, "feet"),
  26921. weight: math.unit(130, "lb"),
  26922. name: "Front",
  26923. image: {
  26924. source: "./media/characters/cecelia-swift/front.svg",
  26925. extra: 502 / 484,
  26926. bottom: 23 / 523
  26927. }
  26928. },
  26929. back: {
  26930. height: math.unit(5 + 9 / 12, "feet"),
  26931. weight: math.unit(130, "lb"),
  26932. name: "Back",
  26933. image: {
  26934. source: "./media/characters/cecelia-swift/back.svg",
  26935. extra: 499 / 485,
  26936. bottom: 12 / 511
  26937. }
  26938. },
  26939. head: {
  26940. height: math.unit(0.90, "feet"),
  26941. name: "Head",
  26942. image: {
  26943. source: "./media/characters/cecelia-swift/head.svg"
  26944. }
  26945. },
  26946. rump: {
  26947. height: math.unit(1.75, "feet"),
  26948. name: "Rump",
  26949. image: {
  26950. source: "./media/characters/cecelia-swift/rump.svg"
  26951. }
  26952. },
  26953. },
  26954. [
  26955. {
  26956. name: "Normal",
  26957. height: math.unit(5 + 9 / 12, "feet"),
  26958. default: true
  26959. },
  26960. {
  26961. name: "Big",
  26962. height: math.unit(50, "feet")
  26963. },
  26964. {
  26965. name: "Macro",
  26966. height: math.unit(100, "feet")
  26967. },
  26968. {
  26969. name: "Macro+",
  26970. height: math.unit(500, "feet")
  26971. },
  26972. {
  26973. name: "Macro++",
  26974. height: math.unit(1000, "feet")
  26975. },
  26976. ]
  26977. ))
  26978. characterMakers.push(() => makeCharacter(
  26979. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  26980. {
  26981. front: {
  26982. height: math.unit(6, "feet"),
  26983. weight: math.unit(150, "lb"),
  26984. name: "Front",
  26985. image: {
  26986. source: "./media/characters/kaunan/front.svg",
  26987. extra: 2890 / 2523,
  26988. bottom: 49 / 2939
  26989. }
  26990. },
  26991. },
  26992. [
  26993. {
  26994. name: "Macro",
  26995. height: math.unit(150, "feet"),
  26996. default: true
  26997. },
  26998. ]
  26999. ))
  27000. characterMakers.push(() => makeCharacter(
  27001. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27002. {
  27003. front: {
  27004. height: math.unit(175, "cm"),
  27005. weight: math.unit(60, "kg"),
  27006. name: "Front",
  27007. image: {
  27008. source: "./media/characters/fei/front.svg",
  27009. extra: 2581 / 2400,
  27010. bottom: 82.2 / 2663
  27011. }
  27012. },
  27013. },
  27014. [
  27015. {
  27016. name: "Mortal",
  27017. height: math.unit(175, "cm")
  27018. },
  27019. {
  27020. name: "Normal",
  27021. height: math.unit(3500, "m"),
  27022. default: true
  27023. },
  27024. {
  27025. name: "Stroll",
  27026. height: math.unit(17.5, "km")
  27027. },
  27028. {
  27029. name: "Showoff",
  27030. height: math.unit(175, "km")
  27031. },
  27032. ]
  27033. ))
  27034. characterMakers.push(() => makeCharacter(
  27035. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27036. {
  27037. front: {
  27038. height: math.unit(7, "feet"),
  27039. weight: math.unit(1000, "kg"),
  27040. name: "Front",
  27041. image: {
  27042. source: "./media/characters/edrax/front.svg",
  27043. extra: 2838 / 2550,
  27044. bottom: 130 / 2968
  27045. }
  27046. },
  27047. },
  27048. [
  27049. {
  27050. name: "Small",
  27051. height: math.unit(7, "feet")
  27052. },
  27053. {
  27054. name: "Normal",
  27055. height: math.unit(1500, "meters")
  27056. },
  27057. {
  27058. name: "Mega",
  27059. height: math.unit(12000000, "km"),
  27060. default: true
  27061. },
  27062. {
  27063. name: "Megamacro",
  27064. height: math.unit(10600000, "lightyears")
  27065. },
  27066. {
  27067. name: "Hypermacro",
  27068. height: math.unit(256, "yottameters")
  27069. },
  27070. ]
  27071. ))
  27072. characterMakers.push(() => makeCharacter(
  27073. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27074. {
  27075. front: {
  27076. height: math.unit(10, "feet"),
  27077. weight: math.unit(750, "lb"),
  27078. name: "Front",
  27079. image: {
  27080. source: "./media/characters/clove/front.svg",
  27081. extra: 2031 / 1860,
  27082. bottom: 47.8 / 2080
  27083. }
  27084. },
  27085. back: {
  27086. height: math.unit(10, "feet"),
  27087. weight: math.unit(750, "lb"),
  27088. name: "Back",
  27089. image: {
  27090. source: "./media/characters/clove/back.svg",
  27091. extra: 2025 / 1859,
  27092. bottom: 46 / 2071
  27093. }
  27094. },
  27095. },
  27096. [
  27097. {
  27098. name: "Normal",
  27099. height: math.unit(10, "feet"),
  27100. default: true
  27101. },
  27102. ]
  27103. ))
  27104. characterMakers.push(() => makeCharacter(
  27105. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27106. {
  27107. front: {
  27108. height: math.unit(4, "feet"),
  27109. weight: math.unit(50, "lb"),
  27110. name: "Front",
  27111. image: {
  27112. source: "./media/characters/alex-rabbit/front.svg",
  27113. extra: 507 / 458,
  27114. bottom: 18.5 / 527
  27115. }
  27116. },
  27117. back: {
  27118. height: math.unit(4, "feet"),
  27119. weight: math.unit(50, "lb"),
  27120. name: "Back",
  27121. image: {
  27122. source: "./media/characters/alex-rabbit/back.svg",
  27123. extra: 502 / 460,
  27124. bottom: 18.9 / 521
  27125. }
  27126. },
  27127. },
  27128. [
  27129. {
  27130. name: "Normal",
  27131. height: math.unit(4, "feet"),
  27132. default: true
  27133. },
  27134. ]
  27135. ))
  27136. characterMakers.push(() => makeCharacter(
  27137. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27138. {
  27139. front: {
  27140. height: math.unit(1 + 3 / 12, "feet"),
  27141. weight: math.unit(80, "lb"),
  27142. name: "Front",
  27143. image: {
  27144. source: "./media/characters/zander-rose/front.svg",
  27145. extra: 916 / 797,
  27146. bottom: 17 / 933
  27147. }
  27148. },
  27149. back: {
  27150. height: math.unit(1 + 3 / 12, "feet"),
  27151. weight: math.unit(80, "lb"),
  27152. name: "Back",
  27153. image: {
  27154. source: "./media/characters/zander-rose/back.svg",
  27155. extra: 903 / 779,
  27156. bottom: 31 / 934
  27157. }
  27158. },
  27159. },
  27160. [
  27161. {
  27162. name: "Normal",
  27163. height: math.unit(1 + 3 / 12, "feet"),
  27164. default: true
  27165. },
  27166. ]
  27167. ))
  27168. characterMakers.push(() => makeCharacter(
  27169. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27170. {
  27171. anthro: {
  27172. height: math.unit(6, "feet"),
  27173. weight: math.unit(150, "lb"),
  27174. name: "Anthro",
  27175. image: {
  27176. source: "./media/characters/razz/anthro.svg",
  27177. extra: 1437 / 1343,
  27178. bottom: 48 / 1485
  27179. }
  27180. },
  27181. feral: {
  27182. height: math.unit(6, "feet"),
  27183. weight: math.unit(150, "lb"),
  27184. name: "Feral",
  27185. image: {
  27186. source: "./media/characters/razz/feral.svg",
  27187. extra: 2569 / 1385,
  27188. bottom: 95 / 2664
  27189. }
  27190. },
  27191. },
  27192. [
  27193. {
  27194. name: "Normal",
  27195. height: math.unit(6, "feet"),
  27196. default: true
  27197. },
  27198. ]
  27199. ))
  27200. characterMakers.push(() => makeCharacter(
  27201. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27202. {
  27203. front: {
  27204. height: math.unit(9 + 4 / 12, "feet"),
  27205. weight: math.unit(500, "lb"),
  27206. name: "Front",
  27207. image: {
  27208. source: "./media/characters/morrigan/front.svg",
  27209. extra: 2707 / 2579,
  27210. bottom: 156 / 2863
  27211. }
  27212. },
  27213. },
  27214. [
  27215. {
  27216. name: "Normal",
  27217. height: math.unit(9 + 4 / 12, "feet"),
  27218. default: true
  27219. },
  27220. ]
  27221. ))
  27222. characterMakers.push(() => makeCharacter(
  27223. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27224. {
  27225. front: {
  27226. height: math.unit(5, "stories"),
  27227. weight: math.unit(4000, "lb"),
  27228. name: "Front",
  27229. image: {
  27230. source: "./media/characters/jenene/front.svg",
  27231. extra: 1780 / 1710,
  27232. bottom: 57 / 1837
  27233. }
  27234. },
  27235. },
  27236. [
  27237. {
  27238. name: "Normal",
  27239. height: math.unit(5, "stories"),
  27240. default: true
  27241. },
  27242. ]
  27243. ))
  27244. characterMakers.push(() => makeCharacter(
  27245. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27246. {
  27247. front: {
  27248. height: math.unit(6, "feet"),
  27249. weight: math.unit(150, "lb"),
  27250. name: "Front",
  27251. image: {
  27252. source: "./media/characters/vix-archaser/front.svg",
  27253. extra: 2767 / 2562,
  27254. bottom: 36 / 2803
  27255. }
  27256. },
  27257. },
  27258. [
  27259. {
  27260. name: "Micro",
  27261. height: math.unit(1, "foot")
  27262. },
  27263. {
  27264. name: "Normal",
  27265. height: math.unit(6 + 5 / 12, "feet")
  27266. },
  27267. {
  27268. name: "Minimacro",
  27269. height: math.unit(500, "feet")
  27270. },
  27271. {
  27272. name: "Macro",
  27273. height: math.unit(4, "miles")
  27274. },
  27275. {
  27276. name: "Megamacro",
  27277. height: math.unit(250, "miles"),
  27278. default: true
  27279. },
  27280. {
  27281. name: "Gigamacro",
  27282. height: math.unit(1, "universe")
  27283. },
  27284. {
  27285. name: "Endgame",
  27286. height: math.unit(100, "multiverses")
  27287. }
  27288. ]
  27289. ))
  27290. characterMakers.push(() => makeCharacter(
  27291. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27292. {
  27293. taurSfw: {
  27294. height: math.unit(10, "meters"),
  27295. weight: math.unit(17500, "kg"),
  27296. name: "Taur",
  27297. image: {
  27298. source: "./media/characters/faey/taur-sfw.svg",
  27299. extra: 1200 / 968,
  27300. bottom: 41 / 1241
  27301. }
  27302. },
  27303. chestmaw: {
  27304. height: math.unit(2.01, "meters"),
  27305. name: "Chestmaw",
  27306. image: {
  27307. source: "./media/characters/faey/chestmaw.svg"
  27308. }
  27309. },
  27310. foot: {
  27311. height: math.unit(2.43, "meters"),
  27312. name: "Foot",
  27313. image: {
  27314. source: "./media/characters/faey/foot.svg"
  27315. }
  27316. },
  27317. jaws: {
  27318. height: math.unit(1.66, "meters"),
  27319. name: "Jaws",
  27320. image: {
  27321. source: "./media/characters/faey/jaws.svg"
  27322. }
  27323. },
  27324. tongues: {
  27325. height: math.unit(2.01, "meters"),
  27326. name: "Tongues",
  27327. image: {
  27328. source: "./media/characters/faey/tongues.svg"
  27329. }
  27330. },
  27331. },
  27332. [
  27333. {
  27334. name: "Small",
  27335. height: math.unit(10, "meters"),
  27336. default: true
  27337. },
  27338. {
  27339. name: "Big",
  27340. height: math.unit(500000, "km")
  27341. },
  27342. ]
  27343. ))
  27344. characterMakers.push(() => makeCharacter(
  27345. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27346. {
  27347. front: {
  27348. height: math.unit(7, "feet"),
  27349. weight: math.unit(275, "lb"),
  27350. name: "Front",
  27351. image: {
  27352. source: "./media/characters/roku/front.svg",
  27353. extra: 903 / 878,
  27354. bottom: 37 / 940
  27355. }
  27356. },
  27357. },
  27358. [
  27359. {
  27360. name: "Normal",
  27361. height: math.unit(7, "feet"),
  27362. default: true
  27363. },
  27364. {
  27365. name: "Macro",
  27366. height: math.unit(500, "feet")
  27367. },
  27368. {
  27369. name: "Megamacro",
  27370. height: math.unit(200, "miles")
  27371. },
  27372. ]
  27373. ))
  27374. characterMakers.push(() => makeCharacter(
  27375. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27376. {
  27377. front: {
  27378. height: math.unit(6 + 2 / 12, "feet"),
  27379. weight: math.unit(150, "lb"),
  27380. name: "Front",
  27381. image: {
  27382. source: "./media/characters/lira/front.svg",
  27383. extra: 1727 / 1605,
  27384. bottom: 26 / 1753
  27385. }
  27386. },
  27387. back: {
  27388. height: math.unit(6 + 2 / 12, "feet"),
  27389. weight: math.unit(150, "lb"),
  27390. name: "Back",
  27391. image: {
  27392. source: "./media/characters/lira/back.svg",
  27393. extra: 1713 / 159,
  27394. bottom: 20 / 1733
  27395. }
  27396. },
  27397. hand: {
  27398. height: math.unit(0.75, "feet"),
  27399. name: "Hand",
  27400. image: {
  27401. source: "./media/characters/lira/hand.svg"
  27402. }
  27403. },
  27404. maw: {
  27405. height: math.unit(0.65, "feet"),
  27406. name: "Maw",
  27407. image: {
  27408. source: "./media/characters/lira/maw.svg"
  27409. }
  27410. },
  27411. pawDigi: {
  27412. height: math.unit(1.6, "feet"),
  27413. name: "Paw Digi",
  27414. image: {
  27415. source: "./media/characters/lira/paw-digi.svg"
  27416. }
  27417. },
  27418. pawPlanti: {
  27419. height: math.unit(1.4, "feet"),
  27420. name: "Paw Planti",
  27421. image: {
  27422. source: "./media/characters/lira/paw-planti.svg"
  27423. }
  27424. },
  27425. },
  27426. [
  27427. {
  27428. name: "Normal",
  27429. height: math.unit(6 + 2 / 12, "feet"),
  27430. default: true
  27431. },
  27432. {
  27433. name: "Macro",
  27434. height: math.unit(100, "feet")
  27435. },
  27436. {
  27437. name: "Macro²",
  27438. height: math.unit(1600, "feet")
  27439. },
  27440. {
  27441. name: "Planetary",
  27442. height: math.unit(20, "earths")
  27443. },
  27444. ]
  27445. ))
  27446. characterMakers.push(() => makeCharacter(
  27447. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27448. {
  27449. front: {
  27450. height: math.unit(6, "feet"),
  27451. weight: math.unit(150, "lb"),
  27452. name: "Front",
  27453. image: {
  27454. source: "./media/characters/hadjet/front.svg",
  27455. extra: 1480 / 1346,
  27456. bottom: 26 / 1506
  27457. }
  27458. },
  27459. frontNsfw: {
  27460. height: math.unit(6, "feet"),
  27461. weight: math.unit(150, "lb"),
  27462. name: "Front (NSFW)",
  27463. image: {
  27464. source: "./media/characters/hadjet/front-nsfw.svg",
  27465. extra: 1440 / 1358,
  27466. bottom: 52 / 1492
  27467. }
  27468. },
  27469. },
  27470. [
  27471. {
  27472. name: "Macro",
  27473. height: math.unit(10, "stories"),
  27474. default: true
  27475. },
  27476. {
  27477. name: "Megamacro",
  27478. height: math.unit(1.5, "miles")
  27479. },
  27480. {
  27481. name: "Megamacro+",
  27482. height: math.unit(5, "miles")
  27483. },
  27484. ]
  27485. ))
  27486. characterMakers.push(() => makeCharacter(
  27487. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27488. {
  27489. side: {
  27490. height: math.unit(106, "feet"),
  27491. weight: math.unit(500, "tonnes"),
  27492. name: "Side",
  27493. image: {
  27494. source: "./media/characters/kodran/side.svg",
  27495. extra: 553 / 480,
  27496. bottom: 33 / 586
  27497. }
  27498. },
  27499. front: {
  27500. height: math.unit(132, "feet"),
  27501. weight: math.unit(500, "tonnes"),
  27502. name: "Front",
  27503. image: {
  27504. source: "./media/characters/kodran/front.svg",
  27505. extra: 667 / 643,
  27506. bottom: 42 / 709
  27507. }
  27508. },
  27509. flying: {
  27510. height: math.unit(350, "feet"),
  27511. weight: math.unit(500, "tonnes"),
  27512. name: "Flying",
  27513. image: {
  27514. source: "./media/characters/kodran/flying.svg"
  27515. }
  27516. },
  27517. foot: {
  27518. height: math.unit(33, "feet"),
  27519. name: "Foot",
  27520. image: {
  27521. source: "./media/characters/kodran/foot.svg"
  27522. }
  27523. },
  27524. footFront: {
  27525. height: math.unit(19, "feet"),
  27526. name: "Foot (Front)",
  27527. image: {
  27528. source: "./media/characters/kodran/foot-front.svg",
  27529. extra: 261 / 261,
  27530. bottom: 91 / 352
  27531. }
  27532. },
  27533. headFront: {
  27534. height: math.unit(53, "feet"),
  27535. name: "Head (Front)",
  27536. image: {
  27537. source: "./media/characters/kodran/head-front.svg"
  27538. }
  27539. },
  27540. headSide: {
  27541. height: math.unit(65, "feet"),
  27542. name: "Head (Side)",
  27543. image: {
  27544. source: "./media/characters/kodran/head-side.svg"
  27545. }
  27546. },
  27547. throat: {
  27548. height: math.unit(79, "feet"),
  27549. name: "Throat",
  27550. image: {
  27551. source: "./media/characters/kodran/throat.svg"
  27552. }
  27553. },
  27554. },
  27555. [
  27556. {
  27557. name: "Large",
  27558. height: math.unit(106, "feet"),
  27559. default: true
  27560. },
  27561. ]
  27562. ))
  27563. characterMakers.push(() => makeCharacter(
  27564. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27565. {
  27566. side: {
  27567. height: math.unit(11, "feet"),
  27568. weight: math.unit(150, "lb"),
  27569. name: "Side",
  27570. image: {
  27571. source: "./media/characters/pyxaron/side.svg",
  27572. extra: 305 / 195,
  27573. bottom: 17 / 322
  27574. }
  27575. },
  27576. },
  27577. [
  27578. {
  27579. name: "Normal",
  27580. height: math.unit(11, "feet"),
  27581. default: true
  27582. },
  27583. ]
  27584. ))
  27585. characterMakers.push(() => makeCharacter(
  27586. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27587. {
  27588. front: {
  27589. height: math.unit(6, "feet"),
  27590. weight: math.unit(150, "lb"),
  27591. name: "Front",
  27592. image: {
  27593. source: "./media/characters/meep/front.svg",
  27594. extra: 88 / 80,
  27595. bottom: 6 / 94
  27596. }
  27597. },
  27598. },
  27599. [
  27600. {
  27601. name: "Fun Sized",
  27602. height: math.unit(2, "inches"),
  27603. default: true
  27604. },
  27605. {
  27606. name: "Friend Sized",
  27607. height: math.unit(8, "inches")
  27608. },
  27609. ]
  27610. ))
  27611. characterMakers.push(() => makeCharacter(
  27612. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27613. {
  27614. front: {
  27615. height: math.unit(15, "feet"),
  27616. weight: math.unit(2500, "lb"),
  27617. name: "Front",
  27618. image: {
  27619. source: "./media/characters/holly-rabbit/front.svg",
  27620. extra: 1433 / 1233,
  27621. bottom: 125 / 1558
  27622. }
  27623. },
  27624. dick: {
  27625. height: math.unit(4.6, "feet"),
  27626. name: "Dick",
  27627. image: {
  27628. source: "./media/characters/holly-rabbit/dick.svg"
  27629. }
  27630. },
  27631. },
  27632. [
  27633. {
  27634. name: "Normal",
  27635. height: math.unit(15, "feet"),
  27636. default: true
  27637. },
  27638. {
  27639. name: "Macro",
  27640. height: math.unit(250, "feet")
  27641. },
  27642. {
  27643. name: "Macro+",
  27644. height: math.unit(2500, "feet")
  27645. },
  27646. ]
  27647. ))
  27648. characterMakers.push(() => makeCharacter(
  27649. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27650. {
  27651. front: {
  27652. height: math.unit(3.02, "meters"),
  27653. weight: math.unit(500, "kg"),
  27654. name: "Front",
  27655. image: {
  27656. source: "./media/characters/drena/front.svg",
  27657. extra: 282 / 243,
  27658. bottom: 8 / 290
  27659. }
  27660. },
  27661. side: {
  27662. height: math.unit(3.02, "meters"),
  27663. weight: math.unit(500, "kg"),
  27664. name: "Side",
  27665. image: {
  27666. source: "./media/characters/drena/side.svg",
  27667. extra: 280 / 245,
  27668. bottom: 10 / 290
  27669. }
  27670. },
  27671. back: {
  27672. height: math.unit(3.02, "meters"),
  27673. weight: math.unit(500, "kg"),
  27674. name: "Back",
  27675. image: {
  27676. source: "./media/characters/drena/back.svg",
  27677. extra: 278 / 243,
  27678. bottom: 2 / 280
  27679. }
  27680. },
  27681. foot: {
  27682. height: math.unit(0.75, "meters"),
  27683. name: "Foot",
  27684. image: {
  27685. source: "./media/characters/drena/foot.svg"
  27686. }
  27687. },
  27688. maw: {
  27689. height: math.unit(0.82, "meters"),
  27690. name: "Maw",
  27691. image: {
  27692. source: "./media/characters/drena/maw.svg"
  27693. }
  27694. },
  27695. rump: {
  27696. height: math.unit(0.93, "meters"),
  27697. name: "Rump",
  27698. image: {
  27699. source: "./media/characters/drena/rump.svg"
  27700. }
  27701. },
  27702. },
  27703. [
  27704. {
  27705. name: "Normal",
  27706. height: math.unit(3.02, "meters"),
  27707. default: true
  27708. },
  27709. ]
  27710. ))
  27711. characterMakers.push(() => makeCharacter(
  27712. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27713. {
  27714. front: {
  27715. height: math.unit(6 + 4 / 12, "feet"),
  27716. weight: math.unit(250, "lb"),
  27717. name: "Front",
  27718. image: {
  27719. source: "./media/characters/remmyzilla/front.svg",
  27720. extra: 4033 / 3588,
  27721. bottom: 123 / 4156
  27722. }
  27723. },
  27724. back: {
  27725. height: math.unit(6 + 4 / 12, "feet"),
  27726. weight: math.unit(250, "lb"),
  27727. name: "Back",
  27728. image: {
  27729. source: "./media/characters/remmyzilla/back.svg",
  27730. extra: 2687 / 2555,
  27731. bottom: 48 / 2735
  27732. }
  27733. },
  27734. frontFancy: {
  27735. height: math.unit(6 + 4 / 12, "feet"),
  27736. weight: math.unit(250, "lb"),
  27737. name: "Front (Fancy)",
  27738. image: {
  27739. source: "./media/characters/remmyzilla/front-fancy.svg",
  27740. extra: 4119 / 3419,
  27741. bottom: 237 / 4356
  27742. }
  27743. },
  27744. paw: {
  27745. height: math.unit(1.73, "feet"),
  27746. name: "Paw",
  27747. image: {
  27748. source: "./media/characters/remmyzilla/paw.svg"
  27749. }
  27750. },
  27751. maw: {
  27752. height: math.unit(1.73, "feet"),
  27753. name: "Maw",
  27754. image: {
  27755. source: "./media/characters/remmyzilla/maw.svg"
  27756. }
  27757. },
  27758. },
  27759. [
  27760. {
  27761. name: "Normal",
  27762. height: math.unit(6 + 4 / 12, "feet")
  27763. },
  27764. {
  27765. name: "Minimacro",
  27766. height: math.unit(12 + 8 / 12, "feet")
  27767. },
  27768. {
  27769. name: "Normal",
  27770. height: math.unit(640, "feet"),
  27771. default: true
  27772. },
  27773. {
  27774. name: "Megamacro",
  27775. height: math.unit(6400, "feet")
  27776. },
  27777. {
  27778. name: "Gigamacro",
  27779. height: math.unit(64000, "miles")
  27780. },
  27781. ]
  27782. ))
  27783. characterMakers.push(() => makeCharacter(
  27784. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  27785. {
  27786. front: {
  27787. height: math.unit(2.5, "meters"),
  27788. weight: math.unit(300, "lb"),
  27789. name: "Front",
  27790. image: {
  27791. source: "./media/characters/lawrence/front.svg",
  27792. extra: 357 / 335,
  27793. bottom: 30 / 387
  27794. }
  27795. },
  27796. back: {
  27797. height: math.unit(2.5, "meters"),
  27798. weight: math.unit(300, "lb"),
  27799. name: "Back",
  27800. image: {
  27801. source: "./media/characters/lawrence/back.svg",
  27802. extra: 357 / 338,
  27803. bottom: 16 / 373
  27804. }
  27805. },
  27806. head: {
  27807. height: math.unit(0.9, "meter"),
  27808. name: "Head",
  27809. image: {
  27810. source: "./media/characters/lawrence/head.svg"
  27811. }
  27812. },
  27813. maw: {
  27814. height: math.unit(0.7, "meter"),
  27815. name: "Maw",
  27816. image: {
  27817. source: "./media/characters/lawrence/maw.svg"
  27818. }
  27819. },
  27820. footBottom: {
  27821. height: math.unit(0.5, "meter"),
  27822. name: "Foot (Bottom)",
  27823. image: {
  27824. source: "./media/characters/lawrence/foot-bottom.svg"
  27825. }
  27826. },
  27827. footTop: {
  27828. height: math.unit(0.5, "meter"),
  27829. name: "Foot (Top)",
  27830. image: {
  27831. source: "./media/characters/lawrence/foot-top.svg"
  27832. }
  27833. },
  27834. },
  27835. [
  27836. {
  27837. name: "Normal",
  27838. height: math.unit(2.5, "meters"),
  27839. default: true
  27840. },
  27841. {
  27842. name: "Macro",
  27843. height: math.unit(95, "meters")
  27844. },
  27845. {
  27846. name: "Megamacro",
  27847. height: math.unit(150, "km")
  27848. },
  27849. ]
  27850. ))
  27851. characterMakers.push(() => makeCharacter(
  27852. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  27853. {
  27854. front: {
  27855. height: math.unit(4.2, "meters"),
  27856. name: "Front",
  27857. image: {
  27858. source: "./media/characters/sydney/front.svg",
  27859. extra: 1323 / 1277,
  27860. bottom: 111 / 1434
  27861. }
  27862. },
  27863. },
  27864. [
  27865. {
  27866. name: "Normal",
  27867. height: math.unit(4.2, "meters"),
  27868. default: true
  27869. },
  27870. ]
  27871. ))
  27872. characterMakers.push(() => makeCharacter(
  27873. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  27874. {
  27875. back: {
  27876. height: math.unit(201, "feet"),
  27877. name: "Back",
  27878. image: {
  27879. source: "./media/characters/jessica/back.svg",
  27880. extra: 273 / 259,
  27881. bottom: 7 / 280
  27882. }
  27883. },
  27884. },
  27885. [
  27886. {
  27887. name: "Normal",
  27888. height: math.unit(201, "feet"),
  27889. default: true
  27890. },
  27891. {
  27892. name: "Megamacro",
  27893. height: math.unit(8, "miles")
  27894. },
  27895. ]
  27896. ))
  27897. characterMakers.push(() => makeCharacter(
  27898. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  27899. {
  27900. side: {
  27901. height: math.unit(320, "cm"),
  27902. name: "Side",
  27903. image: {
  27904. source: "./media/characters/victoria/side.svg",
  27905. extra: 778 / 346,
  27906. bottom: 56 / 834
  27907. }
  27908. },
  27909. maw: {
  27910. height: math.unit(5.9, "feet"),
  27911. name: "Maw",
  27912. image: {
  27913. source: "./media/characters/victoria/maw.svg"
  27914. }
  27915. },
  27916. },
  27917. [
  27918. {
  27919. name: "Normal",
  27920. height: math.unit(320, "cm"),
  27921. default: true
  27922. },
  27923. ]
  27924. ))
  27925. characterMakers.push(() => makeCharacter(
  27926. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  27927. {
  27928. front: {
  27929. height: math.unit(5 + 6 / 12, "feet"),
  27930. name: "Front",
  27931. image: {
  27932. source: "./media/characters/cat/front.svg",
  27933. extra: 1374 / 1257,
  27934. bottom: 59 / 1433
  27935. }
  27936. },
  27937. back: {
  27938. height: math.unit(5 + 6 / 12, "feet"),
  27939. name: "Back",
  27940. image: {
  27941. source: "./media/characters/cat/back.svg",
  27942. extra: 1337 / 1226,
  27943. bottom: 34 / 1371
  27944. }
  27945. },
  27946. taur: {
  27947. height: math.unit(7, "feet"),
  27948. name: "Taur",
  27949. image: {
  27950. source: "./media/characters/cat/taur.svg",
  27951. extra: 1345 / 1231,
  27952. bottom: 66 / 1411
  27953. }
  27954. },
  27955. lucario: {
  27956. height: math.unit(4, "feet"),
  27957. name: "Lucario",
  27958. image: {
  27959. source: "./media/characters/cat/lucario.svg",
  27960. extra: 1470 / 1318,
  27961. bottom: 65 / 1535
  27962. }
  27963. },
  27964. megaLucario: {
  27965. height: math.unit(4, "feet"),
  27966. name: "Mega Lucario",
  27967. image: {
  27968. source: "./media/characters/cat/mega-lucario.svg",
  27969. extra: 1515 / 1319,
  27970. bottom: 63 / 1578
  27971. }
  27972. },
  27973. nickit: {
  27974. height: math.unit(2, "feet"),
  27975. name: "Nickit",
  27976. image: {
  27977. source: "./media/characters/cat/nickit.svg",
  27978. extra: 1980 / 1585,
  27979. bottom: 102 / 2082
  27980. }
  27981. },
  27982. lopunnyFront: {
  27983. height: math.unit(5, "feet"),
  27984. name: "Lopunny (Front)",
  27985. image: {
  27986. source: "./media/characters/cat/lopunny-front.svg",
  27987. extra: 1782 / 1469,
  27988. bottom: 38 / 1820
  27989. }
  27990. },
  27991. lopunnyBack: {
  27992. height: math.unit(5, "feet"),
  27993. name: "Lopunny (Back)",
  27994. image: {
  27995. source: "./media/characters/cat/lopunny-back.svg",
  27996. extra: 1660 / 1490,
  27997. bottom: 25 / 1685
  27998. }
  27999. },
  28000. },
  28001. [
  28002. {
  28003. name: "Really small",
  28004. height: math.unit(1, "nm")
  28005. },
  28006. {
  28007. name: "Micro",
  28008. height: math.unit(5, "inches")
  28009. },
  28010. {
  28011. name: "Normal",
  28012. height: math.unit(5 + 6 / 12, "feet"),
  28013. default: true
  28014. },
  28015. {
  28016. name: "Macro",
  28017. height: math.unit(50, "feet")
  28018. },
  28019. {
  28020. name: "Macro+",
  28021. height: math.unit(150, "feet")
  28022. },
  28023. {
  28024. name: "Megamacro",
  28025. height: math.unit(100, "miles")
  28026. },
  28027. ]
  28028. ))
  28029. characterMakers.push(() => makeCharacter(
  28030. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28031. {
  28032. front: {
  28033. height: math.unit(63.4, "meters"),
  28034. weight: math.unit(3.28349e+6, "kilograms"),
  28035. name: "Front",
  28036. image: {
  28037. source: "./media/characters/kirina-violet/front.svg",
  28038. extra: 2812 / 2725,
  28039. bottom: 0 / 2812
  28040. }
  28041. },
  28042. back: {
  28043. height: math.unit(63.4, "meters"),
  28044. weight: math.unit(3.28349e+6, "kilograms"),
  28045. name: "Back",
  28046. image: {
  28047. source: "./media/characters/kirina-violet/back.svg",
  28048. extra: 2812 / 2725,
  28049. bottom: 0 / 2812
  28050. }
  28051. },
  28052. mouth: {
  28053. height: math.unit(4.35, "meters"),
  28054. name: "Mouth",
  28055. image: {
  28056. source: "./media/characters/kirina-violet/mouth.svg"
  28057. }
  28058. },
  28059. paw: {
  28060. height: math.unit(5.6, "meters"),
  28061. name: "Paw",
  28062. image: {
  28063. source: "./media/characters/kirina-violet/paw.svg"
  28064. }
  28065. },
  28066. tail: {
  28067. height: math.unit(18, "meters"),
  28068. name: "Tail",
  28069. image: {
  28070. source: "./media/characters/kirina-violet/tail.svg"
  28071. }
  28072. },
  28073. },
  28074. [
  28075. {
  28076. name: "Macro",
  28077. height: math.unit(63.4, "meters"),
  28078. default: true
  28079. },
  28080. ]
  28081. ))
  28082. characterMakers.push(() => makeCharacter(
  28083. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28084. {
  28085. front: {
  28086. height: math.unit(60, "feet"),
  28087. name: "Front",
  28088. image: {
  28089. source: "./media/characters/cat-gigachu/front.svg",
  28090. extra: 1024 / 780,
  28091. bottom: 23 / 1047
  28092. }
  28093. },
  28094. back: {
  28095. height: math.unit(60, "feet"),
  28096. name: "Back",
  28097. image: {
  28098. source: "./media/characters/cat-gigachu/back.svg",
  28099. extra: 1024 / 780,
  28100. bottom: 23 / 1047
  28101. }
  28102. },
  28103. },
  28104. [
  28105. {
  28106. name: "Dynamax",
  28107. height: math.unit(60, "feet"),
  28108. default: true
  28109. },
  28110. ]
  28111. ))
  28112. characterMakers.push(() => makeCharacter(
  28113. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28114. {
  28115. front: {
  28116. height: math.unit(6, "feet"),
  28117. weight: math.unit(150, "lb"),
  28118. name: "Front",
  28119. image: {
  28120. source: "./media/characters/sfaiyan/front.svg",
  28121. extra: 999 / 978,
  28122. bottom: 5 / 1004
  28123. }
  28124. },
  28125. },
  28126. [
  28127. {
  28128. name: "Normal",
  28129. height: math.unit(1.82, "meters")
  28130. },
  28131. {
  28132. name: "Giant",
  28133. height: math.unit(2.27, "km"),
  28134. default: true
  28135. },
  28136. ]
  28137. ))
  28138. characterMakers.push(() => makeCharacter(
  28139. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28140. {
  28141. front: {
  28142. height: math.unit(179, "cm"),
  28143. weight: math.unit(100, "kg"),
  28144. name: "Front",
  28145. image: {
  28146. source: "./media/characters/raunehkeli/front.svg",
  28147. extra: 1934 / 1926,
  28148. bottom: 0 / 1934
  28149. }
  28150. },
  28151. },
  28152. [
  28153. {
  28154. name: "Normal",
  28155. height: math.unit(179, "cm")
  28156. },
  28157. {
  28158. name: "Maximum",
  28159. height: math.unit(575, "meters"),
  28160. default: true
  28161. },
  28162. ]
  28163. ))
  28164. characterMakers.push(() => makeCharacter(
  28165. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28166. {
  28167. front: {
  28168. height: math.unit(6, "feet"),
  28169. weight: math.unit(150, "lb"),
  28170. name: "Front",
  28171. image: {
  28172. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28173. extra: 2625 / 2518,
  28174. bottom: 60 / 2685
  28175. }
  28176. },
  28177. },
  28178. [
  28179. {
  28180. name: "Normal",
  28181. height: math.unit(6 + 2 / 12, "feet"),
  28182. default: true
  28183. },
  28184. {
  28185. name: "Macro",
  28186. height: math.unit(1180, "feet")
  28187. },
  28188. ]
  28189. ))
  28190. characterMakers.push(() => makeCharacter(
  28191. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28192. {
  28193. front: {
  28194. height: math.unit(5 + 6 / 12, "feet"),
  28195. weight: math.unit(108, "lb"),
  28196. name: "Front",
  28197. image: {
  28198. source: "./media/characters/lilith-zott/front.svg",
  28199. extra: 2510 / 2238,
  28200. bottom: 100 / 2610
  28201. }
  28202. },
  28203. frontDressed: {
  28204. height: math.unit(5 + 6 / 12, "feet"),
  28205. weight: math.unit(108, "lb"),
  28206. name: "Front (Dressed)",
  28207. image: {
  28208. source: "./media/characters/lilith-zott/front-dressed.svg",
  28209. extra: 2510 / 2238,
  28210. bottom: 100 / 2610
  28211. }
  28212. },
  28213. },
  28214. [
  28215. {
  28216. name: "Normal",
  28217. height: math.unit(5 + 6 / 12, "feet")
  28218. },
  28219. {
  28220. name: "Macro",
  28221. height: math.unit(200, "feet"),
  28222. default: true
  28223. },
  28224. {
  28225. name: "Macro+",
  28226. height: math.unit(1030, "feet")
  28227. },
  28228. ]
  28229. ))
  28230. characterMakers.push(() => makeCharacter(
  28231. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28232. {
  28233. front: {
  28234. height: math.unit(6, "feet"),
  28235. weight: math.unit(150, "lb"),
  28236. name: "Front",
  28237. image: {
  28238. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28239. extra: 2567 / 2435,
  28240. bottom: 39 / 2606
  28241. }
  28242. },
  28243. frontSuper: {
  28244. height: math.unit(6, "feet"),
  28245. name: "Front (Super)",
  28246. image: {
  28247. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28248. extra: 2567 / 2435,
  28249. bottom: 39 / 2606
  28250. }
  28251. },
  28252. },
  28253. [
  28254. {
  28255. name: "Normal",
  28256. height: math.unit(5 + 10 / 12, "feet")
  28257. },
  28258. {
  28259. name: "Macro",
  28260. height: math.unit(220, "feet"),
  28261. default: true
  28262. },
  28263. {
  28264. name: "Macro+",
  28265. height: math.unit(1100, "feet")
  28266. },
  28267. ]
  28268. ))
  28269. characterMakers.push(() => makeCharacter(
  28270. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28271. {
  28272. front: {
  28273. height: math.unit(100, "miles"),
  28274. name: "Front",
  28275. image: {
  28276. source: "./media/characters/sona/front.svg",
  28277. extra: 2433 / 2201,
  28278. bottom: 53 / 2486
  28279. }
  28280. },
  28281. foot: {
  28282. height: math.unit(16.1, "miles"),
  28283. name: "Foot",
  28284. image: {
  28285. source: "./media/characters/sona/foot.svg"
  28286. }
  28287. },
  28288. },
  28289. [
  28290. {
  28291. name: "Macro",
  28292. height: math.unit(100, "miles"),
  28293. default: true
  28294. },
  28295. ]
  28296. ))
  28297. characterMakers.push(() => makeCharacter(
  28298. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28299. {
  28300. front: {
  28301. height: math.unit(6, "feet"),
  28302. weight: math.unit(150, "lb"),
  28303. name: "Front",
  28304. image: {
  28305. source: "./media/characters/bailey/front.svg",
  28306. extra: 1778 / 1724,
  28307. bottom: 30 / 1808
  28308. }
  28309. },
  28310. },
  28311. [
  28312. {
  28313. name: "Micro",
  28314. height: math.unit(4, "inches")
  28315. },
  28316. {
  28317. name: "Normal",
  28318. height: math.unit(5 + 5 / 12, "feet"),
  28319. default: true
  28320. },
  28321. {
  28322. name: "Macro",
  28323. height: math.unit(250, "feet")
  28324. },
  28325. {
  28326. name: "Megamacro",
  28327. height: math.unit(100, "miles")
  28328. },
  28329. ]
  28330. ))
  28331. characterMakers.push(() => makeCharacter(
  28332. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28333. {
  28334. front: {
  28335. height: math.unit(5 + 2 / 12, "feet"),
  28336. weight: math.unit(120, "lb"),
  28337. name: "Front",
  28338. image: {
  28339. source: "./media/characters/snaps/front.svg",
  28340. extra: 2370 / 2177,
  28341. bottom: 48 / 2418
  28342. }
  28343. },
  28344. back: {
  28345. height: math.unit(5 + 2 / 12, "feet"),
  28346. weight: math.unit(120, "lb"),
  28347. name: "Back",
  28348. image: {
  28349. source: "./media/characters/snaps/back.svg",
  28350. extra: 2408 / 2258,
  28351. bottom: 15 / 2423
  28352. }
  28353. },
  28354. },
  28355. [
  28356. {
  28357. name: "Micro",
  28358. height: math.unit(9, "inches")
  28359. },
  28360. {
  28361. name: "Normal",
  28362. height: math.unit(5 + 2 / 12, "feet"),
  28363. default: true
  28364. },
  28365. {
  28366. name: "Mini Macro",
  28367. height: math.unit(10, "feet")
  28368. },
  28369. ]
  28370. ))
  28371. characterMakers.push(() => makeCharacter(
  28372. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28373. {
  28374. front: {
  28375. height: math.unit(1.8, "meters"),
  28376. weight: math.unit(85, "kg"),
  28377. name: "Front",
  28378. image: {
  28379. source: "./media/characters/azteck/front.svg",
  28380. extra: 2815 / 2625,
  28381. bottom: 89 / 2904
  28382. }
  28383. },
  28384. back: {
  28385. height: math.unit(1.8, "meters"),
  28386. weight: math.unit(85, "kg"),
  28387. name: "Back",
  28388. image: {
  28389. source: "./media/characters/azteck/back.svg",
  28390. extra: 2856 / 2648,
  28391. bottom: 85 / 2941
  28392. }
  28393. },
  28394. frontDressed: {
  28395. height: math.unit(1.8, "meters"),
  28396. weight: math.unit(85, "kg"),
  28397. name: "Front (Dressed)",
  28398. image: {
  28399. source: "./media/characters/azteck/front-dressed.svg",
  28400. extra: 2147 / 2003,
  28401. bottom: 68 / 2215
  28402. }
  28403. },
  28404. head: {
  28405. height: math.unit(0.47, "meters"),
  28406. weight: math.unit(85, "kg"),
  28407. name: "Head",
  28408. image: {
  28409. source: "./media/characters/azteck/head.svg"
  28410. }
  28411. },
  28412. },
  28413. [
  28414. {
  28415. name: "Bite sized",
  28416. height: math.unit(16, "cm")
  28417. },
  28418. {
  28419. name: "Normal",
  28420. height: math.unit(1.8, "meters"),
  28421. default: true
  28422. },
  28423. ]
  28424. ))
  28425. characterMakers.push(() => makeCharacter(
  28426. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28427. {
  28428. front: {
  28429. height: math.unit(6, "feet"),
  28430. weight: math.unit(150, "lb"),
  28431. name: "Front",
  28432. image: {
  28433. source: "./media/characters/pidge/front.svg",
  28434. extra: 620 / 588,
  28435. bottom: 9 / 629
  28436. }
  28437. },
  28438. back: {
  28439. height: math.unit(6, "feet"),
  28440. weight: math.unit(150, "lb"),
  28441. name: "Back",
  28442. image: {
  28443. source: "./media/characters/pidge/back.svg",
  28444. extra: 620 / 588,
  28445. bottom: 9 / 629
  28446. }
  28447. },
  28448. },
  28449. [
  28450. {
  28451. name: "Macro",
  28452. height: math.unit(1, "mile"),
  28453. default: true
  28454. },
  28455. ]
  28456. ))
  28457. characterMakers.push(() => makeCharacter(
  28458. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28459. {
  28460. front: {
  28461. height: math.unit(6, "feet"),
  28462. weight: math.unit(150, "lb"),
  28463. name: "Front",
  28464. image: {
  28465. source: "./media/characters/en/front.svg",
  28466. extra: 1697 / 1563,
  28467. bottom: 103 / 1800
  28468. }
  28469. },
  28470. back: {
  28471. height: math.unit(6, "feet"),
  28472. weight: math.unit(150, "lb"),
  28473. name: "Back",
  28474. image: {
  28475. source: "./media/characters/en/back.svg",
  28476. extra: 1700 / 1570,
  28477. bottom: 51 / 1751
  28478. }
  28479. },
  28480. frontDressed: {
  28481. height: math.unit(6, "feet"),
  28482. weight: math.unit(150, "lb"),
  28483. name: "Front (Dressed)",
  28484. image: {
  28485. source: "./media/characters/en/front-dressed.svg",
  28486. extra: 1697 / 1563,
  28487. bottom: 103 / 1800
  28488. }
  28489. },
  28490. backDressed: {
  28491. height: math.unit(6, "feet"),
  28492. weight: math.unit(150, "lb"),
  28493. name: "Back (Dressed)",
  28494. image: {
  28495. source: "./media/characters/en/back-dressed.svg",
  28496. extra: 1700 / 1570,
  28497. bottom: 51 / 1751
  28498. }
  28499. },
  28500. },
  28501. [
  28502. {
  28503. name: "Macro",
  28504. height: math.unit(210, "feet"),
  28505. default: true
  28506. },
  28507. ]
  28508. ))
  28509. characterMakers.push(() => makeCharacter(
  28510. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28511. {
  28512. front: {
  28513. height: math.unit(6, "feet"),
  28514. weight: math.unit(150, "lb"),
  28515. name: "Front",
  28516. image: {
  28517. source: "./media/characters/haze-orris/front.svg",
  28518. extra: 3975 / 3525,
  28519. bottom: 137 / 4112
  28520. }
  28521. },
  28522. },
  28523. [
  28524. {
  28525. name: "Micro",
  28526. height: math.unit(150, "mm"),
  28527. default: true
  28528. },
  28529. ]
  28530. ))
  28531. characterMakers.push(() => makeCharacter(
  28532. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28533. {
  28534. front: {
  28535. height: math.unit(6, "feet"),
  28536. weight: math.unit(150, "lb"),
  28537. name: "Front",
  28538. image: {
  28539. source: "./media/characters/casselene-yaro/front.svg",
  28540. extra: 4721 / 4541,
  28541. bottom: 82 / 4803
  28542. }
  28543. },
  28544. back: {
  28545. height: math.unit(6, "feet"),
  28546. weight: math.unit(150, "lb"),
  28547. name: "Back",
  28548. image: {
  28549. source: "./media/characters/casselene-yaro/back.svg",
  28550. extra: 4569 / 4377,
  28551. bottom: 69 / 4638
  28552. }
  28553. },
  28554. frontDressed: {
  28555. height: math.unit(6, "feet"),
  28556. weight: math.unit(150, "lb"),
  28557. name: "Front-dressed",
  28558. image: {
  28559. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28560. extra: 4721 / 4541,
  28561. bottom: 82 / 4803
  28562. }
  28563. },
  28564. },
  28565. [
  28566. {
  28567. name: "Macro",
  28568. height: math.unit(190, "feet"),
  28569. default: true
  28570. },
  28571. ]
  28572. ))
  28573. characterMakers.push(() => makeCharacter(
  28574. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28575. {
  28576. front: {
  28577. height: math.unit(6, "feet"),
  28578. weight: math.unit(150, "lb"),
  28579. name: "Front",
  28580. image: {
  28581. source: "./media/characters/myra-rue-delore/front.svg",
  28582. extra: 1340 / 1308,
  28583. bottom: 67 / 1407
  28584. }
  28585. },
  28586. back: {
  28587. height: math.unit(6, "feet"),
  28588. weight: math.unit(150, "lb"),
  28589. name: "Back",
  28590. image: {
  28591. source: "./media/characters/myra-rue-delore/back.svg",
  28592. extra: 1341 / 1310,
  28593. bottom: 40 / 1381
  28594. }
  28595. },
  28596. frontDressed: {
  28597. height: math.unit(6, "feet"),
  28598. weight: math.unit(150, "lb"),
  28599. name: "Front (Dressed)",
  28600. image: {
  28601. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28602. extra: 1340 / 1308,
  28603. bottom: 67 / 1407
  28604. }
  28605. },
  28606. },
  28607. [
  28608. {
  28609. name: "Macro",
  28610. height: math.unit(150, "feet"),
  28611. default: true
  28612. },
  28613. ]
  28614. ))
  28615. characterMakers.push(() => makeCharacter(
  28616. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28617. {
  28618. front: {
  28619. height: math.unit(10, "feet"),
  28620. weight: math.unit(15015, "lb"),
  28621. name: "Front",
  28622. image: {
  28623. source: "./media/characters/fem!plat/front.svg",
  28624. extra: 2799 / 2604,
  28625. bottom: 149 / 2948
  28626. }
  28627. },
  28628. },
  28629. [
  28630. {
  28631. name: "Normal",
  28632. height: math.unit(10, "feet"),
  28633. default: true
  28634. },
  28635. {
  28636. name: "Macro",
  28637. height: math.unit(100, "feet")
  28638. },
  28639. {
  28640. name: "Megamacro",
  28641. height: math.unit(1000, "feet")
  28642. },
  28643. ]
  28644. ))
  28645. characterMakers.push(() => makeCharacter(
  28646. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28647. {
  28648. front: {
  28649. height: math.unit(15 + 5 / 12, "feet"),
  28650. weight: math.unit(4600, "lb"),
  28651. name: "Front",
  28652. image: {
  28653. source: "./media/characters/neapolitan-ananassa/front.svg",
  28654. extra: 2903 / 2736,
  28655. bottom: 0 / 2903
  28656. }
  28657. },
  28658. side: {
  28659. height: math.unit(15 + 5 / 12, "feet"),
  28660. weight: math.unit(4600, "lb"),
  28661. name: "Side",
  28662. image: {
  28663. source: "./media/characters/neapolitan-ananassa/side.svg",
  28664. extra: 2925 / 2719,
  28665. bottom: 0 / 2925
  28666. }
  28667. },
  28668. back: {
  28669. height: math.unit(15 + 5 / 12, "feet"),
  28670. weight: math.unit(4600, "lb"),
  28671. name: "Back",
  28672. image: {
  28673. source: "./media/characters/neapolitan-ananassa/back.svg",
  28674. extra: 2903 / 2736,
  28675. bottom: 0 / 2903
  28676. }
  28677. },
  28678. },
  28679. [
  28680. {
  28681. name: "Normal",
  28682. height: math.unit(15 + 5 / 12, "feet"),
  28683. default: true
  28684. },
  28685. {
  28686. name: "Post-Millenium",
  28687. height: math.unit(35 + 5 / 12, "feet")
  28688. },
  28689. {
  28690. name: "Post-Era",
  28691. height: math.unit(450 + 5 / 12, "feet")
  28692. },
  28693. ]
  28694. ))
  28695. characterMakers.push(() => makeCharacter(
  28696. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28697. {
  28698. front: {
  28699. height: math.unit(300, "meters"),
  28700. weight: math.unit(125000, "tonnes"),
  28701. name: "Front",
  28702. image: {
  28703. source: "./media/characters/pazuzu/front.svg",
  28704. extra: 877 / 794,
  28705. bottom: 47 / 924
  28706. }
  28707. },
  28708. },
  28709. [
  28710. {
  28711. name: "Macro",
  28712. height: math.unit(300, "meters"),
  28713. default: true
  28714. },
  28715. ]
  28716. ))
  28717. characterMakers.push(() => makeCharacter(
  28718. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28719. {
  28720. side: {
  28721. height: math.unit(10 + 7 / 12, "feet"),
  28722. weight: math.unit(2.5, "tons"),
  28723. name: "Side",
  28724. image: {
  28725. source: "./media/characters/aasha/side.svg",
  28726. extra: 1345 / 1245,
  28727. bottom: 111 / 1456
  28728. }
  28729. },
  28730. back: {
  28731. height: math.unit(10 + 7 / 12, "feet"),
  28732. weight: math.unit(2.5, "tons"),
  28733. name: "Back",
  28734. image: {
  28735. source: "./media/characters/aasha/back.svg",
  28736. extra: 1133 / 1057,
  28737. bottom: 257 / 1390
  28738. }
  28739. },
  28740. },
  28741. [
  28742. {
  28743. name: "Normal",
  28744. height: math.unit(10 + 7 / 12, "feet"),
  28745. default: true
  28746. },
  28747. ]
  28748. ))
  28749. characterMakers.push(() => makeCharacter(
  28750. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  28751. {
  28752. front: {
  28753. height: math.unit(6 + 3 / 12, "feet"),
  28754. name: "Front",
  28755. image: {
  28756. source: "./media/characters/nevan/front.svg",
  28757. extra: 704 / 704,
  28758. bottom: 28 / 732
  28759. }
  28760. },
  28761. back: {
  28762. height: math.unit(6 + 3 / 12, "feet"),
  28763. name: "Back",
  28764. image: {
  28765. source: "./media/characters/nevan/back.svg",
  28766. extra: 714 / 714,
  28767. bottom: 21 / 735
  28768. }
  28769. },
  28770. frontFlaccid: {
  28771. height: math.unit(6 + 3 / 12, "feet"),
  28772. name: "Front (Flaccid)",
  28773. image: {
  28774. source: "./media/characters/nevan/front-flaccid.svg",
  28775. extra: 704 / 704,
  28776. bottom: 28 / 732
  28777. }
  28778. },
  28779. frontErect: {
  28780. height: math.unit(6 + 3 / 12, "feet"),
  28781. name: "Front (Erect)",
  28782. image: {
  28783. source: "./media/characters/nevan/front-erect.svg",
  28784. extra: 704 / 704,
  28785. bottom: 28 / 732
  28786. }
  28787. },
  28788. backFlaccid: {
  28789. height: math.unit(6 + 3 / 12, "feet"),
  28790. name: "Back (Flaccid)",
  28791. image: {
  28792. source: "./media/characters/nevan/back-flaccid.svg",
  28793. extra: 714 / 714,
  28794. bottom: 21 / 735
  28795. }
  28796. },
  28797. },
  28798. [
  28799. {
  28800. name: "Normal",
  28801. height: math.unit(6 + 3 / 12, "feet"),
  28802. default: true
  28803. },
  28804. ]
  28805. ))
  28806. characterMakers.push(() => makeCharacter(
  28807. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  28808. {
  28809. front: {
  28810. height: math.unit(4, "feet"),
  28811. name: "Front",
  28812. image: {
  28813. source: "./media/characters/arhan/front.svg",
  28814. extra: 3368 / 3133,
  28815. bottom: 0 / 3368
  28816. }
  28817. },
  28818. side: {
  28819. height: math.unit(4, "feet"),
  28820. name: "Side",
  28821. image: {
  28822. source: "./media/characters/arhan/side.svg",
  28823. extra: 3347 / 3105,
  28824. bottom: 0 / 3347
  28825. }
  28826. },
  28827. tongue: {
  28828. height: math.unit(1.42, "feet"),
  28829. name: "Tongue",
  28830. image: {
  28831. source: "./media/characters/arhan/tongue.svg"
  28832. }
  28833. },
  28834. head: {
  28835. height: math.unit(0.85, "feet"),
  28836. name: "Head",
  28837. image: {
  28838. source: "./media/characters/arhan/head.svg"
  28839. }
  28840. },
  28841. },
  28842. [
  28843. {
  28844. name: "Normal",
  28845. height: math.unit(4, "feet"),
  28846. default: true
  28847. },
  28848. ]
  28849. ))
  28850. characterMakers.push(() => makeCharacter(
  28851. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  28852. {
  28853. front: {
  28854. height: math.unit(5 + 7.5 / 12, "feet"),
  28855. weight: math.unit(120, "lb"),
  28856. name: "Front",
  28857. image: {
  28858. source: "./media/characters/digi-duncan/front.svg",
  28859. extra: 330 / 326,
  28860. bottom: 16 / 346
  28861. }
  28862. },
  28863. side: {
  28864. height: math.unit(5 + 7.5 / 12, "feet"),
  28865. weight: math.unit(120, "lb"),
  28866. name: "Side",
  28867. image: {
  28868. source: "./media/characters/digi-duncan/side.svg",
  28869. extra: 341 / 337,
  28870. bottom: 1 / 342
  28871. }
  28872. },
  28873. back: {
  28874. height: math.unit(5 + 7.5 / 12, "feet"),
  28875. weight: math.unit(120, "lb"),
  28876. name: "Back",
  28877. image: {
  28878. source: "./media/characters/digi-duncan/back.svg",
  28879. extra: 330 / 326,
  28880. bottom: 12 / 342
  28881. }
  28882. },
  28883. },
  28884. [
  28885. {
  28886. name: "Speck",
  28887. height: math.unit(0.25, "mm")
  28888. },
  28889. {
  28890. name: "Micro",
  28891. height: math.unit(5, "mm")
  28892. },
  28893. {
  28894. name: "Tiny",
  28895. height: math.unit(0.5, "inches"),
  28896. default: true
  28897. },
  28898. {
  28899. name: "Human",
  28900. height: math.unit(5 + 7.5 / 12, "feet")
  28901. },
  28902. {
  28903. name: "Minigiant",
  28904. height: math.unit(8 + 5.25, "feet")
  28905. },
  28906. {
  28907. name: "Giant",
  28908. height: math.unit(2000, "feet")
  28909. },
  28910. {
  28911. name: "Mega",
  28912. height: math.unit(371.1, "miles")
  28913. },
  28914. ]
  28915. ))
  28916. characterMakers.push(() => makeCharacter(
  28917. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  28918. {
  28919. front: {
  28920. height: math.unit(2, "meters"),
  28921. weight: math.unit(350, "kg"),
  28922. name: "Front",
  28923. image: {
  28924. source: "./media/characters/jagaz-soulbreaker/front.svg",
  28925. extra: 898 / 838,
  28926. bottom: 9 / 907
  28927. }
  28928. },
  28929. },
  28930. [
  28931. {
  28932. name: "Micro",
  28933. height: math.unit(8, "meters")
  28934. },
  28935. {
  28936. name: "Normal",
  28937. height: math.unit(50, "meters"),
  28938. default: true
  28939. },
  28940. {
  28941. name: "Macro",
  28942. height: math.unit(500, "meters")
  28943. },
  28944. ]
  28945. ))
  28946. characterMakers.push(() => makeCharacter(
  28947. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  28948. {
  28949. front: {
  28950. height: math.unit(6 + 6 / 12, "feet"),
  28951. name: "Front",
  28952. image: {
  28953. source: "./media/characters/khardesh/front.svg",
  28954. extra: 888 / 797,
  28955. bottom: 25 / 913
  28956. }
  28957. },
  28958. },
  28959. [
  28960. {
  28961. name: "Normal",
  28962. height: math.unit(6 + 6 / 12, "feet"),
  28963. default: true
  28964. },
  28965. {
  28966. name: "Normal+",
  28967. height: math.unit(4, "meters")
  28968. },
  28969. {
  28970. name: "Macro",
  28971. height: math.unit(50, "meters")
  28972. },
  28973. {
  28974. name: "Macro+",
  28975. height: math.unit(100, "meters")
  28976. },
  28977. {
  28978. name: "Megamacro",
  28979. height: math.unit(20, "km")
  28980. },
  28981. ]
  28982. ))
  28983. characterMakers.push(() => makeCharacter(
  28984. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  28985. {
  28986. front: {
  28987. height: math.unit(6, "feet"),
  28988. weight: math.unit(150, "lb"),
  28989. name: "Front",
  28990. image: {
  28991. source: "./media/characters/kosho/front.svg",
  28992. extra: 1847 / 1847,
  28993. bottom: 86 / 1933
  28994. }
  28995. },
  28996. },
  28997. [
  28998. {
  28999. name: "Second-stage micro",
  29000. height: math.unit(0.5, "inches")
  29001. },
  29002. {
  29003. name: "First-stage micro",
  29004. height: math.unit(6, "inches")
  29005. },
  29006. {
  29007. name: "Normal",
  29008. height: math.unit(6, "feet"),
  29009. default: true
  29010. },
  29011. {
  29012. name: "First-stage macro",
  29013. height: math.unit(72, "feet")
  29014. },
  29015. {
  29016. name: "Second-stage macro",
  29017. height: math.unit(864, "feet")
  29018. },
  29019. ]
  29020. ))
  29021. characterMakers.push(() => makeCharacter(
  29022. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29023. {
  29024. normal: {
  29025. height: math.unit(4 + 6 / 12, "feet"),
  29026. name: "Normal",
  29027. image: {
  29028. source: "./media/characters/hydra/normal.svg",
  29029. extra: 2833 / 2634,
  29030. bottom: 68 / 2901
  29031. }
  29032. },
  29033. smol: {
  29034. height: math.unit(0.705, "inches"),
  29035. name: "Smol",
  29036. image: {
  29037. source: "./media/characters/hydra/smol.svg",
  29038. extra: 2715 / 2540,
  29039. bottom: 0 / 2715
  29040. }
  29041. },
  29042. },
  29043. [
  29044. {
  29045. name: "Normal",
  29046. height: math.unit(4 + 6 / 12, "feet"),
  29047. default: true
  29048. }
  29049. ]
  29050. ))
  29051. characterMakers.push(() => makeCharacter(
  29052. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29053. {
  29054. front: {
  29055. height: math.unit(0.6, "cm"),
  29056. name: "Front",
  29057. image: {
  29058. source: "./media/characters/daz/front.svg",
  29059. extra: 1682 / 1164,
  29060. bottom: 42 / 1724
  29061. }
  29062. },
  29063. },
  29064. [
  29065. {
  29066. name: "Normal",
  29067. height: math.unit(0.6, "cm"),
  29068. default: true
  29069. },
  29070. ]
  29071. ))
  29072. characterMakers.push(() => makeCharacter(
  29073. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29074. {
  29075. front: {
  29076. height: math.unit(6, "feet"),
  29077. weight: math.unit(235, "lb"),
  29078. name: "Front",
  29079. image: {
  29080. source: "./media/characters/theo-pangolin/front.svg",
  29081. extra: 1996 / 1969,
  29082. bottom: 115 / 2111
  29083. }
  29084. },
  29085. back: {
  29086. height: math.unit(6, "feet"),
  29087. weight: math.unit(235, "lb"),
  29088. name: "Back",
  29089. image: {
  29090. source: "./media/characters/theo-pangolin/back.svg",
  29091. extra: 1979 / 1979,
  29092. bottom: 40 / 2019
  29093. }
  29094. },
  29095. feral: {
  29096. height: math.unit(2, "feet"),
  29097. weight: math.unit(30, "lb"),
  29098. name: "Feral",
  29099. image: {
  29100. source: "./media/characters/theo-pangolin/feral.svg",
  29101. extra: 803 / 791,
  29102. bottom: 181 / 984
  29103. }
  29104. },
  29105. footFive: {
  29106. height: math.unit(1.43, "feet"),
  29107. name: "Foot (Five Toes)",
  29108. image: {
  29109. source: "./media/characters/theo-pangolin/foot-five.svg"
  29110. }
  29111. },
  29112. footFour: {
  29113. height: math.unit(1.43, "feet"),
  29114. name: "Foot (Four Toes)",
  29115. image: {
  29116. source: "./media/characters/theo-pangolin/foot-four.svg"
  29117. }
  29118. },
  29119. handFour: {
  29120. height: math.unit(0.81, "feet"),
  29121. name: "Hand (Four Fingers)",
  29122. image: {
  29123. source: "./media/characters/theo-pangolin/hand-four.svg"
  29124. }
  29125. },
  29126. handThree: {
  29127. height: math.unit(0.81, "feet"),
  29128. name: "Hand (Three Fingers)",
  29129. image: {
  29130. source: "./media/characters/theo-pangolin/hand-three.svg"
  29131. }
  29132. },
  29133. headFront: {
  29134. height: math.unit(1.37, "feet"),
  29135. name: "Head (Front)",
  29136. image: {
  29137. source: "./media/characters/theo-pangolin/head-front.svg"
  29138. }
  29139. },
  29140. headSide: {
  29141. height: math.unit(1.43, "feet"),
  29142. name: "Head (Side)",
  29143. image: {
  29144. source: "./media/characters/theo-pangolin/head-side.svg"
  29145. }
  29146. },
  29147. tongue: {
  29148. height: math.unit(2.29, "feet"),
  29149. name: "Tongue",
  29150. image: {
  29151. source: "./media/characters/theo-pangolin/tongue.svg"
  29152. }
  29153. },
  29154. },
  29155. [
  29156. {
  29157. name: "Normal",
  29158. height: math.unit(6, "feet")
  29159. },
  29160. {
  29161. name: "Macro",
  29162. height: math.unit(400, "feet"),
  29163. default: true
  29164. },
  29165. ]
  29166. ))
  29167. characterMakers.push(() => makeCharacter(
  29168. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29169. {
  29170. front: {
  29171. height: math.unit(6, "inches"),
  29172. weight: math.unit(0.036, "kg"),
  29173. name: "Front",
  29174. image: {
  29175. source: "./media/characters/renée/front.svg",
  29176. extra: 900 / 886,
  29177. bottom: 8 / 908
  29178. }
  29179. },
  29180. },
  29181. [
  29182. {
  29183. name: "Nano",
  29184. height: math.unit(1, "nm")
  29185. },
  29186. {
  29187. name: "Micro",
  29188. height: math.unit(1, "mm")
  29189. },
  29190. {
  29191. name: "Normal",
  29192. height: math.unit(6, "inches")
  29193. },
  29194. {
  29195. name: "Macro",
  29196. height: math.unit(2000, "feet"),
  29197. default: true
  29198. },
  29199. {
  29200. name: "Megamacro",
  29201. height: math.unit(2, "km")
  29202. },
  29203. {
  29204. name: "Gigamacro",
  29205. height: math.unit(2000, "km")
  29206. },
  29207. {
  29208. name: "Teramacro",
  29209. height: math.unit(250000, "km")
  29210. },
  29211. ]
  29212. ))
  29213. characterMakers.push(() => makeCharacter(
  29214. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29215. {
  29216. front: {
  29217. height: math.unit(4, "meters"),
  29218. weight: math.unit(150, "kg"),
  29219. name: "Front",
  29220. image: {
  29221. source: "./media/characters/caledvwlch/front.svg",
  29222. extra: 1760 / 1551,
  29223. bottom: 28 / 1788
  29224. }
  29225. },
  29226. side: {
  29227. height: math.unit(4, "meters"),
  29228. weight: math.unit(150, "kg"),
  29229. name: "Side",
  29230. image: {
  29231. source: "./media/characters/caledvwlch/side.svg",
  29232. extra: 1605 / 1536,
  29233. bottom: 31 / 1636
  29234. }
  29235. },
  29236. back: {
  29237. height: math.unit(4, "meters"),
  29238. weight: math.unit(150, "kg"),
  29239. name: "Back",
  29240. image: {
  29241. source: "./media/characters/caledvwlch/back.svg",
  29242. extra: 1635 / 1565,
  29243. bottom: 27 / 1662
  29244. }
  29245. },
  29246. },
  29247. [
  29248. {
  29249. name: "\"Incognito\"",
  29250. height: math.unit(4, "meters")
  29251. },
  29252. {
  29253. name: "Small rampage",
  29254. height: math.unit(600, "meters")
  29255. },
  29256. {
  29257. name: "Mega",
  29258. height: math.unit(30, "km")
  29259. },
  29260. {
  29261. name: "Home-size",
  29262. height: math.unit(50, "km"),
  29263. default: true
  29264. },
  29265. {
  29266. name: "Giga",
  29267. height: math.unit(300, "km")
  29268. },
  29269. {
  29270. name: "Lounging",
  29271. height: math.unit(11000, "km")
  29272. },
  29273. {
  29274. name: "Planet snacking",
  29275. height: math.unit(2000000, "km")
  29276. },
  29277. ]
  29278. ))
  29279. characterMakers.push(() => makeCharacter(
  29280. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29281. {
  29282. front: {
  29283. height: math.unit(6, "feet"),
  29284. weight: math.unit(215, "lb"),
  29285. name: "Front",
  29286. image: {
  29287. source: "./media/characters/sapphire-svell/front.svg",
  29288. extra: 495 / 455,
  29289. bottom: 20 / 515
  29290. }
  29291. },
  29292. back: {
  29293. height: math.unit(6, "feet"),
  29294. weight: math.unit(216, "lb"),
  29295. name: "Back",
  29296. image: {
  29297. source: "./media/characters/sapphire-svell/back.svg",
  29298. extra: 497 / 477,
  29299. bottom: 7 / 504
  29300. }
  29301. },
  29302. maw: {
  29303. height: math.unit(1.57, "feet"),
  29304. name: "Maw",
  29305. image: {
  29306. source: "./media/characters/sapphire-svell/maw.svg"
  29307. }
  29308. },
  29309. foot: {
  29310. height: math.unit(1.07, "feet"),
  29311. name: "Foot",
  29312. image: {
  29313. source: "./media/characters/sapphire-svell/foot.svg"
  29314. }
  29315. },
  29316. toering: {
  29317. height: math.unit(1.7, "inch"),
  29318. name: "Toering",
  29319. image: {
  29320. source: "./media/characters/sapphire-svell/toering.svg"
  29321. }
  29322. },
  29323. },
  29324. [
  29325. {
  29326. name: "Normal",
  29327. height: math.unit(300, "feet"),
  29328. default: true
  29329. },
  29330. {
  29331. name: "Augmented",
  29332. height: math.unit(1250, "feet")
  29333. },
  29334. {
  29335. name: "Unleashed",
  29336. height: math.unit(3000, "feet")
  29337. },
  29338. ]
  29339. ))
  29340. characterMakers.push(() => makeCharacter(
  29341. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29342. {
  29343. side: {
  29344. height: math.unit(2 + 3 / 12, "feet"),
  29345. weight: math.unit(110, "lb"),
  29346. name: "Side",
  29347. image: {
  29348. source: "./media/characters/glitch-flux/side.svg",
  29349. extra: 997 / 805,
  29350. bottom: 20 / 1017
  29351. }
  29352. },
  29353. },
  29354. [
  29355. {
  29356. name: "Normal",
  29357. height: math.unit(2 + 3 / 12, "feet"),
  29358. default: true
  29359. },
  29360. ]
  29361. ))
  29362. characterMakers.push(() => makeCharacter(
  29363. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29364. {
  29365. front: {
  29366. height: math.unit(4, "meters"),
  29367. name: "Front",
  29368. image: {
  29369. source: "./media/characters/mid/front.svg",
  29370. extra: 507 / 476,
  29371. bottom: 17 / 524
  29372. }
  29373. },
  29374. back: {
  29375. height: math.unit(4, "meters"),
  29376. name: "Back",
  29377. image: {
  29378. source: "./media/characters/mid/back.svg",
  29379. extra: 519 / 487,
  29380. bottom: 7 / 526
  29381. }
  29382. },
  29383. stuck: {
  29384. height: math.unit(2.2, "meters"),
  29385. name: "Stuck",
  29386. image: {
  29387. source: "./media/characters/mid/stuck.svg",
  29388. extra: 1951 / 1869,
  29389. bottom: 88 / 2039
  29390. }
  29391. }
  29392. },
  29393. [
  29394. {
  29395. name: "Normal",
  29396. height: math.unit(4, "meters"),
  29397. default: true
  29398. },
  29399. {
  29400. name: "Big",
  29401. height: math.unit(10, "meters")
  29402. },
  29403. {
  29404. name: "Macro",
  29405. height: math.unit(800, "meters")
  29406. },
  29407. {
  29408. name: "Megamacro",
  29409. height: math.unit(100, "km")
  29410. },
  29411. {
  29412. name: "Overgrown",
  29413. height: math.unit(1, "parsec")
  29414. },
  29415. ]
  29416. ))
  29417. characterMakers.push(() => makeCharacter(
  29418. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29419. {
  29420. front: {
  29421. height: math.unit(2.5, "meters"),
  29422. weight: math.unit(225, "kg"),
  29423. name: "Front",
  29424. image: {
  29425. source: "./media/characters/iris/front.svg",
  29426. extra: 3348 / 3251,
  29427. bottom: 205 / 3553
  29428. }
  29429. },
  29430. maw: {
  29431. height: math.unit(0.56, "meter"),
  29432. name: "Maw",
  29433. image: {
  29434. source: "./media/characters/iris/maw.svg"
  29435. }
  29436. },
  29437. },
  29438. [
  29439. {
  29440. name: "Mewter cat",
  29441. height: math.unit(1.2, "meters")
  29442. },
  29443. {
  29444. name: "Minimacro",
  29445. height: math.unit(2.5, "meters"),
  29446. default: true
  29447. },
  29448. {
  29449. name: "Macro",
  29450. height: math.unit(180, "meters")
  29451. },
  29452. {
  29453. name: "Megamacro",
  29454. height: math.unit(2746, "meters")
  29455. },
  29456. ]
  29457. ))
  29458. characterMakers.push(() => makeCharacter(
  29459. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29460. {
  29461. front: {
  29462. height: math.unit(6, "feet"),
  29463. weight: math.unit(135, "lb"),
  29464. name: "Front",
  29465. image: {
  29466. source: "./media/characters/axel/front.svg",
  29467. extra: 908 / 908,
  29468. bottom: 58 / 966
  29469. }
  29470. },
  29471. side: {
  29472. height: math.unit(6, "feet"),
  29473. weight: math.unit(135, "lb"),
  29474. name: "Side",
  29475. image: {
  29476. source: "./media/characters/axel/side.svg",
  29477. extra: 958 / 958,
  29478. bottom: 11 / 969
  29479. }
  29480. },
  29481. back: {
  29482. height: math.unit(6, "feet"),
  29483. weight: math.unit(135, "lb"),
  29484. name: "Back",
  29485. image: {
  29486. source: "./media/characters/axel/back.svg",
  29487. extra: 887 / 887,
  29488. bottom: 34 / 921
  29489. }
  29490. },
  29491. head: {
  29492. height: math.unit(1.07, "feet"),
  29493. name: "Head",
  29494. image: {
  29495. source: "./media/characters/axel/head.svg"
  29496. }
  29497. },
  29498. beak: {
  29499. height: math.unit(1.4, "feet"),
  29500. name: "Beak",
  29501. image: {
  29502. source: "./media/characters/axel/beak.svg"
  29503. }
  29504. },
  29505. beakSide: {
  29506. height: math.unit(1.4, "feet"),
  29507. name: "Beak Side",
  29508. image: {
  29509. source: "./media/characters/axel/beak-side.svg"
  29510. }
  29511. },
  29512. sheath: {
  29513. height: math.unit(0.5, "feet"),
  29514. name: "Sheath",
  29515. image: {
  29516. source: "./media/characters/axel/sheath.svg"
  29517. }
  29518. },
  29519. dick: {
  29520. height: math.unit(0.98, "feet"),
  29521. name: "Dick",
  29522. image: {
  29523. source: "./media/characters/axel/dick.svg"
  29524. }
  29525. },
  29526. },
  29527. [
  29528. {
  29529. name: "Macro",
  29530. height: math.unit(68, "meters"),
  29531. default: true
  29532. },
  29533. ]
  29534. ))
  29535. characterMakers.push(() => makeCharacter(
  29536. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29537. {
  29538. front: {
  29539. height: math.unit(3.5, "meters"),
  29540. weight: math.unit(1200, "kg"),
  29541. name: "Front",
  29542. image: {
  29543. source: "./media/characters/joanna/front.svg",
  29544. extra: 1596 / 1488,
  29545. bottom: 29 / 1625
  29546. }
  29547. },
  29548. back: {
  29549. height: math.unit(3.5, "meters"),
  29550. weight: math.unit(1200, "kg"),
  29551. name: "Back",
  29552. image: {
  29553. source: "./media/characters/joanna/back.svg",
  29554. extra: 1594 / 1495,
  29555. bottom: 26 / 1620
  29556. }
  29557. },
  29558. frontShorts: {
  29559. height: math.unit(3.5, "meters"),
  29560. weight: math.unit(1200, "kg"),
  29561. name: "Front (Shorts)",
  29562. image: {
  29563. source: "./media/characters/joanna/front-shorts.svg",
  29564. extra: 1596 / 1488,
  29565. bottom: 29 / 1625
  29566. }
  29567. },
  29568. frontBiker: {
  29569. height: math.unit(3.5, "meters"),
  29570. weight: math.unit(1200, "kg"),
  29571. name: "Front (Biker)",
  29572. image: {
  29573. source: "./media/characters/joanna/front-biker.svg",
  29574. extra: 1596 / 1488,
  29575. bottom: 29 / 1625
  29576. }
  29577. },
  29578. backBiker: {
  29579. height: math.unit(3.5, "meters"),
  29580. weight: math.unit(1200, "kg"),
  29581. name: "Back (Biker)",
  29582. image: {
  29583. source: "./media/characters/joanna/back-biker.svg",
  29584. extra: 1594 / 1495,
  29585. bottom: 88 / 1682
  29586. }
  29587. },
  29588. bikeLeft: {
  29589. height: math.unit(2.4, "meters"),
  29590. weight: math.unit(1600, "kg"),
  29591. name: "Bike (Left)",
  29592. image: {
  29593. source: "./media/characters/joanna/bike-left.svg",
  29594. extra: 720 / 720,
  29595. bottom: 8 / 728
  29596. }
  29597. },
  29598. bikeRight: {
  29599. height: math.unit(2.4, "meters"),
  29600. weight: math.unit(1600, "kg"),
  29601. name: "Bike (Right)",
  29602. image: {
  29603. source: "./media/characters/joanna/bike-right.svg",
  29604. extra: 720 / 720,
  29605. bottom: 8 / 728
  29606. }
  29607. },
  29608. },
  29609. [
  29610. {
  29611. name: "Incognito",
  29612. height: math.unit(3.5, "meters")
  29613. },
  29614. {
  29615. name: "Casual Big",
  29616. height: math.unit(200, "meters")
  29617. },
  29618. {
  29619. name: "Macro",
  29620. height: math.unit(600, "meters")
  29621. },
  29622. {
  29623. name: "Original",
  29624. height: math.unit(20, "km"),
  29625. default: true
  29626. },
  29627. {
  29628. name: "Giga",
  29629. height: math.unit(400, "km")
  29630. },
  29631. {
  29632. name: "Lounging",
  29633. height: math.unit(1500, "km")
  29634. },
  29635. {
  29636. name: "Planetary",
  29637. height: math.unit(200000, "km")
  29638. },
  29639. ]
  29640. ))
  29641. characterMakers.push(() => makeCharacter(
  29642. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29643. {
  29644. front: {
  29645. height: math.unit(6, "feet"),
  29646. weight: math.unit(150, "lb"),
  29647. name: "Front",
  29648. image: {
  29649. source: "./media/characters/hugo-sigil/front.svg",
  29650. extra: 522 / 500,
  29651. bottom: 2 / 524
  29652. }
  29653. },
  29654. back: {
  29655. height: math.unit(6, "feet"),
  29656. weight: math.unit(150, "lb"),
  29657. name: "Back",
  29658. image: {
  29659. source: "./media/characters/hugo-sigil/back.svg",
  29660. extra: 519 / 495,
  29661. bottom: 5 / 524
  29662. }
  29663. },
  29664. maw: {
  29665. height: math.unit(1.4, "feet"),
  29666. weight: math.unit(150, "lb"),
  29667. name: "Maw",
  29668. image: {
  29669. source: "./media/characters/hugo-sigil/maw.svg"
  29670. }
  29671. },
  29672. feet: {
  29673. height: math.unit(1.56, "feet"),
  29674. weight: math.unit(150, "lb"),
  29675. name: "Feet",
  29676. image: {
  29677. source: "./media/characters/hugo-sigil/feet.svg",
  29678. extra: 177 / 177,
  29679. bottom: 12 / 189
  29680. }
  29681. },
  29682. },
  29683. [
  29684. {
  29685. name: "Normal",
  29686. height: math.unit(6, "feet")
  29687. },
  29688. {
  29689. name: "Macro",
  29690. height: math.unit(200, "feet"),
  29691. default: true
  29692. },
  29693. ]
  29694. ))
  29695. characterMakers.push(() => makeCharacter(
  29696. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  29697. {
  29698. front: {
  29699. height: math.unit(6, "feet"),
  29700. weight: math.unit(150, "lb"),
  29701. name: "Front",
  29702. image: {
  29703. source: "./media/characters/peri/front.svg",
  29704. extra: 2354 / 2233,
  29705. bottom: 49 / 2403
  29706. }
  29707. },
  29708. },
  29709. [
  29710. {
  29711. name: "Really Small",
  29712. height: math.unit(1, "nm")
  29713. },
  29714. {
  29715. name: "Micro",
  29716. height: math.unit(4, "inches")
  29717. },
  29718. {
  29719. name: "Normal",
  29720. height: math.unit(7, "inches"),
  29721. default: true
  29722. },
  29723. {
  29724. name: "Macro",
  29725. height: math.unit(400, "feet")
  29726. },
  29727. {
  29728. name: "Megamacro",
  29729. height: math.unit(100, "miles")
  29730. },
  29731. ]
  29732. ))
  29733. characterMakers.push(() => makeCharacter(
  29734. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  29735. {
  29736. frontSlim: {
  29737. height: math.unit(7, "feet"),
  29738. name: "Front (Slim)",
  29739. image: {
  29740. source: "./media/characters/issilora/front-slim.svg",
  29741. extra: 529 / 449,
  29742. bottom: 53 / 582
  29743. }
  29744. },
  29745. sideSlim: {
  29746. height: math.unit(7, "feet"),
  29747. name: "Side (Slim)",
  29748. image: {
  29749. source: "./media/characters/issilora/side-slim.svg",
  29750. extra: 570 / 480,
  29751. bottom: 30 / 600
  29752. }
  29753. },
  29754. backSlim: {
  29755. height: math.unit(7, "feet"),
  29756. name: "Back (Slim)",
  29757. image: {
  29758. source: "./media/characters/issilora/back-slim.svg",
  29759. extra: 537 / 455,
  29760. bottom: 46 / 583
  29761. }
  29762. },
  29763. frontBuff: {
  29764. height: math.unit(7, "feet"),
  29765. name: "Front (Buff)",
  29766. image: {
  29767. source: "./media/characters/issilora/front-buff.svg",
  29768. extra: 2310 / 2035,
  29769. bottom: 335 / 2645
  29770. }
  29771. },
  29772. head: {
  29773. height: math.unit(1.94, "feet"),
  29774. name: "Head",
  29775. image: {
  29776. source: "./media/characters/issilora/head.svg"
  29777. }
  29778. },
  29779. },
  29780. [
  29781. {
  29782. name: "Minimum",
  29783. height: math.unit(7, "feet")
  29784. },
  29785. {
  29786. name: "Comfortable",
  29787. height: math.unit(17, "feet")
  29788. },
  29789. {
  29790. name: "Fun Size",
  29791. height: math.unit(47, "feet")
  29792. },
  29793. {
  29794. name: "Natural Macro",
  29795. height: math.unit(137, "feet"),
  29796. default: true
  29797. },
  29798. {
  29799. name: "Maximum Kaiju",
  29800. height: math.unit(397, "feet")
  29801. },
  29802. ]
  29803. ))
  29804. characterMakers.push(() => makeCharacter(
  29805. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  29806. {
  29807. front: {
  29808. height: math.unit(50 + 9/12, "feet"),
  29809. weight: math.unit(32.8, "tons"),
  29810. name: "Front",
  29811. image: {
  29812. source: "./media/characters/irb'iiritaahn/front.svg",
  29813. extra: 1878/1826,
  29814. bottom: 326/2204
  29815. }
  29816. },
  29817. back: {
  29818. height: math.unit(50 + 9/12, "feet"),
  29819. weight: math.unit(32.8, "tons"),
  29820. name: "Back",
  29821. image: {
  29822. source: "./media/characters/irb'iiritaahn/back.svg",
  29823. extra: 2052/2018,
  29824. bottom: 152/2204
  29825. }
  29826. },
  29827. head: {
  29828. height: math.unit(12.86, "feet"),
  29829. name: "Head",
  29830. image: {
  29831. source: "./media/characters/irb'iiritaahn/head.svg"
  29832. }
  29833. },
  29834. maw: {
  29835. height: math.unit(9.66, "feet"),
  29836. name: "Maw",
  29837. image: {
  29838. source: "./media/characters/irb'iiritaahn/maw.svg"
  29839. }
  29840. },
  29841. frontDick: {
  29842. height: math.unit(8.78461, "feet"),
  29843. name: "Front Dick",
  29844. image: {
  29845. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  29846. }
  29847. },
  29848. rearDick: {
  29849. height: math.unit(8.78461, "feet"),
  29850. name: "Rear Dick",
  29851. image: {
  29852. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  29853. }
  29854. },
  29855. rearDickUnfolded: {
  29856. height: math.unit(8.78, "feet"),
  29857. name: "Rear Dick (Unfolded)",
  29858. image: {
  29859. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  29860. }
  29861. },
  29862. wings: {
  29863. height: math.unit(43, "feet"),
  29864. name: "Wings",
  29865. image: {
  29866. source: "./media/characters/irb'iiritaahn/wings.svg"
  29867. }
  29868. },
  29869. },
  29870. [
  29871. {
  29872. name: "Macro",
  29873. height: math.unit(50 + 9/12, "feet"),
  29874. default: true
  29875. },
  29876. ]
  29877. ))
  29878. characterMakers.push(() => makeCharacter(
  29879. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  29880. {
  29881. front: {
  29882. height: math.unit(205, "cm"),
  29883. weight: math.unit(102, "kg"),
  29884. name: "Front",
  29885. image: {
  29886. source: "./media/characters/irbisgreif/front.svg",
  29887. extra: 785/706,
  29888. bottom: 13/798
  29889. }
  29890. },
  29891. back: {
  29892. height: math.unit(205, "cm"),
  29893. weight: math.unit(102, "kg"),
  29894. name: "Back",
  29895. image: {
  29896. source: "./media/characters/irbisgreif/back.svg",
  29897. extra: 713/701,
  29898. bottom: 26/739
  29899. }
  29900. },
  29901. frontDressed: {
  29902. height: math.unit(216, "cm"),
  29903. weight: math.unit(102, "kg"),
  29904. name: "Front-dressed",
  29905. image: {
  29906. source: "./media/characters/irbisgreif/front-dressed.svg",
  29907. extra: 902/776,
  29908. bottom: 14/916
  29909. }
  29910. },
  29911. sideDressed: {
  29912. height: math.unit(195, "cm"),
  29913. weight: math.unit(102, "kg"),
  29914. name: "Side-dressed",
  29915. image: {
  29916. source: "./media/characters/irbisgreif/side-dressed.svg",
  29917. extra: 788/688,
  29918. bottom: 21/809
  29919. }
  29920. },
  29921. backDressed: {
  29922. height: math.unit(216, "cm"),
  29923. weight: math.unit(102, "kg"),
  29924. name: "Back-dressed",
  29925. image: {
  29926. source: "./media/characters/irbisgreif/back-dressed.svg",
  29927. extra: 901/783,
  29928. bottom: 10/911
  29929. }
  29930. },
  29931. dick: {
  29932. height: math.unit(0.49, "feet"),
  29933. name: "Dick",
  29934. image: {
  29935. source: "./media/characters/irbisgreif/dick.svg"
  29936. }
  29937. },
  29938. wingTop: {
  29939. height: math.unit(1.93 , "feet"),
  29940. name: "Wing-top",
  29941. image: {
  29942. source: "./media/characters/irbisgreif/wing-top.svg"
  29943. }
  29944. },
  29945. wingBottom: {
  29946. height: math.unit(1.93 , "feet"),
  29947. name: "Wing-bottom",
  29948. image: {
  29949. source: "./media/characters/irbisgreif/wing-bottom.svg"
  29950. }
  29951. },
  29952. },
  29953. [
  29954. {
  29955. name: "Normal",
  29956. height: math.unit(216, "cm"),
  29957. default: true
  29958. },
  29959. ]
  29960. ))
  29961. characterMakers.push(() => makeCharacter(
  29962. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  29963. {
  29964. front: {
  29965. height: math.unit(6, "feet"),
  29966. weight: math.unit(150, "lb"),
  29967. name: "Front",
  29968. image: {
  29969. source: "./media/characters/pride/front.svg",
  29970. extra: 1299/1230,
  29971. bottom: 18/1317
  29972. }
  29973. },
  29974. },
  29975. [
  29976. {
  29977. name: "Normal",
  29978. height: math.unit(7, "feet")
  29979. },
  29980. {
  29981. name: "Mini-macro",
  29982. height: math.unit(11, "feet")
  29983. },
  29984. {
  29985. name: "Macro",
  29986. height: math.unit(15, "meters"),
  29987. default: true
  29988. },
  29989. {
  29990. name: "Macro+",
  29991. height: math.unit(40, "meters")
  29992. },
  29993. ]
  29994. ))
  29995. characterMakers.push(() => makeCharacter(
  29996. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  29997. {
  29998. front: {
  29999. height: math.unit(4 + 2 / 12, "feet"),
  30000. weight: math.unit(95, "lb"),
  30001. name: "Front",
  30002. image: {
  30003. source: "./media/characters/vaelophis-nyx/front.svg",
  30004. extra: 2532/2330,
  30005. bottom: 0/2532
  30006. }
  30007. },
  30008. back: {
  30009. height: math.unit(4 + 2 / 12, "feet"),
  30010. weight: math.unit(95, "lb"),
  30011. name: "Back",
  30012. image: {
  30013. source: "./media/characters/vaelophis-nyx/back.svg",
  30014. extra: 2484/2361,
  30015. bottom: 0/2484
  30016. }
  30017. },
  30018. feralSide: {
  30019. height: math.unit(2 + 1/12, "feet"),
  30020. weight: math.unit(20, "lb"),
  30021. name: "Feral (Side)",
  30022. image: {
  30023. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30024. extra: 1721/1581,
  30025. bottom: 70/1791
  30026. }
  30027. },
  30028. feralLazing: {
  30029. height: math.unit(1.08, "feet"),
  30030. weight: math.unit(20, "lb"),
  30031. name: "Feral (Lazing)",
  30032. image: {
  30033. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30034. extra: 822/822,
  30035. bottom: 248/1070
  30036. }
  30037. },
  30038. ear: {
  30039. height: math.unit(0.416, "feet"),
  30040. name: "Ear",
  30041. image: {
  30042. source: "./media/characters/vaelophis-nyx/ear.svg"
  30043. }
  30044. },
  30045. eye: {
  30046. height: math.unit(0.0748, "feet"),
  30047. name: "Eye",
  30048. image: {
  30049. source: "./media/characters/vaelophis-nyx/eye.svg"
  30050. }
  30051. },
  30052. mouth: {
  30053. height: math.unit(0.378, "feet"),
  30054. name: "Mouth",
  30055. image: {
  30056. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30057. }
  30058. },
  30059. spade: {
  30060. height: math.unit(0.55, "feet"),
  30061. name: "Spade",
  30062. image: {
  30063. source: "./media/characters/vaelophis-nyx/spade.svg"
  30064. }
  30065. },
  30066. },
  30067. [
  30068. {
  30069. name: "Normal",
  30070. height: math.unit(4 + 2/12, "feet"),
  30071. default: true
  30072. },
  30073. ]
  30074. ))
  30075. characterMakers.push(() => makeCharacter(
  30076. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30077. {
  30078. front: {
  30079. height: math.unit(7, "feet"),
  30080. weight: math.unit(231, "lb"),
  30081. name: "Front",
  30082. image: {
  30083. source: "./media/characters/flux/front.svg",
  30084. extra: 919/871,
  30085. bottom: 0/919
  30086. }
  30087. },
  30088. back: {
  30089. height: math.unit(7, "feet"),
  30090. weight: math.unit(231, "lb"),
  30091. name: "Back",
  30092. image: {
  30093. source: "./media/characters/flux/back.svg",
  30094. extra: 1040/992,
  30095. bottom: 0/1040
  30096. }
  30097. },
  30098. frontDressed: {
  30099. height: math.unit(7, "feet"),
  30100. weight: math.unit(231, "lb"),
  30101. name: "Front (Dressed)",
  30102. image: {
  30103. source: "./media/characters/flux/front-dressed.svg",
  30104. extra: 919/871,
  30105. bottom: 0/919
  30106. }
  30107. },
  30108. feralSide: {
  30109. height: math.unit(5, "feet"),
  30110. weight: math.unit(150, "lb"),
  30111. name: "Feral (Side)",
  30112. image: {
  30113. source: "./media/characters/flux/feral-side.svg",
  30114. extra: 598/528,
  30115. bottom: 28/626
  30116. }
  30117. },
  30118. head: {
  30119. height: math.unit(1.585, "feet"),
  30120. name: "Head",
  30121. image: {
  30122. source: "./media/characters/flux/head.svg"
  30123. }
  30124. },
  30125. headSide: {
  30126. height: math.unit(1.74, "feet"),
  30127. name: "Head (Side)",
  30128. image: {
  30129. source: "./media/characters/flux/head-side.svg"
  30130. }
  30131. },
  30132. headSideFire: {
  30133. height: math.unit(1.76, "feet"),
  30134. name: "Head (Side, Fire)",
  30135. image: {
  30136. source: "./media/characters/flux/head-side-fire.svg"
  30137. }
  30138. },
  30139. },
  30140. [
  30141. {
  30142. name: "Normal",
  30143. height: math.unit(7, "feet"),
  30144. default: true
  30145. },
  30146. ]
  30147. ))
  30148. characterMakers.push(() => makeCharacter(
  30149. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30150. {
  30151. front: {
  30152. height: math.unit(9, "feet"),
  30153. weight: math.unit(1012, "lb"),
  30154. name: "Front",
  30155. image: {
  30156. source: "./media/characters/ulfra-lupae/front.svg",
  30157. extra: 1083/1011,
  30158. bottom: 67/1150
  30159. }
  30160. },
  30161. },
  30162. [
  30163. {
  30164. name: "Micro",
  30165. height: math.unit(6, "inches")
  30166. },
  30167. {
  30168. name: "Socializing",
  30169. height: math.unit(6 + 5/12, "feet")
  30170. },
  30171. {
  30172. name: "Normal",
  30173. height: math.unit(9, "feet"),
  30174. default: true
  30175. },
  30176. {
  30177. name: "Macro",
  30178. height: math.unit(150, "feet")
  30179. },
  30180. ]
  30181. ))
  30182. characterMakers.push(() => makeCharacter(
  30183. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30184. {
  30185. front: {
  30186. height: math.unit(5 + 2/12, "feet"),
  30187. weight: math.unit(120, "lb"),
  30188. name: "Front",
  30189. image: {
  30190. source: "./media/characters/timber/front.svg",
  30191. extra: 2814/2705,
  30192. bottom: 181/2995
  30193. }
  30194. },
  30195. },
  30196. [
  30197. {
  30198. name: "Normal",
  30199. height: math.unit(5 + 2/12, "feet"),
  30200. default: true
  30201. },
  30202. ]
  30203. ))
  30204. characterMakers.push(() => makeCharacter(
  30205. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30206. {
  30207. front: {
  30208. height: math.unit(5 + 7/12, "feet"),
  30209. weight: math.unit(220, "lb"),
  30210. name: "Front",
  30211. image: {
  30212. source: "./media/characters/nicki/front.svg",
  30213. extra: 453/419,
  30214. bottom: 7/460
  30215. }
  30216. },
  30217. frontAlt: {
  30218. height: math.unit(5 + 7/12, "feet"),
  30219. weight: math.unit(220, "lb"),
  30220. name: "Front-alt",
  30221. image: {
  30222. source: "./media/characters/nicki/front-alt.svg",
  30223. extra: 435/411,
  30224. bottom: 12/447
  30225. }
  30226. },
  30227. back: {
  30228. height: math.unit(5 + 7/12, "feet"),
  30229. weight: math.unit(220, "lb"),
  30230. name: "Back",
  30231. image: {
  30232. source: "./media/characters/nicki/back.svg",
  30233. extra: 440/413,
  30234. bottom: 19/459
  30235. }
  30236. },
  30237. frontNsfw: {
  30238. height: math.unit(5 + 7/12, "feet"),
  30239. weight: math.unit(220, "lb"),
  30240. name: "Front (NSFW)",
  30241. image: {
  30242. source: "./media/characters/nicki/front-nsfw.svg",
  30243. extra: 453/419,
  30244. bottom: 7/460
  30245. }
  30246. },
  30247. frontNsfwAlt: {
  30248. height: math.unit(5 + 7/12, "feet"),
  30249. weight: math.unit(220, "lb"),
  30250. name: "Front (Alt, NSFW)",
  30251. image: {
  30252. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30253. extra: 435/411,
  30254. bottom: 12/447
  30255. }
  30256. },
  30257. backNsfw: {
  30258. height: math.unit(5 + 7/12, "feet"),
  30259. weight: math.unit(220, "lb"),
  30260. name: "Back (NSFW)",
  30261. image: {
  30262. source: "./media/characters/nicki/back-nsfw.svg",
  30263. extra: 440/413,
  30264. bottom: 19/459
  30265. }
  30266. },
  30267. head: {
  30268. height: math.unit(2.1, "feet"),
  30269. name: "Head",
  30270. image: {
  30271. source: "./media/characters/nicki/head.svg"
  30272. }
  30273. },
  30274. paw: {
  30275. height: math.unit(1.88, "feet"),
  30276. name: "Paw",
  30277. image: {
  30278. source: "./media/characters/nicki/paw.svg"
  30279. }
  30280. },
  30281. },
  30282. [
  30283. {
  30284. name: "Normal",
  30285. height: math.unit(5 + 7/12, "feet"),
  30286. default: true
  30287. },
  30288. ]
  30289. ))
  30290. characterMakers.push(() => makeCharacter(
  30291. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30292. {
  30293. front: {
  30294. height: math.unit(7 + 10/12, "feet"),
  30295. weight: math.unit(3.5, "tons"),
  30296. name: "Front",
  30297. image: {
  30298. source: "./media/characters/lee/front.svg",
  30299. extra: 1773/1615,
  30300. bottom: 86/1859
  30301. }
  30302. },
  30303. hand: {
  30304. height: math.unit(1.78, "feet"),
  30305. name: "Hand",
  30306. image: {
  30307. source: "./media/characters/lee/hand.svg"
  30308. }
  30309. },
  30310. maw: {
  30311. height: math.unit(1.18, "feet"),
  30312. name: "Maw",
  30313. image: {
  30314. source: "./media/characters/lee/maw.svg"
  30315. }
  30316. },
  30317. },
  30318. [
  30319. {
  30320. name: "Normal",
  30321. height: math.unit(7 + 10/12, "feet"),
  30322. default: true
  30323. },
  30324. ]
  30325. ))
  30326. characterMakers.push(() => makeCharacter(
  30327. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30328. {
  30329. front: {
  30330. height: math.unit(9, "feet"),
  30331. name: "Front",
  30332. image: {
  30333. source: "./media/characters/guti/front.svg",
  30334. extra: 4551/4355,
  30335. bottom: 123/4674
  30336. }
  30337. },
  30338. tongue: {
  30339. height: math.unit(1, "feet"),
  30340. name: "Tongue",
  30341. image: {
  30342. source: "./media/characters/guti/tongue.svg"
  30343. }
  30344. },
  30345. paw: {
  30346. height: math.unit(1.18, "feet"),
  30347. name: "Paw",
  30348. image: {
  30349. source: "./media/characters/guti/paw.svg"
  30350. }
  30351. },
  30352. },
  30353. [
  30354. {
  30355. name: "Normal",
  30356. height: math.unit(9, "feet"),
  30357. default: true
  30358. },
  30359. ]
  30360. ))
  30361. characterMakers.push(() => makeCharacter(
  30362. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30363. {
  30364. side: {
  30365. height: math.unit(5, "meters"),
  30366. name: "Side",
  30367. image: {
  30368. source: "./media/characters/vesper/side.svg",
  30369. extra: 1605/1518,
  30370. bottom: 0/1605
  30371. }
  30372. },
  30373. },
  30374. [
  30375. {
  30376. name: "Small",
  30377. height: math.unit(5, "meters")
  30378. },
  30379. {
  30380. name: "Sage",
  30381. height: math.unit(100, "meters"),
  30382. default: true
  30383. },
  30384. {
  30385. name: "Fun Size",
  30386. height: math.unit(600, "meters")
  30387. },
  30388. {
  30389. name: "Goddess",
  30390. height: math.unit(20000, "km")
  30391. },
  30392. {
  30393. name: "Maximum",
  30394. height: math.unit(5, "galaxies")
  30395. },
  30396. ]
  30397. ))
  30398. characterMakers.push(() => makeCharacter(
  30399. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30400. {
  30401. front: {
  30402. height: math.unit(6 + 3/12, "feet"),
  30403. weight: math.unit(190, "lb"),
  30404. name: "Front",
  30405. image: {
  30406. source: "./media/characters/gawain/front.svg",
  30407. extra: 2222/2139,
  30408. bottom: 90/2312
  30409. }
  30410. },
  30411. back: {
  30412. height: math.unit(6 + 3/12, "feet"),
  30413. weight: math.unit(190, "lb"),
  30414. name: "Back",
  30415. image: {
  30416. source: "./media/characters/gawain/back.svg",
  30417. extra: 2199/2111,
  30418. bottom: 73/2272
  30419. }
  30420. },
  30421. },
  30422. [
  30423. {
  30424. name: "Normal",
  30425. height: math.unit(6 + 3/12, "feet"),
  30426. default: true
  30427. },
  30428. ]
  30429. ))
  30430. characterMakers.push(() => makeCharacter(
  30431. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30432. {
  30433. side: {
  30434. height: math.unit(3.5, "meters"),
  30435. weight: math.unit(16000, "lb"),
  30436. name: "Side",
  30437. image: {
  30438. source: "./media/characters/dascalti/side.svg",
  30439. extra: 392/273,
  30440. bottom: 47/439
  30441. }
  30442. },
  30443. breath: {
  30444. height: math.unit(7.4, "feet"),
  30445. name: "Breath",
  30446. image: {
  30447. source: "./media/characters/dascalti/breath.svg"
  30448. }
  30449. },
  30450. fed: {
  30451. height: math.unit(3.6, "meters"),
  30452. weight: math.unit(16000, "lb"),
  30453. name: "Fed",
  30454. image: {
  30455. source: "./media/characters/dascalti/fed.svg",
  30456. extra: 1419/820,
  30457. bottom: 95/1514
  30458. }
  30459. },
  30460. },
  30461. [
  30462. {
  30463. name: "Normal",
  30464. height: math.unit(3.5, "meters"),
  30465. default: true
  30466. },
  30467. ]
  30468. ))
  30469. characterMakers.push(() => makeCharacter(
  30470. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30471. {
  30472. front: {
  30473. height: math.unit(3 + 5/12, "feet"),
  30474. name: "Front",
  30475. image: {
  30476. source: "./media/characters/mauve/front.svg",
  30477. extra: 1126/1033,
  30478. bottom: 65/1191
  30479. }
  30480. },
  30481. side: {
  30482. height: math.unit(3 + 5/12, "feet"),
  30483. name: "Side",
  30484. image: {
  30485. source: "./media/characters/mauve/side.svg",
  30486. extra: 1089/1001,
  30487. bottom: 29/1118
  30488. }
  30489. },
  30490. back: {
  30491. height: math.unit(3 + 5/12, "feet"),
  30492. name: "Back",
  30493. image: {
  30494. source: "./media/characters/mauve/back.svg",
  30495. extra: 1173/1053,
  30496. bottom: 109/1282
  30497. }
  30498. },
  30499. },
  30500. [
  30501. {
  30502. name: "Normal",
  30503. height: math.unit(3 + 5/12, "feet"),
  30504. default: true
  30505. },
  30506. ]
  30507. ))
  30508. characterMakers.push(() => makeCharacter(
  30509. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30510. {
  30511. front: {
  30512. height: math.unit(6 + 3/12, "feet"),
  30513. weight: math.unit(430, "lb"),
  30514. name: "Front",
  30515. image: {
  30516. source: "./media/characters/carlos/front.svg",
  30517. extra: 1964/1913,
  30518. bottom: 70/2034
  30519. }
  30520. },
  30521. },
  30522. [
  30523. {
  30524. name: "Normal",
  30525. height: math.unit(6 + 3/12, "feet"),
  30526. default: true
  30527. },
  30528. ]
  30529. ))
  30530. characterMakers.push(() => makeCharacter(
  30531. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30532. {
  30533. back: {
  30534. height: math.unit(5 + 10/12, "feet"),
  30535. weight: math.unit(200, "lb"),
  30536. name: "Back",
  30537. image: {
  30538. source: "./media/characters/jax/back.svg",
  30539. extra: 764/739,
  30540. bottom: 25/789
  30541. }
  30542. },
  30543. },
  30544. [
  30545. {
  30546. name: "Normal",
  30547. height: math.unit(5 + 10/12, "feet"),
  30548. default: true
  30549. },
  30550. ]
  30551. ))
  30552. characterMakers.push(() => makeCharacter(
  30553. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30554. {
  30555. front: {
  30556. height: math.unit(8, "feet"),
  30557. weight: math.unit(250, "lb"),
  30558. name: "Front",
  30559. image: {
  30560. source: "./media/characters/eikthynir/front.svg",
  30561. extra: 1332/1166,
  30562. bottom: 82/1414
  30563. }
  30564. },
  30565. back: {
  30566. height: math.unit(8, "feet"),
  30567. weight: math.unit(250, "lb"),
  30568. name: "Back",
  30569. image: {
  30570. source: "./media/characters/eikthynir/back.svg",
  30571. extra: 1342/1190,
  30572. bottom: 19/1361
  30573. }
  30574. },
  30575. dick: {
  30576. height: math.unit(2.35, "feet"),
  30577. name: "Dick",
  30578. image: {
  30579. source: "./media/characters/eikthynir/dick.svg"
  30580. }
  30581. },
  30582. },
  30583. [
  30584. {
  30585. name: "Normal",
  30586. height: math.unit(8, "feet"),
  30587. default: true
  30588. },
  30589. ]
  30590. ))
  30591. characterMakers.push(() => makeCharacter(
  30592. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30593. {
  30594. front: {
  30595. height: math.unit(99, "meters"),
  30596. weight: math.unit(13000, "tons"),
  30597. name: "Front",
  30598. image: {
  30599. source: "./media/characters/zlmos/front.svg",
  30600. extra: 2202/1992,
  30601. bottom: 315/2517
  30602. }
  30603. },
  30604. },
  30605. [
  30606. {
  30607. name: "Macro",
  30608. height: math.unit(99, "meters"),
  30609. default: true
  30610. },
  30611. ]
  30612. ))
  30613. characterMakers.push(() => makeCharacter(
  30614. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30615. {
  30616. front: {
  30617. height: math.unit(6 + 5/12, "feet"),
  30618. name: "Front",
  30619. image: {
  30620. source: "./media/characters/purri/front.svg",
  30621. extra: 1698/1610,
  30622. bottom: 32/1730
  30623. }
  30624. },
  30625. frontAlt: {
  30626. height: math.unit(6 + 5/12, "feet"),
  30627. name: "Front (Alt)",
  30628. image: {
  30629. source: "./media/characters/purri/front-alt.svg",
  30630. extra: 450/420,
  30631. bottom: 26/476
  30632. }
  30633. },
  30634. boots: {
  30635. height: math.unit(5.5, "feet"),
  30636. name: "Boots",
  30637. image: {
  30638. source: "./media/characters/purri/boots.svg",
  30639. extra: 905/853,
  30640. bottom: 18/923
  30641. }
  30642. },
  30643. lying: {
  30644. height: math.unit(2, "feet"),
  30645. name: "Lying",
  30646. image: {
  30647. source: "./media/characters/purri/lying.svg",
  30648. extra: 940/843,
  30649. bottom: 146/1086
  30650. }
  30651. },
  30652. devious: {
  30653. height: math.unit(1.77, "feet"),
  30654. name: "Devious",
  30655. image: {
  30656. source: "./media/characters/purri/devious.svg",
  30657. extra: 1440/1155,
  30658. bottom: 147/1587
  30659. }
  30660. },
  30661. bean: {
  30662. height: math.unit(1.94, "feet"),
  30663. name: "Bean",
  30664. image: {
  30665. source: "./media/characters/purri/bean.svg"
  30666. }
  30667. },
  30668. },
  30669. [
  30670. {
  30671. name: "Micro",
  30672. height: math.unit(1, "mm")
  30673. },
  30674. {
  30675. name: "Normal",
  30676. height: math.unit(6 + 5/12, "feet"),
  30677. default: true
  30678. },
  30679. {
  30680. name: "Macro :3c",
  30681. height: math.unit(2, "miles")
  30682. },
  30683. ]
  30684. ))
  30685. characterMakers.push(() => makeCharacter(
  30686. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  30687. {
  30688. front: {
  30689. height: math.unit(6 + 2/12, "feet"),
  30690. weight: math.unit(250, "lb"),
  30691. name: "Front",
  30692. image: {
  30693. source: "./media/characters/moonlight/front.svg",
  30694. extra: 1044/908,
  30695. bottom: 56/1100
  30696. }
  30697. },
  30698. paw: {
  30699. height: math.unit(1, "feet"),
  30700. name: "Paw",
  30701. image: {
  30702. source: "./media/characters/moonlight/paw.svg"
  30703. }
  30704. },
  30705. paws: {
  30706. height: math.unit(0.98, "feet"),
  30707. name: "Paws",
  30708. image: {
  30709. source: "./media/characters/moonlight/paws.svg",
  30710. extra: 939/939,
  30711. bottom: 50/989
  30712. }
  30713. },
  30714. mouth: {
  30715. height: math.unit(0.48, "feet"),
  30716. name: "Mouth",
  30717. image: {
  30718. source: "./media/characters/moonlight/mouth.svg"
  30719. }
  30720. },
  30721. },
  30722. [
  30723. {
  30724. name: "Normal",
  30725. height: math.unit(6 + 2/12, "feet"),
  30726. default: true
  30727. },
  30728. {
  30729. name: "Macro",
  30730. height: math.unit(300, "feet")
  30731. },
  30732. {
  30733. name: "Macro+",
  30734. height: math.unit(1, "mile")
  30735. },
  30736. {
  30737. name: "Mt. Moon",
  30738. height: math.unit(5, "miles")
  30739. },
  30740. {
  30741. name: "Megamacro",
  30742. height: math.unit(15, "miles")
  30743. },
  30744. ]
  30745. ))
  30746. characterMakers.push(() => makeCharacter(
  30747. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  30748. {
  30749. back: {
  30750. height: math.unit(6, "feet"),
  30751. weight: math.unit(150, "lb"),
  30752. name: "Back",
  30753. image: {
  30754. source: "./media/characters/sylen/back.svg",
  30755. extra: 1335/1273,
  30756. bottom: 107/1442
  30757. }
  30758. },
  30759. },
  30760. [
  30761. {
  30762. name: "Normal",
  30763. height: math.unit(5 + 5/12, "feet")
  30764. },
  30765. {
  30766. name: "Megamacro",
  30767. height: math.unit(3, "miles"),
  30768. default: true
  30769. },
  30770. ]
  30771. ))
  30772. characterMakers.push(() => makeCharacter(
  30773. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  30774. {
  30775. front: {
  30776. height: math.unit(6, "feet"),
  30777. weight: math.unit(190, "lb"),
  30778. name: "Front",
  30779. image: {
  30780. source: "./media/characters/huttser/front.svg",
  30781. extra: 1152/1058,
  30782. bottom: 23/1175
  30783. }
  30784. },
  30785. side: {
  30786. height: math.unit(6, "feet"),
  30787. weight: math.unit(190, "lb"),
  30788. name: "Side",
  30789. image: {
  30790. source: "./media/characters/huttser/side.svg",
  30791. extra: 1174/1065,
  30792. bottom: 18/1192
  30793. }
  30794. },
  30795. back: {
  30796. height: math.unit(6, "feet"),
  30797. weight: math.unit(190, "lb"),
  30798. name: "Back",
  30799. image: {
  30800. source: "./media/characters/huttser/back.svg",
  30801. extra: 1158/1056,
  30802. bottom: 12/1170
  30803. }
  30804. },
  30805. },
  30806. [
  30807. ]
  30808. ))
  30809. characterMakers.push(() => makeCharacter(
  30810. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  30811. {
  30812. side: {
  30813. height: math.unit(12 + 9/12, "feet"),
  30814. weight: math.unit(15000, "lb"),
  30815. name: "Side",
  30816. image: {
  30817. source: "./media/characters/faan/side.svg",
  30818. extra: 2747/2697,
  30819. bottom: 0/2747
  30820. }
  30821. },
  30822. front: {
  30823. height: math.unit(12 + 9/12, "feet"),
  30824. weight: math.unit(15000, "lb"),
  30825. name: "Front",
  30826. image: {
  30827. source: "./media/characters/faan/front.svg",
  30828. extra: 607/571,
  30829. bottom: 24/631
  30830. }
  30831. },
  30832. head: {
  30833. height: math.unit(2.85, "feet"),
  30834. name: "Head",
  30835. image: {
  30836. source: "./media/characters/faan/head.svg"
  30837. }
  30838. },
  30839. headAlt: {
  30840. height: math.unit(3.13, "feet"),
  30841. name: "Head-alt",
  30842. image: {
  30843. source: "./media/characters/faan/head-alt.svg"
  30844. }
  30845. },
  30846. },
  30847. [
  30848. {
  30849. name: "Normal",
  30850. height: math.unit(12 + 9/12, "feet"),
  30851. default: true
  30852. },
  30853. ]
  30854. ))
  30855. characterMakers.push(() => makeCharacter(
  30856. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  30857. {
  30858. front: {
  30859. height: math.unit(6, "feet"),
  30860. weight: math.unit(300, "lb"),
  30861. name: "Front",
  30862. image: {
  30863. source: "./media/characters/tanio/front.svg",
  30864. extra: 711/673,
  30865. bottom: 25/736
  30866. }
  30867. },
  30868. },
  30869. [
  30870. {
  30871. name: "Normal",
  30872. height: math.unit(6, "feet"),
  30873. default: true
  30874. },
  30875. ]
  30876. ))
  30877. characterMakers.push(() => makeCharacter(
  30878. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  30879. {
  30880. front: {
  30881. height: math.unit(3, "inches"),
  30882. name: "Front",
  30883. image: {
  30884. source: "./media/characters/noboru/front.svg",
  30885. extra: 1039/932,
  30886. bottom: 18/1057
  30887. }
  30888. },
  30889. },
  30890. [
  30891. {
  30892. name: "Micro",
  30893. height: math.unit(3, "inches"),
  30894. default: true
  30895. },
  30896. ]
  30897. ))
  30898. characterMakers.push(() => makeCharacter(
  30899. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  30900. {
  30901. front: {
  30902. height: math.unit(1.85, "meters"),
  30903. weight: math.unit(80, "kg"),
  30904. name: "Front",
  30905. image: {
  30906. source: "./media/characters/daniel-barrett/front.svg",
  30907. extra: 355/337,
  30908. bottom: 9/364
  30909. }
  30910. },
  30911. },
  30912. [
  30913. {
  30914. name: "Pico",
  30915. height: math.unit(0.0433, "mm")
  30916. },
  30917. {
  30918. name: "Nano",
  30919. height: math.unit(1.5, "mm")
  30920. },
  30921. {
  30922. name: "Micro",
  30923. height: math.unit(5.3, "cm"),
  30924. default: true
  30925. },
  30926. {
  30927. name: "Normal",
  30928. height: math.unit(1.85, "meters")
  30929. },
  30930. {
  30931. name: "Macro",
  30932. height: math.unit(64.7, "meters")
  30933. },
  30934. {
  30935. name: "Megamacro",
  30936. height: math.unit(2.26, "km")
  30937. },
  30938. {
  30939. name: "Gigamacro",
  30940. height: math.unit(79, "km")
  30941. },
  30942. {
  30943. name: "Teramacro",
  30944. height: math.unit(2765, "km")
  30945. },
  30946. {
  30947. name: "Petamacro",
  30948. height: math.unit(96678, "km")
  30949. },
  30950. ]
  30951. ))
  30952. characterMakers.push(() => makeCharacter(
  30953. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  30954. {
  30955. front: {
  30956. height: math.unit(30, "meters"),
  30957. weight: math.unit(400, "tons"),
  30958. name: "Front",
  30959. image: {
  30960. source: "./media/characters/zeel/front.svg",
  30961. extra: 2599/2599,
  30962. bottom: 226/2825
  30963. }
  30964. },
  30965. },
  30966. [
  30967. {
  30968. name: "Macro",
  30969. height: math.unit(30, "meters"),
  30970. default: true
  30971. },
  30972. ]
  30973. ))
  30974. characterMakers.push(() => makeCharacter(
  30975. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  30976. {
  30977. front: {
  30978. height: math.unit(6 + 7/12, "feet"),
  30979. weight: math.unit(210, "lb"),
  30980. name: "Front",
  30981. image: {
  30982. source: "./media/characters/tarn/front.svg",
  30983. extra: 3517/3220,
  30984. bottom: 91/3608
  30985. }
  30986. },
  30987. back: {
  30988. height: math.unit(6 + 7/12, "feet"),
  30989. weight: math.unit(210, "lb"),
  30990. name: "Back",
  30991. image: {
  30992. source: "./media/characters/tarn/back.svg",
  30993. extra: 3566/3241,
  30994. bottom: 34/3600
  30995. }
  30996. },
  30997. dick: {
  30998. height: math.unit(1.65, "feet"),
  30999. name: "Dick",
  31000. image: {
  31001. source: "./media/characters/tarn/dick.svg"
  31002. }
  31003. },
  31004. paw: {
  31005. height: math.unit(1.80, "feet"),
  31006. name: "Paw",
  31007. image: {
  31008. source: "./media/characters/tarn/paw.svg"
  31009. }
  31010. },
  31011. tongue: {
  31012. height: math.unit(0.97, "feet"),
  31013. name: "Tongue",
  31014. image: {
  31015. source: "./media/characters/tarn/tongue.svg"
  31016. }
  31017. },
  31018. },
  31019. [
  31020. {
  31021. name: "Micro",
  31022. height: math.unit(4, "inches")
  31023. },
  31024. {
  31025. name: "Normal",
  31026. height: math.unit(6 + 7/12, "feet"),
  31027. default: true
  31028. },
  31029. {
  31030. name: "Macro",
  31031. height: math.unit(300, "feet")
  31032. },
  31033. ]
  31034. ))
  31035. characterMakers.push(() => makeCharacter(
  31036. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31037. {
  31038. front: {
  31039. height: math.unit(5 + 7/12, "feet"),
  31040. weight: math.unit(80, "kg"),
  31041. name: "Front",
  31042. image: {
  31043. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31044. extra: 3023/2865,
  31045. bottom: 33/3056
  31046. }
  31047. },
  31048. back: {
  31049. height: math.unit(5 + 7/12, "feet"),
  31050. weight: math.unit(80, "kg"),
  31051. name: "Back",
  31052. image: {
  31053. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31054. extra: 3020/2886,
  31055. bottom: 30/3050
  31056. }
  31057. },
  31058. dick: {
  31059. height: math.unit(0.98, "feet"),
  31060. name: "Dick",
  31061. image: {
  31062. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31063. }
  31064. },
  31065. anatomy: {
  31066. height: math.unit(2.86, "feet"),
  31067. name: "Anatomy",
  31068. image: {
  31069. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31070. }
  31071. },
  31072. },
  31073. [
  31074. {
  31075. name: "Really Small",
  31076. height: math.unit(2, "inches")
  31077. },
  31078. {
  31079. name: "Micro",
  31080. height: math.unit(5.583, "inches")
  31081. },
  31082. {
  31083. name: "Normal",
  31084. height: math.unit(5 + 7/12, "feet"),
  31085. default: true
  31086. },
  31087. {
  31088. name: "Macro",
  31089. height: math.unit(67, "feet")
  31090. },
  31091. {
  31092. name: "Megamacro",
  31093. height: math.unit(134, "feet")
  31094. },
  31095. ]
  31096. ))
  31097. characterMakers.push(() => makeCharacter(
  31098. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31099. {
  31100. front: {
  31101. height: math.unit(9, "feet"),
  31102. weight: math.unit(120, "lb"),
  31103. name: "Front",
  31104. image: {
  31105. source: "./media/characters/sally/front.svg",
  31106. extra: 1506/1349,
  31107. bottom: 66/1572
  31108. }
  31109. },
  31110. },
  31111. [
  31112. {
  31113. name: "Normal",
  31114. height: math.unit(9, "feet"),
  31115. default: true
  31116. },
  31117. ]
  31118. ))
  31119. characterMakers.push(() => makeCharacter(
  31120. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31121. {
  31122. front: {
  31123. height: math.unit(8, "feet"),
  31124. weight: math.unit(900, "lb"),
  31125. name: "Front",
  31126. image: {
  31127. source: "./media/characters/owen/front.svg",
  31128. extra: 1761/1657,
  31129. bottom: 74/1835
  31130. }
  31131. },
  31132. side: {
  31133. height: math.unit(8, "feet"),
  31134. weight: math.unit(900, "lb"),
  31135. name: "Side",
  31136. image: {
  31137. source: "./media/characters/owen/side.svg",
  31138. extra: 1797/1734,
  31139. bottom: 30/1827
  31140. }
  31141. },
  31142. back: {
  31143. height: math.unit(8, "feet"),
  31144. weight: math.unit(900, "lb"),
  31145. name: "Back",
  31146. image: {
  31147. source: "./media/characters/owen/back.svg",
  31148. extra: 1796/1706,
  31149. bottom: 59/1855
  31150. }
  31151. },
  31152. maw: {
  31153. height: math.unit(1.76, "feet"),
  31154. name: "Maw",
  31155. image: {
  31156. source: "./media/characters/owen/maw.svg"
  31157. }
  31158. },
  31159. },
  31160. [
  31161. {
  31162. name: "Normal",
  31163. height: math.unit(8, "feet"),
  31164. default: true
  31165. },
  31166. ]
  31167. ))
  31168. characterMakers.push(() => makeCharacter(
  31169. { name: "Ryth", species: ["gremlin"], tags: ["anthro"] },
  31170. {
  31171. front: {
  31172. height: math.unit(4, "feet"),
  31173. weight: math.unit(400, "lb"),
  31174. name: "Front",
  31175. image: {
  31176. source: "./media/characters/ryth/front.svg",
  31177. extra: 876/691,
  31178. bottom: 25/901
  31179. }
  31180. },
  31181. },
  31182. [
  31183. {
  31184. name: "Normal",
  31185. height: math.unit(4, "feet"),
  31186. default: true
  31187. },
  31188. ]
  31189. ))
  31190. //characters
  31191. function makeCharacters() {
  31192. const results = [];
  31193. characterMakers.forEach(character => {
  31194. results.push(character());
  31195. });
  31196. return results;
  31197. }