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.
 
 
 

34323 lines
863 KiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.volume) {
  29. views[key].attributes.volume = {
  30. name: "Volume",
  31. power: 3,
  32. type: "volume",
  33. base: value.volume
  34. };
  35. }
  36. if (value.capacity) {
  37. views[key].attributes.capacity = {
  38. name: "Capacity",
  39. power: 3,
  40. type: "volume",
  41. base: value.capacity
  42. }
  43. }
  44. });
  45. return createEntityMaker(info, views, defaultSizes);
  46. }
  47. const speciesData = {
  48. animal: {
  49. name: "Animal"
  50. },
  51. dog: {
  52. name: "Dog",
  53. parents: [
  54. "canine"
  55. ]
  56. },
  57. canine: {
  58. name: "Canine",
  59. parents: [
  60. "mammal"
  61. ]
  62. },
  63. crux: {
  64. name: "Crux",
  65. parents: [
  66. "mammal"
  67. ]
  68. },
  69. mammal: {
  70. name: "Mammal",
  71. parents: [
  72. "animal"
  73. ]
  74. },
  75. "rough-collie": {
  76. name: "Rough Collie",
  77. parents: [
  78. "dog"
  79. ]
  80. },
  81. dragon: {
  82. name: "Dragon",
  83. parents: [
  84. "reptile"
  85. ]
  86. },
  87. reptile: {
  88. name: "Reptile",
  89. parents: [
  90. "animal"
  91. ]
  92. },
  93. woodpecker: {
  94. name: "Woodpecker",
  95. parents: [
  96. "avian"
  97. ]
  98. },
  99. avian: {
  100. name: "Avian",
  101. parents: [
  102. "animal"
  103. ]
  104. },
  105. kitsune: {
  106. name: "Kitsune",
  107. parents: [
  108. "fox"
  109. ]
  110. },
  111. fox: {
  112. name: "Fox",
  113. parents: [
  114. "mammal"
  115. ]
  116. },
  117. pokemon: {
  118. name: "Pokemon"
  119. },
  120. tiger: {
  121. name: "Tiger",
  122. parents: [
  123. "cat"
  124. ]
  125. },
  126. cat: {
  127. name: "Cat",
  128. parents: [
  129. "mammal"
  130. ]
  131. },
  132. "blue-jay": {
  133. name: "Blue Jay",
  134. parents: [
  135. "avian"
  136. ]
  137. },
  138. wolf: {
  139. name: "Wolf",
  140. parents: [
  141. "mammal"
  142. ]
  143. },
  144. coyote: {
  145. name: "Coyote",
  146. parents: [
  147. "mammal"
  148. ]
  149. },
  150. raccoon: {
  151. name: "Raccoon",
  152. parents: [
  153. "mammal"
  154. ]
  155. },
  156. weasel: {
  157. name: "Weasel",
  158. parents: [
  159. "mammal"
  160. ]
  161. },
  162. "red-panda": {
  163. name: "Red Panda",
  164. parents: [
  165. "mammal"
  166. ]
  167. },
  168. dolphin: {
  169. name: "Dolphin",
  170. parents: [
  171. "mammal"
  172. ]
  173. },
  174. "african-wild-dog": {
  175. name: "African Wild Dog",
  176. parents: [
  177. "canine"
  178. ]
  179. },
  180. "hyena": {
  181. name: "Hyena",
  182. parents: [
  183. "canine"
  184. ]
  185. },
  186. "carbuncle": {
  187. name: "Carbuncle",
  188. parents: [
  189. "animal"
  190. ]
  191. },
  192. bat: {
  193. name: "Bat",
  194. parents: [
  195. "mammal"
  196. ]
  197. },
  198. "leaf-nosed-bat": {
  199. name: "Leaf-Nosed Bat",
  200. parents: [
  201. "bat"
  202. ]
  203. },
  204. "fish": {
  205. name: "Fish",
  206. parents: [
  207. "animal"
  208. ]
  209. },
  210. "ram": {
  211. name: "Ram",
  212. parents: [
  213. "mammal"
  214. ]
  215. },
  216. "demon": {
  217. name: "Demon"
  218. },
  219. "cougar": {
  220. name: "Cougar",
  221. parents: [
  222. "cat"
  223. ]
  224. },
  225. "goat": {
  226. name: "Goat",
  227. parents: [
  228. "mammal"
  229. ]
  230. },
  231. "lion": {
  232. name: "Lion",
  233. parents: [
  234. "cat"
  235. ]
  236. },
  237. "harpy-eager": {
  238. name: "Harpy Eagle",
  239. parents: [
  240. "avian"
  241. ]
  242. },
  243. "deer": {
  244. name: "Deer",
  245. parents: [
  246. "mammal"
  247. ]
  248. },
  249. "phoenix": {
  250. name: "Phoenix",
  251. parents: [
  252. "avian"
  253. ]
  254. },
  255. "aeromorph": {
  256. name: "Aeromorph",
  257. parents: [
  258. "machine"
  259. ]
  260. },
  261. "machine": {
  262. name: "Machine",
  263. },
  264. "android": {
  265. name: "Android",
  266. parents: [
  267. "machine"
  268. ]
  269. },
  270. "jackal": {
  271. name: "Jackal",
  272. parents: [
  273. "canine"
  274. ]
  275. },
  276. "corvid": {
  277. name: "Corvid",
  278. parents: [
  279. "avian"
  280. ]
  281. },
  282. "pharaoh-hound": {
  283. name: "Pharaoh Hound",
  284. parents: [
  285. "dog"
  286. ]
  287. },
  288. "skunk": {
  289. name: "Skunk",
  290. parents: [
  291. "mammal"
  292. ]
  293. },
  294. "shark": {
  295. name: "Shark",
  296. parents: [
  297. "fish"
  298. ]
  299. },
  300. "black-panther": {
  301. name: "Black Panther",
  302. parents: [
  303. "cat"
  304. ]
  305. },
  306. "umbra": {
  307. name: "Umbra",
  308. parents: [
  309. "animal"
  310. ]
  311. },
  312. "raven": {
  313. name: "Raven",
  314. parents: [
  315. "corvid"
  316. ]
  317. },
  318. "snow-leopard": {
  319. name: "Snow Leopard",
  320. parents: [
  321. "cat"
  322. ]
  323. },
  324. "barbary-lion": {
  325. name: "Barbary Lion",
  326. parents: [
  327. "lion"
  328. ]
  329. },
  330. "dra'gal": {
  331. name: "Dra'Gal",
  332. parents: [
  333. "mammal"
  334. ]
  335. },
  336. "german-shepherd": {
  337. name: "German Shepherd",
  338. parents: [
  339. "dog"
  340. ]
  341. },
  342. "bayleef": {
  343. name: "Bayleef",
  344. parents: [
  345. "pokemon"
  346. ]
  347. },
  348. "mouse": {
  349. name: "Mouse",
  350. parents: [
  351. "rodent"
  352. ]
  353. },
  354. "rat": {
  355. name: "Rat",
  356. parents: [
  357. "mammal"
  358. ]
  359. },
  360. "hoshiko-beast": {
  361. name: "Hoshiko Beast",
  362. parents: ["animal"]
  363. },
  364. "snow-jugani": {
  365. name: "Snow Jugani",
  366. parents: ["cat"]
  367. },
  368. "patamon": {
  369. name: "Patamon",
  370. parents: ["digimon"]
  371. },
  372. "digimon": {
  373. name: "Digimon",
  374. },
  375. "jugani": {
  376. name: "Jugani",
  377. parents: ["cat"]
  378. },
  379. "luxray": {
  380. name: "Luxray",
  381. parents: ["pokemon"]
  382. },
  383. "mech": {
  384. name: "Mech",
  385. parents: ["machine"]
  386. },
  387. "zoid": {
  388. name: "Zoid",
  389. parents: ["mech"]
  390. },
  391. "monster": {
  392. name: "Monster",
  393. parents: ["animal"]
  394. },
  395. "foo-dog": {
  396. name: "Foo Dog",
  397. parents: ["mammal"]
  398. },
  399. "elephant": {
  400. name: "Elephant",
  401. parents: ["mammal"]
  402. },
  403. "eagle": {
  404. name: "Eagle",
  405. parents: ["avian"]
  406. },
  407. "cow": {
  408. name: "Cow",
  409. parents: ["mammal"]
  410. },
  411. "crocodile": {
  412. name: "Crocodile",
  413. parents: ["reptile"]
  414. },
  415. "borzoi": {
  416. name: "Borzoi",
  417. parents: ["dog"]
  418. },
  419. "snake": {
  420. name: "Snake",
  421. parents: ["reptile"]
  422. },
  423. "horned-bush-viper": {
  424. name: "Horned Bush Viper",
  425. parents: ["snake"]
  426. },
  427. "cobra": {
  428. name: "Cobra",
  429. parents: ["snake"]
  430. },
  431. "harpy-eagle": {
  432. name: "Harpy Eagle",
  433. parents: ["eagle"]
  434. },
  435. "raptor": {
  436. name: "Raptor",
  437. parents: ["dinosaur"]
  438. },
  439. "dinosaur": {
  440. name: "Dinosaur",
  441. parents: ["reptile"]
  442. },
  443. "veilhound": {
  444. name: "Veilhound",
  445. parents: ["hellhound", "demon"]
  446. },
  447. "hellhound": {
  448. name: "Hellhound",
  449. parents: ["canine"]
  450. },
  451. "insect": {
  452. name: "Insect",
  453. parents: ["animal"]
  454. },
  455. "beetle": {
  456. name: "Beetle",
  457. parents: ["insect"]
  458. },
  459. "moth": {
  460. name: "Moth",
  461. parents: ["insect"]
  462. },
  463. "eastern-dragon": {
  464. name: "Eastern Dragon",
  465. parents: ["dragon"]
  466. },
  467. "jaguar": {
  468. name: "Jaguar",
  469. parents: ["cat"]
  470. },
  471. "horse": {
  472. name: "Horse",
  473. parents: ["mammal"]
  474. },
  475. "sergal": {
  476. name: "Sergal",
  477. parents: ["mammal"]
  478. },
  479. "gryphon": {
  480. name: "Gryphon",
  481. parents: ["lion", "eagle"]
  482. },
  483. "robot": {
  484. name: "Robot",
  485. parents: ["machine"]
  486. },
  487. "medihound": {
  488. name: "Medihound",
  489. parents: ["robot", "dog"]
  490. },
  491. "sylveon": {
  492. name: "Sylveon",
  493. parents: ["pokemon"]
  494. },
  495. "catgirl": {
  496. name: "Catgirl",
  497. parents: ["mammal"]
  498. },
  499. "cowgirl": {
  500. name: "Cowgirl",
  501. parents: ["mammal"]
  502. },
  503. "pony": {
  504. name: "Pony",
  505. parents: ["horse"]
  506. },
  507. "rabbit": {
  508. name: "Rabbit",
  509. parents: ["mammal"]
  510. },
  511. "fennec-fox": {
  512. name: "Fennec Fox",
  513. parents: ["fox"]
  514. },
  515. "azodian": {
  516. name: "Azodian",
  517. parents: ["mouse"]
  518. },
  519. "shiba-inu": {
  520. name: "Shiba Inu",
  521. parents: ["dog"]
  522. },
  523. "changeling": {
  524. name: "Changeling",
  525. parents: ["insect"]
  526. },
  527. "cheetah": {
  528. name: "Cheetah",
  529. parents: ["cat"]
  530. },
  531. "golden-jackal": {
  532. name: "Golden Jackal",
  533. parents: ["jackal"]
  534. },
  535. "manectric": {
  536. name: "Manectric",
  537. parents: ["pokemon"]
  538. },
  539. "rat": {
  540. name: "Rat",
  541. parents: ["rodent"]
  542. },
  543. "rodent": {
  544. name: "Rodent",
  545. parents: ["mammal"]
  546. },
  547. "octocoon": {
  548. name: "Octocoon",
  549. parents: ["raccoon", "octopus"]
  550. },
  551. "octopus": {
  552. name: "Octopus",
  553. parents: ["fish"]
  554. },
  555. "werewolf": {
  556. name: "Werewolf",
  557. parents: ["wolf"]
  558. },
  559. "meerkat": {
  560. name: "Meerkat",
  561. parents: ["mammal"]
  562. },
  563. "human": {
  564. name: "Human",
  565. parents: ["mammal"]
  566. },
  567. "geth": {
  568. name: "Geth",
  569. parents: ["android"]
  570. },
  571. "husky": {
  572. name: "Husky",
  573. parents: ["dog"]
  574. },
  575. "long-eared-bat": {
  576. name: "Long Eared Bat",
  577. parents: ["bat"]
  578. },
  579. "lizard": {
  580. name: "Lizard",
  581. parents: ["reptile"]
  582. },
  583. "salamander": {
  584. name: "Salamander",
  585. parents: ["lizard"]
  586. },
  587. "chameleon": {
  588. name: "Chameleon",
  589. parents: ["lizard"]
  590. },
  591. "gecko": {
  592. name: "Gecko",
  593. parents: ["lizard"]
  594. },
  595. "kobold": {
  596. name: "Kobold",
  597. parents: ["reptile"]
  598. },
  599. "charizard": {
  600. name: "Charizard",
  601. parents: ["pokemon"]
  602. },
  603. "lugia": {
  604. name: "Lugia",
  605. parents: ["pokemon"]
  606. },
  607. "cerberus": {
  608. name: "Cerberus",
  609. parents: ["dog"]
  610. },
  611. "tyrantrum": {
  612. name: "Tyrantrum",
  613. parents: ["pokemon"]
  614. },
  615. "lemur": {
  616. name: "Lemur",
  617. parents: ["mammal"]
  618. },
  619. "kelpie": {
  620. name: "Kelpie",
  621. parents: ["horse", "monster"]
  622. },
  623. "labrador": {
  624. name: "Labrador",
  625. parents: ["dog"]
  626. },
  627. "sylveon": {
  628. name: "Sylveon",
  629. parents: ["eeveelution"]
  630. },
  631. "eeveelution": {
  632. name: "Eeveelution",
  633. parents: ["pokemon"]
  634. },
  635. "polar-bear": {
  636. name: "Polar Bear",
  637. parents: ["bear"]
  638. },
  639. "bear": {
  640. name: "Bear",
  641. parents: ["mammal"]
  642. },
  643. "absol": {
  644. name: "Absol",
  645. parents: ["pokemon"]
  646. },
  647. "wolver": {
  648. name: "Wolver",
  649. parents: ["mammal"]
  650. },
  651. "rottweiler": {
  652. name: "Rottweiler",
  653. parents: ["dog"]
  654. },
  655. "zebra": {
  656. name: "Zebra",
  657. parents: ["horse"]
  658. },
  659. "yoshi": {
  660. name: "Yoshi",
  661. parents: ["lizard"]
  662. },
  663. "lynx": {
  664. name: "Lynx",
  665. parents: ["cat"]
  666. },
  667. "unknown": {
  668. name: "Unknown",
  669. parents: []
  670. },
  671. "thylacine": {
  672. name: "Thylacine",
  673. parents: ["mammal"]
  674. },
  675. "gabumon": {
  676. name: "Gabumon",
  677. parents: ["digimon"]
  678. },
  679. "border-collie": {
  680. name: "Border Collie",
  681. parents: ["dog"]
  682. },
  683. "imp": {
  684. name: "Imp",
  685. parents: ["demon"]
  686. },
  687. "kangaroo": {
  688. name: "Kangaroo",
  689. parents: ["mammal"]
  690. },
  691. "renamon": {
  692. name: "Renamon",
  693. parents: ["digimon"]
  694. },
  695. "candy-orca-dragon": {
  696. name: "Candy Orca Dragon",
  697. parents: ["fish", "dragon", "candy"]
  698. },
  699. "sabertooth-tiger": {
  700. name: "Sabertooth Tiger",
  701. parents: ["cat"]
  702. },
  703. "espurr": {
  704. name: "Espurr",
  705. parents: ["pokemon"]
  706. },
  707. "otter": {
  708. name: "Otter",
  709. parents: ["mammal"]
  710. },
  711. "elemental": {
  712. name: "Elemental",
  713. parents: ["mammal"]
  714. },
  715. "mew": {
  716. name: "Mew",
  717. parents: ["pokemon"]
  718. },
  719. "goodra": {
  720. name: "Goodra",
  721. parents: ["pokemon"]
  722. },
  723. "fairy": {
  724. name: "Fairy",
  725. parents: ["magical"]
  726. },
  727. "typhlosion": {
  728. name: "Typhlosion",
  729. parents: ["pokemon"]
  730. },
  731. "magical": {
  732. name: "Magical",
  733. parents: []
  734. },
  735. "xenomorph": {
  736. name: "Xenomorph",
  737. parents: ["monster", "alien"]
  738. },
  739. "charr": {
  740. name: "Charr",
  741. parents: ["cat"]
  742. },
  743. "siberian-husky": {
  744. name: "Siberian Husky",
  745. parents: ["husky"]
  746. },
  747. "alligator": {
  748. name: "Alligator",
  749. parents: ["reptile"]
  750. },
  751. "bernese-mountain-dog": {
  752. name: "Bernese Mountain Dog",
  753. parents: ["dog"]
  754. },
  755. "reshiram": {
  756. name: "Reshiram",
  757. parents: ["pokemon"]
  758. },
  759. "grizzly-bear": {
  760. name: "Grizzly Bear",
  761. parents: ["bear"]
  762. },
  763. "water-monitor": {
  764. name: "Water Monitor",
  765. parents: ["lizard"]
  766. },
  767. "banchofossa": {
  768. name: "Banchofossa",
  769. parents: ["mammal"]
  770. },
  771. "kirin": {
  772. name: "Kirin",
  773. parents: ["monster"]
  774. },
  775. "quilava": {
  776. name: "Quilava",
  777. parents: ["pokemon"]
  778. },
  779. "seviper": {
  780. name: "Seviper",
  781. parents: ["pokemon"]
  782. },
  783. "flying-fox": {
  784. name: "Flying Fox",
  785. parents: ["bat"]
  786. },
  787. "keynain": {
  788. name: "Keynain",
  789. parents: ["avian"]
  790. },
  791. "lucario": {
  792. name: "Lucario",
  793. parents: ["pokemon"]
  794. },
  795. "siamese-cat": {
  796. name: "Siamese Cat",
  797. parents: ["cat"]
  798. },
  799. "spider": {
  800. name: "Spider",
  801. parents: ["insect"]
  802. },
  803. "samurott": {
  804. name: "Samurott",
  805. parents: ["pokemon"]
  806. },
  807. "megalodon": {
  808. name: "Megalodon",
  809. parents: ["shark"]
  810. },
  811. "unicorn": {
  812. name: "Unicorn",
  813. parents: ["horse"]
  814. },
  815. "greninja": {
  816. name: "Greninja",
  817. parents: ["pokemon"]
  818. },
  819. "water-dragon": {
  820. name: "Water Dragon",
  821. parents: ["dragon"]
  822. },
  823. "cross-fox": {
  824. name: "Cross Fox",
  825. parents: ["fox"]
  826. },
  827. "synth": {
  828. name: "Synth",
  829. parents: ["machine"]
  830. },
  831. "construct": {
  832. name: "Construct",
  833. parents: []
  834. },
  835. "mexican-wolf": {
  836. name: "Mexican Wolf",
  837. parents: ["wolf"]
  838. },
  839. "leopard": {
  840. name: "Leopard",
  841. parents: ["cat"]
  842. },
  843. "pig": {
  844. name: "Pig",
  845. parents: ["mammal"]
  846. },
  847. "ampharos": {
  848. name: "Ampharos",
  849. parents: ["pokemon"]
  850. },
  851. "orca": {
  852. name: "Orca",
  853. parents: ["fish"]
  854. },
  855. "lycanroc": {
  856. name: "Lycanroc",
  857. parents: ["pokemon"]
  858. },
  859. "surkanu": {
  860. name: "Surkanu",
  861. parents: ["monster"]
  862. },
  863. "seal": {
  864. name: "Seal",
  865. parents: ["mammal"]
  866. },
  867. "keldeo": {
  868. name: "Keldeo",
  869. parents: ["pokemon"]
  870. },
  871. "great-dane": {
  872. name: "Great Dane",
  873. parents: ["dog"]
  874. },
  875. "black-backed-jackal": {
  876. name: "Black Backed Jackal",
  877. parents: ["jackal"]
  878. },
  879. "sheep": {
  880. name: "Sheep",
  881. parents: ["mammal"]
  882. },
  883. "leopard-seal": {
  884. name: "Leopard Seal",
  885. parents: ["seal"]
  886. },
  887. "zoroark": {
  888. name: "Zoroark",
  889. parents: ["pokemon"]
  890. },
  891. "maned-wolf": {
  892. name: "Maned Wolf",
  893. parents: ["canine"]
  894. },
  895. "dracha": {
  896. name: "Dracha",
  897. parents: ["dragon"]
  898. },
  899. "wolxi": {
  900. name: "Wolxi",
  901. parents: ["mammal", "alien"]
  902. },
  903. "dratini": {
  904. name: "Dratini",
  905. parents: ["pokemon", "dragon"]
  906. },
  907. "skaven": {
  908. name: "Skaven",
  909. parents: ["rat"]
  910. },
  911. "mongoose": {
  912. name: "Mongoose",
  913. parents: ["mammal"]
  914. },
  915. "lopunny": {
  916. name: "Lopunny",
  917. parents: ["pokemon", "rabbit"]
  918. },
  919. "feraligatr": {
  920. name: "Feraligatr",
  921. parents: ["pokemon", "alligator"]
  922. },
  923. "houndoom": {
  924. name: "Houndoom",
  925. parents: ["pokemon", "dog"]
  926. },
  927. "protogen": {
  928. name: "Protogen",
  929. parents: ["machine"]
  930. },
  931. "saint-bernard": {
  932. name: "Saint Bernard",
  933. parents: ["dog"]
  934. },
  935. "crow": {
  936. name: "Crow",
  937. parents: ["corvid"]
  938. },
  939. "delphox": {
  940. name: "Delphox",
  941. parents: ["pokemon", "fox"]
  942. },
  943. "moose": {
  944. name: "Moose",
  945. parents: ["mammal"]
  946. },
  947. "joraxian": {
  948. name: "Joraxian",
  949. parents: ["monster", "canine", "demon"]
  950. },
  951. "nimbat": {
  952. name: "Nimbat",
  953. parents: ["mammal"]
  954. },
  955. "aardwolf": {
  956. name: "Aardwolf",
  957. parents: ["canine"]
  958. },
  959. "fluudrani": {
  960. name: "Fluudrani",
  961. parents: ["animal"]
  962. },
  963. "arcanine": {
  964. name: "Arcanine",
  965. parents: ["pokemon", "dog"]
  966. },
  967. "inteleon": {
  968. name: "Inteleon",
  969. parents: ["pokemon", "fish"]
  970. },
  971. "ninetales": {
  972. name: "Ninetales",
  973. parents: ["pokemon", "kitsune"]
  974. },
  975. "tigrex": {
  976. name: "Tigrex",
  977. parents: ["tiger"]
  978. },
  979. "zorua": {
  980. name: "Zorua",
  981. parents: ["pokemon", "fox"]
  982. },
  983. "vulpix": {
  984. name: "Vulpix",
  985. parents: ["pokemon", "fox"]
  986. },
  987. "barghest": {
  988. name: "Barghest",
  989. parents: ["monster"]
  990. },
  991. "gray-wolf": {
  992. name: "Gray Wolf",
  993. parents: ["wolf"]
  994. },
  995. "ruppells-fox": {
  996. name: "Rüppell's Fox",
  997. parents: ["fox"]
  998. },
  999. "bull-terrier": {
  1000. name: "Bull Terrier",
  1001. parents: ["dog"]
  1002. },
  1003. "european-honey-buzzard": {
  1004. name: "European Honey Buzzard",
  1005. parents: ["avian"]
  1006. },
  1007. "t-rex": {
  1008. name: "T Rex",
  1009. parents: ["dinosaur"]
  1010. },
  1011. "mactarian": {
  1012. name: "Mactarian",
  1013. parents: ["shark", "monster"]
  1014. },
  1015. "mewtwo-y": {
  1016. name: "Mewtwo Y",
  1017. parents: ["mewtwo"]
  1018. },
  1019. "mewtwo": {
  1020. name: "Mewtwo",
  1021. parents: ["pokemon"]
  1022. },
  1023. "mew": {
  1024. name: "Mew",
  1025. parents: ["pokemon"]
  1026. },
  1027. "eevee": {
  1028. name: "Eevee",
  1029. parents: ["eeveelution"]
  1030. },
  1031. "mienshao": {
  1032. name: "Mienshao",
  1033. parents: ["pokemon"]
  1034. },
  1035. "sugar-glider": {
  1036. name: "Sugar Glider",
  1037. parents: ["opossum"]
  1038. },
  1039. "spectral-bat": {
  1040. name: "Spectral Bat",
  1041. parents: ["bat"]
  1042. },
  1043. "scolipede": {
  1044. name: "Scolipede",
  1045. parents: ["pokemon", "insect"]
  1046. },
  1047. "jackalope": {
  1048. name: "Jackalope",
  1049. parents: ["rabbit", "antelope"]
  1050. },
  1051. "caracal": {
  1052. name: "Caracal",
  1053. parents: ["cat"]
  1054. },
  1055. "stoat": {
  1056. name: "Stoat",
  1057. parents: ["mammal"]
  1058. },
  1059. "african-golden-cat": {
  1060. name: "African Golden Cat",
  1061. parents: ["cat"]
  1062. },
  1063. "gigantosaurus": {
  1064. name: "Gigantosaurus",
  1065. parents: ["dinosaur"]
  1066. },
  1067. "zorgoia": {
  1068. name: "Zorgoia",
  1069. parents: ["mammal"]
  1070. },
  1071. "monitor-lizard": {
  1072. name: "Monitor Lizard",
  1073. parents: ["lizard"]
  1074. },
  1075. "ziralkia": {
  1076. name: "Ziralkia",
  1077. parents: ["mammal"]
  1078. },
  1079. "kiiasi": {
  1080. name: "Kiiasi",
  1081. parents: ["animal"]
  1082. },
  1083. "synx": {
  1084. name: "Synx",
  1085. parents: ["monster"]
  1086. },
  1087. "panther": {
  1088. name: "Panther",
  1089. parents: ["cat"]
  1090. },
  1091. "azumarill": {
  1092. name: "Azumarill",
  1093. parents: ["pokemon"]
  1094. },
  1095. "river-snaptail": {
  1096. name: "River Snaptail",
  1097. parents: ["otter", "crocodile"]
  1098. },
  1099. "great-blue-heron": {
  1100. name: "Great Blue Heron",
  1101. parents: ["avian"]
  1102. },
  1103. "smeargle": {
  1104. name: "Smeargle",
  1105. parents: ["pokemon"]
  1106. },
  1107. "vendeilen": {
  1108. name: "Vendeilen",
  1109. parents: ["monster"]
  1110. },
  1111. "ventura": {
  1112. name: "Ventura",
  1113. parents: ["canine"]
  1114. },
  1115. "clouded-leopard": {
  1116. name: "Clouded Leopard",
  1117. parents: ["leopard"]
  1118. },
  1119. "argonian": {
  1120. name: "Argonian",
  1121. parents: ["lizard"]
  1122. },
  1123. "salazzle": {
  1124. name: "Salazzle",
  1125. parents: ["pokemon", "lizard"]
  1126. },
  1127. "je-stoff-drachen": {
  1128. name: "Je-Stoff Drachen",
  1129. parents: ["dragon"]
  1130. },
  1131. "finnish-spitz-dog": {
  1132. name: "Finnish Spitz Dog",
  1133. parents: ["dog"]
  1134. },
  1135. "gray-fox": {
  1136. name: "Gray Fox",
  1137. parents: ["fox"]
  1138. },
  1139. "opossum": {
  1140. name: "opossum",
  1141. parents: ["mammal"]
  1142. },
  1143. "antelope": {
  1144. name: "Antelope",
  1145. parents: ["mammal"]
  1146. },
  1147. "weavile": {
  1148. name: "Weavile",
  1149. parents: ["pokemon"]
  1150. },
  1151. "pikachu": {
  1152. name: "Pikachu",
  1153. parents: ["pokemon", "mouse"]
  1154. },
  1155. "grovyle": {
  1156. name: "Grovyle",
  1157. parents: ["pokemon", "plant"]
  1158. },
  1159. "sthara": {
  1160. name: "Sthara",
  1161. parents: ["snow-leopard", "reptile"]
  1162. },
  1163. "star-warrior": {
  1164. name: "Star Warrior",
  1165. parents: ["magical"]
  1166. },
  1167. "dragonoid": {
  1168. name: "Dragonoid",
  1169. parents: ["dragon"]
  1170. },
  1171. "suicune": {
  1172. name: "Suicune",
  1173. parents: ["pokemon"]
  1174. },
  1175. "vole": {
  1176. name: "Vole",
  1177. parents: ["mammal"]
  1178. },
  1179. "blaziken": {
  1180. name: "Blaziken",
  1181. parents: ["pokemon", "avian"]
  1182. },
  1183. "buizel": {
  1184. name: "Buizel",
  1185. parents: ["pokemon", "fish"]
  1186. },
  1187. "floatzel": {
  1188. name: "Floatzel",
  1189. parents: ["pokemon", "fish"]
  1190. },
  1191. "umok": {
  1192. name: "Umok",
  1193. parents: ["avian"]
  1194. },
  1195. "sea-monster": {
  1196. name: "Sea Monster",
  1197. parents: ["monster", "fish"]
  1198. },
  1199. "egyptian-vulture": {
  1200. name: "Egyptian Vulture",
  1201. parents: ["avian"]
  1202. },
  1203. "doberman": {
  1204. name: "Doberman",
  1205. parents: ["dog"]
  1206. },
  1207. "zangoose": {
  1208. name: "Zangoose",
  1209. parents: ["pokemon", "mongoose"]
  1210. },
  1211. "mongoose": {
  1212. name: "Mongoose",
  1213. parents: ["mammal"]
  1214. },
  1215. "wickerbeast": {
  1216. name: "Wickerbeast",
  1217. parents: ["monster"]
  1218. },
  1219. "zenari": {
  1220. name: "Zenari",
  1221. parents: ["lizard"]
  1222. },
  1223. "plant": {
  1224. name: "Plant",
  1225. parents: []
  1226. },
  1227. "raskatox": {
  1228. name: "Raskatox",
  1229. parents: ["raccoon", "skunk", "cat", "fox"]
  1230. },
  1231. "mikromare": {
  1232. name: "mikromare",
  1233. parents: ["alien"]
  1234. },
  1235. "alien": {
  1236. name: "Alien",
  1237. parents: ["animal"]
  1238. },
  1239. "deity": {
  1240. name: "Deity",
  1241. parents: []
  1242. },
  1243. "skarlan": {
  1244. name: "Skarlan",
  1245. parents: ["slug", "dragon"]
  1246. },
  1247. "slug": {
  1248. name: "Slug",
  1249. parents: ["mollusk"]
  1250. },
  1251. "mollusk": {
  1252. name: "Mollusk",
  1253. parents: ["animal"]
  1254. },
  1255. "chimera": {
  1256. name: "Chimera",
  1257. parents: ["monster"]
  1258. },
  1259. "gestalt": {
  1260. name: "Gestalt",
  1261. parents: ["construct"]
  1262. },
  1263. "mimic": {
  1264. name: "Mimic",
  1265. parents: ["monster"]
  1266. },
  1267. "calico-rat": {
  1268. name: "Calico Rat",
  1269. parents: ["rat"]
  1270. },
  1271. "panda": {
  1272. name: "Panda",
  1273. parents: ["mammal"]
  1274. },
  1275. "oni": {
  1276. name: "Oni",
  1277. parents: ["monster"]
  1278. },
  1279. "pegasus": {
  1280. name: "Pegasus",
  1281. parents: ["horse"]
  1282. },
  1283. "vulpera": {
  1284. name: "Vulpera",
  1285. parents: ["fennec-fox"]
  1286. },
  1287. "ceratosaurus": {
  1288. name: "Ceratosaurus",
  1289. parents: ["dinosaur"]
  1290. },
  1291. "nykur": {
  1292. name: "Nykur",
  1293. parents: ["horse", "monster"]
  1294. },
  1295. "giraffe": {
  1296. name: "Giraffe",
  1297. parents: ["mammal"]
  1298. },
  1299. "tauren": {
  1300. name: "Tauren",
  1301. parents: ["cow"]
  1302. },
  1303. "draconi": {
  1304. name: "Draconi",
  1305. parents: ["alien", "cat", "cyborg"]
  1306. },
  1307. "dire-wolf": {
  1308. name: "Dire Wolf",
  1309. parents: ["wolf"]
  1310. },
  1311. "ferromorph": {
  1312. name: "Ferromorph",
  1313. parents: ["construct"]
  1314. },
  1315. "meowth": {
  1316. name: "Meowth",
  1317. parents: ["cat", "pokemon"]
  1318. },
  1319. "pavodragon": {
  1320. name: "Pavodragon",
  1321. parents: ["dragon"]
  1322. },
  1323. "aaltranae": {
  1324. name: "Aaltranae",
  1325. parents: ["dragon"]
  1326. },
  1327. "cyborg": {
  1328. name: "Cyborg",
  1329. parents: ["machine"]
  1330. },
  1331. "draptor": {
  1332. name: "Draptor",
  1333. parents: ["dragon"]
  1334. },
  1335. "candy": {
  1336. name: "Candy",
  1337. parents: []
  1338. },
  1339. "drenath": {
  1340. name: "Drenath",
  1341. parents: ["dragon", "snake", "rabbit"]
  1342. },
  1343. "coyju": {
  1344. name: "Coyju",
  1345. parents: ["coyote", "kaiju"]
  1346. },
  1347. "kaiju": {
  1348. name: "Kaiju",
  1349. parents: ["monster"]
  1350. },
  1351. "nickit": {
  1352. name: "Nickit",
  1353. parents: ["pokemon", "cat"]
  1354. },
  1355. "lopunny": {
  1356. name: "Lopunny",
  1357. parents: ["pokemon", "rabbit"]
  1358. },
  1359. "korean-jindo-dog": {
  1360. name: "Korean Jindo Dog",
  1361. parents: ["dog"]
  1362. },
  1363. "naga": {
  1364. name: "Naga",
  1365. parents: ["snake", "monster"]
  1366. },
  1367. "undead": {
  1368. name: "Undead",
  1369. parents: ["monster"]
  1370. },
  1371. "whale": {
  1372. name: "Whale",
  1373. parents: ["fish"]
  1374. },
  1375. "gelato-bee": {
  1376. name: "Gelato Bee",
  1377. parents: ["bee"]
  1378. },
  1379. "bee": {
  1380. name: "Bee",
  1381. parents: ["insect"]
  1382. },
  1383. "gardevoir": {
  1384. name: "Gardevoir",
  1385. parents: ["pokemon"]
  1386. },
  1387. "ant": {
  1388. name: "Ant",
  1389. parents: ["insect"]
  1390. },
  1391. "frog": {
  1392. name: "Frog",
  1393. parents: ["amphibian"]
  1394. },
  1395. "amphibian": {
  1396. name: "Amphibian",
  1397. parents: ["animal"]
  1398. },
  1399. "pangolin": {
  1400. name: "Pangolin",
  1401. parents: ["mammal"]
  1402. },
  1403. "uragi'viidorn": {
  1404. name: "Uragi'viidorn",
  1405. parents: ["avian", "bear"]
  1406. },
  1407. "gryphdelphais": {
  1408. name: "Gryphdelphais",
  1409. parents: ["dolphin", "gryphon"]
  1410. },
  1411. "plush": {
  1412. name: "Plush",
  1413. parents: ["construct"]
  1414. },
  1415. "draiger": {
  1416. name: "Draiger",
  1417. parents: ["dragon","tiger"]
  1418. },
  1419. "foxsky": {
  1420. name: "Foxsky",
  1421. parents: ["fox", "husky"]
  1422. },
  1423. "umbreon": {
  1424. name: "Umbreon",
  1425. parents: ["eeveelution"]
  1426. },
  1427. "slime-dragon": {
  1428. name: "Slime Dragon",
  1429. parents: ["dragon"]
  1430. },
  1431. "enderman": {
  1432. name: "Enderman",
  1433. parents: ["monster"]
  1434. },
  1435. "gremlin": {
  1436. name: "Gremlin",
  1437. parents: ["monster"]
  1438. },
  1439. "dragonsune": {
  1440. name: "Dragonsune",
  1441. parents: ["dragon", "kitsune"]
  1442. },
  1443. "ghost": {
  1444. name: "Ghost",
  1445. parents: ["monster"]
  1446. },
  1447. "false-vampire-bat": {
  1448. name: "False Vampire Bat",
  1449. parents: ["bat"]
  1450. },
  1451. "succubus": {
  1452. name: "Succubus",
  1453. parents: ["demon"]
  1454. },
  1455. "mia": {
  1456. name: "Mia",
  1457. parents: ["canine"]
  1458. },
  1459. "rainbow": {
  1460. name: "Rainbow",
  1461. parents: ["monster"]
  1462. },
  1463. "solgaleo": {
  1464. name: "Solgaleo",
  1465. parents: ["pokemon"]
  1466. },
  1467. "lucent-nargacuga": {
  1468. name: "Lucent Nargacuga",
  1469. parents: ["monster-hunter"]
  1470. },
  1471. "monster-hunter": {
  1472. name: "Monster Hunter",
  1473. parents: ["monster"]
  1474. },
  1475. "leviathan": {
  1476. "name": "Leviathan",
  1477. "url": "sea-monster"
  1478. },
  1479. "bull": {
  1480. name: "Bull",
  1481. parents: ["mammal"]
  1482. },
  1483. "tanuki": {
  1484. name: "Tanuki",
  1485. parents: ["monster"]
  1486. },
  1487. "chakat": {
  1488. name: "Chakat",
  1489. parents: ["cat"]
  1490. },
  1491. "hydra": {
  1492. name: "Hydra",
  1493. parents: ["monster"]
  1494. },
  1495. "zigzagoon": {
  1496. name: "Zigzagoon",
  1497. parents: ["raccoon", "pokemon"]
  1498. },
  1499. }
  1500. //species
  1501. function getSpeciesInfo(speciesList) {
  1502. let result = new Set();
  1503. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1504. result.add(entry)
  1505. });
  1506. return Array.from(result);
  1507. };
  1508. function getSpeciesInfoHelper(species) {
  1509. if (!speciesData[species]) {
  1510. console.warn(species + " doesn't exist");
  1511. return [];
  1512. }
  1513. if (speciesData[species].parents) {
  1514. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1515. } else {
  1516. return [species];
  1517. }
  1518. }
  1519. characterMakers.push(() => makeCharacter(
  1520. {
  1521. name: "Fen",
  1522. species: ["crux"],
  1523. description: {
  1524. title: "Bio",
  1525. text: "Very furry. Sheds on everything."
  1526. },
  1527. tags: [
  1528. "anthro",
  1529. "goo"
  1530. ]
  1531. },
  1532. {
  1533. back: {
  1534. height: math.unit(2.2428, "meter"),
  1535. weight: math.unit(124.738, "kg"),
  1536. name: "Back",
  1537. image: {
  1538. source: "./media/characters/fen/back.svg",
  1539. extra: 2024 / 1867,
  1540. bottom: 13 / 2037
  1541. },
  1542. info: {
  1543. description: {
  1544. mode: "append",
  1545. text: "\n\nHe is not currently looking at you."
  1546. }
  1547. }
  1548. },
  1549. full: {
  1550. height: math.unit(1.34, "meter"),
  1551. weight: math.unit(225, "kg"),
  1552. name: "Full",
  1553. image: {
  1554. source: "./media/characters/fen/full.svg"
  1555. },
  1556. info: {
  1557. description: {
  1558. mode: "append",
  1559. text: "\n\nMunch."
  1560. }
  1561. }
  1562. },
  1563. kneeling: {
  1564. height: math.unit(5.4, "feet"),
  1565. weight: math.unit(124.738, "kg"),
  1566. name: "Kneeling",
  1567. image: {
  1568. source: "./media/characters/fen/kneeling.svg",
  1569. extra: 563 / 507
  1570. }
  1571. },
  1572. goo: {
  1573. height: math.unit(2.8, "feet"),
  1574. weight: math.unit(125, "kg"),
  1575. capacity: math.unit(1, "people"),
  1576. name: "Goo",
  1577. image: {
  1578. source: "./media/characters/fen/goo.svg",
  1579. bottom: 116 / 613
  1580. }
  1581. },
  1582. lounging: {
  1583. height: math.unit(6.5, "feet"),
  1584. weight: math.unit(125, "kg"),
  1585. name: "Lounging",
  1586. image: {
  1587. source: "./media/characters/fen/lounging.svg"
  1588. }
  1589. },
  1590. },
  1591. [
  1592. {
  1593. name: "Normal",
  1594. height: math.unit(2.2428, "meter")
  1595. },
  1596. {
  1597. name: "Big",
  1598. height: math.unit(12, "feet")
  1599. },
  1600. {
  1601. name: "Minimacro",
  1602. height: math.unit(40, "feet"),
  1603. default: true,
  1604. info: {
  1605. description: {
  1606. mode: "append",
  1607. text: "\n\nTOO DAMN BIG"
  1608. }
  1609. }
  1610. },
  1611. {
  1612. name: "Macro",
  1613. height: math.unit(100, "feet"),
  1614. info: {
  1615. description: {
  1616. mode: "append",
  1617. text: "\n\nTOO DAMN BIG"
  1618. }
  1619. }
  1620. },
  1621. {
  1622. name: "Macro+",
  1623. height: math.unit(300, "feet")
  1624. },
  1625. {
  1626. name: "Megamacro",
  1627. height: math.unit(2, "miles")
  1628. }
  1629. ]
  1630. ))
  1631. characterMakers.push(() => makeCharacter(
  1632. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1633. {
  1634. front: {
  1635. height: math.unit(183, "cm"),
  1636. weight: math.unit(80, "kg"),
  1637. name: "Front",
  1638. image: {
  1639. source: "./media/characters/sofia-fluttertail/front.svg",
  1640. bottom: 0.01,
  1641. extra: 2154 / 2081
  1642. }
  1643. },
  1644. frontAlt: {
  1645. height: math.unit(183, "cm"),
  1646. weight: math.unit(80, "kg"),
  1647. name: "Front (alt)",
  1648. image: {
  1649. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1650. }
  1651. },
  1652. back: {
  1653. height: math.unit(183, "cm"),
  1654. weight: math.unit(80, "kg"),
  1655. name: "Back",
  1656. image: {
  1657. source: "./media/characters/sofia-fluttertail/back.svg"
  1658. }
  1659. },
  1660. kneeling: {
  1661. height: math.unit(125, "cm"),
  1662. weight: math.unit(80, "kg"),
  1663. name: "Kneeling",
  1664. image: {
  1665. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1666. extra: 1033 / 977,
  1667. bottom: 23.7 / 1057
  1668. }
  1669. },
  1670. maw: {
  1671. height: math.unit(183 / 5, "cm"),
  1672. name: "Maw",
  1673. image: {
  1674. source: "./media/characters/sofia-fluttertail/maw.svg"
  1675. }
  1676. },
  1677. mawcloseup: {
  1678. height: math.unit(183 / 5 * 0.41, "cm"),
  1679. name: "Maw (Closeup)",
  1680. image: {
  1681. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1682. }
  1683. },
  1684. paws: {
  1685. height: math.unit(1.17, "feet"),
  1686. name: "Paws",
  1687. image: {
  1688. source: "./media/characters/sofia-fluttertail/paws.svg",
  1689. extra: 851 / 851,
  1690. bottom: 17 / 868
  1691. }
  1692. },
  1693. },
  1694. [
  1695. {
  1696. name: "Normal",
  1697. height: math.unit(1.83, "meter")
  1698. },
  1699. {
  1700. name: "Size Thief",
  1701. height: math.unit(18, "feet")
  1702. },
  1703. {
  1704. name: "50 Foot Collie",
  1705. height: math.unit(50, "feet")
  1706. },
  1707. {
  1708. name: "Macro",
  1709. height: math.unit(96, "feet"),
  1710. default: true
  1711. },
  1712. {
  1713. name: "Megamerger",
  1714. height: math.unit(650, "feet")
  1715. },
  1716. ]
  1717. ))
  1718. characterMakers.push(() => makeCharacter(
  1719. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1720. {
  1721. front: {
  1722. height: math.unit(7, "feet"),
  1723. weight: math.unit(100, "kg"),
  1724. name: "Front",
  1725. image: {
  1726. source: "./media/characters/march/front.svg",
  1727. extra: 1,
  1728. bottom: 0.015
  1729. }
  1730. },
  1731. foot: {
  1732. height: math.unit(0.9, "feet"),
  1733. name: "Foot",
  1734. image: {
  1735. source: "./media/characters/march/foot.svg"
  1736. }
  1737. },
  1738. },
  1739. [
  1740. {
  1741. name: "Normal",
  1742. height: math.unit(7.9, "feet")
  1743. },
  1744. {
  1745. name: "Macro",
  1746. height: math.unit(220, "meters")
  1747. },
  1748. {
  1749. name: "Megamacro",
  1750. height: math.unit(2.98, "km"),
  1751. default: true
  1752. },
  1753. {
  1754. name: "Gigamacro",
  1755. height: math.unit(15963, "km")
  1756. },
  1757. {
  1758. name: "Teramacro",
  1759. height: math.unit(2980000000, "km")
  1760. },
  1761. {
  1762. name: "Examacro",
  1763. height: math.unit(250, "parsecs")
  1764. },
  1765. ]
  1766. ))
  1767. characterMakers.push(() => makeCharacter(
  1768. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1769. {
  1770. front: {
  1771. height: math.unit(6, "feet"),
  1772. weight: math.unit(60, "kg"),
  1773. name: "Front",
  1774. image: {
  1775. source: "./media/characters/noir/front.svg",
  1776. extra: 1,
  1777. bottom: 0.032
  1778. }
  1779. },
  1780. },
  1781. [
  1782. {
  1783. name: "Normal",
  1784. height: math.unit(6.6, "feet")
  1785. },
  1786. {
  1787. name: "Macro",
  1788. height: math.unit(500, "feet")
  1789. },
  1790. {
  1791. name: "Megamacro",
  1792. height: math.unit(2.5, "km"),
  1793. default: true
  1794. },
  1795. {
  1796. name: "Gigamacro",
  1797. height: math.unit(22500, "km")
  1798. },
  1799. {
  1800. name: "Teramacro",
  1801. height: math.unit(2500000000, "km")
  1802. },
  1803. {
  1804. name: "Examacro",
  1805. height: math.unit(200, "parsecs")
  1806. },
  1807. ]
  1808. ))
  1809. characterMakers.push(() => makeCharacter(
  1810. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1811. {
  1812. front: {
  1813. height: math.unit(7, "feet"),
  1814. weight: math.unit(100, "kg"),
  1815. name: "Front",
  1816. image: {
  1817. source: "./media/characters/okuri/front.svg",
  1818. extra: 1,
  1819. bottom: 0.037
  1820. }
  1821. },
  1822. back: {
  1823. height: math.unit(7, "feet"),
  1824. weight: math.unit(100, "kg"),
  1825. name: "Back",
  1826. image: {
  1827. source: "./media/characters/okuri/back.svg",
  1828. extra: 1,
  1829. bottom: 0.007
  1830. }
  1831. },
  1832. },
  1833. [
  1834. {
  1835. name: "Megamacro",
  1836. height: math.unit(100, "miles"),
  1837. default: true
  1838. },
  1839. ]
  1840. ))
  1841. characterMakers.push(() => makeCharacter(
  1842. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1843. {
  1844. front: {
  1845. height: math.unit(7, "feet"),
  1846. weight: math.unit(100, "kg"),
  1847. name: "Front",
  1848. image: {
  1849. source: "./media/characters/manny/front.svg",
  1850. extra: 1,
  1851. bottom: 0.06
  1852. }
  1853. },
  1854. back: {
  1855. height: math.unit(7, "feet"),
  1856. weight: math.unit(100, "kg"),
  1857. name: "Back",
  1858. image: {
  1859. source: "./media/characters/manny/back.svg",
  1860. extra: 1,
  1861. bottom: 0.014
  1862. }
  1863. },
  1864. },
  1865. [
  1866. {
  1867. name: "Normal",
  1868. height: math.unit(7, "feet"),
  1869. },
  1870. {
  1871. name: "Macro",
  1872. height: math.unit(78, "feet"),
  1873. default: true
  1874. },
  1875. {
  1876. name: "Macro+",
  1877. height: math.unit(300, "meters")
  1878. },
  1879. {
  1880. name: "Macro++",
  1881. height: math.unit(2400, "meters")
  1882. },
  1883. {
  1884. name: "Megamacro",
  1885. height: math.unit(5167, "meters")
  1886. },
  1887. {
  1888. name: "Gigamacro",
  1889. height: math.unit(41769, "miles")
  1890. },
  1891. ]
  1892. ))
  1893. characterMakers.push(() => makeCharacter(
  1894. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1895. {
  1896. front: {
  1897. height: math.unit(7, "feet"),
  1898. weight: math.unit(100, "kg"),
  1899. name: "Front",
  1900. image: {
  1901. source: "./media/characters/adake/front-1.svg"
  1902. }
  1903. },
  1904. frontAlt: {
  1905. height: math.unit(7, "feet"),
  1906. weight: math.unit(100, "kg"),
  1907. name: "Front (Alt)",
  1908. image: {
  1909. source: "./media/characters/adake/front-2.svg",
  1910. extra: 1,
  1911. bottom: 0.01
  1912. }
  1913. },
  1914. back: {
  1915. height: math.unit(7, "feet"),
  1916. weight: math.unit(100, "kg"),
  1917. name: "Back",
  1918. image: {
  1919. source: "./media/characters/adake/back.svg",
  1920. }
  1921. },
  1922. kneel: {
  1923. height: math.unit(5.385, "feet"),
  1924. weight: math.unit(100, "kg"),
  1925. name: "Kneeling",
  1926. image: {
  1927. source: "./media/characters/adake/kneel.svg",
  1928. bottom: 0.052
  1929. }
  1930. },
  1931. },
  1932. [
  1933. {
  1934. name: "Normal",
  1935. height: math.unit(7, "feet"),
  1936. },
  1937. {
  1938. name: "Macro",
  1939. height: math.unit(78, "feet"),
  1940. default: true
  1941. },
  1942. {
  1943. name: "Macro+",
  1944. height: math.unit(300, "meters")
  1945. },
  1946. {
  1947. name: "Macro++",
  1948. height: math.unit(2400, "meters")
  1949. },
  1950. {
  1951. name: "Megamacro",
  1952. height: math.unit(5167, "meters")
  1953. },
  1954. {
  1955. name: "Gigamacro",
  1956. height: math.unit(41769, "miles")
  1957. },
  1958. ]
  1959. ))
  1960. characterMakers.push(() => makeCharacter(
  1961. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1962. {
  1963. front: {
  1964. height: math.unit(1.65, "meters"),
  1965. weight: math.unit(50, "kg"),
  1966. name: "Front",
  1967. image: {
  1968. source: "./media/characters/elijah/front.svg",
  1969. extra: 858 / 830,
  1970. bottom: 95.5 / 953.8559
  1971. }
  1972. },
  1973. back: {
  1974. height: math.unit(1.65, "meters"),
  1975. weight: math.unit(50, "kg"),
  1976. name: "Back",
  1977. image: {
  1978. source: "./media/characters/elijah/back.svg",
  1979. extra: 895 / 850,
  1980. bottom: 5.3 / 897.956
  1981. }
  1982. },
  1983. frontNsfw: {
  1984. height: math.unit(1.65, "meters"),
  1985. weight: math.unit(50, "kg"),
  1986. name: "Front (NSFW)",
  1987. image: {
  1988. source: "./media/characters/elijah/front-nsfw.svg",
  1989. extra: 858 / 830,
  1990. bottom: 95.5 / 953.8559
  1991. }
  1992. },
  1993. backNsfw: {
  1994. height: math.unit(1.65, "meters"),
  1995. weight: math.unit(50, "kg"),
  1996. name: "Back (NSFW)",
  1997. image: {
  1998. source: "./media/characters/elijah/back-nsfw.svg",
  1999. extra: 895 / 850,
  2000. bottom: 5.3 / 897.956
  2001. }
  2002. },
  2003. dick: {
  2004. height: math.unit(1, "feet"),
  2005. name: "Dick",
  2006. image: {
  2007. source: "./media/characters/elijah/dick.svg"
  2008. }
  2009. },
  2010. beakOpen: {
  2011. height: math.unit(1.25, "feet"),
  2012. name: "Beak (Open)",
  2013. image: {
  2014. source: "./media/characters/elijah/beak-open.svg"
  2015. }
  2016. },
  2017. beakShut: {
  2018. height: math.unit(1.25, "feet"),
  2019. name: "Beak (Shut)",
  2020. image: {
  2021. source: "./media/characters/elijah/beak-shut.svg"
  2022. }
  2023. },
  2024. footFlexing: {
  2025. height: math.unit(1.61, "feet"),
  2026. name: "Foot (Flexing)",
  2027. image: {
  2028. source: "./media/characters/elijah/foot-flexing.svg"
  2029. }
  2030. },
  2031. footStepping: {
  2032. height: math.unit(1.44, "feet"),
  2033. name: "Foot (Stepping)",
  2034. image: {
  2035. source: "./media/characters/elijah/foot-stepping.svg"
  2036. }
  2037. },
  2038. plantigradeLeg: {
  2039. height: math.unit(2.34, "feet"),
  2040. name: "Plantigrade Leg",
  2041. image: {
  2042. source: "./media/characters/elijah/plantigrade-leg.svg"
  2043. }
  2044. },
  2045. plantigradeFootLeft: {
  2046. height: math.unit(0.9, "feet"),
  2047. name: "Plantigrade Foot (Left)",
  2048. image: {
  2049. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2050. }
  2051. },
  2052. plantigradeFootRight: {
  2053. height: math.unit(0.9, "feet"),
  2054. name: "Plantigrade Foot (Right)",
  2055. image: {
  2056. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2057. }
  2058. },
  2059. },
  2060. [
  2061. {
  2062. name: "Normal",
  2063. height: math.unit(1.65, "meters")
  2064. },
  2065. {
  2066. name: "Macro",
  2067. height: math.unit(55, "meters"),
  2068. default: true
  2069. },
  2070. {
  2071. name: "Macro+",
  2072. height: math.unit(105, "meters")
  2073. },
  2074. ]
  2075. ))
  2076. characterMakers.push(() => makeCharacter(
  2077. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2078. {
  2079. front: {
  2080. height: math.unit(11, "feet"),
  2081. weight: math.unit(80, "kg"),
  2082. name: "Front",
  2083. image: {
  2084. source: "./media/characters/rai/front.svg",
  2085. extra: 1,
  2086. bottom: 0.03
  2087. }
  2088. },
  2089. side: {
  2090. height: math.unit(11, "feet"),
  2091. weight: math.unit(80, "kg"),
  2092. name: "Side",
  2093. image: {
  2094. source: "./media/characters/rai/side.svg"
  2095. }
  2096. },
  2097. back: {
  2098. height: math.unit(11, "feet"),
  2099. weight: math.unit(80, "lb"),
  2100. name: "Back",
  2101. image: {
  2102. source: "./media/characters/rai/back.svg",
  2103. extra: 1,
  2104. bottom: 0.01
  2105. }
  2106. },
  2107. feral: {
  2108. height: math.unit(11, "feet"),
  2109. weight: math.unit(800, "lb"),
  2110. name: "Feral",
  2111. image: {
  2112. source: "./media/characters/rai/feral.svg",
  2113. extra: 1050 / 659,
  2114. bottom: 0.07
  2115. }
  2116. },
  2117. dragon: {
  2118. height: math.unit(23, "feet"),
  2119. weight: math.unit(50000, "lb"),
  2120. name: "Dragon",
  2121. image: {
  2122. source: "./media/characters/rai/dragon.svg",
  2123. extra: 2498 / 2030,
  2124. bottom: 85.2 / 2584
  2125. }
  2126. },
  2127. maw: {
  2128. height: math.unit(6 / 3.81416, "feet"),
  2129. name: "Maw",
  2130. image: {
  2131. source: "./media/characters/rai/maw.svg"
  2132. }
  2133. },
  2134. },
  2135. [
  2136. {
  2137. name: "Normal",
  2138. height: math.unit(11, "feet")
  2139. },
  2140. {
  2141. name: "Macro",
  2142. height: math.unit(302, "feet"),
  2143. default: true
  2144. },
  2145. ]
  2146. ))
  2147. characterMakers.push(() => makeCharacter(
  2148. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2149. {
  2150. frontDressed: {
  2151. height: math.unit(216, "feet"),
  2152. weight: math.unit(7000000, "lb"),
  2153. name: "Front (Dressed)",
  2154. image: {
  2155. source: "./media/characters/jazzy/front-dressed.svg",
  2156. extra: 2738 / 2651,
  2157. bottom: 41.8 / 2786
  2158. }
  2159. },
  2160. backDressed: {
  2161. height: math.unit(216, "feet"),
  2162. weight: math.unit(7000000, "lb"),
  2163. name: "Back (Dressed)",
  2164. image: {
  2165. source: "./media/characters/jazzy/back-dressed.svg",
  2166. extra: 2775 / 2673,
  2167. bottom: 36.8 / 2817
  2168. }
  2169. },
  2170. front: {
  2171. height: math.unit(216, "feet"),
  2172. weight: math.unit(7000000, "lb"),
  2173. name: "Front",
  2174. image: {
  2175. source: "./media/characters/jazzy/front.svg",
  2176. extra: 2738 / 2651,
  2177. bottom: 41.8 / 2786
  2178. }
  2179. },
  2180. back: {
  2181. height: math.unit(216, "feet"),
  2182. weight: math.unit(7000000, "lb"),
  2183. name: "Back",
  2184. image: {
  2185. source: "./media/characters/jazzy/back.svg",
  2186. extra: 2775 / 2673,
  2187. bottom: 36.8 / 2817
  2188. }
  2189. },
  2190. maw: {
  2191. height: math.unit(20, "feet"),
  2192. name: "Maw",
  2193. image: {
  2194. source: "./media/characters/jazzy/maw.svg"
  2195. }
  2196. },
  2197. paws: {
  2198. height: math.unit(27.5, "feet"),
  2199. name: "Paws",
  2200. image: {
  2201. source: "./media/characters/jazzy/paws.svg"
  2202. }
  2203. },
  2204. eye: {
  2205. height: math.unit(4.4, "feet"),
  2206. name: "Eye",
  2207. image: {
  2208. source: "./media/characters/jazzy/eye.svg"
  2209. }
  2210. },
  2211. droneOffense: {
  2212. height: math.unit(9.5, "inches"),
  2213. name: "Drone (Offense)",
  2214. image: {
  2215. source: "./media/characters/jazzy/drone-offense.svg"
  2216. }
  2217. },
  2218. droneRecon: {
  2219. height: math.unit(9.5, "inches"),
  2220. name: "Drone (Recon)",
  2221. image: {
  2222. source: "./media/characters/jazzy/drone-recon.svg"
  2223. }
  2224. },
  2225. droneDefense: {
  2226. height: math.unit(9.5, "inches"),
  2227. name: "Drone (Defense)",
  2228. image: {
  2229. source: "./media/characters/jazzy/drone-defense.svg"
  2230. }
  2231. },
  2232. },
  2233. [
  2234. {
  2235. name: "Macro",
  2236. height: math.unit(216, "feet"),
  2237. default: true
  2238. },
  2239. ]
  2240. ))
  2241. characterMakers.push(() => makeCharacter(
  2242. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2243. {
  2244. front: {
  2245. height: math.unit(7, "feet"),
  2246. weight: math.unit(80, "kg"),
  2247. name: "Front",
  2248. image: {
  2249. source: "./media/characters/flamm/front.svg",
  2250. extra: 1794 / 1677,
  2251. bottom: 31.7 / 1828.5
  2252. }
  2253. },
  2254. },
  2255. [
  2256. {
  2257. name: "Normal",
  2258. height: math.unit(9.5, "feet")
  2259. },
  2260. {
  2261. name: "Macro",
  2262. height: math.unit(200, "feet"),
  2263. default: true
  2264. },
  2265. ]
  2266. ))
  2267. characterMakers.push(() => makeCharacter(
  2268. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2269. {
  2270. front: {
  2271. height: math.unit(5 + 3/12, "feet"),
  2272. weight: math.unit(60, "kg"),
  2273. name: "Front",
  2274. image: {
  2275. source: "./media/characters/zephiro/front.svg",
  2276. extra: 2309 / 2162,
  2277. bottom: 0.069
  2278. }
  2279. },
  2280. side: {
  2281. height: math.unit(5 + 3/12, "feet"),
  2282. weight: math.unit(60, "kg"),
  2283. name: "Side",
  2284. image: {
  2285. source: "./media/characters/zephiro/side.svg",
  2286. extra: 2403 / 2279,
  2287. bottom: 0.015
  2288. }
  2289. },
  2290. back: {
  2291. height: math.unit(5 + 3/12, "feet"),
  2292. weight: math.unit(60, "kg"),
  2293. name: "Back",
  2294. image: {
  2295. source: "./media/characters/zephiro/back.svg",
  2296. extra: 2373 / 2244,
  2297. bottom: 0.013
  2298. }
  2299. },
  2300. hand: {
  2301. height: math.unit(0.68, "feet"),
  2302. name: "Hand",
  2303. image: {
  2304. source: "./media/characters/zephiro/hand.svg"
  2305. }
  2306. },
  2307. paw: {
  2308. height: math.unit(1, "feet"),
  2309. name: "Paw",
  2310. image: {
  2311. source: "./media/characters/zephiro/paw.svg"
  2312. }
  2313. },
  2314. beans: {
  2315. height: math.unit(0.93, "feet"),
  2316. name: "Beans",
  2317. image: {
  2318. source: "./media/characters/zephiro/beans.svg"
  2319. }
  2320. },
  2321. },
  2322. [
  2323. {
  2324. name: "Micro",
  2325. height: math.unit(3, "inches")
  2326. },
  2327. {
  2328. name: "Normal",
  2329. height: math.unit(5 + 3 / 12, "feet"),
  2330. default: true
  2331. },
  2332. {
  2333. name: "Macro",
  2334. height: math.unit(118, "feet")
  2335. },
  2336. ]
  2337. ))
  2338. characterMakers.push(() => makeCharacter(
  2339. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2340. {
  2341. front: {
  2342. height: math.unit(5, "feet"),
  2343. weight: math.unit(90, "kg"),
  2344. name: "Front",
  2345. image: {
  2346. source: "./media/characters/fory/front.svg",
  2347. extra: 2862 / 2674,
  2348. bottom: 180 / 3043.8
  2349. }
  2350. },
  2351. back: {
  2352. height: math.unit(5, "feet"),
  2353. weight: math.unit(90, "kg"),
  2354. name: "Back",
  2355. image: {
  2356. source: "./media/characters/fory/back.svg",
  2357. extra: 2962 / 2791,
  2358. bottom: 106 / 3071.8
  2359. }
  2360. },
  2361. foot: {
  2362. height: math.unit(2.14, "feet"),
  2363. name: "Foot",
  2364. image: {
  2365. source: "./media/characters/fory/foot.svg"
  2366. }
  2367. },
  2368. },
  2369. [
  2370. {
  2371. name: "Normal",
  2372. height: math.unit(5, "feet")
  2373. },
  2374. {
  2375. name: "Macro",
  2376. height: math.unit(50, "feet"),
  2377. default: true
  2378. },
  2379. {
  2380. name: "Megamacro",
  2381. height: math.unit(10, "miles")
  2382. },
  2383. {
  2384. name: "Gigamacro",
  2385. height: math.unit(5, "earths")
  2386. },
  2387. ]
  2388. ))
  2389. characterMakers.push(() => makeCharacter(
  2390. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2391. {
  2392. front: {
  2393. height: math.unit(7, "feet"),
  2394. weight: math.unit(90, "kg"),
  2395. name: "Front",
  2396. image: {
  2397. source: "./media/characters/kurrikage/front.svg",
  2398. extra: 1,
  2399. bottom: 0.035
  2400. }
  2401. },
  2402. back: {
  2403. height: math.unit(7, "feet"),
  2404. weight: math.unit(90, "lb"),
  2405. name: "Back",
  2406. image: {
  2407. source: "./media/characters/kurrikage/back.svg"
  2408. }
  2409. },
  2410. paw: {
  2411. height: math.unit(1.5, "feet"),
  2412. name: "Paw",
  2413. image: {
  2414. source: "./media/characters/kurrikage/paw.svg"
  2415. }
  2416. },
  2417. staff: {
  2418. height: math.unit(6.7, "feet"),
  2419. name: "Staff",
  2420. image: {
  2421. source: "./media/characters/kurrikage/staff.svg"
  2422. }
  2423. },
  2424. peek: {
  2425. height: math.unit(1.05, "feet"),
  2426. name: "Peeking",
  2427. image: {
  2428. source: "./media/characters/kurrikage/peek.svg",
  2429. bottom: 0.08
  2430. }
  2431. },
  2432. },
  2433. [
  2434. {
  2435. name: "Normal",
  2436. height: math.unit(12, "feet"),
  2437. default: true
  2438. },
  2439. {
  2440. name: "Big",
  2441. height: math.unit(20, "feet")
  2442. },
  2443. {
  2444. name: "Macro",
  2445. height: math.unit(500, "feet")
  2446. },
  2447. {
  2448. name: "Megamacro",
  2449. height: math.unit(20, "miles")
  2450. },
  2451. ]
  2452. ))
  2453. characterMakers.push(() => makeCharacter(
  2454. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2455. {
  2456. front: {
  2457. height: math.unit(6, "feet"),
  2458. weight: math.unit(75, "kg"),
  2459. name: "Front",
  2460. image: {
  2461. source: "./media/characters/shingo/front.svg",
  2462. extra: 706/681,
  2463. bottom: 11/717
  2464. }
  2465. },
  2466. frontAlt: {
  2467. height: math.unit(6, "feet"),
  2468. weight: math.unit(75, "kg"),
  2469. name: "Front (Alt)",
  2470. image: {
  2471. source: "./media/characters/shingo/front-alt.svg",
  2472. extra: 3511 / 3338,
  2473. bottom: 0.005
  2474. }
  2475. },
  2476. paw: {
  2477. height: math.unit(1, "feet"),
  2478. name: "Paw",
  2479. image: {
  2480. source: "./media/characters/shingo/paw.svg"
  2481. }
  2482. },
  2483. },
  2484. [
  2485. {
  2486. name: "Micro",
  2487. height: math.unit(4, "inches")
  2488. },
  2489. {
  2490. name: "Normal",
  2491. height: math.unit(6, "feet"),
  2492. default: true
  2493. },
  2494. {
  2495. name: "Macro",
  2496. height: math.unit(108, "feet")
  2497. },
  2498. {
  2499. name: "Macro+",
  2500. height: math.unit(1500, "feet")
  2501. },
  2502. ]
  2503. ))
  2504. characterMakers.push(() => makeCharacter(
  2505. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2506. {
  2507. side: {
  2508. height: math.unit(6, "feet"),
  2509. weight: math.unit(75, "kg"),
  2510. name: "Side",
  2511. image: {
  2512. source: "./media/characters/aigey/side.svg"
  2513. }
  2514. },
  2515. },
  2516. [
  2517. {
  2518. name: "Macro",
  2519. height: math.unit(200, "feet"),
  2520. default: true
  2521. },
  2522. {
  2523. name: "Megamacro",
  2524. height: math.unit(100, "miles")
  2525. },
  2526. ]
  2527. )
  2528. )
  2529. characterMakers.push(() => makeCharacter(
  2530. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2531. {
  2532. front: {
  2533. height: math.unit(5 + 5 / 12, "feet"),
  2534. weight: math.unit(75, "kg"),
  2535. name: "Front",
  2536. image: {
  2537. source: "./media/characters/natasha/front.svg",
  2538. extra: 859 / 824,
  2539. bottom: 23 / 879.6
  2540. }
  2541. },
  2542. frontNsfw: {
  2543. height: math.unit(5 + 5 / 12, "feet"),
  2544. weight: math.unit(75, "kg"),
  2545. name: "Front (NSFW)",
  2546. image: {
  2547. source: "./media/characters/natasha/front-nsfw.svg",
  2548. extra: 859 / 824,
  2549. bottom: 23 / 879.6
  2550. }
  2551. },
  2552. frontErect: {
  2553. height: math.unit(5 + 5 / 12, "feet"),
  2554. weight: math.unit(75, "kg"),
  2555. name: "Front (Erect)",
  2556. image: {
  2557. source: "./media/characters/natasha/front-erect.svg",
  2558. extra: 859 / 824,
  2559. bottom: 23 / 879.6
  2560. }
  2561. },
  2562. back: {
  2563. height: math.unit(5 + 5 / 12, "feet"),
  2564. weight: math.unit(75, "kg"),
  2565. name: "Back",
  2566. image: {
  2567. source: "./media/characters/natasha/back.svg",
  2568. extra: 887.9 / 852.6,
  2569. bottom: 9.7 / 896.4
  2570. }
  2571. },
  2572. backAlt: {
  2573. height: math.unit(5 + 5 / 12, "feet"),
  2574. weight: math.unit(75, "kg"),
  2575. name: "Back (Alt)",
  2576. image: {
  2577. source: "./media/characters/natasha/back-alt.svg",
  2578. extra: 1236.7 / 1192,
  2579. bottom: 22.3 / 1258.2
  2580. }
  2581. },
  2582. dick: {
  2583. height: math.unit(1.772, "feet"),
  2584. name: "Dick",
  2585. image: {
  2586. source: "./media/characters/natasha/dick.svg"
  2587. }
  2588. },
  2589. paw: {
  2590. height: math.unit(0.250, "meters"),
  2591. name: "Paw",
  2592. image: {
  2593. source: "./media/characters/natasha/paw.svg"
  2594. }
  2595. },
  2596. },
  2597. [
  2598. {
  2599. name: "Normal",
  2600. height: math.unit(5 + 5 / 12, "feet")
  2601. },
  2602. {
  2603. name: "Large",
  2604. height: math.unit(12, "feet")
  2605. },
  2606. {
  2607. name: "Macro",
  2608. height: math.unit(100, "feet"),
  2609. default: true
  2610. },
  2611. {
  2612. name: "Macro+",
  2613. height: math.unit(260, "feet")
  2614. },
  2615. {
  2616. name: "Macro++",
  2617. height: math.unit(1, "mile")
  2618. },
  2619. ]
  2620. ))
  2621. characterMakers.push(() => makeCharacter(
  2622. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2623. {
  2624. front: {
  2625. height: math.unit(6, "feet"),
  2626. weight: math.unit(75, "kg"),
  2627. name: "Front",
  2628. image: {
  2629. source: "./media/characters/malik/front.svg"
  2630. }
  2631. },
  2632. side: {
  2633. height: math.unit(6, "feet"),
  2634. weight: math.unit(75, "kg"),
  2635. name: "Side",
  2636. image: {
  2637. source: "./media/characters/malik/side.svg",
  2638. extra: 1.1539
  2639. }
  2640. },
  2641. back: {
  2642. height: math.unit(6, "feet"),
  2643. weight: math.unit(75, "kg"),
  2644. name: "Back",
  2645. image: {
  2646. source: "./media/characters/malik/back.svg"
  2647. }
  2648. },
  2649. },
  2650. [
  2651. {
  2652. name: "Macro",
  2653. height: math.unit(156, "feet"),
  2654. default: true
  2655. },
  2656. {
  2657. name: "Macro+",
  2658. height: math.unit(1188, "feet")
  2659. },
  2660. ]
  2661. ))
  2662. characterMakers.push(() => makeCharacter(
  2663. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2664. {
  2665. front: {
  2666. height: math.unit(6, "feet"),
  2667. weight: math.unit(75, "kg"),
  2668. name: "Front",
  2669. image: {
  2670. source: "./media/characters/sefer/front.svg",
  2671. extra: 848 / 659,
  2672. bottom: 28.3 / 876.442
  2673. }
  2674. },
  2675. back: {
  2676. height: math.unit(6, "feet"),
  2677. weight: math.unit(75, "kg"),
  2678. name: "Back",
  2679. image: {
  2680. source: "./media/characters/sefer/back.svg",
  2681. extra: 864 / 695,
  2682. bottom: 10 / 871
  2683. }
  2684. },
  2685. frontDressed: {
  2686. height: math.unit(6, "feet"),
  2687. weight: math.unit(75, "kg"),
  2688. name: "Front (Dressed)",
  2689. image: {
  2690. source: "./media/characters/sefer/front-dressed.svg",
  2691. extra: 839 / 653,
  2692. bottom: 37.6 / 878
  2693. }
  2694. },
  2695. },
  2696. [
  2697. {
  2698. name: "Normal",
  2699. height: math.unit(6, "feet"),
  2700. default: true
  2701. },
  2702. ]
  2703. ))
  2704. characterMakers.push(() => makeCharacter(
  2705. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2706. {
  2707. body: {
  2708. height: math.unit(2.2428, "meter"),
  2709. weight: math.unit(124.738, "kg"),
  2710. name: "Body",
  2711. image: {
  2712. extra: 1225 / 1050,
  2713. source: "./media/characters/north/front.svg"
  2714. }
  2715. }
  2716. },
  2717. [
  2718. {
  2719. name: "Micro",
  2720. height: math.unit(4, "inches")
  2721. },
  2722. {
  2723. name: "Macro",
  2724. height: math.unit(63, "meters")
  2725. },
  2726. {
  2727. name: "Megamacro",
  2728. height: math.unit(101, "miles"),
  2729. default: true
  2730. }
  2731. ]
  2732. ))
  2733. characterMakers.push(() => makeCharacter(
  2734. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2735. {
  2736. angled: {
  2737. height: math.unit(4, "meter"),
  2738. weight: math.unit(150, "kg"),
  2739. name: "Angled",
  2740. image: {
  2741. source: "./media/characters/talan/angled-sfw.svg",
  2742. bottom: 29 / 3734
  2743. }
  2744. },
  2745. angledNsfw: {
  2746. height: math.unit(4, "meter"),
  2747. weight: math.unit(150, "kg"),
  2748. name: "Angled (NSFW)",
  2749. image: {
  2750. source: "./media/characters/talan/angled-nsfw.svg",
  2751. bottom: 29 / 3734
  2752. }
  2753. },
  2754. frontNsfw: {
  2755. height: math.unit(4, "meter"),
  2756. weight: math.unit(150, "kg"),
  2757. name: "Front (NSFW)",
  2758. image: {
  2759. source: "./media/characters/talan/front-nsfw.svg",
  2760. bottom: 29 / 3734
  2761. }
  2762. },
  2763. sideNsfw: {
  2764. height: math.unit(4, "meter"),
  2765. weight: math.unit(150, "kg"),
  2766. name: "Side (NSFW)",
  2767. image: {
  2768. source: "./media/characters/talan/side-nsfw.svg",
  2769. bottom: 29 / 3734
  2770. }
  2771. },
  2772. back: {
  2773. height: math.unit(4, "meter"),
  2774. weight: math.unit(150, "kg"),
  2775. name: "Back",
  2776. image: {
  2777. source: "./media/characters/talan/back.svg"
  2778. }
  2779. },
  2780. dickBottom: {
  2781. height: math.unit(0.621, "meter"),
  2782. name: "Dick (Bottom)",
  2783. image: {
  2784. source: "./media/characters/talan/dick-bottom.svg"
  2785. }
  2786. },
  2787. dickTop: {
  2788. height: math.unit(0.621, "meter"),
  2789. name: "Dick (Top)",
  2790. image: {
  2791. source: "./media/characters/talan/dick-top.svg"
  2792. }
  2793. },
  2794. dickSide: {
  2795. height: math.unit(0.305, "meter"),
  2796. name: "Dick (Side)",
  2797. image: {
  2798. source: "./media/characters/talan/dick-side.svg"
  2799. }
  2800. },
  2801. dickFront: {
  2802. height: math.unit(0.305, "meter"),
  2803. name: "Dick (Front)",
  2804. image: {
  2805. source: "./media/characters/talan/dick-front.svg"
  2806. }
  2807. },
  2808. },
  2809. [
  2810. {
  2811. name: "Normal",
  2812. height: math.unit(4, "meters")
  2813. },
  2814. {
  2815. name: "Macro",
  2816. height: math.unit(100, "meters")
  2817. },
  2818. {
  2819. name: "Megamacro",
  2820. height: math.unit(2, "miles"),
  2821. default: true
  2822. },
  2823. {
  2824. name: "Gigamacro",
  2825. height: math.unit(5000, "miles")
  2826. },
  2827. {
  2828. name: "Teramacro",
  2829. height: math.unit(100, "parsecs")
  2830. }
  2831. ]
  2832. ))
  2833. characterMakers.push(() => makeCharacter(
  2834. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2835. {
  2836. front: {
  2837. height: math.unit(2, "meter"),
  2838. weight: math.unit(90, "kg"),
  2839. name: "Front",
  2840. image: {
  2841. source: "./media/characters/gael'rathus/front.svg"
  2842. }
  2843. },
  2844. frontAlt: {
  2845. height: math.unit(2, "meter"),
  2846. weight: math.unit(90, "kg"),
  2847. name: "Front (alt)",
  2848. image: {
  2849. source: "./media/characters/gael'rathus/front-alt.svg"
  2850. }
  2851. },
  2852. frontAlt2: {
  2853. height: math.unit(2, "meter"),
  2854. weight: math.unit(90, "kg"),
  2855. name: "Front (alt 2)",
  2856. image: {
  2857. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2858. }
  2859. }
  2860. },
  2861. [
  2862. {
  2863. name: "Normal",
  2864. height: math.unit(9, "feet"),
  2865. default: true
  2866. },
  2867. {
  2868. name: "Large",
  2869. height: math.unit(25, "feet")
  2870. },
  2871. {
  2872. name: "Macro",
  2873. height: math.unit(0.25, "miles")
  2874. },
  2875. {
  2876. name: "Megamacro",
  2877. height: math.unit(10, "miles")
  2878. }
  2879. ]
  2880. ))
  2881. characterMakers.push(() => makeCharacter(
  2882. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2883. {
  2884. side: {
  2885. height: math.unit(2, "meter"),
  2886. weight: math.unit(140, "kg"),
  2887. name: "Side",
  2888. image: {
  2889. source: "./media/characters/sosha/side.svg",
  2890. bottom: 0.042
  2891. }
  2892. },
  2893. },
  2894. [
  2895. {
  2896. name: "Normal",
  2897. height: math.unit(12, "feet"),
  2898. default: true
  2899. }
  2900. ]
  2901. ))
  2902. characterMakers.push(() => makeCharacter(
  2903. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2904. {
  2905. side: {
  2906. height: math.unit(5 + 5 / 12, "feet"),
  2907. weight: math.unit(170, "kg"),
  2908. name: "Side",
  2909. image: {
  2910. source: "./media/characters/runnola/side.svg",
  2911. extra: 741 / 448,
  2912. bottom: 0.05
  2913. }
  2914. },
  2915. },
  2916. [
  2917. {
  2918. name: "Small",
  2919. height: math.unit(3, "feet")
  2920. },
  2921. {
  2922. name: "Normal",
  2923. height: math.unit(5 + 5 / 12, "feet"),
  2924. default: true
  2925. },
  2926. {
  2927. name: "Big",
  2928. height: math.unit(10, "feet")
  2929. },
  2930. ]
  2931. ))
  2932. characterMakers.push(() => makeCharacter(
  2933. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2934. {
  2935. front: {
  2936. height: math.unit(2, "meter"),
  2937. weight: math.unit(50, "kg"),
  2938. name: "Front",
  2939. image: {
  2940. source: "./media/characters/kurribird/front.svg",
  2941. bottom: 0.015
  2942. }
  2943. },
  2944. frontAlt: {
  2945. height: math.unit(1.5, "meter"),
  2946. weight: math.unit(50, "kg"),
  2947. name: "Front (Alt)",
  2948. image: {
  2949. source: "./media/characters/kurribird/front-alt.svg",
  2950. extra: 1.45
  2951. }
  2952. },
  2953. },
  2954. [
  2955. {
  2956. name: "Normal",
  2957. height: math.unit(7, "feet")
  2958. },
  2959. {
  2960. name: "Big",
  2961. height: math.unit(12, "feet"),
  2962. default: true
  2963. },
  2964. {
  2965. name: "Macro",
  2966. height: math.unit(1500, "feet")
  2967. },
  2968. {
  2969. name: "Megamacro",
  2970. height: math.unit(2, "miles")
  2971. }
  2972. ]
  2973. ))
  2974. characterMakers.push(() => makeCharacter(
  2975. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2976. {
  2977. front: {
  2978. height: math.unit(2, "meter"),
  2979. weight: math.unit(80, "kg"),
  2980. name: "Front",
  2981. image: {
  2982. source: "./media/characters/elbial/front.svg",
  2983. extra: 1643 / 1556,
  2984. bottom: 60.2 / 1696
  2985. }
  2986. },
  2987. side: {
  2988. height: math.unit(2, "meter"),
  2989. weight: math.unit(80, "kg"),
  2990. name: "Side",
  2991. image: {
  2992. source: "./media/characters/elbial/side.svg",
  2993. extra: 1630 / 1565,
  2994. bottom: 71.5 / 1697
  2995. }
  2996. },
  2997. back: {
  2998. height: math.unit(2, "meter"),
  2999. weight: math.unit(80, "kg"),
  3000. name: "Back",
  3001. image: {
  3002. source: "./media/characters/elbial/back.svg",
  3003. extra: 1668 / 1595,
  3004. bottom: 5.6 / 1672
  3005. }
  3006. },
  3007. frontDressed: {
  3008. height: math.unit(2, "meter"),
  3009. weight: math.unit(80, "kg"),
  3010. name: "Front (Dressed)",
  3011. image: {
  3012. source: "./media/characters/elbial/front-dressed.svg",
  3013. extra: 1653 / 1584,
  3014. bottom: 57 / 1708
  3015. }
  3016. },
  3017. genitals: {
  3018. height: math.unit(2 / 3.367, "meter"),
  3019. name: "Genitals",
  3020. image: {
  3021. source: "./media/characters/elbial/genitals.svg"
  3022. }
  3023. },
  3024. },
  3025. [
  3026. {
  3027. name: "Large",
  3028. height: math.unit(100, "feet")
  3029. },
  3030. {
  3031. name: "Macro",
  3032. height: math.unit(500, "feet"),
  3033. default: true
  3034. },
  3035. {
  3036. name: "Megamacro",
  3037. height: math.unit(10, "miles")
  3038. },
  3039. {
  3040. name: "Gigamacro",
  3041. height: math.unit(25000, "miles")
  3042. },
  3043. {
  3044. name: "Full-Size",
  3045. height: math.unit(8000000, "gigaparsecs")
  3046. }
  3047. ]
  3048. ))
  3049. characterMakers.push(() => makeCharacter(
  3050. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3051. {
  3052. front: {
  3053. height: math.unit(2, "meter"),
  3054. weight: math.unit(60, "kg"),
  3055. name: "Front",
  3056. image: {
  3057. source: "./media/characters/noah/front.svg"
  3058. }
  3059. },
  3060. talons: {
  3061. height: math.unit(0.315, "meter"),
  3062. name: "Talons",
  3063. image: {
  3064. source: "./media/characters/noah/talons.svg"
  3065. }
  3066. }
  3067. },
  3068. [
  3069. {
  3070. name: "Large",
  3071. height: math.unit(50, "feet")
  3072. },
  3073. {
  3074. name: "Macro",
  3075. height: math.unit(750, "feet"),
  3076. default: true
  3077. },
  3078. {
  3079. name: "Megamacro",
  3080. height: math.unit(50, "miles")
  3081. },
  3082. {
  3083. name: "Gigamacro",
  3084. height: math.unit(100000, "miles")
  3085. },
  3086. {
  3087. name: "Full-Size",
  3088. height: math.unit(3000000000, "miles")
  3089. }
  3090. ]
  3091. ))
  3092. characterMakers.push(() => makeCharacter(
  3093. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3094. {
  3095. front: {
  3096. height: math.unit(2, "meter"),
  3097. weight: math.unit(80, "kg"),
  3098. name: "Front",
  3099. image: {
  3100. source: "./media/characters/natalya/front.svg"
  3101. }
  3102. },
  3103. back: {
  3104. height: math.unit(2, "meter"),
  3105. weight: math.unit(80, "kg"),
  3106. name: "Back",
  3107. image: {
  3108. source: "./media/characters/natalya/back.svg"
  3109. }
  3110. }
  3111. },
  3112. [
  3113. {
  3114. name: "Normal",
  3115. height: math.unit(150, "feet"),
  3116. default: true
  3117. },
  3118. {
  3119. name: "Megamacro",
  3120. height: math.unit(5, "miles")
  3121. },
  3122. {
  3123. name: "Full-Size",
  3124. height: math.unit(600, "kiloparsecs")
  3125. }
  3126. ]
  3127. ))
  3128. characterMakers.push(() => makeCharacter(
  3129. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3130. {
  3131. front: {
  3132. height: math.unit(2, "meter"),
  3133. weight: math.unit(50, "kg"),
  3134. name: "Front",
  3135. image: {
  3136. source: "./media/characters/erestrebah/front.svg",
  3137. extra: 208 / 193,
  3138. bottom: 0.055
  3139. }
  3140. },
  3141. back: {
  3142. height: math.unit(2, "meter"),
  3143. weight: math.unit(50, "kg"),
  3144. name: "Back",
  3145. image: {
  3146. source: "./media/characters/erestrebah/back.svg",
  3147. extra: 1.3
  3148. }
  3149. }
  3150. },
  3151. [
  3152. {
  3153. name: "Normal",
  3154. height: math.unit(10, "feet")
  3155. },
  3156. {
  3157. name: "Large",
  3158. height: math.unit(50, "feet"),
  3159. default: true
  3160. },
  3161. {
  3162. name: "Macro",
  3163. height: math.unit(300, "feet")
  3164. },
  3165. {
  3166. name: "Macro+",
  3167. height: math.unit(750, "feet")
  3168. },
  3169. {
  3170. name: "Megamacro",
  3171. height: math.unit(3, "miles")
  3172. }
  3173. ]
  3174. ))
  3175. characterMakers.push(() => makeCharacter(
  3176. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3177. {
  3178. front: {
  3179. height: math.unit(2, "meter"),
  3180. weight: math.unit(80, "kg"),
  3181. name: "Front",
  3182. image: {
  3183. source: "./media/characters/jennifer/front.svg",
  3184. bottom: 0.11,
  3185. extra: 1.16
  3186. }
  3187. },
  3188. frontAlt: {
  3189. height: math.unit(2, "meter"),
  3190. weight: math.unit(80, "kg"),
  3191. name: "Front (Alt)",
  3192. image: {
  3193. source: "./media/characters/jennifer/front-alt.svg"
  3194. }
  3195. }
  3196. },
  3197. [
  3198. {
  3199. name: "Canon Height",
  3200. height: math.unit(120, "feet"),
  3201. default: true
  3202. },
  3203. {
  3204. name: "Macro+",
  3205. height: math.unit(300, "feet")
  3206. },
  3207. {
  3208. name: "Megamacro",
  3209. height: math.unit(20000, "feet")
  3210. }
  3211. ]
  3212. ))
  3213. characterMakers.push(() => makeCharacter(
  3214. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3215. {
  3216. front: {
  3217. height: math.unit(2, "meter"),
  3218. weight: math.unit(50, "kg"),
  3219. name: "Front",
  3220. image: {
  3221. source: "./media/characters/kalista/front.svg",
  3222. extra: 1947 / 1700,
  3223. bottom: 76.6 / 1412.98
  3224. }
  3225. },
  3226. back: {
  3227. height: math.unit(2, "meter"),
  3228. weight: math.unit(50, "kg"),
  3229. name: "Back",
  3230. image: {
  3231. source: "./media/characters/kalista/back.svg",
  3232. extra: 1366 / 1156,
  3233. bottom: 33.9 / 1362.78
  3234. }
  3235. }
  3236. },
  3237. [
  3238. {
  3239. name: "Uncomfortably Small",
  3240. height: math.unit(10, "feet")
  3241. },
  3242. {
  3243. name: "Small",
  3244. height: math.unit(30, "feet")
  3245. },
  3246. {
  3247. name: "Macro",
  3248. height: math.unit(100, "feet"),
  3249. default: true
  3250. },
  3251. {
  3252. name: "Macro+",
  3253. height: math.unit(2000, "feet")
  3254. },
  3255. {
  3256. name: "True Form",
  3257. height: math.unit(8924, "miles")
  3258. }
  3259. ]
  3260. ))
  3261. characterMakers.push(() => makeCharacter(
  3262. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3263. {
  3264. front: {
  3265. height: math.unit(2, "meter"),
  3266. weight: math.unit(120, "kg"),
  3267. name: "Front",
  3268. image: {
  3269. source: "./media/characters/ggv/front.svg"
  3270. }
  3271. },
  3272. side: {
  3273. height: math.unit(2, "meter"),
  3274. weight: math.unit(120, "kg"),
  3275. name: "Side",
  3276. image: {
  3277. source: "./media/characters/ggv/side.svg"
  3278. }
  3279. }
  3280. },
  3281. [
  3282. {
  3283. name: "Extremely Puny",
  3284. height: math.unit(9 + 5 / 12, "feet")
  3285. },
  3286. {
  3287. name: "Horribly Small",
  3288. height: math.unit(47.7, "miles"),
  3289. default: true
  3290. },
  3291. {
  3292. name: "Reasonably Sized",
  3293. height: math.unit(25000, "parsecs")
  3294. },
  3295. {
  3296. name: "Slightly Uncompressed",
  3297. height: math.unit(7.77e31, "parsecs")
  3298. },
  3299. {
  3300. name: "Omniversal",
  3301. height: math.unit(1e300, "meters")
  3302. },
  3303. ]
  3304. ))
  3305. characterMakers.push(() => makeCharacter(
  3306. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3307. {
  3308. front: {
  3309. height: math.unit(2, "meter"),
  3310. weight: math.unit(75, "lb"),
  3311. name: "Front",
  3312. image: {
  3313. source: "./media/characters/napalm/front.svg"
  3314. }
  3315. },
  3316. back: {
  3317. height: math.unit(2, "meter"),
  3318. weight: math.unit(75, "lb"),
  3319. name: "Back",
  3320. image: {
  3321. source: "./media/characters/napalm/back.svg"
  3322. }
  3323. }
  3324. },
  3325. [
  3326. {
  3327. name: "Standard",
  3328. height: math.unit(55, "feet"),
  3329. default: true
  3330. }
  3331. ]
  3332. ))
  3333. characterMakers.push(() => makeCharacter(
  3334. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3335. {
  3336. front: {
  3337. height: math.unit(7 + 5 / 6, "feet"),
  3338. weight: math.unit(325, "lb"),
  3339. name: "Front",
  3340. image: {
  3341. source: "./media/characters/asana/front.svg",
  3342. extra: 1133 / 1060,
  3343. bottom: 15.2 / 1148.6
  3344. }
  3345. },
  3346. back: {
  3347. height: math.unit(7 + 5 / 6, "feet"),
  3348. weight: math.unit(325, "lb"),
  3349. name: "Back",
  3350. image: {
  3351. source: "./media/characters/asana/back.svg",
  3352. extra: 1114 / 1043,
  3353. bottom: 5 / 1120
  3354. }
  3355. },
  3356. dressedDark: {
  3357. height: math.unit(7 + 5 / 6, "feet"),
  3358. weight: math.unit(325, "lb"),
  3359. name: "Dressed (Dark)",
  3360. image: {
  3361. source: "./media/characters/asana/dressed-dark.svg",
  3362. extra: 1133 / 1060,
  3363. bottom: 15.2 / 1148.6
  3364. }
  3365. },
  3366. dressedLight: {
  3367. height: math.unit(7 + 5 / 6, "feet"),
  3368. weight: math.unit(325, "lb"),
  3369. name: "Dressed (Light)",
  3370. image: {
  3371. source: "./media/characters/asana/dressed-light.svg",
  3372. extra: 1133 / 1060,
  3373. bottom: 15.2 / 1148.6
  3374. }
  3375. },
  3376. },
  3377. [
  3378. {
  3379. name: "Standard",
  3380. height: math.unit(7 + 5 / 6, "feet"),
  3381. default: true
  3382. },
  3383. {
  3384. name: "Large",
  3385. height: math.unit(10, "meters")
  3386. },
  3387. {
  3388. name: "Macro",
  3389. height: math.unit(2500, "meters")
  3390. },
  3391. {
  3392. name: "Megamacro",
  3393. height: math.unit(5e6, "meters")
  3394. },
  3395. {
  3396. name: "Examacro",
  3397. height: math.unit(5e12, "lightyears")
  3398. },
  3399. {
  3400. name: "Max Size",
  3401. height: math.unit(1e31, "lightyears")
  3402. }
  3403. ]
  3404. ))
  3405. characterMakers.push(() => makeCharacter(
  3406. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3407. {
  3408. front: {
  3409. height: math.unit(2, "meter"),
  3410. weight: math.unit(60, "kg"),
  3411. name: "Front",
  3412. image: {
  3413. source: "./media/characters/ebony/front.svg",
  3414. bottom: 0.03,
  3415. extra: 1045 / 810 + 0.03
  3416. }
  3417. },
  3418. side: {
  3419. height: math.unit(2, "meter"),
  3420. weight: math.unit(60, "kg"),
  3421. name: "Side",
  3422. image: {
  3423. source: "./media/characters/ebony/side.svg",
  3424. bottom: 0.03,
  3425. extra: 1045 / 810 + 0.03
  3426. }
  3427. },
  3428. back: {
  3429. height: math.unit(2, "meter"),
  3430. weight: math.unit(60, "kg"),
  3431. name: "Back",
  3432. image: {
  3433. source: "./media/characters/ebony/back.svg",
  3434. bottom: 0.01,
  3435. extra: 1045 / 810 + 0.01
  3436. }
  3437. },
  3438. },
  3439. [
  3440. // TODO check why I did this lol
  3441. {
  3442. name: "Standard",
  3443. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3444. default: true
  3445. },
  3446. {
  3447. name: "Macro",
  3448. height: math.unit(200, "feet")
  3449. },
  3450. {
  3451. name: "Gigamacro",
  3452. height: math.unit(13000, "km")
  3453. }
  3454. ]
  3455. ))
  3456. characterMakers.push(() => makeCharacter(
  3457. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3458. {
  3459. front: {
  3460. height: math.unit(6, "feet"),
  3461. weight: math.unit(175, "lb"),
  3462. name: "Front",
  3463. image: {
  3464. source: "./media/characters/mountain/front.svg",
  3465. extra: 972 / 955,
  3466. bottom: 64 / 1036.6
  3467. }
  3468. },
  3469. back: {
  3470. height: math.unit(6, "feet"),
  3471. weight: math.unit(175, "lb"),
  3472. name: "Back",
  3473. image: {
  3474. source: "./media/characters/mountain/back.svg",
  3475. extra: 970 / 950,
  3476. bottom: 28.25 / 999
  3477. }
  3478. },
  3479. },
  3480. [
  3481. {
  3482. name: "Large",
  3483. height: math.unit(20, "meters")
  3484. },
  3485. {
  3486. name: "Macro",
  3487. height: math.unit(300, "meters")
  3488. },
  3489. {
  3490. name: "Gigamacro",
  3491. height: math.unit(10000, "km"),
  3492. default: true
  3493. },
  3494. {
  3495. name: "Examacro",
  3496. height: math.unit(10e9, "lightyears")
  3497. }
  3498. ]
  3499. ))
  3500. characterMakers.push(() => makeCharacter(
  3501. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3502. {
  3503. front: {
  3504. height: math.unit(8, "feet"),
  3505. weight: math.unit(500, "lb"),
  3506. name: "Front",
  3507. image: {
  3508. source: "./media/characters/rick/front.svg"
  3509. }
  3510. }
  3511. },
  3512. [
  3513. {
  3514. name: "Normal",
  3515. height: math.unit(8, "feet"),
  3516. default: true
  3517. },
  3518. {
  3519. name: "Macro",
  3520. height: math.unit(5, "km")
  3521. }
  3522. ]
  3523. ))
  3524. characterMakers.push(() => makeCharacter(
  3525. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3526. {
  3527. front: {
  3528. height: math.unit(8, "feet"),
  3529. weight: math.unit(120, "lb"),
  3530. name: "Front",
  3531. image: {
  3532. source: "./media/characters/ona/front.svg"
  3533. }
  3534. },
  3535. frontAlt: {
  3536. height: math.unit(8, "feet"),
  3537. weight: math.unit(120, "lb"),
  3538. name: "Front (Alt)",
  3539. image: {
  3540. source: "./media/characters/ona/front-alt.svg"
  3541. }
  3542. },
  3543. back: {
  3544. height: math.unit(8, "feet"),
  3545. weight: math.unit(120, "lb"),
  3546. name: "Back",
  3547. image: {
  3548. source: "./media/characters/ona/back.svg"
  3549. }
  3550. },
  3551. foot: {
  3552. height: math.unit(1.1, "feet"),
  3553. name: "Foot",
  3554. image: {
  3555. source: "./media/characters/ona/foot.svg"
  3556. }
  3557. }
  3558. },
  3559. [
  3560. {
  3561. name: "Megamacro",
  3562. height: math.unit(70, "km"),
  3563. default: true
  3564. },
  3565. {
  3566. name: "Gigamacro",
  3567. height: math.unit(681818, "miles")
  3568. },
  3569. {
  3570. name: "Examacro",
  3571. height: math.unit(3800000, "lightyears")
  3572. },
  3573. ]
  3574. ))
  3575. characterMakers.push(() => makeCharacter(
  3576. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3577. {
  3578. front: {
  3579. height: math.unit(12, "feet"),
  3580. weight: math.unit(3000, "lb"),
  3581. name: "Front",
  3582. image: {
  3583. source: "./media/characters/mech/front.svg",
  3584. extra: 2900 / 2770,
  3585. bottom: 110 / 3010
  3586. }
  3587. },
  3588. back: {
  3589. height: math.unit(12, "feet"),
  3590. weight: math.unit(3000, "lb"),
  3591. name: "Back",
  3592. image: {
  3593. source: "./media/characters/mech/back.svg",
  3594. extra: 3011 / 2890,
  3595. bottom: 94 / 3105
  3596. }
  3597. },
  3598. maw: {
  3599. height: math.unit(3.07, "feet"),
  3600. name: "Maw",
  3601. image: {
  3602. source: "./media/characters/mech/maw.svg"
  3603. }
  3604. },
  3605. head: {
  3606. height: math.unit(2.82, "feet"),
  3607. name: "Head",
  3608. image: {
  3609. source: "./media/characters/mech/head.svg"
  3610. }
  3611. },
  3612. dick: {
  3613. height: math.unit(1.43, "feet"),
  3614. name: "Dick",
  3615. image: {
  3616. source: "./media/characters/mech/dick.svg"
  3617. }
  3618. },
  3619. },
  3620. [
  3621. {
  3622. name: "Normal",
  3623. height: math.unit(12, "feet")
  3624. },
  3625. {
  3626. name: "Macro",
  3627. height: math.unit(300, "feet"),
  3628. default: true
  3629. },
  3630. {
  3631. name: "Macro+",
  3632. height: math.unit(1500, "feet")
  3633. },
  3634. ]
  3635. ))
  3636. characterMakers.push(() => makeCharacter(
  3637. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3638. {
  3639. front: {
  3640. height: math.unit(1.3, "meter"),
  3641. weight: math.unit(30, "kg"),
  3642. name: "Front",
  3643. image: {
  3644. source: "./media/characters/gregory/front.svg",
  3645. }
  3646. }
  3647. },
  3648. [
  3649. {
  3650. name: "Normal",
  3651. height: math.unit(1.3, "meter"),
  3652. default: true
  3653. },
  3654. {
  3655. name: "Macro",
  3656. height: math.unit(20, "meter")
  3657. }
  3658. ]
  3659. ))
  3660. characterMakers.push(() => makeCharacter(
  3661. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3662. {
  3663. front: {
  3664. height: math.unit(2.8, "meter"),
  3665. weight: math.unit(200, "kg"),
  3666. name: "Front",
  3667. image: {
  3668. source: "./media/characters/elory/front.svg",
  3669. }
  3670. }
  3671. },
  3672. [
  3673. {
  3674. name: "Normal",
  3675. height: math.unit(2.8, "meter"),
  3676. default: true
  3677. },
  3678. {
  3679. name: "Macro",
  3680. height: math.unit(38, "meter")
  3681. }
  3682. ]
  3683. ))
  3684. characterMakers.push(() => makeCharacter(
  3685. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3686. {
  3687. front: {
  3688. height: math.unit(470, "feet"),
  3689. weight: math.unit(924, "tons"),
  3690. name: "Front",
  3691. image: {
  3692. source: "./media/characters/angelpatamon/front.svg",
  3693. }
  3694. }
  3695. },
  3696. [
  3697. {
  3698. name: "Normal",
  3699. height: math.unit(470, "feet"),
  3700. default: true
  3701. },
  3702. {
  3703. name: "Deity Size I",
  3704. height: math.unit(28651.2, "km")
  3705. },
  3706. {
  3707. name: "Deity Size II",
  3708. height: math.unit(171907.2, "km")
  3709. }
  3710. ]
  3711. ))
  3712. characterMakers.push(() => makeCharacter(
  3713. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3714. {
  3715. side: {
  3716. height: math.unit(7.2, "meter"),
  3717. weight: math.unit(8.2, "tons"),
  3718. name: "Side",
  3719. image: {
  3720. source: "./media/characters/cryae/side.svg",
  3721. extra: 3500 / 1500
  3722. }
  3723. }
  3724. },
  3725. [
  3726. {
  3727. name: "Normal",
  3728. height: math.unit(7.2, "meter"),
  3729. default: true
  3730. }
  3731. ]
  3732. ))
  3733. characterMakers.push(() => makeCharacter(
  3734. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3735. {
  3736. front: {
  3737. height: math.unit(6, "feet"),
  3738. weight: math.unit(175, "lb"),
  3739. name: "Front",
  3740. image: {
  3741. source: "./media/characters/xera/front.svg",
  3742. extra: 2377 / 1972,
  3743. bottom: 75.5 / 2452
  3744. }
  3745. },
  3746. side: {
  3747. height: math.unit(6, "feet"),
  3748. weight: math.unit(175, "lb"),
  3749. name: "Side",
  3750. image: {
  3751. source: "./media/characters/xera/side.svg",
  3752. extra: 2345 / 2019,
  3753. bottom: 39.7 / 2384
  3754. }
  3755. },
  3756. back: {
  3757. height: math.unit(6, "feet"),
  3758. weight: math.unit(175, "lb"),
  3759. name: "Back",
  3760. image: {
  3761. source: "./media/characters/xera/back.svg",
  3762. extra: 2095 / 1984,
  3763. bottom: 67 / 2166
  3764. }
  3765. },
  3766. },
  3767. [
  3768. {
  3769. name: "Small",
  3770. height: math.unit(10, "feet")
  3771. },
  3772. {
  3773. name: "Macro",
  3774. height: math.unit(500, "meters"),
  3775. default: true
  3776. },
  3777. {
  3778. name: "Macro+",
  3779. height: math.unit(10, "km")
  3780. },
  3781. {
  3782. name: "Gigamacro",
  3783. height: math.unit(25000, "km")
  3784. },
  3785. {
  3786. name: "Teramacro",
  3787. height: math.unit(3e6, "km")
  3788. }
  3789. ]
  3790. ))
  3791. characterMakers.push(() => makeCharacter(
  3792. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3793. {
  3794. front: {
  3795. height: math.unit(6, "feet"),
  3796. weight: math.unit(175, "lb"),
  3797. name: "Front",
  3798. image: {
  3799. source: "./media/characters/nebula/front.svg",
  3800. extra: 2566 / 2362,
  3801. bottom: 81 / 2644
  3802. }
  3803. }
  3804. },
  3805. [
  3806. {
  3807. name: "Small",
  3808. height: math.unit(4.5, "meters")
  3809. },
  3810. {
  3811. name: "Macro",
  3812. height: math.unit(1500, "meters"),
  3813. default: true
  3814. },
  3815. {
  3816. name: "Megamacro",
  3817. height: math.unit(150, "km")
  3818. },
  3819. {
  3820. name: "Gigamacro",
  3821. height: math.unit(27000, "km")
  3822. }
  3823. ]
  3824. ))
  3825. characterMakers.push(() => makeCharacter(
  3826. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3827. {
  3828. front: {
  3829. height: math.unit(6, "feet"),
  3830. weight: math.unit(225, "lb"),
  3831. name: "Front",
  3832. image: {
  3833. source: "./media/characters/abysgar/front.svg"
  3834. }
  3835. }
  3836. },
  3837. [
  3838. {
  3839. name: "Small",
  3840. height: math.unit(4.5, "meters")
  3841. },
  3842. {
  3843. name: "Macro",
  3844. height: math.unit(1250, "meters"),
  3845. default: true
  3846. },
  3847. {
  3848. name: "Megamacro",
  3849. height: math.unit(125, "km")
  3850. },
  3851. {
  3852. name: "Gigamacro",
  3853. height: math.unit(26000, "km")
  3854. }
  3855. ]
  3856. ))
  3857. characterMakers.push(() => makeCharacter(
  3858. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3859. {
  3860. front: {
  3861. height: math.unit(6, "feet"),
  3862. weight: math.unit(180, "lb"),
  3863. name: "Front",
  3864. image: {
  3865. source: "./media/characters/yakuz/front.svg"
  3866. }
  3867. }
  3868. },
  3869. [
  3870. {
  3871. name: "Small",
  3872. height: math.unit(5, "meters")
  3873. },
  3874. {
  3875. name: "Macro",
  3876. height: math.unit(1500, "meters"),
  3877. default: true
  3878. },
  3879. {
  3880. name: "Megamacro",
  3881. height: math.unit(200, "km")
  3882. },
  3883. {
  3884. name: "Gigamacro",
  3885. height: math.unit(100000, "km")
  3886. }
  3887. ]
  3888. ))
  3889. characterMakers.push(() => makeCharacter(
  3890. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3891. {
  3892. front: {
  3893. height: math.unit(6, "feet"),
  3894. weight: math.unit(175, "lb"),
  3895. name: "Front",
  3896. image: {
  3897. source: "./media/characters/mirova/front.svg",
  3898. extra: 3334 / 3071,
  3899. bottom: 42 / 3375.6
  3900. }
  3901. }
  3902. },
  3903. [
  3904. {
  3905. name: "Small",
  3906. height: math.unit(5, "meters")
  3907. },
  3908. {
  3909. name: "Macro",
  3910. height: math.unit(900, "meters"),
  3911. default: true
  3912. },
  3913. {
  3914. name: "Megamacro",
  3915. height: math.unit(135, "km")
  3916. },
  3917. {
  3918. name: "Gigamacro",
  3919. height: math.unit(20000, "km")
  3920. }
  3921. ]
  3922. ))
  3923. characterMakers.push(() => makeCharacter(
  3924. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3925. {
  3926. side: {
  3927. height: math.unit(28.35, "feet"),
  3928. weight: math.unit(99.75, "tons"),
  3929. name: "Side",
  3930. image: {
  3931. source: "./media/characters/asana-mech/side.svg",
  3932. extra: 923 / 699,
  3933. bottom: 50 / 975
  3934. }
  3935. },
  3936. chaingun: {
  3937. height: math.unit(7, "feet"),
  3938. weight: math.unit(2400, "lb"),
  3939. name: "Chaingun",
  3940. image: {
  3941. source: "./media/characters/asana-mech/chaingun.svg"
  3942. }
  3943. },
  3944. laser: {
  3945. height: math.unit(7.12, "feet"),
  3946. weight: math.unit(2000, "lb"),
  3947. name: "Laser",
  3948. image: {
  3949. source: "./media/characters/asana-mech/laser.svg"
  3950. }
  3951. },
  3952. },
  3953. [
  3954. {
  3955. name: "Normal",
  3956. height: math.unit(28.35, "feet"),
  3957. default: true
  3958. },
  3959. {
  3960. name: "Macro",
  3961. height: math.unit(2500, "feet")
  3962. },
  3963. {
  3964. name: "Megamacro",
  3965. height: math.unit(25, "miles")
  3966. },
  3967. {
  3968. name: "Examacro",
  3969. height: math.unit(6e8, "lightyears")
  3970. },
  3971. ]
  3972. ))
  3973. characterMakers.push(() => makeCharacter(
  3974. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3975. {
  3976. front: {
  3977. height: math.unit(5, "meters"),
  3978. weight: math.unit(1000, "kg"),
  3979. name: "Front",
  3980. image: {
  3981. source: "./media/characters/asche/front.svg",
  3982. extra: 1258 / 1190,
  3983. bottom: 47 / 1305
  3984. }
  3985. },
  3986. frontUnderwear: {
  3987. height: math.unit(5, "meters"),
  3988. weight: math.unit(1000, "kg"),
  3989. name: "Front (Underwear)",
  3990. image: {
  3991. source: "./media/characters/asche/front-underwear.svg",
  3992. extra: 1258 / 1190,
  3993. bottom: 47 / 1305
  3994. }
  3995. },
  3996. frontDressed: {
  3997. height: math.unit(5, "meters"),
  3998. weight: math.unit(1000, "kg"),
  3999. name: "Front (Dressed)",
  4000. image: {
  4001. source: "./media/characters/asche/front-dressed.svg",
  4002. extra: 1258 / 1190,
  4003. bottom: 47 / 1305
  4004. }
  4005. },
  4006. frontArmor: {
  4007. height: math.unit(5, "meters"),
  4008. weight: math.unit(1000, "kg"),
  4009. name: "Front (Armored)",
  4010. image: {
  4011. source: "./media/characters/asche/front-armored.svg",
  4012. extra: 1374 / 1308,
  4013. bottom: 23 / 1397
  4014. }
  4015. },
  4016. mp724: {
  4017. height: math.unit(0.96, "meters"),
  4018. weight: math.unit(38, "kg"),
  4019. name: "H&K MP724",
  4020. image: {
  4021. source: "./media/characters/asche/h&k-mp724.svg"
  4022. }
  4023. },
  4024. side: {
  4025. height: math.unit(5, "meters"),
  4026. weight: math.unit(1000, "kg"),
  4027. name: "Side",
  4028. image: {
  4029. source: "./media/characters/asche/side.svg",
  4030. extra: 1717 / 1609,
  4031. bottom: 0.005
  4032. }
  4033. },
  4034. back: {
  4035. height: math.unit(5, "meters"),
  4036. weight: math.unit(1000, "kg"),
  4037. name: "Back",
  4038. image: {
  4039. source: "./media/characters/asche/back.svg",
  4040. extra: 1570 / 1501
  4041. }
  4042. },
  4043. },
  4044. [
  4045. {
  4046. name: "DEFCON 5",
  4047. height: math.unit(5, "meters")
  4048. },
  4049. {
  4050. name: "DEFCON 4",
  4051. height: math.unit(500, "meters"),
  4052. default: true
  4053. },
  4054. {
  4055. name: "DEFCON 3",
  4056. height: math.unit(5, "km")
  4057. },
  4058. {
  4059. name: "DEFCON 2",
  4060. height: math.unit(500, "km")
  4061. },
  4062. {
  4063. name: "DEFCON 1",
  4064. height: math.unit(500000, "km")
  4065. },
  4066. {
  4067. name: "DEFCON 0",
  4068. height: math.unit(3, "gigaparsecs")
  4069. },
  4070. ]
  4071. ))
  4072. characterMakers.push(() => makeCharacter(
  4073. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4074. {
  4075. front: {
  4076. height: math.unit(2, "meters"),
  4077. weight: math.unit(76, "kg"),
  4078. name: "Front",
  4079. image: {
  4080. source: "./media/characters/gale/front.svg"
  4081. }
  4082. },
  4083. frontAlt1: {
  4084. height: math.unit(2, "meters"),
  4085. weight: math.unit(76, "kg"),
  4086. name: "Front (Alt 1)",
  4087. image: {
  4088. source: "./media/characters/gale/front-alt-1.svg"
  4089. }
  4090. },
  4091. frontAlt2: {
  4092. height: math.unit(2, "meters"),
  4093. weight: math.unit(76, "kg"),
  4094. name: "Front (Alt 2)",
  4095. image: {
  4096. source: "./media/characters/gale/front-alt-2.svg"
  4097. }
  4098. },
  4099. },
  4100. [
  4101. {
  4102. name: "Normal",
  4103. height: math.unit(7, "feet")
  4104. },
  4105. {
  4106. name: "Macro",
  4107. height: math.unit(150, "feet"),
  4108. default: true
  4109. },
  4110. {
  4111. name: "Macro+",
  4112. height: math.unit(300, "feet")
  4113. },
  4114. ]
  4115. ))
  4116. characterMakers.push(() => makeCharacter(
  4117. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4118. {
  4119. front: {
  4120. height: math.unit(2, "meters"),
  4121. weight: math.unit(76, "kg"),
  4122. name: "Front",
  4123. image: {
  4124. source: "./media/characters/draylen/front.svg"
  4125. }
  4126. }
  4127. },
  4128. [
  4129. {
  4130. name: "Macro",
  4131. height: math.unit(150, "feet"),
  4132. default: true
  4133. }
  4134. ]
  4135. ))
  4136. characterMakers.push(() => makeCharacter(
  4137. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4138. {
  4139. front: {
  4140. height: math.unit(7 + 9 / 12, "feet"),
  4141. weight: math.unit(379, "lbs"),
  4142. name: "Front",
  4143. image: {
  4144. source: "./media/characters/chez/front.svg"
  4145. }
  4146. },
  4147. side: {
  4148. height: math.unit(7 + 9 / 12, "feet"),
  4149. weight: math.unit(379, "lbs"),
  4150. name: "Side",
  4151. image: {
  4152. source: "./media/characters/chez/side.svg"
  4153. }
  4154. }
  4155. },
  4156. [
  4157. {
  4158. name: "Normal",
  4159. height: math.unit(7 + 9 / 12, "feet"),
  4160. default: true
  4161. },
  4162. {
  4163. name: "God King",
  4164. height: math.unit(9750000, "meters")
  4165. }
  4166. ]
  4167. ))
  4168. characterMakers.push(() => makeCharacter(
  4169. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4170. {
  4171. front: {
  4172. height: math.unit(6, "feet"),
  4173. weight: math.unit(275, "lbs"),
  4174. name: "Front",
  4175. image: {
  4176. source: "./media/characters/kaylum/front.svg",
  4177. bottom: 0.01,
  4178. extra: 1166 / 1031
  4179. }
  4180. },
  4181. frontWingless: {
  4182. height: math.unit(6, "feet"),
  4183. weight: math.unit(275, "lbs"),
  4184. name: "Front (Wingless)",
  4185. image: {
  4186. source: "./media/characters/kaylum/front-wingless.svg",
  4187. bottom: 0.01,
  4188. extra: 1117 / 1031
  4189. }
  4190. }
  4191. },
  4192. [
  4193. {
  4194. name: "Normal",
  4195. height: math.unit(3.05, "meters")
  4196. },
  4197. {
  4198. name: "Master",
  4199. height: math.unit(5.5, "meters")
  4200. },
  4201. {
  4202. name: "Rampage",
  4203. height: math.unit(19, "meters")
  4204. },
  4205. {
  4206. name: "Macro Lite",
  4207. height: math.unit(37, "meters")
  4208. },
  4209. {
  4210. name: "Hyper Predator",
  4211. height: math.unit(61, "meters")
  4212. },
  4213. {
  4214. name: "Macro",
  4215. height: math.unit(138, "meters"),
  4216. default: true
  4217. }
  4218. ]
  4219. ))
  4220. characterMakers.push(() => makeCharacter(
  4221. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4222. {
  4223. front: {
  4224. height: math.unit(6, "feet"),
  4225. weight: math.unit(150, "lbs"),
  4226. name: "Front",
  4227. image: {
  4228. source: "./media/characters/geta/front.svg"
  4229. }
  4230. }
  4231. },
  4232. [
  4233. {
  4234. name: "Micro",
  4235. height: math.unit(3, "inches"),
  4236. default: true
  4237. },
  4238. {
  4239. name: "Normal",
  4240. height: math.unit(5 + 5 / 12, "feet")
  4241. }
  4242. ]
  4243. ))
  4244. characterMakers.push(() => makeCharacter(
  4245. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4246. {
  4247. front: {
  4248. height: math.unit(6, "feet"),
  4249. weight: math.unit(300, "lbs"),
  4250. name: "Front",
  4251. image: {
  4252. source: "./media/characters/tyrnn/front.svg"
  4253. }
  4254. }
  4255. },
  4256. [
  4257. {
  4258. name: "Main Height",
  4259. height: math.unit(355, "feet"),
  4260. default: true
  4261. },
  4262. {
  4263. name: "Fave. Height",
  4264. height: math.unit(2400, "feet")
  4265. }
  4266. ]
  4267. ))
  4268. characterMakers.push(() => makeCharacter(
  4269. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4270. {
  4271. front: {
  4272. height: math.unit(6, "feet"),
  4273. weight: math.unit(300, "lbs"),
  4274. name: "Front",
  4275. image: {
  4276. source: "./media/characters/appledectomy/front.svg"
  4277. }
  4278. }
  4279. },
  4280. [
  4281. {
  4282. name: "Macro",
  4283. height: math.unit(2500, "feet")
  4284. },
  4285. {
  4286. name: "Megamacro",
  4287. height: math.unit(50, "miles"),
  4288. default: true
  4289. },
  4290. {
  4291. name: "Gigamacro",
  4292. height: math.unit(5000, "miles")
  4293. },
  4294. {
  4295. name: "Teramacro",
  4296. height: math.unit(250000, "miles")
  4297. },
  4298. ]
  4299. ))
  4300. characterMakers.push(() => makeCharacter(
  4301. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4302. {
  4303. front: {
  4304. height: math.unit(6, "feet"),
  4305. weight: math.unit(200, "lbs"),
  4306. name: "Front",
  4307. image: {
  4308. source: "./media/characters/vulpes/front.svg",
  4309. extra: 573 / 543,
  4310. bottom: 0.033
  4311. }
  4312. },
  4313. side: {
  4314. height: math.unit(6, "feet"),
  4315. weight: math.unit(200, "lbs"),
  4316. name: "Side",
  4317. image: {
  4318. source: "./media/characters/vulpes/side.svg",
  4319. extra: 577 / 549,
  4320. bottom: 11 / 588
  4321. }
  4322. },
  4323. back: {
  4324. height: math.unit(6, "feet"),
  4325. weight: math.unit(200, "lbs"),
  4326. name: "Back",
  4327. image: {
  4328. source: "./media/characters/vulpes/back.svg",
  4329. extra: 573 / 549,
  4330. bottom: 20 / 593
  4331. }
  4332. },
  4333. feet: {
  4334. height: math.unit(1.276, "feet"),
  4335. name: "Feet",
  4336. image: {
  4337. source: "./media/characters/vulpes/feet.svg"
  4338. }
  4339. },
  4340. maw: {
  4341. height: math.unit(1.18, "feet"),
  4342. name: "Maw",
  4343. image: {
  4344. source: "./media/characters/vulpes/maw.svg"
  4345. }
  4346. },
  4347. },
  4348. [
  4349. {
  4350. name: "Micro",
  4351. height: math.unit(2, "inches")
  4352. },
  4353. {
  4354. name: "Normal",
  4355. height: math.unit(6.3, "feet")
  4356. },
  4357. {
  4358. name: "Macro",
  4359. height: math.unit(850, "feet")
  4360. },
  4361. {
  4362. name: "Megamacro",
  4363. height: math.unit(7500, "feet"),
  4364. default: true
  4365. },
  4366. {
  4367. name: "Gigamacro",
  4368. height: math.unit(570000, "miles")
  4369. }
  4370. ]
  4371. ))
  4372. characterMakers.push(() => makeCharacter(
  4373. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4374. {
  4375. front: {
  4376. height: math.unit(6, "feet"),
  4377. weight: math.unit(210, "lbs"),
  4378. name: "Front",
  4379. image: {
  4380. source: "./media/characters/rain-fallen/front.svg"
  4381. }
  4382. },
  4383. side: {
  4384. height: math.unit(6, "feet"),
  4385. weight: math.unit(210, "lbs"),
  4386. name: "Side",
  4387. image: {
  4388. source: "./media/characters/rain-fallen/side.svg"
  4389. }
  4390. },
  4391. back: {
  4392. height: math.unit(6, "feet"),
  4393. weight: math.unit(210, "lbs"),
  4394. name: "Back",
  4395. image: {
  4396. source: "./media/characters/rain-fallen/back.svg"
  4397. }
  4398. },
  4399. feral: {
  4400. height: math.unit(9, "feet"),
  4401. weight: math.unit(700, "lbs"),
  4402. name: "Feral",
  4403. image: {
  4404. source: "./media/characters/rain-fallen/feral.svg"
  4405. }
  4406. },
  4407. },
  4408. [
  4409. {
  4410. name: "Meddling with Mortals",
  4411. height: math.unit(8 + 8/12, "feet")
  4412. },
  4413. {
  4414. name: "Normal",
  4415. height: math.unit(5, "meter")
  4416. },
  4417. {
  4418. name: "Macro",
  4419. height: math.unit(150, "meter"),
  4420. default: true
  4421. },
  4422. {
  4423. name: "Megamacro",
  4424. height: math.unit(278e6, "meter")
  4425. },
  4426. {
  4427. name: "Gigamacro",
  4428. height: math.unit(2e9, "meter")
  4429. },
  4430. {
  4431. name: "Teramacro",
  4432. height: math.unit(8e12, "meter")
  4433. },
  4434. {
  4435. name: "Devourer",
  4436. height: math.unit(14, "zettameters")
  4437. },
  4438. {
  4439. name: "Scarlet King",
  4440. height: math.unit(18, "yottameters")
  4441. },
  4442. {
  4443. name: "Void",
  4444. height: math.unit(1e88, "yottameters")
  4445. }
  4446. ]
  4447. ))
  4448. characterMakers.push(() => makeCharacter(
  4449. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4450. {
  4451. standing: {
  4452. height: math.unit(6, "feet"),
  4453. weight: math.unit(180, "lbs"),
  4454. name: "Standing",
  4455. image: {
  4456. source: "./media/characters/zaakira/standing.svg"
  4457. }
  4458. },
  4459. laying: {
  4460. height: math.unit(3, "feet"),
  4461. weight: math.unit(180, "lbs"),
  4462. name: "Laying",
  4463. image: {
  4464. source: "./media/characters/zaakira/laying.svg"
  4465. }
  4466. },
  4467. },
  4468. [
  4469. {
  4470. name: "Normal",
  4471. height: math.unit(12, "feet")
  4472. },
  4473. {
  4474. name: "Macro",
  4475. height: math.unit(279, "feet"),
  4476. default: true
  4477. }
  4478. ]
  4479. ))
  4480. characterMakers.push(() => makeCharacter(
  4481. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4482. {
  4483. femSfw: {
  4484. height: math.unit(8, "feet"),
  4485. weight: math.unit(350, "lb"),
  4486. name: "Fem",
  4487. image: {
  4488. source: "./media/characters/sigvald/fem-sfw.svg",
  4489. extra: 182 / 164,
  4490. bottom: 8.7 / 190.5
  4491. }
  4492. },
  4493. femNsfw: {
  4494. height: math.unit(8, "feet"),
  4495. weight: math.unit(350, "lb"),
  4496. name: "Fem (NSFW)",
  4497. image: {
  4498. source: "./media/characters/sigvald/fem-nsfw.svg",
  4499. extra: 182 / 164,
  4500. bottom: 8.7 / 190.5
  4501. }
  4502. },
  4503. maleNsfw: {
  4504. height: math.unit(8, "feet"),
  4505. weight: math.unit(350, "lb"),
  4506. name: "Male (NSFW)",
  4507. image: {
  4508. source: "./media/characters/sigvald/male-nsfw.svg",
  4509. extra: 182 / 164,
  4510. bottom: 8.7 / 190.5
  4511. }
  4512. },
  4513. hermNsfw: {
  4514. height: math.unit(8, "feet"),
  4515. weight: math.unit(350, "lb"),
  4516. name: "Herm (NSFW)",
  4517. image: {
  4518. source: "./media/characters/sigvald/herm-nsfw.svg",
  4519. extra: 182 / 164,
  4520. bottom: 8.7 / 190.5
  4521. }
  4522. },
  4523. dick: {
  4524. height: math.unit(2.36, "feet"),
  4525. name: "Dick",
  4526. image: {
  4527. source: "./media/characters/sigvald/dick.svg"
  4528. }
  4529. },
  4530. eye: {
  4531. height: math.unit(0.31, "feet"),
  4532. name: "Eye",
  4533. image: {
  4534. source: "./media/characters/sigvald/eye.svg"
  4535. }
  4536. },
  4537. mouth: {
  4538. height: math.unit(0.92, "feet"),
  4539. name: "Mouth",
  4540. image: {
  4541. source: "./media/characters/sigvald/mouth.svg"
  4542. }
  4543. },
  4544. paws: {
  4545. height: math.unit(2.2, "feet"),
  4546. name: "Paws",
  4547. image: {
  4548. source: "./media/characters/sigvald/paws.svg"
  4549. }
  4550. }
  4551. },
  4552. [
  4553. {
  4554. name: "Normal",
  4555. height: math.unit(8, "feet")
  4556. },
  4557. {
  4558. name: "Large",
  4559. height: math.unit(12, "feet")
  4560. },
  4561. {
  4562. name: "Larger",
  4563. height: math.unit(20, "feet")
  4564. },
  4565. {
  4566. name: "Macro",
  4567. height: math.unit(150, "feet")
  4568. },
  4569. {
  4570. name: "Macro+",
  4571. height: math.unit(200, "feet"),
  4572. default: true
  4573. },
  4574. ]
  4575. ))
  4576. characterMakers.push(() => makeCharacter(
  4577. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4578. {
  4579. side: {
  4580. height: math.unit(12, "feet"),
  4581. weight: math.unit(2000, "kg"),
  4582. name: "Side",
  4583. image: {
  4584. source: "./media/characters/scott/side.svg",
  4585. extra: 754 / 724,
  4586. bottom: 0.069
  4587. }
  4588. },
  4589. upright: {
  4590. height: math.unit(12, "feet"),
  4591. weight: math.unit(2000, "kg"),
  4592. name: "Upright",
  4593. image: {
  4594. source: "./media/characters/scott/upright.svg",
  4595. extra: 3881 / 3722,
  4596. bottom: 0.05
  4597. }
  4598. },
  4599. },
  4600. [
  4601. {
  4602. name: "Normal",
  4603. height: math.unit(12, "feet"),
  4604. default: true
  4605. },
  4606. ]
  4607. ))
  4608. characterMakers.push(() => makeCharacter(
  4609. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4610. {
  4611. side: {
  4612. height: math.unit(8, "meters"),
  4613. weight: math.unit(84755, "lbs"),
  4614. name: "Side",
  4615. image: {
  4616. source: "./media/characters/tobias/side.svg",
  4617. extra: 1474 / 1096,
  4618. bottom: 38.9 / 1513.1235
  4619. }
  4620. },
  4621. },
  4622. [
  4623. {
  4624. name: "Normal",
  4625. height: math.unit(8, "meters"),
  4626. default: true
  4627. },
  4628. ]
  4629. ))
  4630. characterMakers.push(() => makeCharacter(
  4631. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4632. {
  4633. front: {
  4634. height: math.unit(5.5, "feet"),
  4635. weight: math.unit(400, "lbs"),
  4636. name: "Front",
  4637. image: {
  4638. source: "./media/characters/kieran/front.svg",
  4639. extra: 2694 / 2364,
  4640. bottom: 217 / 2908
  4641. }
  4642. },
  4643. side: {
  4644. height: math.unit(5.5, "feet"),
  4645. weight: math.unit(400, "lbs"),
  4646. name: "Side",
  4647. image: {
  4648. source: "./media/characters/kieran/side.svg",
  4649. extra: 875 / 777,
  4650. bottom: 84.6 / 959
  4651. }
  4652. },
  4653. },
  4654. [
  4655. {
  4656. name: "Normal",
  4657. height: math.unit(5.5, "feet"),
  4658. default: true
  4659. },
  4660. ]
  4661. ))
  4662. characterMakers.push(() => makeCharacter(
  4663. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4664. {
  4665. side: {
  4666. height: math.unit(2, "meters"),
  4667. weight: math.unit(70, "kg"),
  4668. name: "Side",
  4669. image: {
  4670. source: "./media/characters/sanya/side.svg",
  4671. bottom: 0.02,
  4672. extra: 1.02
  4673. }
  4674. },
  4675. },
  4676. [
  4677. {
  4678. name: "Small",
  4679. height: math.unit(2, "meters")
  4680. },
  4681. {
  4682. name: "Normal",
  4683. height: math.unit(3, "meters")
  4684. },
  4685. {
  4686. name: "Macro",
  4687. height: math.unit(16, "meters"),
  4688. default: true
  4689. },
  4690. ]
  4691. ))
  4692. characterMakers.push(() => makeCharacter(
  4693. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4694. {
  4695. front: {
  4696. height: math.unit(2, "meters"),
  4697. weight: math.unit(120, "kg"),
  4698. name: "Front",
  4699. image: {
  4700. source: "./media/characters/miranda/front.svg",
  4701. extra: 195 / 185,
  4702. bottom: 10.9 / 206.5
  4703. }
  4704. },
  4705. back: {
  4706. height: math.unit(2, "meters"),
  4707. weight: math.unit(120, "kg"),
  4708. name: "Back",
  4709. image: {
  4710. source: "./media/characters/miranda/back.svg",
  4711. extra: 201 / 193,
  4712. bottom: 2.3 / 203.7
  4713. }
  4714. },
  4715. },
  4716. [
  4717. {
  4718. name: "Normal",
  4719. height: math.unit(10, "feet"),
  4720. default: true
  4721. }
  4722. ]
  4723. ))
  4724. characterMakers.push(() => makeCharacter(
  4725. { name: "James", species: ["deer"], tags: ["anthro"] },
  4726. {
  4727. side: {
  4728. height: math.unit(2, "meters"),
  4729. weight: math.unit(100, "kg"),
  4730. name: "Front",
  4731. image: {
  4732. source: "./media/characters/james/front.svg",
  4733. extra: 10 / 8.5
  4734. }
  4735. },
  4736. },
  4737. [
  4738. {
  4739. name: "Normal",
  4740. height: math.unit(8.5, "feet"),
  4741. default: true
  4742. }
  4743. ]
  4744. ))
  4745. characterMakers.push(() => makeCharacter(
  4746. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4747. {
  4748. side: {
  4749. height: math.unit(9.5, "feet"),
  4750. weight: math.unit(2500, "lbs"),
  4751. name: "Side",
  4752. image: {
  4753. source: "./media/characters/heather/side.svg"
  4754. }
  4755. },
  4756. },
  4757. [
  4758. {
  4759. name: "Normal",
  4760. height: math.unit(9.5, "feet"),
  4761. default: true
  4762. }
  4763. ]
  4764. ))
  4765. characterMakers.push(() => makeCharacter(
  4766. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4767. {
  4768. side: {
  4769. height: math.unit(6.5, "feet"),
  4770. weight: math.unit(400, "lbs"),
  4771. name: "Side",
  4772. image: {
  4773. source: "./media/characters/lukas/side.svg",
  4774. extra: 7.25 / 6.5
  4775. }
  4776. },
  4777. },
  4778. [
  4779. {
  4780. name: "Normal",
  4781. height: math.unit(6.5, "feet"),
  4782. default: true
  4783. }
  4784. ]
  4785. ))
  4786. characterMakers.push(() => makeCharacter(
  4787. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4788. {
  4789. side: {
  4790. height: math.unit(5, "feet"),
  4791. weight: math.unit(3000, "lbs"),
  4792. name: "Side",
  4793. image: {
  4794. source: "./media/characters/louise/side.svg"
  4795. }
  4796. },
  4797. },
  4798. [
  4799. {
  4800. name: "Normal",
  4801. height: math.unit(5, "feet"),
  4802. default: true
  4803. }
  4804. ]
  4805. ))
  4806. characterMakers.push(() => makeCharacter(
  4807. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4808. {
  4809. side: {
  4810. height: math.unit(6, "feet"),
  4811. weight: math.unit(150, "lbs"),
  4812. name: "Side",
  4813. image: {
  4814. source: "./media/characters/ramona/side.svg"
  4815. }
  4816. },
  4817. },
  4818. [
  4819. {
  4820. name: "Normal",
  4821. height: math.unit(5.3, "meters"),
  4822. default: true
  4823. },
  4824. {
  4825. name: "Macro",
  4826. height: math.unit(20, "stories")
  4827. },
  4828. {
  4829. name: "Macro+",
  4830. height: math.unit(50, "stories")
  4831. },
  4832. ]
  4833. ))
  4834. characterMakers.push(() => makeCharacter(
  4835. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4836. {
  4837. standing: {
  4838. height: math.unit(5.75, "feet"),
  4839. weight: math.unit(160, "lbs"),
  4840. name: "Standing",
  4841. image: {
  4842. source: "./media/characters/deerpuff/standing.svg",
  4843. extra: 682 / 624
  4844. }
  4845. },
  4846. sitting: {
  4847. height: math.unit(5.75 / 1.79, "feet"),
  4848. weight: math.unit(160, "lbs"),
  4849. name: "Sitting",
  4850. image: {
  4851. source: "./media/characters/deerpuff/sitting.svg",
  4852. bottom: 44 / 400,
  4853. extra: 1
  4854. }
  4855. },
  4856. taurLaying: {
  4857. height: math.unit(6, "feet"),
  4858. weight: math.unit(400, "lbs"),
  4859. name: "Taur (Laying)",
  4860. image: {
  4861. source: "./media/characters/deerpuff/taur-laying.svg"
  4862. }
  4863. },
  4864. },
  4865. [
  4866. {
  4867. name: "Puffball",
  4868. height: math.unit(6, "inches")
  4869. },
  4870. {
  4871. name: "Normalpuff",
  4872. height: math.unit(5.75, "feet")
  4873. },
  4874. {
  4875. name: "Macropuff",
  4876. height: math.unit(1500, "feet"),
  4877. default: true
  4878. },
  4879. {
  4880. name: "Megapuff",
  4881. height: math.unit(500, "miles")
  4882. },
  4883. {
  4884. name: "Gigapuff",
  4885. height: math.unit(250000, "miles")
  4886. },
  4887. {
  4888. name: "Omegapuff",
  4889. height: math.unit(1000, "lightyears")
  4890. },
  4891. ]
  4892. ))
  4893. characterMakers.push(() => makeCharacter(
  4894. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4895. {
  4896. stomping: {
  4897. height: math.unit(6, "feet"),
  4898. weight: math.unit(170, "lbs"),
  4899. name: "Stomping",
  4900. image: {
  4901. source: "./media/characters/vivian/stomping.svg"
  4902. }
  4903. },
  4904. sitting: {
  4905. height: math.unit(6 / 1.75, "feet"),
  4906. weight: math.unit(170, "lbs"),
  4907. name: "Sitting",
  4908. image: {
  4909. source: "./media/characters/vivian/sitting.svg",
  4910. bottom: 1 / 6.4,
  4911. extra: 1,
  4912. }
  4913. },
  4914. },
  4915. [
  4916. {
  4917. name: "Normal",
  4918. height: math.unit(7, "feet"),
  4919. default: true
  4920. },
  4921. {
  4922. name: "Macro",
  4923. height: math.unit(10, "stories")
  4924. },
  4925. {
  4926. name: "Macro+",
  4927. height: math.unit(30, "stories")
  4928. },
  4929. {
  4930. name: "Megamacro",
  4931. height: math.unit(10, "miles")
  4932. },
  4933. {
  4934. name: "Megamacro+",
  4935. height: math.unit(2750000, "meters")
  4936. },
  4937. ]
  4938. ))
  4939. characterMakers.push(() => makeCharacter(
  4940. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4941. {
  4942. front: {
  4943. height: math.unit(6, "feet"),
  4944. weight: math.unit(160, "lbs"),
  4945. name: "Front",
  4946. image: {
  4947. source: "./media/characters/prince/front.svg",
  4948. extra: 3400 / 3000
  4949. }
  4950. },
  4951. jumping: {
  4952. height: math.unit(6, "feet"),
  4953. weight: math.unit(160, "lbs"),
  4954. name: "Jumping",
  4955. image: {
  4956. source: "./media/characters/prince/jump.svg",
  4957. extra: 2555 / 2134
  4958. }
  4959. },
  4960. },
  4961. [
  4962. {
  4963. name: "Normal",
  4964. height: math.unit(7.75, "feet"),
  4965. default: true
  4966. },
  4967. {
  4968. name: "Not cute",
  4969. height: math.unit(17, "feet")
  4970. },
  4971. {
  4972. name: "I said NOT",
  4973. height: math.unit(91, "feet")
  4974. },
  4975. {
  4976. name: "Please stop",
  4977. height: math.unit(560, "feet")
  4978. },
  4979. {
  4980. name: "What have you done",
  4981. height: math.unit(2200, "feet")
  4982. },
  4983. {
  4984. name: "Deer God",
  4985. height: math.unit(3.6, "miles")
  4986. },
  4987. ]
  4988. ))
  4989. characterMakers.push(() => makeCharacter(
  4990. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4991. {
  4992. standing: {
  4993. height: math.unit(6, "feet"),
  4994. weight: math.unit(300, "lbs"),
  4995. name: "Standing",
  4996. image: {
  4997. source: "./media/characters/psymon/standing.svg",
  4998. extra: 1888 / 1810,
  4999. bottom: 0.05
  5000. }
  5001. },
  5002. slithering: {
  5003. height: math.unit(6, "feet"),
  5004. weight: math.unit(300, "lbs"),
  5005. name: "Slithering",
  5006. image: {
  5007. source: "./media/characters/psymon/slithering.svg",
  5008. extra: 1330 / 1224
  5009. }
  5010. },
  5011. slitheringAlt: {
  5012. height: math.unit(6, "feet"),
  5013. weight: math.unit(300, "lbs"),
  5014. name: "Slithering (Alt)",
  5015. image: {
  5016. source: "./media/characters/psymon/slithering-alt.svg",
  5017. extra: 1330 / 1224
  5018. }
  5019. },
  5020. },
  5021. [
  5022. {
  5023. name: "Normal",
  5024. height: math.unit(11.25, "feet"),
  5025. default: true
  5026. },
  5027. {
  5028. name: "Large",
  5029. height: math.unit(27, "feet")
  5030. },
  5031. {
  5032. name: "Giant",
  5033. height: math.unit(87, "feet")
  5034. },
  5035. {
  5036. name: "Macro",
  5037. height: math.unit(365, "feet")
  5038. },
  5039. {
  5040. name: "Megamacro",
  5041. height: math.unit(3, "miles")
  5042. },
  5043. {
  5044. name: "World Serpent",
  5045. height: math.unit(8000, "miles")
  5046. },
  5047. ]
  5048. ))
  5049. characterMakers.push(() => makeCharacter(
  5050. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5051. {
  5052. front: {
  5053. height: math.unit(6, "feet"),
  5054. weight: math.unit(180, "lbs"),
  5055. name: "Front",
  5056. image: {
  5057. source: "./media/characters/daimos/front.svg",
  5058. extra: 4160 / 3897,
  5059. bottom: 0.021
  5060. }
  5061. }
  5062. },
  5063. [
  5064. {
  5065. name: "Normal",
  5066. height: math.unit(8, "feet"),
  5067. default: true
  5068. },
  5069. {
  5070. name: "Big Dog",
  5071. height: math.unit(22, "feet")
  5072. },
  5073. {
  5074. name: "Macro",
  5075. height: math.unit(127, "feet")
  5076. },
  5077. {
  5078. name: "Megamacro",
  5079. height: math.unit(3600, "feet")
  5080. },
  5081. ]
  5082. ))
  5083. characterMakers.push(() => makeCharacter(
  5084. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5085. {
  5086. side: {
  5087. height: math.unit(6, "feet"),
  5088. weight: math.unit(180, "lbs"),
  5089. name: "Side",
  5090. image: {
  5091. source: "./media/characters/blake/side.svg",
  5092. extra: 1212 / 1120,
  5093. bottom: 0.05
  5094. }
  5095. },
  5096. crouched: {
  5097. height: math.unit(6 * 0.57, "feet"),
  5098. weight: math.unit(180, "lbs"),
  5099. name: "Crouched",
  5100. image: {
  5101. source: "./media/characters/blake/crouched.svg",
  5102. extra: 840 / 587,
  5103. bottom: 0.04
  5104. }
  5105. },
  5106. bent: {
  5107. height: math.unit(6 * 0.75, "feet"),
  5108. weight: math.unit(180, "lbs"),
  5109. name: "Bent",
  5110. image: {
  5111. source: "./media/characters/blake/bent.svg",
  5112. extra: 592 / 544,
  5113. bottom: 0.035
  5114. }
  5115. },
  5116. },
  5117. [
  5118. {
  5119. name: "Normal",
  5120. height: math.unit(8 + 1 / 6, "feet"),
  5121. default: true
  5122. },
  5123. {
  5124. name: "Big Backside",
  5125. height: math.unit(37, "feet")
  5126. },
  5127. {
  5128. name: "Subway Shredder",
  5129. height: math.unit(72, "feet")
  5130. },
  5131. {
  5132. name: "City Carver",
  5133. height: math.unit(1675, "feet")
  5134. },
  5135. {
  5136. name: "Tectonic Tweaker",
  5137. height: math.unit(2300, "miles")
  5138. },
  5139. ]
  5140. ))
  5141. characterMakers.push(() => makeCharacter(
  5142. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5143. {
  5144. front: {
  5145. height: math.unit(6, "feet"),
  5146. weight: math.unit(180, "lbs"),
  5147. name: "Front",
  5148. image: {
  5149. source: "./media/characters/guisetto/front.svg",
  5150. extra: 856 / 817,
  5151. bottom: 0.06
  5152. }
  5153. },
  5154. airborne: {
  5155. height: math.unit(6, "feet"),
  5156. weight: math.unit(180, "lbs"),
  5157. name: "Airborne",
  5158. image: {
  5159. source: "./media/characters/guisetto/airborne.svg",
  5160. extra: 584 / 525
  5161. }
  5162. },
  5163. },
  5164. [
  5165. {
  5166. name: "Normal",
  5167. height: math.unit(10 + 11 / 12, "feet"),
  5168. default: true
  5169. },
  5170. {
  5171. name: "Large",
  5172. height: math.unit(35, "feet")
  5173. },
  5174. {
  5175. name: "Macro",
  5176. height: math.unit(475, "feet")
  5177. },
  5178. ]
  5179. ))
  5180. characterMakers.push(() => makeCharacter(
  5181. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5182. {
  5183. front: {
  5184. height: math.unit(6, "feet"),
  5185. weight: math.unit(180, "lbs"),
  5186. name: "Front",
  5187. image: {
  5188. source: "./media/characters/luxor/front.svg",
  5189. extra: 2940 / 2152
  5190. }
  5191. },
  5192. back: {
  5193. height: math.unit(6, "feet"),
  5194. weight: math.unit(180, "lbs"),
  5195. name: "Back",
  5196. image: {
  5197. source: "./media/characters/luxor/back.svg",
  5198. extra: 1083 / 960
  5199. }
  5200. },
  5201. },
  5202. [
  5203. {
  5204. name: "Normal",
  5205. height: math.unit(5 + 5 / 6, "feet"),
  5206. default: true
  5207. },
  5208. {
  5209. name: "Lamp",
  5210. height: math.unit(50, "feet")
  5211. },
  5212. {
  5213. name: "Lämp",
  5214. height: math.unit(300, "feet")
  5215. },
  5216. {
  5217. name: "The sun is a lamp",
  5218. height: math.unit(250000, "miles")
  5219. },
  5220. ]
  5221. ))
  5222. characterMakers.push(() => makeCharacter(
  5223. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5224. {
  5225. front: {
  5226. height: math.unit(6, "feet"),
  5227. weight: math.unit(50, "lbs"),
  5228. name: "Front",
  5229. image: {
  5230. source: "./media/characters/huoyan/front.svg"
  5231. }
  5232. },
  5233. side: {
  5234. height: math.unit(6, "feet"),
  5235. weight: math.unit(180, "lbs"),
  5236. name: "Side",
  5237. image: {
  5238. source: "./media/characters/huoyan/side.svg"
  5239. }
  5240. },
  5241. },
  5242. [
  5243. {
  5244. name: "Chef",
  5245. height: math.unit(9, "feet")
  5246. },
  5247. {
  5248. name: "Normal",
  5249. height: math.unit(65, "feet"),
  5250. default: true
  5251. },
  5252. {
  5253. name: "Macro",
  5254. height: math.unit(780, "feet")
  5255. },
  5256. {
  5257. name: "Flaming Mountain",
  5258. height: math.unit(4.8, "miles")
  5259. },
  5260. {
  5261. name: "Celestial",
  5262. height: math.unit(765000, "miles")
  5263. },
  5264. ]
  5265. ))
  5266. characterMakers.push(() => makeCharacter(
  5267. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5268. {
  5269. front: {
  5270. height: math.unit(5 + 3 / 4, "feet"),
  5271. weight: math.unit(120, "lbs"),
  5272. name: "Front",
  5273. image: {
  5274. source: "./media/characters/tails/front.svg"
  5275. }
  5276. }
  5277. },
  5278. [
  5279. {
  5280. name: "Normal",
  5281. height: math.unit(5 + 3 / 4, "feet"),
  5282. default: true
  5283. }
  5284. ]
  5285. ))
  5286. characterMakers.push(() => makeCharacter(
  5287. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5288. {
  5289. front: {
  5290. height: math.unit(4, "feet"),
  5291. weight: math.unit(50, "lbs"),
  5292. name: "Front",
  5293. image: {
  5294. source: "./media/characters/rainy/front.svg"
  5295. }
  5296. }
  5297. },
  5298. [
  5299. {
  5300. name: "Macro",
  5301. height: math.unit(800, "feet"),
  5302. default: true
  5303. }
  5304. ]
  5305. ))
  5306. characterMakers.push(() => makeCharacter(
  5307. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5308. {
  5309. front: {
  5310. height: math.unit(6, "feet"),
  5311. weight: math.unit(150, "lbs"),
  5312. name: "Front",
  5313. image: {
  5314. source: "./media/characters/rainier/front.svg"
  5315. }
  5316. }
  5317. },
  5318. [
  5319. {
  5320. name: "Micro",
  5321. height: math.unit(2, "mm"),
  5322. default: true
  5323. }
  5324. ]
  5325. ))
  5326. characterMakers.push(() => makeCharacter(
  5327. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5328. {
  5329. front: {
  5330. height: math.unit(6, "feet"),
  5331. weight: math.unit(180, "lbs"),
  5332. name: "Front",
  5333. image: {
  5334. source: "./media/characters/andy/front.svg"
  5335. }
  5336. }
  5337. },
  5338. [
  5339. {
  5340. name: "Normal",
  5341. height: math.unit(8, "feet"),
  5342. default: true
  5343. },
  5344. {
  5345. name: "Macro",
  5346. height: math.unit(1000, "feet")
  5347. },
  5348. {
  5349. name: "Megamacro",
  5350. height: math.unit(5, "miles")
  5351. },
  5352. {
  5353. name: "Gigamacro",
  5354. height: math.unit(5000, "miles")
  5355. },
  5356. ]
  5357. ))
  5358. characterMakers.push(() => makeCharacter(
  5359. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5360. {
  5361. front: {
  5362. height: math.unit(6, "feet"),
  5363. weight: math.unit(210, "lbs"),
  5364. name: "Front",
  5365. image: {
  5366. source: "./media/characters/cimmaron/front-sfw.svg",
  5367. extra: 701 / 676,
  5368. bottom: 0.046
  5369. }
  5370. },
  5371. back: {
  5372. height: math.unit(6, "feet"),
  5373. weight: math.unit(210, "lbs"),
  5374. name: "Back",
  5375. image: {
  5376. source: "./media/characters/cimmaron/back-sfw.svg",
  5377. extra: 701 / 676,
  5378. bottom: 0.046
  5379. }
  5380. },
  5381. frontNsfw: {
  5382. height: math.unit(6, "feet"),
  5383. weight: math.unit(210, "lbs"),
  5384. name: "Front (NSFW)",
  5385. image: {
  5386. source: "./media/characters/cimmaron/front-nsfw.svg",
  5387. extra: 701 / 676,
  5388. bottom: 0.046
  5389. }
  5390. },
  5391. backNsfw: {
  5392. height: math.unit(6, "feet"),
  5393. weight: math.unit(210, "lbs"),
  5394. name: "Back (NSFW)",
  5395. image: {
  5396. source: "./media/characters/cimmaron/back-nsfw.svg",
  5397. extra: 701 / 676,
  5398. bottom: 0.046
  5399. }
  5400. },
  5401. dick: {
  5402. height: math.unit(1.714, "feet"),
  5403. name: "Dick",
  5404. image: {
  5405. source: "./media/characters/cimmaron/dick.svg"
  5406. }
  5407. },
  5408. },
  5409. [
  5410. {
  5411. name: "Normal",
  5412. height: math.unit(6, "feet"),
  5413. default: true
  5414. },
  5415. {
  5416. name: "Macro Mayor",
  5417. height: math.unit(350, "meters")
  5418. },
  5419. ]
  5420. ))
  5421. characterMakers.push(() => makeCharacter(
  5422. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5423. {
  5424. front: {
  5425. height: math.unit(6, "feet"),
  5426. weight: math.unit(200, "lbs"),
  5427. name: "Front",
  5428. image: {
  5429. source: "./media/characters/akari/front.svg",
  5430. extra: 962 / 901,
  5431. bottom: 0.04
  5432. }
  5433. }
  5434. },
  5435. [
  5436. {
  5437. name: "Micro",
  5438. height: math.unit(5, "inches"),
  5439. default: true
  5440. },
  5441. {
  5442. name: "Normal",
  5443. height: math.unit(7, "feet")
  5444. },
  5445. ]
  5446. ))
  5447. characterMakers.push(() => makeCharacter(
  5448. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5449. {
  5450. front: {
  5451. height: math.unit(6, "feet"),
  5452. weight: math.unit(140, "lbs"),
  5453. name: "Front",
  5454. image: {
  5455. source: "./media/characters/cynosura/front.svg",
  5456. extra: 896 / 847
  5457. }
  5458. },
  5459. back: {
  5460. height: math.unit(6, "feet"),
  5461. weight: math.unit(140, "lbs"),
  5462. name: "Back",
  5463. image: {
  5464. source: "./media/characters/cynosura/back.svg",
  5465. extra: 1365 / 1250
  5466. }
  5467. },
  5468. },
  5469. [
  5470. {
  5471. name: "Micro",
  5472. height: math.unit(4, "inches")
  5473. },
  5474. {
  5475. name: "Normal",
  5476. height: math.unit(5.75, "feet"),
  5477. default: true
  5478. },
  5479. {
  5480. name: "Tall",
  5481. height: math.unit(10, "feet")
  5482. },
  5483. {
  5484. name: "Big",
  5485. height: math.unit(20, "feet")
  5486. },
  5487. {
  5488. name: "Macro",
  5489. height: math.unit(50, "feet")
  5490. },
  5491. ]
  5492. ))
  5493. characterMakers.push(() => makeCharacter(
  5494. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5495. {
  5496. front: {
  5497. height: math.unit(6, "feet"),
  5498. weight: math.unit(170, "lbs"),
  5499. name: "Front",
  5500. image: {
  5501. source: "./media/characters/gin/front.svg",
  5502. extra: 1.053,
  5503. bottom: 0.025
  5504. }
  5505. },
  5506. foot: {
  5507. height: math.unit(6 / 4.25, "feet"),
  5508. name: "Foot",
  5509. image: {
  5510. source: "./media/characters/gin/foot.svg"
  5511. }
  5512. },
  5513. sole: {
  5514. height: math.unit(6 / 4.40, "feet"),
  5515. name: "Sole",
  5516. image: {
  5517. source: "./media/characters/gin/sole.svg"
  5518. }
  5519. },
  5520. },
  5521. [
  5522. {
  5523. name: "Normal",
  5524. height: math.unit(13 + 2 / 12, "feet")
  5525. },
  5526. {
  5527. name: "Macro",
  5528. height: math.unit(1500, "feet")
  5529. },
  5530. {
  5531. name: "Megamacro",
  5532. height: math.unit(200, "miles"),
  5533. default: true
  5534. },
  5535. {
  5536. name: "Gigamacro",
  5537. height: math.unit(500, "megameters")
  5538. },
  5539. {
  5540. name: "Teramacro",
  5541. height: math.unit(15, "lightyears")
  5542. }
  5543. ]
  5544. ))
  5545. characterMakers.push(() => makeCharacter(
  5546. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5547. {
  5548. front: {
  5549. height: math.unit(6 + 1 / 6, "feet"),
  5550. weight: math.unit(178, "lbs"),
  5551. name: "Front",
  5552. image: {
  5553. source: "./media/characters/guy/front.svg"
  5554. }
  5555. }
  5556. },
  5557. [
  5558. {
  5559. name: "Normal",
  5560. height: math.unit(6 + 1 / 6, "feet"),
  5561. default: true
  5562. },
  5563. {
  5564. name: "Large",
  5565. height: math.unit(25 + 7 / 12, "feet")
  5566. },
  5567. {
  5568. name: "Macro",
  5569. height: math.unit(60 + 9 / 12, "feet")
  5570. },
  5571. {
  5572. name: "Macro+",
  5573. height: math.unit(246, "feet")
  5574. },
  5575. {
  5576. name: "Macro++",
  5577. height: math.unit(878, "feet")
  5578. }
  5579. ]
  5580. ))
  5581. characterMakers.push(() => makeCharacter(
  5582. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5583. {
  5584. front: {
  5585. height: math.unit(9, "feet"),
  5586. weight: math.unit(800, "lbs"),
  5587. name: "Front",
  5588. image: {
  5589. source: "./media/characters/tiberius/front.svg",
  5590. extra: 2295 / 2071
  5591. }
  5592. },
  5593. back: {
  5594. height: math.unit(9, "feet"),
  5595. weight: math.unit(800, "lbs"),
  5596. name: "Back",
  5597. image: {
  5598. source: "./media/characters/tiberius/back.svg",
  5599. extra: 2373 / 2160
  5600. }
  5601. },
  5602. },
  5603. [
  5604. {
  5605. name: "Normal",
  5606. height: math.unit(9, "feet"),
  5607. default: true
  5608. }
  5609. ]
  5610. ))
  5611. characterMakers.push(() => makeCharacter(
  5612. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5613. {
  5614. front: {
  5615. height: math.unit(6, "feet"),
  5616. weight: math.unit(600, "lbs"),
  5617. name: "Front",
  5618. image: {
  5619. source: "./media/characters/surgo/front.svg",
  5620. extra: 3591 / 2227
  5621. }
  5622. },
  5623. back: {
  5624. height: math.unit(6, "feet"),
  5625. weight: math.unit(600, "lbs"),
  5626. name: "Back",
  5627. image: {
  5628. source: "./media/characters/surgo/back.svg",
  5629. extra: 3557 / 2228
  5630. }
  5631. },
  5632. laying: {
  5633. height: math.unit(6 * 0.85, "feet"),
  5634. weight: math.unit(600, "lbs"),
  5635. name: "Laying",
  5636. image: {
  5637. source: "./media/characters/surgo/laying.svg"
  5638. }
  5639. },
  5640. },
  5641. [
  5642. {
  5643. name: "Normal",
  5644. height: math.unit(6, "feet"),
  5645. default: true
  5646. }
  5647. ]
  5648. ))
  5649. characterMakers.push(() => makeCharacter(
  5650. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5651. {
  5652. side: {
  5653. height: math.unit(6, "feet"),
  5654. weight: math.unit(150, "lbs"),
  5655. name: "Side",
  5656. image: {
  5657. source: "./media/characters/cibus/side.svg",
  5658. extra: 800 / 400
  5659. }
  5660. },
  5661. },
  5662. [
  5663. {
  5664. name: "Normal",
  5665. height: math.unit(6, "feet"),
  5666. default: true
  5667. }
  5668. ]
  5669. ))
  5670. characterMakers.push(() => makeCharacter(
  5671. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5672. {
  5673. front: {
  5674. height: math.unit(6, "feet"),
  5675. weight: math.unit(240, "lbs"),
  5676. name: "Front",
  5677. image: {
  5678. source: "./media/characters/nibbles/front.svg"
  5679. }
  5680. },
  5681. side: {
  5682. height: math.unit(6, "feet"),
  5683. weight: math.unit(240, "lbs"),
  5684. name: "Side",
  5685. image: {
  5686. source: "./media/characters/nibbles/side.svg"
  5687. }
  5688. },
  5689. },
  5690. [
  5691. {
  5692. name: "Normal",
  5693. height: math.unit(9, "feet"),
  5694. default: true
  5695. }
  5696. ]
  5697. ))
  5698. characterMakers.push(() => makeCharacter(
  5699. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5700. {
  5701. side: {
  5702. height: math.unit(5 + 1 / 6, "feet"),
  5703. weight: math.unit(130, "lbs"),
  5704. name: "Side",
  5705. image: {
  5706. source: "./media/characters/rikky/side.svg",
  5707. extra: 851 / 801
  5708. }
  5709. },
  5710. },
  5711. [
  5712. {
  5713. name: "Normal",
  5714. height: math.unit(5 + 1 / 6, "feet")
  5715. },
  5716. {
  5717. name: "Macro",
  5718. height: math.unit(152, "feet"),
  5719. default: true
  5720. },
  5721. {
  5722. name: "Megamacro",
  5723. height: math.unit(7, "miles")
  5724. }
  5725. ]
  5726. ))
  5727. characterMakers.push(() => makeCharacter(
  5728. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5729. {
  5730. side: {
  5731. height: math.unit(370, "cm"),
  5732. weight: math.unit(350, "lbs"),
  5733. name: "Side",
  5734. image: {
  5735. source: "./media/characters/malfressa/side.svg"
  5736. }
  5737. },
  5738. walking: {
  5739. height: math.unit(370, "cm"),
  5740. weight: math.unit(350, "lbs"),
  5741. name: "Walking",
  5742. image: {
  5743. source: "./media/characters/malfressa/walking.svg"
  5744. }
  5745. },
  5746. feral: {
  5747. height: math.unit(2500, "cm"),
  5748. weight: math.unit(100000, "lbs"),
  5749. name: "Feral",
  5750. image: {
  5751. source: "./media/characters/malfressa/feral.svg",
  5752. extra: 2108 / 837,
  5753. bottom: 0.02
  5754. }
  5755. },
  5756. },
  5757. [
  5758. {
  5759. name: "Normal",
  5760. height: math.unit(370, "cm")
  5761. },
  5762. {
  5763. name: "Macro",
  5764. height: math.unit(300, "meters"),
  5765. default: true
  5766. }
  5767. ]
  5768. ))
  5769. characterMakers.push(() => makeCharacter(
  5770. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5771. {
  5772. front: {
  5773. height: math.unit(6, "feet"),
  5774. weight: math.unit(60, "kg"),
  5775. name: "Front",
  5776. image: {
  5777. source: "./media/characters/jaro/front.svg"
  5778. }
  5779. },
  5780. back: {
  5781. height: math.unit(6, "feet"),
  5782. weight: math.unit(60, "kg"),
  5783. name: "Back",
  5784. image: {
  5785. source: "./media/characters/jaro/back.svg"
  5786. }
  5787. },
  5788. },
  5789. [
  5790. {
  5791. name: "Micro",
  5792. height: math.unit(7, "inches")
  5793. },
  5794. {
  5795. name: "Normal",
  5796. height: math.unit(5.5, "feet"),
  5797. default: true
  5798. },
  5799. {
  5800. name: "Minimacro",
  5801. height: math.unit(20, "feet")
  5802. },
  5803. {
  5804. name: "Macro",
  5805. height: math.unit(200, "meters")
  5806. }
  5807. ]
  5808. ))
  5809. characterMakers.push(() => makeCharacter(
  5810. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5811. {
  5812. front: {
  5813. height: math.unit(6, "feet"),
  5814. weight: math.unit(195, "lb"),
  5815. name: "Front",
  5816. image: {
  5817. source: "./media/characters/rogue/front.svg"
  5818. }
  5819. },
  5820. },
  5821. [
  5822. {
  5823. name: "Macro",
  5824. height: math.unit(90, "feet"),
  5825. default: true
  5826. },
  5827. ]
  5828. ))
  5829. characterMakers.push(() => makeCharacter(
  5830. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5831. {
  5832. front: {
  5833. height: math.unit(5 + 8 / 12, "feet"),
  5834. weight: math.unit(140, "lb"),
  5835. name: "Front",
  5836. image: {
  5837. source: "./media/characters/piper/front.svg",
  5838. extra: 3948/3655,
  5839. bottom: 0/3948
  5840. }
  5841. },
  5842. },
  5843. [
  5844. {
  5845. name: "Micro",
  5846. height: math.unit(2, "inches")
  5847. },
  5848. {
  5849. name: "Normal",
  5850. height: math.unit(5 + 8 / 12, "feet")
  5851. },
  5852. {
  5853. name: "Macro",
  5854. height: math.unit(250, "feet"),
  5855. default: true
  5856. },
  5857. {
  5858. name: "Megamacro",
  5859. height: math.unit(7, "miles")
  5860. },
  5861. ]
  5862. ))
  5863. characterMakers.push(() => makeCharacter(
  5864. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5865. {
  5866. front: {
  5867. height: math.unit(6, "feet"),
  5868. weight: math.unit(220, "lb"),
  5869. name: "Front",
  5870. image: {
  5871. source: "./media/characters/gemini/front.svg"
  5872. }
  5873. },
  5874. back: {
  5875. height: math.unit(6, "feet"),
  5876. weight: math.unit(220, "lb"),
  5877. name: "Back",
  5878. image: {
  5879. source: "./media/characters/gemini/back.svg"
  5880. }
  5881. },
  5882. kneeling: {
  5883. height: math.unit(6 / 1.5, "feet"),
  5884. weight: math.unit(220, "lb"),
  5885. name: "Kneeling",
  5886. image: {
  5887. source: "./media/characters/gemini/kneeling.svg",
  5888. bottom: 0.02
  5889. }
  5890. },
  5891. },
  5892. [
  5893. {
  5894. name: "Macro",
  5895. height: math.unit(300, "meters"),
  5896. default: true
  5897. },
  5898. {
  5899. name: "Megamacro",
  5900. height: math.unit(6900, "meters")
  5901. },
  5902. ]
  5903. ))
  5904. characterMakers.push(() => makeCharacter(
  5905. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5906. {
  5907. anthro: {
  5908. height: math.unit(2.35, "meters"),
  5909. weight: math.unit(73, "kg"),
  5910. name: "Anthro",
  5911. image: {
  5912. source: "./media/characters/alicia/anthro.svg",
  5913. extra: 2571 / 2385,
  5914. bottom: 75 / 2648
  5915. }
  5916. },
  5917. paw: {
  5918. height: math.unit(1.32, "feet"),
  5919. name: "Paw",
  5920. image: {
  5921. source: "./media/characters/alicia/paw.svg"
  5922. }
  5923. },
  5924. feral: {
  5925. height: math.unit(1.69, "meters"),
  5926. weight: math.unit(73, "kg"),
  5927. name: "Feral",
  5928. image: {
  5929. source: "./media/characters/alicia/feral.svg",
  5930. extra: 2123 / 1715,
  5931. bottom: 222 / 2349
  5932. }
  5933. },
  5934. },
  5935. [
  5936. {
  5937. name: "Normal",
  5938. height: math.unit(2.35, "meters")
  5939. },
  5940. {
  5941. name: "Macro",
  5942. height: math.unit(60, "meters"),
  5943. default: true
  5944. },
  5945. {
  5946. name: "Megamacro",
  5947. height: math.unit(10000, "kilometers")
  5948. },
  5949. ]
  5950. ))
  5951. characterMakers.push(() => makeCharacter(
  5952. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5953. {
  5954. front: {
  5955. height: math.unit(7, "feet"),
  5956. weight: math.unit(250, "lbs"),
  5957. name: "Front",
  5958. image: {
  5959. source: "./media/characters/archy/front.svg"
  5960. }
  5961. }
  5962. },
  5963. [
  5964. {
  5965. name: "Micro",
  5966. height: math.unit(1, "inch")
  5967. },
  5968. {
  5969. name: "Shorty",
  5970. height: math.unit(5, "feet")
  5971. },
  5972. {
  5973. name: "Normal",
  5974. height: math.unit(7, "feet")
  5975. },
  5976. {
  5977. name: "Macro",
  5978. height: math.unit(600, "meters"),
  5979. default: true
  5980. },
  5981. {
  5982. name: "Megamacro",
  5983. height: math.unit(1, "mile")
  5984. },
  5985. ]
  5986. ))
  5987. characterMakers.push(() => makeCharacter(
  5988. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5989. {
  5990. front: {
  5991. height: math.unit(1.65, "meters"),
  5992. weight: math.unit(74, "kg"),
  5993. name: "Front",
  5994. image: {
  5995. source: "./media/characters/berri/front.svg",
  5996. extra: 857 / 837,
  5997. bottom: 18 / 877
  5998. }
  5999. },
  6000. bum: {
  6001. height: math.unit(1.46, "feet"),
  6002. name: "Bum",
  6003. image: {
  6004. source: "./media/characters/berri/bum.svg"
  6005. }
  6006. },
  6007. mouth: {
  6008. height: math.unit(0.44, "feet"),
  6009. name: "Mouth",
  6010. image: {
  6011. source: "./media/characters/berri/mouth.svg"
  6012. }
  6013. },
  6014. paw: {
  6015. height: math.unit(0.826, "feet"),
  6016. name: "Paw",
  6017. image: {
  6018. source: "./media/characters/berri/paw.svg"
  6019. }
  6020. },
  6021. },
  6022. [
  6023. {
  6024. name: "Normal",
  6025. height: math.unit(1.65, "meters")
  6026. },
  6027. {
  6028. name: "Macro",
  6029. height: math.unit(60, "m"),
  6030. default: true
  6031. },
  6032. {
  6033. name: "Megamacro",
  6034. height: math.unit(9.213, "km")
  6035. },
  6036. {
  6037. name: "Planet Eater",
  6038. height: math.unit(489, "megameters")
  6039. },
  6040. {
  6041. name: "Teramacro",
  6042. height: math.unit(2471635000000, "meters")
  6043. },
  6044. {
  6045. name: "Examacro",
  6046. height: math.unit(8.0624e+26, "meters")
  6047. }
  6048. ]
  6049. ))
  6050. characterMakers.push(() => makeCharacter(
  6051. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6052. {
  6053. front: {
  6054. height: math.unit(1.72, "meters"),
  6055. weight: math.unit(68, "kg"),
  6056. name: "Front",
  6057. image: {
  6058. source: "./media/characters/lexi/front.svg"
  6059. }
  6060. }
  6061. },
  6062. [
  6063. {
  6064. name: "Very Smol",
  6065. height: math.unit(10, "mm")
  6066. },
  6067. {
  6068. name: "Micro",
  6069. height: math.unit(6.8, "cm"),
  6070. default: true
  6071. },
  6072. {
  6073. name: "Normal",
  6074. height: math.unit(1.72, "m")
  6075. }
  6076. ]
  6077. ))
  6078. characterMakers.push(() => makeCharacter(
  6079. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6080. {
  6081. front: {
  6082. height: math.unit(1.69, "meters"),
  6083. weight: math.unit(68, "kg"),
  6084. name: "Front",
  6085. image: {
  6086. source: "./media/characters/martin/front.svg",
  6087. extra: 596 / 581
  6088. }
  6089. }
  6090. },
  6091. [
  6092. {
  6093. name: "Micro",
  6094. height: math.unit(6.85, "cm"),
  6095. default: true
  6096. },
  6097. {
  6098. name: "Normal",
  6099. height: math.unit(1.69, "m")
  6100. }
  6101. ]
  6102. ))
  6103. characterMakers.push(() => makeCharacter(
  6104. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6105. {
  6106. front: {
  6107. height: math.unit(1.69, "meters"),
  6108. weight: math.unit(68, "kg"),
  6109. name: "Front",
  6110. image: {
  6111. source: "./media/characters/juno/front.svg"
  6112. }
  6113. }
  6114. },
  6115. [
  6116. {
  6117. name: "Micro",
  6118. height: math.unit(7, "cm")
  6119. },
  6120. {
  6121. name: "Normal",
  6122. height: math.unit(1.89, "m")
  6123. },
  6124. {
  6125. name: "Macro",
  6126. height: math.unit(353, "meters"),
  6127. default: true
  6128. }
  6129. ]
  6130. ))
  6131. characterMakers.push(() => makeCharacter(
  6132. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6133. {
  6134. front: {
  6135. height: math.unit(1.93, "meters"),
  6136. weight: math.unit(83, "kg"),
  6137. name: "Front",
  6138. image: {
  6139. source: "./media/characters/samantha/front.svg"
  6140. }
  6141. },
  6142. frontClothed: {
  6143. height: math.unit(1.93, "meters"),
  6144. weight: math.unit(83, "kg"),
  6145. name: "Front (Clothed)",
  6146. image: {
  6147. source: "./media/characters/samantha/front-clothed.svg"
  6148. }
  6149. },
  6150. back: {
  6151. height: math.unit(1.93, "meters"),
  6152. weight: math.unit(83, "kg"),
  6153. name: "Back",
  6154. image: {
  6155. source: "./media/characters/samantha/back.svg"
  6156. }
  6157. },
  6158. },
  6159. [
  6160. {
  6161. name: "Normal",
  6162. height: math.unit(1.93, "m")
  6163. },
  6164. {
  6165. name: "Macro",
  6166. height: math.unit(74, "meters"),
  6167. default: true
  6168. },
  6169. {
  6170. name: "Macro+",
  6171. height: math.unit(223, "meters"),
  6172. },
  6173. {
  6174. name: "Megamacro",
  6175. height: math.unit(8381, "meters"),
  6176. },
  6177. {
  6178. name: "Megamacro+",
  6179. height: math.unit(12000, "kilometers")
  6180. },
  6181. ]
  6182. ))
  6183. characterMakers.push(() => makeCharacter(
  6184. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6185. {
  6186. front: {
  6187. height: math.unit(1.92, "meters"),
  6188. weight: math.unit(80, "kg"),
  6189. name: "Front",
  6190. image: {
  6191. source: "./media/characters/dr-clay/front.svg"
  6192. }
  6193. },
  6194. frontClothed: {
  6195. height: math.unit(1.92, "meters"),
  6196. weight: math.unit(80, "kg"),
  6197. name: "Front (Clothed)",
  6198. image: {
  6199. source: "./media/characters/dr-clay/front-clothed.svg"
  6200. }
  6201. }
  6202. },
  6203. [
  6204. {
  6205. name: "Normal",
  6206. height: math.unit(1.92, "m")
  6207. },
  6208. {
  6209. name: "Macro",
  6210. height: math.unit(214, "meters"),
  6211. default: true
  6212. },
  6213. {
  6214. name: "Macro+",
  6215. height: math.unit(12.237, "meters"),
  6216. },
  6217. {
  6218. name: "Megamacro",
  6219. height: math.unit(557, "megameters"),
  6220. },
  6221. {
  6222. name: "Unimaginable",
  6223. height: math.unit(120e9, "lightyears")
  6224. },
  6225. ]
  6226. ))
  6227. characterMakers.push(() => makeCharacter(
  6228. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6229. {
  6230. front: {
  6231. height: math.unit(2, "meters"),
  6232. weight: math.unit(80, "kg"),
  6233. name: "Front",
  6234. image: {
  6235. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6236. }
  6237. }
  6238. },
  6239. [
  6240. {
  6241. name: "Teramacro",
  6242. height: math.unit(500000, "lightyears"),
  6243. default: true
  6244. },
  6245. ]
  6246. ))
  6247. characterMakers.push(() => makeCharacter(
  6248. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6249. {
  6250. front: {
  6251. height: math.unit(2, "meters"),
  6252. weight: math.unit(150, "kg"),
  6253. name: "Front",
  6254. image: {
  6255. source: "./media/characters/vemus/front.svg",
  6256. extra: 2384 / 2084,
  6257. bottom: 0.0123
  6258. }
  6259. }
  6260. },
  6261. [
  6262. {
  6263. name: "Normal",
  6264. height: math.unit(3.75, "meters"),
  6265. default: true
  6266. },
  6267. {
  6268. name: "Big",
  6269. height: math.unit(8, "meters")
  6270. },
  6271. {
  6272. name: "Macro",
  6273. height: math.unit(100, "meters")
  6274. },
  6275. {
  6276. name: "Macro+",
  6277. height: math.unit(1500, "meters")
  6278. },
  6279. {
  6280. name: "Stellar",
  6281. height: math.unit(14e8, "meters")
  6282. },
  6283. ]
  6284. ))
  6285. characterMakers.push(() => makeCharacter(
  6286. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6287. {
  6288. front: {
  6289. height: math.unit(2, "meters"),
  6290. weight: math.unit(70, "kg"),
  6291. name: "Front",
  6292. image: {
  6293. source: "./media/characters/beherit/front.svg",
  6294. extra: 1408 / 1242
  6295. }
  6296. }
  6297. },
  6298. [
  6299. {
  6300. name: "Normal",
  6301. height: math.unit(6, "feet")
  6302. },
  6303. {
  6304. name: "Lorg",
  6305. height: math.unit(25, "feet"),
  6306. default: true
  6307. },
  6308. {
  6309. name: "Lorger",
  6310. height: math.unit(75, "feet")
  6311. },
  6312. {
  6313. name: "Macro",
  6314. height: math.unit(200, "meters")
  6315. },
  6316. ]
  6317. ))
  6318. characterMakers.push(() => makeCharacter(
  6319. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6320. {
  6321. front: {
  6322. height: math.unit(2, "meters"),
  6323. weight: math.unit(150, "kg"),
  6324. name: "Front",
  6325. image: {
  6326. source: "./media/characters/everett/front.svg",
  6327. extra: 2038 / 1737,
  6328. bottom: 0.03
  6329. }
  6330. },
  6331. paw: {
  6332. height: math.unit(2 / 3.6, "meters"),
  6333. name: "Paw",
  6334. image: {
  6335. source: "./media/characters/everett/paw.svg"
  6336. }
  6337. },
  6338. },
  6339. [
  6340. {
  6341. name: "Normal",
  6342. height: math.unit(15, "feet"),
  6343. default: true
  6344. },
  6345. {
  6346. name: "Lorg",
  6347. height: math.unit(70, "feet"),
  6348. default: true
  6349. },
  6350. {
  6351. name: "Lorger",
  6352. height: math.unit(250, "feet")
  6353. },
  6354. {
  6355. name: "Macro",
  6356. height: math.unit(500, "meters")
  6357. },
  6358. ]
  6359. ))
  6360. characterMakers.push(() => makeCharacter(
  6361. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6362. {
  6363. front: {
  6364. height: math.unit(2, "meters"),
  6365. weight: math.unit(86, "kg"),
  6366. name: "Front",
  6367. image: {
  6368. source: "./media/characters/rose/front.svg",
  6369. extra: 350/335,
  6370. bottom: 10/360
  6371. }
  6372. },
  6373. frontAlt: {
  6374. height: math.unit(1.6, "meters"),
  6375. weight: math.unit(86, "kg"),
  6376. name: "Front (Alt)",
  6377. image: {
  6378. source: "./media/characters/rose/front-alt.svg",
  6379. extra: 299/283,
  6380. bottom: 3/302
  6381. }
  6382. },
  6383. plush: {
  6384. height: math.unit(2, "meters"),
  6385. weight: math.unit(86/3, "kg"),
  6386. name: "Plush",
  6387. image: {
  6388. source: "./media/characters/rose/plush.svg",
  6389. extra: 361/337,
  6390. bottom: 11/372
  6391. }
  6392. },
  6393. },
  6394. [
  6395. {
  6396. name: "Mini-Micro",
  6397. height: math.unit(1, "cm")
  6398. },
  6399. {
  6400. name: "Micro",
  6401. height: math.unit(3.5, "inches"),
  6402. default: true
  6403. },
  6404. {
  6405. name: "Normal",
  6406. height: math.unit(6 + 1 / 6, "feet")
  6407. },
  6408. {
  6409. name: "Mini-Macro",
  6410. height: math.unit(9 + 10 / 12, "feet")
  6411. },
  6412. ]
  6413. ))
  6414. characterMakers.push(() => makeCharacter(
  6415. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6416. {
  6417. front: {
  6418. height: math.unit(2, "meters"),
  6419. weight: math.unit(350, "lbs"),
  6420. name: "Front",
  6421. image: {
  6422. source: "./media/characters/regal/front.svg"
  6423. }
  6424. },
  6425. back: {
  6426. height: math.unit(2, "meters"),
  6427. weight: math.unit(350, "lbs"),
  6428. name: "Back",
  6429. image: {
  6430. source: "./media/characters/regal/back.svg"
  6431. }
  6432. },
  6433. },
  6434. [
  6435. {
  6436. name: "Macro",
  6437. height: math.unit(350, "feet"),
  6438. default: true
  6439. }
  6440. ]
  6441. ))
  6442. characterMakers.push(() => makeCharacter(
  6443. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6444. {
  6445. front: {
  6446. height: math.unit(4 + 11 / 12, "feet"),
  6447. weight: math.unit(100, "lbs"),
  6448. name: "Front",
  6449. image: {
  6450. source: "./media/characters/opal/front.svg"
  6451. }
  6452. },
  6453. frontAlt: {
  6454. height: math.unit(4 + 11 / 12, "feet"),
  6455. weight: math.unit(100, "lbs"),
  6456. name: "Front (Alt)",
  6457. image: {
  6458. source: "./media/characters/opal/front-alt.svg"
  6459. }
  6460. },
  6461. },
  6462. [
  6463. {
  6464. name: "Small",
  6465. height: math.unit(4 + 11 / 12, "feet")
  6466. },
  6467. {
  6468. name: "Normal",
  6469. height: math.unit(20, "feet"),
  6470. default: true
  6471. },
  6472. {
  6473. name: "Macro",
  6474. height: math.unit(120, "feet")
  6475. },
  6476. {
  6477. name: "Megamacro",
  6478. height: math.unit(80, "miles")
  6479. },
  6480. {
  6481. name: "True Size",
  6482. height: math.unit(100000, "lightyears")
  6483. },
  6484. ]
  6485. ))
  6486. characterMakers.push(() => makeCharacter(
  6487. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6488. {
  6489. front: {
  6490. height: math.unit(6, "feet"),
  6491. weight: math.unit(200, "lbs"),
  6492. name: "Front",
  6493. image: {
  6494. source: "./media/characters/vector-wuff/front.svg"
  6495. }
  6496. }
  6497. },
  6498. [
  6499. {
  6500. name: "Normal",
  6501. height: math.unit(2.8, "meters")
  6502. },
  6503. {
  6504. name: "Macro",
  6505. height: math.unit(450, "meters"),
  6506. default: true
  6507. },
  6508. {
  6509. name: "Megamacro",
  6510. height: math.unit(15, "kilometers")
  6511. }
  6512. ]
  6513. ))
  6514. characterMakers.push(() => makeCharacter(
  6515. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6516. {
  6517. front: {
  6518. height: math.unit(6, "feet"),
  6519. weight: math.unit(256, "lbs"),
  6520. name: "Front",
  6521. image: {
  6522. source: "./media/characters/dannik/front.svg"
  6523. }
  6524. }
  6525. },
  6526. [
  6527. {
  6528. name: "Macro",
  6529. height: math.unit(69.57, "meters"),
  6530. default: true
  6531. },
  6532. ]
  6533. ))
  6534. characterMakers.push(() => makeCharacter(
  6535. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6536. {
  6537. front: {
  6538. height: math.unit(6, "feet"),
  6539. weight: math.unit(120, "lbs"),
  6540. name: "Front",
  6541. image: {
  6542. source: "./media/characters/azura-saharah/front.svg"
  6543. }
  6544. },
  6545. back: {
  6546. height: math.unit(6, "feet"),
  6547. weight: math.unit(120, "lbs"),
  6548. name: "Back",
  6549. image: {
  6550. source: "./media/characters/azura-saharah/back.svg"
  6551. }
  6552. },
  6553. },
  6554. [
  6555. {
  6556. name: "Macro",
  6557. height: math.unit(100, "feet"),
  6558. default: true
  6559. },
  6560. ]
  6561. ))
  6562. characterMakers.push(() => makeCharacter(
  6563. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6564. {
  6565. side: {
  6566. height: math.unit(5 + 4 / 12, "feet"),
  6567. weight: math.unit(163, "lbs"),
  6568. name: "Side",
  6569. image: {
  6570. source: "./media/characters/kennedy/side.svg"
  6571. }
  6572. }
  6573. },
  6574. [
  6575. {
  6576. name: "Standard Doggo",
  6577. height: math.unit(5 + 4 / 12, "feet")
  6578. },
  6579. {
  6580. name: "Big Doggo",
  6581. height: math.unit(25 + 3 / 12, "feet"),
  6582. default: true
  6583. },
  6584. ]
  6585. ))
  6586. characterMakers.push(() => makeCharacter(
  6587. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6588. {
  6589. front: {
  6590. height: math.unit(6, "feet"),
  6591. weight: math.unit(90, "lbs"),
  6592. name: "Front",
  6593. image: {
  6594. source: "./media/characters/odi-lunar/front.svg"
  6595. }
  6596. }
  6597. },
  6598. [
  6599. {
  6600. name: "Micro",
  6601. height: math.unit(3, "inches"),
  6602. default: true
  6603. },
  6604. {
  6605. name: "Normal",
  6606. height: math.unit(5.5, "feet")
  6607. }
  6608. ]
  6609. ))
  6610. characterMakers.push(() => makeCharacter(
  6611. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6612. {
  6613. back: {
  6614. height: math.unit(6, "feet"),
  6615. weight: math.unit(220, "lbs"),
  6616. name: "Back",
  6617. image: {
  6618. source: "./media/characters/mandake/back.svg"
  6619. }
  6620. }
  6621. },
  6622. [
  6623. {
  6624. name: "Normal",
  6625. height: math.unit(7, "feet"),
  6626. default: true
  6627. },
  6628. {
  6629. name: "Macro",
  6630. height: math.unit(78, "feet")
  6631. },
  6632. {
  6633. name: "Macro+",
  6634. height: math.unit(300, "meters")
  6635. },
  6636. {
  6637. name: "Macro++",
  6638. height: math.unit(2400, "feet")
  6639. },
  6640. {
  6641. name: "Megamacro",
  6642. height: math.unit(5167, "meters")
  6643. },
  6644. {
  6645. name: "Gigamacro",
  6646. height: math.unit(41769, "miles")
  6647. },
  6648. ]
  6649. ))
  6650. characterMakers.push(() => makeCharacter(
  6651. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6652. {
  6653. front: {
  6654. height: math.unit(6, "feet"),
  6655. weight: math.unit(120, "lbs"),
  6656. name: "Front",
  6657. image: {
  6658. source: "./media/characters/yozey/front.svg"
  6659. }
  6660. },
  6661. frontAlt: {
  6662. height: math.unit(6, "feet"),
  6663. weight: math.unit(120, "lbs"),
  6664. name: "Front (Alt)",
  6665. image: {
  6666. source: "./media/characters/yozey/front-alt.svg"
  6667. }
  6668. },
  6669. side: {
  6670. height: math.unit(6, "feet"),
  6671. weight: math.unit(120, "lbs"),
  6672. name: "Side",
  6673. image: {
  6674. source: "./media/characters/yozey/side.svg"
  6675. }
  6676. },
  6677. },
  6678. [
  6679. {
  6680. name: "Micro",
  6681. height: math.unit(3, "inches"),
  6682. default: true
  6683. },
  6684. {
  6685. name: "Normal",
  6686. height: math.unit(6, "feet")
  6687. }
  6688. ]
  6689. ))
  6690. characterMakers.push(() => makeCharacter(
  6691. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6692. {
  6693. front: {
  6694. height: math.unit(6, "feet"),
  6695. weight: math.unit(103, "lbs"),
  6696. name: "Front",
  6697. image: {
  6698. source: "./media/characters/valeska-voss/front.svg"
  6699. }
  6700. }
  6701. },
  6702. [
  6703. {
  6704. name: "Mini-Sized Sub",
  6705. height: math.unit(3.1, "inches")
  6706. },
  6707. {
  6708. name: "Mid-Sized Sub",
  6709. height: math.unit(6.2, "inches")
  6710. },
  6711. {
  6712. name: "Full-Sized Sub",
  6713. height: math.unit(9.3, "inches")
  6714. },
  6715. {
  6716. name: "Normal",
  6717. height: math.unit(5 + 2 / 12, "foot"),
  6718. default: true
  6719. },
  6720. ]
  6721. ))
  6722. characterMakers.push(() => makeCharacter(
  6723. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6724. {
  6725. front: {
  6726. height: math.unit(6, "feet"),
  6727. weight: math.unit(160, "lbs"),
  6728. name: "Front",
  6729. image: {
  6730. source: "./media/characters/gene-zeta/front.svg",
  6731. extra: 3006 / 2826,
  6732. bottom: 182 / 3188
  6733. }
  6734. }
  6735. },
  6736. [
  6737. {
  6738. name: "Micro",
  6739. height: math.unit(6, "inches")
  6740. },
  6741. {
  6742. name: "Normal",
  6743. height: math.unit(5 + 11 / 12, "foot"),
  6744. default: true
  6745. },
  6746. {
  6747. name: "Macro",
  6748. height: math.unit(140, "feet")
  6749. },
  6750. {
  6751. name: "Supercharged",
  6752. height: math.unit(2500, "feet")
  6753. },
  6754. ]
  6755. ))
  6756. characterMakers.push(() => makeCharacter(
  6757. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6758. {
  6759. front: {
  6760. height: math.unit(6, "feet"),
  6761. weight: math.unit(350, "lbs"),
  6762. name: "Front",
  6763. image: {
  6764. source: "./media/characters/razinox/front.svg",
  6765. extra: 1686 / 1548,
  6766. bottom: 28.2 / 1868
  6767. }
  6768. },
  6769. back: {
  6770. height: math.unit(6, "feet"),
  6771. weight: math.unit(350, "lbs"),
  6772. name: "Back",
  6773. image: {
  6774. source: "./media/characters/razinox/back.svg",
  6775. extra: 1660 / 1590,
  6776. bottom: 15 / 1665
  6777. }
  6778. },
  6779. },
  6780. [
  6781. {
  6782. name: "Normal",
  6783. height: math.unit(10 + 8 / 12, "foot")
  6784. },
  6785. {
  6786. name: "Minimacro",
  6787. height: math.unit(15, "foot")
  6788. },
  6789. {
  6790. name: "Macro",
  6791. height: math.unit(60, "foot"),
  6792. default: true
  6793. },
  6794. {
  6795. name: "Megamacro",
  6796. height: math.unit(5, "miles")
  6797. },
  6798. {
  6799. name: "Gigamacro",
  6800. height: math.unit(6000, "miles")
  6801. },
  6802. ]
  6803. ))
  6804. characterMakers.push(() => makeCharacter(
  6805. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6806. {
  6807. front: {
  6808. height: math.unit(6, "feet"),
  6809. weight: math.unit(150, "lbs"),
  6810. name: "Front",
  6811. image: {
  6812. source: "./media/characters/cobalt/front.svg"
  6813. }
  6814. }
  6815. },
  6816. [
  6817. {
  6818. name: "Normal",
  6819. height: math.unit(8 + 1 / 12, "foot")
  6820. },
  6821. {
  6822. name: "Macro",
  6823. height: math.unit(111, "foot"),
  6824. default: true
  6825. },
  6826. {
  6827. name: "Supracosmic",
  6828. height: math.unit(1e42, "feet")
  6829. },
  6830. ]
  6831. ))
  6832. characterMakers.push(() => makeCharacter(
  6833. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6834. {
  6835. front: {
  6836. height: math.unit(6, "feet"),
  6837. weight: math.unit(140, "lbs"),
  6838. name: "Front",
  6839. image: {
  6840. source: "./media/characters/amanda/front.svg"
  6841. }
  6842. }
  6843. },
  6844. [
  6845. {
  6846. name: "Micro",
  6847. height: math.unit(5, "inches"),
  6848. default: true
  6849. },
  6850. ]
  6851. ))
  6852. characterMakers.push(() => makeCharacter(
  6853. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6854. {
  6855. front: {
  6856. height: math.unit(2.75, "meters"),
  6857. weight: math.unit(1200, "lb"),
  6858. name: "Front",
  6859. image: {
  6860. source: "./media/characters/teal/front.svg",
  6861. extra: 2463 / 2320,
  6862. bottom: 166 / 2629
  6863. }
  6864. },
  6865. back: {
  6866. height: math.unit(2.75, "meters"),
  6867. weight: math.unit(1200, "lb"),
  6868. name: "Back",
  6869. image: {
  6870. source: "./media/characters/teal/back.svg",
  6871. extra: 2580 / 2489,
  6872. bottom: 151 / 2731
  6873. }
  6874. },
  6875. sitting: {
  6876. height: math.unit(1.9, "meters"),
  6877. weight: math.unit(1200, "lb"),
  6878. name: "Sitting",
  6879. image: {
  6880. source: "./media/characters/teal/sitting.svg",
  6881. extra: 623 / 590,
  6882. bottom: 121 / 744
  6883. }
  6884. },
  6885. standing: {
  6886. height: math.unit(2.75, "meters"),
  6887. weight: math.unit(1200, "lb"),
  6888. name: "Standing",
  6889. image: {
  6890. source: "./media/characters/teal/standing.svg",
  6891. extra: 923 / 893,
  6892. bottom: 60 / 983
  6893. }
  6894. },
  6895. stretching: {
  6896. height: math.unit(3.65, "meters"),
  6897. weight: math.unit(1200, "lb"),
  6898. name: "Stretching",
  6899. image: {
  6900. source: "./media/characters/teal/stretching.svg",
  6901. extra: 1276 / 1244,
  6902. bottom: 0 / 1276
  6903. }
  6904. },
  6905. legged: {
  6906. height: math.unit(1.3, "meters"),
  6907. weight: math.unit(100, "lb"),
  6908. name: "Legged",
  6909. image: {
  6910. source: "./media/characters/teal/legged.svg",
  6911. extra: 462 / 437,
  6912. bottom: 24 / 486
  6913. }
  6914. },
  6915. naga: {
  6916. height: math.unit(5.4, "meters"),
  6917. weight: math.unit(4000, "lb"),
  6918. name: "Naga",
  6919. image: {
  6920. source: "./media/characters/teal/naga.svg",
  6921. extra: 1902 / 1858,
  6922. bottom: 0 / 1902
  6923. }
  6924. },
  6925. hand: {
  6926. height: math.unit(0.52, "meters"),
  6927. name: "Hand",
  6928. image: {
  6929. source: "./media/characters/teal/hand.svg"
  6930. }
  6931. },
  6932. maw: {
  6933. height: math.unit(0.43, "meters"),
  6934. name: "Maw",
  6935. image: {
  6936. source: "./media/characters/teal/maw.svg"
  6937. }
  6938. },
  6939. slit: {
  6940. height: math.unit(0.25, "meters"),
  6941. name: "Slit",
  6942. image: {
  6943. source: "./media/characters/teal/slit.svg"
  6944. }
  6945. },
  6946. },
  6947. [
  6948. {
  6949. name: "Normal",
  6950. height: math.unit(2.75, "meters"),
  6951. default: true
  6952. },
  6953. {
  6954. name: "Macro",
  6955. height: math.unit(300, "feet")
  6956. },
  6957. {
  6958. name: "Macro+",
  6959. height: math.unit(2000, "feet")
  6960. },
  6961. ]
  6962. ))
  6963. characterMakers.push(() => makeCharacter(
  6964. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6965. {
  6966. frontCat: {
  6967. height: math.unit(6, "feet"),
  6968. weight: math.unit(180, "lbs"),
  6969. name: "Front (Cat)",
  6970. image: {
  6971. source: "./media/characters/ravin-amulet/front-cat.svg"
  6972. }
  6973. },
  6974. frontCatAlt: {
  6975. height: math.unit(6, "feet"),
  6976. weight: math.unit(180, "lbs"),
  6977. name: "Front (Alt, Cat)",
  6978. image: {
  6979. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6980. }
  6981. },
  6982. frontWerewolf: {
  6983. height: math.unit(6 * 1.2, "feet"),
  6984. weight: math.unit(225, "lbs"),
  6985. name: "Front (Werewolf)",
  6986. image: {
  6987. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6988. }
  6989. },
  6990. backWerewolf: {
  6991. height: math.unit(6 * 1.2, "feet"),
  6992. weight: math.unit(225, "lbs"),
  6993. name: "Back (Werewolf)",
  6994. image: {
  6995. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6996. }
  6997. },
  6998. },
  6999. [
  7000. {
  7001. name: "Nano",
  7002. height: math.unit(1, "micrometer")
  7003. },
  7004. {
  7005. name: "Micro",
  7006. height: math.unit(1, "inch")
  7007. },
  7008. {
  7009. name: "Normal",
  7010. height: math.unit(6, "feet"),
  7011. default: true
  7012. },
  7013. {
  7014. name: "Macro",
  7015. height: math.unit(60, "feet")
  7016. }
  7017. ]
  7018. ))
  7019. characterMakers.push(() => makeCharacter(
  7020. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7021. {
  7022. front: {
  7023. height: math.unit(6, "feet"),
  7024. weight: math.unit(165, "lbs"),
  7025. name: "Front",
  7026. image: {
  7027. source: "./media/characters/fluoresce/front.svg"
  7028. }
  7029. }
  7030. },
  7031. [
  7032. {
  7033. name: "Micro",
  7034. height: math.unit(6, "cm")
  7035. },
  7036. {
  7037. name: "Normal",
  7038. height: math.unit(5 + 7 / 12, "feet"),
  7039. default: true
  7040. },
  7041. {
  7042. name: "Macro",
  7043. height: math.unit(56, "feet")
  7044. },
  7045. {
  7046. name: "Megamacro",
  7047. height: math.unit(1.9, "miles")
  7048. },
  7049. ]
  7050. ))
  7051. characterMakers.push(() => makeCharacter(
  7052. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7053. {
  7054. front: {
  7055. height: math.unit(9 + 6 / 12, "feet"),
  7056. weight: math.unit(523, "lbs"),
  7057. name: "Side",
  7058. image: {
  7059. source: "./media/characters/aurora/side.svg"
  7060. }
  7061. }
  7062. },
  7063. [
  7064. {
  7065. name: "Normal",
  7066. height: math.unit(9 + 6 / 12, "feet")
  7067. },
  7068. {
  7069. name: "Macro",
  7070. height: math.unit(96, "feet"),
  7071. default: true
  7072. },
  7073. {
  7074. name: "Macro+",
  7075. height: math.unit(243, "feet")
  7076. },
  7077. ]
  7078. ))
  7079. characterMakers.push(() => makeCharacter(
  7080. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7081. {
  7082. front: {
  7083. height: math.unit(194, "cm"),
  7084. weight: math.unit(90, "kg"),
  7085. name: "Front",
  7086. image: {
  7087. source: "./media/characters/ranek/front.svg"
  7088. }
  7089. },
  7090. side: {
  7091. height: math.unit(194, "cm"),
  7092. weight: math.unit(90, "kg"),
  7093. name: "Side",
  7094. image: {
  7095. source: "./media/characters/ranek/side.svg"
  7096. }
  7097. },
  7098. back: {
  7099. height: math.unit(194, "cm"),
  7100. weight: math.unit(90, "kg"),
  7101. name: "Back",
  7102. image: {
  7103. source: "./media/characters/ranek/back.svg"
  7104. }
  7105. },
  7106. feral: {
  7107. height: math.unit(30, "cm"),
  7108. weight: math.unit(1.6, "lbs"),
  7109. name: "Feral",
  7110. image: {
  7111. source: "./media/characters/ranek/feral.svg"
  7112. }
  7113. },
  7114. },
  7115. [
  7116. {
  7117. name: "Normal",
  7118. height: math.unit(194, "cm"),
  7119. default: true
  7120. },
  7121. {
  7122. name: "Macro",
  7123. height: math.unit(100, "meters")
  7124. },
  7125. ]
  7126. ))
  7127. characterMakers.push(() => makeCharacter(
  7128. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7129. {
  7130. front: {
  7131. height: math.unit(5 + 6 / 12, "feet"),
  7132. weight: math.unit(153, "lbs"),
  7133. name: "Front",
  7134. image: {
  7135. source: "./media/characters/andrew-cooper/front.svg"
  7136. }
  7137. },
  7138. },
  7139. [
  7140. {
  7141. name: "Nano",
  7142. height: math.unit(1, "mm")
  7143. },
  7144. {
  7145. name: "Micro",
  7146. height: math.unit(2, "inches")
  7147. },
  7148. {
  7149. name: "Normal",
  7150. height: math.unit(5 + 6 / 12, "feet"),
  7151. default: true
  7152. }
  7153. ]
  7154. ))
  7155. characterMakers.push(() => makeCharacter(
  7156. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7157. {
  7158. front: {
  7159. height: math.unit(6, "feet"),
  7160. weight: math.unit(180, "lbs"),
  7161. name: "Front",
  7162. image: {
  7163. source: "./media/characters/akane-sato/front.svg",
  7164. extra: 1219 / 1140
  7165. }
  7166. },
  7167. back: {
  7168. height: math.unit(6, "feet"),
  7169. weight: math.unit(180, "lbs"),
  7170. name: "Back",
  7171. image: {
  7172. source: "./media/characters/akane-sato/back.svg",
  7173. extra: 1219 / 1170
  7174. }
  7175. },
  7176. },
  7177. [
  7178. {
  7179. name: "Normal",
  7180. height: math.unit(2.5, "meters")
  7181. },
  7182. {
  7183. name: "Macro",
  7184. height: math.unit(250, "meters"),
  7185. default: true
  7186. },
  7187. {
  7188. name: "Megamacro",
  7189. height: math.unit(25, "km")
  7190. },
  7191. ]
  7192. ))
  7193. characterMakers.push(() => makeCharacter(
  7194. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7195. {
  7196. front: {
  7197. height: math.unit(6, "feet"),
  7198. weight: math.unit(65, "kg"),
  7199. name: "Front",
  7200. image: {
  7201. source: "./media/characters/rook/front.svg",
  7202. extra: 960 / 950
  7203. }
  7204. }
  7205. },
  7206. [
  7207. {
  7208. name: "Normal",
  7209. height: math.unit(8.8, "feet")
  7210. },
  7211. {
  7212. name: "Macro",
  7213. height: math.unit(88, "feet"),
  7214. default: true
  7215. },
  7216. {
  7217. name: "Megamacro",
  7218. height: math.unit(8, "miles")
  7219. },
  7220. ]
  7221. ))
  7222. characterMakers.push(() => makeCharacter(
  7223. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7224. {
  7225. front: {
  7226. height: math.unit(12 + 2 / 12, "feet"),
  7227. weight: math.unit(808, "lbs"),
  7228. name: "Front",
  7229. image: {
  7230. source: "./media/characters/prodigy/front.svg"
  7231. }
  7232. }
  7233. },
  7234. [
  7235. {
  7236. name: "Normal",
  7237. height: math.unit(12 + 2 / 12, "feet"),
  7238. default: true
  7239. },
  7240. {
  7241. name: "Macro",
  7242. height: math.unit(143, "feet")
  7243. },
  7244. {
  7245. name: "Macro+",
  7246. height: math.unit(400, "feet")
  7247. },
  7248. ]
  7249. ))
  7250. characterMakers.push(() => makeCharacter(
  7251. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7252. {
  7253. front: {
  7254. height: math.unit(6, "feet"),
  7255. weight: math.unit(225, "lbs"),
  7256. name: "Front",
  7257. image: {
  7258. source: "./media/characters/daniel/front.svg"
  7259. }
  7260. },
  7261. leaning: {
  7262. height: math.unit(6, "feet"),
  7263. weight: math.unit(225, "lbs"),
  7264. name: "Leaning",
  7265. image: {
  7266. source: "./media/characters/daniel/leaning.svg"
  7267. }
  7268. },
  7269. },
  7270. [
  7271. {
  7272. name: "Macro",
  7273. height: math.unit(1000, "feet"),
  7274. default: true
  7275. },
  7276. ]
  7277. ))
  7278. characterMakers.push(() => makeCharacter(
  7279. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7280. {
  7281. front: {
  7282. height: math.unit(6, "feet"),
  7283. weight: math.unit(88, "lbs"),
  7284. name: "Front",
  7285. image: {
  7286. source: "./media/characters/chiros/front.svg",
  7287. extra: 306 / 226
  7288. }
  7289. },
  7290. side: {
  7291. height: math.unit(6, "feet"),
  7292. weight: math.unit(88, "lbs"),
  7293. name: "Side",
  7294. image: {
  7295. source: "./media/characters/chiros/side.svg",
  7296. extra: 306 / 226
  7297. }
  7298. },
  7299. },
  7300. [
  7301. {
  7302. name: "Normal",
  7303. height: math.unit(6, "cm"),
  7304. default: true
  7305. },
  7306. ]
  7307. ))
  7308. characterMakers.push(() => makeCharacter(
  7309. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7310. {
  7311. front: {
  7312. height: math.unit(6, "feet"),
  7313. weight: math.unit(100, "lbs"),
  7314. name: "Front",
  7315. image: {
  7316. source: "./media/characters/selka/front.svg",
  7317. extra: 947 / 887
  7318. }
  7319. }
  7320. },
  7321. [
  7322. {
  7323. name: "Normal",
  7324. height: math.unit(5, "cm"),
  7325. default: true
  7326. },
  7327. ]
  7328. ))
  7329. characterMakers.push(() => makeCharacter(
  7330. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7331. {
  7332. front: {
  7333. height: math.unit(8 + 3 / 12, "feet"),
  7334. weight: math.unit(424, "lbs"),
  7335. name: "Front",
  7336. image: {
  7337. source: "./media/characters/verin/front.svg",
  7338. extra: 1845 / 1550
  7339. }
  7340. },
  7341. frontArmored: {
  7342. height: math.unit(8 + 3 / 12, "feet"),
  7343. weight: math.unit(424, "lbs"),
  7344. name: "Front (Armored)",
  7345. image: {
  7346. source: "./media/characters/verin/front-armor.svg",
  7347. extra: 1845 / 1550,
  7348. bottom: 0.01
  7349. }
  7350. },
  7351. back: {
  7352. height: math.unit(8 + 3 / 12, "feet"),
  7353. weight: math.unit(424, "lbs"),
  7354. name: "Back",
  7355. image: {
  7356. source: "./media/characters/verin/back.svg",
  7357. bottom: 0.1,
  7358. extra: 1
  7359. }
  7360. },
  7361. foot: {
  7362. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7363. name: "Foot",
  7364. image: {
  7365. source: "./media/characters/verin/foot.svg"
  7366. }
  7367. },
  7368. },
  7369. [
  7370. {
  7371. name: "Normal",
  7372. height: math.unit(8 + 3 / 12, "feet")
  7373. },
  7374. {
  7375. name: "Minimacro",
  7376. height: math.unit(21, "feet"),
  7377. default: true
  7378. },
  7379. {
  7380. name: "Macro",
  7381. height: math.unit(626, "feet")
  7382. },
  7383. ]
  7384. ))
  7385. characterMakers.push(() => makeCharacter(
  7386. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7387. {
  7388. front: {
  7389. height: math.unit(2.718, "meters"),
  7390. weight: math.unit(150, "lbs"),
  7391. name: "Front",
  7392. image: {
  7393. source: "./media/characters/sovrim-terraquian/front.svg"
  7394. }
  7395. },
  7396. back: {
  7397. height: math.unit(2.718, "meters"),
  7398. weight: math.unit(150, "lbs"),
  7399. name: "Back",
  7400. image: {
  7401. source: "./media/characters/sovrim-terraquian/back.svg"
  7402. }
  7403. }
  7404. },
  7405. [
  7406. {
  7407. name: "Micro",
  7408. height: math.unit(2, "inches")
  7409. },
  7410. {
  7411. name: "Small",
  7412. height: math.unit(1, "meter")
  7413. },
  7414. {
  7415. name: "Normal",
  7416. height: math.unit(Math.E, "meters"),
  7417. default: true
  7418. },
  7419. {
  7420. name: "Macro",
  7421. height: math.unit(20, "meters")
  7422. },
  7423. {
  7424. name: "Macro+",
  7425. height: math.unit(400, "meters")
  7426. },
  7427. ]
  7428. ))
  7429. characterMakers.push(() => makeCharacter(
  7430. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7431. {
  7432. front: {
  7433. height: math.unit(7, "feet"),
  7434. weight: math.unit(489, "lbs"),
  7435. name: "Front",
  7436. image: {
  7437. source: "./media/characters/reece-silvermane/front.svg",
  7438. bottom: 0.02,
  7439. extra: 1
  7440. }
  7441. },
  7442. },
  7443. [
  7444. {
  7445. name: "Macro",
  7446. height: math.unit(1.5, "miles"),
  7447. default: true
  7448. },
  7449. ]
  7450. ))
  7451. characterMakers.push(() => makeCharacter(
  7452. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7453. {
  7454. front: {
  7455. height: math.unit(6, "feet"),
  7456. weight: math.unit(78, "kg"),
  7457. name: "Front",
  7458. image: {
  7459. source: "./media/characters/kane/front.svg",
  7460. extra: 978 / 899
  7461. }
  7462. },
  7463. },
  7464. [
  7465. {
  7466. name: "Normal",
  7467. height: math.unit(2.1, "m"),
  7468. },
  7469. {
  7470. name: "Macro",
  7471. height: math.unit(1, "km"),
  7472. default: true
  7473. },
  7474. ]
  7475. ))
  7476. characterMakers.push(() => makeCharacter(
  7477. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7478. {
  7479. front: {
  7480. height: math.unit(6, "feet"),
  7481. weight: math.unit(200, "kg"),
  7482. name: "Front",
  7483. image: {
  7484. source: "./media/characters/tegon/front.svg",
  7485. bottom: 0.01,
  7486. extra: 1
  7487. }
  7488. },
  7489. },
  7490. [
  7491. {
  7492. name: "Micro",
  7493. height: math.unit(1, "inch")
  7494. },
  7495. {
  7496. name: "Normal",
  7497. height: math.unit(6 + 3 / 12, "feet"),
  7498. default: true
  7499. },
  7500. {
  7501. name: "Macro",
  7502. height: math.unit(300, "feet")
  7503. },
  7504. {
  7505. name: "Megamacro",
  7506. height: math.unit(69, "miles")
  7507. },
  7508. ]
  7509. ))
  7510. characterMakers.push(() => makeCharacter(
  7511. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7512. {
  7513. side: {
  7514. height: math.unit(6, "feet"),
  7515. weight: math.unit(2304, "lbs"),
  7516. name: "Side",
  7517. image: {
  7518. source: "./media/characters/arcturax/side.svg",
  7519. extra: 790 / 376,
  7520. bottom: 0.01
  7521. }
  7522. },
  7523. },
  7524. [
  7525. {
  7526. name: "Micro",
  7527. height: math.unit(2, "inch")
  7528. },
  7529. {
  7530. name: "Normal",
  7531. height: math.unit(6, "feet")
  7532. },
  7533. {
  7534. name: "Macro",
  7535. height: math.unit(39, "feet"),
  7536. default: true
  7537. },
  7538. {
  7539. name: "Megamacro",
  7540. height: math.unit(7, "miles")
  7541. },
  7542. ]
  7543. ))
  7544. characterMakers.push(() => makeCharacter(
  7545. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7546. {
  7547. front: {
  7548. height: math.unit(6, "feet"),
  7549. weight: math.unit(50, "lbs"),
  7550. name: "Front",
  7551. image: {
  7552. source: "./media/characters/sentri/front.svg",
  7553. extra: 1750 / 1570,
  7554. bottom: 0.025
  7555. }
  7556. },
  7557. frontAlt: {
  7558. height: math.unit(6, "feet"),
  7559. weight: math.unit(50, "lbs"),
  7560. name: "Front (Alt)",
  7561. image: {
  7562. source: "./media/characters/sentri/front-alt.svg",
  7563. extra: 1750 / 1570,
  7564. bottom: 0.025
  7565. }
  7566. },
  7567. },
  7568. [
  7569. {
  7570. name: "Normal",
  7571. height: math.unit(15, "feet"),
  7572. default: true
  7573. },
  7574. {
  7575. name: "Macro",
  7576. height: math.unit(2500, "feet")
  7577. }
  7578. ]
  7579. ))
  7580. characterMakers.push(() => makeCharacter(
  7581. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7582. {
  7583. front: {
  7584. height: math.unit(5 + 8 / 12, "feet"),
  7585. weight: math.unit(130, "lbs"),
  7586. name: "Front",
  7587. image: {
  7588. source: "./media/characters/corvin/front.svg",
  7589. extra: 1803 / 1629
  7590. }
  7591. },
  7592. frontShirt: {
  7593. height: math.unit(5 + 8 / 12, "feet"),
  7594. weight: math.unit(130, "lbs"),
  7595. name: "Front (Shirt)",
  7596. image: {
  7597. source: "./media/characters/corvin/front-shirt.svg",
  7598. extra: 1803 / 1629
  7599. }
  7600. },
  7601. frontPoncho: {
  7602. height: math.unit(5 + 8 / 12, "feet"),
  7603. weight: math.unit(130, "lbs"),
  7604. name: "Front (Poncho)",
  7605. image: {
  7606. source: "./media/characters/corvin/front-poncho.svg",
  7607. extra: 1803 / 1629
  7608. }
  7609. },
  7610. side: {
  7611. height: math.unit(5 + 8 / 12, "feet"),
  7612. weight: math.unit(130, "lbs"),
  7613. name: "Side",
  7614. image: {
  7615. source: "./media/characters/corvin/side.svg",
  7616. extra: 1012 / 945
  7617. }
  7618. },
  7619. back: {
  7620. height: math.unit(5 + 8 / 12, "feet"),
  7621. weight: math.unit(130, "lbs"),
  7622. name: "Back",
  7623. image: {
  7624. source: "./media/characters/corvin/back.svg",
  7625. extra: 1803 / 1629
  7626. }
  7627. },
  7628. },
  7629. [
  7630. {
  7631. name: "Micro",
  7632. height: math.unit(3, "inches")
  7633. },
  7634. {
  7635. name: "Normal",
  7636. height: math.unit(5 + 8 / 12, "feet")
  7637. },
  7638. {
  7639. name: "Macro",
  7640. height: math.unit(300, "feet"),
  7641. default: true
  7642. },
  7643. {
  7644. name: "Megamacro",
  7645. height: math.unit(500, "miles")
  7646. }
  7647. ]
  7648. ))
  7649. characterMakers.push(() => makeCharacter(
  7650. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7651. {
  7652. front: {
  7653. height: math.unit(6, "feet"),
  7654. weight: math.unit(135, "lbs"),
  7655. name: "Front",
  7656. image: {
  7657. source: "./media/characters/q/front.svg",
  7658. extra: 854 / 752,
  7659. bottom: 0.005
  7660. }
  7661. },
  7662. back: {
  7663. height: math.unit(6, "feet"),
  7664. weight: math.unit(130, "lbs"),
  7665. name: "Back",
  7666. image: {
  7667. source: "./media/characters/q/back.svg",
  7668. extra: 854 / 752
  7669. }
  7670. },
  7671. },
  7672. [
  7673. {
  7674. name: "Macro",
  7675. height: math.unit(90, "feet"),
  7676. default: true
  7677. },
  7678. {
  7679. name: "Extra Macro",
  7680. height: math.unit(300, "feet"),
  7681. },
  7682. {
  7683. name: "BIG WALF",
  7684. height: math.unit(750, "feet"),
  7685. },
  7686. ]
  7687. ))
  7688. characterMakers.push(() => makeCharacter(
  7689. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7690. {
  7691. front: {
  7692. height: math.unit(6, "feet"),
  7693. weight: math.unit(150, "lbs"),
  7694. name: "Front",
  7695. image: {
  7696. source: "./media/characters/carley/front.svg",
  7697. extra: 3927 / 3540,
  7698. bottom: 29.2 / 735
  7699. }
  7700. }
  7701. },
  7702. [
  7703. {
  7704. name: "Normal",
  7705. height: math.unit(6 + 3 / 12, "feet")
  7706. },
  7707. {
  7708. name: "Macro",
  7709. height: math.unit(185, "feet"),
  7710. default: true
  7711. },
  7712. {
  7713. name: "Megamacro",
  7714. height: math.unit(8, "miles"),
  7715. },
  7716. ]
  7717. ))
  7718. characterMakers.push(() => makeCharacter(
  7719. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7720. {
  7721. front: {
  7722. height: math.unit(3, "feet"),
  7723. weight: math.unit(28, "lbs"),
  7724. name: "Front",
  7725. image: {
  7726. source: "./media/characters/citrine/front.svg"
  7727. }
  7728. }
  7729. },
  7730. [
  7731. {
  7732. name: "Normal",
  7733. height: math.unit(3, "feet"),
  7734. default: true
  7735. }
  7736. ]
  7737. ))
  7738. characterMakers.push(() => makeCharacter(
  7739. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7740. {
  7741. front: {
  7742. height: math.unit(14, "feet"),
  7743. weight: math.unit(1450, "kg"),
  7744. capacity: math.unit(15, "people"),
  7745. name: "Front",
  7746. image: {
  7747. source: "./media/characters/aura-starwind/front.svg",
  7748. extra: 1455 / 1335
  7749. }
  7750. },
  7751. side: {
  7752. height: math.unit(14, "feet"),
  7753. weight: math.unit(1450, "kg"),
  7754. capacity: math.unit(15, "people"),
  7755. name: "Side",
  7756. image: {
  7757. source: "./media/characters/aura-starwind/side.svg",
  7758. extra: 1654 / 1497
  7759. }
  7760. },
  7761. taur: {
  7762. height: math.unit(18, "feet"),
  7763. weight: math.unit(5500, "kg"),
  7764. capacity: math.unit(50, "people"),
  7765. name: "Taur",
  7766. image: {
  7767. source: "./media/characters/aura-starwind/taur.svg",
  7768. extra: 1760 / 1650
  7769. }
  7770. },
  7771. feral: {
  7772. height: math.unit(46, "feet"),
  7773. weight: math.unit(25000, "kg"),
  7774. capacity: math.unit(120, "people"),
  7775. name: "Feral",
  7776. image: {
  7777. source: "./media/characters/aura-starwind/feral.svg"
  7778. }
  7779. },
  7780. },
  7781. [
  7782. {
  7783. name: "Normal",
  7784. height: math.unit(14, "feet"),
  7785. default: true
  7786. },
  7787. {
  7788. name: "Macro",
  7789. height: math.unit(50, "meters")
  7790. },
  7791. {
  7792. name: "Megamacro",
  7793. height: math.unit(5000, "meters")
  7794. },
  7795. {
  7796. name: "Gigamacro",
  7797. height: math.unit(100000, "kilometers")
  7798. },
  7799. ]
  7800. ))
  7801. characterMakers.push(() => makeCharacter(
  7802. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7803. {
  7804. front: {
  7805. height: math.unit(2 + 7 / 12, "feet"),
  7806. weight: math.unit(32, "lbs"),
  7807. name: "Front",
  7808. image: {
  7809. source: "./media/characters/rivet/front.svg",
  7810. extra: 1716 / 1658,
  7811. bottom: 0.03
  7812. }
  7813. },
  7814. foot: {
  7815. height: math.unit(0.551, "feet"),
  7816. name: "Rivet's Foot",
  7817. image: {
  7818. source: "./media/characters/rivet/foot.svg"
  7819. },
  7820. rename: true
  7821. }
  7822. },
  7823. [
  7824. {
  7825. name: "Micro",
  7826. height: math.unit(1.5, "inches"),
  7827. },
  7828. {
  7829. name: "Normal",
  7830. height: math.unit(2 + 7 / 12, "feet"),
  7831. default: true
  7832. },
  7833. {
  7834. name: "Macro",
  7835. height: math.unit(85, "feet")
  7836. },
  7837. {
  7838. name: "Megamacro",
  7839. height: math.unit(2.2, "km")
  7840. }
  7841. ]
  7842. ))
  7843. characterMakers.push(() => makeCharacter(
  7844. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7845. {
  7846. front: {
  7847. height: math.unit(5 + 9 / 12, "feet"),
  7848. weight: math.unit(150, "lbs"),
  7849. name: "Front",
  7850. image: {
  7851. source: "./media/characters/coffee/front.svg",
  7852. extra: 3666 / 3032,
  7853. bottom: 0.04
  7854. }
  7855. },
  7856. foot: {
  7857. height: math.unit(1.29, "feet"),
  7858. name: "Foot",
  7859. image: {
  7860. source: "./media/characters/coffee/foot.svg"
  7861. }
  7862. },
  7863. },
  7864. [
  7865. {
  7866. name: "Micro",
  7867. height: math.unit(2, "inches"),
  7868. },
  7869. {
  7870. name: "Normal",
  7871. height: math.unit(5 + 9 / 12, "feet"),
  7872. default: true
  7873. },
  7874. {
  7875. name: "Macro",
  7876. height: math.unit(800, "feet")
  7877. },
  7878. {
  7879. name: "Megamacro",
  7880. height: math.unit(25, "miles")
  7881. }
  7882. ]
  7883. ))
  7884. characterMakers.push(() => makeCharacter(
  7885. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7886. {
  7887. front: {
  7888. height: math.unit(6, "feet"),
  7889. weight: math.unit(200, "lbs"),
  7890. name: "Front",
  7891. image: {
  7892. source: "./media/characters/chari-gal/front.svg",
  7893. extra: 1568 / 1385,
  7894. bottom: 0.047
  7895. }
  7896. },
  7897. gigantamax: {
  7898. height: math.unit(6 * 16, "feet"),
  7899. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7900. name: "Gigantamax",
  7901. image: {
  7902. source: "./media/characters/chari-gal/gigantamax.svg",
  7903. extra: 1124 / 888,
  7904. bottom: 0.03
  7905. }
  7906. },
  7907. },
  7908. [
  7909. {
  7910. name: "Normal",
  7911. height: math.unit(5 + 7 / 12, "feet")
  7912. },
  7913. {
  7914. name: "Macro",
  7915. height: math.unit(200, "feet"),
  7916. default: true
  7917. }
  7918. ]
  7919. ))
  7920. characterMakers.push(() => makeCharacter(
  7921. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7922. {
  7923. front: {
  7924. height: math.unit(6, "feet"),
  7925. weight: math.unit(150, "lbs"),
  7926. name: "Front",
  7927. image: {
  7928. source: "./media/characters/nova/front.svg",
  7929. extra: 5000 / 4722,
  7930. bottom: 0.02
  7931. }
  7932. }
  7933. },
  7934. [
  7935. {
  7936. name: "Micro-",
  7937. height: math.unit(0.8, "inches")
  7938. },
  7939. {
  7940. name: "Micro",
  7941. height: math.unit(2, "inches"),
  7942. default: true
  7943. },
  7944. ]
  7945. ))
  7946. characterMakers.push(() => makeCharacter(
  7947. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7948. {
  7949. front: {
  7950. height: math.unit(3 + 1 / 12, "feet"),
  7951. weight: math.unit(21.7, "lbs"),
  7952. name: "Front",
  7953. image: {
  7954. source: "./media/characters/argent/front.svg",
  7955. extra: 1471 / 1331,
  7956. bottom: 100.8 / 1575.5
  7957. }
  7958. }
  7959. },
  7960. [
  7961. {
  7962. name: "Micro",
  7963. height: math.unit(2, "inches")
  7964. },
  7965. {
  7966. name: "Normal",
  7967. height: math.unit(3 + 1 / 12, "feet"),
  7968. default: true
  7969. },
  7970. {
  7971. name: "Macro",
  7972. height: math.unit(120, "feet")
  7973. },
  7974. ]
  7975. ))
  7976. characterMakers.push(() => makeCharacter(
  7977. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7978. {
  7979. lamp: {
  7980. height: math.unit(7 * 1559 / 989, "feet"),
  7981. name: "Magic Lamp",
  7982. image: {
  7983. source: "./media/characters/mira-al-cul/lamp.svg",
  7984. extra: 1617 / 1559
  7985. }
  7986. },
  7987. front: {
  7988. height: math.unit(7, "feet"),
  7989. name: "Front",
  7990. image: {
  7991. source: "./media/characters/mira-al-cul/front.svg",
  7992. extra: 1044 / 990
  7993. }
  7994. },
  7995. },
  7996. [
  7997. {
  7998. name: "Heavily Restricted",
  7999. height: math.unit(7 * 1559 / 989, "feet")
  8000. },
  8001. {
  8002. name: "Freshly Freed",
  8003. height: math.unit(50 * 1559 / 989, "feet")
  8004. },
  8005. {
  8006. name: "World Encompassing",
  8007. height: math.unit(10000 * 1559 / 989, "miles")
  8008. },
  8009. {
  8010. name: "Galactic",
  8011. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8012. },
  8013. {
  8014. name: "Palmed Universe",
  8015. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8016. default: true
  8017. },
  8018. {
  8019. name: "Multiversal Matriarch",
  8020. height: math.unit(8.87e10, "yottameters")
  8021. },
  8022. {
  8023. name: "Void Mother",
  8024. height: math.unit(3.14e110, "yottaparsecs")
  8025. },
  8026. {
  8027. name: "Toying with Transcendence",
  8028. height: math.unit(1e307, "meters")
  8029. },
  8030. ]
  8031. ))
  8032. characterMakers.push(() => makeCharacter(
  8033. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8034. {
  8035. front: {
  8036. height: math.unit(17 + 1 / 12, "feet"),
  8037. weight: math.unit(476.2 * 5, "lbs"),
  8038. name: "Front",
  8039. image: {
  8040. source: "./media/characters/kuro-shi-uchū/front.svg",
  8041. extra: 2329 / 1835,
  8042. bottom: 0.02
  8043. }
  8044. },
  8045. },
  8046. [
  8047. {
  8048. name: "Micro",
  8049. height: math.unit(2, "inches")
  8050. },
  8051. {
  8052. name: "Normal",
  8053. height: math.unit(12, "meters")
  8054. },
  8055. {
  8056. name: "Planetary",
  8057. height: math.unit(0.00929, "AU"),
  8058. default: true
  8059. },
  8060. {
  8061. name: "Universal",
  8062. height: math.unit(20, "gigaparsecs")
  8063. },
  8064. ]
  8065. ))
  8066. characterMakers.push(() => makeCharacter(
  8067. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8068. {
  8069. front: {
  8070. height: math.unit(5 + 2 / 12, "feet"),
  8071. weight: math.unit(120, "lbs"),
  8072. name: "Front",
  8073. image: {
  8074. source: "./media/characters/katherine/front.svg",
  8075. extra: 2075 / 1969
  8076. }
  8077. },
  8078. dress: {
  8079. height: math.unit(5 + 2 / 12, "feet"),
  8080. weight: math.unit(120, "lbs"),
  8081. name: "Dress",
  8082. image: {
  8083. source: "./media/characters/katherine/dress.svg",
  8084. extra: 2258 / 2064
  8085. }
  8086. },
  8087. },
  8088. [
  8089. {
  8090. name: "Micro",
  8091. height: math.unit(1, "inches"),
  8092. default: true
  8093. },
  8094. {
  8095. name: "Normal",
  8096. height: math.unit(5 + 2 / 12, "feet")
  8097. },
  8098. {
  8099. name: "Macro",
  8100. height: math.unit(100, "meters")
  8101. },
  8102. {
  8103. name: "Megamacro",
  8104. height: math.unit(80, "miles")
  8105. },
  8106. ]
  8107. ))
  8108. characterMakers.push(() => makeCharacter(
  8109. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8110. {
  8111. front: {
  8112. height: math.unit(7 + 8 / 12, "feet"),
  8113. weight: math.unit(250, "lbs"),
  8114. name: "Front",
  8115. image: {
  8116. source: "./media/characters/yevis/front.svg",
  8117. extra: 1938 / 1755
  8118. }
  8119. }
  8120. },
  8121. [
  8122. {
  8123. name: "Mortal",
  8124. height: math.unit(7 + 8 / 12, "feet")
  8125. },
  8126. {
  8127. name: "Battle",
  8128. height: math.unit(25 + 11 / 12, "feet")
  8129. },
  8130. {
  8131. name: "Wrath",
  8132. height: math.unit(1654 + 11 / 12, "feet")
  8133. },
  8134. {
  8135. name: "Planet Destroyer",
  8136. height: math.unit(12000, "miles")
  8137. },
  8138. {
  8139. name: "Galaxy Conqueror",
  8140. height: math.unit(1.45, "zettameters"),
  8141. default: true
  8142. },
  8143. {
  8144. name: "Universal War",
  8145. height: math.unit(184, "gigaparsecs")
  8146. },
  8147. {
  8148. name: "Eternity War",
  8149. height: math.unit(1.98e55, "yottaparsecs")
  8150. },
  8151. ]
  8152. ))
  8153. characterMakers.push(() => makeCharacter(
  8154. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8155. {
  8156. front: {
  8157. height: math.unit(5 + 8 / 12, "feet"),
  8158. weight: math.unit(63, "kg"),
  8159. name: "Front",
  8160. image: {
  8161. source: "./media/characters/xavier/front.svg",
  8162. extra: 944 / 883
  8163. }
  8164. },
  8165. frontStretch: {
  8166. height: math.unit(5 + 8 / 12, "feet"),
  8167. weight: math.unit(63, "kg"),
  8168. name: "Stretching",
  8169. image: {
  8170. source: "./media/characters/xavier/front-stretch.svg",
  8171. extra: 962 / 820
  8172. }
  8173. },
  8174. },
  8175. [
  8176. {
  8177. name: "Normal",
  8178. height: math.unit(5 + 8 / 12, "feet")
  8179. },
  8180. {
  8181. name: "Macro",
  8182. height: math.unit(100, "meters"),
  8183. default: true
  8184. },
  8185. {
  8186. name: "McLargeHuge",
  8187. height: math.unit(10, "miles")
  8188. },
  8189. ]
  8190. ))
  8191. characterMakers.push(() => makeCharacter(
  8192. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8193. {
  8194. front: {
  8195. height: math.unit(5 + 5 / 12, "feet"),
  8196. weight: math.unit(150, "lb"),
  8197. name: "Front",
  8198. image: {
  8199. source: "./media/characters/joshii/front.svg",
  8200. extra: 765 / 653,
  8201. bottom: 51 / 816
  8202. }
  8203. },
  8204. foot: {
  8205. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8206. name: "Foot",
  8207. image: {
  8208. source: "./media/characters/joshii/foot.svg"
  8209. }
  8210. },
  8211. },
  8212. [
  8213. {
  8214. name: "Micro",
  8215. height: math.unit(2, "inches"),
  8216. default: true
  8217. },
  8218. {
  8219. name: "Normal",
  8220. height: math.unit(5 + 5 / 12, "feet")
  8221. },
  8222. {
  8223. name: "Macro",
  8224. height: math.unit(785, "feet")
  8225. },
  8226. {
  8227. name: "Megamacro",
  8228. height: math.unit(24.5, "miles")
  8229. },
  8230. ]
  8231. ))
  8232. characterMakers.push(() => makeCharacter(
  8233. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8234. {
  8235. front: {
  8236. height: math.unit(6, "feet"),
  8237. weight: math.unit(150, "lb"),
  8238. name: "Front",
  8239. image: {
  8240. source: "./media/characters/goddess-elizabeth/front.svg",
  8241. extra: 1800 / 1525,
  8242. bottom: 0.005
  8243. }
  8244. },
  8245. foot: {
  8246. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8247. name: "Foot",
  8248. image: {
  8249. source: "./media/characters/goddess-elizabeth/foot.svg"
  8250. }
  8251. },
  8252. mouth: {
  8253. height: math.unit(6, "feet"),
  8254. name: "Mouth",
  8255. image: {
  8256. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8257. }
  8258. },
  8259. },
  8260. [
  8261. {
  8262. name: "Micro",
  8263. height: math.unit(12, "feet")
  8264. },
  8265. {
  8266. name: "Normal",
  8267. height: math.unit(80, "miles"),
  8268. default: true
  8269. },
  8270. {
  8271. name: "Macro",
  8272. height: math.unit(15000, "parsecs")
  8273. },
  8274. ]
  8275. ))
  8276. characterMakers.push(() => makeCharacter(
  8277. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8278. {
  8279. front: {
  8280. height: math.unit(5 + 9 / 12, "feet"),
  8281. weight: math.unit(144, "lb"),
  8282. name: "Front",
  8283. image: {
  8284. source: "./media/characters/kara/front.svg"
  8285. }
  8286. },
  8287. feet: {
  8288. height: math.unit(6 / 6.765, "feet"),
  8289. name: "Kara's Feet",
  8290. rename: true,
  8291. image: {
  8292. source: "./media/characters/kara/feet.svg"
  8293. }
  8294. },
  8295. },
  8296. [
  8297. {
  8298. name: "Normal",
  8299. height: math.unit(5 + 9 / 12, "feet")
  8300. },
  8301. {
  8302. name: "Macro",
  8303. height: math.unit(174, "feet"),
  8304. default: true
  8305. },
  8306. ]
  8307. ))
  8308. characterMakers.push(() => makeCharacter(
  8309. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8310. {
  8311. front: {
  8312. height: math.unit(18, "feet"),
  8313. weight: math.unit(4050, "lb"),
  8314. name: "Front",
  8315. image: {
  8316. source: "./media/characters/tyrone/front.svg",
  8317. extra: 2405 / 2270,
  8318. bottom: 182 / 2587
  8319. }
  8320. },
  8321. },
  8322. [
  8323. {
  8324. name: "Normal",
  8325. height: math.unit(18, "feet"),
  8326. default: true
  8327. },
  8328. {
  8329. name: "Macro",
  8330. height: math.unit(300, "feet")
  8331. },
  8332. {
  8333. name: "Megamacro",
  8334. height: math.unit(15, "km")
  8335. },
  8336. {
  8337. name: "Gigamacro",
  8338. height: math.unit(500, "km")
  8339. },
  8340. {
  8341. name: "Teramacro",
  8342. height: math.unit(0.5, "gigameters")
  8343. },
  8344. {
  8345. name: "Omnimacro",
  8346. height: math.unit(1e252, "yottauniverse")
  8347. },
  8348. ]
  8349. ))
  8350. characterMakers.push(() => makeCharacter(
  8351. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8352. {
  8353. front: {
  8354. height: math.unit(7 + 8 / 12, "feet"),
  8355. weight: math.unit(120, "lb"),
  8356. name: "Front",
  8357. image: {
  8358. source: "./media/characters/danny/front.svg",
  8359. extra: 1490 / 1350
  8360. }
  8361. },
  8362. back: {
  8363. height: math.unit(7 + 8 / 12, "feet"),
  8364. weight: math.unit(120, "lb"),
  8365. name: "Back",
  8366. image: {
  8367. source: "./media/characters/danny/back.svg",
  8368. extra: 1490 / 1350
  8369. }
  8370. },
  8371. },
  8372. [
  8373. {
  8374. name: "Normal",
  8375. height: math.unit(7 + 8 / 12, "feet"),
  8376. default: true
  8377. },
  8378. ]
  8379. ))
  8380. characterMakers.push(() => makeCharacter(
  8381. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8382. {
  8383. front: {
  8384. height: math.unit(3.5, "inches"),
  8385. weight: math.unit(19, "grams"),
  8386. name: "Front",
  8387. image: {
  8388. source: "./media/characters/mallow/front.svg",
  8389. extra: 471 / 431
  8390. }
  8391. },
  8392. back: {
  8393. height: math.unit(3.5, "inches"),
  8394. weight: math.unit(19, "grams"),
  8395. name: "Back",
  8396. image: {
  8397. source: "./media/characters/mallow/back.svg",
  8398. extra: 471 / 431
  8399. }
  8400. },
  8401. },
  8402. [
  8403. {
  8404. name: "Normal",
  8405. height: math.unit(3.5, "inches"),
  8406. default: true
  8407. },
  8408. ]
  8409. ))
  8410. characterMakers.push(() => makeCharacter(
  8411. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8412. {
  8413. front: {
  8414. height: math.unit(9, "feet"),
  8415. weight: math.unit(230, "kg"),
  8416. name: "Front",
  8417. image: {
  8418. source: "./media/characters/starry-aqua/front.svg"
  8419. }
  8420. },
  8421. back: {
  8422. height: math.unit(9, "feet"),
  8423. weight: math.unit(230, "kg"),
  8424. name: "Back",
  8425. image: {
  8426. source: "./media/characters/starry-aqua/back.svg"
  8427. }
  8428. },
  8429. hand: {
  8430. height: math.unit(9 * 0.1168, "feet"),
  8431. name: "Hand",
  8432. image: {
  8433. source: "./media/characters/starry-aqua/hand.svg"
  8434. }
  8435. },
  8436. foot: {
  8437. height: math.unit(9 * 0.18, "feet"),
  8438. name: "Foot",
  8439. image: {
  8440. source: "./media/characters/starry-aqua/foot.svg"
  8441. }
  8442. }
  8443. },
  8444. [
  8445. {
  8446. name: "Micro",
  8447. height: math.unit(3, "inches")
  8448. },
  8449. {
  8450. name: "Normal",
  8451. height: math.unit(9, "feet")
  8452. },
  8453. {
  8454. name: "Macro",
  8455. height: math.unit(300, "feet"),
  8456. default: true
  8457. },
  8458. {
  8459. name: "Megamacro",
  8460. height: math.unit(3200, "feet")
  8461. }
  8462. ]
  8463. ))
  8464. characterMakers.push(() => makeCharacter(
  8465. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8466. {
  8467. front: {
  8468. height: math.unit(6, "feet"),
  8469. weight: math.unit(230, "lb"),
  8470. name: "Front",
  8471. image: {
  8472. source: "./media/characters/luka/front.svg",
  8473. extra: 1,
  8474. bottom: 0.025
  8475. }
  8476. },
  8477. },
  8478. [
  8479. {
  8480. name: "Normal",
  8481. height: math.unit(12 + 8 / 12, "feet"),
  8482. default: true
  8483. },
  8484. {
  8485. name: "Minimacro",
  8486. height: math.unit(20, "feet")
  8487. },
  8488. {
  8489. name: "Macro",
  8490. height: math.unit(250, "feet")
  8491. },
  8492. {
  8493. name: "Megamacro",
  8494. height: math.unit(5, "miles")
  8495. },
  8496. {
  8497. name: "Gigamacro",
  8498. height: math.unit(8000, "miles")
  8499. },
  8500. ]
  8501. ))
  8502. characterMakers.push(() => makeCharacter(
  8503. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8504. {
  8505. front: {
  8506. height: math.unit(6, "feet"),
  8507. weight: math.unit(150, "lb"),
  8508. name: "Front",
  8509. image: {
  8510. source: "./media/characters/natalie-nightring/front.svg",
  8511. extra: 1,
  8512. bottom: 0.06
  8513. }
  8514. },
  8515. },
  8516. [
  8517. {
  8518. name: "Uh Oh",
  8519. height: math.unit(0.1, "mm")
  8520. },
  8521. {
  8522. name: "Small",
  8523. height: math.unit(3, "inches")
  8524. },
  8525. {
  8526. name: "Human Scale",
  8527. height: math.unit(6, "feet")
  8528. },
  8529. {
  8530. name: "Librarian",
  8531. height: math.unit(50, "feet"),
  8532. default: true
  8533. },
  8534. {
  8535. name: "Immense",
  8536. height: math.unit(200, "miles")
  8537. },
  8538. ]
  8539. ))
  8540. characterMakers.push(() => makeCharacter(
  8541. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8542. {
  8543. front: {
  8544. height: math.unit(6, "feet"),
  8545. weight: math.unit(180, "lbs"),
  8546. name: "Front",
  8547. image: {
  8548. source: "./media/characters/danni-rosie/front.svg",
  8549. extra: 1260 / 1128,
  8550. bottom: 0.022
  8551. }
  8552. },
  8553. },
  8554. [
  8555. {
  8556. name: "Micro",
  8557. height: math.unit(2, "inches"),
  8558. default: true
  8559. },
  8560. ]
  8561. ))
  8562. characterMakers.push(() => makeCharacter(
  8563. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8564. {
  8565. front: {
  8566. height: math.unit(5 + 9 / 12, "feet"),
  8567. weight: math.unit(220, "lb"),
  8568. name: "Front",
  8569. image: {
  8570. source: "./media/characters/samantha-kruse/front.svg",
  8571. extra: (985 / 935),
  8572. bottom: 0.03
  8573. }
  8574. },
  8575. frontUndressed: {
  8576. height: math.unit(5 + 9 / 12, "feet"),
  8577. weight: math.unit(220, "lb"),
  8578. name: "Front (Undressed)",
  8579. image: {
  8580. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8581. extra: (973 / 923),
  8582. bottom: 0.025
  8583. }
  8584. },
  8585. fat: {
  8586. height: math.unit(5 + 9 / 12, "feet"),
  8587. weight: math.unit(900, "lb"),
  8588. name: "Front (Fat)",
  8589. image: {
  8590. source: "./media/characters/samantha-kruse/fat.svg",
  8591. extra: 2688 / 2561
  8592. }
  8593. },
  8594. },
  8595. [
  8596. {
  8597. name: "Normal",
  8598. height: math.unit(5 + 9 / 12, "feet"),
  8599. default: true
  8600. }
  8601. ]
  8602. ))
  8603. characterMakers.push(() => makeCharacter(
  8604. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8605. {
  8606. back: {
  8607. height: math.unit(5 + 4 / 12, "feet"),
  8608. weight: math.unit(4963, "lb"),
  8609. name: "Back",
  8610. image: {
  8611. source: "./media/characters/amelia-rosie/back.svg",
  8612. extra: 1113 / 963,
  8613. bottom: 0.01
  8614. }
  8615. },
  8616. },
  8617. [
  8618. {
  8619. name: "Level 0",
  8620. height: math.unit(5 + 4 / 12, "feet")
  8621. },
  8622. {
  8623. name: "Level 1",
  8624. height: math.unit(164597, "feet"),
  8625. default: true
  8626. },
  8627. {
  8628. name: "Level 2",
  8629. height: math.unit(956243, "miles")
  8630. },
  8631. {
  8632. name: "Level 3",
  8633. height: math.unit(29421709423, "miles")
  8634. },
  8635. {
  8636. name: "Level 4",
  8637. height: math.unit(154, "lightyears")
  8638. },
  8639. {
  8640. name: "Level 5",
  8641. height: math.unit(4738272, "lightyears")
  8642. },
  8643. {
  8644. name: "Level 6",
  8645. height: math.unit(145787152896, "lightyears")
  8646. },
  8647. ]
  8648. ))
  8649. characterMakers.push(() => makeCharacter(
  8650. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8651. {
  8652. front: {
  8653. height: math.unit(5 + 11 / 12, "feet"),
  8654. weight: math.unit(65, "kg"),
  8655. name: "Front",
  8656. image: {
  8657. source: "./media/characters/rook-kitara/front.svg",
  8658. extra: 1347 / 1274,
  8659. bottom: 0.005
  8660. }
  8661. },
  8662. },
  8663. [
  8664. {
  8665. name: "Totally Unfair",
  8666. height: math.unit(1.8, "mm")
  8667. },
  8668. {
  8669. name: "Lap Rookie",
  8670. height: math.unit(1.4, "feet")
  8671. },
  8672. {
  8673. name: "Normal",
  8674. height: math.unit(5 + 11 / 12, "feet"),
  8675. default: true
  8676. },
  8677. {
  8678. name: "How Did This Happen",
  8679. height: math.unit(80, "miles")
  8680. }
  8681. ]
  8682. ))
  8683. characterMakers.push(() => makeCharacter(
  8684. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8685. {
  8686. front: {
  8687. height: math.unit(7, "feet"),
  8688. weight: math.unit(300, "lb"),
  8689. name: "Front",
  8690. image: {
  8691. source: "./media/characters/pisces/front.svg",
  8692. extra: 2255 / 2115,
  8693. bottom: 0.03
  8694. }
  8695. },
  8696. back: {
  8697. height: math.unit(7, "feet"),
  8698. weight: math.unit(300, "lb"),
  8699. name: "Back",
  8700. image: {
  8701. source: "./media/characters/pisces/back.svg",
  8702. extra: 2146 / 2055,
  8703. bottom: 0.04
  8704. }
  8705. },
  8706. },
  8707. [
  8708. {
  8709. name: "Normal",
  8710. height: math.unit(7, "feet"),
  8711. default: true
  8712. },
  8713. {
  8714. name: "Swimming Pool",
  8715. height: math.unit(12.2, "meters")
  8716. },
  8717. {
  8718. name: "Olympic Swimming Pool",
  8719. height: math.unit(56.3, "meters")
  8720. },
  8721. {
  8722. name: "Lake Superior",
  8723. height: math.unit(93900, "meters")
  8724. },
  8725. {
  8726. name: "Mediterranean Sea",
  8727. height: math.unit(644457, "meters")
  8728. },
  8729. {
  8730. name: "World's Oceans",
  8731. height: math.unit(4567491, "meters")
  8732. },
  8733. ]
  8734. ))
  8735. characterMakers.push(() => makeCharacter(
  8736. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8737. {
  8738. front: {
  8739. height: math.unit(2.3, "meters"),
  8740. weight: math.unit(120, "kg"),
  8741. name: "Front",
  8742. image: {
  8743. source: "./media/characters/zelas/front.svg"
  8744. }
  8745. },
  8746. side: {
  8747. height: math.unit(2.3, "meters"),
  8748. weight: math.unit(120, "kg"),
  8749. name: "Side",
  8750. image: {
  8751. source: "./media/characters/zelas/side.svg"
  8752. }
  8753. },
  8754. back: {
  8755. height: math.unit(2.3, "meters"),
  8756. weight: math.unit(120, "kg"),
  8757. name: "Back",
  8758. image: {
  8759. source: "./media/characters/zelas/back.svg"
  8760. }
  8761. },
  8762. foot: {
  8763. height: math.unit(1.116, "feet"),
  8764. name: "Foot",
  8765. image: {
  8766. source: "./media/characters/zelas/foot.svg"
  8767. }
  8768. },
  8769. },
  8770. [
  8771. {
  8772. name: "Normal",
  8773. height: math.unit(2.3, "meters")
  8774. },
  8775. {
  8776. name: "Macro",
  8777. height: math.unit(30, "meters"),
  8778. default: true
  8779. },
  8780. ]
  8781. ))
  8782. characterMakers.push(() => makeCharacter(
  8783. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8784. {
  8785. front: {
  8786. height: math.unit(1, "inch"),
  8787. weight: math.unit(0.21, "grams"),
  8788. name: "Front",
  8789. image: {
  8790. source: "./media/characters/talbot/front.svg",
  8791. extra: 594 / 544
  8792. }
  8793. },
  8794. },
  8795. [
  8796. {
  8797. name: "Micro",
  8798. height: math.unit(1, "inch"),
  8799. default: true
  8800. },
  8801. ]
  8802. ))
  8803. characterMakers.push(() => makeCharacter(
  8804. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8805. {
  8806. front: {
  8807. height: math.unit(3 + 3 / 12, "feet"),
  8808. weight: math.unit(51.8, "lb"),
  8809. name: "Front",
  8810. image: {
  8811. source: "./media/characters/fliss/front.svg",
  8812. extra: 840 / 640
  8813. }
  8814. },
  8815. },
  8816. [
  8817. {
  8818. name: "Teeny Tiny",
  8819. height: math.unit(1, "mm")
  8820. },
  8821. {
  8822. name: "Small",
  8823. height: math.unit(1, "inch"),
  8824. default: true
  8825. },
  8826. {
  8827. name: "Standard Sylveon",
  8828. height: math.unit(3 + 3 / 12, "feet")
  8829. },
  8830. {
  8831. name: "Large Nuisance",
  8832. height: math.unit(33, "feet")
  8833. },
  8834. {
  8835. name: "City Filler",
  8836. height: math.unit(3000, "feet")
  8837. },
  8838. {
  8839. name: "New Horizon",
  8840. height: math.unit(6000, "miles")
  8841. },
  8842. ]
  8843. ))
  8844. characterMakers.push(() => makeCharacter(
  8845. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8846. {
  8847. front: {
  8848. height: math.unit(5, "cm"),
  8849. weight: math.unit(1.94, "g"),
  8850. name: "Front",
  8851. image: {
  8852. source: "./media/characters/fleta/front.svg",
  8853. extra: 835 / 803
  8854. }
  8855. },
  8856. back: {
  8857. height: math.unit(5, "cm"),
  8858. weight: math.unit(1.94, "g"),
  8859. name: "Back",
  8860. image: {
  8861. source: "./media/characters/fleta/back.svg",
  8862. extra: 835 / 803
  8863. }
  8864. },
  8865. },
  8866. [
  8867. {
  8868. name: "Micro",
  8869. height: math.unit(5, "cm"),
  8870. default: true
  8871. },
  8872. ]
  8873. ))
  8874. characterMakers.push(() => makeCharacter(
  8875. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8876. {
  8877. front: {
  8878. height: math.unit(6, "feet"),
  8879. weight: math.unit(225, "lb"),
  8880. name: "Front",
  8881. image: {
  8882. source: "./media/characters/dominic/front.svg",
  8883. extra: 1770 / 1620,
  8884. bottom: 0.025
  8885. }
  8886. },
  8887. back: {
  8888. height: math.unit(6, "feet"),
  8889. weight: math.unit(225, "lb"),
  8890. name: "Back",
  8891. image: {
  8892. source: "./media/characters/dominic/back.svg",
  8893. extra: 1745 / 1620,
  8894. bottom: 0.065
  8895. }
  8896. },
  8897. },
  8898. [
  8899. {
  8900. name: "Nano",
  8901. height: math.unit(0.1, "mm")
  8902. },
  8903. {
  8904. name: "Micro-",
  8905. height: math.unit(1, "mm")
  8906. },
  8907. {
  8908. name: "Micro",
  8909. height: math.unit(4, "inches")
  8910. },
  8911. {
  8912. name: "Normal",
  8913. height: math.unit(6 + 4 / 12, "feet"),
  8914. default: true
  8915. },
  8916. {
  8917. name: "Macro",
  8918. height: math.unit(115, "feet")
  8919. },
  8920. {
  8921. name: "Macro+",
  8922. height: math.unit(955, "feet")
  8923. },
  8924. {
  8925. name: "Megamacro",
  8926. height: math.unit(8990, "feet")
  8927. },
  8928. {
  8929. name: "Gigmacro",
  8930. height: math.unit(9310, "miles")
  8931. },
  8932. {
  8933. name: "Teramacro",
  8934. height: math.unit(1567005010, "miles")
  8935. },
  8936. {
  8937. name: "Examacro",
  8938. height: math.unit(1425, "parsecs")
  8939. },
  8940. ]
  8941. ))
  8942. characterMakers.push(() => makeCharacter(
  8943. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8944. {
  8945. front: {
  8946. height: math.unit(400, "feet"),
  8947. weight: math.unit(44444444, "lb"),
  8948. name: "Front",
  8949. image: {
  8950. source: "./media/characters/major-colonel/front.svg"
  8951. }
  8952. },
  8953. back: {
  8954. height: math.unit(400, "feet"),
  8955. weight: math.unit(44444444, "lb"),
  8956. name: "Back",
  8957. image: {
  8958. source: "./media/characters/major-colonel/back.svg"
  8959. }
  8960. },
  8961. },
  8962. [
  8963. {
  8964. name: "Macro",
  8965. height: math.unit(400, "feet"),
  8966. default: true
  8967. },
  8968. ]
  8969. ))
  8970. characterMakers.push(() => makeCharacter(
  8971. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8972. {
  8973. catFront: {
  8974. height: math.unit(6, "feet"),
  8975. weight: math.unit(120, "lb"),
  8976. name: "Front (Cat Side)",
  8977. image: {
  8978. source: "./media/characters/axel-lycan/cat-front.svg",
  8979. extra: 430 / 402,
  8980. bottom: 43 / 472.35
  8981. }
  8982. },
  8983. catBack: {
  8984. height: math.unit(6, "feet"),
  8985. weight: math.unit(120, "lb"),
  8986. name: "Back (Cat Side)",
  8987. image: {
  8988. source: "./media/characters/axel-lycan/cat-back.svg",
  8989. extra: 447 / 419,
  8990. bottom: 23.3 / 469
  8991. }
  8992. },
  8993. wolfFront: {
  8994. height: math.unit(6, "feet"),
  8995. weight: math.unit(120, "lb"),
  8996. name: "Front (Wolf Side)",
  8997. image: {
  8998. source: "./media/characters/axel-lycan/wolf-front.svg",
  8999. extra: 485 / 456,
  9000. bottom: 19 / 504
  9001. }
  9002. },
  9003. wolfBack: {
  9004. height: math.unit(6, "feet"),
  9005. weight: math.unit(120, "lb"),
  9006. name: "Back (Wolf Side)",
  9007. image: {
  9008. source: "./media/characters/axel-lycan/wolf-back.svg",
  9009. extra: 475 / 438,
  9010. bottom: 39.2 / 514
  9011. }
  9012. },
  9013. },
  9014. [
  9015. {
  9016. name: "Macro",
  9017. height: math.unit(1, "km"),
  9018. default: true
  9019. },
  9020. ]
  9021. ))
  9022. characterMakers.push(() => makeCharacter(
  9023. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9024. {
  9025. front: {
  9026. height: math.unit(5 + 9 / 12, "feet"),
  9027. weight: math.unit(175, "lb"),
  9028. name: "Front",
  9029. image: {
  9030. source: "./media/characters/vanrel-hyena/front.svg",
  9031. extra: 1086 / 1010,
  9032. bottom: 0.04
  9033. }
  9034. },
  9035. },
  9036. [
  9037. {
  9038. name: "Normal",
  9039. height: math.unit(5 + 9 / 12, "feet"),
  9040. default: true
  9041. },
  9042. ]
  9043. ))
  9044. characterMakers.push(() => makeCharacter(
  9045. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9046. {
  9047. front: {
  9048. height: math.unit(6, "feet"),
  9049. weight: math.unit(103, "lb"),
  9050. name: "Front",
  9051. image: {
  9052. source: "./media/characters/abbott-absol/front.svg",
  9053. extra: 2010 / 1842
  9054. }
  9055. },
  9056. },
  9057. [
  9058. {
  9059. name: "Megamicro",
  9060. height: math.unit(0.1, "mm")
  9061. },
  9062. {
  9063. name: "Micro",
  9064. height: math.unit(1, "inch")
  9065. },
  9066. {
  9067. name: "Normal",
  9068. height: math.unit(6, "feet"),
  9069. default: true
  9070. },
  9071. ]
  9072. ))
  9073. characterMakers.push(() => makeCharacter(
  9074. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9075. {
  9076. front: {
  9077. height: math.unit(6, "feet"),
  9078. weight: math.unit(264, "lb"),
  9079. name: "Front",
  9080. image: {
  9081. source: "./media/characters/hector/front.svg",
  9082. extra: 2280 / 2130,
  9083. bottom: 0.07
  9084. }
  9085. },
  9086. },
  9087. [
  9088. {
  9089. name: "Normal",
  9090. height: math.unit(12.25, "foot"),
  9091. default: true
  9092. },
  9093. {
  9094. name: "Macro",
  9095. height: math.unit(160, "feet")
  9096. },
  9097. ]
  9098. ))
  9099. characterMakers.push(() => makeCharacter(
  9100. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9101. {
  9102. front: {
  9103. height: math.unit(6, "feet"),
  9104. weight: math.unit(150, "lb"),
  9105. name: "Front",
  9106. image: {
  9107. source: "./media/characters/sal/front.svg",
  9108. extra: 1846 / 1699,
  9109. bottom: 0.04
  9110. }
  9111. },
  9112. },
  9113. [
  9114. {
  9115. name: "Megamacro",
  9116. height: math.unit(10, "miles"),
  9117. default: true
  9118. },
  9119. ]
  9120. ))
  9121. characterMakers.push(() => makeCharacter(
  9122. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9123. {
  9124. front: {
  9125. height: math.unit(3, "meters"),
  9126. weight: math.unit(450, "kg"),
  9127. name: "front",
  9128. image: {
  9129. source: "./media/characters/ranger/front.svg",
  9130. extra: 2401 / 2243,
  9131. bottom: 0.05
  9132. }
  9133. },
  9134. },
  9135. [
  9136. {
  9137. name: "Normal",
  9138. height: math.unit(3, "meters"),
  9139. default: true
  9140. },
  9141. ]
  9142. ))
  9143. characterMakers.push(() => makeCharacter(
  9144. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9145. {
  9146. front: {
  9147. height: math.unit(14, "feet"),
  9148. weight: math.unit(800, "kg"),
  9149. name: "Front",
  9150. image: {
  9151. source: "./media/characters/theresa/front.svg",
  9152. extra: 3575 / 3346,
  9153. bottom: 0.03
  9154. }
  9155. },
  9156. },
  9157. [
  9158. {
  9159. name: "Normal",
  9160. height: math.unit(14, "feet"),
  9161. default: true
  9162. },
  9163. ]
  9164. ))
  9165. characterMakers.push(() => makeCharacter(
  9166. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9167. {
  9168. front: {
  9169. height: math.unit(6, "feet"),
  9170. weight: math.unit(3, "kg"),
  9171. name: "Front",
  9172. image: {
  9173. source: "./media/characters/ine/front.svg",
  9174. extra: 678 / 539,
  9175. bottom: 0.023
  9176. }
  9177. },
  9178. },
  9179. [
  9180. {
  9181. name: "Normal",
  9182. height: math.unit(2.265, "feet"),
  9183. default: true
  9184. },
  9185. ]
  9186. ))
  9187. characterMakers.push(() => makeCharacter(
  9188. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9189. {
  9190. front: {
  9191. height: math.unit(5, "feet"),
  9192. weight: math.unit(30, "kg"),
  9193. name: "Front",
  9194. image: {
  9195. source: "./media/characters/vial/front.svg",
  9196. extra: 1365 / 1277,
  9197. bottom: 0.04
  9198. }
  9199. },
  9200. },
  9201. [
  9202. {
  9203. name: "Normal",
  9204. height: math.unit(5, "feet"),
  9205. default: true
  9206. },
  9207. ]
  9208. ))
  9209. characterMakers.push(() => makeCharacter(
  9210. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9211. {
  9212. side: {
  9213. height: math.unit(3.4, "meters"),
  9214. weight: math.unit(1000, "lb"),
  9215. name: "Side",
  9216. image: {
  9217. source: "./media/characters/rovoska/side.svg",
  9218. extra: 4403 / 1515
  9219. }
  9220. },
  9221. },
  9222. [
  9223. {
  9224. name: "Normal",
  9225. height: math.unit(3.4, "meters"),
  9226. default: true
  9227. },
  9228. ]
  9229. ))
  9230. characterMakers.push(() => makeCharacter(
  9231. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9232. {
  9233. front: {
  9234. height: math.unit(8, "feet"),
  9235. weight: math.unit(315, "lb"),
  9236. name: "Front",
  9237. image: {
  9238. source: "./media/characters/gunner-rotthbauer/front.svg"
  9239. }
  9240. },
  9241. back: {
  9242. height: math.unit(8, "feet"),
  9243. weight: math.unit(315, "lb"),
  9244. name: "Back",
  9245. image: {
  9246. source: "./media/characters/gunner-rotthbauer/back.svg"
  9247. }
  9248. },
  9249. },
  9250. [
  9251. {
  9252. name: "Micro",
  9253. height: math.unit(3.5, "inches")
  9254. },
  9255. {
  9256. name: "Normal",
  9257. height: math.unit(8, "feet"),
  9258. default: true
  9259. },
  9260. {
  9261. name: "Macro",
  9262. height: math.unit(250, "feet")
  9263. },
  9264. {
  9265. name: "Megamacro",
  9266. height: math.unit(1, "AU")
  9267. },
  9268. ]
  9269. ))
  9270. characterMakers.push(() => makeCharacter(
  9271. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9272. {
  9273. front: {
  9274. height: math.unit(5 + 5 / 12, "feet"),
  9275. weight: math.unit(140, "lb"),
  9276. name: "Front",
  9277. image: {
  9278. source: "./media/characters/allatia/front.svg",
  9279. extra: 1227 / 1180,
  9280. bottom: 0.027
  9281. }
  9282. },
  9283. },
  9284. [
  9285. {
  9286. name: "Normal",
  9287. height: math.unit(5 + 5 / 12, "feet")
  9288. },
  9289. {
  9290. name: "Macro",
  9291. height: math.unit(250, "feet"),
  9292. default: true
  9293. },
  9294. {
  9295. name: "Megamacro",
  9296. height: math.unit(8, "miles")
  9297. }
  9298. ]
  9299. ))
  9300. characterMakers.push(() => makeCharacter(
  9301. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9302. {
  9303. front: {
  9304. height: math.unit(6, "feet"),
  9305. weight: math.unit(120, "lb"),
  9306. name: "Front",
  9307. image: {
  9308. source: "./media/characters/tene/front.svg",
  9309. extra: 1728 / 1578,
  9310. bottom: 0.022
  9311. }
  9312. },
  9313. stomping: {
  9314. height: math.unit(2.025, "meters"),
  9315. weight: math.unit(120, "lb"),
  9316. name: "Stomping",
  9317. image: {
  9318. source: "./media/characters/tene/stomping.svg",
  9319. extra: 938 / 873,
  9320. bottom: 0.01
  9321. }
  9322. },
  9323. sitting: {
  9324. height: math.unit(1, "meter"),
  9325. weight: math.unit(120, "lb"),
  9326. name: "Sitting",
  9327. image: {
  9328. source: "./media/characters/tene/sitting.svg",
  9329. extra: 437 / 415,
  9330. bottom: 0.1
  9331. }
  9332. },
  9333. feral: {
  9334. height: math.unit(3.9, "feet"),
  9335. weight: math.unit(250, "lb"),
  9336. name: "Feral",
  9337. image: {
  9338. source: "./media/characters/tene/feral.svg",
  9339. extra: 717 / 458,
  9340. bottom: 0.179
  9341. }
  9342. },
  9343. },
  9344. [
  9345. {
  9346. name: "Normal",
  9347. height: math.unit(6, "feet")
  9348. },
  9349. {
  9350. name: "Macro",
  9351. height: math.unit(300, "feet"),
  9352. default: true
  9353. },
  9354. {
  9355. name: "Megamacro",
  9356. height: math.unit(5, "miles")
  9357. },
  9358. ]
  9359. ))
  9360. characterMakers.push(() => makeCharacter(
  9361. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9362. {
  9363. side: {
  9364. height: math.unit(6, "feet"),
  9365. name: "Side",
  9366. image: {
  9367. source: "./media/characters/evander/side.svg",
  9368. extra: 877 / 477
  9369. }
  9370. },
  9371. },
  9372. [
  9373. {
  9374. name: "Normal",
  9375. height: math.unit(0.83, "meters"),
  9376. default: true
  9377. },
  9378. ]
  9379. ))
  9380. characterMakers.push(() => makeCharacter(
  9381. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9382. {
  9383. front: {
  9384. height: math.unit(12, "feet"),
  9385. weight: math.unit(1000, "lb"),
  9386. name: "Front",
  9387. image: {
  9388. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9389. extra: 1762 / 1611
  9390. }
  9391. },
  9392. back: {
  9393. height: math.unit(12, "feet"),
  9394. weight: math.unit(1000, "lb"),
  9395. name: "Back",
  9396. image: {
  9397. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9398. extra: 1762 / 1611
  9399. }
  9400. },
  9401. },
  9402. [
  9403. {
  9404. name: "Normal",
  9405. height: math.unit(12, "feet"),
  9406. default: true
  9407. },
  9408. {
  9409. name: "Kaiju",
  9410. height: math.unit(150, "feet")
  9411. },
  9412. ]
  9413. ))
  9414. characterMakers.push(() => makeCharacter(
  9415. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9416. {
  9417. front: {
  9418. height: math.unit(6, "feet"),
  9419. weight: math.unit(150, "lb"),
  9420. name: "Front",
  9421. image: {
  9422. source: "./media/characters/zero-alurus/front.svg"
  9423. }
  9424. },
  9425. back: {
  9426. height: math.unit(6, "feet"),
  9427. weight: math.unit(150, "lb"),
  9428. name: "Back",
  9429. image: {
  9430. source: "./media/characters/zero-alurus/back.svg"
  9431. }
  9432. },
  9433. },
  9434. [
  9435. {
  9436. name: "Normal",
  9437. height: math.unit(5 + 10 / 12, "feet")
  9438. },
  9439. {
  9440. name: "Macro",
  9441. height: math.unit(60, "feet"),
  9442. default: true
  9443. },
  9444. {
  9445. name: "Macro+",
  9446. height: math.unit(450, "feet")
  9447. },
  9448. ]
  9449. ))
  9450. characterMakers.push(() => makeCharacter(
  9451. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9452. {
  9453. front: {
  9454. height: math.unit(6, "feet"),
  9455. weight: math.unit(200, "lb"),
  9456. name: "Front",
  9457. image: {
  9458. source: "./media/characters/mega-shi/front.svg",
  9459. extra: 1279 / 1250,
  9460. bottom: 0.02
  9461. }
  9462. },
  9463. back: {
  9464. height: math.unit(6, "feet"),
  9465. weight: math.unit(200, "lb"),
  9466. name: "Back",
  9467. image: {
  9468. source: "./media/characters/mega-shi/back.svg",
  9469. extra: 1279 / 1250,
  9470. bottom: 0.02
  9471. }
  9472. },
  9473. },
  9474. [
  9475. {
  9476. name: "Micro",
  9477. height: math.unit(16 + 6 / 12, "feet")
  9478. },
  9479. {
  9480. name: "Third Dimension",
  9481. height: math.unit(40, "meters")
  9482. },
  9483. {
  9484. name: "Normal",
  9485. height: math.unit(660, "feet"),
  9486. default: true
  9487. },
  9488. {
  9489. name: "Megamacro",
  9490. height: math.unit(10, "miles")
  9491. },
  9492. {
  9493. name: "Planetary Launch",
  9494. height: math.unit(500, "miles")
  9495. },
  9496. {
  9497. name: "Interstellar",
  9498. height: math.unit(1e9, "miles")
  9499. },
  9500. {
  9501. name: "Leaving the Universe",
  9502. height: math.unit(1, "gigaparsec")
  9503. },
  9504. {
  9505. name: "Travelling Universes",
  9506. height: math.unit(30e15, "parsecs")
  9507. },
  9508. ]
  9509. ))
  9510. characterMakers.push(() => makeCharacter(
  9511. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9512. {
  9513. front: {
  9514. height: math.unit(6, "feet"),
  9515. weight: math.unit(150, "lb"),
  9516. name: "Front",
  9517. image: {
  9518. source: "./media/characters/odyssey/front.svg",
  9519. extra: 1782 / 1582,
  9520. bottom: 0.01
  9521. }
  9522. },
  9523. side: {
  9524. height: math.unit(5.7, "feet"),
  9525. weight: math.unit(140, "lb"),
  9526. name: "Side",
  9527. image: {
  9528. source: "./media/characters/odyssey/side.svg",
  9529. extra: 6462 / 5700
  9530. }
  9531. },
  9532. },
  9533. [
  9534. {
  9535. name: "Normal",
  9536. height: math.unit(5 + 4 / 12, "feet")
  9537. },
  9538. {
  9539. name: "Macro",
  9540. height: math.unit(1, "km")
  9541. },
  9542. {
  9543. name: "Megamacro",
  9544. height: math.unit(3000, "km")
  9545. },
  9546. {
  9547. name: "Gigamacro",
  9548. height: math.unit(1, "AU"),
  9549. default: true
  9550. },
  9551. {
  9552. name: "Omniversal",
  9553. height: math.unit(100e14, "lightyears")
  9554. },
  9555. ]
  9556. ))
  9557. characterMakers.push(() => makeCharacter(
  9558. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9559. {
  9560. front: {
  9561. height: math.unit(6, "feet"),
  9562. weight: math.unit(300, "lb"),
  9563. name: "Front",
  9564. image: {
  9565. source: "./media/characters/mekuto/front.svg",
  9566. extra: 921 / 832,
  9567. bottom: 0.03
  9568. }
  9569. },
  9570. hand: {
  9571. height: math.unit(6 / 10.24, "feet"),
  9572. name: "Hand",
  9573. image: {
  9574. source: "./media/characters/mekuto/hand.svg"
  9575. }
  9576. },
  9577. foot: {
  9578. height: math.unit(6 / 5.05, "feet"),
  9579. name: "Foot",
  9580. image: {
  9581. source: "./media/characters/mekuto/foot.svg"
  9582. }
  9583. },
  9584. },
  9585. [
  9586. {
  9587. name: "Minimicro",
  9588. height: math.unit(0.2, "inches")
  9589. },
  9590. {
  9591. name: "Micro",
  9592. height: math.unit(1.5, "inches")
  9593. },
  9594. {
  9595. name: "Normal",
  9596. height: math.unit(5 + 11 / 12, "feet"),
  9597. default: true
  9598. },
  9599. {
  9600. name: "Minimacro",
  9601. height: math.unit(17 + 9 / 12, "feet")
  9602. },
  9603. {
  9604. name: "Macro",
  9605. height: math.unit(177.5, "feet")
  9606. },
  9607. {
  9608. name: "Megamacro",
  9609. height: math.unit(152, "miles")
  9610. },
  9611. ]
  9612. ))
  9613. characterMakers.push(() => makeCharacter(
  9614. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9615. {
  9616. front: {
  9617. height: math.unit(6.5, "inches"),
  9618. weight: math.unit(13, "oz"),
  9619. name: "Front",
  9620. image: {
  9621. source: "./media/characters/dafydd-tomos/front.svg",
  9622. extra: 2990 / 2603,
  9623. bottom: 0.03
  9624. }
  9625. },
  9626. },
  9627. [
  9628. {
  9629. name: "Micro",
  9630. height: math.unit(6.5, "inches"),
  9631. default: true
  9632. },
  9633. ]
  9634. ))
  9635. characterMakers.push(() => makeCharacter(
  9636. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9637. {
  9638. front: {
  9639. height: math.unit(6, "feet"),
  9640. weight: math.unit(150, "lb"),
  9641. name: "Front",
  9642. image: {
  9643. source: "./media/characters/splinter/front.svg",
  9644. extra: 2990 / 2882,
  9645. bottom: 0.04
  9646. }
  9647. },
  9648. back: {
  9649. height: math.unit(6, "feet"),
  9650. weight: math.unit(150, "lb"),
  9651. name: "Back",
  9652. image: {
  9653. source: "./media/characters/splinter/back.svg",
  9654. extra: 2990 / 2882,
  9655. bottom: 0.04
  9656. }
  9657. },
  9658. },
  9659. [
  9660. {
  9661. name: "Normal",
  9662. height: math.unit(6, "feet")
  9663. },
  9664. {
  9665. name: "Macro",
  9666. height: math.unit(230, "meters"),
  9667. default: true
  9668. },
  9669. ]
  9670. ))
  9671. characterMakers.push(() => makeCharacter(
  9672. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9673. {
  9674. front: {
  9675. height: math.unit(4 + 10 / 12, "feet"),
  9676. weight: math.unit(480, "lb"),
  9677. name: "Front",
  9678. image: {
  9679. source: "./media/characters/snow-gabumon/front.svg",
  9680. extra: 1140 / 963,
  9681. bottom: 0.058
  9682. }
  9683. },
  9684. back: {
  9685. height: math.unit(4 + 10 / 12, "feet"),
  9686. weight: math.unit(480, "lb"),
  9687. name: "Back",
  9688. image: {
  9689. source: "./media/characters/snow-gabumon/back.svg",
  9690. extra: 1115 / 962,
  9691. bottom: 0.041
  9692. }
  9693. },
  9694. frontUndresed: {
  9695. height: math.unit(4 + 10 / 12, "feet"),
  9696. weight: math.unit(480, "lb"),
  9697. name: "Front (Undressed)",
  9698. image: {
  9699. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9700. extra: 1061 / 960,
  9701. bottom: 0.045
  9702. }
  9703. },
  9704. },
  9705. [
  9706. {
  9707. name: "Micro",
  9708. height: math.unit(1, "inch")
  9709. },
  9710. {
  9711. name: "Normal",
  9712. height: math.unit(4 + 10 / 12, "feet"),
  9713. default: true
  9714. },
  9715. {
  9716. name: "Macro",
  9717. height: math.unit(200, "feet")
  9718. },
  9719. {
  9720. name: "Megamacro",
  9721. height: math.unit(120, "miles")
  9722. },
  9723. {
  9724. name: "Gigamacro",
  9725. height: math.unit(9800, "miles")
  9726. },
  9727. ]
  9728. ))
  9729. characterMakers.push(() => makeCharacter(
  9730. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9731. {
  9732. front: {
  9733. height: math.unit(1.7, "meters"),
  9734. weight: math.unit(140, "lb"),
  9735. name: "Front",
  9736. image: {
  9737. source: "./media/characters/moody/front.svg",
  9738. extra: 3226 / 3007,
  9739. bottom: 0.087
  9740. }
  9741. },
  9742. },
  9743. [
  9744. {
  9745. name: "Micro",
  9746. height: math.unit(1, "mm")
  9747. },
  9748. {
  9749. name: "Normal",
  9750. height: math.unit(1.7, "meters"),
  9751. default: true
  9752. },
  9753. {
  9754. name: "Macro",
  9755. height: math.unit(80, "meters")
  9756. },
  9757. {
  9758. name: "Macro+",
  9759. height: math.unit(500, "meters")
  9760. },
  9761. ]
  9762. ))
  9763. characterMakers.push(() => makeCharacter(
  9764. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9765. {
  9766. front: {
  9767. height: math.unit(6, "feet"),
  9768. weight: math.unit(150, "lb"),
  9769. name: "Front",
  9770. image: {
  9771. source: "./media/characters/zyas/front.svg",
  9772. extra: 1180 / 1120,
  9773. bottom: 0.045
  9774. }
  9775. },
  9776. },
  9777. [
  9778. {
  9779. name: "Normal",
  9780. height: math.unit(10, "feet"),
  9781. default: true
  9782. },
  9783. {
  9784. name: "Macro",
  9785. height: math.unit(500, "feet")
  9786. },
  9787. {
  9788. name: "Megamacro",
  9789. height: math.unit(5, "miles")
  9790. },
  9791. {
  9792. name: "Teramacro",
  9793. height: math.unit(150000, "miles")
  9794. },
  9795. ]
  9796. ))
  9797. characterMakers.push(() => makeCharacter(
  9798. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9799. {
  9800. front: {
  9801. height: math.unit(6, "feet"),
  9802. weight: math.unit(150, "lb"),
  9803. name: "Front",
  9804. image: {
  9805. source: "./media/characters/cuon/front.svg",
  9806. extra: 1390 / 1320,
  9807. bottom: 0.008
  9808. }
  9809. },
  9810. },
  9811. [
  9812. {
  9813. name: "Micro",
  9814. height: math.unit(3, "inches")
  9815. },
  9816. {
  9817. name: "Normal",
  9818. height: math.unit(18 + 9 / 12, "feet"),
  9819. default: true
  9820. },
  9821. {
  9822. name: "Macro",
  9823. height: math.unit(360, "feet")
  9824. },
  9825. {
  9826. name: "Megamacro",
  9827. height: math.unit(360, "miles")
  9828. },
  9829. ]
  9830. ))
  9831. characterMakers.push(() => makeCharacter(
  9832. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9833. {
  9834. front: {
  9835. height: math.unit(2.4, "meters"),
  9836. weight: math.unit(70, "kg"),
  9837. name: "Front",
  9838. image: {
  9839. source: "./media/characters/nyanuxk/front.svg",
  9840. extra: 1172 / 1084,
  9841. bottom: 0.065
  9842. }
  9843. },
  9844. side: {
  9845. height: math.unit(2.4, "meters"),
  9846. weight: math.unit(70, "kg"),
  9847. name: "Side",
  9848. image: {
  9849. source: "./media/characters/nyanuxk/side.svg",
  9850. extra: 1190 / 1132,
  9851. bottom: 0.007
  9852. }
  9853. },
  9854. back: {
  9855. height: math.unit(2.4, "meters"),
  9856. weight: math.unit(70, "kg"),
  9857. name: "Back",
  9858. image: {
  9859. source: "./media/characters/nyanuxk/back.svg",
  9860. extra: 1200 / 1141,
  9861. bottom: 0.015
  9862. }
  9863. },
  9864. foot: {
  9865. height: math.unit(0.52, "meters"),
  9866. name: "Foot",
  9867. image: {
  9868. source: "./media/characters/nyanuxk/foot.svg"
  9869. }
  9870. },
  9871. },
  9872. [
  9873. {
  9874. name: "Micro",
  9875. height: math.unit(2, "cm")
  9876. },
  9877. {
  9878. name: "Normal",
  9879. height: math.unit(2.4, "meters"),
  9880. default: true
  9881. },
  9882. {
  9883. name: "Smaller Macro",
  9884. height: math.unit(120, "meters")
  9885. },
  9886. {
  9887. name: "Bigger Macro",
  9888. height: math.unit(1.2, "km")
  9889. },
  9890. {
  9891. name: "Megamacro",
  9892. height: math.unit(15, "kilometers")
  9893. },
  9894. {
  9895. name: "Gigamacro",
  9896. height: math.unit(2000, "km")
  9897. },
  9898. {
  9899. name: "Teramacro",
  9900. height: math.unit(500000, "km")
  9901. },
  9902. ]
  9903. ))
  9904. characterMakers.push(() => makeCharacter(
  9905. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9906. {
  9907. side: {
  9908. height: math.unit(6, "feet"),
  9909. name: "Side",
  9910. image: {
  9911. source: "./media/characters/ailbhe/side.svg",
  9912. extra: 757 / 464,
  9913. bottom: 0.041
  9914. }
  9915. },
  9916. },
  9917. [
  9918. {
  9919. name: "Normal",
  9920. height: math.unit(1.07, "meters"),
  9921. default: true
  9922. },
  9923. ]
  9924. ))
  9925. characterMakers.push(() => makeCharacter(
  9926. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9927. {
  9928. front: {
  9929. height: math.unit(6, "feet"),
  9930. weight: math.unit(120, "kg"),
  9931. name: "Front",
  9932. image: {
  9933. source: "./media/characters/zevulfius/front.svg",
  9934. extra: 965 / 903
  9935. }
  9936. },
  9937. side: {
  9938. height: math.unit(6, "feet"),
  9939. weight: math.unit(120, "kg"),
  9940. name: "Side",
  9941. image: {
  9942. source: "./media/characters/zevulfius/side.svg",
  9943. extra: 939 / 900
  9944. }
  9945. },
  9946. back: {
  9947. height: math.unit(6, "feet"),
  9948. weight: math.unit(120, "kg"),
  9949. name: "Back",
  9950. image: {
  9951. source: "./media/characters/zevulfius/back.svg",
  9952. extra: 918 / 854,
  9953. bottom: 0.005
  9954. }
  9955. },
  9956. foot: {
  9957. height: math.unit(6 / 3.72, "feet"),
  9958. name: "Foot",
  9959. image: {
  9960. source: "./media/characters/zevulfius/foot.svg"
  9961. }
  9962. },
  9963. },
  9964. [
  9965. {
  9966. name: "Macro",
  9967. height: math.unit(750, "meters")
  9968. },
  9969. {
  9970. name: "Megamacro",
  9971. height: math.unit(20, "km"),
  9972. default: true
  9973. },
  9974. {
  9975. name: "Gigamacro",
  9976. height: math.unit(2000, "km")
  9977. },
  9978. {
  9979. name: "Teramacro",
  9980. height: math.unit(250000, "km")
  9981. },
  9982. ]
  9983. ))
  9984. characterMakers.push(() => makeCharacter(
  9985. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9986. {
  9987. front: {
  9988. height: math.unit(100, "feet"),
  9989. weight: math.unit(350, "kg"),
  9990. name: "Front",
  9991. image: {
  9992. source: "./media/characters/rikes/front.svg",
  9993. extra: 1565 / 1483,
  9994. bottom: 0.017
  9995. }
  9996. },
  9997. },
  9998. [
  9999. {
  10000. name: "Macro",
  10001. height: math.unit(100, "feet"),
  10002. default: true
  10003. },
  10004. ]
  10005. ))
  10006. characterMakers.push(() => makeCharacter(
  10007. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10008. {
  10009. anthro: {
  10010. height: math.unit(8, "feet"),
  10011. weight: math.unit(120, "kg"),
  10012. name: "Anthro",
  10013. image: {
  10014. source: "./media/characters/adam-silver-mane/anthro.svg",
  10015. extra: 5743 / 5339,
  10016. bottom: 0.07
  10017. }
  10018. },
  10019. taur: {
  10020. height: math.unit(16, "feet"),
  10021. weight: math.unit(1500, "kg"),
  10022. name: "Taur",
  10023. image: {
  10024. source: "./media/characters/adam-silver-mane/taur.svg",
  10025. extra: 1713 / 1571,
  10026. bottom: 0.01
  10027. }
  10028. },
  10029. },
  10030. [
  10031. {
  10032. name: "Normal",
  10033. height: math.unit(8, "feet")
  10034. },
  10035. {
  10036. name: "Minimacro",
  10037. height: math.unit(80, "feet")
  10038. },
  10039. {
  10040. name: "Macro",
  10041. height: math.unit(800, "feet"),
  10042. default: true
  10043. },
  10044. {
  10045. name: "Megamacro",
  10046. height: math.unit(8000, "feet")
  10047. },
  10048. {
  10049. name: "Gigamacro",
  10050. height: math.unit(800, "miles")
  10051. },
  10052. {
  10053. name: "Teramacro",
  10054. height: math.unit(80000, "miles")
  10055. },
  10056. {
  10057. name: "Celestial",
  10058. height: math.unit(8e6, "miles")
  10059. },
  10060. {
  10061. name: "Star Dragon",
  10062. height: math.unit(800000, "parsecs")
  10063. },
  10064. {
  10065. name: "Godly",
  10066. height: math.unit(800, "teraparsecs")
  10067. },
  10068. ]
  10069. ))
  10070. characterMakers.push(() => makeCharacter(
  10071. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10072. {
  10073. front: {
  10074. height: math.unit(6, "feet"),
  10075. weight: math.unit(150, "lb"),
  10076. name: "Front",
  10077. image: {
  10078. source: "./media/characters/ky'owin/front.svg",
  10079. extra: 3888 / 3068,
  10080. bottom: 0.015
  10081. }
  10082. },
  10083. },
  10084. [
  10085. {
  10086. name: "Normal",
  10087. height: math.unit(6 + 8 / 12, "feet")
  10088. },
  10089. {
  10090. name: "Large",
  10091. height: math.unit(68, "feet")
  10092. },
  10093. {
  10094. name: "Macro",
  10095. height: math.unit(132, "feet")
  10096. },
  10097. {
  10098. name: "Macro+",
  10099. height: math.unit(340, "feet")
  10100. },
  10101. {
  10102. name: "Macro++",
  10103. height: math.unit(680, "feet"),
  10104. default: true
  10105. },
  10106. {
  10107. name: "Megamacro",
  10108. height: math.unit(1, "mile")
  10109. },
  10110. {
  10111. name: "Megamacro+",
  10112. height: math.unit(10, "miles")
  10113. },
  10114. ]
  10115. ))
  10116. characterMakers.push(() => makeCharacter(
  10117. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10118. {
  10119. front: {
  10120. height: math.unit(4, "feet"),
  10121. weight: math.unit(50, "lb"),
  10122. name: "Front",
  10123. image: {
  10124. source: "./media/characters/mal/front.svg",
  10125. extra: 785 / 724,
  10126. bottom: 0.07
  10127. }
  10128. },
  10129. },
  10130. [
  10131. {
  10132. name: "Micro",
  10133. height: math.unit(4, "inches")
  10134. },
  10135. {
  10136. name: "Normal",
  10137. height: math.unit(4, "feet"),
  10138. default: true
  10139. },
  10140. {
  10141. name: "Macro",
  10142. height: math.unit(200, "feet")
  10143. },
  10144. ]
  10145. ))
  10146. characterMakers.push(() => makeCharacter(
  10147. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10148. {
  10149. front: {
  10150. height: math.unit(6, "feet"),
  10151. weight: math.unit(150, "lb"),
  10152. name: "Front",
  10153. image: {
  10154. source: "./media/characters/jordan-deware/front.svg",
  10155. extra: 1191 / 1012
  10156. }
  10157. },
  10158. },
  10159. [
  10160. {
  10161. name: "Nano",
  10162. height: math.unit(0.01, "mm")
  10163. },
  10164. {
  10165. name: "Minimicro",
  10166. height: math.unit(1, "mm")
  10167. },
  10168. {
  10169. name: "Micro",
  10170. height: math.unit(0.5, "inches")
  10171. },
  10172. {
  10173. name: "Normal",
  10174. height: math.unit(4, "feet"),
  10175. default: true
  10176. },
  10177. {
  10178. name: "Minimacro",
  10179. height: math.unit(40, "meters")
  10180. },
  10181. {
  10182. name: "Small Macro",
  10183. height: math.unit(400, "meters")
  10184. },
  10185. {
  10186. name: "Macro",
  10187. height: math.unit(4, "miles")
  10188. },
  10189. {
  10190. name: "Megamacro",
  10191. height: math.unit(40, "miles")
  10192. },
  10193. {
  10194. name: "Megamacro+",
  10195. height: math.unit(400, "miles")
  10196. },
  10197. {
  10198. name: "Gigamacro",
  10199. height: math.unit(400000, "miles")
  10200. },
  10201. ]
  10202. ))
  10203. characterMakers.push(() => makeCharacter(
  10204. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10205. {
  10206. side: {
  10207. height: math.unit(6, "feet"),
  10208. weight: math.unit(150, "lb"),
  10209. name: "Side",
  10210. image: {
  10211. source: "./media/characters/kimiko/side.svg",
  10212. extra: 600 / 358
  10213. }
  10214. },
  10215. },
  10216. [
  10217. {
  10218. name: "Normal",
  10219. height: math.unit(15, "feet"),
  10220. default: true
  10221. },
  10222. {
  10223. name: "Macro",
  10224. height: math.unit(220, "feet")
  10225. },
  10226. {
  10227. name: "Macro+",
  10228. height: math.unit(1450, "feet")
  10229. },
  10230. {
  10231. name: "Megamacro",
  10232. height: math.unit(11500, "feet")
  10233. },
  10234. {
  10235. name: "Gigamacro",
  10236. height: math.unit(9500, "miles")
  10237. },
  10238. {
  10239. name: "Teramacro",
  10240. height: math.unit(2208005005, "miles")
  10241. },
  10242. {
  10243. name: "Examacro",
  10244. height: math.unit(2750, "parsecs")
  10245. },
  10246. {
  10247. name: "Zettamacro",
  10248. height: math.unit(101500, "parsecs")
  10249. },
  10250. ]
  10251. ))
  10252. characterMakers.push(() => makeCharacter(
  10253. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10254. {
  10255. front: {
  10256. height: math.unit(6, "feet"),
  10257. weight: math.unit(70, "kg"),
  10258. name: "Front",
  10259. image: {
  10260. source: "./media/characters/andrew-sleepy/front.svg"
  10261. }
  10262. },
  10263. side: {
  10264. height: math.unit(6, "feet"),
  10265. weight: math.unit(70, "kg"),
  10266. name: "Side",
  10267. image: {
  10268. source: "./media/characters/andrew-sleepy/side.svg"
  10269. }
  10270. },
  10271. },
  10272. [
  10273. {
  10274. name: "Micro",
  10275. height: math.unit(1, "mm"),
  10276. default: true
  10277. },
  10278. ]
  10279. ))
  10280. characterMakers.push(() => makeCharacter(
  10281. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10282. {
  10283. front: {
  10284. height: math.unit(6, "feet"),
  10285. weight: math.unit(150, "lb"),
  10286. name: "Front",
  10287. image: {
  10288. source: "./media/characters/judio/front.svg",
  10289. extra: 1258 / 1110
  10290. }
  10291. },
  10292. },
  10293. [
  10294. {
  10295. name: "Normal",
  10296. height: math.unit(5 + 6 / 12, "feet")
  10297. },
  10298. {
  10299. name: "Macro",
  10300. height: math.unit(1000, "feet"),
  10301. default: true
  10302. },
  10303. {
  10304. name: "Megamacro",
  10305. height: math.unit(10, "miles")
  10306. },
  10307. ]
  10308. ))
  10309. characterMakers.push(() => makeCharacter(
  10310. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10311. {
  10312. front: {
  10313. height: math.unit(6, "feet"),
  10314. weight: math.unit(68, "kg"),
  10315. name: "Front",
  10316. image: {
  10317. source: "./media/characters/nomaxice/front.svg",
  10318. extra: 1498 / 1073,
  10319. bottom: 0.075
  10320. }
  10321. },
  10322. foot: {
  10323. height: math.unit(1.1, "feet"),
  10324. name: "Foot",
  10325. image: {
  10326. source: "./media/characters/nomaxice/foot.svg"
  10327. }
  10328. },
  10329. },
  10330. [
  10331. {
  10332. name: "Micro",
  10333. height: math.unit(8, "cm")
  10334. },
  10335. {
  10336. name: "Norm",
  10337. height: math.unit(1.82, "m")
  10338. },
  10339. {
  10340. name: "Norm+",
  10341. height: math.unit(8.8, "feet")
  10342. },
  10343. {
  10344. name: "Big",
  10345. height: math.unit(8, "meters"),
  10346. default: true
  10347. },
  10348. {
  10349. name: "Macro",
  10350. height: math.unit(18, "meters")
  10351. },
  10352. {
  10353. name: "Macro+",
  10354. height: math.unit(88, "meters")
  10355. },
  10356. ]
  10357. ))
  10358. characterMakers.push(() => makeCharacter(
  10359. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10360. {
  10361. front: {
  10362. height: math.unit(12, "feet"),
  10363. weight: math.unit(1.5, "tons"),
  10364. name: "Front",
  10365. image: {
  10366. source: "./media/characters/dydros/front.svg",
  10367. extra: 863 / 800,
  10368. bottom: 0.015
  10369. }
  10370. },
  10371. back: {
  10372. height: math.unit(12, "feet"),
  10373. weight: math.unit(1.5, "tons"),
  10374. name: "Back",
  10375. image: {
  10376. source: "./media/characters/dydros/back.svg",
  10377. extra: 900 / 843,
  10378. bottom: 0.005
  10379. }
  10380. },
  10381. },
  10382. [
  10383. {
  10384. name: "Normal",
  10385. height: math.unit(12, "feet"),
  10386. default: true
  10387. },
  10388. ]
  10389. ))
  10390. characterMakers.push(() => makeCharacter(
  10391. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10392. {
  10393. front: {
  10394. height: math.unit(6, "feet"),
  10395. weight: math.unit(100, "kg"),
  10396. name: "Front",
  10397. image: {
  10398. source: "./media/characters/riggi/front.svg",
  10399. extra: 5787 / 5303
  10400. }
  10401. },
  10402. hyper: {
  10403. height: math.unit(6 * 5 / 3, "feet"),
  10404. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10405. name: "Hyper",
  10406. image: {
  10407. source: "./media/characters/riggi/hyper.svg",
  10408. extra: 3595 / 3485
  10409. }
  10410. },
  10411. },
  10412. [
  10413. {
  10414. name: "Small Macro",
  10415. height: math.unit(50, "feet")
  10416. },
  10417. {
  10418. name: "Default",
  10419. height: math.unit(200, "feet"),
  10420. default: true
  10421. },
  10422. {
  10423. name: "Loom",
  10424. height: math.unit(10000, "feet")
  10425. },
  10426. {
  10427. name: "Cruising Altitude",
  10428. height: math.unit(30000, "feet")
  10429. },
  10430. {
  10431. name: "Megamacro",
  10432. height: math.unit(100, "miles")
  10433. },
  10434. {
  10435. name: "Continent Sized",
  10436. height: math.unit(2800, "miles")
  10437. },
  10438. {
  10439. name: "Earth Sized",
  10440. height: math.unit(8000, "miles")
  10441. },
  10442. ]
  10443. ))
  10444. characterMakers.push(() => makeCharacter(
  10445. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10446. {
  10447. front: {
  10448. height: math.unit(6, "feet"),
  10449. weight: math.unit(250, "lb"),
  10450. name: "Front",
  10451. image: {
  10452. source: "./media/characters/alexi/front.svg",
  10453. extra: 3483 / 3291,
  10454. bottom: 0.04
  10455. }
  10456. },
  10457. back: {
  10458. height: math.unit(6, "feet"),
  10459. weight: math.unit(250, "lb"),
  10460. name: "Back",
  10461. image: {
  10462. source: "./media/characters/alexi/back.svg",
  10463. extra: 3533 / 3356,
  10464. bottom: 0.021
  10465. }
  10466. },
  10467. frontTransforming: {
  10468. height: math.unit(8.58, "feet"),
  10469. weight: math.unit(1300, "lb"),
  10470. name: "Transforming",
  10471. image: {
  10472. source: "./media/characters/alexi/front-transforming.svg",
  10473. extra: 437 / 409,
  10474. bottom: 19 / 458.66
  10475. }
  10476. },
  10477. frontTransformed: {
  10478. height: math.unit(12.5, "feet"),
  10479. weight: math.unit(4000, "lb"),
  10480. name: "Transformed",
  10481. image: {
  10482. source: "./media/characters/alexi/front-transformed.svg",
  10483. extra: 639 / 614,
  10484. bottom: 30.55 / 671
  10485. }
  10486. },
  10487. },
  10488. [
  10489. {
  10490. name: "Normal",
  10491. height: math.unit(14, "feet"),
  10492. default: true
  10493. },
  10494. {
  10495. name: "Minimacro",
  10496. height: math.unit(30, "meters")
  10497. },
  10498. {
  10499. name: "Macro",
  10500. height: math.unit(500, "meters")
  10501. },
  10502. {
  10503. name: "Megamacro",
  10504. height: math.unit(9000, "km")
  10505. },
  10506. {
  10507. name: "Teramacro",
  10508. height: math.unit(384000, "km")
  10509. },
  10510. ]
  10511. ))
  10512. characterMakers.push(() => makeCharacter(
  10513. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10514. {
  10515. front: {
  10516. height: math.unit(6, "feet"),
  10517. weight: math.unit(150, "lb"),
  10518. name: "Front",
  10519. image: {
  10520. source: "./media/characters/kayroo/front.svg",
  10521. extra: 1153 / 1038,
  10522. bottom: 0.06
  10523. }
  10524. },
  10525. foot: {
  10526. height: math.unit(6, "feet"),
  10527. weight: math.unit(150, "lb"),
  10528. name: "Foot",
  10529. image: {
  10530. source: "./media/characters/kayroo/foot.svg"
  10531. }
  10532. },
  10533. },
  10534. [
  10535. {
  10536. name: "Normal",
  10537. height: math.unit(8, "feet"),
  10538. default: true
  10539. },
  10540. {
  10541. name: "Minimacro",
  10542. height: math.unit(250, "feet")
  10543. },
  10544. {
  10545. name: "Macro",
  10546. height: math.unit(2800, "feet")
  10547. },
  10548. {
  10549. name: "Megamacro",
  10550. height: math.unit(5200, "feet")
  10551. },
  10552. {
  10553. name: "Gigamacro",
  10554. height: math.unit(27000, "feet")
  10555. },
  10556. {
  10557. name: "Omega",
  10558. height: math.unit(45000, "feet")
  10559. },
  10560. ]
  10561. ))
  10562. characterMakers.push(() => makeCharacter(
  10563. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10564. {
  10565. front: {
  10566. height: math.unit(18, "feet"),
  10567. weight: math.unit(5800, "lb"),
  10568. name: "Front",
  10569. image: {
  10570. source: "./media/characters/rhys/front.svg",
  10571. extra: 3386 / 3090,
  10572. bottom: 0.07
  10573. }
  10574. },
  10575. },
  10576. [
  10577. {
  10578. name: "Normal",
  10579. height: math.unit(18, "feet"),
  10580. default: true
  10581. },
  10582. {
  10583. name: "Working Size",
  10584. height: math.unit(200, "feet")
  10585. },
  10586. {
  10587. name: "Demolition Size",
  10588. height: math.unit(2000, "feet")
  10589. },
  10590. {
  10591. name: "Maximum Licensed Size",
  10592. height: math.unit(5, "miles")
  10593. },
  10594. {
  10595. name: "Maximum Observed Size",
  10596. height: math.unit(10, "yottameters")
  10597. },
  10598. ]
  10599. ))
  10600. characterMakers.push(() => makeCharacter(
  10601. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10602. {
  10603. front: {
  10604. height: math.unit(6, "feet"),
  10605. weight: math.unit(250, "lb"),
  10606. name: "Front",
  10607. image: {
  10608. source: "./media/characters/toto/front.svg",
  10609. extra: 527 / 479,
  10610. bottom: 0.05
  10611. }
  10612. },
  10613. },
  10614. [
  10615. {
  10616. name: "Micro",
  10617. height: math.unit(3, "feet")
  10618. },
  10619. {
  10620. name: "Normal",
  10621. height: math.unit(10, "feet")
  10622. },
  10623. {
  10624. name: "Macro",
  10625. height: math.unit(150, "feet"),
  10626. default: true
  10627. },
  10628. {
  10629. name: "Megamacro",
  10630. height: math.unit(1200, "feet")
  10631. },
  10632. ]
  10633. ))
  10634. characterMakers.push(() => makeCharacter(
  10635. { name: "King", species: ["lion"], tags: ["anthro"] },
  10636. {
  10637. back: {
  10638. height: math.unit(6, "feet"),
  10639. weight: math.unit(150, "lb"),
  10640. name: "Back",
  10641. image: {
  10642. source: "./media/characters/king/back.svg"
  10643. }
  10644. },
  10645. },
  10646. [
  10647. {
  10648. name: "Micro",
  10649. height: math.unit(2, "inches")
  10650. },
  10651. {
  10652. name: "Normal",
  10653. height: math.unit(8, "feet")
  10654. },
  10655. {
  10656. name: "Macro",
  10657. height: math.unit(200, "feet"),
  10658. default: true
  10659. },
  10660. {
  10661. name: "Megamacro",
  10662. height: math.unit(50, "miles")
  10663. },
  10664. ]
  10665. ))
  10666. characterMakers.push(() => makeCharacter(
  10667. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10668. {
  10669. anthro: {
  10670. height: math.unit(6 + 5 / 12, "feet"),
  10671. weight: math.unit(280, "lb"),
  10672. name: "Anthro",
  10673. image: {
  10674. source: "./media/characters/cordite/anthro.svg",
  10675. extra: 1986 / 1905,
  10676. bottom: 0.025
  10677. }
  10678. },
  10679. feral: {
  10680. height: math.unit(2, "feet"),
  10681. weight: math.unit(90, "lb"),
  10682. name: "Feral",
  10683. image: {
  10684. source: "./media/characters/cordite/feral.svg",
  10685. extra: 1260 / 755,
  10686. bottom: 0.05
  10687. }
  10688. },
  10689. },
  10690. [
  10691. {
  10692. name: "Normal",
  10693. height: math.unit(6 + 5 / 12, "feet"),
  10694. default: true
  10695. },
  10696. ]
  10697. ))
  10698. characterMakers.push(() => makeCharacter(
  10699. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10700. {
  10701. front: {
  10702. height: math.unit(6, "feet"),
  10703. weight: math.unit(150, "lb"),
  10704. name: "Front",
  10705. image: {
  10706. source: "./media/characters/pianostrong/front.svg",
  10707. extra: 6577 / 6254,
  10708. bottom: 0.02
  10709. }
  10710. },
  10711. side: {
  10712. height: math.unit(6, "feet"),
  10713. weight: math.unit(150, "lb"),
  10714. name: "Side",
  10715. image: {
  10716. source: "./media/characters/pianostrong/side.svg",
  10717. extra: 6106 / 5730
  10718. }
  10719. },
  10720. back: {
  10721. height: math.unit(6, "feet"),
  10722. weight: math.unit(150, "lb"),
  10723. name: "Back",
  10724. image: {
  10725. source: "./media/characters/pianostrong/back.svg",
  10726. extra: 6085 / 5733,
  10727. bottom: 0.01
  10728. }
  10729. },
  10730. },
  10731. [
  10732. {
  10733. name: "Macro",
  10734. height: math.unit(100, "feet")
  10735. },
  10736. {
  10737. name: "Macro+",
  10738. height: math.unit(300, "feet"),
  10739. default: true
  10740. },
  10741. {
  10742. name: "Macro++",
  10743. height: math.unit(1000, "feet")
  10744. },
  10745. ]
  10746. ))
  10747. characterMakers.push(() => makeCharacter(
  10748. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10749. {
  10750. front: {
  10751. height: math.unit(6, "feet"),
  10752. weight: math.unit(150, "lb"),
  10753. name: "Front",
  10754. image: {
  10755. source: "./media/characters/kona/front.svg",
  10756. extra: 2960 / 2629,
  10757. bottom: 0.005
  10758. }
  10759. },
  10760. },
  10761. [
  10762. {
  10763. name: "Normal",
  10764. height: math.unit(11 + 8 / 12, "feet")
  10765. },
  10766. {
  10767. name: "Macro",
  10768. height: math.unit(850, "feet"),
  10769. default: true
  10770. },
  10771. {
  10772. name: "Macro+",
  10773. height: math.unit(1.5, "km"),
  10774. default: true
  10775. },
  10776. {
  10777. name: "Megamacro",
  10778. height: math.unit(80, "miles")
  10779. },
  10780. {
  10781. name: "Gigamacro",
  10782. height: math.unit(3500, "miles")
  10783. },
  10784. ]
  10785. ))
  10786. characterMakers.push(() => makeCharacter(
  10787. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10788. {
  10789. side: {
  10790. height: math.unit(1.9, "meters"),
  10791. weight: math.unit(326, "kg"),
  10792. name: "Side",
  10793. image: {
  10794. source: "./media/characters/levi/side.svg",
  10795. extra: 1704 / 1334,
  10796. bottom: 0.02
  10797. }
  10798. },
  10799. },
  10800. [
  10801. {
  10802. name: "Normal",
  10803. height: math.unit(1.9, "meters"),
  10804. default: true
  10805. },
  10806. {
  10807. name: "Macro",
  10808. height: math.unit(20, "meters")
  10809. },
  10810. {
  10811. name: "Macro+",
  10812. height: math.unit(200, "meters")
  10813. },
  10814. {
  10815. name: "Megamacro",
  10816. height: math.unit(2, "km")
  10817. },
  10818. {
  10819. name: "Megamacro+",
  10820. height: math.unit(20, "km")
  10821. },
  10822. {
  10823. name: "Gigamacro",
  10824. height: math.unit(2500, "km")
  10825. },
  10826. {
  10827. name: "Gigamacro+",
  10828. height: math.unit(120000, "km")
  10829. },
  10830. {
  10831. name: "Teramacro",
  10832. height: math.unit(7.77e6, "km")
  10833. },
  10834. ]
  10835. ))
  10836. characterMakers.push(() => makeCharacter(
  10837. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10838. {
  10839. front: {
  10840. height: math.unit(6 + 4 / 12, "feet"),
  10841. weight: math.unit(188, "lb"),
  10842. name: "Front",
  10843. image: {
  10844. source: "./media/characters/bmc/front.svg",
  10845. extra: 1067 / 1022,
  10846. bottom: 0.047
  10847. }
  10848. },
  10849. },
  10850. [
  10851. {
  10852. name: "Human-sized",
  10853. height: math.unit(6 + 4 / 12, "feet")
  10854. },
  10855. {
  10856. name: "Small",
  10857. height: math.unit(250, "feet")
  10858. },
  10859. {
  10860. name: "Normal",
  10861. height: math.unit(1250, "feet"),
  10862. default: true
  10863. },
  10864. {
  10865. name: "Good Day",
  10866. height: math.unit(88, "miles")
  10867. },
  10868. {
  10869. name: "Largest Measured Size",
  10870. height: math.unit(11.2e6, "lightyears")
  10871. },
  10872. ]
  10873. ))
  10874. characterMakers.push(() => makeCharacter(
  10875. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10876. {
  10877. front: {
  10878. height: math.unit(20, "feet"),
  10879. weight: math.unit(2016, "kg"),
  10880. name: "Front",
  10881. image: {
  10882. source: "./media/characters/sven-the-kaiju/front.svg",
  10883. extra: 1479 / 1449,
  10884. bottom: 0.05
  10885. }
  10886. },
  10887. },
  10888. [
  10889. {
  10890. name: "Fairy",
  10891. height: math.unit(6, "inches")
  10892. },
  10893. {
  10894. name: "Normal",
  10895. height: math.unit(20, "feet"),
  10896. default: true
  10897. },
  10898. {
  10899. name: "Rampage",
  10900. height: math.unit(200, "feet")
  10901. },
  10902. {
  10903. name: "Archfey Forest Guardian",
  10904. height: math.unit(1, "mile")
  10905. },
  10906. ]
  10907. ))
  10908. characterMakers.push(() => makeCharacter(
  10909. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10910. {
  10911. front: {
  10912. height: math.unit(4, "meters"),
  10913. weight: math.unit(2, "tons"),
  10914. name: "Front",
  10915. image: {
  10916. source: "./media/characters/marik/front.svg",
  10917. extra: 1057 / 1003,
  10918. bottom: 0.08
  10919. }
  10920. },
  10921. },
  10922. [
  10923. {
  10924. name: "Normal",
  10925. height: math.unit(4, "meters"),
  10926. default: true
  10927. },
  10928. {
  10929. name: "Macro",
  10930. height: math.unit(20, "meters")
  10931. },
  10932. {
  10933. name: "Megamacro",
  10934. height: math.unit(50, "km")
  10935. },
  10936. {
  10937. name: "Gigamacro",
  10938. height: math.unit(100, "km")
  10939. },
  10940. {
  10941. name: "Alpha Macro",
  10942. height: math.unit(7.88e7, "yottameters")
  10943. },
  10944. ]
  10945. ))
  10946. characterMakers.push(() => makeCharacter(
  10947. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10948. {
  10949. front: {
  10950. height: math.unit(6, "feet"),
  10951. weight: math.unit(110, "lb"),
  10952. name: "Front",
  10953. image: {
  10954. source: "./media/characters/mel/front.svg",
  10955. extra: 736 / 617,
  10956. bottom: 0.017
  10957. }
  10958. },
  10959. },
  10960. [
  10961. {
  10962. name: "Pico",
  10963. height: math.unit(3, "pm")
  10964. },
  10965. {
  10966. name: "Nano",
  10967. height: math.unit(3, "nm")
  10968. },
  10969. {
  10970. name: "Micro",
  10971. height: math.unit(0.3, "mm"),
  10972. default: true
  10973. },
  10974. {
  10975. name: "Micro+",
  10976. height: math.unit(3, "mm")
  10977. },
  10978. {
  10979. name: "Normal",
  10980. height: math.unit(5 + 10.5 / 12, "feet")
  10981. },
  10982. ]
  10983. ))
  10984. characterMakers.push(() => makeCharacter(
  10985. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10986. {
  10987. kaiju: {
  10988. height: math.unit(1.75, "meters"),
  10989. weight: math.unit(55, "kg"),
  10990. name: "Kaiju",
  10991. image: {
  10992. source: "./media/characters/lykonous/kaiju.svg",
  10993. extra: 1055 / 946,
  10994. bottom: 0.135
  10995. }
  10996. },
  10997. },
  10998. [
  10999. {
  11000. name: "Normal",
  11001. height: math.unit(2.5, "meters"),
  11002. default: true
  11003. },
  11004. {
  11005. name: "Kaiju Dragon",
  11006. height: math.unit(60, "meters")
  11007. },
  11008. {
  11009. name: "Mega Kaiju",
  11010. height: math.unit(120, "km")
  11011. },
  11012. {
  11013. name: "Giga Kaiju",
  11014. height: math.unit(200, "megameters")
  11015. },
  11016. {
  11017. name: "Terra Kaiju",
  11018. height: math.unit(400, "gigameters")
  11019. },
  11020. {
  11021. name: "Kaiju Dragon God",
  11022. height: math.unit(13000, "exaparsecs")
  11023. },
  11024. ]
  11025. ))
  11026. characterMakers.push(() => makeCharacter(
  11027. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11028. {
  11029. front: {
  11030. height: math.unit(6, "feet"),
  11031. weight: math.unit(150, "lb"),
  11032. name: "Front",
  11033. image: {
  11034. source: "./media/characters/blü/front.svg",
  11035. extra: 1883 / 1564,
  11036. bottom: 0.031
  11037. }
  11038. },
  11039. },
  11040. [
  11041. {
  11042. name: "Normal",
  11043. height: math.unit(13, "feet"),
  11044. default: true
  11045. },
  11046. {
  11047. name: "Big Boi",
  11048. height: math.unit(150, "meters")
  11049. },
  11050. {
  11051. name: "Mini Stomper",
  11052. height: math.unit(300, "meters")
  11053. },
  11054. {
  11055. name: "Macro",
  11056. height: math.unit(1000, "meters")
  11057. },
  11058. {
  11059. name: "Megamacro",
  11060. height: math.unit(11000, "meters")
  11061. },
  11062. {
  11063. name: "Gigamacro",
  11064. height: math.unit(11000, "km")
  11065. },
  11066. {
  11067. name: "Teramacro",
  11068. height: math.unit(420000, "km")
  11069. },
  11070. {
  11071. name: "Examacro",
  11072. height: math.unit(120, "parsecs")
  11073. },
  11074. {
  11075. name: "God Tho",
  11076. height: math.unit(98000000000, "parsecs")
  11077. },
  11078. ]
  11079. ))
  11080. characterMakers.push(() => makeCharacter(
  11081. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11082. {
  11083. taurFront: {
  11084. height: math.unit(6, "feet"),
  11085. weight: math.unit(200, "lb"),
  11086. name: "Taur (Front)",
  11087. image: {
  11088. source: "./media/characters/scales/taur-front.svg",
  11089. extra: 1,
  11090. bottom: 0.05
  11091. }
  11092. },
  11093. taurBack: {
  11094. height: math.unit(6, "feet"),
  11095. weight: math.unit(200, "lb"),
  11096. name: "Taur (Back)",
  11097. image: {
  11098. source: "./media/characters/scales/taur-back.svg",
  11099. extra: 1,
  11100. bottom: 0.08
  11101. }
  11102. },
  11103. anthro: {
  11104. height: math.unit(6 * 7 / 12, "feet"),
  11105. weight: math.unit(100, "lb"),
  11106. name: "Anthro",
  11107. image: {
  11108. source: "./media/characters/scales/anthro.svg",
  11109. extra: 1,
  11110. bottom: 0.06
  11111. }
  11112. },
  11113. },
  11114. [
  11115. {
  11116. name: "Normal",
  11117. height: math.unit(12, "feet"),
  11118. default: true
  11119. },
  11120. ]
  11121. ))
  11122. characterMakers.push(() => makeCharacter(
  11123. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11124. {
  11125. front: {
  11126. height: math.unit(6, "feet"),
  11127. weight: math.unit(150, "lb"),
  11128. name: "Front",
  11129. image: {
  11130. source: "./media/characters/koragos/front.svg",
  11131. extra: 841 / 794,
  11132. bottom: 0.035
  11133. }
  11134. },
  11135. back: {
  11136. height: math.unit(6, "feet"),
  11137. weight: math.unit(150, "lb"),
  11138. name: "Back",
  11139. image: {
  11140. source: "./media/characters/koragos/back.svg",
  11141. extra: 841 / 810,
  11142. bottom: 0.022
  11143. }
  11144. },
  11145. },
  11146. [
  11147. {
  11148. name: "Normal",
  11149. height: math.unit(6 + 11 / 12, "feet"),
  11150. default: true
  11151. },
  11152. {
  11153. name: "Macro",
  11154. height: math.unit(490, "feet")
  11155. },
  11156. {
  11157. name: "Megamacro",
  11158. height: math.unit(10, "miles")
  11159. },
  11160. {
  11161. name: "Gigamacro",
  11162. height: math.unit(50, "miles")
  11163. },
  11164. ]
  11165. ))
  11166. characterMakers.push(() => makeCharacter(
  11167. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11168. {
  11169. front: {
  11170. height: math.unit(6, "feet"),
  11171. weight: math.unit(250, "lb"),
  11172. name: "Front",
  11173. image: {
  11174. source: "./media/characters/xylrem/front.svg",
  11175. extra: 3323 / 3050,
  11176. bottom: 0.065
  11177. }
  11178. },
  11179. },
  11180. [
  11181. {
  11182. name: "Micro",
  11183. height: math.unit(4, "feet")
  11184. },
  11185. {
  11186. name: "Normal",
  11187. height: math.unit(16, "feet"),
  11188. default: true
  11189. },
  11190. {
  11191. name: "Macro",
  11192. height: math.unit(2720, "feet")
  11193. },
  11194. {
  11195. name: "Megamacro",
  11196. height: math.unit(25000, "miles")
  11197. },
  11198. ]
  11199. ))
  11200. characterMakers.push(() => makeCharacter(
  11201. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11202. {
  11203. front: {
  11204. height: math.unit(8, "feet"),
  11205. weight: math.unit(250, "kg"),
  11206. name: "Front",
  11207. image: {
  11208. source: "./media/characters/ikideru/front.svg",
  11209. extra: 930 / 870,
  11210. bottom: 0.087
  11211. }
  11212. },
  11213. back: {
  11214. height: math.unit(8, "feet"),
  11215. weight: math.unit(250, "kg"),
  11216. name: "Back",
  11217. image: {
  11218. source: "./media/characters/ikideru/back.svg",
  11219. extra: 919 / 852,
  11220. bottom: 0.055
  11221. }
  11222. },
  11223. },
  11224. [
  11225. {
  11226. name: "Rare",
  11227. height: math.unit(8, "feet"),
  11228. default: true
  11229. },
  11230. {
  11231. name: "Playful Loom",
  11232. height: math.unit(80, "feet")
  11233. },
  11234. {
  11235. name: "City Leaner",
  11236. height: math.unit(230, "feet")
  11237. },
  11238. {
  11239. name: "Megamacro",
  11240. height: math.unit(2500, "feet")
  11241. },
  11242. {
  11243. name: "Gigamacro",
  11244. height: math.unit(26400, "feet")
  11245. },
  11246. {
  11247. name: "Tectonic Shifter",
  11248. height: math.unit(1.7, "megameters")
  11249. },
  11250. {
  11251. name: "Planet Carer",
  11252. height: math.unit(21, "megameters")
  11253. },
  11254. {
  11255. name: "God",
  11256. height: math.unit(11157.22, "parsecs")
  11257. },
  11258. ]
  11259. ))
  11260. characterMakers.push(() => makeCharacter(
  11261. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11262. {
  11263. front: {
  11264. height: math.unit(6, "feet"),
  11265. weight: math.unit(120, "lb"),
  11266. name: "Front",
  11267. image: {
  11268. source: "./media/characters/neo/front.svg"
  11269. }
  11270. },
  11271. },
  11272. [
  11273. {
  11274. name: "Micro",
  11275. height: math.unit(2, "inches"),
  11276. default: true
  11277. },
  11278. {
  11279. name: "Human Size",
  11280. height: math.unit(5 + 8 / 12, "feet")
  11281. },
  11282. ]
  11283. ))
  11284. characterMakers.push(() => makeCharacter(
  11285. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11286. {
  11287. front: {
  11288. height: math.unit(13 + 10 / 12, "feet"),
  11289. weight: math.unit(5320, "lb"),
  11290. name: "Front",
  11291. image: {
  11292. source: "./media/characters/chauncey-chantz/front.svg",
  11293. extra: 1587 / 1435,
  11294. bottom: 0.02
  11295. }
  11296. },
  11297. },
  11298. [
  11299. {
  11300. name: "Normal",
  11301. height: math.unit(13 + 10 / 12, "feet"),
  11302. default: true
  11303. },
  11304. {
  11305. name: "Macro",
  11306. height: math.unit(45, "feet")
  11307. },
  11308. {
  11309. name: "Megamacro",
  11310. height: math.unit(250, "miles")
  11311. },
  11312. {
  11313. name: "Planetary",
  11314. height: math.unit(10000, "miles")
  11315. },
  11316. {
  11317. name: "Galactic",
  11318. height: math.unit(40000, "parsecs")
  11319. },
  11320. {
  11321. name: "Universal",
  11322. height: math.unit(1, "yottameter")
  11323. },
  11324. ]
  11325. ))
  11326. characterMakers.push(() => makeCharacter(
  11327. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11328. {
  11329. front: {
  11330. height: math.unit(6, "feet"),
  11331. weight: math.unit(150, "lb"),
  11332. name: "Front",
  11333. image: {
  11334. source: "./media/characters/epifox/front.svg",
  11335. extra: 1,
  11336. bottom: 0.075
  11337. }
  11338. },
  11339. },
  11340. [
  11341. {
  11342. name: "Micro",
  11343. height: math.unit(6, "inches")
  11344. },
  11345. {
  11346. name: "Normal",
  11347. height: math.unit(12, "feet"),
  11348. default: true
  11349. },
  11350. {
  11351. name: "Macro",
  11352. height: math.unit(3810, "feet")
  11353. },
  11354. {
  11355. name: "Megamacro",
  11356. height: math.unit(500, "miles")
  11357. },
  11358. ]
  11359. ))
  11360. characterMakers.push(() => makeCharacter(
  11361. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11362. {
  11363. front: {
  11364. height: math.unit(1.8796, "m"),
  11365. weight: math.unit(230, "lb"),
  11366. name: "Front",
  11367. image: {
  11368. source: "./media/characters/colin-t/front.svg",
  11369. extra: 1272 / 1193,
  11370. bottom: 0.07
  11371. }
  11372. },
  11373. },
  11374. [
  11375. {
  11376. name: "Micro",
  11377. height: math.unit(0.571, "meters")
  11378. },
  11379. {
  11380. name: "Normal",
  11381. height: math.unit(1.8796, "meters"),
  11382. default: true
  11383. },
  11384. {
  11385. name: "Tall",
  11386. height: math.unit(4, "meters")
  11387. },
  11388. {
  11389. name: "Macro",
  11390. height: math.unit(67.241, "meters")
  11391. },
  11392. {
  11393. name: "Megamacro",
  11394. height: math.unit(371.856, "meters")
  11395. },
  11396. {
  11397. name: "Planetary",
  11398. height: math.unit(12631.5689, "km")
  11399. },
  11400. ]
  11401. ))
  11402. characterMakers.push(() => makeCharacter(
  11403. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11404. {
  11405. front: {
  11406. height: math.unit(1.85, "meters"),
  11407. weight: math.unit(80, "kg"),
  11408. name: "Front",
  11409. image: {
  11410. source: "./media/characters/matvei/front.svg",
  11411. extra: 614 / 594,
  11412. bottom: 0.01
  11413. }
  11414. },
  11415. },
  11416. [
  11417. {
  11418. name: "Normal",
  11419. height: math.unit(1.85, "meters"),
  11420. default: true
  11421. },
  11422. ]
  11423. ))
  11424. characterMakers.push(() => makeCharacter(
  11425. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11426. {
  11427. front: {
  11428. height: math.unit(5 + 9 / 12, "feet"),
  11429. weight: math.unit(70, "lb"),
  11430. name: "Front",
  11431. image: {
  11432. source: "./media/characters/quincy/front.svg",
  11433. extra: 3041 / 2751
  11434. }
  11435. },
  11436. back: {
  11437. height: math.unit(5 + 9 / 12, "feet"),
  11438. weight: math.unit(70, "lb"),
  11439. name: "Back",
  11440. image: {
  11441. source: "./media/characters/quincy/back.svg",
  11442. extra: 3041 / 2751
  11443. }
  11444. },
  11445. flying: {
  11446. height: math.unit(5 + 4 / 12, "feet"),
  11447. weight: math.unit(70, "lb"),
  11448. name: "Flying",
  11449. image: {
  11450. source: "./media/characters/quincy/flying.svg",
  11451. extra: 1044 / 930
  11452. }
  11453. },
  11454. },
  11455. [
  11456. {
  11457. name: "Micro",
  11458. height: math.unit(3, "cm")
  11459. },
  11460. {
  11461. name: "Normal",
  11462. height: math.unit(5 + 9 / 12, "feet")
  11463. },
  11464. {
  11465. name: "Macro",
  11466. height: math.unit(200, "meters"),
  11467. default: true
  11468. },
  11469. {
  11470. name: "Megamacro",
  11471. height: math.unit(1000, "meters")
  11472. },
  11473. ]
  11474. ))
  11475. characterMakers.push(() => makeCharacter(
  11476. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11477. {
  11478. front: {
  11479. height: math.unit(4 + 7 / 12, "feet"),
  11480. weight: math.unit(50, "lb"),
  11481. name: "Front",
  11482. image: {
  11483. source: "./media/characters/vanrel/front.svg",
  11484. extra: 1,
  11485. bottom: 0.02
  11486. }
  11487. },
  11488. frontAlt: {
  11489. height: math.unit(4 + 7 / 12, "feet"),
  11490. weight: math.unit(50, "lb"),
  11491. name: "Front-alt",
  11492. image: {
  11493. source: "./media/characters/vanrel/front-alt.svg",
  11494. extra: 1,
  11495. bottom: 15 / 1511
  11496. }
  11497. },
  11498. elemental: {
  11499. height: math.unit(3, "feet"),
  11500. weight: math.unit(50, "lb"),
  11501. name: "Elemental",
  11502. image: {
  11503. source: "./media/characters/vanrel/elemental.svg",
  11504. extra: 192.3 / 162.8,
  11505. bottom: 1.79 / 194.17
  11506. }
  11507. },
  11508. side: {
  11509. height: math.unit(4 + 7 / 12, "feet"),
  11510. weight: math.unit(50, "lb"),
  11511. name: "Side",
  11512. image: {
  11513. source: "./media/characters/vanrel/side.svg",
  11514. extra: 1,
  11515. bottom: 0.025
  11516. }
  11517. },
  11518. tome: {
  11519. height: math.unit(1.35, "feet"),
  11520. weight: math.unit(10, "lb"),
  11521. name: "Vanrel's Tome",
  11522. rename: true,
  11523. image: {
  11524. source: "./media/characters/vanrel/tome.svg"
  11525. }
  11526. },
  11527. beans: {
  11528. height: math.unit(0.89, "feet"),
  11529. name: "Beans",
  11530. image: {
  11531. source: "./media/characters/vanrel/beans.svg"
  11532. }
  11533. },
  11534. },
  11535. [
  11536. {
  11537. name: "Normal",
  11538. height: math.unit(4 + 7 / 12, "feet"),
  11539. default: true
  11540. },
  11541. ]
  11542. ))
  11543. characterMakers.push(() => makeCharacter(
  11544. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11545. {
  11546. front: {
  11547. height: math.unit(7 + 5 / 12, "feet"),
  11548. weight: math.unit(150, "lb"),
  11549. name: "Front",
  11550. image: {
  11551. source: "./media/characters/kuiper-vanrel/front.svg",
  11552. extra: 1118 / 1068,
  11553. bottom: 0.09
  11554. }
  11555. },
  11556. foot: {
  11557. height: math.unit(0.55, "meters"),
  11558. name: "Foot",
  11559. image: {
  11560. source: "./media/characters/kuiper-vanrel/foot.svg",
  11561. }
  11562. },
  11563. battle: {
  11564. height: math.unit(6.824, "feet"),
  11565. weight: math.unit(150, "lb"),
  11566. name: "Battle",
  11567. image: {
  11568. source: "./media/characters/kuiper-vanrel/battle.svg",
  11569. extra: 1466 / 1327,
  11570. bottom: 29 / 1492.5
  11571. }
  11572. },
  11573. battleAlt: {
  11574. height: math.unit(6.824, "feet"),
  11575. weight: math.unit(150, "lb"),
  11576. name: "Battle (Alt)",
  11577. image: {
  11578. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11579. extra: 2081 / 1965,
  11580. bottom: 40 / 2121
  11581. }
  11582. },
  11583. },
  11584. [
  11585. {
  11586. name: "Normal",
  11587. height: math.unit(7 + 5 / 12, "feet"),
  11588. default: true
  11589. },
  11590. ]
  11591. ))
  11592. characterMakers.push(() => makeCharacter(
  11593. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11594. {
  11595. front: {
  11596. height: math.unit(8 + 5 / 12, "feet"),
  11597. weight: math.unit(150, "lb"),
  11598. name: "Front",
  11599. image: {
  11600. source: "./media/characters/keset-vanrel/front.svg",
  11601. extra: 1150 / 1084,
  11602. bottom: 0.05
  11603. }
  11604. },
  11605. hand: {
  11606. height: math.unit(0.6, "meters"),
  11607. name: "Hand",
  11608. image: {
  11609. source: "./media/characters/keset-vanrel/hand.svg"
  11610. }
  11611. },
  11612. foot: {
  11613. height: math.unit(0.94978, "meters"),
  11614. name: "Foot",
  11615. image: {
  11616. source: "./media/characters/keset-vanrel/foot.svg"
  11617. }
  11618. },
  11619. battle: {
  11620. height: math.unit(7.408, "feet"),
  11621. weight: math.unit(150, "lb"),
  11622. name: "Battle",
  11623. image: {
  11624. source: "./media/characters/keset-vanrel/battle.svg",
  11625. extra: 1890 / 1386,
  11626. bottom: 73.28 / 1970
  11627. }
  11628. },
  11629. },
  11630. [
  11631. {
  11632. name: "Normal",
  11633. height: math.unit(8 + 5 / 12, "feet"),
  11634. default: true
  11635. },
  11636. ]
  11637. ))
  11638. characterMakers.push(() => makeCharacter(
  11639. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11640. {
  11641. front: {
  11642. height: math.unit(6, "feet"),
  11643. weight: math.unit(150, "lb"),
  11644. name: "Front",
  11645. image: {
  11646. source: "./media/characters/neos/front.svg",
  11647. extra: 1696 / 992,
  11648. bottom: 0.14
  11649. }
  11650. },
  11651. },
  11652. [
  11653. {
  11654. name: "Normal",
  11655. height: math.unit(54, "cm"),
  11656. default: true
  11657. },
  11658. {
  11659. name: "Macro",
  11660. height: math.unit(100, "m")
  11661. },
  11662. {
  11663. name: "Megamacro",
  11664. height: math.unit(10, "km")
  11665. },
  11666. {
  11667. name: "Megamacro+",
  11668. height: math.unit(100, "km")
  11669. },
  11670. {
  11671. name: "Gigamacro",
  11672. height: math.unit(100, "Mm")
  11673. },
  11674. {
  11675. name: "Teramacro",
  11676. height: math.unit(100, "Gm")
  11677. },
  11678. {
  11679. name: "Examacro",
  11680. height: math.unit(100, "Em")
  11681. },
  11682. {
  11683. name: "Godly",
  11684. height: math.unit(10000, "Ym")
  11685. },
  11686. {
  11687. name: "Beyond Godly",
  11688. height: math.unit(25, "multiverses")
  11689. },
  11690. ]
  11691. ))
  11692. characterMakers.push(() => makeCharacter(
  11693. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11694. {
  11695. feminine: {
  11696. height: math.unit(5, "feet"),
  11697. weight: math.unit(100, "lb"),
  11698. name: "Feminine",
  11699. image: {
  11700. source: "./media/characters/sammy-mouse/feminine.svg",
  11701. extra: 2526 / 2425,
  11702. bottom: 0.123
  11703. }
  11704. },
  11705. masculine: {
  11706. height: math.unit(5, "feet"),
  11707. weight: math.unit(100, "lb"),
  11708. name: "Masculine",
  11709. image: {
  11710. source: "./media/characters/sammy-mouse/masculine.svg",
  11711. extra: 2526 / 2425,
  11712. bottom: 0.123
  11713. }
  11714. },
  11715. },
  11716. [
  11717. {
  11718. name: "Micro",
  11719. height: math.unit(5, "inches")
  11720. },
  11721. {
  11722. name: "Normal",
  11723. height: math.unit(5, "feet"),
  11724. default: true
  11725. },
  11726. {
  11727. name: "Macro",
  11728. height: math.unit(60, "feet")
  11729. },
  11730. ]
  11731. ))
  11732. characterMakers.push(() => makeCharacter(
  11733. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11734. {
  11735. front: {
  11736. height: math.unit(4, "feet"),
  11737. weight: math.unit(50, "lb"),
  11738. name: "Front",
  11739. image: {
  11740. source: "./media/characters/kole/front.svg",
  11741. extra: 1423 / 1303,
  11742. bottom: 0.025
  11743. }
  11744. },
  11745. back: {
  11746. height: math.unit(4, "feet"),
  11747. weight: math.unit(50, "lb"),
  11748. name: "Back",
  11749. image: {
  11750. source: "./media/characters/kole/back.svg",
  11751. extra: 1426 / 1280,
  11752. bottom: 0.02
  11753. }
  11754. },
  11755. },
  11756. [
  11757. {
  11758. name: "Normal",
  11759. height: math.unit(4, "feet"),
  11760. default: true
  11761. },
  11762. ]
  11763. ))
  11764. characterMakers.push(() => makeCharacter(
  11765. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11766. {
  11767. front: {
  11768. height: math.unit(2 + 6 / 12, "feet"),
  11769. weight: math.unit(20, "lb"),
  11770. name: "Front",
  11771. image: {
  11772. source: "./media/characters/rufran/front.svg",
  11773. extra: 2041 / 1839,
  11774. bottom: 0.055
  11775. }
  11776. },
  11777. back: {
  11778. height: math.unit(2 + 6 / 12, "feet"),
  11779. weight: math.unit(20, "lb"),
  11780. name: "Back",
  11781. image: {
  11782. source: "./media/characters/rufran/back.svg",
  11783. extra: 2054 / 1839,
  11784. bottom: 0.01
  11785. }
  11786. },
  11787. hand: {
  11788. height: math.unit(0.2166, "meters"),
  11789. name: "Hand",
  11790. image: {
  11791. source: "./media/characters/rufran/hand.svg"
  11792. }
  11793. },
  11794. foot: {
  11795. height: math.unit(0.185, "meters"),
  11796. name: "Foot",
  11797. image: {
  11798. source: "./media/characters/rufran/foot.svg"
  11799. }
  11800. },
  11801. },
  11802. [
  11803. {
  11804. name: "Micro",
  11805. height: math.unit(1, "inch")
  11806. },
  11807. {
  11808. name: "Normal",
  11809. height: math.unit(2 + 6 / 12, "feet"),
  11810. default: true
  11811. },
  11812. {
  11813. name: "Big",
  11814. height: math.unit(60, "feet")
  11815. },
  11816. {
  11817. name: "Macro",
  11818. height: math.unit(325, "feet")
  11819. },
  11820. ]
  11821. ))
  11822. characterMakers.push(() => makeCharacter(
  11823. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11824. {
  11825. front: {
  11826. height: math.unit(0.3, "meters"),
  11827. weight: math.unit(3.5, "kg"),
  11828. name: "Front",
  11829. image: {
  11830. source: "./media/characters/chip/front.svg",
  11831. extra: 748 / 674
  11832. }
  11833. },
  11834. },
  11835. [
  11836. {
  11837. name: "Micro",
  11838. height: math.unit(1, "inch"),
  11839. default: true
  11840. },
  11841. ]
  11842. ))
  11843. characterMakers.push(() => makeCharacter(
  11844. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11845. {
  11846. side: {
  11847. height: math.unit(2.3, "meters"),
  11848. weight: math.unit(3500, "lb"),
  11849. name: "Side",
  11850. image: {
  11851. source: "./media/characters/torvid/side.svg",
  11852. extra: 1972 / 722,
  11853. bottom: 0.035
  11854. }
  11855. },
  11856. },
  11857. [
  11858. {
  11859. name: "Normal",
  11860. height: math.unit(2.3, "meters"),
  11861. default: true
  11862. },
  11863. ]
  11864. ))
  11865. characterMakers.push(() => makeCharacter(
  11866. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11867. {
  11868. front: {
  11869. height: math.unit(2, "meters"),
  11870. weight: math.unit(150.5, "kg"),
  11871. name: "Front",
  11872. image: {
  11873. source: "./media/characters/susan/front.svg",
  11874. extra: 693 / 635,
  11875. bottom: 0.05
  11876. }
  11877. },
  11878. },
  11879. [
  11880. {
  11881. name: "Megamacro",
  11882. height: math.unit(505, "miles"),
  11883. default: true
  11884. },
  11885. ]
  11886. ))
  11887. characterMakers.push(() => makeCharacter(
  11888. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11889. {
  11890. front: {
  11891. height: math.unit(6, "feet"),
  11892. weight: math.unit(150, "lb"),
  11893. name: "Front",
  11894. image: {
  11895. source: "./media/characters/raindrops/front.svg",
  11896. extra: 2655 / 2461,
  11897. bottom: 49 / 2705
  11898. }
  11899. },
  11900. back: {
  11901. height: math.unit(6, "feet"),
  11902. weight: math.unit(150, "lb"),
  11903. name: "Back",
  11904. image: {
  11905. source: "./media/characters/raindrops/back.svg",
  11906. extra: 2574 / 2400,
  11907. bottom: 65 / 2634
  11908. }
  11909. },
  11910. },
  11911. [
  11912. {
  11913. name: "Micro",
  11914. height: math.unit(6, "inches")
  11915. },
  11916. {
  11917. name: "Normal",
  11918. height: math.unit(6 + 2 / 12, "feet")
  11919. },
  11920. {
  11921. name: "Macro",
  11922. height: math.unit(131, "feet"),
  11923. default: true
  11924. },
  11925. {
  11926. name: "Megamacro",
  11927. height: math.unit(15, "miles")
  11928. },
  11929. {
  11930. name: "Gigamacro",
  11931. height: math.unit(4000, "miles")
  11932. },
  11933. {
  11934. name: "Teramacro",
  11935. height: math.unit(315000, "miles")
  11936. },
  11937. ]
  11938. ))
  11939. characterMakers.push(() => makeCharacter(
  11940. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11941. {
  11942. front: {
  11943. height: math.unit(2.794, "meters"),
  11944. weight: math.unit(325, "kg"),
  11945. name: "Front",
  11946. image: {
  11947. source: "./media/characters/tezwa/front.svg",
  11948. extra: 2083 / 1906,
  11949. bottom: 0.031
  11950. }
  11951. },
  11952. foot: {
  11953. height: math.unit(0.687, "meters"),
  11954. name: "Foot",
  11955. image: {
  11956. source: "./media/characters/tezwa/foot.svg"
  11957. }
  11958. },
  11959. },
  11960. [
  11961. {
  11962. name: "Normal",
  11963. height: math.unit(9 + 2 / 12, "feet"),
  11964. default: true
  11965. },
  11966. ]
  11967. ))
  11968. characterMakers.push(() => makeCharacter(
  11969. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11970. {
  11971. front: {
  11972. height: math.unit(58, "feet"),
  11973. weight: math.unit(89000, "lb"),
  11974. name: "Front",
  11975. image: {
  11976. source: "./media/characters/typhus/front.svg",
  11977. extra: 816 / 800,
  11978. bottom: 0.065
  11979. }
  11980. },
  11981. },
  11982. [
  11983. {
  11984. name: "Macro",
  11985. height: math.unit(58, "feet"),
  11986. default: true
  11987. },
  11988. ]
  11989. ))
  11990. characterMakers.push(() => makeCharacter(
  11991. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11992. {
  11993. front: {
  11994. height: math.unit(12, "feet"),
  11995. weight: math.unit(6, "tonnes"),
  11996. name: "Front",
  11997. image: {
  11998. source: "./media/characters/lyra-von-wulf/front.svg",
  11999. extra: 1,
  12000. bottom: 0.10
  12001. }
  12002. },
  12003. frontMecha: {
  12004. height: math.unit(12, "feet"),
  12005. weight: math.unit(12, "tonnes"),
  12006. name: "Front (Mecha)",
  12007. image: {
  12008. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12009. extra: 1,
  12010. bottom: 0.042
  12011. }
  12012. },
  12013. maw: {
  12014. height: math.unit(2.2, "feet"),
  12015. name: "Maw",
  12016. image: {
  12017. source: "./media/characters/lyra-von-wulf/maw.svg"
  12018. }
  12019. },
  12020. },
  12021. [
  12022. {
  12023. name: "Normal",
  12024. height: math.unit(12, "feet"),
  12025. default: true
  12026. },
  12027. {
  12028. name: "Classic",
  12029. height: math.unit(50, "feet")
  12030. },
  12031. {
  12032. name: "Macro",
  12033. height: math.unit(500, "feet")
  12034. },
  12035. {
  12036. name: "Megamacro",
  12037. height: math.unit(1, "mile")
  12038. },
  12039. {
  12040. name: "Gigamacro",
  12041. height: math.unit(400, "miles")
  12042. },
  12043. {
  12044. name: "Teramacro",
  12045. height: math.unit(22000, "miles")
  12046. },
  12047. {
  12048. name: "Solarmacro",
  12049. height: math.unit(8600000, "miles")
  12050. },
  12051. {
  12052. name: "Galactic",
  12053. height: math.unit(1057000, "lightyears")
  12054. },
  12055. ]
  12056. ))
  12057. characterMakers.push(() => makeCharacter(
  12058. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12059. {
  12060. front: {
  12061. height: math.unit(6 + 10 / 12, "feet"),
  12062. weight: math.unit(150, "lb"),
  12063. name: "Front",
  12064. image: {
  12065. source: "./media/characters/dixon/front.svg",
  12066. extra: 3361 / 3209,
  12067. bottom: 0.01
  12068. }
  12069. },
  12070. },
  12071. [
  12072. {
  12073. name: "Normal",
  12074. height: math.unit(6 + 10 / 12, "feet"),
  12075. default: true
  12076. },
  12077. {
  12078. name: "Big",
  12079. height: math.unit(12, "meters")
  12080. },
  12081. {
  12082. name: "Macro",
  12083. height: math.unit(500, "meters")
  12084. },
  12085. {
  12086. name: "Megamacro",
  12087. height: math.unit(2, "km")
  12088. },
  12089. ]
  12090. ))
  12091. characterMakers.push(() => makeCharacter(
  12092. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12093. {
  12094. front: {
  12095. height: math.unit(185, "cm"),
  12096. weight: math.unit(68, "kg"),
  12097. name: "Front",
  12098. image: {
  12099. source: "./media/characters/kauko/front.svg",
  12100. extra: 1455 / 1421,
  12101. bottom: 0.03
  12102. }
  12103. },
  12104. back: {
  12105. height: math.unit(185, "cm"),
  12106. weight: math.unit(68, "kg"),
  12107. name: "Back",
  12108. image: {
  12109. source: "./media/characters/kauko/back.svg",
  12110. extra: 1455 / 1421,
  12111. bottom: 0.004
  12112. }
  12113. },
  12114. },
  12115. [
  12116. {
  12117. name: "Normal",
  12118. height: math.unit(185, "cm"),
  12119. default: true
  12120. },
  12121. ]
  12122. ))
  12123. characterMakers.push(() => makeCharacter(
  12124. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12125. {
  12126. front: {
  12127. height: math.unit(6, "feet"),
  12128. weight: math.unit(150, "kg"),
  12129. name: "Front",
  12130. image: {
  12131. source: "./media/characters/varg/front.svg",
  12132. extra: 1108 / 1018,
  12133. bottom: 0.0375
  12134. }
  12135. },
  12136. },
  12137. [
  12138. {
  12139. name: "Normal",
  12140. height: math.unit(5, "meters")
  12141. },
  12142. {
  12143. name: "Macro",
  12144. height: math.unit(200, "meters")
  12145. },
  12146. {
  12147. name: "Megamacro",
  12148. height: math.unit(20, "kilometers")
  12149. },
  12150. {
  12151. name: "True Size",
  12152. height: math.unit(211, "km"),
  12153. default: true
  12154. },
  12155. {
  12156. name: "Gigamacro",
  12157. height: math.unit(1000, "km")
  12158. },
  12159. {
  12160. name: "Gigamacro+",
  12161. height: math.unit(8000, "km")
  12162. },
  12163. {
  12164. name: "Teramacro",
  12165. height: math.unit(1000000, "km")
  12166. },
  12167. ]
  12168. ))
  12169. characterMakers.push(() => makeCharacter(
  12170. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12171. {
  12172. front: {
  12173. height: math.unit(7 + 7 / 12, "feet"),
  12174. weight: math.unit(267, "lb"),
  12175. name: "Front",
  12176. image: {
  12177. source: "./media/characters/dayza/front.svg",
  12178. extra: 1262 / 1200,
  12179. bottom: 0.035
  12180. }
  12181. },
  12182. side: {
  12183. height: math.unit(7 + 7 / 12, "feet"),
  12184. weight: math.unit(267, "lb"),
  12185. name: "Side",
  12186. image: {
  12187. source: "./media/characters/dayza/side.svg",
  12188. extra: 1295 / 1245,
  12189. bottom: 0.05
  12190. }
  12191. },
  12192. back: {
  12193. height: math.unit(7 + 7 / 12, "feet"),
  12194. weight: math.unit(267, "lb"),
  12195. name: "Back",
  12196. image: {
  12197. source: "./media/characters/dayza/back.svg",
  12198. extra: 1241 / 1170
  12199. }
  12200. },
  12201. },
  12202. [
  12203. {
  12204. name: "Normal",
  12205. height: math.unit(7 + 7 / 12, "feet"),
  12206. default: true
  12207. },
  12208. {
  12209. name: "Macro",
  12210. height: math.unit(155, "feet")
  12211. },
  12212. ]
  12213. ))
  12214. characterMakers.push(() => makeCharacter(
  12215. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12216. {
  12217. front: {
  12218. height: math.unit(6 + 5 / 12, "feet"),
  12219. weight: math.unit(160, "lb"),
  12220. name: "Front",
  12221. image: {
  12222. source: "./media/characters/xanthos/front.svg",
  12223. extra: 1,
  12224. bottom: 0.04
  12225. }
  12226. },
  12227. back: {
  12228. height: math.unit(6 + 5 / 12, "feet"),
  12229. weight: math.unit(160, "lb"),
  12230. name: "Back",
  12231. image: {
  12232. source: "./media/characters/xanthos/back.svg",
  12233. extra: 1,
  12234. bottom: 0.03
  12235. }
  12236. },
  12237. hand: {
  12238. height: math.unit(0.928, "feet"),
  12239. name: "Hand",
  12240. image: {
  12241. source: "./media/characters/xanthos/hand.svg"
  12242. }
  12243. },
  12244. foot: {
  12245. height: math.unit(1.286, "feet"),
  12246. name: "Foot",
  12247. image: {
  12248. source: "./media/characters/xanthos/foot.svg"
  12249. }
  12250. },
  12251. },
  12252. [
  12253. {
  12254. name: "Normal",
  12255. height: math.unit(6 + 5 / 12, "feet"),
  12256. default: true
  12257. },
  12258. {
  12259. name: "Normal+",
  12260. height: math.unit(6, "meters")
  12261. },
  12262. {
  12263. name: "Macro",
  12264. height: math.unit(40, "feet")
  12265. },
  12266. {
  12267. name: "Macro+",
  12268. height: math.unit(200, "meters")
  12269. },
  12270. {
  12271. name: "Megamacro",
  12272. height: math.unit(20, "km")
  12273. },
  12274. {
  12275. name: "Megamacro+",
  12276. height: math.unit(100, "km")
  12277. },
  12278. ]
  12279. ))
  12280. characterMakers.push(() => makeCharacter(
  12281. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12282. {
  12283. front: {
  12284. height: math.unit(6 + 3 / 12, "feet"),
  12285. weight: math.unit(215, "lb"),
  12286. name: "Front",
  12287. image: {
  12288. source: "./media/characters/grynn/front.svg",
  12289. extra: 4627 / 4209,
  12290. bottom: 0.047
  12291. }
  12292. },
  12293. },
  12294. [
  12295. {
  12296. name: "Micro",
  12297. height: math.unit(6, "inches")
  12298. },
  12299. {
  12300. name: "Normal",
  12301. height: math.unit(6 + 3 / 12, "feet"),
  12302. default: true
  12303. },
  12304. {
  12305. name: "Big",
  12306. height: math.unit(104, "feet")
  12307. },
  12308. {
  12309. name: "Macro",
  12310. height: math.unit(944, "feet")
  12311. },
  12312. {
  12313. name: "Macro+",
  12314. height: math.unit(9480, "feet")
  12315. },
  12316. {
  12317. name: "Megamacro",
  12318. height: math.unit(78752, "feet")
  12319. },
  12320. {
  12321. name: "Megamacro+",
  12322. height: math.unit(630128, "feet")
  12323. },
  12324. {
  12325. name: "Megamacro++",
  12326. height: math.unit(3150695, "feet")
  12327. },
  12328. ]
  12329. ))
  12330. characterMakers.push(() => makeCharacter(
  12331. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12332. {
  12333. front: {
  12334. height: math.unit(7 + 5 / 12, "feet"),
  12335. weight: math.unit(450, "lb"),
  12336. name: "Front",
  12337. image: {
  12338. source: "./media/characters/mocha-aura/front.svg",
  12339. extra: 1907 / 1817,
  12340. bottom: 0.04
  12341. }
  12342. },
  12343. back: {
  12344. height: math.unit(7 + 5 / 12, "feet"),
  12345. weight: math.unit(450, "lb"),
  12346. name: "Back",
  12347. image: {
  12348. source: "./media/characters/mocha-aura/back.svg",
  12349. extra: 1900 / 1825,
  12350. bottom: 0.045
  12351. }
  12352. },
  12353. },
  12354. [
  12355. {
  12356. name: "Nano",
  12357. height: math.unit(1, "nm")
  12358. },
  12359. {
  12360. name: "Megamicro",
  12361. height: math.unit(1, "mm")
  12362. },
  12363. {
  12364. name: "Micro",
  12365. height: math.unit(3, "inches")
  12366. },
  12367. {
  12368. name: "Normal",
  12369. height: math.unit(7 + 5 / 12, "feet"),
  12370. default: true
  12371. },
  12372. {
  12373. name: "Macro",
  12374. height: math.unit(30, "feet")
  12375. },
  12376. {
  12377. name: "Megamacro",
  12378. height: math.unit(3500, "feet")
  12379. },
  12380. {
  12381. name: "Teramacro",
  12382. height: math.unit(500000, "miles")
  12383. },
  12384. {
  12385. name: "Petamacro",
  12386. height: math.unit(50000000000000000, "parsecs")
  12387. },
  12388. ]
  12389. ))
  12390. characterMakers.push(() => makeCharacter(
  12391. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12392. {
  12393. front: {
  12394. height: math.unit(6, "feet"),
  12395. weight: math.unit(150, "lb"),
  12396. name: "Front",
  12397. image: {
  12398. source: "./media/characters/ilisha-devya/front.svg",
  12399. extra: 1,
  12400. bottom: 0.175
  12401. }
  12402. },
  12403. back: {
  12404. height: math.unit(6, "feet"),
  12405. weight: math.unit(150, "lb"),
  12406. name: "Back",
  12407. image: {
  12408. source: "./media/characters/ilisha-devya/back.svg",
  12409. extra: 1,
  12410. bottom: 0.015
  12411. }
  12412. },
  12413. },
  12414. [
  12415. {
  12416. name: "Macro",
  12417. height: math.unit(500, "feet"),
  12418. default: true
  12419. },
  12420. {
  12421. name: "Megamacro",
  12422. height: math.unit(10, "miles")
  12423. },
  12424. {
  12425. name: "Gigamacro",
  12426. height: math.unit(100000, "miles")
  12427. },
  12428. {
  12429. name: "Examacro",
  12430. height: math.unit(1e9, "lightyears")
  12431. },
  12432. {
  12433. name: "Omniversal",
  12434. height: math.unit(1e33, "lightyears")
  12435. },
  12436. {
  12437. name: "Beyond Infinite",
  12438. height: math.unit(1e100, "lightyears")
  12439. },
  12440. ]
  12441. ))
  12442. characterMakers.push(() => makeCharacter(
  12443. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12444. {
  12445. Side: {
  12446. height: math.unit(6, "feet"),
  12447. weight: math.unit(150, "lb"),
  12448. name: "Side",
  12449. image: {
  12450. source: "./media/characters/mira/side.svg",
  12451. extra: 900 / 799,
  12452. bottom: 0.02
  12453. }
  12454. },
  12455. },
  12456. [
  12457. {
  12458. name: "Human Size",
  12459. height: math.unit(6, "feet")
  12460. },
  12461. {
  12462. name: "Macro",
  12463. height: math.unit(100, "feet"),
  12464. default: true
  12465. },
  12466. {
  12467. name: "Megamacro",
  12468. height: math.unit(10, "miles")
  12469. },
  12470. {
  12471. name: "Gigamacro",
  12472. height: math.unit(25000, "miles")
  12473. },
  12474. {
  12475. name: "Teramacro",
  12476. height: math.unit(300, "AU")
  12477. },
  12478. {
  12479. name: "Full Size",
  12480. height: math.unit(4.5e10, "lightyears")
  12481. },
  12482. ]
  12483. ))
  12484. characterMakers.push(() => makeCharacter(
  12485. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12486. {
  12487. front: {
  12488. height: math.unit(6, "feet"),
  12489. weight: math.unit(150, "lb"),
  12490. name: "Front",
  12491. image: {
  12492. source: "./media/characters/holly/front.svg",
  12493. extra: 639 / 606
  12494. }
  12495. },
  12496. back: {
  12497. height: math.unit(6, "feet"),
  12498. weight: math.unit(150, "lb"),
  12499. name: "Back",
  12500. image: {
  12501. source: "./media/characters/holly/back.svg",
  12502. extra: 623 / 598
  12503. }
  12504. },
  12505. frontWorking: {
  12506. height: math.unit(6, "feet"),
  12507. weight: math.unit(150, "lb"),
  12508. name: "Front (Working)",
  12509. image: {
  12510. source: "./media/characters/holly/front-working.svg",
  12511. extra: 607 / 577,
  12512. bottom: 0.048
  12513. }
  12514. },
  12515. },
  12516. [
  12517. {
  12518. name: "Normal",
  12519. height: math.unit(12 + 3 / 12, "feet"),
  12520. default: true
  12521. },
  12522. ]
  12523. ))
  12524. characterMakers.push(() => makeCharacter(
  12525. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12526. {
  12527. front: {
  12528. height: math.unit(6, "feet"),
  12529. weight: math.unit(150, "lb"),
  12530. name: "Front",
  12531. image: {
  12532. source: "./media/characters/porter/front.svg",
  12533. extra: 1,
  12534. bottom: 0.01
  12535. }
  12536. },
  12537. frontRobes: {
  12538. height: math.unit(6, "feet"),
  12539. weight: math.unit(150, "lb"),
  12540. name: "Front (Robes)",
  12541. image: {
  12542. source: "./media/characters/porter/front-robes.svg",
  12543. extra: 1.01,
  12544. bottom: 0.01
  12545. }
  12546. },
  12547. },
  12548. [
  12549. {
  12550. name: "Normal",
  12551. height: math.unit(11 + 9 / 12, "feet"),
  12552. default: true
  12553. },
  12554. ]
  12555. ))
  12556. characterMakers.push(() => makeCharacter(
  12557. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12558. {
  12559. legendary: {
  12560. height: math.unit(6, "feet"),
  12561. weight: math.unit(150, "lb"),
  12562. name: "Legendary",
  12563. image: {
  12564. source: "./media/characters/lucy/legendary.svg",
  12565. extra: 1355 / 1100,
  12566. bottom: 0.045
  12567. }
  12568. },
  12569. },
  12570. [
  12571. {
  12572. name: "Legendary",
  12573. height: math.unit(86882 * 2, "miles"),
  12574. default: true
  12575. },
  12576. ]
  12577. ))
  12578. characterMakers.push(() => makeCharacter(
  12579. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12580. {
  12581. front: {
  12582. height: math.unit(6, "feet"),
  12583. weight: math.unit(150, "lb"),
  12584. name: "Front",
  12585. image: {
  12586. source: "./media/characters/drusilla/front.svg",
  12587. extra: 678 / 635,
  12588. bottom: 0.03
  12589. }
  12590. },
  12591. back: {
  12592. height: math.unit(6, "feet"),
  12593. weight: math.unit(150, "lb"),
  12594. name: "Back",
  12595. image: {
  12596. source: "./media/characters/drusilla/back.svg",
  12597. extra: 678 / 635,
  12598. bottom: 0.005
  12599. }
  12600. },
  12601. },
  12602. [
  12603. {
  12604. name: "Macro",
  12605. height: math.unit(100, "feet")
  12606. },
  12607. {
  12608. name: "Canon Height",
  12609. height: math.unit(2000, "feet"),
  12610. default: true
  12611. },
  12612. ]
  12613. ))
  12614. characterMakers.push(() => makeCharacter(
  12615. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12616. {
  12617. front: {
  12618. height: math.unit(6, "feet"),
  12619. weight: math.unit(180, "lb"),
  12620. name: "Front",
  12621. image: {
  12622. source: "./media/characters/renard-thatch/front.svg",
  12623. extra: 2411 / 2275,
  12624. bottom: 0.01
  12625. }
  12626. },
  12627. frontPosing: {
  12628. height: math.unit(6, "feet"),
  12629. weight: math.unit(180, "lb"),
  12630. name: "Front (Posing)",
  12631. image: {
  12632. source: "./media/characters/renard-thatch/front-posing.svg",
  12633. extra: 2381 / 2261,
  12634. bottom: 0.01
  12635. }
  12636. },
  12637. back: {
  12638. height: math.unit(6, "feet"),
  12639. weight: math.unit(180, "lb"),
  12640. name: "Back",
  12641. image: {
  12642. source: "./media/characters/renard-thatch/back.svg",
  12643. extra: 2428 / 2288
  12644. }
  12645. },
  12646. },
  12647. [
  12648. {
  12649. name: "Micro",
  12650. height: math.unit(3, "inches")
  12651. },
  12652. {
  12653. name: "Default",
  12654. height: math.unit(6, "feet"),
  12655. default: true
  12656. },
  12657. {
  12658. name: "Macro",
  12659. height: math.unit(75, "feet")
  12660. },
  12661. ]
  12662. ))
  12663. characterMakers.push(() => makeCharacter(
  12664. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12665. {
  12666. front: {
  12667. height: math.unit(1450, "feet"),
  12668. weight: math.unit(1.21e6, "tons"),
  12669. name: "Front",
  12670. image: {
  12671. source: "./media/characters/sekvra/front.svg",
  12672. extra: 1,
  12673. bottom: 0.03
  12674. }
  12675. },
  12676. frontClothed: {
  12677. height: math.unit(1450, "feet"),
  12678. weight: math.unit(1.21e6, "tons"),
  12679. name: "Front (Clothed)",
  12680. image: {
  12681. source: "./media/characters/sekvra/front-clothed.svg",
  12682. extra: 1,
  12683. bottom: 0.03
  12684. }
  12685. },
  12686. side: {
  12687. height: math.unit(1450, "feet"),
  12688. weight: math.unit(1.21e6, "tons"),
  12689. name: "Side",
  12690. image: {
  12691. source: "./media/characters/sekvra/side.svg",
  12692. extra: 1,
  12693. bottom: 0.025
  12694. }
  12695. },
  12696. back: {
  12697. height: math.unit(1450, "feet"),
  12698. weight: math.unit(1.21e6, "tons"),
  12699. name: "Back",
  12700. image: {
  12701. source: "./media/characters/sekvra/back.svg",
  12702. extra: 1,
  12703. bottom: 0.005
  12704. }
  12705. },
  12706. },
  12707. [
  12708. {
  12709. name: "Macro",
  12710. height: math.unit(1450, "feet"),
  12711. default: true
  12712. },
  12713. {
  12714. name: "Megamacro",
  12715. height: math.unit(15000, "feet")
  12716. },
  12717. ]
  12718. ))
  12719. characterMakers.push(() => makeCharacter(
  12720. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12721. {
  12722. front: {
  12723. height: math.unit(6, "feet"),
  12724. weight: math.unit(150, "lb"),
  12725. name: "Front",
  12726. image: {
  12727. source: "./media/characters/carmine/front.svg",
  12728. extra: 1,
  12729. bottom: 0.035
  12730. }
  12731. },
  12732. frontArmor: {
  12733. height: math.unit(6, "feet"),
  12734. weight: math.unit(150, "lb"),
  12735. name: "Front (Armor)",
  12736. image: {
  12737. source: "./media/characters/carmine/front-armor.svg",
  12738. extra: 1,
  12739. bottom: 0.035
  12740. }
  12741. },
  12742. },
  12743. [
  12744. {
  12745. name: "Large",
  12746. height: math.unit(1, "mile")
  12747. },
  12748. {
  12749. name: "Huge",
  12750. height: math.unit(40, "miles"),
  12751. default: true
  12752. },
  12753. {
  12754. name: "Colossal",
  12755. height: math.unit(2500, "miles")
  12756. },
  12757. ]
  12758. ))
  12759. characterMakers.push(() => makeCharacter(
  12760. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12761. {
  12762. front: {
  12763. height: math.unit(6, "feet"),
  12764. weight: math.unit(150, "lb"),
  12765. name: "Front",
  12766. image: {
  12767. source: "./media/characters/elyssia/front.svg",
  12768. extra: 2201 / 2035,
  12769. bottom: 0.05
  12770. }
  12771. },
  12772. frontClothed: {
  12773. height: math.unit(6, "feet"),
  12774. weight: math.unit(150, "lb"),
  12775. name: "Front (Clothed)",
  12776. image: {
  12777. source: "./media/characters/elyssia/front-clothed.svg",
  12778. extra: 2201 / 2035,
  12779. bottom: 0.05
  12780. }
  12781. },
  12782. back: {
  12783. height: math.unit(6, "feet"),
  12784. weight: math.unit(150, "lb"),
  12785. name: "Back",
  12786. image: {
  12787. source: "./media/characters/elyssia/back.svg",
  12788. extra: 2201 / 2035,
  12789. bottom: 0.013
  12790. }
  12791. },
  12792. },
  12793. [
  12794. {
  12795. name: "Smaller",
  12796. height: math.unit(150, "feet")
  12797. },
  12798. {
  12799. name: "Standard",
  12800. height: math.unit(1400, "feet"),
  12801. default: true
  12802. },
  12803. {
  12804. name: "Distracted",
  12805. height: math.unit(15000, "feet")
  12806. },
  12807. ]
  12808. ))
  12809. characterMakers.push(() => makeCharacter(
  12810. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12811. {
  12812. front: {
  12813. height: math.unit(7 + 4 / 12, "feet"),
  12814. weight: math.unit(500, "lb"),
  12815. name: "Front",
  12816. image: {
  12817. source: "./media/characters/geno-maxwell/front.svg",
  12818. extra: 2207 / 2040,
  12819. bottom: 0.015
  12820. }
  12821. },
  12822. },
  12823. [
  12824. {
  12825. name: "Micro",
  12826. height: math.unit(3, "inches")
  12827. },
  12828. {
  12829. name: "Normal",
  12830. height: math.unit(7 + 4 / 12, "feet"),
  12831. default: true
  12832. },
  12833. {
  12834. name: "Macro",
  12835. height: math.unit(220, "feet")
  12836. },
  12837. {
  12838. name: "Megamacro",
  12839. height: math.unit(11, "miles")
  12840. },
  12841. ]
  12842. ))
  12843. characterMakers.push(() => makeCharacter(
  12844. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12845. {
  12846. front: {
  12847. height: math.unit(7 + 4 / 12, "feet"),
  12848. weight: math.unit(500, "lb"),
  12849. name: "Front",
  12850. image: {
  12851. source: "./media/characters/regena-maxwell/front.svg",
  12852. extra: 3115 / 2770,
  12853. bottom: 0.02
  12854. }
  12855. },
  12856. },
  12857. [
  12858. {
  12859. name: "Normal",
  12860. height: math.unit(7 + 4 / 12, "feet"),
  12861. default: true
  12862. },
  12863. {
  12864. name: "Macro",
  12865. height: math.unit(220, "feet")
  12866. },
  12867. {
  12868. name: "Megamacro",
  12869. height: math.unit(11, "miles")
  12870. },
  12871. ]
  12872. ))
  12873. characterMakers.push(() => makeCharacter(
  12874. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12875. {
  12876. front: {
  12877. height: math.unit(6, "feet"),
  12878. weight: math.unit(150, "lb"),
  12879. name: "Front",
  12880. image: {
  12881. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12882. extra: 860 / 690,
  12883. bottom: 0.03
  12884. }
  12885. },
  12886. },
  12887. [
  12888. {
  12889. name: "Normal",
  12890. height: math.unit(1.7, "meters"),
  12891. default: true
  12892. },
  12893. ]
  12894. ))
  12895. characterMakers.push(() => makeCharacter(
  12896. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12897. {
  12898. front: {
  12899. height: math.unit(6, "feet"),
  12900. weight: math.unit(150, "lb"),
  12901. name: "Front",
  12902. image: {
  12903. source: "./media/characters/quilly/front.svg",
  12904. extra: 890 / 776
  12905. }
  12906. },
  12907. },
  12908. [
  12909. {
  12910. name: "Gigamacro",
  12911. height: math.unit(404090, "miles"),
  12912. default: true
  12913. },
  12914. ]
  12915. ))
  12916. characterMakers.push(() => makeCharacter(
  12917. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12918. {
  12919. front: {
  12920. height: math.unit(7 + 8 / 12, "feet"),
  12921. weight: math.unit(350, "lb"),
  12922. name: "Front",
  12923. image: {
  12924. source: "./media/characters/tempest/front.svg",
  12925. extra: 1175 / 1086,
  12926. bottom: 0.02
  12927. }
  12928. },
  12929. },
  12930. [
  12931. {
  12932. name: "Normal",
  12933. height: math.unit(7 + 8 / 12, "feet"),
  12934. default: true
  12935. },
  12936. ]
  12937. ))
  12938. characterMakers.push(() => makeCharacter(
  12939. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12940. {
  12941. side: {
  12942. height: math.unit(4 + 5 / 12, "feet"),
  12943. weight: math.unit(80, "lb"),
  12944. name: "Side",
  12945. image: {
  12946. source: "./media/characters/rodger/side.svg",
  12947. extra: 1235 / 1118
  12948. }
  12949. },
  12950. },
  12951. [
  12952. {
  12953. name: "Micro",
  12954. height: math.unit(1, "inch")
  12955. },
  12956. {
  12957. name: "Normal",
  12958. height: math.unit(4 + 5 / 12, "feet"),
  12959. default: true
  12960. },
  12961. {
  12962. name: "Macro",
  12963. height: math.unit(120, "feet")
  12964. },
  12965. ]
  12966. ))
  12967. characterMakers.push(() => makeCharacter(
  12968. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12969. {
  12970. front: {
  12971. height: math.unit(6, "feet"),
  12972. weight: math.unit(150, "lb"),
  12973. name: "Front",
  12974. image: {
  12975. source: "./media/characters/danyel/front.svg",
  12976. extra: 1185 / 1123,
  12977. bottom: 0.05
  12978. }
  12979. },
  12980. },
  12981. [
  12982. {
  12983. name: "Shrunken",
  12984. height: math.unit(0.5, "mm")
  12985. },
  12986. {
  12987. name: "Micro",
  12988. height: math.unit(1, "mm"),
  12989. default: true
  12990. },
  12991. {
  12992. name: "Upsized",
  12993. height: math.unit(5 + 5 / 12, "feet")
  12994. },
  12995. ]
  12996. ))
  12997. characterMakers.push(() => makeCharacter(
  12998. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12999. {
  13000. front: {
  13001. height: math.unit(5 + 6 / 12, "feet"),
  13002. weight: math.unit(200, "lb"),
  13003. name: "Front",
  13004. image: {
  13005. source: "./media/characters/vivian-bijoux/front.svg",
  13006. extra: 1,
  13007. bottom: 0.072
  13008. }
  13009. },
  13010. },
  13011. [
  13012. {
  13013. name: "Normal",
  13014. height: math.unit(5 + 6 / 12, "feet"),
  13015. default: true
  13016. },
  13017. {
  13018. name: "Bad Dream",
  13019. height: math.unit(500, "feet")
  13020. },
  13021. {
  13022. name: "Nightmare",
  13023. height: math.unit(500, "miles")
  13024. },
  13025. ]
  13026. ))
  13027. characterMakers.push(() => makeCharacter(
  13028. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13029. {
  13030. front: {
  13031. height: math.unit(6 + 1 / 12, "feet"),
  13032. weight: math.unit(260, "lb"),
  13033. name: "Front",
  13034. image: {
  13035. source: "./media/characters/zeta/front.svg",
  13036. extra: 1968 / 1889,
  13037. bottom: 0.06
  13038. }
  13039. },
  13040. back: {
  13041. height: math.unit(6 + 1 / 12, "feet"),
  13042. weight: math.unit(260, "lb"),
  13043. name: "Back",
  13044. image: {
  13045. source: "./media/characters/zeta/back.svg",
  13046. extra: 1944 / 1858,
  13047. bottom: 0.03
  13048. }
  13049. },
  13050. hand: {
  13051. height: math.unit(1.112, "feet"),
  13052. name: "Hand",
  13053. image: {
  13054. source: "./media/characters/zeta/hand.svg"
  13055. }
  13056. },
  13057. foot: {
  13058. height: math.unit(1.48, "feet"),
  13059. name: "Foot",
  13060. image: {
  13061. source: "./media/characters/zeta/foot.svg"
  13062. }
  13063. },
  13064. },
  13065. [
  13066. {
  13067. name: "Micro",
  13068. height: math.unit(6, "inches")
  13069. },
  13070. {
  13071. name: "Normal",
  13072. height: math.unit(6 + 1 / 12, "feet"),
  13073. default: true
  13074. },
  13075. {
  13076. name: "Macro",
  13077. height: math.unit(20, "feet")
  13078. },
  13079. ]
  13080. ))
  13081. characterMakers.push(() => makeCharacter(
  13082. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13083. {
  13084. front: {
  13085. height: math.unit(6, "feet"),
  13086. weight: math.unit(150, "lb"),
  13087. name: "Front",
  13088. image: {
  13089. source: "./media/characters/jamie-larsen/front.svg",
  13090. extra: 962 / 933,
  13091. bottom: 0.02
  13092. }
  13093. },
  13094. back: {
  13095. height: math.unit(6, "feet"),
  13096. weight: math.unit(150, "lb"),
  13097. name: "Back",
  13098. image: {
  13099. source: "./media/characters/jamie-larsen/back.svg",
  13100. extra: 997 / 946
  13101. }
  13102. },
  13103. },
  13104. [
  13105. {
  13106. name: "Macro",
  13107. height: math.unit(28 + 7 / 12, "feet"),
  13108. default: true
  13109. },
  13110. {
  13111. name: "Macro+",
  13112. height: math.unit(180, "feet")
  13113. },
  13114. {
  13115. name: "Megamacro",
  13116. height: math.unit(10, "miles")
  13117. },
  13118. {
  13119. name: "Gigamacro",
  13120. height: math.unit(200000, "miles")
  13121. },
  13122. ]
  13123. ))
  13124. characterMakers.push(() => makeCharacter(
  13125. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13126. {
  13127. front: {
  13128. height: math.unit(6, "feet"),
  13129. weight: math.unit(120, "lb"),
  13130. name: "Front",
  13131. image: {
  13132. source: "./media/characters/vance/front.svg",
  13133. extra: 1980 / 1890,
  13134. bottom: 0.09
  13135. }
  13136. },
  13137. back: {
  13138. height: math.unit(6, "feet"),
  13139. weight: math.unit(120, "lb"),
  13140. name: "Back",
  13141. image: {
  13142. source: "./media/characters/vance/back.svg",
  13143. extra: 2081 / 1994,
  13144. bottom: 0.014
  13145. }
  13146. },
  13147. hand: {
  13148. height: math.unit(0.88, "feet"),
  13149. name: "Hand",
  13150. image: {
  13151. source: "./media/characters/vance/hand.svg"
  13152. }
  13153. },
  13154. foot: {
  13155. height: math.unit(0.64, "feet"),
  13156. name: "Foot",
  13157. image: {
  13158. source: "./media/characters/vance/foot.svg"
  13159. }
  13160. },
  13161. },
  13162. [
  13163. {
  13164. name: "Small",
  13165. height: math.unit(90, "feet"),
  13166. default: true
  13167. },
  13168. {
  13169. name: "Macro",
  13170. height: math.unit(100, "meters")
  13171. },
  13172. {
  13173. name: "Megamacro",
  13174. height: math.unit(15, "miles")
  13175. },
  13176. ]
  13177. ))
  13178. characterMakers.push(() => makeCharacter(
  13179. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13180. {
  13181. front: {
  13182. height: math.unit(6, "feet"),
  13183. weight: math.unit(180, "lb"),
  13184. name: "Front",
  13185. image: {
  13186. source: "./media/characters/xochitl/front.svg",
  13187. extra: 2297 / 2261,
  13188. bottom: 0.065
  13189. }
  13190. },
  13191. back: {
  13192. height: math.unit(6, "feet"),
  13193. weight: math.unit(180, "lb"),
  13194. name: "Back",
  13195. image: {
  13196. source: "./media/characters/xochitl/back.svg",
  13197. extra: 2386 / 2354,
  13198. bottom: 0.01
  13199. }
  13200. },
  13201. foot: {
  13202. height: math.unit(6 / 5 * 1.15, "feet"),
  13203. weight: math.unit(150, "lb"),
  13204. name: "Foot",
  13205. image: {
  13206. source: "./media/characters/xochitl/foot.svg"
  13207. }
  13208. },
  13209. },
  13210. [
  13211. {
  13212. name: "Macro",
  13213. height: math.unit(80, "feet")
  13214. },
  13215. {
  13216. name: "Macro+",
  13217. height: math.unit(400, "feet"),
  13218. default: true
  13219. },
  13220. {
  13221. name: "Gigamacro",
  13222. height: math.unit(80000, "miles")
  13223. },
  13224. {
  13225. name: "Gigamacro+",
  13226. height: math.unit(400000, "miles")
  13227. },
  13228. {
  13229. name: "Teramacro",
  13230. height: math.unit(300, "AU")
  13231. },
  13232. ]
  13233. ))
  13234. characterMakers.push(() => makeCharacter(
  13235. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13236. {
  13237. front: {
  13238. height: math.unit(6, "feet"),
  13239. weight: math.unit(150, "lb"),
  13240. name: "Front",
  13241. image: {
  13242. source: "./media/characters/vincent/front.svg",
  13243. extra: 1130 / 1080,
  13244. bottom: 0.055
  13245. }
  13246. },
  13247. beak: {
  13248. height: math.unit(6 * 0.1, "feet"),
  13249. name: "Beak",
  13250. image: {
  13251. source: "./media/characters/vincent/beak.svg"
  13252. }
  13253. },
  13254. hand: {
  13255. height: math.unit(6 * 0.85, "feet"),
  13256. weight: math.unit(150, "lb"),
  13257. name: "Hand",
  13258. image: {
  13259. source: "./media/characters/vincent/hand.svg"
  13260. }
  13261. },
  13262. foot: {
  13263. height: math.unit(6 * 0.19, "feet"),
  13264. weight: math.unit(150, "lb"),
  13265. name: "Foot",
  13266. image: {
  13267. source: "./media/characters/vincent/foot.svg"
  13268. }
  13269. },
  13270. },
  13271. [
  13272. {
  13273. name: "Base",
  13274. height: math.unit(6 + 5 / 12, "feet"),
  13275. default: true
  13276. },
  13277. {
  13278. name: "Macro",
  13279. height: math.unit(300, "feet")
  13280. },
  13281. {
  13282. name: "Megamacro",
  13283. height: math.unit(2, "miles")
  13284. },
  13285. {
  13286. name: "Gigamacro",
  13287. height: math.unit(1000, "miles")
  13288. },
  13289. ]
  13290. ))
  13291. characterMakers.push(() => makeCharacter(
  13292. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  13293. {
  13294. front: {
  13295. height: math.unit(6 + 2 / 12, "feet"),
  13296. weight: math.unit(265, "lb"),
  13297. name: "Front",
  13298. image: {
  13299. source: "./media/characters/jay/front.svg",
  13300. extra: 1510 / 1430,
  13301. bottom: 0.042
  13302. }
  13303. },
  13304. back: {
  13305. height: math.unit(6 + 2 / 12, "feet"),
  13306. weight: math.unit(265, "lb"),
  13307. name: "Back",
  13308. image: {
  13309. source: "./media/characters/jay/back.svg",
  13310. extra: 1510 / 1430,
  13311. bottom: 0.025
  13312. }
  13313. },
  13314. clothed: {
  13315. height: math.unit(6 + 2 / 12, "feet"),
  13316. weight: math.unit(265, "lb"),
  13317. name: "Front (Clothed)",
  13318. image: {
  13319. source: "./media/characters/jay/clothed.svg",
  13320. extra: 744 / 699,
  13321. bottom: 0.043
  13322. }
  13323. },
  13324. head: {
  13325. height: math.unit(1.772, "feet"),
  13326. name: "Head",
  13327. image: {
  13328. source: "./media/characters/jay/head.svg"
  13329. }
  13330. },
  13331. sizeRay: {
  13332. height: math.unit(1.331, "feet"),
  13333. name: "Size Ray",
  13334. image: {
  13335. source: "./media/characters/jay/size-ray.svg"
  13336. }
  13337. },
  13338. },
  13339. [
  13340. {
  13341. name: "Micro",
  13342. height: math.unit(1, "inch")
  13343. },
  13344. {
  13345. name: "Normal",
  13346. height: math.unit(6 + 2 / 12, "feet"),
  13347. default: true
  13348. },
  13349. {
  13350. name: "Macro",
  13351. height: math.unit(1, "mile")
  13352. },
  13353. {
  13354. name: "Megamacro",
  13355. height: math.unit(100, "miles")
  13356. },
  13357. ]
  13358. ))
  13359. characterMakers.push(() => makeCharacter(
  13360. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13361. {
  13362. front: {
  13363. height: math.unit(2, "meters"),
  13364. weight: math.unit(500, "kg"),
  13365. name: "Front",
  13366. image: {
  13367. source: "./media/characters/coatl/front.svg",
  13368. extra: 3948 / 3500,
  13369. bottom: 0.082
  13370. }
  13371. },
  13372. },
  13373. [
  13374. {
  13375. name: "Normal",
  13376. height: math.unit(4, "meters")
  13377. },
  13378. {
  13379. name: "Macro",
  13380. height: math.unit(100, "meters"),
  13381. default: true
  13382. },
  13383. {
  13384. name: "Macro+",
  13385. height: math.unit(300, "meters")
  13386. },
  13387. {
  13388. name: "Megamacro",
  13389. height: math.unit(3, "gigameters")
  13390. },
  13391. {
  13392. name: "Megamacro+",
  13393. height: math.unit(300, "terameters")
  13394. },
  13395. {
  13396. name: "Megamacro++",
  13397. height: math.unit(3, "lightyears")
  13398. },
  13399. ]
  13400. ))
  13401. characterMakers.push(() => makeCharacter(
  13402. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13403. {
  13404. front: {
  13405. height: math.unit(6, "feet"),
  13406. weight: math.unit(50, "kg"),
  13407. name: "front",
  13408. image: {
  13409. source: "./media/characters/shiroryu/front.svg",
  13410. extra: 1990 / 1935
  13411. }
  13412. },
  13413. },
  13414. [
  13415. {
  13416. name: "Mortal Mingling",
  13417. height: math.unit(3, "meters")
  13418. },
  13419. {
  13420. name: "Kaiju-ish",
  13421. height: math.unit(250, "meters")
  13422. },
  13423. {
  13424. name: "Somewhat Godly",
  13425. height: math.unit(400, "km"),
  13426. default: true
  13427. },
  13428. {
  13429. name: "Planetary",
  13430. height: math.unit(300, "megameters")
  13431. },
  13432. {
  13433. name: "Galaxy-dwarfing",
  13434. height: math.unit(450, "kiloparsecs")
  13435. },
  13436. {
  13437. name: "Universe Eater",
  13438. height: math.unit(150, "gigaparsecs")
  13439. },
  13440. {
  13441. name: "Almost Immeasurable",
  13442. height: math.unit(1.3e266, "yottaparsecs")
  13443. },
  13444. ]
  13445. ))
  13446. characterMakers.push(() => makeCharacter(
  13447. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13448. {
  13449. front: {
  13450. height: math.unit(6, "feet"),
  13451. weight: math.unit(150, "lb"),
  13452. name: "Front",
  13453. image: {
  13454. source: "./media/characters/umeko/front.svg",
  13455. extra: 1,
  13456. bottom: 0.019
  13457. }
  13458. },
  13459. frontArmored: {
  13460. height: math.unit(6, "feet"),
  13461. weight: math.unit(150, "lb"),
  13462. name: "Front (Armored)",
  13463. image: {
  13464. source: "./media/characters/umeko/front-armored.svg",
  13465. extra: 1,
  13466. bottom: 0.021
  13467. }
  13468. },
  13469. },
  13470. [
  13471. {
  13472. name: "Macro",
  13473. height: math.unit(220, "feet"),
  13474. default: true
  13475. },
  13476. {
  13477. name: "Guardian Dragon",
  13478. height: math.unit(50, "miles")
  13479. },
  13480. {
  13481. name: "Cosmic",
  13482. height: math.unit(800000, "miles")
  13483. },
  13484. ]
  13485. ))
  13486. characterMakers.push(() => makeCharacter(
  13487. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13488. {
  13489. front: {
  13490. height: math.unit(6, "feet"),
  13491. weight: math.unit(150, "lb"),
  13492. name: "Front",
  13493. image: {
  13494. source: "./media/characters/cassidy/front.svg",
  13495. extra: 1,
  13496. bottom: 0.043
  13497. }
  13498. },
  13499. },
  13500. [
  13501. {
  13502. name: "Canon Height",
  13503. height: math.unit(120, "feet"),
  13504. default: true
  13505. },
  13506. {
  13507. name: "Macro+",
  13508. height: math.unit(400, "feet")
  13509. },
  13510. {
  13511. name: "Macro++",
  13512. height: math.unit(4000, "feet")
  13513. },
  13514. {
  13515. name: "Megamacro",
  13516. height: math.unit(3, "miles")
  13517. },
  13518. ]
  13519. ))
  13520. characterMakers.push(() => makeCharacter(
  13521. { name: "Isaac", species: ["moose"], 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/isaac/front.svg",
  13529. extra: 896 / 815,
  13530. bottom: 0.11
  13531. }
  13532. },
  13533. },
  13534. [
  13535. {
  13536. name: "Human Size",
  13537. height: math.unit(8, "feet"),
  13538. default: true
  13539. },
  13540. {
  13541. name: "Macro",
  13542. height: math.unit(400, "feet")
  13543. },
  13544. {
  13545. name: "Megamacro",
  13546. height: math.unit(50, "miles")
  13547. },
  13548. {
  13549. name: "Canon Height",
  13550. height: math.unit(200, "AU")
  13551. },
  13552. ]
  13553. ))
  13554. characterMakers.push(() => makeCharacter(
  13555. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13556. {
  13557. front: {
  13558. height: math.unit(6, "feet"),
  13559. weight: math.unit(72, "kg"),
  13560. name: "Front",
  13561. image: {
  13562. source: "./media/characters/sleekit/front.svg",
  13563. extra: 4693 / 4487,
  13564. bottom: 0.012
  13565. }
  13566. },
  13567. },
  13568. [
  13569. {
  13570. name: "Minimum Height",
  13571. height: math.unit(10, "meters")
  13572. },
  13573. {
  13574. name: "Smaller",
  13575. height: math.unit(25, "meters")
  13576. },
  13577. {
  13578. name: "Larger",
  13579. height: math.unit(38, "meters"),
  13580. default: true
  13581. },
  13582. {
  13583. name: "Maximum height",
  13584. height: math.unit(100, "meters")
  13585. },
  13586. ]
  13587. ))
  13588. characterMakers.push(() => makeCharacter(
  13589. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13590. {
  13591. front: {
  13592. height: math.unit(6, "feet"),
  13593. weight: math.unit(150, "lb"),
  13594. name: "Front",
  13595. image: {
  13596. source: "./media/characters/nillia/front.svg",
  13597. extra: 2195 / 2037,
  13598. bottom: 0.005
  13599. }
  13600. },
  13601. back: {
  13602. height: math.unit(6, "feet"),
  13603. weight: math.unit(150, "lb"),
  13604. name: "Back",
  13605. image: {
  13606. source: "./media/characters/nillia/back.svg",
  13607. extra: 2195 / 2037,
  13608. bottom: 0.005
  13609. }
  13610. },
  13611. },
  13612. [
  13613. {
  13614. name: "Canon Height",
  13615. height: math.unit(489, "feet"),
  13616. default: true
  13617. }
  13618. ]
  13619. ))
  13620. characterMakers.push(() => makeCharacter(
  13621. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13622. {
  13623. front: {
  13624. height: math.unit(6, "feet"),
  13625. weight: math.unit(150, "lb"),
  13626. name: "Front",
  13627. image: {
  13628. source: "./media/characters/mesmyriza/front.svg",
  13629. extra: 2067 / 1784,
  13630. bottom: 0.035
  13631. }
  13632. },
  13633. foot: {
  13634. height: math.unit(6 / (250 / 35), "feet"),
  13635. name: "Foot",
  13636. image: {
  13637. source: "./media/characters/mesmyriza/foot.svg"
  13638. }
  13639. },
  13640. },
  13641. [
  13642. {
  13643. name: "Macro",
  13644. height: math.unit(457, "meters"),
  13645. default: true
  13646. },
  13647. {
  13648. name: "Megamacro",
  13649. height: math.unit(8, "megameters")
  13650. },
  13651. ]
  13652. ))
  13653. characterMakers.push(() => makeCharacter(
  13654. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13655. {
  13656. front: {
  13657. height: math.unit(6, "feet"),
  13658. weight: math.unit(250, "lb"),
  13659. name: "Front",
  13660. image: {
  13661. source: "./media/characters/saudade/front.svg",
  13662. extra: 1172 / 1139,
  13663. bottom: 0.035
  13664. }
  13665. },
  13666. },
  13667. [
  13668. {
  13669. name: "Micro",
  13670. height: math.unit(3, "inches")
  13671. },
  13672. {
  13673. name: "Normal",
  13674. height: math.unit(6, "feet"),
  13675. default: true
  13676. },
  13677. {
  13678. name: "Macro",
  13679. height: math.unit(50, "feet")
  13680. },
  13681. {
  13682. name: "Megamacro",
  13683. height: math.unit(2800, "feet")
  13684. },
  13685. ]
  13686. ))
  13687. characterMakers.push(() => makeCharacter(
  13688. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13689. {
  13690. front: {
  13691. height: math.unit(5 + 4 / 12, "feet"),
  13692. weight: math.unit(100, "lb"),
  13693. name: "Front",
  13694. image: {
  13695. source: "./media/characters/keireer/front.svg",
  13696. extra: 716 / 666,
  13697. bottom: 0.05
  13698. }
  13699. },
  13700. },
  13701. [
  13702. {
  13703. name: "Normal",
  13704. height: math.unit(5 + 4 / 12, "feet"),
  13705. default: true
  13706. },
  13707. ]
  13708. ))
  13709. characterMakers.push(() => makeCharacter(
  13710. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13711. {
  13712. front: {
  13713. height: math.unit(6, "feet"),
  13714. weight: math.unit(90, "kg"),
  13715. name: "Front",
  13716. image: {
  13717. source: "./media/characters/mirja/front.svg",
  13718. extra: 1789 / 1683,
  13719. bottom: 0.05
  13720. }
  13721. },
  13722. frontDressed: {
  13723. height: math.unit(6, "feet"),
  13724. weight: math.unit(90, "lb"),
  13725. name: "Front (Dressed)",
  13726. image: {
  13727. source: "./media/characters/mirja/front-dressed.svg",
  13728. extra: 1789 / 1683,
  13729. bottom: 0.05
  13730. }
  13731. },
  13732. back: {
  13733. height: math.unit(6, "feet"),
  13734. weight: math.unit(90, "lb"),
  13735. name: "Back",
  13736. image: {
  13737. source: "./media/characters/mirja/back.svg",
  13738. extra: 953 / 917,
  13739. bottom: 0.017
  13740. }
  13741. },
  13742. },
  13743. [
  13744. {
  13745. name: "\"Incognito\"",
  13746. height: math.unit(3, "meters")
  13747. },
  13748. {
  13749. name: "Strolling Size",
  13750. height: math.unit(15, "km")
  13751. },
  13752. {
  13753. name: "Larger Strolling Size",
  13754. height: math.unit(400, "km")
  13755. },
  13756. {
  13757. name: "Preferred Size",
  13758. height: math.unit(5000, "km")
  13759. },
  13760. {
  13761. name: "True Size",
  13762. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13763. default: true
  13764. },
  13765. ]
  13766. ))
  13767. characterMakers.push(() => makeCharacter(
  13768. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13769. {
  13770. front: {
  13771. height: math.unit(15, "feet"),
  13772. weight: math.unit(880, "kg"),
  13773. name: "Front",
  13774. image: {
  13775. source: "./media/characters/nightraver/front.svg",
  13776. extra: 2444 / 2160,
  13777. bottom: 0.027
  13778. }
  13779. },
  13780. back: {
  13781. height: math.unit(15, "feet"),
  13782. weight: math.unit(880, "kg"),
  13783. name: "Back",
  13784. image: {
  13785. source: "./media/characters/nightraver/back.svg",
  13786. extra: 2309 / 2180,
  13787. bottom: 0.005
  13788. }
  13789. },
  13790. sole: {
  13791. height: math.unit(2.878, "feet"),
  13792. name: "Sole",
  13793. image: {
  13794. source: "./media/characters/nightraver/sole.svg"
  13795. }
  13796. },
  13797. foot: {
  13798. height: math.unit(2.285, "feet"),
  13799. name: "Foot",
  13800. image: {
  13801. source: "./media/characters/nightraver/foot.svg"
  13802. }
  13803. },
  13804. maw: {
  13805. height: math.unit(2.67, "feet"),
  13806. name: "Maw",
  13807. image: {
  13808. source: "./media/characters/nightraver/maw.svg"
  13809. }
  13810. },
  13811. },
  13812. [
  13813. {
  13814. name: "Micro",
  13815. height: math.unit(1, "cm")
  13816. },
  13817. {
  13818. name: "Normal",
  13819. height: math.unit(15, "feet"),
  13820. default: true
  13821. },
  13822. {
  13823. name: "Macro",
  13824. height: math.unit(300, "feet")
  13825. },
  13826. {
  13827. name: "Megamacro",
  13828. height: math.unit(300, "miles")
  13829. },
  13830. {
  13831. name: "Gigamacro",
  13832. height: math.unit(10000, "miles")
  13833. },
  13834. ]
  13835. ))
  13836. characterMakers.push(() => makeCharacter(
  13837. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13838. {
  13839. side: {
  13840. height: math.unit(2, "inches"),
  13841. weight: math.unit(5, "grams"),
  13842. name: "Side",
  13843. image: {
  13844. source: "./media/characters/arc/side.svg"
  13845. }
  13846. },
  13847. },
  13848. [
  13849. {
  13850. name: "Micro",
  13851. height: math.unit(2, "inches"),
  13852. default: true
  13853. },
  13854. ]
  13855. ))
  13856. characterMakers.push(() => makeCharacter(
  13857. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13858. {
  13859. front: {
  13860. height: math.unit(1.1938, "meters"),
  13861. weight: math.unit(54, "kg"),
  13862. name: "Front",
  13863. image: {
  13864. source: "./media/characters/nebula-shahar/front.svg",
  13865. extra: 1642 / 1436,
  13866. bottom: 0.06
  13867. }
  13868. },
  13869. },
  13870. [
  13871. {
  13872. name: "Megamicro",
  13873. height: math.unit(0.3, "mm")
  13874. },
  13875. {
  13876. name: "Micro",
  13877. height: math.unit(3, "cm")
  13878. },
  13879. {
  13880. name: "Normal",
  13881. height: math.unit(138, "cm"),
  13882. default: true
  13883. },
  13884. {
  13885. name: "Macro",
  13886. height: math.unit(30, "m")
  13887. },
  13888. ]
  13889. ))
  13890. characterMakers.push(() => makeCharacter(
  13891. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13892. {
  13893. front: {
  13894. height: math.unit(5.24, "feet"),
  13895. weight: math.unit(150, "lb"),
  13896. name: "Front",
  13897. image: {
  13898. source: "./media/characters/shayla/front.svg",
  13899. extra: 1512 / 1414,
  13900. bottom: 0.01
  13901. }
  13902. },
  13903. back: {
  13904. height: math.unit(5.24, "feet"),
  13905. weight: math.unit(150, "lb"),
  13906. name: "Back",
  13907. image: {
  13908. source: "./media/characters/shayla/back.svg",
  13909. extra: 1512 / 1414
  13910. }
  13911. },
  13912. hand: {
  13913. height: math.unit(0.7781496062992126, "feet"),
  13914. name: "Hand",
  13915. image: {
  13916. source: "./media/characters/shayla/hand.svg"
  13917. }
  13918. },
  13919. foot: {
  13920. height: math.unit(1.4206036745406823, "feet"),
  13921. name: "Foot",
  13922. image: {
  13923. source: "./media/characters/shayla/foot.svg"
  13924. }
  13925. },
  13926. },
  13927. [
  13928. {
  13929. name: "Micro",
  13930. height: math.unit(0.32, "feet")
  13931. },
  13932. {
  13933. name: "Normal",
  13934. height: math.unit(5.24, "feet"),
  13935. default: true
  13936. },
  13937. {
  13938. name: "Macro",
  13939. height: math.unit(492.12, "feet")
  13940. },
  13941. {
  13942. name: "Megamacro",
  13943. height: math.unit(186.41, "miles")
  13944. },
  13945. ]
  13946. ))
  13947. characterMakers.push(() => makeCharacter(
  13948. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13949. {
  13950. front: {
  13951. height: math.unit(2.2, "m"),
  13952. weight: math.unit(120, "kg"),
  13953. name: "Front",
  13954. image: {
  13955. source: "./media/characters/pia-jr/front.svg",
  13956. extra: 1000 / 970,
  13957. bottom: 0.035
  13958. }
  13959. },
  13960. hand: {
  13961. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13962. name: "Hand",
  13963. image: {
  13964. source: "./media/characters/pia-jr/hand.svg"
  13965. }
  13966. },
  13967. paw: {
  13968. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13969. name: "Paw",
  13970. image: {
  13971. source: "./media/characters/pia-jr/paw.svg"
  13972. }
  13973. },
  13974. },
  13975. [
  13976. {
  13977. name: "Micro",
  13978. height: math.unit(1.2, "cm")
  13979. },
  13980. {
  13981. name: "Normal",
  13982. height: math.unit(2.2, "m"),
  13983. default: true
  13984. },
  13985. {
  13986. name: "Macro",
  13987. height: math.unit(180, "m")
  13988. },
  13989. {
  13990. name: "Megamacro",
  13991. height: math.unit(420, "km")
  13992. },
  13993. ]
  13994. ))
  13995. characterMakers.push(() => makeCharacter(
  13996. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13997. {
  13998. front: {
  13999. height: math.unit(2, "m"),
  14000. weight: math.unit(115, "kg"),
  14001. name: "Front",
  14002. image: {
  14003. source: "./media/characters/pia-sr/front.svg",
  14004. extra: 760 / 730,
  14005. bottom: 0.015
  14006. }
  14007. },
  14008. back: {
  14009. height: math.unit(2, "m"),
  14010. weight: math.unit(115, "kg"),
  14011. name: "Back",
  14012. image: {
  14013. source: "./media/characters/pia-sr/back.svg",
  14014. extra: 760 / 730,
  14015. bottom: 0.01
  14016. }
  14017. },
  14018. hand: {
  14019. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14020. name: "Hand",
  14021. image: {
  14022. source: "./media/characters/pia-sr/hand.svg"
  14023. }
  14024. },
  14025. foot: {
  14026. height: math.unit(1.83, "feet"),
  14027. name: "Foot",
  14028. image: {
  14029. source: "./media/characters/pia-sr/foot.svg"
  14030. }
  14031. },
  14032. },
  14033. [
  14034. {
  14035. name: "Micro",
  14036. height: math.unit(88, "mm")
  14037. },
  14038. {
  14039. name: "Normal",
  14040. height: math.unit(2, "m"),
  14041. default: true
  14042. },
  14043. {
  14044. name: "Macro",
  14045. height: math.unit(200, "m")
  14046. },
  14047. {
  14048. name: "Megamacro",
  14049. height: math.unit(420, "km")
  14050. },
  14051. ]
  14052. ))
  14053. characterMakers.push(() => makeCharacter(
  14054. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14055. {
  14056. front: {
  14057. height: math.unit(8 + 2 / 12, "feet"),
  14058. weight: math.unit(300, "lb"),
  14059. name: "Front",
  14060. image: {
  14061. source: "./media/characters/kibibyte/front.svg",
  14062. extra: 2221 / 2098,
  14063. bottom: 0.04
  14064. }
  14065. },
  14066. },
  14067. [
  14068. {
  14069. name: "Normal",
  14070. height: math.unit(8 + 2 / 12, "feet"),
  14071. default: true
  14072. },
  14073. {
  14074. name: "Socialable Macro",
  14075. height: math.unit(50, "feet")
  14076. },
  14077. {
  14078. name: "Macro",
  14079. height: math.unit(300, "feet")
  14080. },
  14081. {
  14082. name: "Megamacro",
  14083. height: math.unit(500, "miles")
  14084. },
  14085. ]
  14086. ))
  14087. characterMakers.push(() => makeCharacter(
  14088. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14089. {
  14090. front: {
  14091. height: math.unit(6, "feet"),
  14092. weight: math.unit(150, "lb"),
  14093. name: "Front",
  14094. image: {
  14095. source: "./media/characters/felix/front.svg",
  14096. extra: 762 / 722,
  14097. bottom: 0.02
  14098. }
  14099. },
  14100. frontClothed: {
  14101. height: math.unit(6, "feet"),
  14102. weight: math.unit(150, "lb"),
  14103. name: "Front (Clothed)",
  14104. image: {
  14105. source: "./media/characters/felix/front-clothed.svg",
  14106. extra: 762 / 722,
  14107. bottom: 0.02
  14108. }
  14109. },
  14110. },
  14111. [
  14112. {
  14113. name: "Normal",
  14114. height: math.unit(6 + 8 / 12, "feet"),
  14115. default: true
  14116. },
  14117. {
  14118. name: "Macro",
  14119. height: math.unit(2600, "feet")
  14120. },
  14121. {
  14122. name: "Megamacro",
  14123. height: math.unit(450, "miles")
  14124. },
  14125. ]
  14126. ))
  14127. characterMakers.push(() => makeCharacter(
  14128. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14129. {
  14130. front: {
  14131. height: math.unit(6 + 1 / 12, "feet"),
  14132. weight: math.unit(250, "lb"),
  14133. name: "Front",
  14134. image: {
  14135. source: "./media/characters/tobo/front.svg",
  14136. extra: 608 / 586,
  14137. bottom: 0.023
  14138. }
  14139. },
  14140. back: {
  14141. height: math.unit(6 + 1 / 12, "feet"),
  14142. weight: math.unit(250, "lb"),
  14143. name: "Back",
  14144. image: {
  14145. source: "./media/characters/tobo/back.svg",
  14146. extra: 608 / 586
  14147. }
  14148. },
  14149. },
  14150. [
  14151. {
  14152. name: "Nano",
  14153. height: math.unit(2, "nm")
  14154. },
  14155. {
  14156. name: "Megamicro",
  14157. height: math.unit(0.1, "mm")
  14158. },
  14159. {
  14160. name: "Micro",
  14161. height: math.unit(1, "inch"),
  14162. default: true
  14163. },
  14164. {
  14165. name: "Human-sized",
  14166. height: math.unit(6 + 1 / 12, "feet")
  14167. },
  14168. {
  14169. name: "Macro",
  14170. height: math.unit(250, "feet")
  14171. },
  14172. {
  14173. name: "Megamacro",
  14174. height: math.unit(75, "miles")
  14175. },
  14176. {
  14177. name: "Texas-sized",
  14178. height: math.unit(750, "miles")
  14179. },
  14180. {
  14181. name: "Teramacro",
  14182. height: math.unit(50000, "miles")
  14183. },
  14184. ]
  14185. ))
  14186. characterMakers.push(() => makeCharacter(
  14187. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14188. {
  14189. front: {
  14190. height: math.unit(6, "feet"),
  14191. weight: math.unit(269, "lb"),
  14192. name: "Front",
  14193. image: {
  14194. source: "./media/characters/danny-kapowsky/front.svg",
  14195. extra: 766 / 736,
  14196. bottom: 0.044
  14197. }
  14198. },
  14199. back: {
  14200. height: math.unit(6, "feet"),
  14201. weight: math.unit(269, "lb"),
  14202. name: "Back",
  14203. image: {
  14204. source: "./media/characters/danny-kapowsky/back.svg",
  14205. extra: 797 / 760,
  14206. bottom: 0.025
  14207. }
  14208. },
  14209. },
  14210. [
  14211. {
  14212. name: "Macro",
  14213. height: math.unit(150, "feet"),
  14214. default: true
  14215. },
  14216. {
  14217. name: "Macro+",
  14218. height: math.unit(200, "feet")
  14219. },
  14220. {
  14221. name: "Macro++",
  14222. height: math.unit(300, "feet")
  14223. },
  14224. {
  14225. name: "Macro+++",
  14226. height: math.unit(400, "feet")
  14227. },
  14228. ]
  14229. ))
  14230. characterMakers.push(() => makeCharacter(
  14231. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14232. {
  14233. side: {
  14234. height: math.unit(6, "feet"),
  14235. weight: math.unit(170, "lb"),
  14236. name: "Side",
  14237. image: {
  14238. source: "./media/characters/finn/side.svg",
  14239. extra: 1953 / 1807,
  14240. bottom: 0.057
  14241. }
  14242. },
  14243. },
  14244. [
  14245. {
  14246. name: "Megamacro",
  14247. height: math.unit(14445, "feet"),
  14248. default: true
  14249. },
  14250. ]
  14251. ))
  14252. characterMakers.push(() => makeCharacter(
  14253. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14254. {
  14255. front: {
  14256. height: math.unit(5 + 6 / 12, "feet"),
  14257. weight: math.unit(125, "lb"),
  14258. name: "Front",
  14259. image: {
  14260. source: "./media/characters/roy/front.svg",
  14261. extra: 1,
  14262. bottom: 0.11
  14263. }
  14264. },
  14265. },
  14266. [
  14267. {
  14268. name: "Micro",
  14269. height: math.unit(3, "inches"),
  14270. default: true
  14271. },
  14272. {
  14273. name: "Normal",
  14274. height: math.unit(5 + 6 / 12, "feet")
  14275. },
  14276. {
  14277. name: "Lesser Macro",
  14278. height: math.unit(60, "feet")
  14279. },
  14280. {
  14281. name: "Greater Macro",
  14282. height: math.unit(120, "feet")
  14283. },
  14284. ]
  14285. ))
  14286. characterMakers.push(() => makeCharacter(
  14287. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14288. {
  14289. front: {
  14290. height: math.unit(6, "feet"),
  14291. weight: math.unit(100, "lb"),
  14292. name: "Front",
  14293. image: {
  14294. source: "./media/characters/aevsivs/front.svg",
  14295. extra: 1,
  14296. bottom: 0.03
  14297. }
  14298. },
  14299. back: {
  14300. height: math.unit(6, "feet"),
  14301. weight: math.unit(100, "lb"),
  14302. name: "Back",
  14303. image: {
  14304. source: "./media/characters/aevsivs/back.svg"
  14305. }
  14306. },
  14307. },
  14308. [
  14309. {
  14310. name: "Micro",
  14311. height: math.unit(2, "inches"),
  14312. default: true
  14313. },
  14314. {
  14315. name: "Normal",
  14316. height: math.unit(5, "feet")
  14317. },
  14318. ]
  14319. ))
  14320. characterMakers.push(() => makeCharacter(
  14321. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14322. {
  14323. front: {
  14324. height: math.unit(5 + 7 / 12, "feet"),
  14325. weight: math.unit(159, "lb"),
  14326. name: "Front",
  14327. image: {
  14328. source: "./media/characters/hildegard/front.svg",
  14329. extra: 289 / 269,
  14330. bottom: 7.63 / 297.8
  14331. }
  14332. },
  14333. back: {
  14334. height: math.unit(5 + 7 / 12, "feet"),
  14335. weight: math.unit(159, "lb"),
  14336. name: "Back",
  14337. image: {
  14338. source: "./media/characters/hildegard/back.svg",
  14339. extra: 280 / 260,
  14340. bottom: 2.3 / 282
  14341. }
  14342. },
  14343. },
  14344. [
  14345. {
  14346. name: "Normal",
  14347. height: math.unit(5 + 7 / 12, "feet"),
  14348. default: true
  14349. },
  14350. ]
  14351. ))
  14352. characterMakers.push(() => makeCharacter(
  14353. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14354. {
  14355. bernard: {
  14356. height: math.unit(2 + 7 / 12, "feet"),
  14357. weight: math.unit(66, "lb"),
  14358. name: "Bernard",
  14359. rename: true,
  14360. image: {
  14361. source: "./media/characters/bernard-wilder/bernard.svg",
  14362. extra: 192 / 128,
  14363. bottom: 0.05
  14364. }
  14365. },
  14366. wilder: {
  14367. height: math.unit(5 + 8 / 12, "feet"),
  14368. weight: math.unit(143, "lb"),
  14369. name: "Wilder",
  14370. rename: true,
  14371. image: {
  14372. source: "./media/characters/bernard-wilder/wilder.svg",
  14373. extra: 361 / 312,
  14374. bottom: 0.02
  14375. }
  14376. },
  14377. },
  14378. [
  14379. {
  14380. name: "Normal",
  14381. height: math.unit(2 + 7 / 12, "feet"),
  14382. default: true
  14383. },
  14384. ]
  14385. ))
  14386. characterMakers.push(() => makeCharacter(
  14387. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14388. {
  14389. anthro: {
  14390. height: math.unit(6 + 1 / 12, "feet"),
  14391. weight: math.unit(155, "lb"),
  14392. name: "Anthro",
  14393. image: {
  14394. source: "./media/characters/hearth/anthro.svg",
  14395. extra: 260 / 250,
  14396. bottom: 0.02
  14397. }
  14398. },
  14399. feral: {
  14400. height: math.unit(3.78, "feet"),
  14401. weight: math.unit(35, "kg"),
  14402. name: "Feral",
  14403. image: {
  14404. source: "./media/characters/hearth/feral.svg",
  14405. extra: 153 / 135,
  14406. bottom: 0.03
  14407. }
  14408. },
  14409. },
  14410. [
  14411. {
  14412. name: "Normal",
  14413. height: math.unit(6 + 1 / 12, "feet"),
  14414. default: true
  14415. },
  14416. ]
  14417. ))
  14418. characterMakers.push(() => makeCharacter(
  14419. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14420. {
  14421. front: {
  14422. height: math.unit(6, "feet"),
  14423. weight: math.unit(182, "lb"),
  14424. name: "Front",
  14425. image: {
  14426. source: "./media/characters/ingrid/front.svg",
  14427. extra: 294 / 268,
  14428. bottom: 0.027
  14429. }
  14430. },
  14431. },
  14432. [
  14433. {
  14434. name: "Normal",
  14435. height: math.unit(6, "feet"),
  14436. default: true
  14437. },
  14438. ]
  14439. ))
  14440. characterMakers.push(() => makeCharacter(
  14441. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14442. {
  14443. eevee: {
  14444. height: math.unit(2 + 10 / 12, "feet"),
  14445. weight: math.unit(86, "lb"),
  14446. name: "Malgam",
  14447. image: {
  14448. source: "./media/characters/malgam/eevee.svg",
  14449. extra: 218 / 180,
  14450. bottom: 0.2
  14451. }
  14452. },
  14453. sylveon: {
  14454. height: math.unit(4, "feet"),
  14455. weight: math.unit(101, "lb"),
  14456. name: "Future Malgam",
  14457. rename: true,
  14458. image: {
  14459. source: "./media/characters/malgam/sylveon.svg",
  14460. extra: 371 / 325,
  14461. bottom: 0.015
  14462. }
  14463. },
  14464. gigantamax: {
  14465. height: math.unit(50, "feet"),
  14466. name: "Gigantamax Malgam",
  14467. rename: true,
  14468. image: {
  14469. source: "./media/characters/malgam/gigantamax.svg"
  14470. }
  14471. },
  14472. },
  14473. [
  14474. {
  14475. name: "Normal",
  14476. height: math.unit(2 + 10 / 12, "feet"),
  14477. default: true
  14478. },
  14479. ]
  14480. ))
  14481. characterMakers.push(() => makeCharacter(
  14482. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14483. {
  14484. front: {
  14485. height: math.unit(5 + 11 / 12, "feet"),
  14486. weight: math.unit(188, "lb"),
  14487. name: "Front",
  14488. image: {
  14489. source: "./media/characters/fleur/front.svg",
  14490. extra: 309 / 283,
  14491. bottom: 0.007
  14492. }
  14493. },
  14494. },
  14495. [
  14496. {
  14497. name: "Normal",
  14498. height: math.unit(5 + 11 / 12, "feet"),
  14499. default: true
  14500. },
  14501. ]
  14502. ))
  14503. characterMakers.push(() => makeCharacter(
  14504. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14505. {
  14506. front: {
  14507. height: math.unit(5 + 4 / 12, "feet"),
  14508. weight: math.unit(122, "lb"),
  14509. name: "Front",
  14510. image: {
  14511. source: "./media/characters/jude/front.svg",
  14512. extra: 288 / 273,
  14513. bottom: 0.03
  14514. }
  14515. },
  14516. },
  14517. [
  14518. {
  14519. name: "Normal",
  14520. height: math.unit(5 + 4 / 12, "feet"),
  14521. default: true
  14522. },
  14523. ]
  14524. ))
  14525. characterMakers.push(() => makeCharacter(
  14526. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14527. {
  14528. front: {
  14529. height: math.unit(5 + 11 / 12, "feet"),
  14530. weight: math.unit(190, "lb"),
  14531. name: "Front",
  14532. image: {
  14533. source: "./media/characters/seara/front.svg",
  14534. extra: 1,
  14535. bottom: 0.05
  14536. }
  14537. },
  14538. },
  14539. [
  14540. {
  14541. name: "Normal",
  14542. height: math.unit(5 + 11 / 12, "feet"),
  14543. default: true
  14544. },
  14545. ]
  14546. ))
  14547. characterMakers.push(() => makeCharacter(
  14548. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14549. {
  14550. front: {
  14551. height: math.unit(16 + 5 / 12, "feet"),
  14552. weight: math.unit(524, "lb"),
  14553. name: "Front",
  14554. image: {
  14555. source: "./media/characters/caspian/front.svg",
  14556. extra: 1,
  14557. bottom: 0.04
  14558. }
  14559. },
  14560. },
  14561. [
  14562. {
  14563. name: "Normal",
  14564. height: math.unit(16 + 5 / 12, "feet"),
  14565. default: true
  14566. },
  14567. ]
  14568. ))
  14569. characterMakers.push(() => makeCharacter(
  14570. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14571. {
  14572. front: {
  14573. height: math.unit(5 + 7 / 12, "feet"),
  14574. weight: math.unit(170, "lb"),
  14575. name: "Front",
  14576. image: {
  14577. source: "./media/characters/mika/front.svg",
  14578. extra: 1,
  14579. bottom: 0.016
  14580. }
  14581. },
  14582. },
  14583. [
  14584. {
  14585. name: "Normal",
  14586. height: math.unit(5 + 7 / 12, "feet"),
  14587. default: true
  14588. },
  14589. ]
  14590. ))
  14591. characterMakers.push(() => makeCharacter(
  14592. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14593. {
  14594. front: {
  14595. height: math.unit(6 + 2 / 12, "feet"),
  14596. weight: math.unit(268, "lb"),
  14597. name: "Front",
  14598. image: {
  14599. source: "./media/characters/sol/front.svg",
  14600. extra: 247 / 231,
  14601. bottom: 0.05
  14602. }
  14603. },
  14604. },
  14605. [
  14606. {
  14607. name: "Normal",
  14608. height: math.unit(6 + 2 / 12, "feet"),
  14609. default: true
  14610. },
  14611. ]
  14612. ))
  14613. characterMakers.push(() => makeCharacter(
  14614. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14615. {
  14616. buizel: {
  14617. height: math.unit(2 + 5 / 12, "feet"),
  14618. weight: math.unit(87, "lb"),
  14619. name: "Buizel",
  14620. image: {
  14621. source: "./media/characters/umiko/buizel.svg",
  14622. extra: 172 / 157,
  14623. bottom: 0.01
  14624. }
  14625. },
  14626. floatzel: {
  14627. height: math.unit(5 + 9 / 12, "feet"),
  14628. weight: math.unit(250, "lb"),
  14629. name: "Floatzel",
  14630. image: {
  14631. source: "./media/characters/umiko/floatzel.svg",
  14632. extra: 262 / 248
  14633. }
  14634. },
  14635. },
  14636. [
  14637. {
  14638. name: "Normal",
  14639. height: math.unit(2 + 5 / 12, "feet"),
  14640. default: true
  14641. },
  14642. ]
  14643. ))
  14644. characterMakers.push(() => makeCharacter(
  14645. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14646. {
  14647. front: {
  14648. height: math.unit(6 + 2 / 12, "feet"),
  14649. weight: math.unit(146, "lb"),
  14650. name: "Front",
  14651. image: {
  14652. source: "./media/characters/iliac/front.svg",
  14653. extra: 389 / 365,
  14654. bottom: 0.035
  14655. }
  14656. },
  14657. },
  14658. [
  14659. {
  14660. name: "Normal",
  14661. height: math.unit(6 + 2 / 12, "feet"),
  14662. default: true
  14663. },
  14664. ]
  14665. ))
  14666. characterMakers.push(() => makeCharacter(
  14667. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14668. {
  14669. front: {
  14670. height: math.unit(6, "feet"),
  14671. weight: math.unit(170, "lb"),
  14672. name: "Front",
  14673. image: {
  14674. source: "./media/characters/topaz/front.svg",
  14675. extra: 317 / 303,
  14676. bottom: 0.055
  14677. }
  14678. },
  14679. },
  14680. [
  14681. {
  14682. name: "Normal",
  14683. height: math.unit(6, "feet"),
  14684. default: true
  14685. },
  14686. ]
  14687. ))
  14688. characterMakers.push(() => makeCharacter(
  14689. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14690. {
  14691. front: {
  14692. height: math.unit(5 + 11 / 12, "feet"),
  14693. weight: math.unit(144, "lb"),
  14694. name: "Front",
  14695. image: {
  14696. source: "./media/characters/gabriel/front.svg",
  14697. extra: 285 / 262,
  14698. bottom: 0.004
  14699. }
  14700. },
  14701. },
  14702. [
  14703. {
  14704. name: "Normal",
  14705. height: math.unit(5 + 11 / 12, "feet"),
  14706. default: true
  14707. },
  14708. ]
  14709. ))
  14710. characterMakers.push(() => makeCharacter(
  14711. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14712. {
  14713. side: {
  14714. height: math.unit(6 + 5 / 12, "feet"),
  14715. weight: math.unit(300, "lb"),
  14716. name: "Side",
  14717. image: {
  14718. source: "./media/characters/tempest-suicune/side.svg",
  14719. extra: 195 / 154,
  14720. bottom: 0.04
  14721. }
  14722. },
  14723. },
  14724. [
  14725. {
  14726. name: "Normal",
  14727. height: math.unit(6 + 5 / 12, "feet"),
  14728. default: true
  14729. },
  14730. ]
  14731. ))
  14732. characterMakers.push(() => makeCharacter(
  14733. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14734. {
  14735. front: {
  14736. height: math.unit(7 + 2 / 12, "feet"),
  14737. weight: math.unit(322, "lb"),
  14738. name: "Front",
  14739. image: {
  14740. source: "./media/characters/vulcan/front.svg",
  14741. extra: 154 / 147,
  14742. bottom: 0.04
  14743. }
  14744. },
  14745. },
  14746. [
  14747. {
  14748. name: "Normal",
  14749. height: math.unit(7 + 2 / 12, "feet"),
  14750. default: true
  14751. },
  14752. ]
  14753. ))
  14754. characterMakers.push(() => makeCharacter(
  14755. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14756. {
  14757. front: {
  14758. height: math.unit(5 + 10 / 12, "feet"),
  14759. weight: math.unit(264, "lb"),
  14760. name: "Front",
  14761. image: {
  14762. source: "./media/characters/gault/front.svg",
  14763. extra: 161 / 140,
  14764. bottom: 0.028
  14765. }
  14766. },
  14767. },
  14768. [
  14769. {
  14770. name: "Normal",
  14771. height: math.unit(5 + 10 / 12, "feet"),
  14772. default: true
  14773. },
  14774. ]
  14775. ))
  14776. characterMakers.push(() => makeCharacter(
  14777. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14778. {
  14779. front: {
  14780. height: math.unit(6, "feet"),
  14781. weight: math.unit(150, "lb"),
  14782. name: "Front",
  14783. image: {
  14784. source: "./media/characters/shard/front.svg",
  14785. extra: 273 / 238,
  14786. bottom: 0.02
  14787. }
  14788. },
  14789. },
  14790. [
  14791. {
  14792. name: "Normal",
  14793. height: math.unit(3 + 6 / 12, "feet"),
  14794. default: true
  14795. },
  14796. ]
  14797. ))
  14798. characterMakers.push(() => makeCharacter(
  14799. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14800. {
  14801. front: {
  14802. height: math.unit(5 + 11 / 12, "feet"),
  14803. weight: math.unit(146, "lb"),
  14804. name: "Front",
  14805. image: {
  14806. source: "./media/characters/ashe/front.svg",
  14807. extra: 400 / 373,
  14808. bottom: 0.01
  14809. }
  14810. },
  14811. },
  14812. [
  14813. {
  14814. name: "Normal",
  14815. height: math.unit(5 + 11 / 12, "feet"),
  14816. default: true
  14817. },
  14818. ]
  14819. ))
  14820. characterMakers.push(() => makeCharacter(
  14821. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14822. {
  14823. front: {
  14824. height: math.unit(5 + 5 / 12, "feet"),
  14825. weight: math.unit(135, "lb"),
  14826. name: "Front",
  14827. image: {
  14828. source: "./media/characters/beatrix/front.svg",
  14829. extra: 392 / 379,
  14830. bottom: 0.01
  14831. }
  14832. },
  14833. },
  14834. [
  14835. {
  14836. name: "Normal",
  14837. height: math.unit(6, "feet"),
  14838. default: true
  14839. },
  14840. ]
  14841. ))
  14842. characterMakers.push(() => makeCharacter(
  14843. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14844. {
  14845. front: {
  14846. height: math.unit(6, "feet"),
  14847. weight: math.unit(150, "lb"),
  14848. name: "Front",
  14849. image: {
  14850. source: "./media/characters/ignatius/front.svg",
  14851. extra: 245 / 222,
  14852. bottom: 0.01
  14853. }
  14854. },
  14855. },
  14856. [
  14857. {
  14858. name: "Normal",
  14859. height: math.unit(5 + 5 / 12, "feet"),
  14860. default: true
  14861. },
  14862. ]
  14863. ))
  14864. characterMakers.push(() => makeCharacter(
  14865. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14866. {
  14867. front: {
  14868. height: math.unit(6 + 2 / 12, "feet"),
  14869. weight: math.unit(138, "lb"),
  14870. name: "Front",
  14871. image: {
  14872. source: "./media/characters/mei-li/front.svg",
  14873. extra: 237 / 229,
  14874. bottom: 0.03
  14875. }
  14876. },
  14877. },
  14878. [
  14879. {
  14880. name: "Normal",
  14881. height: math.unit(6 + 2 / 12, "feet"),
  14882. default: true
  14883. },
  14884. ]
  14885. ))
  14886. characterMakers.push(() => makeCharacter(
  14887. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14888. {
  14889. front: {
  14890. height: math.unit(2 + 4 / 12, "feet"),
  14891. weight: math.unit(62, "lb"),
  14892. name: "Front",
  14893. image: {
  14894. source: "./media/characters/puru/front.svg",
  14895. extra: 206 / 149,
  14896. bottom: 0.06
  14897. }
  14898. },
  14899. },
  14900. [
  14901. {
  14902. name: "Normal",
  14903. height: math.unit(2 + 4 / 12, "feet"),
  14904. default: true
  14905. },
  14906. ]
  14907. ))
  14908. characterMakers.push(() => makeCharacter(
  14909. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14910. {
  14911. taur: {
  14912. height: math.unit(11, "feet"),
  14913. weight: math.unit(500, "lb"),
  14914. name: "Taur",
  14915. image: {
  14916. source: "./media/characters/kee/taur.svg",
  14917. extra: 1,
  14918. bottom: 0.04
  14919. }
  14920. },
  14921. },
  14922. [
  14923. {
  14924. name: "Normal",
  14925. height: math.unit(11, "feet"),
  14926. default: true
  14927. },
  14928. ]
  14929. ))
  14930. characterMakers.push(() => makeCharacter(
  14931. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14932. {
  14933. anthro: {
  14934. height: math.unit(7, "feet"),
  14935. weight: math.unit(190, "lb"),
  14936. name: "Anthro",
  14937. image: {
  14938. source: "./media/characters/cobalt-dracha/anthro.svg",
  14939. extra: 231 / 225,
  14940. bottom: 0.04
  14941. }
  14942. },
  14943. feral: {
  14944. height: math.unit(9 + 7 / 12, "feet"),
  14945. weight: math.unit(294, "lb"),
  14946. name: "Feral",
  14947. image: {
  14948. source: "./media/characters/cobalt-dracha/feral.svg",
  14949. extra: 692 / 633,
  14950. bottom: 0.05
  14951. }
  14952. },
  14953. },
  14954. [
  14955. {
  14956. name: "Normal",
  14957. height: math.unit(7, "feet"),
  14958. default: true
  14959. },
  14960. ]
  14961. ))
  14962. characterMakers.push(() => makeCharacter(
  14963. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14964. {
  14965. fallen: {
  14966. height: math.unit(11 + 8 / 12, "feet"),
  14967. weight: math.unit(485, "lb"),
  14968. name: "Java (Fallen)",
  14969. rename: true,
  14970. image: {
  14971. source: "./media/characters/java/fallen.svg",
  14972. extra: 226 / 208,
  14973. bottom: 0.005
  14974. }
  14975. },
  14976. godkin: {
  14977. height: math.unit(10 + 6 / 12, "feet"),
  14978. weight: math.unit(328, "lb"),
  14979. name: "Java (Godkin)",
  14980. rename: true,
  14981. image: {
  14982. source: "./media/characters/java/godkin.svg",
  14983. extra: 270 / 262,
  14984. bottom: 0.02
  14985. }
  14986. },
  14987. },
  14988. [
  14989. {
  14990. name: "Normal",
  14991. height: math.unit(11 + 8 / 12, "feet"),
  14992. default: true
  14993. },
  14994. ]
  14995. ))
  14996. characterMakers.push(() => makeCharacter(
  14997. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14998. {
  14999. front: {
  15000. height: math.unit(7 + 8 / 12, "feet"),
  15001. weight: math.unit(320, "lb"),
  15002. name: "Front",
  15003. image: {
  15004. source: "./media/characters/skoll/front.svg",
  15005. extra: 232 / 220,
  15006. bottom: 0.02
  15007. }
  15008. },
  15009. },
  15010. [
  15011. {
  15012. name: "Normal",
  15013. height: math.unit(7 + 8 / 12, "feet"),
  15014. default: true
  15015. },
  15016. ]
  15017. ))
  15018. characterMakers.push(() => makeCharacter(
  15019. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15020. {
  15021. front: {
  15022. height: math.unit(5 + 9 / 12, "feet"),
  15023. weight: math.unit(170, "lb"),
  15024. name: "Front",
  15025. image: {
  15026. source: "./media/characters/purna/front.svg",
  15027. extra: 239 / 229,
  15028. bottom: 0.01
  15029. }
  15030. },
  15031. },
  15032. [
  15033. {
  15034. name: "Normal",
  15035. height: math.unit(5 + 9 / 12, "feet"),
  15036. default: true
  15037. },
  15038. ]
  15039. ))
  15040. characterMakers.push(() => makeCharacter(
  15041. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15042. {
  15043. front: {
  15044. height: math.unit(5 + 9 / 12, "feet"),
  15045. weight: math.unit(142, "lb"),
  15046. name: "Front",
  15047. image: {
  15048. source: "./media/characters/kuva/front.svg",
  15049. extra: 281 / 271,
  15050. bottom: 0.006
  15051. }
  15052. },
  15053. },
  15054. [
  15055. {
  15056. name: "Normal",
  15057. height: math.unit(5 + 9 / 12, "feet"),
  15058. default: true
  15059. },
  15060. ]
  15061. ))
  15062. characterMakers.push(() => makeCharacter(
  15063. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15064. {
  15065. anthro: {
  15066. height: math.unit(9 + 2 / 12, "feet"),
  15067. weight: math.unit(270, "lb"),
  15068. name: "Anthro",
  15069. image: {
  15070. source: "./media/characters/embra/anthro.svg",
  15071. extra: 200 / 187,
  15072. bottom: 0.02
  15073. }
  15074. },
  15075. feral: {
  15076. height: math.unit(18 + 8 / 12, "feet"),
  15077. weight: math.unit(576, "lb"),
  15078. name: "Feral",
  15079. image: {
  15080. source: "./media/characters/embra/feral.svg",
  15081. extra: 152 / 137,
  15082. bottom: 0.037
  15083. }
  15084. },
  15085. },
  15086. [
  15087. {
  15088. name: "Normal",
  15089. height: math.unit(9 + 2 / 12, "feet"),
  15090. default: true
  15091. },
  15092. ]
  15093. ))
  15094. characterMakers.push(() => makeCharacter(
  15095. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15096. {
  15097. anthro: {
  15098. height: math.unit(10 + 9 / 12, "feet"),
  15099. weight: math.unit(224, "lb"),
  15100. name: "Anthro",
  15101. image: {
  15102. source: "./media/characters/grottos/anthro.svg",
  15103. extra: 350 / 332,
  15104. bottom: 0.045
  15105. }
  15106. },
  15107. feral: {
  15108. height: math.unit(20 + 7 / 12, "feet"),
  15109. weight: math.unit(629, "lb"),
  15110. name: "Feral",
  15111. image: {
  15112. source: "./media/characters/grottos/feral.svg",
  15113. extra: 207 / 190,
  15114. bottom: 0.05
  15115. }
  15116. },
  15117. },
  15118. [
  15119. {
  15120. name: "Normal",
  15121. height: math.unit(10 + 9 / 12, "feet"),
  15122. default: true
  15123. },
  15124. ]
  15125. ))
  15126. characterMakers.push(() => makeCharacter(
  15127. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15128. {
  15129. anthro: {
  15130. height: math.unit(9 + 6 / 12, "feet"),
  15131. weight: math.unit(298, "lb"),
  15132. name: "Anthro",
  15133. image: {
  15134. source: "./media/characters/frifna/anthro.svg",
  15135. extra: 282 / 269,
  15136. bottom: 0.015
  15137. }
  15138. },
  15139. feral: {
  15140. height: math.unit(16 + 2 / 12, "feet"),
  15141. weight: math.unit(624, "lb"),
  15142. name: "Feral",
  15143. image: {
  15144. source: "./media/characters/frifna/feral.svg"
  15145. }
  15146. },
  15147. },
  15148. [
  15149. {
  15150. name: "Normal",
  15151. height: math.unit(9 + 6 / 12, "feet"),
  15152. default: true
  15153. },
  15154. ]
  15155. ))
  15156. characterMakers.push(() => makeCharacter(
  15157. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15158. {
  15159. front: {
  15160. height: math.unit(6 + 2 / 12, "feet"),
  15161. weight: math.unit(168, "lb"),
  15162. name: "Front",
  15163. image: {
  15164. source: "./media/characters/elise/front.svg",
  15165. extra: 276 / 271
  15166. }
  15167. },
  15168. },
  15169. [
  15170. {
  15171. name: "Normal",
  15172. height: math.unit(6 + 2 / 12, "feet"),
  15173. default: true
  15174. },
  15175. ]
  15176. ))
  15177. characterMakers.push(() => makeCharacter(
  15178. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15179. {
  15180. front: {
  15181. height: math.unit(5 + 10 / 12, "feet"),
  15182. weight: math.unit(210, "lb"),
  15183. name: "Front",
  15184. image: {
  15185. source: "./media/characters/glade/front.svg",
  15186. extra: 258 / 247,
  15187. bottom: 0.008
  15188. }
  15189. },
  15190. },
  15191. [
  15192. {
  15193. name: "Normal",
  15194. height: math.unit(5 + 10 / 12, "feet"),
  15195. default: true
  15196. },
  15197. ]
  15198. ))
  15199. characterMakers.push(() => makeCharacter(
  15200. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15201. {
  15202. front: {
  15203. height: math.unit(5 + 10 / 12, "feet"),
  15204. weight: math.unit(129, "lb"),
  15205. name: "Front",
  15206. image: {
  15207. source: "./media/characters/rina/front.svg",
  15208. extra: 266 / 255,
  15209. bottom: 0.005
  15210. }
  15211. },
  15212. },
  15213. [
  15214. {
  15215. name: "Normal",
  15216. height: math.unit(5 + 10 / 12, "feet"),
  15217. default: true
  15218. },
  15219. ]
  15220. ))
  15221. characterMakers.push(() => makeCharacter(
  15222. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15223. {
  15224. front: {
  15225. height: math.unit(6 + 1 / 12, "feet"),
  15226. weight: math.unit(192, "lb"),
  15227. name: "Front",
  15228. image: {
  15229. source: "./media/characters/veronica/front.svg",
  15230. extra: 319 / 309,
  15231. bottom: 0.005
  15232. }
  15233. },
  15234. },
  15235. [
  15236. {
  15237. name: "Normal",
  15238. height: math.unit(6 + 1 / 12, "feet"),
  15239. default: true
  15240. },
  15241. ]
  15242. ))
  15243. characterMakers.push(() => makeCharacter(
  15244. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15245. {
  15246. front: {
  15247. height: math.unit(9 + 3 / 12, "feet"),
  15248. weight: math.unit(1100, "lb"),
  15249. name: "Front",
  15250. image: {
  15251. source: "./media/characters/braxton/front.svg",
  15252. extra: 1057 / 984,
  15253. bottom: 0.05
  15254. }
  15255. },
  15256. },
  15257. [
  15258. {
  15259. name: "Normal",
  15260. height: math.unit(9 + 3 / 12, "feet")
  15261. },
  15262. {
  15263. name: "Giant",
  15264. height: math.unit(300, "feet"),
  15265. default: true
  15266. },
  15267. {
  15268. name: "Macro",
  15269. height: math.unit(700, "feet")
  15270. },
  15271. {
  15272. name: "Megamacro",
  15273. height: math.unit(6000, "feet")
  15274. },
  15275. ]
  15276. ))
  15277. characterMakers.push(() => makeCharacter(
  15278. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15279. {
  15280. front: {
  15281. height: math.unit(6 + 7 / 12, "feet"),
  15282. weight: math.unit(150, "lb"),
  15283. name: "Front",
  15284. image: {
  15285. source: "./media/characters/blue-feyonics/front.svg",
  15286. extra: 1403 / 1306,
  15287. bottom: 0.047
  15288. }
  15289. },
  15290. },
  15291. [
  15292. {
  15293. name: "Normal",
  15294. height: math.unit(6 + 7 / 12, "feet"),
  15295. default: true
  15296. },
  15297. ]
  15298. ))
  15299. characterMakers.push(() => makeCharacter(
  15300. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15301. {
  15302. front: {
  15303. height: math.unit(1.8, "meters"),
  15304. weight: math.unit(60, "kg"),
  15305. name: "Front",
  15306. image: {
  15307. source: "./media/characters/maxwell/front.svg",
  15308. extra: 2060 / 1873
  15309. }
  15310. },
  15311. },
  15312. [
  15313. {
  15314. name: "Micro",
  15315. height: math.unit(1, "mm")
  15316. },
  15317. {
  15318. name: "Normal",
  15319. height: math.unit(1.8, "meter"),
  15320. default: true
  15321. },
  15322. {
  15323. name: "Macro",
  15324. height: math.unit(30, "meters")
  15325. },
  15326. {
  15327. name: "Megamacro",
  15328. height: math.unit(10, "km")
  15329. },
  15330. ]
  15331. ))
  15332. characterMakers.push(() => makeCharacter(
  15333. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15334. {
  15335. front: {
  15336. height: math.unit(6, "feet"),
  15337. weight: math.unit(150, "lb"),
  15338. name: "Front",
  15339. image: {
  15340. source: "./media/characters/jack/front.svg",
  15341. extra: 1754 / 1640,
  15342. bottom: 0.01
  15343. }
  15344. },
  15345. },
  15346. [
  15347. {
  15348. name: "Normal",
  15349. height: math.unit(80000, "feet"),
  15350. default: true
  15351. },
  15352. {
  15353. name: "Max size",
  15354. height: math.unit(10, "lightyears")
  15355. },
  15356. ]
  15357. ))
  15358. characterMakers.push(() => makeCharacter(
  15359. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15360. {
  15361. upright: {
  15362. height: math.unit(7, "feet"),
  15363. weight: math.unit(170, "lb"),
  15364. name: "Upright",
  15365. image: {
  15366. source: "./media/characters/cafat/upright.svg",
  15367. bottom: 0.01
  15368. }
  15369. },
  15370. uprightFull: {
  15371. height: math.unit(7, "feet"),
  15372. weight: math.unit(170, "lb"),
  15373. name: "Upright (Full)",
  15374. image: {
  15375. source: "./media/characters/cafat/upright-full.svg",
  15376. bottom: 0.01
  15377. }
  15378. },
  15379. side: {
  15380. height: math.unit(5, "feet"),
  15381. weight: math.unit(150, "lb"),
  15382. name: "Side",
  15383. image: {
  15384. source: "./media/characters/cafat/side.svg"
  15385. }
  15386. },
  15387. },
  15388. [
  15389. {
  15390. name: "Small",
  15391. height: math.unit(7, "feet"),
  15392. default: true
  15393. },
  15394. {
  15395. name: "Large",
  15396. height: math.unit(15.5, "feet")
  15397. },
  15398. ]
  15399. ))
  15400. characterMakers.push(() => makeCharacter(
  15401. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15402. {
  15403. front: {
  15404. height: math.unit(6, "feet"),
  15405. weight: math.unit(150, "lb"),
  15406. name: "Front",
  15407. image: {
  15408. source: "./media/characters/verin-raharra/front.svg",
  15409. extra: 5019 / 4835,
  15410. bottom: 0.023
  15411. }
  15412. },
  15413. },
  15414. [
  15415. {
  15416. name: "Normal",
  15417. height: math.unit(7 + 5 / 12, "feet"),
  15418. default: true
  15419. },
  15420. {
  15421. name: "Upsized",
  15422. height: math.unit(20, "feet")
  15423. },
  15424. ]
  15425. ))
  15426. characterMakers.push(() => makeCharacter(
  15427. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15428. {
  15429. front: {
  15430. height: math.unit(7, "feet"),
  15431. weight: math.unit(230, "lb"),
  15432. name: "Front",
  15433. image: {
  15434. source: "./media/characters/nakata/front.svg",
  15435. extra: 1.005,
  15436. bottom: 0.01
  15437. }
  15438. },
  15439. },
  15440. [
  15441. {
  15442. name: "Normal",
  15443. height: math.unit(7, "feet"),
  15444. default: true
  15445. },
  15446. {
  15447. name: "Big",
  15448. height: math.unit(14, "feet")
  15449. },
  15450. {
  15451. name: "Macro",
  15452. height: math.unit(400, "feet")
  15453. },
  15454. ]
  15455. ))
  15456. characterMakers.push(() => makeCharacter(
  15457. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15458. {
  15459. front: {
  15460. height: math.unit(4.91, "feet"),
  15461. weight: math.unit(100, "lb"),
  15462. name: "Front",
  15463. image: {
  15464. source: "./media/characters/lily/front.svg",
  15465. extra: 1585 / 1415,
  15466. bottom: 0.02
  15467. }
  15468. },
  15469. },
  15470. [
  15471. {
  15472. name: "Normal",
  15473. height: math.unit(4.91, "feet"),
  15474. default: true
  15475. },
  15476. ]
  15477. ))
  15478. characterMakers.push(() => makeCharacter(
  15479. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15480. {
  15481. laying: {
  15482. height: math.unit(4 + 4 / 12, "feet"),
  15483. weight: math.unit(600, "lb"),
  15484. name: "Laying",
  15485. image: {
  15486. source: "./media/characters/sheila/laying.svg",
  15487. extra: 1333 / 1265,
  15488. bottom: 0.16
  15489. }
  15490. },
  15491. },
  15492. [
  15493. {
  15494. name: "Normal",
  15495. height: math.unit(4 + 4 / 12, "feet"),
  15496. default: true
  15497. },
  15498. ]
  15499. ))
  15500. characterMakers.push(() => makeCharacter(
  15501. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15502. {
  15503. front: {
  15504. height: math.unit(6, "feet"),
  15505. weight: math.unit(190, "lb"),
  15506. name: "Front",
  15507. image: {
  15508. source: "./media/characters/sax/front.svg",
  15509. extra: 1187 / 973,
  15510. bottom: 0.042
  15511. }
  15512. },
  15513. },
  15514. [
  15515. {
  15516. name: "Micro",
  15517. height: math.unit(4, "inches"),
  15518. default: true
  15519. },
  15520. ]
  15521. ))
  15522. characterMakers.push(() => makeCharacter(
  15523. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15524. {
  15525. front: {
  15526. height: math.unit(6, "feet"),
  15527. weight: math.unit(150, "lb"),
  15528. name: "Front",
  15529. image: {
  15530. source: "./media/characters/pandora/front.svg",
  15531. extra: 2720 / 2556,
  15532. bottom: 0.015
  15533. }
  15534. },
  15535. back: {
  15536. height: math.unit(6, "feet"),
  15537. weight: math.unit(150, "lb"),
  15538. name: "Back",
  15539. image: {
  15540. source: "./media/characters/pandora/back.svg",
  15541. extra: 2720 / 2556,
  15542. bottom: 0.01
  15543. }
  15544. },
  15545. beans: {
  15546. height: math.unit(6 / 8, "feet"),
  15547. name: "Beans",
  15548. image: {
  15549. source: "./media/characters/pandora/beans.svg"
  15550. }
  15551. },
  15552. skirt: {
  15553. height: math.unit(6, "feet"),
  15554. weight: math.unit(150, "lb"),
  15555. name: "Skirt",
  15556. image: {
  15557. source: "./media/characters/pandora/skirt.svg",
  15558. extra: 1622 / 1525,
  15559. bottom: 0.015
  15560. }
  15561. },
  15562. hoodie: {
  15563. height: math.unit(6, "feet"),
  15564. weight: math.unit(150, "lb"),
  15565. name: "Hoodie",
  15566. image: {
  15567. source: "./media/characters/pandora/hoodie.svg",
  15568. extra: 1622 / 1525,
  15569. bottom: 0.015
  15570. }
  15571. },
  15572. casual: {
  15573. height: math.unit(6, "feet"),
  15574. weight: math.unit(150, "lb"),
  15575. name: "Casual",
  15576. image: {
  15577. source: "./media/characters/pandora/casual.svg",
  15578. extra: 1622 / 1525,
  15579. bottom: 0.015
  15580. }
  15581. },
  15582. },
  15583. [
  15584. {
  15585. name: "Normal",
  15586. height: math.unit(6, "feet")
  15587. },
  15588. {
  15589. name: "Big Steppy",
  15590. height: math.unit(1, "km"),
  15591. default: true
  15592. },
  15593. ]
  15594. ))
  15595. characterMakers.push(() => makeCharacter(
  15596. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15597. {
  15598. side: {
  15599. height: math.unit(10, "feet"),
  15600. weight: math.unit(800, "kg"),
  15601. name: "Side",
  15602. image: {
  15603. source: "./media/characters/venio-darcony/side.svg",
  15604. extra: 1373 / 1003,
  15605. bottom: 0.037
  15606. }
  15607. },
  15608. front: {
  15609. height: math.unit(19, "feet"),
  15610. weight: math.unit(800, "kg"),
  15611. name: "Front",
  15612. image: {
  15613. source: "./media/characters/venio-darcony/front.svg"
  15614. }
  15615. },
  15616. back: {
  15617. height: math.unit(19, "feet"),
  15618. weight: math.unit(800, "kg"),
  15619. name: "Back",
  15620. image: {
  15621. source: "./media/characters/venio-darcony/back.svg"
  15622. }
  15623. },
  15624. sideNsfw: {
  15625. height: math.unit(10, "feet"),
  15626. weight: math.unit(800, "kg"),
  15627. name: "Side (NSFW)",
  15628. image: {
  15629. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15630. extra: 1373 / 1003,
  15631. bottom: 0.037
  15632. }
  15633. },
  15634. frontNsfw: {
  15635. height: math.unit(19, "feet"),
  15636. weight: math.unit(800, "kg"),
  15637. name: "Front (NSFW)",
  15638. image: {
  15639. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15640. }
  15641. },
  15642. backNsfw: {
  15643. height: math.unit(19, "feet"),
  15644. weight: math.unit(800, "kg"),
  15645. name: "Back (NSFW)",
  15646. image: {
  15647. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15648. }
  15649. },
  15650. sideArmored: {
  15651. height: math.unit(10, "feet"),
  15652. weight: math.unit(800, "kg"),
  15653. name: "Side (Armored)",
  15654. image: {
  15655. source: "./media/characters/venio-darcony/side-armored.svg",
  15656. extra: 1373 / 1003,
  15657. bottom: 0.037
  15658. }
  15659. },
  15660. frontArmored: {
  15661. height: math.unit(19, "feet"),
  15662. weight: math.unit(900, "kg"),
  15663. name: "Front (Armored)",
  15664. image: {
  15665. source: "./media/characters/venio-darcony/front-armored.svg"
  15666. }
  15667. },
  15668. backArmored: {
  15669. height: math.unit(19, "feet"),
  15670. weight: math.unit(900, "kg"),
  15671. name: "Back (Armored)",
  15672. image: {
  15673. source: "./media/characters/venio-darcony/back-armored.svg"
  15674. }
  15675. },
  15676. sword: {
  15677. height: math.unit(10, "feet"),
  15678. weight: math.unit(50, "lb"),
  15679. name: "Sword",
  15680. image: {
  15681. source: "./media/characters/venio-darcony/sword.svg"
  15682. }
  15683. },
  15684. },
  15685. [
  15686. {
  15687. name: "Normal",
  15688. height: math.unit(10, "feet")
  15689. },
  15690. {
  15691. name: "Macro",
  15692. height: math.unit(130, "feet"),
  15693. default: true
  15694. },
  15695. {
  15696. name: "Macro+",
  15697. height: math.unit(240, "feet")
  15698. },
  15699. ]
  15700. ))
  15701. characterMakers.push(() => makeCharacter(
  15702. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15703. {
  15704. front: {
  15705. height: math.unit(6, "feet"),
  15706. weight: math.unit(150, "lb"),
  15707. name: "Front",
  15708. image: {
  15709. source: "./media/characters/veski/front.svg",
  15710. extra: 1299 / 1225,
  15711. bottom: 0.04
  15712. }
  15713. },
  15714. back: {
  15715. height: math.unit(6, "feet"),
  15716. weight: math.unit(150, "lb"),
  15717. name: "Back",
  15718. image: {
  15719. source: "./media/characters/veski/back.svg",
  15720. extra: 1299 / 1225,
  15721. bottom: 0.008
  15722. }
  15723. },
  15724. maw: {
  15725. height: math.unit(1.5 * 1.21, "feet"),
  15726. name: "Maw",
  15727. image: {
  15728. source: "./media/characters/veski/maw.svg"
  15729. }
  15730. },
  15731. },
  15732. [
  15733. {
  15734. name: "Macro",
  15735. height: math.unit(2, "km"),
  15736. default: true
  15737. },
  15738. ]
  15739. ))
  15740. characterMakers.push(() => makeCharacter(
  15741. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15742. {
  15743. front: {
  15744. height: math.unit(5 + 7 / 12, "feet"),
  15745. name: "Front",
  15746. image: {
  15747. source: "./media/characters/isabelle/front.svg",
  15748. extra: 2130 / 1976,
  15749. bottom: 0.05
  15750. }
  15751. },
  15752. },
  15753. [
  15754. {
  15755. name: "Supermicro",
  15756. height: math.unit(10, "micrometers")
  15757. },
  15758. {
  15759. name: "Micro",
  15760. height: math.unit(1, "inch")
  15761. },
  15762. {
  15763. name: "Tiny",
  15764. height: math.unit(5, "inches")
  15765. },
  15766. {
  15767. name: "Standard",
  15768. height: math.unit(5 + 7 / 12, "inches")
  15769. },
  15770. {
  15771. name: "Macro",
  15772. height: math.unit(80, "meters"),
  15773. default: true
  15774. },
  15775. {
  15776. name: "Megamacro",
  15777. height: math.unit(250, "meters")
  15778. },
  15779. {
  15780. name: "Gigamacro",
  15781. height: math.unit(5, "km")
  15782. },
  15783. {
  15784. name: "Cosmic",
  15785. height: math.unit(2.5e6, "miles")
  15786. },
  15787. ]
  15788. ))
  15789. characterMakers.push(() => makeCharacter(
  15790. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15791. {
  15792. front: {
  15793. height: math.unit(6, "feet"),
  15794. weight: math.unit(150, "lb"),
  15795. name: "Front",
  15796. image: {
  15797. source: "./media/characters/hanzo/front.svg",
  15798. extra: 374 / 344,
  15799. bottom: 0.02
  15800. }
  15801. },
  15802. },
  15803. [
  15804. {
  15805. name: "Normal",
  15806. height: math.unit(8, "feet"),
  15807. default: true
  15808. },
  15809. ]
  15810. ))
  15811. characterMakers.push(() => makeCharacter(
  15812. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15813. {
  15814. front: {
  15815. height: math.unit(7, "feet"),
  15816. weight: math.unit(130, "lb"),
  15817. name: "Front",
  15818. image: {
  15819. source: "./media/characters/anna/front.svg",
  15820. extra: 169 / 145,
  15821. bottom: 0.06
  15822. }
  15823. },
  15824. full: {
  15825. height: math.unit(4.96, "feet"),
  15826. weight: math.unit(220, "lb"),
  15827. name: "Full",
  15828. image: {
  15829. source: "./media/characters/anna/full.svg",
  15830. extra: 138 / 114,
  15831. bottom: 0.15
  15832. }
  15833. },
  15834. tongue: {
  15835. height: math.unit(2.53, "feet"),
  15836. name: "Tongue",
  15837. image: {
  15838. source: "./media/characters/anna/tongue.svg"
  15839. }
  15840. },
  15841. },
  15842. [
  15843. {
  15844. name: "Normal",
  15845. height: math.unit(7, "feet"),
  15846. default: true
  15847. },
  15848. ]
  15849. ))
  15850. characterMakers.push(() => makeCharacter(
  15851. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15852. {
  15853. front: {
  15854. height: math.unit(7, "feet"),
  15855. weight: math.unit(150, "lb"),
  15856. name: "Front",
  15857. image: {
  15858. source: "./media/characters/ian-corvid/front.svg",
  15859. extra: 150 / 142,
  15860. bottom: 0.02
  15861. }
  15862. },
  15863. back: {
  15864. height: math.unit(7, "feet"),
  15865. weight: math.unit(150, "lb"),
  15866. name: "Back",
  15867. image: {
  15868. source: "./media/characters/ian-corvid/back.svg",
  15869. extra: 150 / 143,
  15870. bottom: 0.01
  15871. }
  15872. },
  15873. stomping: {
  15874. height: math.unit(7, "feet"),
  15875. weight: math.unit(150, "lb"),
  15876. name: "Stomping",
  15877. image: {
  15878. source: "./media/characters/ian-corvid/stomping.svg",
  15879. extra: 76 / 72
  15880. }
  15881. },
  15882. sitting: {
  15883. height: math.unit(7 / 1.8, "feet"),
  15884. weight: math.unit(150, "lb"),
  15885. name: "Sitting",
  15886. image: {
  15887. source: "./media/characters/ian-corvid/sitting.svg",
  15888. extra: 1400 / 1269,
  15889. bottom: 0.15
  15890. }
  15891. },
  15892. },
  15893. [
  15894. {
  15895. name: "Tiny Microw",
  15896. height: math.unit(1, "inch")
  15897. },
  15898. {
  15899. name: "Microw",
  15900. height: math.unit(6, "inches")
  15901. },
  15902. {
  15903. name: "Crow",
  15904. height: math.unit(7 + 1 / 12, "feet"),
  15905. default: true
  15906. },
  15907. {
  15908. name: "Macrow",
  15909. height: math.unit(176, "feet")
  15910. },
  15911. ]
  15912. ))
  15913. characterMakers.push(() => makeCharacter(
  15914. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15915. {
  15916. front: {
  15917. height: math.unit(5 + 7 / 12, "feet"),
  15918. weight: math.unit(147, "lb"),
  15919. name: "Front",
  15920. image: {
  15921. source: "./media/characters/natalie-kellon/front.svg",
  15922. extra: 1214 / 1141,
  15923. bottom: 0.02
  15924. }
  15925. },
  15926. },
  15927. [
  15928. {
  15929. name: "Micro",
  15930. height: math.unit(1 / 16, "inch")
  15931. },
  15932. {
  15933. name: "Tiny",
  15934. height: math.unit(4, "inches")
  15935. },
  15936. {
  15937. name: "Normal",
  15938. height: math.unit(5 + 7 / 12, "feet"),
  15939. default: true
  15940. },
  15941. {
  15942. name: "Amazon",
  15943. height: math.unit(12, "feet")
  15944. },
  15945. {
  15946. name: "Giantess",
  15947. height: math.unit(160, "meters")
  15948. },
  15949. {
  15950. name: "Titaness",
  15951. height: math.unit(800, "meters")
  15952. },
  15953. ]
  15954. ))
  15955. characterMakers.push(() => makeCharacter(
  15956. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15957. {
  15958. front: {
  15959. height: math.unit(6, "feet"),
  15960. weight: math.unit(150, "lb"),
  15961. name: "Front",
  15962. image: {
  15963. source: "./media/characters/alluria/front.svg",
  15964. extra: 806 / 738,
  15965. bottom: 0.01
  15966. }
  15967. },
  15968. side: {
  15969. height: math.unit(6, "feet"),
  15970. weight: math.unit(150, "lb"),
  15971. name: "Side",
  15972. image: {
  15973. source: "./media/characters/alluria/side.svg",
  15974. extra: 800 / 750,
  15975. }
  15976. },
  15977. back: {
  15978. height: math.unit(6, "feet"),
  15979. weight: math.unit(150, "lb"),
  15980. name: "Back",
  15981. image: {
  15982. source: "./media/characters/alluria/back.svg",
  15983. extra: 806 / 738,
  15984. }
  15985. },
  15986. frontMaid: {
  15987. height: math.unit(6, "feet"),
  15988. weight: math.unit(150, "lb"),
  15989. name: "Front (Maid)",
  15990. image: {
  15991. source: "./media/characters/alluria/front-maid.svg",
  15992. extra: 806 / 738,
  15993. bottom: 0.01
  15994. }
  15995. },
  15996. sideMaid: {
  15997. height: math.unit(6, "feet"),
  15998. weight: math.unit(150, "lb"),
  15999. name: "Side (Maid)",
  16000. image: {
  16001. source: "./media/characters/alluria/side-maid.svg",
  16002. extra: 800 / 750,
  16003. bottom: 0.005
  16004. }
  16005. },
  16006. backMaid: {
  16007. height: math.unit(6, "feet"),
  16008. weight: math.unit(150, "lb"),
  16009. name: "Back (Maid)",
  16010. image: {
  16011. source: "./media/characters/alluria/back-maid.svg",
  16012. extra: 806 / 738,
  16013. }
  16014. },
  16015. },
  16016. [
  16017. {
  16018. name: "Micro",
  16019. height: math.unit(6, "inches"),
  16020. default: true
  16021. },
  16022. ]
  16023. ))
  16024. characterMakers.push(() => makeCharacter(
  16025. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16026. {
  16027. front: {
  16028. height: math.unit(6, "feet"),
  16029. weight: math.unit(150, "lb"),
  16030. name: "Front",
  16031. image: {
  16032. source: "./media/characters/kyle/front.svg",
  16033. extra: 1069 / 962,
  16034. bottom: 77.228 / 1727.45
  16035. }
  16036. },
  16037. },
  16038. [
  16039. {
  16040. name: "Macro",
  16041. height: math.unit(150, "feet"),
  16042. default: true
  16043. },
  16044. ]
  16045. ))
  16046. characterMakers.push(() => makeCharacter(
  16047. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16048. {
  16049. front: {
  16050. height: math.unit(6, "feet"),
  16051. weight: math.unit(300, "lb"),
  16052. name: "Front",
  16053. image: {
  16054. source: "./media/characters/duncan/front.svg",
  16055. extra: 1650 / 1482,
  16056. bottom: 0.05
  16057. }
  16058. },
  16059. },
  16060. [
  16061. {
  16062. name: "Macro",
  16063. height: math.unit(100, "feet"),
  16064. default: true
  16065. },
  16066. ]
  16067. ))
  16068. characterMakers.push(() => makeCharacter(
  16069. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16070. {
  16071. front: {
  16072. height: math.unit(5 + 4 / 12, "feet"),
  16073. weight: math.unit(220, "lb"),
  16074. name: "Front",
  16075. image: {
  16076. source: "./media/characters/memory/front.svg",
  16077. extra: 3641 / 3545,
  16078. bottom: 0.03
  16079. }
  16080. },
  16081. back: {
  16082. height: math.unit(5 + 4 / 12, "feet"),
  16083. weight: math.unit(220, "lb"),
  16084. name: "Back",
  16085. image: {
  16086. source: "./media/characters/memory/back.svg",
  16087. extra: 3641 / 3545,
  16088. bottom: 0.025
  16089. }
  16090. },
  16091. frontSkirt: {
  16092. height: math.unit(5 + 4 / 12, "feet"),
  16093. weight: math.unit(220, "lb"),
  16094. name: "Front (Skirt)",
  16095. image: {
  16096. source: "./media/characters/memory/front-skirt.svg",
  16097. extra: 3641 / 3545,
  16098. bottom: 0.03
  16099. }
  16100. },
  16101. frontDress: {
  16102. height: math.unit(5 + 4 / 12, "feet"),
  16103. weight: math.unit(220, "lb"),
  16104. name: "Front (Dress)",
  16105. image: {
  16106. source: "./media/characters/memory/front-dress.svg",
  16107. extra: 3641 / 3545,
  16108. bottom: 0.03
  16109. }
  16110. },
  16111. },
  16112. [
  16113. {
  16114. name: "Micro",
  16115. height: math.unit(6, "inches"),
  16116. default: true
  16117. },
  16118. {
  16119. name: "Normal",
  16120. height: math.unit(5 + 4 / 12, "feet")
  16121. },
  16122. ]
  16123. ))
  16124. characterMakers.push(() => makeCharacter(
  16125. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16126. {
  16127. front: {
  16128. height: math.unit(4 + 11 / 12, "feet"),
  16129. weight: math.unit(100, "lb"),
  16130. name: "Front",
  16131. image: {
  16132. source: "./media/characters/luno/front.svg",
  16133. extra: 1535 / 1487,
  16134. bottom: 0.03
  16135. }
  16136. },
  16137. },
  16138. [
  16139. {
  16140. name: "Micro",
  16141. height: math.unit(3, "inches")
  16142. },
  16143. {
  16144. name: "Normal",
  16145. height: math.unit(4 + 11 / 12, "feet"),
  16146. default: true
  16147. },
  16148. {
  16149. name: "Macro",
  16150. height: math.unit(300, "feet")
  16151. },
  16152. {
  16153. name: "Megamacro",
  16154. height: math.unit(700, "miles")
  16155. },
  16156. ]
  16157. ))
  16158. characterMakers.push(() => makeCharacter(
  16159. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16160. {
  16161. front: {
  16162. height: math.unit(6 + 2 / 12, "feet"),
  16163. weight: math.unit(170, "lb"),
  16164. name: "Front",
  16165. image: {
  16166. source: "./media/characters/jamesy/front.svg",
  16167. extra: 440 / 382,
  16168. bottom: 0.005
  16169. }
  16170. },
  16171. },
  16172. [
  16173. {
  16174. name: "Micro",
  16175. height: math.unit(3, "inches")
  16176. },
  16177. {
  16178. name: "Normal",
  16179. height: math.unit(6 + 2 / 12, "feet"),
  16180. default: true
  16181. },
  16182. {
  16183. name: "Macro",
  16184. height: math.unit(300, "feet")
  16185. },
  16186. {
  16187. name: "Megamacro",
  16188. height: math.unit(700, "miles")
  16189. },
  16190. ]
  16191. ))
  16192. characterMakers.push(() => makeCharacter(
  16193. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16194. {
  16195. front: {
  16196. height: math.unit(6, "feet"),
  16197. weight: math.unit(160, "lb"),
  16198. name: "Front",
  16199. image: {
  16200. source: "./media/characters/mark/front.svg",
  16201. extra: 3300 / 3100,
  16202. bottom: 136.42 / 3440.47
  16203. }
  16204. },
  16205. },
  16206. [
  16207. {
  16208. name: "Macro",
  16209. height: math.unit(120, "meters")
  16210. },
  16211. {
  16212. name: "Bigger Macro",
  16213. height: math.unit(350, "meters")
  16214. },
  16215. {
  16216. name: "Megamacro",
  16217. height: math.unit(8, "km"),
  16218. default: true
  16219. },
  16220. {
  16221. name: "Continental",
  16222. height: math.unit(4550, "km")
  16223. },
  16224. {
  16225. name: "Planetary",
  16226. height: math.unit(65000, "km")
  16227. },
  16228. ]
  16229. ))
  16230. characterMakers.push(() => makeCharacter(
  16231. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16232. {
  16233. front: {
  16234. height: math.unit(6, "feet"),
  16235. weight: math.unit(400, "lb"),
  16236. name: "Front",
  16237. image: {
  16238. source: "./media/characters/mac/front.svg",
  16239. extra: 1048 / 987.7,
  16240. bottom: 60 / 1107.6,
  16241. }
  16242. },
  16243. },
  16244. [
  16245. {
  16246. name: "Macro",
  16247. height: math.unit(500, "feet"),
  16248. default: true
  16249. },
  16250. ]
  16251. ))
  16252. characterMakers.push(() => makeCharacter(
  16253. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16254. {
  16255. front: {
  16256. height: math.unit(5 + 2 / 12, "feet"),
  16257. weight: math.unit(190, "lb"),
  16258. name: "Front",
  16259. image: {
  16260. source: "./media/characters/bari/front.svg",
  16261. extra: 3156 / 2880,
  16262. bottom: 0.03
  16263. }
  16264. },
  16265. back: {
  16266. height: math.unit(5 + 2 / 12, "feet"),
  16267. weight: math.unit(190, "lb"),
  16268. name: "Back",
  16269. image: {
  16270. source: "./media/characters/bari/back.svg",
  16271. extra: 3260 / 2834,
  16272. bottom: 0.025
  16273. }
  16274. },
  16275. frontPlush: {
  16276. height: math.unit(5 + 2 / 12, "feet"),
  16277. weight: math.unit(190, "lb"),
  16278. name: "Front (Plush)",
  16279. image: {
  16280. source: "./media/characters/bari/front-plush.svg",
  16281. extra: 1112 / 1061,
  16282. bottom: 0.002
  16283. }
  16284. },
  16285. },
  16286. [
  16287. {
  16288. name: "Micro",
  16289. height: math.unit(3, "inches")
  16290. },
  16291. {
  16292. name: "Normal",
  16293. height: math.unit(5 + 2 / 12, "feet"),
  16294. default: true
  16295. },
  16296. {
  16297. name: "Macro",
  16298. height: math.unit(20, "feet")
  16299. },
  16300. ]
  16301. ))
  16302. characterMakers.push(() => makeCharacter(
  16303. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16304. {
  16305. front: {
  16306. height: math.unit(6 + 1 / 12, "feet"),
  16307. weight: math.unit(275, "lb"),
  16308. name: "Front",
  16309. image: {
  16310. source: "./media/characters/hunter-misha-raven/front.svg"
  16311. }
  16312. },
  16313. },
  16314. [
  16315. {
  16316. name: "Mortal",
  16317. height: math.unit(6 + 1 / 12, "feet")
  16318. },
  16319. {
  16320. name: "Divine",
  16321. height: math.unit(1.12134e34, "parsecs"),
  16322. default: true
  16323. },
  16324. ]
  16325. ))
  16326. characterMakers.push(() => makeCharacter(
  16327. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16328. {
  16329. front: {
  16330. height: math.unit(6 + 3 / 12, "feet"),
  16331. weight: math.unit(220, "lb"),
  16332. name: "Front",
  16333. image: {
  16334. source: "./media/characters/max-calore/front.svg",
  16335. extra: 1700 / 1648,
  16336. bottom: 0.01
  16337. }
  16338. },
  16339. back: {
  16340. height: math.unit(6 + 3 / 12, "feet"),
  16341. weight: math.unit(220, "lb"),
  16342. name: "Back",
  16343. image: {
  16344. source: "./media/characters/max-calore/back.svg",
  16345. extra: 1700 / 1648,
  16346. bottom: 0.01
  16347. }
  16348. },
  16349. },
  16350. [
  16351. {
  16352. name: "Normal",
  16353. height: math.unit(6 + 3 / 12, "feet"),
  16354. default: true
  16355. },
  16356. ]
  16357. ))
  16358. characterMakers.push(() => makeCharacter(
  16359. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16360. {
  16361. side: {
  16362. height: math.unit(2 + 8 / 12, "feet"),
  16363. weight: math.unit(99, "lb"),
  16364. name: "Side",
  16365. image: {
  16366. source: "./media/characters/aspen/side.svg",
  16367. extra: 152 / 138,
  16368. bottom: 0.032
  16369. }
  16370. },
  16371. },
  16372. [
  16373. {
  16374. name: "Normal",
  16375. height: math.unit(2 + 8 / 12, "feet"),
  16376. default: true
  16377. },
  16378. ]
  16379. ))
  16380. characterMakers.push(() => makeCharacter(
  16381. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16382. {
  16383. side: {
  16384. height: math.unit(3 + 2 / 12, "feet"),
  16385. weight: math.unit(224, "lb"),
  16386. name: "Side",
  16387. image: {
  16388. source: "./media/characters/sheila-feral-wolf/side.svg",
  16389. extra: 179 / 166,
  16390. bottom: 0.03
  16391. }
  16392. },
  16393. },
  16394. [
  16395. {
  16396. name: "Normal",
  16397. height: math.unit(3 + 2 / 12, "feet"),
  16398. default: true
  16399. },
  16400. ]
  16401. ))
  16402. characterMakers.push(() => makeCharacter(
  16403. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16404. {
  16405. side: {
  16406. height: math.unit(1 + 9 / 12, "feet"),
  16407. weight: math.unit(38, "lb"),
  16408. name: "Side",
  16409. image: {
  16410. source: "./media/characters/michelle/side.svg",
  16411. extra: 147 / 136.7,
  16412. bottom: 0.03
  16413. }
  16414. },
  16415. },
  16416. [
  16417. {
  16418. name: "Normal",
  16419. height: math.unit(1 + 9 / 12, "feet"),
  16420. default: true
  16421. },
  16422. ]
  16423. ))
  16424. characterMakers.push(() => makeCharacter(
  16425. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16426. {
  16427. front: {
  16428. height: math.unit(1 + 1 / 12, "feet"),
  16429. weight: math.unit(18, "lb"),
  16430. name: "Front",
  16431. image: {
  16432. source: "./media/characters/nino/front.svg"
  16433. }
  16434. },
  16435. },
  16436. [
  16437. {
  16438. name: "Normal",
  16439. height: math.unit(1 + 1 / 12, "feet"),
  16440. default: true
  16441. },
  16442. ]
  16443. ))
  16444. characterMakers.push(() => makeCharacter(
  16445. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16446. {
  16447. front: {
  16448. height: math.unit(1, "feet"),
  16449. weight: math.unit(16, "lb"),
  16450. name: "Front",
  16451. image: {
  16452. source: "./media/characters/viola/front.svg"
  16453. }
  16454. },
  16455. },
  16456. [
  16457. {
  16458. name: "Normal",
  16459. height: math.unit(1, "feet"),
  16460. default: true
  16461. },
  16462. ]
  16463. ))
  16464. characterMakers.push(() => makeCharacter(
  16465. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16466. {
  16467. front: {
  16468. height: math.unit(6 + 5 / 12, "feet"),
  16469. weight: math.unit(580, "lb"),
  16470. name: "Front",
  16471. image: {
  16472. source: "./media/characters/atlas/front.svg",
  16473. extra: 298.5 / 290,
  16474. bottom: 0.015
  16475. }
  16476. },
  16477. },
  16478. [
  16479. {
  16480. name: "Normal",
  16481. height: math.unit(6 + 5 / 12, "feet"),
  16482. default: true
  16483. },
  16484. ]
  16485. ))
  16486. characterMakers.push(() => makeCharacter(
  16487. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16488. {
  16489. side: {
  16490. height: math.unit(1 + 10 / 12, "feet"),
  16491. weight: math.unit(25, "lb"),
  16492. name: "Side",
  16493. image: {
  16494. source: "./media/characters/davy/side.svg",
  16495. extra: 200 / 170,
  16496. bottom: 0.01
  16497. }
  16498. },
  16499. },
  16500. [
  16501. {
  16502. name: "Normal",
  16503. height: math.unit(1 + 10 / 12, "feet"),
  16504. default: true
  16505. },
  16506. ]
  16507. ))
  16508. characterMakers.push(() => makeCharacter(
  16509. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16510. {
  16511. side: {
  16512. height: math.unit(4 + 8 / 12, "feet"),
  16513. weight: math.unit(166, "lb"),
  16514. name: "Side",
  16515. image: {
  16516. source: "./media/characters/fiona/side.svg",
  16517. extra: 232 / 220,
  16518. bottom: 0.03
  16519. }
  16520. },
  16521. },
  16522. [
  16523. {
  16524. name: "Normal",
  16525. height: math.unit(4 + 8 / 12, "feet"),
  16526. default: true
  16527. },
  16528. ]
  16529. ))
  16530. characterMakers.push(() => makeCharacter(
  16531. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16532. {
  16533. front: {
  16534. height: math.unit(2, "feet"),
  16535. weight: math.unit(62, "lb"),
  16536. name: "Front",
  16537. image: {
  16538. source: "./media/characters/lyla/front.svg",
  16539. bottom: 0.1
  16540. }
  16541. },
  16542. },
  16543. [
  16544. {
  16545. name: "Normal",
  16546. height: math.unit(2, "feet"),
  16547. default: true
  16548. },
  16549. ]
  16550. ))
  16551. characterMakers.push(() => makeCharacter(
  16552. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16553. {
  16554. side: {
  16555. height: math.unit(1.8, "feet"),
  16556. weight: math.unit(44, "lb"),
  16557. name: "Side",
  16558. image: {
  16559. source: "./media/characters/perseus/side.svg",
  16560. bottom: 0.21
  16561. }
  16562. },
  16563. },
  16564. [
  16565. {
  16566. name: "Normal",
  16567. height: math.unit(1.8, "feet"),
  16568. default: true
  16569. },
  16570. ]
  16571. ))
  16572. characterMakers.push(() => makeCharacter(
  16573. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16574. {
  16575. side: {
  16576. height: math.unit(4 + 2 / 12, "feet"),
  16577. weight: math.unit(20, "lb"),
  16578. name: "Side",
  16579. image: {
  16580. source: "./media/characters/remus/side.svg"
  16581. }
  16582. },
  16583. },
  16584. [
  16585. {
  16586. name: "Normal",
  16587. height: math.unit(4 + 2 / 12, "feet"),
  16588. default: true
  16589. },
  16590. ]
  16591. ))
  16592. characterMakers.push(() => makeCharacter(
  16593. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16594. {
  16595. front: {
  16596. height: math.unit(4 + 11 / 12, "feet"),
  16597. weight: math.unit(114, "lb"),
  16598. name: "Front",
  16599. image: {
  16600. source: "./media/characters/raf/front.svg",
  16601. bottom: 20.5 / 1863
  16602. }
  16603. },
  16604. side: {
  16605. height: math.unit(4 + 11 / 12, "feet"),
  16606. weight: math.unit(114, "lb"),
  16607. name: "Side",
  16608. image: {
  16609. source: "./media/characters/raf/side.svg",
  16610. bottom: 22 / 1822
  16611. }
  16612. },
  16613. },
  16614. [
  16615. {
  16616. name: "Micro",
  16617. height: math.unit(2, "inches")
  16618. },
  16619. {
  16620. name: "Normal",
  16621. height: math.unit(4 + 11 / 12, "feet"),
  16622. default: true
  16623. },
  16624. {
  16625. name: "Macro",
  16626. height: math.unit(70, "feet")
  16627. },
  16628. ]
  16629. ))
  16630. characterMakers.push(() => makeCharacter(
  16631. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16632. {
  16633. front: {
  16634. height: math.unit(1.5, "meters"),
  16635. weight: math.unit(68, "kg"),
  16636. name: "Front",
  16637. image: {
  16638. source: "./media/characters/liam-einarr/front.svg",
  16639. extra: 2822 / 2666
  16640. }
  16641. },
  16642. back: {
  16643. height: math.unit(1.5, "meters"),
  16644. weight: math.unit(68, "kg"),
  16645. name: "Back",
  16646. image: {
  16647. source: "./media/characters/liam-einarr/back.svg",
  16648. extra: 2822 / 2666,
  16649. bottom: 0.015
  16650. }
  16651. },
  16652. },
  16653. [
  16654. {
  16655. name: "Normal",
  16656. height: math.unit(1.5, "meters"),
  16657. default: true
  16658. },
  16659. {
  16660. name: "Macro",
  16661. height: math.unit(150, "meters")
  16662. },
  16663. {
  16664. name: "Megamacro",
  16665. height: math.unit(35, "km")
  16666. },
  16667. ]
  16668. ))
  16669. characterMakers.push(() => makeCharacter(
  16670. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16671. {
  16672. front: {
  16673. height: math.unit(6, "feet"),
  16674. weight: math.unit(75, "kg"),
  16675. name: "Front",
  16676. image: {
  16677. source: "./media/characters/linda/front.svg",
  16678. extra: 930 / 874,
  16679. bottom: 0.004
  16680. }
  16681. },
  16682. },
  16683. [
  16684. {
  16685. name: "Normal",
  16686. height: math.unit(6, "feet"),
  16687. default: true
  16688. },
  16689. ]
  16690. ))
  16691. characterMakers.push(() => makeCharacter(
  16692. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16693. {
  16694. front: {
  16695. height: math.unit(6 + 8 / 12, "feet"),
  16696. weight: math.unit(220, "lb"),
  16697. name: "Front",
  16698. image: {
  16699. source: "./media/characters/caylex/front.svg",
  16700. extra: 821 / 772,
  16701. bottom: 0.07
  16702. }
  16703. },
  16704. back: {
  16705. height: math.unit(6 + 8 / 12, "feet"),
  16706. weight: math.unit(220, "lb"),
  16707. name: "Back",
  16708. image: {
  16709. source: "./media/characters/caylex/back.svg",
  16710. extra: 821 / 772,
  16711. bottom: 0.022
  16712. }
  16713. },
  16714. hand: {
  16715. height: math.unit(1.25, "feet"),
  16716. name: "Hand",
  16717. image: {
  16718. source: "./media/characters/caylex/hand.svg"
  16719. }
  16720. },
  16721. foot: {
  16722. height: math.unit(1.6, "feet"),
  16723. name: "Foot",
  16724. image: {
  16725. source: "./media/characters/caylex/foot.svg"
  16726. }
  16727. },
  16728. armored: {
  16729. height: math.unit(6 + 8 / 12, "feet"),
  16730. weight: math.unit(250, "lb"),
  16731. name: "Armored",
  16732. image: {
  16733. source: "./media/characters/caylex/armored.svg",
  16734. extra: 1420 / 1310,
  16735. bottom: 0.045
  16736. }
  16737. },
  16738. },
  16739. [
  16740. {
  16741. name: "Normal",
  16742. height: math.unit(6 + 8 / 12, "feet"),
  16743. default: true
  16744. },
  16745. {
  16746. name: "Normal+",
  16747. height: math.unit(12, "feet")
  16748. },
  16749. ]
  16750. ))
  16751. characterMakers.push(() => makeCharacter(
  16752. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16753. {
  16754. front: {
  16755. height: math.unit(7 + 6 / 12, "feet"),
  16756. weight: math.unit(288, "lb"),
  16757. name: "Front",
  16758. image: {
  16759. source: "./media/characters/alana/front.svg",
  16760. extra: 679 / 653,
  16761. bottom: 22.5 / 701
  16762. }
  16763. },
  16764. },
  16765. [
  16766. {
  16767. name: "Normal",
  16768. height: math.unit(7 + 6 / 12, "feet")
  16769. },
  16770. {
  16771. name: "Large",
  16772. height: math.unit(50, "feet")
  16773. },
  16774. {
  16775. name: "Macro",
  16776. height: math.unit(100, "feet"),
  16777. default: true
  16778. },
  16779. {
  16780. name: "Macro+",
  16781. height: math.unit(200, "feet")
  16782. },
  16783. ]
  16784. ))
  16785. characterMakers.push(() => makeCharacter(
  16786. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16787. {
  16788. front: {
  16789. height: math.unit(6 + 1 / 12, "feet"),
  16790. weight: math.unit(210, "lb"),
  16791. name: "Front",
  16792. image: {
  16793. source: "./media/characters/hasani/front.svg",
  16794. extra: 244 / 232,
  16795. bottom: 0.01
  16796. }
  16797. },
  16798. back: {
  16799. height: math.unit(6 + 1 / 12, "feet"),
  16800. weight: math.unit(210, "lb"),
  16801. name: "Back",
  16802. image: {
  16803. source: "./media/characters/hasani/back.svg",
  16804. extra: 244 / 232,
  16805. bottom: 0.01
  16806. }
  16807. },
  16808. },
  16809. [
  16810. {
  16811. name: "Normal",
  16812. height: math.unit(6 + 1 / 12, "feet")
  16813. },
  16814. {
  16815. name: "Macro",
  16816. height: math.unit(175, "feet"),
  16817. default: true
  16818. },
  16819. ]
  16820. ))
  16821. characterMakers.push(() => makeCharacter(
  16822. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16823. {
  16824. front: {
  16825. height: math.unit(1.82, "meters"),
  16826. weight: math.unit(140, "lb"),
  16827. name: "Front",
  16828. image: {
  16829. source: "./media/characters/nita/front.svg",
  16830. extra: 2473 / 2363,
  16831. bottom: 0.01
  16832. }
  16833. },
  16834. },
  16835. [
  16836. {
  16837. name: "Normal",
  16838. height: math.unit(1.82, "m")
  16839. },
  16840. {
  16841. name: "Macro",
  16842. height: math.unit(300, "m")
  16843. },
  16844. {
  16845. name: "Mistake Canon",
  16846. height: math.unit(0.5, "miles"),
  16847. default: true
  16848. },
  16849. {
  16850. name: "Big Mistake",
  16851. height: math.unit(13, "miles")
  16852. },
  16853. {
  16854. name: "Playing God",
  16855. height: math.unit(2450, "miles")
  16856. },
  16857. ]
  16858. ))
  16859. characterMakers.push(() => makeCharacter(
  16860. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16861. {
  16862. front: {
  16863. height: math.unit(4, "feet"),
  16864. weight: math.unit(120, "lb"),
  16865. name: "Front",
  16866. image: {
  16867. source: "./media/characters/shiriko/front.svg",
  16868. extra: 195 / 188
  16869. }
  16870. },
  16871. },
  16872. [
  16873. {
  16874. name: "Normal",
  16875. height: math.unit(4, "feet"),
  16876. default: true
  16877. },
  16878. ]
  16879. ))
  16880. characterMakers.push(() => makeCharacter(
  16881. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16882. {
  16883. front: {
  16884. height: math.unit(6, "feet"),
  16885. name: "front",
  16886. image: {
  16887. source: "./media/characters/deja/front.svg",
  16888. extra: 926 / 840,
  16889. bottom: 0.07
  16890. }
  16891. },
  16892. },
  16893. [
  16894. {
  16895. name: "Planck Length",
  16896. height: math.unit(1.6e-35, "meters")
  16897. },
  16898. {
  16899. name: "Normal",
  16900. height: math.unit(30.48, "meters"),
  16901. default: true
  16902. },
  16903. {
  16904. name: "Universal",
  16905. height: math.unit(8.8e26, "meters")
  16906. },
  16907. ]
  16908. ))
  16909. characterMakers.push(() => makeCharacter(
  16910. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16911. {
  16912. side: {
  16913. height: math.unit(8, "feet"),
  16914. weight: math.unit(6300, "lb"),
  16915. name: "Side",
  16916. image: {
  16917. source: "./media/characters/anima/side.svg",
  16918. bottom: 0.035
  16919. }
  16920. },
  16921. },
  16922. [
  16923. {
  16924. name: "Normal",
  16925. height: math.unit(8, "feet"),
  16926. default: true
  16927. },
  16928. ]
  16929. ))
  16930. characterMakers.push(() => makeCharacter(
  16931. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16932. {
  16933. front: {
  16934. height: math.unit(8, "feet"),
  16935. weight: math.unit(350, "lb"),
  16936. name: "Front",
  16937. image: {
  16938. source: "./media/characters/bianca/front.svg",
  16939. extra: 234 / 225,
  16940. bottom: 0.03
  16941. }
  16942. },
  16943. },
  16944. [
  16945. {
  16946. name: "Normal",
  16947. height: math.unit(8, "feet"),
  16948. default: true
  16949. },
  16950. ]
  16951. ))
  16952. characterMakers.push(() => makeCharacter(
  16953. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16954. {
  16955. front: {
  16956. height: math.unit(6, "feet"),
  16957. weight: math.unit(150, "lb"),
  16958. name: "Front",
  16959. image: {
  16960. source: "./media/characters/adinia/front.svg",
  16961. extra: 1845 / 1672,
  16962. bottom: 0.02
  16963. }
  16964. },
  16965. back: {
  16966. height: math.unit(6, "feet"),
  16967. weight: math.unit(150, "lb"),
  16968. name: "Back",
  16969. image: {
  16970. source: "./media/characters/adinia/back.svg",
  16971. extra: 1845 / 1672,
  16972. bottom: 0.002
  16973. }
  16974. },
  16975. },
  16976. [
  16977. {
  16978. name: "Normal",
  16979. height: math.unit(11 + 5 / 12, "feet"),
  16980. default: true
  16981. },
  16982. ]
  16983. ))
  16984. characterMakers.push(() => makeCharacter(
  16985. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16986. {
  16987. front: {
  16988. height: math.unit(3, "meters"),
  16989. weight: math.unit(200, "kg"),
  16990. name: "Front",
  16991. image: {
  16992. source: "./media/characters/lykasa/front.svg",
  16993. extra: 1076 / 976,
  16994. bottom: 0.06
  16995. }
  16996. },
  16997. },
  16998. [
  16999. {
  17000. name: "Normal",
  17001. height: math.unit(3, "meters")
  17002. },
  17003. {
  17004. name: "Kaiju",
  17005. height: math.unit(120, "meters"),
  17006. default: true
  17007. },
  17008. {
  17009. name: "Mega Kaiju",
  17010. height: math.unit(240, "km")
  17011. },
  17012. {
  17013. name: "Giga Kaiju",
  17014. height: math.unit(400, "megameters")
  17015. },
  17016. {
  17017. name: "Tera Kaiju",
  17018. height: math.unit(800, "gigameters")
  17019. },
  17020. {
  17021. name: "Kaiju Dragon Goddess",
  17022. height: math.unit(26, "zettaparsecs")
  17023. },
  17024. ]
  17025. ))
  17026. characterMakers.push(() => makeCharacter(
  17027. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17028. {
  17029. side: {
  17030. height: math.unit(283 / 124 * 6, "feet"),
  17031. weight: math.unit(35000, "lb"),
  17032. name: "Side",
  17033. image: {
  17034. source: "./media/characters/malfaren/side.svg",
  17035. extra: 2500 / 1010,
  17036. bottom: 0.01
  17037. }
  17038. },
  17039. front: {
  17040. height: math.unit(22.36, "feet"),
  17041. weight: math.unit(35000, "lb"),
  17042. name: "Front",
  17043. image: {
  17044. source: "./media/characters/malfaren/front.svg",
  17045. extra: 1631 / 1476,
  17046. bottom: 0.01
  17047. }
  17048. },
  17049. maw: {
  17050. height: math.unit(6.9, "feet"),
  17051. name: "Maw",
  17052. image: {
  17053. source: "./media/characters/malfaren/maw.svg"
  17054. }
  17055. },
  17056. },
  17057. [
  17058. {
  17059. name: "Big",
  17060. height: math.unit(283 / 162 * 6, "feet"),
  17061. },
  17062. {
  17063. name: "Bigger",
  17064. height: math.unit(283 / 124 * 6, "feet")
  17065. },
  17066. {
  17067. name: "Massive",
  17068. height: math.unit(283 / 92 * 6, "feet"),
  17069. default: true
  17070. },
  17071. {
  17072. name: "👀💦",
  17073. height: math.unit(283 / 73 * 6, "feet"),
  17074. },
  17075. ]
  17076. ))
  17077. characterMakers.push(() => makeCharacter(
  17078. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17079. {
  17080. front: {
  17081. height: math.unit(1.7, "m"),
  17082. weight: math.unit(70, "kg"),
  17083. name: "Front",
  17084. image: {
  17085. source: "./media/characters/kernel/front.svg",
  17086. extra: 222 / 210,
  17087. bottom: 0.007
  17088. }
  17089. },
  17090. },
  17091. [
  17092. {
  17093. name: "Nano",
  17094. height: math.unit(17, "micrometers")
  17095. },
  17096. {
  17097. name: "Micro",
  17098. height: math.unit(1.7, "mm")
  17099. },
  17100. {
  17101. name: "Small",
  17102. height: math.unit(1.7, "cm")
  17103. },
  17104. {
  17105. name: "Normal",
  17106. height: math.unit(1.7, "m"),
  17107. default: true
  17108. },
  17109. ]
  17110. ))
  17111. characterMakers.push(() => makeCharacter(
  17112. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17113. {
  17114. front: {
  17115. height: math.unit(1.75, "meters"),
  17116. weight: math.unit(65, "kg"),
  17117. name: "Front",
  17118. image: {
  17119. source: "./media/characters/jayne-folest/front.svg",
  17120. extra: 2115 / 2007,
  17121. bottom: 0.02
  17122. }
  17123. },
  17124. back: {
  17125. height: math.unit(1.75, "meters"),
  17126. weight: math.unit(65, "kg"),
  17127. name: "Back",
  17128. image: {
  17129. source: "./media/characters/jayne-folest/back.svg",
  17130. extra: 2115 / 2007,
  17131. bottom: 0.005
  17132. }
  17133. },
  17134. frontClothed: {
  17135. height: math.unit(1.75, "meters"),
  17136. weight: math.unit(65, "kg"),
  17137. name: "Front (Clothed)",
  17138. image: {
  17139. source: "./media/characters/jayne-folest/front-clothed.svg",
  17140. extra: 2115 / 2007,
  17141. bottom: 0.035
  17142. }
  17143. },
  17144. hand: {
  17145. height: math.unit(1 / 1.260, "feet"),
  17146. name: "Hand",
  17147. image: {
  17148. source: "./media/characters/jayne-folest/hand.svg"
  17149. }
  17150. },
  17151. foot: {
  17152. height: math.unit(1 / 0.918, "feet"),
  17153. name: "Foot",
  17154. image: {
  17155. source: "./media/characters/jayne-folest/foot.svg"
  17156. }
  17157. },
  17158. },
  17159. [
  17160. {
  17161. name: "Micro",
  17162. height: math.unit(4, "cm")
  17163. },
  17164. {
  17165. name: "Normal",
  17166. height: math.unit(1.75, "meters")
  17167. },
  17168. {
  17169. name: "Macro",
  17170. height: math.unit(47.5, "meters"),
  17171. default: true
  17172. },
  17173. ]
  17174. ))
  17175. characterMakers.push(() => makeCharacter(
  17176. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17177. {
  17178. front: {
  17179. height: math.unit(180, "cm"),
  17180. weight: math.unit(70, "kg"),
  17181. name: "Front",
  17182. image: {
  17183. source: "./media/characters/algier/front.svg",
  17184. extra: 596 / 572,
  17185. bottom: 0.04
  17186. }
  17187. },
  17188. back: {
  17189. height: math.unit(180, "cm"),
  17190. weight: math.unit(70, "kg"),
  17191. name: "Back",
  17192. image: {
  17193. source: "./media/characters/algier/back.svg",
  17194. extra: 596 / 572,
  17195. bottom: 0.025
  17196. }
  17197. },
  17198. frontdressed: {
  17199. height: math.unit(180, "cm"),
  17200. weight: math.unit(150, "kg"),
  17201. name: "Front-dressed",
  17202. image: {
  17203. source: "./media/characters/algier/front-dressed.svg",
  17204. extra: 596 / 572,
  17205. bottom: 0.038
  17206. }
  17207. },
  17208. },
  17209. [
  17210. {
  17211. name: "Micro",
  17212. height: math.unit(5, "cm")
  17213. },
  17214. {
  17215. name: "Normal",
  17216. height: math.unit(180, "cm"),
  17217. default: true
  17218. },
  17219. {
  17220. name: "Macro",
  17221. height: math.unit(64, "m")
  17222. },
  17223. ]
  17224. ))
  17225. characterMakers.push(() => makeCharacter(
  17226. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17227. {
  17228. upright: {
  17229. height: math.unit(7, "feet"),
  17230. weight: math.unit(300, "lb"),
  17231. name: "Upright",
  17232. image: {
  17233. source: "./media/characters/pretzel/upright.svg",
  17234. extra: 534 / 522,
  17235. bottom: 0.065
  17236. }
  17237. },
  17238. sprawling: {
  17239. height: math.unit(3.75, "feet"),
  17240. weight: math.unit(300, "lb"),
  17241. name: "Sprawling",
  17242. image: {
  17243. source: "./media/characters/pretzel/sprawling.svg",
  17244. extra: 314 / 281,
  17245. bottom: 0.1
  17246. }
  17247. },
  17248. tongue: {
  17249. height: math.unit(2, "feet"),
  17250. name: "Tongue",
  17251. image: {
  17252. source: "./media/characters/pretzel/tongue.svg"
  17253. }
  17254. },
  17255. },
  17256. [
  17257. {
  17258. name: "Normal",
  17259. height: math.unit(7, "feet"),
  17260. default: true
  17261. },
  17262. {
  17263. name: "Oversized",
  17264. height: math.unit(15, "feet")
  17265. },
  17266. {
  17267. name: "Huge",
  17268. height: math.unit(30, "feet")
  17269. },
  17270. {
  17271. name: "Macro",
  17272. height: math.unit(250, "feet")
  17273. },
  17274. ]
  17275. ))
  17276. characterMakers.push(() => makeCharacter(
  17277. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17278. {
  17279. sideFront: {
  17280. height: math.unit(5 + 2 / 12, "feet"),
  17281. weight: math.unit(120, "lb"),
  17282. name: "Front Side",
  17283. image: {
  17284. source: "./media/characters/roxi/side-front.svg",
  17285. extra: 2924 / 2717,
  17286. bottom: 0.08
  17287. }
  17288. },
  17289. sideBack: {
  17290. height: math.unit(5 + 2 / 12, "feet"),
  17291. weight: math.unit(120, "lb"),
  17292. name: "Back Side",
  17293. image: {
  17294. source: "./media/characters/roxi/side-back.svg",
  17295. extra: 2904 / 2693,
  17296. bottom: 0.06
  17297. }
  17298. },
  17299. front: {
  17300. height: math.unit(5 + 2 / 12, "feet"),
  17301. weight: math.unit(120, "lb"),
  17302. name: "Front",
  17303. image: {
  17304. source: "./media/characters/roxi/front.svg",
  17305. extra: 2028 / 1907,
  17306. bottom: 0.01
  17307. }
  17308. },
  17309. frontAlt: {
  17310. height: math.unit(5 + 2 / 12, "feet"),
  17311. weight: math.unit(120, "lb"),
  17312. name: "Front (Alt)",
  17313. image: {
  17314. source: "./media/characters/roxi/front-alt.svg",
  17315. extra: 1828 / 1798,
  17316. bottom: 0.01
  17317. }
  17318. },
  17319. sitting: {
  17320. height: math.unit(2.8, "feet"),
  17321. weight: math.unit(120, "lb"),
  17322. name: "Sitting",
  17323. image: {
  17324. source: "./media/characters/roxi/sitting.svg",
  17325. extra: 2660 / 2462,
  17326. bottom: 0.1
  17327. }
  17328. },
  17329. },
  17330. [
  17331. {
  17332. name: "Normal",
  17333. height: math.unit(5 + 2 / 12, "feet"),
  17334. default: true
  17335. },
  17336. ]
  17337. ))
  17338. characterMakers.push(() => makeCharacter(
  17339. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17340. {
  17341. side: {
  17342. height: math.unit(55, "feet"),
  17343. weight: math.unit(153, "tons"),
  17344. name: "Side",
  17345. image: {
  17346. source: "./media/characters/shadow/side.svg",
  17347. extra: 701 / 628,
  17348. bottom: 0.02
  17349. }
  17350. },
  17351. flying: {
  17352. height: math.unit(145, "feet"),
  17353. weight: math.unit(153, "tons"),
  17354. name: "Flying",
  17355. image: {
  17356. source: "./media/characters/shadow/flying.svg"
  17357. }
  17358. },
  17359. },
  17360. [
  17361. {
  17362. name: "Normal",
  17363. height: math.unit(55, "feet"),
  17364. default: true
  17365. },
  17366. ]
  17367. ))
  17368. characterMakers.push(() => makeCharacter(
  17369. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17370. {
  17371. front: {
  17372. height: math.unit(6, "feet"),
  17373. weight: math.unit(200, "lb"),
  17374. name: "Front",
  17375. image: {
  17376. source: "./media/characters/marcie/front.svg",
  17377. extra: 960 / 876,
  17378. bottom: 58 / 1017.87
  17379. }
  17380. },
  17381. },
  17382. [
  17383. {
  17384. name: "Macro",
  17385. height: math.unit(1, "mile"),
  17386. default: true
  17387. },
  17388. ]
  17389. ))
  17390. characterMakers.push(() => makeCharacter(
  17391. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17392. {
  17393. front: {
  17394. height: math.unit(7, "feet"),
  17395. weight: math.unit(200, "lb"),
  17396. name: "Front",
  17397. image: {
  17398. source: "./media/characters/kachina/front.svg",
  17399. extra: 1290.68 / 1119,
  17400. bottom: 36.5 / 1327.18
  17401. }
  17402. },
  17403. },
  17404. [
  17405. {
  17406. name: "Normal",
  17407. height: math.unit(7, "feet"),
  17408. default: true
  17409. },
  17410. ]
  17411. ))
  17412. characterMakers.push(() => makeCharacter(
  17413. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17414. {
  17415. looking: {
  17416. height: math.unit(2, "meters"),
  17417. weight: math.unit(300, "kg"),
  17418. name: "Looking",
  17419. image: {
  17420. source: "./media/characters/kash/looking.svg",
  17421. extra: 474 / 344,
  17422. bottom: 0.03
  17423. }
  17424. },
  17425. side: {
  17426. height: math.unit(2, "meters"),
  17427. weight: math.unit(300, "kg"),
  17428. name: "Side",
  17429. image: {
  17430. source: "./media/characters/kash/side.svg",
  17431. extra: 302 / 251,
  17432. bottom: 0.03
  17433. }
  17434. },
  17435. front: {
  17436. height: math.unit(2, "meters"),
  17437. weight: math.unit(300, "kg"),
  17438. name: "Front",
  17439. image: {
  17440. source: "./media/characters/kash/front.svg",
  17441. extra: 495 / 360,
  17442. bottom: 0.015
  17443. }
  17444. },
  17445. },
  17446. [
  17447. {
  17448. name: "Normal",
  17449. height: math.unit(2, "meters"),
  17450. default: true
  17451. },
  17452. {
  17453. name: "Big",
  17454. height: math.unit(3, "meters")
  17455. },
  17456. {
  17457. name: "Large",
  17458. height: math.unit(5, "meters")
  17459. },
  17460. ]
  17461. ))
  17462. characterMakers.push(() => makeCharacter(
  17463. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17464. {
  17465. feeding: {
  17466. height: math.unit(6.7, "feet"),
  17467. weight: math.unit(350, "lb"),
  17468. name: "Feeding",
  17469. image: {
  17470. source: "./media/characters/lalim/feeding.svg",
  17471. }
  17472. },
  17473. },
  17474. [
  17475. {
  17476. name: "Normal",
  17477. height: math.unit(6.7, "feet"),
  17478. default: true
  17479. },
  17480. ]
  17481. ))
  17482. characterMakers.push(() => makeCharacter(
  17483. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17484. {
  17485. front: {
  17486. height: math.unit(9.5, "feet"),
  17487. weight: math.unit(600, "lb"),
  17488. name: "Front",
  17489. image: {
  17490. source: "./media/characters/de'vout/front.svg",
  17491. extra: 1443 / 1328,
  17492. bottom: 0.025
  17493. }
  17494. },
  17495. back: {
  17496. height: math.unit(9.5, "feet"),
  17497. weight: math.unit(600, "lb"),
  17498. name: "Back",
  17499. image: {
  17500. source: "./media/characters/de'vout/back.svg",
  17501. extra: 1443 / 1328
  17502. }
  17503. },
  17504. frontDressed: {
  17505. height: math.unit(9.5, "feet"),
  17506. weight: math.unit(600, "lb"),
  17507. name: "Front (Dressed",
  17508. image: {
  17509. source: "./media/characters/de'vout/front-dressed.svg",
  17510. extra: 1443 / 1328,
  17511. bottom: 0.025
  17512. }
  17513. },
  17514. backDressed: {
  17515. height: math.unit(9.5, "feet"),
  17516. weight: math.unit(600, "lb"),
  17517. name: "Back (Dressed",
  17518. image: {
  17519. source: "./media/characters/de'vout/back-dressed.svg",
  17520. extra: 1443 / 1328
  17521. }
  17522. },
  17523. },
  17524. [
  17525. {
  17526. name: "Normal",
  17527. height: math.unit(9.5, "feet"),
  17528. default: true
  17529. },
  17530. ]
  17531. ))
  17532. characterMakers.push(() => makeCharacter(
  17533. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17534. {
  17535. front: {
  17536. height: math.unit(8, "feet"),
  17537. weight: math.unit(225, "lb"),
  17538. name: "Front",
  17539. image: {
  17540. source: "./media/characters/talana/front.svg",
  17541. extra: 1410 / 1300,
  17542. bottom: 0.015
  17543. }
  17544. },
  17545. frontDressed: {
  17546. height: math.unit(8, "feet"),
  17547. weight: math.unit(225, "lb"),
  17548. name: "Front (Dressed",
  17549. image: {
  17550. source: "./media/characters/talana/front-dressed.svg",
  17551. extra: 1410 / 1300,
  17552. bottom: 0.015
  17553. }
  17554. },
  17555. },
  17556. [
  17557. {
  17558. name: "Normal",
  17559. height: math.unit(8, "feet"),
  17560. default: true
  17561. },
  17562. ]
  17563. ))
  17564. characterMakers.push(() => makeCharacter(
  17565. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17566. {
  17567. side: {
  17568. height: math.unit(7.2, "feet"),
  17569. weight: math.unit(150, "lb"),
  17570. name: "Side",
  17571. image: {
  17572. source: "./media/characters/xeauvok/side.svg",
  17573. extra: 1975 / 1523,
  17574. bottom: 0.07
  17575. }
  17576. },
  17577. },
  17578. [
  17579. {
  17580. name: "Normal",
  17581. height: math.unit(7.2, "feet"),
  17582. default: true
  17583. },
  17584. ]
  17585. ))
  17586. characterMakers.push(() => makeCharacter(
  17587. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17588. {
  17589. side: {
  17590. height: math.unit(10, "feet"),
  17591. weight: math.unit(900, "kg"),
  17592. name: "Side",
  17593. image: {
  17594. source: "./media/characters/zara/side.svg",
  17595. extra: 504 / 498
  17596. }
  17597. },
  17598. },
  17599. [
  17600. {
  17601. name: "Normal",
  17602. height: math.unit(10, "feet"),
  17603. default: true
  17604. },
  17605. ]
  17606. ))
  17607. characterMakers.push(() => makeCharacter(
  17608. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17609. {
  17610. side: {
  17611. height: math.unit(6, "feet"),
  17612. weight: math.unit(150, "lb"),
  17613. name: "Side",
  17614. image: {
  17615. source: "./media/characters/richard-dragon/side.svg",
  17616. extra: 845 / 340,
  17617. bottom: 0.017
  17618. }
  17619. },
  17620. maw: {
  17621. height: math.unit(2.97, "feet"),
  17622. name: "Maw",
  17623. image: {
  17624. source: "./media/characters/richard-dragon/maw.svg"
  17625. }
  17626. },
  17627. },
  17628. [
  17629. ]
  17630. ))
  17631. characterMakers.push(() => makeCharacter(
  17632. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17633. {
  17634. front: {
  17635. height: math.unit(4, "feet"),
  17636. weight: math.unit(100, "lb"),
  17637. name: "Front",
  17638. image: {
  17639. source: "./media/characters/richard-smeargle/front.svg",
  17640. extra: 2952 / 2820,
  17641. bottom: 0.028
  17642. }
  17643. },
  17644. },
  17645. [
  17646. {
  17647. name: "Normal",
  17648. height: math.unit(4, "feet"),
  17649. default: true
  17650. },
  17651. {
  17652. name: "Dynamax",
  17653. height: math.unit(20, "meters")
  17654. },
  17655. ]
  17656. ))
  17657. characterMakers.push(() => makeCharacter(
  17658. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17659. {
  17660. front: {
  17661. height: math.unit(6, "feet"),
  17662. weight: math.unit(110, "lb"),
  17663. name: "Front",
  17664. image: {
  17665. source: "./media/characters/klay/front.svg",
  17666. extra: 962 / 883,
  17667. bottom: 0.04
  17668. }
  17669. },
  17670. back: {
  17671. height: math.unit(6, "feet"),
  17672. weight: math.unit(110, "lb"),
  17673. name: "Back",
  17674. image: {
  17675. source: "./media/characters/klay/back.svg",
  17676. extra: 962 / 883
  17677. }
  17678. },
  17679. beans: {
  17680. height: math.unit(1.15, "feet"),
  17681. name: "Beans",
  17682. image: {
  17683. source: "./media/characters/klay/beans.svg"
  17684. }
  17685. },
  17686. },
  17687. [
  17688. {
  17689. name: "Micro",
  17690. height: math.unit(6, "inches")
  17691. },
  17692. {
  17693. name: "Mini",
  17694. height: math.unit(3, "feet")
  17695. },
  17696. {
  17697. name: "Normal",
  17698. height: math.unit(6, "feet"),
  17699. default: true
  17700. },
  17701. {
  17702. name: "Big",
  17703. height: math.unit(25, "feet")
  17704. },
  17705. {
  17706. name: "Macro",
  17707. height: math.unit(100, "feet")
  17708. },
  17709. {
  17710. name: "Megamacro",
  17711. height: math.unit(400, "feet")
  17712. },
  17713. ]
  17714. ))
  17715. characterMakers.push(() => makeCharacter(
  17716. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17717. {
  17718. front: {
  17719. height: math.unit(6, "feet"),
  17720. weight: math.unit(160, "lb"),
  17721. name: "Front",
  17722. image: {
  17723. source: "./media/characters/marcus/front.svg",
  17724. extra: 734 / 676,
  17725. bottom: 0.03
  17726. }
  17727. },
  17728. },
  17729. [
  17730. {
  17731. name: "Little",
  17732. height: math.unit(6, "feet")
  17733. },
  17734. {
  17735. name: "Normal",
  17736. height: math.unit(110, "feet"),
  17737. default: true
  17738. },
  17739. {
  17740. name: "Macro",
  17741. height: math.unit(250, "feet")
  17742. },
  17743. {
  17744. name: "Megamacro",
  17745. height: math.unit(1000, "feet")
  17746. },
  17747. ]
  17748. ))
  17749. characterMakers.push(() => makeCharacter(
  17750. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17751. {
  17752. front: {
  17753. height: math.unit(7, "feet"),
  17754. weight: math.unit(275, "lb"),
  17755. name: "Front",
  17756. image: {
  17757. source: "./media/characters/claude-delroute/front.svg",
  17758. extra: 230 / 214,
  17759. bottom: 0.007
  17760. }
  17761. },
  17762. side: {
  17763. height: math.unit(7, "feet"),
  17764. weight: math.unit(275, "lb"),
  17765. name: "Side",
  17766. image: {
  17767. source: "./media/characters/claude-delroute/side.svg",
  17768. extra: 222 / 214,
  17769. bottom: 0.01
  17770. }
  17771. },
  17772. back: {
  17773. height: math.unit(7, "feet"),
  17774. weight: math.unit(275, "lb"),
  17775. name: "Back",
  17776. image: {
  17777. source: "./media/characters/claude-delroute/back.svg",
  17778. extra: 230 / 214,
  17779. bottom: 0.015
  17780. }
  17781. },
  17782. maw: {
  17783. height: math.unit(0.6407, "meters"),
  17784. name: "Maw",
  17785. image: {
  17786. source: "./media/characters/claude-delroute/maw.svg"
  17787. }
  17788. },
  17789. },
  17790. [
  17791. {
  17792. name: "Normal",
  17793. height: math.unit(7, "feet"),
  17794. default: true
  17795. },
  17796. {
  17797. name: "Lorge",
  17798. height: math.unit(20, "feet")
  17799. },
  17800. ]
  17801. ))
  17802. characterMakers.push(() => makeCharacter(
  17803. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17804. {
  17805. front: {
  17806. height: math.unit(8 + 4 / 12, "feet"),
  17807. weight: math.unit(600, "lb"),
  17808. name: "Front",
  17809. image: {
  17810. source: "./media/characters/dragonien/front.svg",
  17811. extra: 100 / 94,
  17812. bottom: 3.3 / 103.3445
  17813. }
  17814. },
  17815. back: {
  17816. height: math.unit(8 + 4 / 12, "feet"),
  17817. weight: math.unit(600, "lb"),
  17818. name: "Back",
  17819. image: {
  17820. source: "./media/characters/dragonien/back.svg",
  17821. extra: 776 / 746,
  17822. bottom: 6.4 / 782.0616
  17823. }
  17824. },
  17825. foot: {
  17826. height: math.unit(1.54, "feet"),
  17827. name: "Foot",
  17828. image: {
  17829. source: "./media/characters/dragonien/foot.svg",
  17830. }
  17831. },
  17832. },
  17833. [
  17834. {
  17835. name: "Normal",
  17836. height: math.unit(8 + 4 / 12, "feet"),
  17837. default: true
  17838. },
  17839. {
  17840. name: "Macro",
  17841. height: math.unit(200, "feet")
  17842. },
  17843. {
  17844. name: "Megamacro",
  17845. height: math.unit(1, "mile")
  17846. },
  17847. {
  17848. name: "Gigamacro",
  17849. height: math.unit(1000, "miles")
  17850. },
  17851. ]
  17852. ))
  17853. characterMakers.push(() => makeCharacter(
  17854. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17855. {
  17856. front: {
  17857. height: math.unit(5 + 2 / 12, "feet"),
  17858. weight: math.unit(110, "lb"),
  17859. name: "Front",
  17860. image: {
  17861. source: "./media/characters/desta/front.svg",
  17862. extra: 767 / 726,
  17863. bottom: 11.7 / 779
  17864. }
  17865. },
  17866. back: {
  17867. height: math.unit(5 + 2 / 12, "feet"),
  17868. weight: math.unit(110, "lb"),
  17869. name: "Back",
  17870. image: {
  17871. source: "./media/characters/desta/back.svg",
  17872. extra: 777 / 728,
  17873. bottom: 6 / 784
  17874. }
  17875. },
  17876. frontAlt: {
  17877. height: math.unit(5 + 2 / 12, "feet"),
  17878. weight: math.unit(110, "lb"),
  17879. name: "Front",
  17880. image: {
  17881. source: "./media/characters/desta/front-alt.svg",
  17882. extra: 1482 / 1417
  17883. }
  17884. },
  17885. side: {
  17886. height: math.unit(5 + 2 / 12, "feet"),
  17887. weight: math.unit(110, "lb"),
  17888. name: "Side",
  17889. image: {
  17890. source: "./media/characters/desta/side.svg",
  17891. extra: 2579 / 2491,
  17892. bottom: 0.053
  17893. }
  17894. },
  17895. },
  17896. [
  17897. {
  17898. name: "Micro",
  17899. height: math.unit(6, "inches")
  17900. },
  17901. {
  17902. name: "Normal",
  17903. height: math.unit(5 + 2 / 12, "feet"),
  17904. default: true
  17905. },
  17906. {
  17907. name: "Macro",
  17908. height: math.unit(62, "feet")
  17909. },
  17910. {
  17911. name: "Megamacro",
  17912. height: math.unit(1800, "feet")
  17913. },
  17914. ]
  17915. ))
  17916. characterMakers.push(() => makeCharacter(
  17917. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17918. {
  17919. front: {
  17920. height: math.unit(10, "feet"),
  17921. weight: math.unit(700, "lb"),
  17922. name: "Front",
  17923. image: {
  17924. source: "./media/characters/storm-alystar/front.svg",
  17925. extra: 2112 / 1898,
  17926. bottom: 0.034
  17927. }
  17928. },
  17929. },
  17930. [
  17931. {
  17932. name: "Micro",
  17933. height: math.unit(3.5, "inches")
  17934. },
  17935. {
  17936. name: "Normal",
  17937. height: math.unit(10, "feet"),
  17938. default: true
  17939. },
  17940. {
  17941. name: "Macro",
  17942. height: math.unit(400, "feet")
  17943. },
  17944. {
  17945. name: "Deific",
  17946. height: math.unit(60, "miles")
  17947. },
  17948. ]
  17949. ))
  17950. characterMakers.push(() => makeCharacter(
  17951. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17952. {
  17953. front: {
  17954. height: math.unit(2.35, "meters"),
  17955. weight: math.unit(119, "kg"),
  17956. name: "Front",
  17957. image: {
  17958. source: "./media/characters/ilia/front.svg",
  17959. extra: 1285 / 1255,
  17960. bottom: 0.06
  17961. }
  17962. },
  17963. },
  17964. [
  17965. {
  17966. name: "Normal",
  17967. height: math.unit(2.35, "meters")
  17968. },
  17969. {
  17970. name: "Macro",
  17971. height: math.unit(140, "meters"),
  17972. default: true
  17973. },
  17974. {
  17975. name: "Megamacro",
  17976. height: math.unit(100, "miles")
  17977. },
  17978. ]
  17979. ))
  17980. characterMakers.push(() => makeCharacter(
  17981. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17982. {
  17983. front: {
  17984. height: math.unit(6 + 5 / 12, "feet"),
  17985. weight: math.unit(190, "lb"),
  17986. name: "Front",
  17987. image: {
  17988. source: "./media/characters/kingdead/front.svg",
  17989. extra: 1228 / 1177
  17990. }
  17991. },
  17992. },
  17993. [
  17994. {
  17995. name: "Micro",
  17996. height: math.unit(7, "inches")
  17997. },
  17998. {
  17999. name: "Normal",
  18000. height: math.unit(6 + 5 / 12, "feet")
  18001. },
  18002. {
  18003. name: "Macro",
  18004. height: math.unit(150, "feet"),
  18005. default: true
  18006. },
  18007. {
  18008. name: "Megamacro",
  18009. height: math.unit(200, "miles")
  18010. },
  18011. ]
  18012. ))
  18013. characterMakers.push(() => makeCharacter(
  18014. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18015. {
  18016. front: {
  18017. height: math.unit(8, "feet"),
  18018. weight: math.unit(600, "lb"),
  18019. name: "Front",
  18020. image: {
  18021. source: "./media/characters/kyrehx/front.svg",
  18022. extra: 1195 / 1095,
  18023. bottom: 0.034
  18024. }
  18025. },
  18026. },
  18027. [
  18028. {
  18029. name: "Micro",
  18030. height: math.unit(2, "inches")
  18031. },
  18032. {
  18033. name: "Normal",
  18034. height: math.unit(8, "feet"),
  18035. default: true
  18036. },
  18037. {
  18038. name: "Macro",
  18039. height: math.unit(255, "feet")
  18040. },
  18041. ]
  18042. ))
  18043. characterMakers.push(() => makeCharacter(
  18044. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18045. {
  18046. front: {
  18047. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18048. weight: math.unit(184, "lb"),
  18049. name: "Front",
  18050. image: {
  18051. source: "./media/characters/xang/front.svg",
  18052. extra: 845 / 755
  18053. }
  18054. },
  18055. },
  18056. [
  18057. {
  18058. name: "Normal",
  18059. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18060. default: true
  18061. },
  18062. {
  18063. name: "Macro",
  18064. height: math.unit(0.935 * 146, "feet")
  18065. },
  18066. {
  18067. name: "Megamacro",
  18068. height: math.unit(0.935 * 3, "miles")
  18069. },
  18070. ]
  18071. ))
  18072. characterMakers.push(() => makeCharacter(
  18073. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18074. {
  18075. frontDressed: {
  18076. height: math.unit(5 + 7 / 12, "feet"),
  18077. weight: math.unit(140, "lb"),
  18078. name: "Front (Dressed)",
  18079. image: {
  18080. source: "./media/characters/doc-weardno/front-dressed.svg",
  18081. extra: 263 / 234
  18082. }
  18083. },
  18084. backDressed: {
  18085. height: math.unit(5 + 7 / 12, "feet"),
  18086. weight: math.unit(140, "lb"),
  18087. name: "Back (Dressed)",
  18088. image: {
  18089. source: "./media/characters/doc-weardno/back-dressed.svg",
  18090. extra: 266 / 238
  18091. }
  18092. },
  18093. front: {
  18094. height: math.unit(5 + 7 / 12, "feet"),
  18095. weight: math.unit(140, "lb"),
  18096. name: "Front",
  18097. image: {
  18098. source: "./media/characters/doc-weardno/front.svg",
  18099. extra: 254 / 233
  18100. }
  18101. },
  18102. },
  18103. [
  18104. {
  18105. name: "Micro",
  18106. height: math.unit(3, "inches")
  18107. },
  18108. {
  18109. name: "Normal",
  18110. height: math.unit(5 + 7 / 12, "feet"),
  18111. default: true
  18112. },
  18113. {
  18114. name: "Macro",
  18115. height: math.unit(25, "feet")
  18116. },
  18117. {
  18118. name: "Megamacro",
  18119. height: math.unit(2, "miles")
  18120. },
  18121. ]
  18122. ))
  18123. characterMakers.push(() => makeCharacter(
  18124. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18125. {
  18126. front: {
  18127. height: math.unit(6 + 2 / 12, "feet"),
  18128. weight: math.unit(153, "lb"),
  18129. name: "Front",
  18130. image: {
  18131. source: "./media/characters/seth-whilst/front.svg",
  18132. bottom: 0.07
  18133. }
  18134. },
  18135. },
  18136. [
  18137. {
  18138. name: "Micro",
  18139. height: math.unit(5, "inches")
  18140. },
  18141. {
  18142. name: "Normal",
  18143. height: math.unit(6 + 2 / 12, "feet"),
  18144. default: true
  18145. },
  18146. ]
  18147. ))
  18148. characterMakers.push(() => makeCharacter(
  18149. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18150. {
  18151. front: {
  18152. height: math.unit(3, "inches"),
  18153. weight: math.unit(8, "grams"),
  18154. name: "Front",
  18155. image: {
  18156. source: "./media/characters/pocket-jabari/front.svg",
  18157. extra: 1024 / 974,
  18158. bottom: 0.039
  18159. }
  18160. },
  18161. },
  18162. [
  18163. {
  18164. name: "Minimicro",
  18165. height: math.unit(8, "mm")
  18166. },
  18167. {
  18168. name: "Micro",
  18169. height: math.unit(3, "inches"),
  18170. default: true
  18171. },
  18172. {
  18173. name: "Normal",
  18174. height: math.unit(3, "feet")
  18175. },
  18176. ]
  18177. ))
  18178. characterMakers.push(() => makeCharacter(
  18179. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18180. {
  18181. front: {
  18182. height: math.unit(15, "feet"),
  18183. weight: math.unit(3280, "lb"),
  18184. name: "Front",
  18185. image: {
  18186. source: "./media/characters/sapphy/front.svg",
  18187. extra: 671 / 577,
  18188. bottom: 0.085
  18189. }
  18190. },
  18191. back: {
  18192. height: math.unit(15, "feet"),
  18193. weight: math.unit(3280, "lb"),
  18194. name: "Back",
  18195. image: {
  18196. source: "./media/characters/sapphy/back.svg",
  18197. extra: 631 / 607,
  18198. bottom: 0.045
  18199. }
  18200. },
  18201. },
  18202. [
  18203. {
  18204. name: "Normal",
  18205. height: math.unit(15, "feet")
  18206. },
  18207. {
  18208. name: "Casual Macro",
  18209. height: math.unit(120, "feet")
  18210. },
  18211. {
  18212. name: "Macro",
  18213. height: math.unit(2150, "feet"),
  18214. default: true
  18215. },
  18216. {
  18217. name: "Megamacro",
  18218. height: math.unit(8, "miles")
  18219. },
  18220. {
  18221. name: "Galaxy Mom",
  18222. height: math.unit(6, "megalightyears")
  18223. },
  18224. ]
  18225. ))
  18226. characterMakers.push(() => makeCharacter(
  18227. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  18228. {
  18229. front: {
  18230. height: math.unit(6, "feet"),
  18231. weight: math.unit(170, "lb"),
  18232. name: "Front",
  18233. image: {
  18234. source: "./media/characters/kiro/front.svg",
  18235. extra: 1064 / 1012,
  18236. bottom: 0.052
  18237. }
  18238. },
  18239. },
  18240. [
  18241. {
  18242. name: "Micro",
  18243. height: math.unit(6, "inches")
  18244. },
  18245. {
  18246. name: "Normal",
  18247. height: math.unit(6, "feet"),
  18248. default: true
  18249. },
  18250. {
  18251. name: "Macro",
  18252. height: math.unit(72, "feet")
  18253. },
  18254. ]
  18255. ))
  18256. characterMakers.push(() => makeCharacter(
  18257. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18258. {
  18259. front: {
  18260. height: math.unit(5 + 9 / 12, "feet"),
  18261. weight: math.unit(175, "lb"),
  18262. name: "Front",
  18263. image: {
  18264. source: "./media/characters/irishfox/front.svg",
  18265. extra: 1912 / 1680,
  18266. bottom: 0.02
  18267. }
  18268. },
  18269. },
  18270. [
  18271. {
  18272. name: "Nano",
  18273. height: math.unit(1, "mm")
  18274. },
  18275. {
  18276. name: "Micro",
  18277. height: math.unit(2, "inches")
  18278. },
  18279. {
  18280. name: "Normal",
  18281. height: math.unit(5 + 9 / 12, "feet"),
  18282. default: true
  18283. },
  18284. {
  18285. name: "Macro",
  18286. height: math.unit(45, "feet")
  18287. },
  18288. ]
  18289. ))
  18290. characterMakers.push(() => makeCharacter(
  18291. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18292. {
  18293. front: {
  18294. height: math.unit(6 + 1 / 12, "feet"),
  18295. weight: math.unit(75, "lb"),
  18296. name: "Front",
  18297. image: {
  18298. source: "./media/characters/aronai-sieyes/front.svg",
  18299. extra: 1556 / 1480,
  18300. bottom: 0.015
  18301. }
  18302. },
  18303. side: {
  18304. height: math.unit(6 + 1 / 12, "feet"),
  18305. weight: math.unit(75, "lb"),
  18306. name: "Side",
  18307. image: {
  18308. source: "./media/characters/aronai-sieyes/side.svg",
  18309. extra: 1433 / 1390,
  18310. bottom: 0.0393
  18311. }
  18312. },
  18313. back: {
  18314. height: math.unit(6 + 1 / 12, "feet"),
  18315. weight: math.unit(75, "lb"),
  18316. name: "Back",
  18317. image: {
  18318. source: "./media/characters/aronai-sieyes/back.svg",
  18319. extra: 1544 / 1494,
  18320. bottom: 0.02
  18321. }
  18322. },
  18323. frontClothed: {
  18324. height: math.unit(6 + 1 / 12, "feet"),
  18325. weight: math.unit(75, "lb"),
  18326. name: "Front (Clothed)",
  18327. image: {
  18328. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18329. extra: 1582 / 1527
  18330. }
  18331. },
  18332. feral: {
  18333. height: math.unit(18, "feet"),
  18334. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18335. name: "Feral",
  18336. image: {
  18337. source: "./media/characters/aronai-sieyes/feral.svg",
  18338. extra: 1530 / 1240,
  18339. bottom: 0.035
  18340. }
  18341. },
  18342. },
  18343. [
  18344. {
  18345. name: "Micro",
  18346. height: math.unit(2, "inches")
  18347. },
  18348. {
  18349. name: "Normal",
  18350. height: math.unit(6 + 1 / 12, "feet"),
  18351. default: true
  18352. }
  18353. ]
  18354. ))
  18355. characterMakers.push(() => makeCharacter(
  18356. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18357. {
  18358. front: {
  18359. height: math.unit(12, "feet"),
  18360. weight: math.unit(410, "kg"),
  18361. name: "Front",
  18362. image: {
  18363. source: "./media/characters/xuna/front.svg",
  18364. extra: 2184 / 1980
  18365. }
  18366. },
  18367. side: {
  18368. height: math.unit(12, "feet"),
  18369. weight: math.unit(410, "kg"),
  18370. name: "Side",
  18371. image: {
  18372. source: "./media/characters/xuna/side.svg",
  18373. extra: 2184 / 1980
  18374. }
  18375. },
  18376. back: {
  18377. height: math.unit(12, "feet"),
  18378. weight: math.unit(410, "kg"),
  18379. name: "Back",
  18380. image: {
  18381. source: "./media/characters/xuna/back.svg",
  18382. extra: 2184 / 1980
  18383. }
  18384. },
  18385. },
  18386. [
  18387. {
  18388. name: "Nano glow",
  18389. height: math.unit(10, "nm")
  18390. },
  18391. {
  18392. name: "Micro floof",
  18393. height: math.unit(0.3, "m")
  18394. },
  18395. {
  18396. name: "Huggable softy boi",
  18397. height: math.unit(3.6576, "m"),
  18398. default: true
  18399. },
  18400. {
  18401. name: "Admirable floof",
  18402. height: math.unit(80, "meters")
  18403. },
  18404. {
  18405. name: "Gentle macro",
  18406. height: math.unit(300, "meters")
  18407. },
  18408. {
  18409. name: "Very careful floof",
  18410. height: math.unit(3200, "meters")
  18411. },
  18412. {
  18413. name: "The mega floof",
  18414. height: math.unit(36000, "meters")
  18415. },
  18416. {
  18417. name: "Giga-fur-Wicker",
  18418. height: math.unit(4800000, "meters")
  18419. },
  18420. {
  18421. name: "Licky world",
  18422. height: math.unit(20000000, "meters")
  18423. },
  18424. {
  18425. name: "Floofy cyan sun",
  18426. height: math.unit(1500000000, "meters")
  18427. },
  18428. {
  18429. name: "Milky Wicker",
  18430. height: math.unit(1000000000000000000000, "meters")
  18431. },
  18432. {
  18433. name: "The observing Wicker",
  18434. height: math.unit(999999999999999999999999999, "meters")
  18435. },
  18436. ]
  18437. ))
  18438. characterMakers.push(() => makeCharacter(
  18439. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18440. {
  18441. front: {
  18442. height: math.unit(5 + 9 / 12, "feet"),
  18443. weight: math.unit(150, "lb"),
  18444. name: "Front",
  18445. image: {
  18446. source: "./media/characters/arokha-sieyes/front.svg",
  18447. extra: 1425 / 1284,
  18448. bottom: 0.05
  18449. }
  18450. },
  18451. },
  18452. [
  18453. {
  18454. name: "Normal",
  18455. height: math.unit(5 + 9 / 12, "feet")
  18456. },
  18457. {
  18458. name: "Macro",
  18459. height: math.unit(30, "meters"),
  18460. default: true
  18461. },
  18462. ]
  18463. ))
  18464. characterMakers.push(() => makeCharacter(
  18465. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18466. {
  18467. front: {
  18468. height: math.unit(6, "feet"),
  18469. weight: math.unit(180, "lb"),
  18470. name: "Front",
  18471. image: {
  18472. source: "./media/characters/arokh-sieyes/front.svg",
  18473. extra: 1830 / 1769,
  18474. bottom: 0.01
  18475. }
  18476. },
  18477. },
  18478. [
  18479. {
  18480. name: "Normal",
  18481. height: math.unit(6, "feet")
  18482. },
  18483. {
  18484. name: "Macro",
  18485. height: math.unit(30, "meters"),
  18486. default: true
  18487. },
  18488. ]
  18489. ))
  18490. characterMakers.push(() => makeCharacter(
  18491. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18492. {
  18493. side: {
  18494. height: math.unit(13 + 1 / 12, "feet"),
  18495. weight: math.unit(8.5, "tonnes"),
  18496. name: "Side",
  18497. image: {
  18498. source: "./media/characters/goldeneye/side.svg",
  18499. extra: 1182 / 778,
  18500. bottom: 0.067
  18501. }
  18502. },
  18503. paw: {
  18504. height: math.unit(3.4, "feet"),
  18505. name: "Paw",
  18506. image: {
  18507. source: "./media/characters/goldeneye/paw.svg"
  18508. }
  18509. },
  18510. },
  18511. [
  18512. {
  18513. name: "Normal",
  18514. height: math.unit(13 + 1 / 12, "feet"),
  18515. default: true
  18516. },
  18517. ]
  18518. ))
  18519. characterMakers.push(() => makeCharacter(
  18520. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18521. {
  18522. front: {
  18523. height: math.unit(6 + 1 / 12, "feet"),
  18524. weight: math.unit(210, "lb"),
  18525. name: "Front",
  18526. image: {
  18527. source: "./media/characters/leonardo-lycheborne/front.svg",
  18528. extra: 390 / 365,
  18529. bottom: 0.032
  18530. }
  18531. },
  18532. side: {
  18533. height: math.unit(6 + 1 / 12, "feet"),
  18534. weight: math.unit(210, "lb"),
  18535. name: "Side",
  18536. image: {
  18537. source: "./media/characters/leonardo-lycheborne/side.svg",
  18538. extra: 390 / 365,
  18539. bottom: 0.005
  18540. }
  18541. },
  18542. back: {
  18543. height: math.unit(6 + 1 / 12, "feet"),
  18544. weight: math.unit(210, "lb"),
  18545. name: "Back",
  18546. image: {
  18547. source: "./media/characters/leonardo-lycheborne/back.svg",
  18548. extra: 392 / 366,
  18549. bottom: 0.01
  18550. }
  18551. },
  18552. hand: {
  18553. height: math.unit(1.08, "feet"),
  18554. name: "Hand",
  18555. image: {
  18556. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18557. }
  18558. },
  18559. foot: {
  18560. height: math.unit(1.32, "feet"),
  18561. name: "Foot",
  18562. image: {
  18563. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18564. }
  18565. },
  18566. were: {
  18567. height: math.unit(20, "feet"),
  18568. weight: math.unit(7800, "lb"),
  18569. name: "Were",
  18570. image: {
  18571. source: "./media/characters/leonardo-lycheborne/were.svg",
  18572. extra: 308 / 294,
  18573. bottom: 0.048
  18574. }
  18575. },
  18576. feral: {
  18577. height: math.unit(7.5, "feet"),
  18578. weight: math.unit(600, "lb"),
  18579. name: "Feral",
  18580. image: {
  18581. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18582. extra: 210 / 186,
  18583. bottom: 0.108
  18584. }
  18585. },
  18586. taur: {
  18587. height: math.unit(11, "feet"),
  18588. weight: math.unit(3300, "lb"),
  18589. name: "Taur",
  18590. image: {
  18591. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18592. extra: 320 / 303,
  18593. bottom: 0.025
  18594. }
  18595. },
  18596. barghest: {
  18597. height: math.unit(11, "feet"),
  18598. weight: math.unit(1300, "lb"),
  18599. name: "Barghest",
  18600. image: {
  18601. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18602. extra: 323 / 302,
  18603. bottom: 0.027
  18604. }
  18605. },
  18606. dick: {
  18607. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18608. name: "Dick",
  18609. image: {
  18610. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18611. }
  18612. },
  18613. dickWere: {
  18614. height: math.unit((20) / 3.8, "feet"),
  18615. name: "Dick (Were)",
  18616. image: {
  18617. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18618. }
  18619. },
  18620. },
  18621. [
  18622. {
  18623. name: "Normal",
  18624. height: math.unit(6 + 1 / 12, "feet"),
  18625. default: true
  18626. },
  18627. ]
  18628. ))
  18629. characterMakers.push(() => makeCharacter(
  18630. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18631. {
  18632. front: {
  18633. height: math.unit(10, "feet"),
  18634. weight: math.unit(350, "lb"),
  18635. name: "Front",
  18636. image: {
  18637. source: "./media/characters/jet/front.svg",
  18638. extra: 2050 / 1980,
  18639. bottom: 0.013
  18640. }
  18641. },
  18642. back: {
  18643. height: math.unit(10, "feet"),
  18644. weight: math.unit(350, "lb"),
  18645. name: "Back",
  18646. image: {
  18647. source: "./media/characters/jet/back.svg",
  18648. extra: 2050 / 1980,
  18649. bottom: 0.013
  18650. }
  18651. },
  18652. },
  18653. [
  18654. {
  18655. name: "Micro",
  18656. height: math.unit(6, "inches")
  18657. },
  18658. {
  18659. name: "Normal",
  18660. height: math.unit(10, "feet"),
  18661. default: true
  18662. },
  18663. {
  18664. name: "Macro",
  18665. height: math.unit(100, "feet")
  18666. },
  18667. ]
  18668. ))
  18669. characterMakers.push(() => makeCharacter(
  18670. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18671. {
  18672. front: {
  18673. height: math.unit(15, "feet"),
  18674. weight: math.unit(2800, "lb"),
  18675. name: "Front",
  18676. image: {
  18677. source: "./media/characters/tanarath/front.svg",
  18678. extra: 2392 / 2220,
  18679. bottom: 0.03
  18680. }
  18681. },
  18682. back: {
  18683. height: math.unit(15, "feet"),
  18684. weight: math.unit(2800, "lb"),
  18685. name: "Back",
  18686. image: {
  18687. source: "./media/characters/tanarath/back.svg",
  18688. extra: 2392 / 2220,
  18689. bottom: 0.03
  18690. }
  18691. },
  18692. },
  18693. [
  18694. {
  18695. name: "Normal",
  18696. height: math.unit(15, "feet"),
  18697. default: true
  18698. },
  18699. ]
  18700. ))
  18701. characterMakers.push(() => makeCharacter(
  18702. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18703. {
  18704. front: {
  18705. height: math.unit(7 + 1 / 12, "feet"),
  18706. weight: math.unit(175, "lb"),
  18707. name: "Front",
  18708. image: {
  18709. source: "./media/characters/patty-cattybatty/front.svg",
  18710. extra: 908 / 874,
  18711. bottom: 0.025
  18712. }
  18713. },
  18714. },
  18715. [
  18716. {
  18717. name: "Micro",
  18718. height: math.unit(1, "inch")
  18719. },
  18720. {
  18721. name: "Normal",
  18722. height: math.unit(7 + 1 / 12, "feet")
  18723. },
  18724. {
  18725. name: "Mini Macro",
  18726. height: math.unit(155, "feet")
  18727. },
  18728. {
  18729. name: "Macro",
  18730. height: math.unit(1077, "feet")
  18731. },
  18732. {
  18733. name: "Mega Macro",
  18734. height: math.unit(47650, "feet"),
  18735. default: true
  18736. },
  18737. {
  18738. name: "Giga Macro",
  18739. height: math.unit(440, "miles")
  18740. },
  18741. {
  18742. name: "Tera Macro",
  18743. height: math.unit(8700, "miles")
  18744. },
  18745. {
  18746. name: "Planetary Macro",
  18747. height: math.unit(32700, "miles")
  18748. },
  18749. {
  18750. name: "Solar Macro",
  18751. height: math.unit(550000, "miles")
  18752. },
  18753. {
  18754. name: "Celestial Macro",
  18755. height: math.unit(2.5, "AU")
  18756. },
  18757. ]
  18758. ))
  18759. characterMakers.push(() => makeCharacter(
  18760. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18761. {
  18762. front: {
  18763. height: math.unit(4 + 5 / 12, "feet"),
  18764. weight: math.unit(90, "lb"),
  18765. name: "Front",
  18766. image: {
  18767. source: "./media/characters/cappu/front.svg",
  18768. extra: 1247 / 1152,
  18769. bottom: 0.012
  18770. }
  18771. },
  18772. },
  18773. [
  18774. {
  18775. name: "Normal",
  18776. height: math.unit(4 + 5 / 12, "feet"),
  18777. default: true
  18778. },
  18779. ]
  18780. ))
  18781. characterMakers.push(() => makeCharacter(
  18782. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18783. {
  18784. frontDressed: {
  18785. height: math.unit(70, "cm"),
  18786. weight: math.unit(6, "kg"),
  18787. name: "Front (Dressed)",
  18788. image: {
  18789. source: "./media/characters/sebi/front-dressed.svg",
  18790. extra: 713.5 / 686.5,
  18791. bottom: 0.003
  18792. }
  18793. },
  18794. front: {
  18795. height: math.unit(70, "cm"),
  18796. weight: math.unit(5, "kg"),
  18797. name: "Front",
  18798. image: {
  18799. source: "./media/characters/sebi/front.svg",
  18800. extra: 713.5 / 686.5,
  18801. bottom: 0.003
  18802. }
  18803. }
  18804. },
  18805. [
  18806. {
  18807. name: "Normal",
  18808. height: math.unit(70, "cm"),
  18809. default: true
  18810. },
  18811. {
  18812. name: "Macro",
  18813. height: math.unit(8, "meters")
  18814. },
  18815. ]
  18816. ))
  18817. characterMakers.push(() => makeCharacter(
  18818. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18819. {
  18820. front: {
  18821. height: math.unit(6, "feet"),
  18822. weight: math.unit(150, "lb"),
  18823. name: "Front",
  18824. image: {
  18825. source: "./media/characters/typhek/front.svg",
  18826. extra: 1948 / 1929,
  18827. bottom: 0.025
  18828. }
  18829. },
  18830. side: {
  18831. height: math.unit(6, "feet"),
  18832. weight: math.unit(150, "lb"),
  18833. name: "Side",
  18834. image: {
  18835. source: "./media/characters/typhek/side.svg",
  18836. extra: 2034 / 2010,
  18837. bottom: 0.003
  18838. }
  18839. },
  18840. back: {
  18841. height: math.unit(6, "feet"),
  18842. weight: math.unit(150, "lb"),
  18843. name: "Back",
  18844. image: {
  18845. source: "./media/characters/typhek/back.svg",
  18846. extra: 2005 / 1978,
  18847. bottom: 0.004
  18848. }
  18849. },
  18850. palm: {
  18851. height: math.unit(1.2, "feet"),
  18852. name: "Palm",
  18853. image: {
  18854. source: "./media/characters/typhek/palm.svg"
  18855. }
  18856. },
  18857. fist: {
  18858. height: math.unit(1.1, "feet"),
  18859. name: "Fist",
  18860. image: {
  18861. source: "./media/characters/typhek/fist.svg"
  18862. }
  18863. },
  18864. foot: {
  18865. height: math.unit(1.57, "feet"),
  18866. name: "Foot",
  18867. image: {
  18868. source: "./media/characters/typhek/foot.svg"
  18869. }
  18870. },
  18871. sole: {
  18872. height: math.unit(2.05, "feet"),
  18873. name: "Sole",
  18874. image: {
  18875. source: "./media/characters/typhek/sole.svg"
  18876. }
  18877. },
  18878. },
  18879. [
  18880. {
  18881. name: "Macro",
  18882. height: math.unit(40, "stories"),
  18883. default: true
  18884. },
  18885. {
  18886. name: "Megamacro",
  18887. height: math.unit(1, "mile")
  18888. },
  18889. {
  18890. name: "Gigamacro",
  18891. height: math.unit(4000, "solarradii")
  18892. },
  18893. {
  18894. name: "Universal",
  18895. height: math.unit(1.1, "universes")
  18896. }
  18897. ]
  18898. ))
  18899. characterMakers.push(() => makeCharacter(
  18900. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18901. {
  18902. side: {
  18903. height: math.unit(5 + 7 / 12, "feet"),
  18904. weight: math.unit(150, "lb"),
  18905. name: "Side",
  18906. image: {
  18907. source: "./media/characters/kassy/side.svg",
  18908. extra: 1280 / 1225,
  18909. bottom: 0.002
  18910. }
  18911. },
  18912. front: {
  18913. height: math.unit(5 + 7 / 12, "feet"),
  18914. weight: math.unit(150, "lb"),
  18915. name: "Front",
  18916. image: {
  18917. source: "./media/characters/kassy/front.svg",
  18918. extra: 1280 / 1225,
  18919. bottom: 0.025
  18920. }
  18921. },
  18922. back: {
  18923. height: math.unit(5 + 7 / 12, "feet"),
  18924. weight: math.unit(150, "lb"),
  18925. name: "Back",
  18926. image: {
  18927. source: "./media/characters/kassy/back.svg",
  18928. extra: 1280 / 1225,
  18929. bottom: 0.002
  18930. }
  18931. },
  18932. foot: {
  18933. height: math.unit(1.266, "feet"),
  18934. name: "Foot",
  18935. image: {
  18936. source: "./media/characters/kassy/foot.svg"
  18937. }
  18938. },
  18939. },
  18940. [
  18941. {
  18942. name: "Normal",
  18943. height: math.unit(5 + 7 / 12, "feet")
  18944. },
  18945. {
  18946. name: "Macro",
  18947. height: math.unit(137, "feet"),
  18948. default: true
  18949. },
  18950. {
  18951. name: "Megamacro",
  18952. height: math.unit(1, "mile")
  18953. },
  18954. ]
  18955. ))
  18956. characterMakers.push(() => makeCharacter(
  18957. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18958. {
  18959. front: {
  18960. height: math.unit(6 + 1 / 12, "feet"),
  18961. weight: math.unit(200, "lb"),
  18962. name: "Front",
  18963. image: {
  18964. source: "./media/characters/neil/front.svg",
  18965. extra: 1326 / 1250,
  18966. bottom: 0.023
  18967. }
  18968. },
  18969. },
  18970. [
  18971. {
  18972. name: "Normal",
  18973. height: math.unit(6 + 1 / 12, "feet"),
  18974. default: true
  18975. },
  18976. {
  18977. name: "Macro",
  18978. height: math.unit(200, "feet")
  18979. },
  18980. ]
  18981. ))
  18982. characterMakers.push(() => makeCharacter(
  18983. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18984. {
  18985. front: {
  18986. height: math.unit(5 + 9 / 12, "feet"),
  18987. weight: math.unit(190, "lb"),
  18988. name: "Front",
  18989. image: {
  18990. source: "./media/characters/atticus/front.svg",
  18991. extra: 2934 / 2785,
  18992. bottom: 0.025
  18993. }
  18994. },
  18995. },
  18996. [
  18997. {
  18998. name: "Normal",
  18999. height: math.unit(5 + 9 / 12, "feet"),
  19000. default: true
  19001. },
  19002. {
  19003. name: "Macro",
  19004. height: math.unit(180, "feet")
  19005. },
  19006. ]
  19007. ))
  19008. characterMakers.push(() => makeCharacter(
  19009. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19010. {
  19011. side: {
  19012. height: math.unit(9, "feet"),
  19013. weight: math.unit(650, "lb"),
  19014. name: "Side",
  19015. image: {
  19016. source: "./media/characters/milo/side.svg",
  19017. extra: 2644 / 2310,
  19018. bottom: 0.032
  19019. }
  19020. },
  19021. },
  19022. [
  19023. {
  19024. name: "Normal",
  19025. height: math.unit(9, "feet"),
  19026. default: true
  19027. },
  19028. {
  19029. name: "Macro",
  19030. height: math.unit(300, "feet")
  19031. },
  19032. ]
  19033. ))
  19034. characterMakers.push(() => makeCharacter(
  19035. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19036. {
  19037. side: {
  19038. height: math.unit(8, "meters"),
  19039. weight: math.unit(90000, "kg"),
  19040. name: "Side",
  19041. image: {
  19042. source: "./media/characters/ijzer/side.svg",
  19043. extra: 2756 / 1600,
  19044. bottom: 0.01
  19045. }
  19046. },
  19047. },
  19048. [
  19049. {
  19050. name: "Small",
  19051. height: math.unit(3, "meters")
  19052. },
  19053. {
  19054. name: "Normal",
  19055. height: math.unit(8, "meters"),
  19056. default: true
  19057. },
  19058. {
  19059. name: "Normal+",
  19060. height: math.unit(10, "meters")
  19061. },
  19062. {
  19063. name: "Bigger",
  19064. height: math.unit(24, "meters")
  19065. },
  19066. {
  19067. name: "Huge",
  19068. height: math.unit(80, "meters")
  19069. },
  19070. ]
  19071. ))
  19072. characterMakers.push(() => makeCharacter(
  19073. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19074. {
  19075. front: {
  19076. height: math.unit(6 + 2 / 12, "feet"),
  19077. weight: math.unit(153, "lb"),
  19078. name: "Front",
  19079. image: {
  19080. source: "./media/characters/luca-cervicum/front.svg",
  19081. extra: 370 / 327,
  19082. bottom: 0.015
  19083. }
  19084. },
  19085. back: {
  19086. height: math.unit(6 + 2 / 12, "feet"),
  19087. weight: math.unit(153, "lb"),
  19088. name: "Back",
  19089. image: {
  19090. source: "./media/characters/luca-cervicum/back.svg",
  19091. extra: 367 / 333,
  19092. bottom: 0.005
  19093. }
  19094. },
  19095. frontGear: {
  19096. height: math.unit(6 + 2 / 12, "feet"),
  19097. weight: math.unit(173, "lb"),
  19098. name: "Front (Gear)",
  19099. image: {
  19100. source: "./media/characters/luca-cervicum/front-gear.svg",
  19101. extra: 377 / 333,
  19102. bottom: 0.006
  19103. }
  19104. },
  19105. },
  19106. [
  19107. {
  19108. name: "Normal",
  19109. height: math.unit(6 + 2 / 12, "feet"),
  19110. default: true
  19111. },
  19112. ]
  19113. ))
  19114. characterMakers.push(() => makeCharacter(
  19115. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19116. {
  19117. front: {
  19118. height: math.unit(6 + 1 / 12, "feet"),
  19119. weight: math.unit(304, "lb"),
  19120. name: "Front",
  19121. image: {
  19122. source: "./media/characters/oliver/front.svg",
  19123. extra: 157 / 143,
  19124. bottom: 0.08
  19125. }
  19126. },
  19127. },
  19128. [
  19129. {
  19130. name: "Normal",
  19131. height: math.unit(6 + 1 / 12, "feet"),
  19132. default: true
  19133. },
  19134. ]
  19135. ))
  19136. characterMakers.push(() => makeCharacter(
  19137. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19138. {
  19139. front: {
  19140. height: math.unit(5 + 7 / 12, "feet"),
  19141. weight: math.unit(140, "lb"),
  19142. name: "Front",
  19143. image: {
  19144. source: "./media/characters/shane/front.svg",
  19145. extra: 304 / 289,
  19146. bottom: 0.005
  19147. }
  19148. },
  19149. },
  19150. [
  19151. {
  19152. name: "Normal",
  19153. height: math.unit(5 + 7 / 12, "feet"),
  19154. default: true
  19155. },
  19156. ]
  19157. ))
  19158. characterMakers.push(() => makeCharacter(
  19159. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19160. {
  19161. front: {
  19162. height: math.unit(5 + 9 / 12, "feet"),
  19163. weight: math.unit(178, "lb"),
  19164. name: "Front",
  19165. image: {
  19166. source: "./media/characters/shin/front.svg",
  19167. extra: 159 / 151,
  19168. bottom: 0.015
  19169. }
  19170. },
  19171. },
  19172. [
  19173. {
  19174. name: "Normal",
  19175. height: math.unit(5 + 9 / 12, "feet"),
  19176. default: true
  19177. },
  19178. ]
  19179. ))
  19180. characterMakers.push(() => makeCharacter(
  19181. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19182. {
  19183. front: {
  19184. height: math.unit(5 + 10 / 12, "feet"),
  19185. weight: math.unit(168, "lb"),
  19186. name: "Front",
  19187. image: {
  19188. source: "./media/characters/xerxes/front.svg",
  19189. extra: 282 / 260,
  19190. bottom: 0.045
  19191. }
  19192. },
  19193. },
  19194. [
  19195. {
  19196. name: "Normal",
  19197. height: math.unit(5 + 10 / 12, "feet"),
  19198. default: true
  19199. },
  19200. ]
  19201. ))
  19202. characterMakers.push(() => makeCharacter(
  19203. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19204. {
  19205. front: {
  19206. height: math.unit(6 + 7 / 12, "feet"),
  19207. weight: math.unit(208, "lb"),
  19208. name: "Front",
  19209. image: {
  19210. source: "./media/characters/chaska/front.svg",
  19211. extra: 332 / 319,
  19212. bottom: 0.015
  19213. }
  19214. },
  19215. },
  19216. [
  19217. {
  19218. name: "Normal",
  19219. height: math.unit(6 + 7 / 12, "feet"),
  19220. default: true
  19221. },
  19222. ]
  19223. ))
  19224. characterMakers.push(() => makeCharacter(
  19225. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19226. {
  19227. front: {
  19228. height: math.unit(5 + 8 / 12, "feet"),
  19229. weight: math.unit(208, "lb"),
  19230. name: "Front",
  19231. image: {
  19232. source: "./media/characters/enuk/front.svg",
  19233. extra: 437 / 406,
  19234. bottom: 0.02
  19235. }
  19236. },
  19237. },
  19238. [
  19239. {
  19240. name: "Normal",
  19241. height: math.unit(5 + 8 / 12, "feet"),
  19242. default: true
  19243. },
  19244. ]
  19245. ))
  19246. characterMakers.push(() => makeCharacter(
  19247. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19248. {
  19249. front: {
  19250. height: math.unit(5 + 10 / 12, "feet"),
  19251. weight: math.unit(252, "lb"),
  19252. name: "Front",
  19253. image: {
  19254. source: "./media/characters/bruun/front.svg",
  19255. extra: 197 / 187,
  19256. bottom: 0.012
  19257. }
  19258. },
  19259. },
  19260. [
  19261. {
  19262. name: "Normal",
  19263. height: math.unit(5 + 10 / 12, "feet"),
  19264. default: true
  19265. },
  19266. ]
  19267. ))
  19268. characterMakers.push(() => makeCharacter(
  19269. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19270. {
  19271. front: {
  19272. height: math.unit(6 + 10 / 12, "feet"),
  19273. weight: math.unit(255, "lb"),
  19274. name: "Front",
  19275. image: {
  19276. source: "./media/characters/alexeev/front.svg",
  19277. extra: 213 / 200,
  19278. bottom: 0.05
  19279. }
  19280. },
  19281. },
  19282. [
  19283. {
  19284. name: "Normal",
  19285. height: math.unit(6 + 10 / 12, "feet"),
  19286. default: true
  19287. },
  19288. ]
  19289. ))
  19290. characterMakers.push(() => makeCharacter(
  19291. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19292. {
  19293. front: {
  19294. height: math.unit(2 + 8 / 12, "feet"),
  19295. weight: math.unit(22, "lb"),
  19296. name: "Front",
  19297. image: {
  19298. source: "./media/characters/evelyn/front.svg",
  19299. extra: 208 / 180
  19300. }
  19301. },
  19302. },
  19303. [
  19304. {
  19305. name: "Normal",
  19306. height: math.unit(2 + 8 / 12, "feet"),
  19307. default: true
  19308. },
  19309. ]
  19310. ))
  19311. characterMakers.push(() => makeCharacter(
  19312. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19313. {
  19314. front: {
  19315. height: math.unit(5 + 9 / 12, "feet"),
  19316. weight: math.unit(139, "lb"),
  19317. name: "Front",
  19318. image: {
  19319. source: "./media/characters/inca/front.svg",
  19320. extra: 294 / 291,
  19321. bottom: 0.03
  19322. }
  19323. },
  19324. },
  19325. [
  19326. {
  19327. name: "Normal",
  19328. height: math.unit(5 + 9 / 12, "feet"),
  19329. default: true
  19330. },
  19331. ]
  19332. ))
  19333. characterMakers.push(() => makeCharacter(
  19334. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19335. {
  19336. front: {
  19337. height: math.unit(5 + 1 / 12, "feet"),
  19338. weight: math.unit(84, "lb"),
  19339. name: "Front",
  19340. image: {
  19341. source: "./media/characters/magdalene/front.svg",
  19342. extra: 293 / 273
  19343. }
  19344. },
  19345. },
  19346. [
  19347. {
  19348. name: "Normal",
  19349. height: math.unit(5 + 1 / 12, "feet"),
  19350. default: true
  19351. },
  19352. ]
  19353. ))
  19354. characterMakers.push(() => makeCharacter(
  19355. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19356. {
  19357. front: {
  19358. height: math.unit(6 + 3 / 12, "feet"),
  19359. weight: math.unit(185, "lb"),
  19360. name: "Front",
  19361. image: {
  19362. source: "./media/characters/mera/front.svg",
  19363. extra: 291 / 277,
  19364. bottom: 0.03
  19365. }
  19366. },
  19367. },
  19368. [
  19369. {
  19370. name: "Normal",
  19371. height: math.unit(6 + 3 / 12, "feet"),
  19372. default: true
  19373. },
  19374. ]
  19375. ))
  19376. characterMakers.push(() => makeCharacter(
  19377. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19378. {
  19379. front: {
  19380. height: math.unit(6 + 7 / 12, "feet"),
  19381. weight: math.unit(160, "lb"),
  19382. name: "Front",
  19383. image: {
  19384. source: "./media/characters/ceres/front.svg",
  19385. extra: 1023 / 950,
  19386. bottom: 0.027
  19387. }
  19388. },
  19389. back: {
  19390. height: math.unit(6 + 7 / 12, "feet"),
  19391. weight: math.unit(160, "lb"),
  19392. name: "Back",
  19393. image: {
  19394. source: "./media/characters/ceres/back.svg",
  19395. extra: 1023 / 950
  19396. }
  19397. },
  19398. },
  19399. [
  19400. {
  19401. name: "Normal",
  19402. height: math.unit(6 + 7 / 12, "feet"),
  19403. default: true
  19404. },
  19405. ]
  19406. ))
  19407. characterMakers.push(() => makeCharacter(
  19408. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19409. {
  19410. front: {
  19411. height: math.unit(5 + 10 / 12, "feet"),
  19412. weight: math.unit(150, "lb"),
  19413. name: "Front",
  19414. image: {
  19415. source: "./media/characters/kris/front.svg",
  19416. extra: 885 / 803,
  19417. bottom: 0.03
  19418. }
  19419. },
  19420. },
  19421. [
  19422. {
  19423. name: "Normal",
  19424. height: math.unit(5 + 10 / 12, "feet"),
  19425. default: true
  19426. },
  19427. ]
  19428. ))
  19429. characterMakers.push(() => makeCharacter(
  19430. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19431. {
  19432. front: {
  19433. height: math.unit(7, "feet"),
  19434. weight: math.unit(120, "kg"),
  19435. name: "Front",
  19436. image: {
  19437. source: "./media/characters/taluthus/front.svg",
  19438. extra: 903 / 833,
  19439. bottom: 0.015
  19440. }
  19441. },
  19442. },
  19443. [
  19444. {
  19445. name: "Normal",
  19446. height: math.unit(7, "feet"),
  19447. default: true
  19448. },
  19449. {
  19450. name: "Macro",
  19451. height: math.unit(300, "feet")
  19452. },
  19453. ]
  19454. ))
  19455. characterMakers.push(() => makeCharacter(
  19456. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19457. {
  19458. front: {
  19459. height: math.unit(5 + 9 / 12, "feet"),
  19460. weight: math.unit(145, "lb"),
  19461. name: "Front",
  19462. image: {
  19463. source: "./media/characters/dawn/front.svg",
  19464. extra: 2094 / 2016,
  19465. bottom: 0.025
  19466. }
  19467. },
  19468. back: {
  19469. height: math.unit(5 + 9 / 12, "feet"),
  19470. weight: math.unit(160, "lb"),
  19471. name: "Back",
  19472. image: {
  19473. source: "./media/characters/dawn/back.svg",
  19474. extra: 2112 / 2080,
  19475. bottom: 0.005
  19476. }
  19477. },
  19478. },
  19479. [
  19480. {
  19481. name: "Normal",
  19482. height: math.unit(6 + 7 / 12, "feet"),
  19483. default: true
  19484. },
  19485. ]
  19486. ))
  19487. characterMakers.push(() => makeCharacter(
  19488. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19489. {
  19490. anthro: {
  19491. height: math.unit(8 + 3 / 12, "feet"),
  19492. weight: math.unit(450, "lb"),
  19493. name: "Anthro",
  19494. image: {
  19495. source: "./media/characters/arador/anthro.svg",
  19496. extra: 1835 / 1718,
  19497. bottom: 0.025
  19498. }
  19499. },
  19500. feral: {
  19501. height: math.unit(4, "feet"),
  19502. weight: math.unit(200, "lb"),
  19503. name: "Feral",
  19504. image: {
  19505. source: "./media/characters/arador/feral.svg",
  19506. extra: 1683 / 1514,
  19507. bottom: 0.07
  19508. }
  19509. },
  19510. },
  19511. [
  19512. {
  19513. name: "Normal",
  19514. height: math.unit(8 + 3 / 12, "feet")
  19515. },
  19516. {
  19517. name: "Macro",
  19518. height: math.unit(82.5, "feet"),
  19519. default: true
  19520. },
  19521. ]
  19522. ))
  19523. characterMakers.push(() => makeCharacter(
  19524. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19525. {
  19526. front: {
  19527. height: math.unit(5 + 10 / 12, "feet"),
  19528. weight: math.unit(125, "lb"),
  19529. name: "Front",
  19530. image: {
  19531. source: "./media/characters/dharsi/front.svg",
  19532. extra: 716 / 630,
  19533. bottom: 0.035
  19534. }
  19535. },
  19536. },
  19537. [
  19538. {
  19539. name: "Nano",
  19540. height: math.unit(100, "nm")
  19541. },
  19542. {
  19543. name: "Micro",
  19544. height: math.unit(2, "inches")
  19545. },
  19546. {
  19547. name: "Normal",
  19548. height: math.unit(5 + 10 / 12, "feet"),
  19549. default: true
  19550. },
  19551. {
  19552. name: "Macro",
  19553. height: math.unit(1000, "feet")
  19554. },
  19555. {
  19556. name: "Megamacro",
  19557. height: math.unit(10, "miles")
  19558. },
  19559. {
  19560. name: "Gigamacro",
  19561. height: math.unit(3000, "miles")
  19562. },
  19563. {
  19564. name: "Teramacro",
  19565. height: math.unit(500000, "miles")
  19566. },
  19567. {
  19568. name: "Teramacro+",
  19569. height: math.unit(30, "galaxies")
  19570. },
  19571. ]
  19572. ))
  19573. characterMakers.push(() => makeCharacter(
  19574. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19575. {
  19576. front: {
  19577. height: math.unit(6, "feet"),
  19578. weight: math.unit(150, "lb"),
  19579. name: "Front",
  19580. image: {
  19581. source: "./media/characters/deathy/front.svg",
  19582. extra: 1552 / 1463,
  19583. bottom: 0.025
  19584. }
  19585. },
  19586. side: {
  19587. height: math.unit(6, "feet"),
  19588. weight: math.unit(150, "lb"),
  19589. name: "Side",
  19590. image: {
  19591. source: "./media/characters/deathy/side.svg",
  19592. extra: 1604 / 1455,
  19593. bottom: 0.025
  19594. }
  19595. },
  19596. back: {
  19597. height: math.unit(6, "feet"),
  19598. weight: math.unit(150, "lb"),
  19599. name: "Back",
  19600. image: {
  19601. source: "./media/characters/deathy/back.svg",
  19602. extra: 1580 / 1463,
  19603. bottom: 0.005
  19604. }
  19605. },
  19606. },
  19607. [
  19608. {
  19609. name: "Micro",
  19610. height: math.unit(5, "millimeters")
  19611. },
  19612. {
  19613. name: "Normal",
  19614. height: math.unit(6 + 5 / 12, "feet"),
  19615. default: true
  19616. },
  19617. ]
  19618. ))
  19619. characterMakers.push(() => makeCharacter(
  19620. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19621. {
  19622. front: {
  19623. height: math.unit(16, "feet"),
  19624. weight: math.unit(4000, "lb"),
  19625. name: "Front",
  19626. image: {
  19627. source: "./media/characters/juniper/front.svg",
  19628. bottom: 0.04
  19629. }
  19630. },
  19631. },
  19632. [
  19633. {
  19634. name: "Normal",
  19635. height: math.unit(16, "feet"),
  19636. default: true
  19637. },
  19638. ]
  19639. ))
  19640. characterMakers.push(() => makeCharacter(
  19641. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19642. {
  19643. front: {
  19644. height: math.unit(6, "feet"),
  19645. weight: math.unit(150, "lb"),
  19646. name: "Front",
  19647. image: {
  19648. source: "./media/characters/hipster/front.svg",
  19649. extra: 1312 / 1209,
  19650. bottom: 0.025
  19651. }
  19652. },
  19653. back: {
  19654. height: math.unit(6, "feet"),
  19655. weight: math.unit(150, "lb"),
  19656. name: "Back",
  19657. image: {
  19658. source: "./media/characters/hipster/back.svg",
  19659. extra: 1281 / 1196,
  19660. bottom: 0.01
  19661. }
  19662. },
  19663. },
  19664. [
  19665. {
  19666. name: "Micro",
  19667. height: math.unit(1, "mm")
  19668. },
  19669. {
  19670. name: "Normal",
  19671. height: math.unit(4, "inches"),
  19672. default: true
  19673. },
  19674. {
  19675. name: "Macro",
  19676. height: math.unit(500, "feet")
  19677. },
  19678. {
  19679. name: "Megamacro",
  19680. height: math.unit(1000, "miles")
  19681. },
  19682. ]
  19683. ))
  19684. characterMakers.push(() => makeCharacter(
  19685. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19686. {
  19687. front: {
  19688. height: math.unit(6, "feet"),
  19689. weight: math.unit(150, "lb"),
  19690. name: "Front",
  19691. image: {
  19692. source: "./media/characters/tendirmuldr/front.svg",
  19693. extra: 1878 / 1772,
  19694. bottom: 0.015
  19695. }
  19696. },
  19697. },
  19698. [
  19699. {
  19700. name: "Megamacro",
  19701. height: math.unit(1500, "miles"),
  19702. default: true
  19703. },
  19704. ]
  19705. ))
  19706. characterMakers.push(() => makeCharacter(
  19707. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19708. {
  19709. front: {
  19710. height: math.unit(14, "feet"),
  19711. weight: math.unit(12000, "lb"),
  19712. name: "Front",
  19713. image: {
  19714. source: "./media/characters/mort/front.svg",
  19715. extra: 365 / 318,
  19716. bottom: 0.01
  19717. }
  19718. },
  19719. side: {
  19720. height: math.unit(14, "feet"),
  19721. weight: math.unit(12000, "lb"),
  19722. name: "Side",
  19723. image: {
  19724. source: "./media/characters/mort/side.svg",
  19725. extra: 365 / 318,
  19726. bottom: 0.052
  19727. },
  19728. default: true
  19729. },
  19730. back: {
  19731. height: math.unit(14, "feet"),
  19732. weight: math.unit(12000, "lb"),
  19733. name: "Back",
  19734. image: {
  19735. source: "./media/characters/mort/back.svg",
  19736. extra: 371 / 332,
  19737. bottom: 0.18
  19738. }
  19739. },
  19740. },
  19741. [
  19742. {
  19743. name: "Normal",
  19744. height: math.unit(14, "feet"),
  19745. default: true
  19746. },
  19747. ]
  19748. ))
  19749. characterMakers.push(() => makeCharacter(
  19750. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19751. {
  19752. front: {
  19753. height: math.unit(8, "feet"),
  19754. weight: math.unit(1, "ton"),
  19755. name: "Front",
  19756. image: {
  19757. source: "./media/characters/lycoa/front.svg",
  19758. extra: 1875 / 1789,
  19759. bottom: 0.022
  19760. }
  19761. },
  19762. back: {
  19763. height: math.unit(8, "feet"),
  19764. weight: math.unit(1, "ton"),
  19765. name: "Back",
  19766. image: {
  19767. source: "./media/characters/lycoa/back.svg",
  19768. extra: 1835 / 1781,
  19769. bottom: 0.03
  19770. }
  19771. },
  19772. head: {
  19773. height: math.unit(2.1, "feet"),
  19774. name: "Head",
  19775. image: {
  19776. source: "./media/characters/lycoa/head.svg"
  19777. }
  19778. },
  19779. tailmaw: {
  19780. height: math.unit(1.9, "feet"),
  19781. name: "Tailmaw",
  19782. image: {
  19783. source: "./media/characters/lycoa/tailmaw.svg"
  19784. }
  19785. },
  19786. tentacles: {
  19787. height: math.unit(2.1, "feet"),
  19788. name: "Tentacles",
  19789. image: {
  19790. source: "./media/characters/lycoa/tentacles.svg"
  19791. }
  19792. },
  19793. dick: {
  19794. height: math.unit(1.73, "feet"),
  19795. name: "Dick",
  19796. image: {
  19797. source: "./media/characters/lycoa/dick.svg"
  19798. }
  19799. },
  19800. },
  19801. [
  19802. {
  19803. name: "Normal",
  19804. height: math.unit(8, "feet"),
  19805. default: true
  19806. },
  19807. {
  19808. name: "Macro",
  19809. height: math.unit(30, "feet")
  19810. },
  19811. ]
  19812. ))
  19813. characterMakers.push(() => makeCharacter(
  19814. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19815. {
  19816. front: {
  19817. height: math.unit(4 + 2 / 12, "feet"),
  19818. weight: math.unit(70, "lb"),
  19819. name: "Front",
  19820. image: {
  19821. source: "./media/characters/naldara/front.svg",
  19822. extra: 841 / 720,
  19823. bottom: 0.04
  19824. }
  19825. },
  19826. naga: {
  19827. height: math.unit(23, "feet"),
  19828. weight: math.unit(15000, "kg"),
  19829. name: "Naga",
  19830. image: {
  19831. source: "./media/characters/naldara/naga.svg",
  19832. extra: 3290 / 2959,
  19833. bottom: 124 / 3432
  19834. }
  19835. },
  19836. },
  19837. [
  19838. {
  19839. name: "Normal",
  19840. height: math.unit(4 + 2 / 12, "feet"),
  19841. default: true
  19842. },
  19843. ]
  19844. ))
  19845. characterMakers.push(() => makeCharacter(
  19846. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19847. {
  19848. front: {
  19849. height: math.unit(13 + 7 / 12, "feet"),
  19850. weight: math.unit(1500, "lb"),
  19851. name: "Front",
  19852. image: {
  19853. source: "./media/characters/briar/front.svg",
  19854. extra: 626 / 596,
  19855. bottom: 0.08
  19856. }
  19857. },
  19858. },
  19859. [
  19860. {
  19861. name: "Normal",
  19862. height: math.unit(13 + 7 / 12, "feet"),
  19863. default: true
  19864. },
  19865. ]
  19866. ))
  19867. characterMakers.push(() => makeCharacter(
  19868. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19869. {
  19870. side: {
  19871. height: math.unit(10, "feet"),
  19872. weight: math.unit(500, "lb"),
  19873. name: "Side",
  19874. image: {
  19875. source: "./media/characters/vanguard/side.svg",
  19876. extra: 502 / 425,
  19877. bottom: 0.087
  19878. }
  19879. },
  19880. },
  19881. [
  19882. {
  19883. name: "Normal",
  19884. height: math.unit(10, "feet"),
  19885. default: true
  19886. },
  19887. ]
  19888. ))
  19889. characterMakers.push(() => makeCharacter(
  19890. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19891. {
  19892. front: {
  19893. height: math.unit(7.5, "feet"),
  19894. weight: math.unit(2, "lb"),
  19895. name: "Front",
  19896. image: {
  19897. source: "./media/characters/artemis/front.svg",
  19898. extra: 1192 / 1075,
  19899. bottom: 0.07
  19900. }
  19901. },
  19902. frontNsfw: {
  19903. height: math.unit(7.5, "feet"),
  19904. weight: math.unit(2, "lb"),
  19905. name: "Front (NSFW)",
  19906. image: {
  19907. source: "./media/characters/artemis/front-nsfw.svg",
  19908. extra: 1192 / 1075,
  19909. bottom: 0.07
  19910. }
  19911. },
  19912. frontNsfwer: {
  19913. height: math.unit(7.5, "feet"),
  19914. weight: math.unit(2, "lb"),
  19915. name: "Front (NSFW-er)",
  19916. image: {
  19917. source: "./media/characters/artemis/front-nsfwer.svg",
  19918. extra: 1192 / 1075,
  19919. bottom: 0.07
  19920. }
  19921. },
  19922. side: {
  19923. height: math.unit(7.5, "feet"),
  19924. weight: math.unit(2, "lb"),
  19925. name: "Side",
  19926. image: {
  19927. source: "./media/characters/artemis/side.svg",
  19928. extra: 1192 / 1075,
  19929. bottom: 0.07
  19930. }
  19931. },
  19932. sideNsfw: {
  19933. height: math.unit(7.5, "feet"),
  19934. weight: math.unit(2, "lb"),
  19935. name: "Side (NSFW)",
  19936. image: {
  19937. source: "./media/characters/artemis/side-nsfw.svg",
  19938. extra: 1192 / 1075,
  19939. bottom: 0.07
  19940. }
  19941. },
  19942. sideNsfwer: {
  19943. height: math.unit(7.5, "feet"),
  19944. weight: math.unit(2, "lb"),
  19945. name: "Side (NSFW-er)",
  19946. image: {
  19947. source: "./media/characters/artemis/side-nsfwer.svg",
  19948. extra: 1192 / 1075,
  19949. bottom: 0.07
  19950. }
  19951. },
  19952. maw: {
  19953. height: math.unit(1.1, "feet"),
  19954. name: "Maw",
  19955. image: {
  19956. source: "./media/characters/artemis/maw.svg"
  19957. }
  19958. },
  19959. stomach: {
  19960. height: math.unit(0.95, "feet"),
  19961. name: "Stomach",
  19962. image: {
  19963. source: "./media/characters/artemis/stomach.svg"
  19964. }
  19965. },
  19966. dickCanine: {
  19967. height: math.unit(1, "feet"),
  19968. name: "Dick (Canine)",
  19969. image: {
  19970. source: "./media/characters/artemis/dick-canine.svg"
  19971. }
  19972. },
  19973. dickEquine: {
  19974. height: math.unit(0.85, "feet"),
  19975. name: "Dick (Equine)",
  19976. image: {
  19977. source: "./media/characters/artemis/dick-equine.svg"
  19978. }
  19979. },
  19980. dickExotic: {
  19981. height: math.unit(0.85, "feet"),
  19982. name: "Dick (Exotic)",
  19983. image: {
  19984. source: "./media/characters/artemis/dick-exotic.svg"
  19985. }
  19986. },
  19987. },
  19988. [
  19989. {
  19990. name: "Normal",
  19991. height: math.unit(7.5, "feet"),
  19992. default: true
  19993. },
  19994. {
  19995. name: "Enlarged",
  19996. height: math.unit(12, "feet")
  19997. },
  19998. ]
  19999. ))
  20000. characterMakers.push(() => makeCharacter(
  20001. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20002. {
  20003. front: {
  20004. height: math.unit(5 + 3 / 12, "feet"),
  20005. weight: math.unit(160, "lb"),
  20006. name: "Front",
  20007. image: {
  20008. source: "./media/characters/kira/front.svg",
  20009. extra: 906 / 786,
  20010. bottom: 0.01
  20011. }
  20012. },
  20013. back: {
  20014. height: math.unit(5 + 3 / 12, "feet"),
  20015. weight: math.unit(160, "lb"),
  20016. name: "Back",
  20017. image: {
  20018. source: "./media/characters/kira/back.svg",
  20019. extra: 882 / 757,
  20020. bottom: 0.005
  20021. }
  20022. },
  20023. frontDressed: {
  20024. height: math.unit(5 + 3 / 12, "feet"),
  20025. weight: math.unit(160, "lb"),
  20026. name: "Front (Dressed)",
  20027. image: {
  20028. source: "./media/characters/kira/front-dressed.svg",
  20029. extra: 906 / 786,
  20030. bottom: 0.01
  20031. }
  20032. },
  20033. beans: {
  20034. height: math.unit(0.92, "feet"),
  20035. name: "Beans",
  20036. image: {
  20037. source: "./media/characters/kira/beans.svg"
  20038. }
  20039. },
  20040. },
  20041. [
  20042. {
  20043. name: "Normal",
  20044. height: math.unit(5 + 3 / 12, "feet"),
  20045. default: true
  20046. },
  20047. ]
  20048. ))
  20049. characterMakers.push(() => makeCharacter(
  20050. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20051. {
  20052. front: {
  20053. height: math.unit(5 + 4 / 12, "feet"),
  20054. weight: math.unit(145, "lb"),
  20055. name: "Front",
  20056. image: {
  20057. source: "./media/characters/scramble/front.svg",
  20058. extra: 763 / 727,
  20059. bottom: 0.05
  20060. }
  20061. },
  20062. back: {
  20063. height: math.unit(5 + 4 / 12, "feet"),
  20064. weight: math.unit(145, "lb"),
  20065. name: "Back",
  20066. image: {
  20067. source: "./media/characters/scramble/back.svg",
  20068. extra: 826 / 737,
  20069. bottom: 0.002
  20070. }
  20071. },
  20072. },
  20073. [
  20074. {
  20075. name: "Normal",
  20076. height: math.unit(5 + 4 / 12, "feet"),
  20077. default: true
  20078. },
  20079. ]
  20080. ))
  20081. characterMakers.push(() => makeCharacter(
  20082. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20083. {
  20084. side: {
  20085. height: math.unit(6 + 2 / 12, "feet"),
  20086. weight: math.unit(190, "lb"),
  20087. name: "Side",
  20088. image: {
  20089. source: "./media/characters/biscuit/side.svg",
  20090. extra: 858 / 791,
  20091. bottom: 0.044
  20092. }
  20093. },
  20094. },
  20095. [
  20096. {
  20097. name: "Normal",
  20098. height: math.unit(6 + 2 / 12, "feet"),
  20099. default: true
  20100. },
  20101. ]
  20102. ))
  20103. characterMakers.push(() => makeCharacter(
  20104. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20105. {
  20106. front: {
  20107. height: math.unit(5 + 2 / 12, "feet"),
  20108. weight: math.unit(120, "lb"),
  20109. name: "Front",
  20110. image: {
  20111. source: "./media/characters/poffin/front.svg",
  20112. extra: 786 / 680,
  20113. bottom: 0.005
  20114. }
  20115. },
  20116. },
  20117. [
  20118. {
  20119. name: "Normal",
  20120. height: math.unit(5 + 2 / 12, "feet"),
  20121. default: true
  20122. },
  20123. ]
  20124. ))
  20125. characterMakers.push(() => makeCharacter(
  20126. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20127. {
  20128. front: {
  20129. height: math.unit(6 + 3 / 12, "feet"),
  20130. weight: math.unit(519, "lb"),
  20131. name: "Front",
  20132. image: {
  20133. source: "./media/characters/dhari/front.svg",
  20134. extra: 1048 / 946,
  20135. bottom: 0.015
  20136. }
  20137. },
  20138. back: {
  20139. height: math.unit(6 + 3 / 12, "feet"),
  20140. weight: math.unit(519, "lb"),
  20141. name: "Back",
  20142. image: {
  20143. source: "./media/characters/dhari/back.svg",
  20144. extra: 1048 / 931,
  20145. bottom: 0.005
  20146. }
  20147. },
  20148. frontDressed: {
  20149. height: math.unit(6 + 3 / 12, "feet"),
  20150. weight: math.unit(519, "lb"),
  20151. name: "Front (Dressed)",
  20152. image: {
  20153. source: "./media/characters/dhari/front-dressed.svg",
  20154. extra: 1713 / 1546,
  20155. bottom: 0.02
  20156. }
  20157. },
  20158. backDressed: {
  20159. height: math.unit(6 + 3 / 12, "feet"),
  20160. weight: math.unit(519, "lb"),
  20161. name: "Back (Dressed)",
  20162. image: {
  20163. source: "./media/characters/dhari/back-dressed.svg",
  20164. extra: 1699 / 1537,
  20165. bottom: 0.01
  20166. }
  20167. },
  20168. maw: {
  20169. height: math.unit(0.95, "feet"),
  20170. name: "Maw",
  20171. image: {
  20172. source: "./media/characters/dhari/maw.svg"
  20173. }
  20174. },
  20175. wereFront: {
  20176. height: math.unit(12 + 8 / 12, "feet"),
  20177. weight: math.unit(4000, "lb"),
  20178. name: "Front (Were)",
  20179. image: {
  20180. source: "./media/characters/dhari/were-front.svg",
  20181. extra: 1065 / 969,
  20182. bottom: 0.015
  20183. }
  20184. },
  20185. wereBack: {
  20186. height: math.unit(12 + 8 / 12, "feet"),
  20187. weight: math.unit(4000, "lb"),
  20188. name: "Back (Were)",
  20189. image: {
  20190. source: "./media/characters/dhari/were-back.svg",
  20191. extra: 1065 / 969,
  20192. bottom: 0.012
  20193. }
  20194. },
  20195. wereMaw: {
  20196. height: math.unit(0.625, "meters"),
  20197. name: "Maw (Were)",
  20198. image: {
  20199. source: "./media/characters/dhari/were-maw.svg"
  20200. }
  20201. },
  20202. },
  20203. [
  20204. {
  20205. name: "Normal",
  20206. height: math.unit(6 + 3 / 12, "feet"),
  20207. default: true
  20208. },
  20209. ]
  20210. ))
  20211. characterMakers.push(() => makeCharacter(
  20212. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20213. {
  20214. anthro: {
  20215. height: math.unit(5 + 7 / 12, "feet"),
  20216. weight: math.unit(175, "lb"),
  20217. name: "Anthro",
  20218. image: {
  20219. source: "./media/characters/rena-dyne/anthro.svg",
  20220. extra: 1849 / 1785,
  20221. bottom: 0.005
  20222. }
  20223. },
  20224. taur: {
  20225. height: math.unit(15 + 6 / 12, "feet"),
  20226. weight: math.unit(8000, "lb"),
  20227. name: "Taur",
  20228. image: {
  20229. source: "./media/characters/rena-dyne/taur.svg",
  20230. extra: 2315 / 2234,
  20231. bottom: 0.033
  20232. }
  20233. },
  20234. },
  20235. [
  20236. {
  20237. name: "Normal",
  20238. height: math.unit(5 + 7 / 12, "feet"),
  20239. default: true
  20240. },
  20241. ]
  20242. ))
  20243. characterMakers.push(() => makeCharacter(
  20244. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20245. {
  20246. front: {
  20247. height: math.unit(8, "feet"),
  20248. weight: math.unit(600, "lb"),
  20249. name: "Front",
  20250. image: {
  20251. source: "./media/characters/weremeep/front.svg",
  20252. extra: 967 / 862,
  20253. bottom: 0.01
  20254. }
  20255. },
  20256. },
  20257. [
  20258. {
  20259. name: "Normal",
  20260. height: math.unit(8, "feet"),
  20261. default: true
  20262. },
  20263. {
  20264. name: "Lorg",
  20265. height: math.unit(12, "feet")
  20266. },
  20267. {
  20268. name: "Oh Lawd She Comin'",
  20269. height: math.unit(20, "feet")
  20270. },
  20271. ]
  20272. ))
  20273. characterMakers.push(() => makeCharacter(
  20274. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20275. {
  20276. front: {
  20277. height: math.unit(4, "feet"),
  20278. weight: math.unit(90, "lb"),
  20279. name: "Front",
  20280. image: {
  20281. source: "./media/characters/reza/front.svg",
  20282. extra: 1183 / 1111,
  20283. bottom: 0.017
  20284. }
  20285. },
  20286. back: {
  20287. height: math.unit(4, "feet"),
  20288. weight: math.unit(90, "lb"),
  20289. name: "Back",
  20290. image: {
  20291. source: "./media/characters/reza/back.svg",
  20292. extra: 1183 / 1111,
  20293. bottom: 0.01
  20294. }
  20295. },
  20296. drake: {
  20297. height: math.unit(30, "feet"),
  20298. weight: math.unit(246960, "lb"),
  20299. name: "Drake",
  20300. image: {
  20301. source: "./media/characters/reza/drake.svg",
  20302. extra: 2350 / 2024,
  20303. bottom: 60.7 / 2403
  20304. }
  20305. },
  20306. },
  20307. [
  20308. {
  20309. name: "Normal",
  20310. height: math.unit(4, "feet"),
  20311. default: true
  20312. },
  20313. ]
  20314. ))
  20315. characterMakers.push(() => makeCharacter(
  20316. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20317. {
  20318. side: {
  20319. height: math.unit(15, "feet"),
  20320. weight: math.unit(14, "tons"),
  20321. name: "Side",
  20322. image: {
  20323. source: "./media/characters/athea/side.svg",
  20324. extra: 960 / 540,
  20325. bottom: 0.003
  20326. }
  20327. },
  20328. sitting: {
  20329. height: math.unit(6 * 2.85, "feet"),
  20330. weight: math.unit(14, "tons"),
  20331. name: "Sitting",
  20332. image: {
  20333. source: "./media/characters/athea/sitting.svg",
  20334. extra: 621 / 581,
  20335. bottom: 0.075
  20336. }
  20337. },
  20338. maw: {
  20339. height: math.unit(7.59498031496063, "feet"),
  20340. name: "Maw",
  20341. image: {
  20342. source: "./media/characters/athea/maw.svg"
  20343. }
  20344. },
  20345. },
  20346. [
  20347. {
  20348. name: "Lap Cat",
  20349. height: math.unit(2.5, "feet")
  20350. },
  20351. {
  20352. name: "Minimacro",
  20353. height: math.unit(15, "feet"),
  20354. default: true
  20355. },
  20356. {
  20357. name: "Macro",
  20358. height: math.unit(120, "feet")
  20359. },
  20360. {
  20361. name: "Macro+",
  20362. height: math.unit(640, "feet")
  20363. },
  20364. {
  20365. name: "Colossus",
  20366. height: math.unit(2.2, "miles")
  20367. },
  20368. ]
  20369. ))
  20370. characterMakers.push(() => makeCharacter(
  20371. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20372. {
  20373. front: {
  20374. height: math.unit(8 + 8 / 12, "feet"),
  20375. weight: math.unit(130, "kg"),
  20376. name: "Front",
  20377. image: {
  20378. source: "./media/characters/seroko/front.svg",
  20379. extra: 1385 / 1280,
  20380. bottom: 0.025
  20381. }
  20382. },
  20383. back: {
  20384. height: math.unit(8 + 8 / 12, "feet"),
  20385. weight: math.unit(130, "kg"),
  20386. name: "Back",
  20387. image: {
  20388. source: "./media/characters/seroko/back.svg",
  20389. extra: 1369 / 1238,
  20390. bottom: 0.018
  20391. }
  20392. },
  20393. frontDressed: {
  20394. height: math.unit(8 + 8 / 12, "feet"),
  20395. weight: math.unit(130, "kg"),
  20396. name: "Front (Dressed)",
  20397. image: {
  20398. source: "./media/characters/seroko/front-dressed.svg",
  20399. extra: 1366 / 1275,
  20400. bottom: 0.03
  20401. }
  20402. },
  20403. },
  20404. [
  20405. {
  20406. name: "Normal",
  20407. height: math.unit(8 + 8 / 12, "feet"),
  20408. default: true
  20409. },
  20410. ]
  20411. ))
  20412. characterMakers.push(() => makeCharacter(
  20413. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20414. {
  20415. front: {
  20416. height: math.unit(5.5, "feet"),
  20417. weight: math.unit(160, "lb"),
  20418. name: "Front",
  20419. image: {
  20420. source: "./media/characters/quatzi/front.svg",
  20421. extra: 2346 / 2242,
  20422. bottom: 0.015
  20423. }
  20424. },
  20425. },
  20426. [
  20427. {
  20428. name: "Normal",
  20429. height: math.unit(5.5, "feet"),
  20430. default: true
  20431. },
  20432. {
  20433. name: "Big",
  20434. height: math.unit(7.7, "feet")
  20435. },
  20436. ]
  20437. ))
  20438. characterMakers.push(() => makeCharacter(
  20439. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20440. {
  20441. front: {
  20442. height: math.unit(5 + 11 / 12, "feet"),
  20443. weight: math.unit(180, "lb"),
  20444. name: "Front",
  20445. image: {
  20446. source: "./media/characters/sen/front.svg",
  20447. extra: 1321 / 1254,
  20448. bottom: 0.015
  20449. }
  20450. },
  20451. side: {
  20452. height: math.unit(5 + 11 / 12, "feet"),
  20453. weight: math.unit(180, "lb"),
  20454. name: "Side",
  20455. image: {
  20456. source: "./media/characters/sen/side.svg",
  20457. extra: 1321 / 1254,
  20458. bottom: 0.007
  20459. }
  20460. },
  20461. back: {
  20462. height: math.unit(5 + 11 / 12, "feet"),
  20463. weight: math.unit(180, "lb"),
  20464. name: "Back",
  20465. image: {
  20466. source: "./media/characters/sen/back.svg",
  20467. extra: 1321 / 1254
  20468. }
  20469. },
  20470. },
  20471. [
  20472. {
  20473. name: "Normal",
  20474. height: math.unit(5 + 11 / 12, "feet"),
  20475. default: true
  20476. },
  20477. ]
  20478. ))
  20479. characterMakers.push(() => makeCharacter(
  20480. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20481. {
  20482. front: {
  20483. height: math.unit(166.6, "cm"),
  20484. weight: math.unit(66.6, "kg"),
  20485. name: "Front",
  20486. image: {
  20487. source: "./media/characters/fruity/front.svg",
  20488. extra: 1510 / 1386,
  20489. bottom: 0.04
  20490. }
  20491. },
  20492. back: {
  20493. height: math.unit(166.6, "cm"),
  20494. weight: math.unit(66.6, "lb"),
  20495. name: "Back",
  20496. image: {
  20497. source: "./media/characters/fruity/back.svg",
  20498. extra: 1563 / 1435,
  20499. bottom: 0.005
  20500. }
  20501. },
  20502. },
  20503. [
  20504. {
  20505. name: "Normal",
  20506. height: math.unit(166.6, "cm"),
  20507. default: true
  20508. },
  20509. {
  20510. name: "Demonic",
  20511. height: math.unit(166.6, "feet")
  20512. },
  20513. ]
  20514. ))
  20515. characterMakers.push(() => makeCharacter(
  20516. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20517. {
  20518. side: {
  20519. height: math.unit(10, "feet"),
  20520. weight: math.unit(500, "lb"),
  20521. name: "Side",
  20522. image: {
  20523. source: "./media/characters/zost/side.svg",
  20524. extra: 966 / 880,
  20525. bottom: 0.075
  20526. }
  20527. },
  20528. mawFront: {
  20529. height: math.unit(1.08, "meters"),
  20530. name: "Maw (Front)",
  20531. image: {
  20532. source: "./media/characters/zost/maw-front.svg"
  20533. }
  20534. },
  20535. mawSide: {
  20536. height: math.unit(2.66, "feet"),
  20537. name: "Maw (Side)",
  20538. image: {
  20539. source: "./media/characters/zost/maw-side.svg"
  20540. }
  20541. },
  20542. },
  20543. [
  20544. {
  20545. name: "Normal",
  20546. height: math.unit(10, "feet"),
  20547. default: true
  20548. },
  20549. ]
  20550. ))
  20551. characterMakers.push(() => makeCharacter(
  20552. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20553. {
  20554. front: {
  20555. height: math.unit(5 + 4 / 12, "feet"),
  20556. weight: math.unit(120, "lb"),
  20557. name: "Front",
  20558. image: {
  20559. source: "./media/characters/luci/front.svg",
  20560. extra: 1985 / 1884,
  20561. bottom: 0.04
  20562. }
  20563. },
  20564. back: {
  20565. height: math.unit(5 + 4 / 12, "feet"),
  20566. weight: math.unit(120, "lb"),
  20567. name: "Back",
  20568. image: {
  20569. source: "./media/characters/luci/back.svg",
  20570. extra: 1892 / 1791,
  20571. bottom: 0.002
  20572. }
  20573. },
  20574. },
  20575. [
  20576. {
  20577. name: "Normal",
  20578. height: math.unit(5 + 4 / 12, "feet"),
  20579. default: true
  20580. },
  20581. ]
  20582. ))
  20583. characterMakers.push(() => makeCharacter(
  20584. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20585. {
  20586. front: {
  20587. height: math.unit(1500, "feet"),
  20588. weight: math.unit(3.8e6, "tons"),
  20589. name: "Front",
  20590. image: {
  20591. source: "./media/characters/2th/front.svg",
  20592. extra: 3489 / 3350,
  20593. bottom: 0.1
  20594. }
  20595. },
  20596. foot: {
  20597. height: math.unit(461, "feet"),
  20598. name: "Foot",
  20599. image: {
  20600. source: "./media/characters/2th/foot.svg"
  20601. }
  20602. },
  20603. },
  20604. [
  20605. {
  20606. name: "\"Micro\"",
  20607. height: math.unit(15 + 7 / 12, "feet")
  20608. },
  20609. {
  20610. name: "Normal",
  20611. height: math.unit(1500, "feet"),
  20612. default: true
  20613. },
  20614. {
  20615. name: "Macro",
  20616. height: math.unit(5000, "feet")
  20617. },
  20618. {
  20619. name: "Megamacro",
  20620. height: math.unit(15, "miles")
  20621. },
  20622. {
  20623. name: "Gigamacro",
  20624. height: math.unit(4000, "miles")
  20625. },
  20626. {
  20627. name: "Galactic",
  20628. height: math.unit(50, "AU")
  20629. },
  20630. ]
  20631. ))
  20632. characterMakers.push(() => makeCharacter(
  20633. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20634. {
  20635. front: {
  20636. height: math.unit(5 + 6 / 12, "feet"),
  20637. weight: math.unit(220, "lb"),
  20638. name: "Front",
  20639. image: {
  20640. source: "./media/characters/amethyst/front.svg",
  20641. extra: 2078 / 2040,
  20642. bottom: 0.045
  20643. }
  20644. },
  20645. back: {
  20646. height: math.unit(5 + 6 / 12, "feet"),
  20647. weight: math.unit(220, "lb"),
  20648. name: "Back",
  20649. image: {
  20650. source: "./media/characters/amethyst/back.svg",
  20651. extra: 2021 / 1989,
  20652. bottom: 0.02
  20653. }
  20654. },
  20655. },
  20656. [
  20657. {
  20658. name: "Normal",
  20659. height: math.unit(5 + 6 / 12, "feet"),
  20660. default: true
  20661. },
  20662. ]
  20663. ))
  20664. characterMakers.push(() => makeCharacter(
  20665. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20666. {
  20667. front: {
  20668. height: math.unit(4 + 11 / 12, "feet"),
  20669. weight: math.unit(120, "lb"),
  20670. name: "Front",
  20671. image: {
  20672. source: "./media/characters/yumi-akiyama/front.svg",
  20673. extra: 1327 / 1235,
  20674. bottom: 0.02
  20675. }
  20676. },
  20677. back: {
  20678. height: math.unit(4 + 11 / 12, "feet"),
  20679. weight: math.unit(120, "lb"),
  20680. name: "Back",
  20681. image: {
  20682. source: "./media/characters/yumi-akiyama/back.svg",
  20683. extra: 1287 / 1245,
  20684. bottom: 0.002
  20685. }
  20686. },
  20687. },
  20688. [
  20689. {
  20690. name: "Galactic",
  20691. height: math.unit(50, "galaxies"),
  20692. default: true
  20693. },
  20694. {
  20695. name: "Universal",
  20696. height: math.unit(100, "universes")
  20697. },
  20698. ]
  20699. ))
  20700. characterMakers.push(() => makeCharacter(
  20701. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20702. {
  20703. front: {
  20704. height: math.unit(8, "feet"),
  20705. weight: math.unit(500, "lb"),
  20706. name: "Front",
  20707. image: {
  20708. source: "./media/characters/rifter-yrmori/front.svg",
  20709. extra: 1180 / 1125,
  20710. bottom: 0.02
  20711. }
  20712. },
  20713. back: {
  20714. height: math.unit(8, "feet"),
  20715. weight: math.unit(500, "lb"),
  20716. name: "Back",
  20717. image: {
  20718. source: "./media/characters/rifter-yrmori/back.svg",
  20719. extra: 1190 / 1145,
  20720. bottom: 0.001
  20721. }
  20722. },
  20723. wings: {
  20724. height: math.unit(7.75, "feet"),
  20725. weight: math.unit(500, "lb"),
  20726. name: "Wings",
  20727. image: {
  20728. source: "./media/characters/rifter-yrmori/wings.svg",
  20729. extra: 1357 / 1285
  20730. }
  20731. },
  20732. maw: {
  20733. height: math.unit(0.8, "feet"),
  20734. name: "Maw",
  20735. image: {
  20736. source: "./media/characters/rifter-yrmori/maw.svg"
  20737. }
  20738. },
  20739. mawfront: {
  20740. height: math.unit(1.45, "feet"),
  20741. name: "Maw (Front)",
  20742. image: {
  20743. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20744. }
  20745. },
  20746. },
  20747. [
  20748. {
  20749. name: "Normal",
  20750. height: math.unit(8, "feet"),
  20751. default: true
  20752. },
  20753. {
  20754. name: "Macro",
  20755. height: math.unit(42, "meters")
  20756. },
  20757. ]
  20758. ))
  20759. characterMakers.push(() => makeCharacter(
  20760. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20761. {
  20762. were: {
  20763. height: math.unit(25 + 6 / 12, "feet"),
  20764. weight: math.unit(10000, "lb"),
  20765. name: "Were",
  20766. image: {
  20767. source: "./media/characters/tahajin/were.svg",
  20768. extra: 801 / 770,
  20769. bottom: 0.042
  20770. }
  20771. },
  20772. aquatic: {
  20773. height: math.unit(6 + 4 / 12, "feet"),
  20774. weight: math.unit(160, "lb"),
  20775. name: "Aquatic",
  20776. image: {
  20777. source: "./media/characters/tahajin/aquatic.svg",
  20778. extra: 572 / 542,
  20779. bottom: 0.04
  20780. }
  20781. },
  20782. chow: {
  20783. height: math.unit(8 + 11 / 12, "feet"),
  20784. weight: math.unit(450, "lb"),
  20785. name: "Chow",
  20786. image: {
  20787. source: "./media/characters/tahajin/chow.svg",
  20788. extra: 660 / 640,
  20789. bottom: 0.015
  20790. }
  20791. },
  20792. demiNaga: {
  20793. height: math.unit(6 + 8 / 12, "feet"),
  20794. weight: math.unit(300, "lb"),
  20795. name: "Demi Naga",
  20796. image: {
  20797. source: "./media/characters/tahajin/demi-naga.svg",
  20798. extra: 643 / 615,
  20799. bottom: 0.1
  20800. }
  20801. },
  20802. data: {
  20803. height: math.unit(5, "inches"),
  20804. weight: math.unit(0.1, "lb"),
  20805. name: "Data",
  20806. image: {
  20807. source: "./media/characters/tahajin/data.svg"
  20808. }
  20809. },
  20810. fluu: {
  20811. height: math.unit(5 + 7 / 12, "feet"),
  20812. weight: math.unit(140, "lb"),
  20813. name: "Fluu",
  20814. image: {
  20815. source: "./media/characters/tahajin/fluu.svg",
  20816. extra: 628 / 592,
  20817. bottom: 0.02
  20818. }
  20819. },
  20820. starWarrior: {
  20821. height: math.unit(4 + 5 / 12, "feet"),
  20822. weight: math.unit(50, "lb"),
  20823. name: "Star Warrior",
  20824. image: {
  20825. source: "./media/characters/tahajin/star-warrior.svg"
  20826. }
  20827. },
  20828. },
  20829. [
  20830. {
  20831. name: "Normal",
  20832. height: math.unit(25 + 6 / 12, "feet"),
  20833. default: true
  20834. },
  20835. ]
  20836. ))
  20837. characterMakers.push(() => makeCharacter(
  20838. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20839. {
  20840. front: {
  20841. height: math.unit(8, "feet"),
  20842. weight: math.unit(350, "lb"),
  20843. name: "Front",
  20844. image: {
  20845. source: "./media/characters/gabira/front.svg",
  20846. extra: 608 / 580,
  20847. bottom: 0.03
  20848. }
  20849. },
  20850. back: {
  20851. height: math.unit(8, "feet"),
  20852. weight: math.unit(350, "lb"),
  20853. name: "Back",
  20854. image: {
  20855. source: "./media/characters/gabira/back.svg",
  20856. extra: 608 / 580,
  20857. bottom: 0.03
  20858. }
  20859. },
  20860. },
  20861. [
  20862. {
  20863. name: "Normal",
  20864. height: math.unit(8, "feet"),
  20865. default: true
  20866. },
  20867. ]
  20868. ))
  20869. characterMakers.push(() => makeCharacter(
  20870. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20871. {
  20872. front: {
  20873. height: math.unit(5 + 3 / 12, "feet"),
  20874. weight: math.unit(137, "lb"),
  20875. name: "Front",
  20876. image: {
  20877. source: "./media/characters/sasha-katraine/front.svg",
  20878. bottom: 0.045
  20879. }
  20880. },
  20881. },
  20882. [
  20883. {
  20884. name: "Micro",
  20885. height: math.unit(5, "inches")
  20886. },
  20887. {
  20888. name: "Normal",
  20889. height: math.unit(5 + 3 / 12, "feet"),
  20890. default: true
  20891. },
  20892. ]
  20893. ))
  20894. characterMakers.push(() => makeCharacter(
  20895. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20896. {
  20897. side: {
  20898. height: math.unit(4, "inches"),
  20899. weight: math.unit(200, "grams"),
  20900. name: "Side",
  20901. image: {
  20902. source: "./media/characters/der/side.svg",
  20903. extra: 719 / 400,
  20904. bottom: 30.6 / 749.9187
  20905. }
  20906. },
  20907. },
  20908. [
  20909. {
  20910. name: "Micro",
  20911. height: math.unit(4, "inches"),
  20912. default: true
  20913. },
  20914. ]
  20915. ))
  20916. characterMakers.push(() => makeCharacter(
  20917. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20918. {
  20919. side: {
  20920. height: math.unit(30, "meters"),
  20921. weight: math.unit(700, "tonnes"),
  20922. name: "Side",
  20923. image: {
  20924. source: "./media/characters/fixerdragon/side.svg",
  20925. extra: (1293.0514 - 116.03) / 1106.86,
  20926. bottom: 116.03 / 1293.0514
  20927. }
  20928. },
  20929. },
  20930. [
  20931. {
  20932. name: "Planck",
  20933. height: math.unit(1.6e-35, "meters")
  20934. },
  20935. {
  20936. name: "Micro",
  20937. height: math.unit(0.4, "meters")
  20938. },
  20939. {
  20940. name: "Normal",
  20941. height: math.unit(30, "meters"),
  20942. default: true
  20943. },
  20944. {
  20945. name: "Megamacro",
  20946. height: math.unit(1.2, "megameters")
  20947. },
  20948. {
  20949. name: "Teramacro",
  20950. height: math.unit(130, "terameters")
  20951. },
  20952. {
  20953. name: "Yottamacro",
  20954. height: math.unit(6200, "yottameters")
  20955. },
  20956. ]
  20957. ));
  20958. characterMakers.push(() => makeCharacter(
  20959. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20960. {
  20961. front: {
  20962. height: math.unit(8, "feet"),
  20963. weight: math.unit(250, "lb"),
  20964. name: "Front",
  20965. image: {
  20966. source: "./media/characters/kite/front.svg",
  20967. extra: 2796 / 2659,
  20968. bottom: 0.002
  20969. }
  20970. },
  20971. },
  20972. [
  20973. {
  20974. name: "Normal",
  20975. height: math.unit(8, "feet"),
  20976. default: true
  20977. },
  20978. {
  20979. name: "Macro",
  20980. height: math.unit(360, "feet")
  20981. },
  20982. {
  20983. name: "Megamacro",
  20984. height: math.unit(1500, "feet")
  20985. },
  20986. ]
  20987. ))
  20988. characterMakers.push(() => makeCharacter(
  20989. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20990. {
  20991. front: {
  20992. height: math.unit(5 + 10 / 12, "feet"),
  20993. weight: math.unit(150, "lb"),
  20994. name: "Front",
  20995. image: {
  20996. source: "./media/characters/poojawa-vynar/front.svg",
  20997. extra: (1506.1547 - 55) / 1356.6,
  20998. bottom: 55 / 1506.1547
  20999. }
  21000. },
  21001. frontTailless: {
  21002. height: math.unit(5 + 10 / 12, "feet"),
  21003. weight: math.unit(150, "lb"),
  21004. name: "Front (Tailless)",
  21005. image: {
  21006. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21007. extra: (1506.1547 - 55) / 1356.6,
  21008. bottom: 55 / 1506.1547
  21009. }
  21010. },
  21011. },
  21012. [
  21013. {
  21014. name: "Normal",
  21015. height: math.unit(5 + 10 / 12, "feet"),
  21016. default: true
  21017. },
  21018. ]
  21019. ))
  21020. characterMakers.push(() => makeCharacter(
  21021. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21022. {
  21023. front: {
  21024. height: math.unit(293, "meters"),
  21025. weight: math.unit(70400, "tons"),
  21026. name: "Front",
  21027. image: {
  21028. source: "./media/characters/violette/front.svg",
  21029. extra: 1227 / 1180,
  21030. bottom: 0.005
  21031. }
  21032. },
  21033. back: {
  21034. height: math.unit(293, "meters"),
  21035. weight: math.unit(70400, "tons"),
  21036. name: "Back",
  21037. image: {
  21038. source: "./media/characters/violette/back.svg",
  21039. extra: 1227 / 1180,
  21040. bottom: 0.005
  21041. }
  21042. },
  21043. },
  21044. [
  21045. {
  21046. name: "Macro",
  21047. height: math.unit(293, "meters"),
  21048. default: true
  21049. },
  21050. ]
  21051. ))
  21052. characterMakers.push(() => makeCharacter(
  21053. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21054. {
  21055. front: {
  21056. height: math.unit(1050, "feet"),
  21057. weight: math.unit(200000, "tons"),
  21058. name: "Front",
  21059. image: {
  21060. source: "./media/characters/alessandra/front.svg",
  21061. extra: 960 / 912,
  21062. bottom: 0.06
  21063. }
  21064. },
  21065. },
  21066. [
  21067. {
  21068. name: "Macro",
  21069. height: math.unit(1050, "feet")
  21070. },
  21071. {
  21072. name: "Macro+",
  21073. height: math.unit(900, "meters"),
  21074. default: true
  21075. },
  21076. ]
  21077. ))
  21078. characterMakers.push(() => makeCharacter(
  21079. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21080. {
  21081. front: {
  21082. height: math.unit(5, "feet"),
  21083. weight: math.unit(187, "lb"),
  21084. name: "Front",
  21085. image: {
  21086. source: "./media/characters/person/front.svg",
  21087. extra: 3087 / 2945,
  21088. bottom: 91 / 3181
  21089. }
  21090. },
  21091. },
  21092. [
  21093. {
  21094. name: "Micro",
  21095. height: math.unit(3, "inches")
  21096. },
  21097. {
  21098. name: "Normal",
  21099. height: math.unit(5, "feet"),
  21100. default: true
  21101. },
  21102. {
  21103. name: "Macro",
  21104. height: math.unit(90, "feet")
  21105. },
  21106. {
  21107. name: "Max Size",
  21108. height: math.unit(280, "feet")
  21109. },
  21110. ]
  21111. ))
  21112. characterMakers.push(() => makeCharacter(
  21113. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21114. {
  21115. front: {
  21116. height: math.unit(4.5, "meters"),
  21117. weight: math.unit(3200, "lb"),
  21118. name: "Front",
  21119. image: {
  21120. source: "./media/characters/ty/front.svg",
  21121. extra: 1038 / 960,
  21122. bottom: 31.156 / 1068
  21123. }
  21124. },
  21125. back: {
  21126. height: math.unit(4.5, "meters"),
  21127. weight: math.unit(3200, "lb"),
  21128. name: "Back",
  21129. image: {
  21130. source: "./media/characters/ty/back.svg",
  21131. extra: 1044 / 966,
  21132. bottom: 7.48 / 1049
  21133. }
  21134. },
  21135. },
  21136. [
  21137. {
  21138. name: "Normal",
  21139. height: math.unit(4.5, "meters"),
  21140. default: true
  21141. },
  21142. ]
  21143. ))
  21144. characterMakers.push(() => makeCharacter(
  21145. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21146. {
  21147. front: {
  21148. height: math.unit(5 + 4 / 12, "feet"),
  21149. weight: math.unit(115, "lb"),
  21150. name: "Front",
  21151. image: {
  21152. source: "./media/characters/rocky/front.svg",
  21153. extra: 1012 / 975,
  21154. bottom: 54 / 1066
  21155. }
  21156. },
  21157. },
  21158. [
  21159. {
  21160. name: "Normal",
  21161. height: math.unit(5 + 4 / 12, "feet"),
  21162. default: true
  21163. },
  21164. ]
  21165. ))
  21166. characterMakers.push(() => makeCharacter(
  21167. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21168. {
  21169. upright: {
  21170. height: math.unit(6, "meters"),
  21171. weight: math.unit(4000, "kg"),
  21172. name: "Upright",
  21173. image: {
  21174. source: "./media/characters/ruin/upright.svg",
  21175. extra: 668 / 661,
  21176. bottom: 42 / 799.8396
  21177. }
  21178. },
  21179. },
  21180. [
  21181. {
  21182. name: "Normal",
  21183. height: math.unit(6, "meters"),
  21184. default: true
  21185. },
  21186. ]
  21187. ))
  21188. characterMakers.push(() => makeCharacter(
  21189. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21190. {
  21191. front: {
  21192. height: math.unit(5, "feet"),
  21193. weight: math.unit(106, "lb"),
  21194. name: "Front",
  21195. image: {
  21196. source: "./media/characters/robin/front.svg",
  21197. extra: 862 / 799,
  21198. bottom: 42.4 / 914.8856
  21199. }
  21200. },
  21201. },
  21202. [
  21203. {
  21204. name: "Normal",
  21205. height: math.unit(5, "feet"),
  21206. default: true
  21207. },
  21208. ]
  21209. ))
  21210. characterMakers.push(() => makeCharacter(
  21211. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21212. {
  21213. side: {
  21214. height: math.unit(3, "feet"),
  21215. weight: math.unit(225, "lb"),
  21216. name: "Side",
  21217. image: {
  21218. source: "./media/characters/saian/side.svg",
  21219. extra: 566 / 356,
  21220. bottom: 79.7 / 643
  21221. }
  21222. },
  21223. maw: {
  21224. height: math.unit(2.85, "feet"),
  21225. name: "Maw",
  21226. image: {
  21227. source: "./media/characters/saian/maw.svg"
  21228. }
  21229. },
  21230. },
  21231. [
  21232. {
  21233. name: "Normal",
  21234. height: math.unit(3, "feet"),
  21235. default: true
  21236. },
  21237. ]
  21238. ))
  21239. characterMakers.push(() => makeCharacter(
  21240. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21241. {
  21242. side: {
  21243. height: math.unit(8, "feet"),
  21244. weight: math.unit(300, "lb"),
  21245. name: "Side",
  21246. image: {
  21247. source: "./media/characters/equus-silvermane/side.svg",
  21248. extra: 2176 / 2050,
  21249. bottom: 65.7 / 2245
  21250. }
  21251. },
  21252. front: {
  21253. height: math.unit(8, "feet"),
  21254. weight: math.unit(300, "lb"),
  21255. name: "Front",
  21256. image: {
  21257. source: "./media/characters/equus-silvermane/front.svg",
  21258. extra: 4633 / 4400,
  21259. bottom: 71.3 / 4706.915
  21260. }
  21261. },
  21262. sideStepping: {
  21263. height: math.unit(8, "feet"),
  21264. weight: math.unit(300, "lb"),
  21265. name: "Side (Stepping)",
  21266. image: {
  21267. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21268. extra: 1968 / 1860,
  21269. bottom: 16.4 / 1989
  21270. }
  21271. },
  21272. },
  21273. [
  21274. {
  21275. name: "Normal",
  21276. height: math.unit(8, "feet")
  21277. },
  21278. {
  21279. name: "Minimacro",
  21280. height: math.unit(75, "feet"),
  21281. default: true
  21282. },
  21283. {
  21284. name: "Macro",
  21285. height: math.unit(150, "feet")
  21286. },
  21287. {
  21288. name: "Macro+",
  21289. height: math.unit(1000, "feet")
  21290. },
  21291. {
  21292. name: "Megamacro",
  21293. height: math.unit(1, "mile")
  21294. },
  21295. ]
  21296. ))
  21297. characterMakers.push(() => makeCharacter(
  21298. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21299. {
  21300. side: {
  21301. height: math.unit(20, "feet"),
  21302. weight: math.unit(30000, "kg"),
  21303. name: "Side",
  21304. image: {
  21305. source: "./media/characters/windar/side.svg",
  21306. extra: 1491 / 1248,
  21307. bottom: 82.56 / 1568
  21308. }
  21309. },
  21310. },
  21311. [
  21312. {
  21313. name: "Normal",
  21314. height: math.unit(20, "feet"),
  21315. default: true
  21316. },
  21317. ]
  21318. ))
  21319. characterMakers.push(() => makeCharacter(
  21320. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21321. {
  21322. side: {
  21323. height: math.unit(15.66, "feet"),
  21324. weight: math.unit(150, "lb"),
  21325. name: "Side",
  21326. image: {
  21327. source: "./media/characters/melody/side.svg",
  21328. extra: 1097 / 944,
  21329. bottom: 11.8 / 1109
  21330. }
  21331. },
  21332. sideOutfit: {
  21333. height: math.unit(15.66, "feet"),
  21334. weight: math.unit(150, "lb"),
  21335. name: "Side (Outfit)",
  21336. image: {
  21337. source: "./media/characters/melody/side-outfit.svg",
  21338. extra: 1097 / 944,
  21339. bottom: 11.8 / 1109
  21340. }
  21341. },
  21342. },
  21343. [
  21344. {
  21345. name: "Normal",
  21346. height: math.unit(15.66, "feet"),
  21347. default: true
  21348. },
  21349. ]
  21350. ))
  21351. characterMakers.push(() => makeCharacter(
  21352. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21353. {
  21354. front: {
  21355. height: math.unit(8, "feet"),
  21356. weight: math.unit(325, "lb"),
  21357. name: "Front",
  21358. image: {
  21359. source: "./media/characters/windera/front.svg",
  21360. extra: 3180 / 2845,
  21361. bottom: 178 / 3365
  21362. }
  21363. },
  21364. },
  21365. [
  21366. {
  21367. name: "Normal",
  21368. height: math.unit(8, "feet"),
  21369. default: true
  21370. },
  21371. ]
  21372. ))
  21373. characterMakers.push(() => makeCharacter(
  21374. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21375. {
  21376. front: {
  21377. height: math.unit(28.75, "feet"),
  21378. weight: math.unit(2000, "kg"),
  21379. name: "Front",
  21380. image: {
  21381. source: "./media/characters/sonear/front.svg",
  21382. extra: 1041.1 / 964.9,
  21383. bottom: 53.7 / 1096.6
  21384. }
  21385. },
  21386. },
  21387. [
  21388. {
  21389. name: "Normal",
  21390. height: math.unit(28.75, "feet"),
  21391. default: true
  21392. },
  21393. ]
  21394. ))
  21395. characterMakers.push(() => makeCharacter(
  21396. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21397. {
  21398. side: {
  21399. height: math.unit(25.5, "feet"),
  21400. weight: math.unit(23000, "kg"),
  21401. name: "Side",
  21402. image: {
  21403. source: "./media/characters/kanara/side.svg"
  21404. }
  21405. },
  21406. },
  21407. [
  21408. {
  21409. name: "Normal",
  21410. height: math.unit(25.5, "feet"),
  21411. default: true
  21412. },
  21413. ]
  21414. ))
  21415. characterMakers.push(() => makeCharacter(
  21416. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21417. {
  21418. side: {
  21419. height: math.unit(10, "feet"),
  21420. weight: math.unit(1000, "kg"),
  21421. name: "Side",
  21422. image: {
  21423. source: "./media/characters/ereus/side.svg",
  21424. extra: 1157 / 959,
  21425. bottom: 153 / 1312.5
  21426. }
  21427. },
  21428. },
  21429. [
  21430. {
  21431. name: "Normal",
  21432. height: math.unit(10, "feet"),
  21433. default: true
  21434. },
  21435. ]
  21436. ))
  21437. characterMakers.push(() => makeCharacter(
  21438. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21439. {
  21440. side: {
  21441. height: math.unit(4.5, "feet"),
  21442. weight: math.unit(500, "lb"),
  21443. name: "Side",
  21444. image: {
  21445. source: "./media/characters/e-ter/side.svg",
  21446. extra: 1550 / 1248,
  21447. bottom: 146 / 1694
  21448. }
  21449. },
  21450. },
  21451. [
  21452. {
  21453. name: "Normal",
  21454. height: math.unit(4.5, "feet"),
  21455. default: true
  21456. },
  21457. ]
  21458. ))
  21459. characterMakers.push(() => makeCharacter(
  21460. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21461. {
  21462. side: {
  21463. height: math.unit(9.7, "feet"),
  21464. weight: math.unit(4000, "kg"),
  21465. name: "Side",
  21466. image: {
  21467. source: "./media/characters/yamie/side.svg"
  21468. }
  21469. },
  21470. },
  21471. [
  21472. {
  21473. name: "Normal",
  21474. height: math.unit(9.7, "feet"),
  21475. default: true
  21476. },
  21477. ]
  21478. ))
  21479. characterMakers.push(() => makeCharacter(
  21480. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21481. {
  21482. front: {
  21483. height: math.unit(50, "feet"),
  21484. weight: math.unit(50000, "kg"),
  21485. name: "Front",
  21486. image: {
  21487. source: "./media/characters/anders/front.svg",
  21488. extra: 570 / 539,
  21489. bottom: 14.7 / 586.7
  21490. }
  21491. },
  21492. },
  21493. [
  21494. {
  21495. name: "Large",
  21496. height: math.unit(50, "feet")
  21497. },
  21498. {
  21499. name: "Macro",
  21500. height: math.unit(2000, "feet"),
  21501. default: true
  21502. },
  21503. {
  21504. name: "Megamacro",
  21505. height: math.unit(12, "miles")
  21506. },
  21507. ]
  21508. ))
  21509. characterMakers.push(() => makeCharacter(
  21510. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21511. {
  21512. front: {
  21513. height: math.unit(7 + 2 / 12, "feet"),
  21514. weight: math.unit(300, "lb"),
  21515. name: "Front",
  21516. image: {
  21517. source: "./media/characters/reban/front.svg",
  21518. extra: 516 / 487,
  21519. bottom: 42.82 / 558.356
  21520. }
  21521. },
  21522. dick: {
  21523. height: math.unit(7 / 5, "feet"),
  21524. name: "Dick",
  21525. image: {
  21526. source: "./media/characters/reban/dick.svg"
  21527. }
  21528. },
  21529. },
  21530. [
  21531. {
  21532. name: "Natural Height",
  21533. height: math.unit(7 + 2 / 12, "feet")
  21534. },
  21535. {
  21536. name: "Macro",
  21537. height: math.unit(500, "feet"),
  21538. default: true
  21539. },
  21540. {
  21541. name: "Canon Height",
  21542. height: math.unit(50, "AU")
  21543. },
  21544. ]
  21545. ))
  21546. characterMakers.push(() => makeCharacter(
  21547. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21548. {
  21549. front: {
  21550. height: math.unit(6, "feet"),
  21551. weight: math.unit(150, "lb"),
  21552. name: "Front",
  21553. image: {
  21554. source: "./media/characters/terrance-keayes/front.svg",
  21555. extra: 1.005,
  21556. bottom: 151 / 1615
  21557. }
  21558. },
  21559. side: {
  21560. height: math.unit(6, "feet"),
  21561. weight: math.unit(150, "lb"),
  21562. name: "Side",
  21563. image: {
  21564. source: "./media/characters/terrance-keayes/side.svg",
  21565. extra: 1.005,
  21566. bottom: 129.4 / 1544
  21567. }
  21568. },
  21569. back: {
  21570. height: math.unit(6, "feet"),
  21571. weight: math.unit(150, "lb"),
  21572. name: "Back",
  21573. image: {
  21574. source: "./media/characters/terrance-keayes/back.svg",
  21575. extra: 1.005,
  21576. bottom: 58.4 / 1557.3
  21577. }
  21578. },
  21579. dick: {
  21580. height: math.unit(6 * 0.208, "feet"),
  21581. name: "Dick",
  21582. image: {
  21583. source: "./media/characters/terrance-keayes/dick.svg"
  21584. }
  21585. },
  21586. },
  21587. [
  21588. {
  21589. name: "Canon Height",
  21590. height: math.unit(35, "miles"),
  21591. default: true
  21592. },
  21593. ]
  21594. ))
  21595. characterMakers.push(() => makeCharacter(
  21596. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21597. {
  21598. front: {
  21599. height: math.unit(6, "feet"),
  21600. weight: math.unit(150, "lb"),
  21601. name: "Front",
  21602. image: {
  21603. source: "./media/characters/ofelia/front.svg",
  21604. extra: 546 / 541,
  21605. bottom: 39 / 583
  21606. }
  21607. },
  21608. back: {
  21609. height: math.unit(6, "feet"),
  21610. weight: math.unit(150, "lb"),
  21611. name: "Back",
  21612. image: {
  21613. source: "./media/characters/ofelia/back.svg",
  21614. extra: 564 / 559.5,
  21615. bottom: 8.69 / 573.02
  21616. }
  21617. },
  21618. maw: {
  21619. height: math.unit(1, "feet"),
  21620. name: "Maw",
  21621. image: {
  21622. source: "./media/characters/ofelia/maw.svg"
  21623. }
  21624. },
  21625. foot: {
  21626. height: math.unit(1.949, "feet"),
  21627. name: "Foot",
  21628. image: {
  21629. source: "./media/characters/ofelia/foot.svg"
  21630. }
  21631. },
  21632. },
  21633. [
  21634. {
  21635. name: "Canon Height",
  21636. height: math.unit(2000, "miles"),
  21637. default: true
  21638. },
  21639. ]
  21640. ))
  21641. characterMakers.push(() => makeCharacter(
  21642. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21643. {
  21644. front: {
  21645. height: math.unit(6, "feet"),
  21646. weight: math.unit(150, "lb"),
  21647. name: "Front",
  21648. image: {
  21649. source: "./media/characters/samuel/front.svg",
  21650. extra: 265 / 258,
  21651. bottom: 2 / 266.1566
  21652. }
  21653. },
  21654. },
  21655. [
  21656. {
  21657. name: "Macro",
  21658. height: math.unit(100, "feet"),
  21659. default: true
  21660. },
  21661. {
  21662. name: "Full Size",
  21663. height: math.unit(1000, "miles")
  21664. },
  21665. ]
  21666. ))
  21667. characterMakers.push(() => makeCharacter(
  21668. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21669. {
  21670. front: {
  21671. height: math.unit(6, "feet"),
  21672. weight: math.unit(300, "lb"),
  21673. name: "Front",
  21674. image: {
  21675. source: "./media/characters/beishir-kiel/front.svg",
  21676. extra: 569 / 547,
  21677. bottom: 41.9 / 609
  21678. }
  21679. },
  21680. maw: {
  21681. height: math.unit(6 * 0.202, "feet"),
  21682. name: "Maw",
  21683. image: {
  21684. source: "./media/characters/beishir-kiel/maw.svg"
  21685. }
  21686. },
  21687. },
  21688. [
  21689. {
  21690. name: "Macro",
  21691. height: math.unit(300, "feet"),
  21692. default: true
  21693. },
  21694. ]
  21695. ))
  21696. characterMakers.push(() => makeCharacter(
  21697. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21698. {
  21699. front: {
  21700. height: math.unit(5 + 8 / 12, "feet"),
  21701. weight: math.unit(120, "lb"),
  21702. name: "Front",
  21703. image: {
  21704. source: "./media/characters/logan-grey/front.svg",
  21705. extra: 2539 / 2393,
  21706. bottom: 97.6 / 2636.37
  21707. }
  21708. },
  21709. frontAlt: {
  21710. height: math.unit(5 + 8 / 12, "feet"),
  21711. weight: math.unit(120, "lb"),
  21712. name: "Front (Alt)",
  21713. image: {
  21714. source: "./media/characters/logan-grey/front-alt.svg",
  21715. extra: 958 / 893,
  21716. bottom: 15 / 970.768
  21717. }
  21718. },
  21719. back: {
  21720. height: math.unit(5 + 8 / 12, "feet"),
  21721. weight: math.unit(120, "lb"),
  21722. name: "Back",
  21723. image: {
  21724. source: "./media/characters/logan-grey/back.svg",
  21725. extra: 958 / 893,
  21726. bottom: 2.1881 / 970.9788
  21727. }
  21728. },
  21729. dick: {
  21730. height: math.unit(1.437, "feet"),
  21731. name: "Dick",
  21732. image: {
  21733. source: "./media/characters/logan-grey/dick.svg"
  21734. }
  21735. },
  21736. },
  21737. [
  21738. {
  21739. name: "Normal",
  21740. height: math.unit(5 + 8 / 12, "feet")
  21741. },
  21742. {
  21743. name: "The 500 Foot Femboy",
  21744. height: math.unit(500, "feet"),
  21745. default: true
  21746. },
  21747. {
  21748. name: "Megmacro",
  21749. height: math.unit(20, "miles")
  21750. },
  21751. ]
  21752. ))
  21753. characterMakers.push(() => makeCharacter(
  21754. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21755. {
  21756. front: {
  21757. height: math.unit(8 + 2 / 12, "feet"),
  21758. weight: math.unit(275, "lb"),
  21759. name: "Front",
  21760. image: {
  21761. source: "./media/characters/draganta/front.svg",
  21762. extra: 1177 / 1135,
  21763. bottom: 33.46 / 1212.1
  21764. }
  21765. },
  21766. },
  21767. [
  21768. {
  21769. name: "Normal",
  21770. height: math.unit(8 + 6 / 12, "feet"),
  21771. default: true
  21772. },
  21773. {
  21774. name: "Macro",
  21775. height: math.unit(150, "feet")
  21776. },
  21777. {
  21778. name: "Megamacro",
  21779. height: math.unit(1000, "miles")
  21780. },
  21781. ]
  21782. ))
  21783. characterMakers.push(() => makeCharacter(
  21784. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21785. {
  21786. front: {
  21787. height: math.unit(1.72, "m"),
  21788. weight: math.unit(80, "lb"),
  21789. name: "Front",
  21790. image: {
  21791. source: "./media/characters/voski/front.svg",
  21792. extra: 2076.22 / 2022.4,
  21793. bottom: 102.7 / 2177.3866
  21794. }
  21795. },
  21796. frontNsfw: {
  21797. height: math.unit(1.72, "m"),
  21798. weight: math.unit(80, "lb"),
  21799. name: "Front (NSFW)",
  21800. image: {
  21801. source: "./media/characters/voski/front-nsfw.svg",
  21802. extra: 2076.22 / 2022.4,
  21803. bottom: 102.7 / 2177.3866
  21804. }
  21805. },
  21806. back: {
  21807. height: math.unit(1.72, "m"),
  21808. weight: math.unit(80, "lb"),
  21809. name: "Back",
  21810. image: {
  21811. source: "./media/characters/voski/back.svg",
  21812. extra: 2104 / 2051,
  21813. bottom: 10.45 / 2113.63
  21814. }
  21815. },
  21816. },
  21817. [
  21818. {
  21819. name: "Normal",
  21820. height: math.unit(1.72, "m")
  21821. },
  21822. {
  21823. name: "Macro",
  21824. height: math.unit(55, "m"),
  21825. default: true
  21826. },
  21827. {
  21828. name: "Macro+",
  21829. height: math.unit(300, "m")
  21830. },
  21831. {
  21832. name: "Macro++",
  21833. height: math.unit(700, "m")
  21834. },
  21835. {
  21836. name: "Macro+++",
  21837. height: math.unit(4500, "m")
  21838. },
  21839. {
  21840. name: "Macro++++",
  21841. height: math.unit(45, "km")
  21842. },
  21843. {
  21844. name: "Macro+++++",
  21845. height: math.unit(1220, "km")
  21846. },
  21847. ]
  21848. ))
  21849. characterMakers.push(() => makeCharacter(
  21850. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21851. {
  21852. front: {
  21853. height: math.unit(2.3, "m"),
  21854. weight: math.unit(304, "kg"),
  21855. name: "Front",
  21856. image: {
  21857. source: "./media/characters/icowom-lee/front.svg",
  21858. extra: 985 / 955,
  21859. bottom: 25.4 / 1012
  21860. }
  21861. },
  21862. fronttentacles: {
  21863. height: math.unit(2.3, "m"),
  21864. weight: math.unit(304, "kg"),
  21865. name: "Front-tentacles",
  21866. image: {
  21867. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21868. extra: 985 / 955,
  21869. bottom: 25.4 / 1012
  21870. }
  21871. },
  21872. back: {
  21873. height: math.unit(2.3, "m"),
  21874. weight: math.unit(304, "kg"),
  21875. name: "Back",
  21876. image: {
  21877. source: "./media/characters/icowom-lee/back.svg",
  21878. extra: 975 / 954,
  21879. bottom: 9.5 / 985
  21880. }
  21881. },
  21882. backtentacles: {
  21883. height: math.unit(2.3, "m"),
  21884. weight: math.unit(304, "kg"),
  21885. name: "Back-tentacles",
  21886. image: {
  21887. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21888. extra: 975 / 954,
  21889. bottom: 9.5 / 985
  21890. }
  21891. },
  21892. frontDressed: {
  21893. height: math.unit(2.3, "m"),
  21894. weight: math.unit(304, "kg"),
  21895. name: "Front (Dressed)",
  21896. image: {
  21897. source: "./media/characters/icowom-lee/front-dressed.svg",
  21898. extra: 3076 / 2933,
  21899. bottom: 51.4 / 3125.1889
  21900. }
  21901. },
  21902. rump: {
  21903. height: math.unit(0.776, "meters"),
  21904. name: "Rump",
  21905. image: {
  21906. source: "./media/characters/icowom-lee/rump.svg"
  21907. }
  21908. },
  21909. genitals: {
  21910. height: math.unit(0.78, "meters"),
  21911. name: "Genitals",
  21912. image: {
  21913. source: "./media/characters/icowom-lee/genitals.svg"
  21914. }
  21915. },
  21916. },
  21917. [
  21918. {
  21919. name: "Normal",
  21920. height: math.unit(2.3, "meters"),
  21921. default: true
  21922. },
  21923. {
  21924. name: "Macro",
  21925. height: math.unit(94, "meters"),
  21926. default: true
  21927. },
  21928. ]
  21929. ))
  21930. characterMakers.push(() => makeCharacter(
  21931. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21932. {
  21933. front: {
  21934. height: math.unit(22, "meters"),
  21935. weight: math.unit(21000, "kg"),
  21936. name: "Front",
  21937. image: {
  21938. source: "./media/characters/shock-diamond/front.svg",
  21939. extra: 2204 / 2053,
  21940. bottom: 65 / 2239.47
  21941. }
  21942. },
  21943. frontNude: {
  21944. height: math.unit(22, "meters"),
  21945. weight: math.unit(21000, "kg"),
  21946. name: "Front (Nude)",
  21947. image: {
  21948. source: "./media/characters/shock-diamond/front-nude.svg",
  21949. extra: 2514 / 2285,
  21950. bottom: 13 / 2527.56
  21951. }
  21952. },
  21953. },
  21954. [
  21955. {
  21956. name: "Normal",
  21957. height: math.unit(3, "meters")
  21958. },
  21959. {
  21960. name: "Macro",
  21961. height: math.unit(22, "meters"),
  21962. default: true
  21963. },
  21964. ]
  21965. ))
  21966. characterMakers.push(() => makeCharacter(
  21967. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21968. {
  21969. front: {
  21970. height: math.unit(5 + 4 / 12, "feet"),
  21971. weight: math.unit(120, "lb"),
  21972. name: "Front",
  21973. image: {
  21974. source: "./media/characters/rory/front.svg",
  21975. extra: 589 / 556,
  21976. bottom: 45.7 / 635.76
  21977. }
  21978. },
  21979. frontNude: {
  21980. height: math.unit(5 + 4 / 12, "feet"),
  21981. weight: math.unit(120, "lb"),
  21982. name: "Front (Nude)",
  21983. image: {
  21984. source: "./media/characters/rory/front-nude.svg",
  21985. extra: 589 / 556,
  21986. bottom: 45.7 / 635.76
  21987. }
  21988. },
  21989. side: {
  21990. height: math.unit(5 + 4 / 12, "feet"),
  21991. weight: math.unit(120, "lb"),
  21992. name: "Side",
  21993. image: {
  21994. source: "./media/characters/rory/side.svg",
  21995. extra: 597 / 564,
  21996. bottom: 55 / 653
  21997. }
  21998. },
  21999. back: {
  22000. height: math.unit(5 + 4 / 12, "feet"),
  22001. weight: math.unit(120, "lb"),
  22002. name: "Back",
  22003. image: {
  22004. source: "./media/characters/rory/back.svg",
  22005. extra: 620 / 585,
  22006. bottom: 8.86 / 630.43
  22007. }
  22008. },
  22009. dick: {
  22010. height: math.unit(0.86, "feet"),
  22011. name: "Dick",
  22012. image: {
  22013. source: "./media/characters/rory/dick.svg"
  22014. }
  22015. },
  22016. },
  22017. [
  22018. {
  22019. name: "Normal",
  22020. height: math.unit(5 + 4 / 12, "feet"),
  22021. default: true
  22022. },
  22023. {
  22024. name: "Macro",
  22025. height: math.unit(100, "feet")
  22026. },
  22027. {
  22028. name: "Macro+",
  22029. height: math.unit(140, "feet")
  22030. },
  22031. {
  22032. name: "Macro++",
  22033. height: math.unit(300, "feet")
  22034. },
  22035. ]
  22036. ))
  22037. characterMakers.push(() => makeCharacter(
  22038. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22039. {
  22040. front: {
  22041. height: math.unit(5 + 9 / 12, "feet"),
  22042. weight: math.unit(190, "lb"),
  22043. name: "Front",
  22044. image: {
  22045. source: "./media/characters/sprisk/front.svg",
  22046. extra: 1225 / 1180,
  22047. bottom: 42.7 / 1266.4
  22048. }
  22049. },
  22050. frontNsfw: {
  22051. height: math.unit(5 + 9 / 12, "feet"),
  22052. weight: math.unit(190, "lb"),
  22053. name: "Front (NSFW)",
  22054. image: {
  22055. source: "./media/characters/sprisk/front-nsfw.svg",
  22056. extra: 1225 / 1180,
  22057. bottom: 42.7 / 1266.4
  22058. }
  22059. },
  22060. back: {
  22061. height: math.unit(5 + 9 / 12, "feet"),
  22062. weight: math.unit(190, "lb"),
  22063. name: "Back",
  22064. image: {
  22065. source: "./media/characters/sprisk/back.svg",
  22066. extra: 1247 / 1200,
  22067. bottom: 5.6 / 1253.04
  22068. }
  22069. },
  22070. },
  22071. [
  22072. {
  22073. name: "Tiny",
  22074. height: math.unit(2, "inches")
  22075. },
  22076. {
  22077. name: "Normal",
  22078. height: math.unit(5 + 9 / 12, "feet"),
  22079. default: true
  22080. },
  22081. {
  22082. name: "Mini Macro",
  22083. height: math.unit(18, "feet")
  22084. },
  22085. {
  22086. name: "Macro",
  22087. height: math.unit(100, "feet")
  22088. },
  22089. {
  22090. name: "MACRO",
  22091. height: math.unit(50, "miles")
  22092. },
  22093. {
  22094. name: "M A C R O",
  22095. height: math.unit(300, "miles")
  22096. },
  22097. ]
  22098. ))
  22099. characterMakers.push(() => makeCharacter(
  22100. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22101. {
  22102. side: {
  22103. height: math.unit(15.6, "meters"),
  22104. weight: math.unit(700000, "kg"),
  22105. name: "Side",
  22106. image: {
  22107. source: "./media/characters/bunsen/side.svg",
  22108. extra: 1644 / 358
  22109. }
  22110. },
  22111. foot: {
  22112. height: math.unit(1.611 * 1644 / 358, "meter"),
  22113. name: "Foot",
  22114. image: {
  22115. source: "./media/characters/bunsen/foot.svg"
  22116. }
  22117. },
  22118. },
  22119. [
  22120. {
  22121. name: "Small",
  22122. height: math.unit(10, "feet")
  22123. },
  22124. {
  22125. name: "Normal",
  22126. height: math.unit(15.6, "meters"),
  22127. default: true
  22128. },
  22129. ]
  22130. ))
  22131. characterMakers.push(() => makeCharacter(
  22132. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22133. {
  22134. front: {
  22135. height: math.unit(4 + 11 / 12, "feet"),
  22136. weight: math.unit(140, "lb"),
  22137. name: "Front",
  22138. image: {
  22139. source: "./media/characters/sesh/front.svg",
  22140. extra: 3420 / 3231,
  22141. bottom: 72 / 3949.5
  22142. }
  22143. },
  22144. },
  22145. [
  22146. {
  22147. name: "Normal",
  22148. height: math.unit(4 + 11 / 12, "feet")
  22149. },
  22150. {
  22151. name: "Grown",
  22152. height: math.unit(15, "feet"),
  22153. default: true
  22154. },
  22155. {
  22156. name: "Macro",
  22157. height: math.unit(1500, "feet")
  22158. },
  22159. {
  22160. name: "Megamacro",
  22161. height: math.unit(30, "miles")
  22162. },
  22163. {
  22164. name: "Continental",
  22165. height: math.unit(3000, "miles")
  22166. },
  22167. {
  22168. name: "Gravity Mass",
  22169. height: math.unit(300000, "miles")
  22170. },
  22171. {
  22172. name: "Planet Buster",
  22173. height: math.unit(30000000, "miles")
  22174. },
  22175. {
  22176. name: "Big",
  22177. height: math.unit(3000000000, "miles")
  22178. },
  22179. ]
  22180. ))
  22181. characterMakers.push(() => makeCharacter(
  22182. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22183. {
  22184. front: {
  22185. height: math.unit(9, "feet"),
  22186. weight: math.unit(350, "lb"),
  22187. name: "Front",
  22188. image: {
  22189. source: "./media/characters/pepper/front.svg",
  22190. extra: 1448 / 1312,
  22191. bottom: 9.4 / 1457.88
  22192. }
  22193. },
  22194. back: {
  22195. height: math.unit(9, "feet"),
  22196. weight: math.unit(350, "lb"),
  22197. name: "Back",
  22198. image: {
  22199. source: "./media/characters/pepper/back.svg",
  22200. extra: 1423 / 1300,
  22201. bottom: 4.6 / 1429
  22202. }
  22203. },
  22204. maw: {
  22205. height: math.unit(0.932, "feet"),
  22206. name: "Maw",
  22207. image: {
  22208. source: "./media/characters/pepper/maw.svg"
  22209. }
  22210. },
  22211. },
  22212. [
  22213. {
  22214. name: "Normal",
  22215. height: math.unit(9, "feet"),
  22216. default: true
  22217. },
  22218. ]
  22219. ))
  22220. characterMakers.push(() => makeCharacter(
  22221. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22222. {
  22223. front: {
  22224. height: math.unit(6, "feet"),
  22225. weight: math.unit(150, "lb"),
  22226. name: "Front",
  22227. image: {
  22228. source: "./media/characters/maelstrom/front.svg",
  22229. extra: 2100 / 1883,
  22230. bottom: 94 / 2196.7
  22231. }
  22232. },
  22233. },
  22234. [
  22235. {
  22236. name: "Less Kaiju",
  22237. height: math.unit(200, "feet")
  22238. },
  22239. {
  22240. name: "Kaiju",
  22241. height: math.unit(400, "feet"),
  22242. default: true
  22243. },
  22244. {
  22245. name: "Kaiju-er",
  22246. height: math.unit(600, "feet")
  22247. },
  22248. ]
  22249. ))
  22250. characterMakers.push(() => makeCharacter(
  22251. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22252. {
  22253. front: {
  22254. height: math.unit(6 + 5 / 12, "feet"),
  22255. weight: math.unit(180, "lb"),
  22256. name: "Front",
  22257. image: {
  22258. source: "./media/characters/lexir/front.svg",
  22259. extra: 180 / 172,
  22260. bottom: 12 / 192
  22261. }
  22262. },
  22263. back: {
  22264. height: math.unit(6 + 5 / 12, "feet"),
  22265. weight: math.unit(180, "lb"),
  22266. name: "Back",
  22267. image: {
  22268. source: "./media/characters/lexir/back.svg",
  22269. extra: 183.84 / 175.5,
  22270. bottom: 3.1 / 187
  22271. }
  22272. },
  22273. },
  22274. [
  22275. {
  22276. name: "Very Smal",
  22277. height: math.unit(1, "nm")
  22278. },
  22279. {
  22280. name: "Normal",
  22281. height: math.unit(6 + 5 / 12, "feet"),
  22282. default: true
  22283. },
  22284. {
  22285. name: "Macro",
  22286. height: math.unit(1, "mile")
  22287. },
  22288. {
  22289. name: "Megamacro",
  22290. height: math.unit(50, "miles")
  22291. },
  22292. ]
  22293. ))
  22294. characterMakers.push(() => makeCharacter(
  22295. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22296. {
  22297. front: {
  22298. height: math.unit(1.5, "meters"),
  22299. weight: math.unit(100, "lb"),
  22300. name: "Front",
  22301. image: {
  22302. source: "./media/characters/maksio/front.svg",
  22303. extra: 1549 / 1531,
  22304. bottom: 123.7 / 1674.5429
  22305. }
  22306. },
  22307. back: {
  22308. height: math.unit(1.5, "meters"),
  22309. weight: math.unit(100, "lb"),
  22310. name: "Back",
  22311. image: {
  22312. source: "./media/characters/maksio/back.svg",
  22313. extra: 1541 / 1509,
  22314. bottom: 97 / 1639
  22315. }
  22316. },
  22317. hand: {
  22318. height: math.unit(0.621, "feet"),
  22319. name: "Hand",
  22320. image: {
  22321. source: "./media/characters/maksio/hand.svg"
  22322. }
  22323. },
  22324. foot: {
  22325. height: math.unit(1.611, "feet"),
  22326. name: "Foot",
  22327. image: {
  22328. source: "./media/characters/maksio/foot.svg"
  22329. }
  22330. },
  22331. },
  22332. [
  22333. {
  22334. name: "Shrunken",
  22335. height: math.unit(10, "cm")
  22336. },
  22337. {
  22338. name: "Normal",
  22339. height: math.unit(150, "cm"),
  22340. default: true
  22341. },
  22342. ]
  22343. ))
  22344. characterMakers.push(() => makeCharacter(
  22345. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22346. {
  22347. front: {
  22348. height: math.unit(100, "feet"),
  22349. name: "Front",
  22350. image: {
  22351. source: "./media/characters/erza-bear/front.svg",
  22352. extra: 2449 / 2390,
  22353. bottom: 46 / 2494
  22354. }
  22355. },
  22356. back: {
  22357. height: math.unit(100, "feet"),
  22358. name: "Back",
  22359. image: {
  22360. source: "./media/characters/erza-bear/back.svg",
  22361. extra: 2489 / 2430,
  22362. bottom: 85.4 / 2480
  22363. }
  22364. },
  22365. tail: {
  22366. height: math.unit(42, "feet"),
  22367. name: "Tail",
  22368. image: {
  22369. source: "./media/characters/erza-bear/tail.svg"
  22370. }
  22371. },
  22372. tongue: {
  22373. height: math.unit(8, "feet"),
  22374. name: "Tongue",
  22375. image: {
  22376. source: "./media/characters/erza-bear/tongue.svg"
  22377. }
  22378. },
  22379. dick: {
  22380. height: math.unit(10.5, "feet"),
  22381. name: "Dick",
  22382. image: {
  22383. source: "./media/characters/erza-bear/dick.svg"
  22384. }
  22385. },
  22386. dickVertical: {
  22387. height: math.unit(16.9, "feet"),
  22388. name: "Dick (Vertical)",
  22389. image: {
  22390. source: "./media/characters/erza-bear/dick-vertical.svg"
  22391. }
  22392. },
  22393. },
  22394. [
  22395. {
  22396. name: "Macro",
  22397. height: math.unit(100, "feet"),
  22398. default: true
  22399. },
  22400. ]
  22401. ))
  22402. characterMakers.push(() => makeCharacter(
  22403. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22404. {
  22405. front: {
  22406. height: math.unit(172, "cm"),
  22407. weight: math.unit(73, "kg"),
  22408. name: "Front",
  22409. image: {
  22410. source: "./media/characters/violet-flor/front.svg",
  22411. extra: 1530 / 1442,
  22412. bottom: 61.9 / 1588.8
  22413. }
  22414. },
  22415. back: {
  22416. height: math.unit(180, "cm"),
  22417. weight: math.unit(73, "kg"),
  22418. name: "Back",
  22419. image: {
  22420. source: "./media/characters/violet-flor/back.svg",
  22421. extra: 1692 / 1630,
  22422. bottom: 20 / 1712
  22423. }
  22424. },
  22425. },
  22426. [
  22427. {
  22428. name: "Normal",
  22429. height: math.unit(172, "cm"),
  22430. default: true
  22431. },
  22432. ]
  22433. ))
  22434. characterMakers.push(() => makeCharacter(
  22435. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22436. {
  22437. front: {
  22438. height: math.unit(6, "feet"),
  22439. weight: math.unit(220, "lb"),
  22440. name: "Front",
  22441. image: {
  22442. source: "./media/characters/lynn-rhea/front.svg",
  22443. extra: 310 / 273
  22444. }
  22445. },
  22446. back: {
  22447. height: math.unit(6, "feet"),
  22448. weight: math.unit(220, "lb"),
  22449. name: "Back",
  22450. image: {
  22451. source: "./media/characters/lynn-rhea/back.svg",
  22452. extra: 310 / 273
  22453. }
  22454. },
  22455. dicks: {
  22456. height: math.unit(0.9, "feet"),
  22457. name: "Dicks",
  22458. image: {
  22459. source: "./media/characters/lynn-rhea/dicks.svg"
  22460. }
  22461. },
  22462. slit: {
  22463. height: math.unit(0.4, "feet"),
  22464. name: "Slit",
  22465. image: {
  22466. source: "./media/characters/lynn-rhea/slit.svg"
  22467. }
  22468. },
  22469. },
  22470. [
  22471. {
  22472. name: "Micro",
  22473. height: math.unit(1, "inch")
  22474. },
  22475. {
  22476. name: "Macro",
  22477. height: math.unit(60, "feet"),
  22478. default: true
  22479. },
  22480. {
  22481. name: "Megamacro",
  22482. height: math.unit(2, "miles")
  22483. },
  22484. {
  22485. name: "Gigamacro",
  22486. height: math.unit(3, "earths")
  22487. },
  22488. {
  22489. name: "Galactic",
  22490. height: math.unit(0.8, "galaxies")
  22491. },
  22492. ]
  22493. ))
  22494. characterMakers.push(() => makeCharacter(
  22495. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22496. {
  22497. front: {
  22498. height: math.unit(1600, "feet"),
  22499. weight: math.unit(85758785169, "kg"),
  22500. name: "Front",
  22501. image: {
  22502. source: "./media/characters/valathos/front.svg",
  22503. extra: 1451 / 1339
  22504. }
  22505. },
  22506. },
  22507. [
  22508. {
  22509. name: "Macro",
  22510. height: math.unit(1600, "feet"),
  22511. default: true
  22512. },
  22513. ]
  22514. ))
  22515. characterMakers.push(() => makeCharacter(
  22516. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22517. {
  22518. front: {
  22519. height: math.unit(7 + 5 / 12, "feet"),
  22520. weight: math.unit(300, "lb"),
  22521. name: "Front",
  22522. image: {
  22523. source: "./media/characters/azula/front.svg",
  22524. extra: 3208 / 2880,
  22525. bottom: 80.2 / 3277
  22526. }
  22527. },
  22528. back: {
  22529. height: math.unit(7 + 5 / 12, "feet"),
  22530. weight: math.unit(300, "lb"),
  22531. name: "Back",
  22532. image: {
  22533. source: "./media/characters/azula/back.svg",
  22534. extra: 3169 / 2822,
  22535. bottom: 150.6 / 3321
  22536. }
  22537. },
  22538. },
  22539. [
  22540. {
  22541. name: "Normal",
  22542. height: math.unit(7 + 5 / 12, "feet"),
  22543. default: true
  22544. },
  22545. {
  22546. name: "Big",
  22547. height: math.unit(20, "feet")
  22548. },
  22549. ]
  22550. ))
  22551. characterMakers.push(() => makeCharacter(
  22552. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22553. {
  22554. front: {
  22555. height: math.unit(5 + 1 / 12, "feet"),
  22556. weight: math.unit(110, "lb"),
  22557. name: "Front",
  22558. image: {
  22559. source: "./media/characters/rupert/front.svg",
  22560. extra: 1549 / 1495,
  22561. bottom: 54.2 / 1604.4
  22562. }
  22563. },
  22564. },
  22565. [
  22566. {
  22567. name: "Normal",
  22568. height: math.unit(5 + 1 / 12, "feet"),
  22569. default: true
  22570. },
  22571. ]
  22572. ))
  22573. characterMakers.push(() => makeCharacter(
  22574. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22575. {
  22576. front: {
  22577. height: math.unit(8 + 4 / 12, "feet"),
  22578. weight: math.unit(350, "lb"),
  22579. name: "Front",
  22580. image: {
  22581. source: "./media/characters/sheera-castellar/front.svg",
  22582. extra: 1957 / 1894,
  22583. bottom: 26.97 / 1975.017
  22584. }
  22585. },
  22586. side: {
  22587. height: math.unit(8 + 4 / 12, "feet"),
  22588. weight: math.unit(350, "lb"),
  22589. name: "Side",
  22590. image: {
  22591. source: "./media/characters/sheera-castellar/side.svg",
  22592. extra: 1957 / 1894
  22593. }
  22594. },
  22595. back: {
  22596. height: math.unit(8 + 4 / 12, "feet"),
  22597. weight: math.unit(350, "lb"),
  22598. name: "Back",
  22599. image: {
  22600. source: "./media/characters/sheera-castellar/back.svg",
  22601. extra: 1957 / 1894
  22602. }
  22603. },
  22604. angled: {
  22605. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22606. weight: math.unit(350, "lb"),
  22607. name: "Angled",
  22608. image: {
  22609. source: "./media/characters/sheera-castellar/angled.svg",
  22610. extra: 1807 / 1707,
  22611. bottom: 68 / 1875
  22612. }
  22613. },
  22614. genitals: {
  22615. height: math.unit(2.2, "feet"),
  22616. name: "Genitals",
  22617. image: {
  22618. source: "./media/characters/sheera-castellar/genitals.svg"
  22619. }
  22620. },
  22621. },
  22622. [
  22623. {
  22624. name: "Normal",
  22625. height: math.unit(8 + 4 / 12, "feet")
  22626. },
  22627. {
  22628. name: "Macro",
  22629. height: math.unit(150, "feet"),
  22630. default: true
  22631. },
  22632. {
  22633. name: "Macro+",
  22634. height: math.unit(800, "feet")
  22635. },
  22636. ]
  22637. ))
  22638. characterMakers.push(() => makeCharacter(
  22639. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22640. {
  22641. front: {
  22642. height: math.unit(6, "feet"),
  22643. weight: math.unit(150, "lb"),
  22644. name: "Front",
  22645. image: {
  22646. source: "./media/characters/jaipur/front.svg",
  22647. extra: 3860 / 3731,
  22648. bottom: 287 / 4140
  22649. }
  22650. },
  22651. back: {
  22652. height: math.unit(6, "feet"),
  22653. weight: math.unit(150, "lb"),
  22654. name: "Back",
  22655. image: {
  22656. source: "./media/characters/jaipur/back.svg",
  22657. extra: 4060 / 3930,
  22658. bottom: 151 / 4200
  22659. }
  22660. },
  22661. },
  22662. [
  22663. {
  22664. name: "Normal",
  22665. height: math.unit(1.85, "meters"),
  22666. default: true
  22667. },
  22668. {
  22669. name: "Macro",
  22670. height: math.unit(150, "meters")
  22671. },
  22672. {
  22673. name: "Macro+",
  22674. height: math.unit(0.5, "miles")
  22675. },
  22676. {
  22677. name: "Macro++",
  22678. height: math.unit(2.5, "miles")
  22679. },
  22680. {
  22681. name: "Macro+++",
  22682. height: math.unit(12, "miles")
  22683. },
  22684. {
  22685. name: "Macro++++",
  22686. height: math.unit(120, "miles")
  22687. },
  22688. {
  22689. name: "Macro+++++",
  22690. height: math.unit(1200, "miles")
  22691. },
  22692. ]
  22693. ))
  22694. characterMakers.push(() => makeCharacter(
  22695. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22696. {
  22697. front: {
  22698. height: math.unit(6, "feet"),
  22699. weight: math.unit(150, "lb"),
  22700. name: "Front",
  22701. image: {
  22702. source: "./media/characters/sheila-wolf/front.svg",
  22703. extra: 1931 / 1808,
  22704. bottom: 29.5 / 1960
  22705. }
  22706. },
  22707. dick: {
  22708. height: math.unit(1.464, "feet"),
  22709. name: "Dick",
  22710. image: {
  22711. source: "./media/characters/sheila-wolf/dick.svg"
  22712. }
  22713. },
  22714. muzzle: {
  22715. height: math.unit(0.513, "feet"),
  22716. name: "Muzzle",
  22717. image: {
  22718. source: "./media/characters/sheila-wolf/muzzle.svg"
  22719. }
  22720. },
  22721. },
  22722. [
  22723. {
  22724. name: "Macro",
  22725. height: math.unit(70, "feet"),
  22726. default: true
  22727. },
  22728. ]
  22729. ))
  22730. characterMakers.push(() => makeCharacter(
  22731. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22732. {
  22733. front: {
  22734. height: math.unit(32, "meters"),
  22735. weight: math.unit(300000, "kg"),
  22736. name: "Front",
  22737. image: {
  22738. source: "./media/characters/almor/front.svg",
  22739. extra: 1408 / 1322,
  22740. bottom: 94.6 / 1506.5
  22741. }
  22742. },
  22743. },
  22744. [
  22745. {
  22746. name: "Macro",
  22747. height: math.unit(32, "meters"),
  22748. default: true
  22749. },
  22750. ]
  22751. ))
  22752. characterMakers.push(() => makeCharacter(
  22753. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22754. {
  22755. front: {
  22756. height: math.unit(7, "feet"),
  22757. weight: math.unit(200, "lb"),
  22758. name: "Front",
  22759. image: {
  22760. source: "./media/characters/silver/front.svg",
  22761. extra: 472.1 / 450.5,
  22762. bottom: 26.5 / 499.424
  22763. }
  22764. },
  22765. },
  22766. [
  22767. {
  22768. name: "Normal",
  22769. height: math.unit(7, "feet"),
  22770. default: true
  22771. },
  22772. {
  22773. name: "Macro",
  22774. height: math.unit(800, "feet")
  22775. },
  22776. {
  22777. name: "Megamacro",
  22778. height: math.unit(250, "miles")
  22779. },
  22780. ]
  22781. ))
  22782. characterMakers.push(() => makeCharacter(
  22783. { name: "Pliskin", 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/pliskin/front.svg",
  22791. extra: 1469 / 1359,
  22792. bottom: 70 / 1540
  22793. }
  22794. },
  22795. },
  22796. [
  22797. {
  22798. name: "Micro",
  22799. height: math.unit(3, "inches")
  22800. },
  22801. {
  22802. name: "Normal",
  22803. height: math.unit(5 + 11 / 12, "feet"),
  22804. default: true
  22805. },
  22806. {
  22807. name: "Macro",
  22808. height: math.unit(120, "feet")
  22809. },
  22810. ]
  22811. ))
  22812. characterMakers.push(() => makeCharacter(
  22813. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22814. {
  22815. front: {
  22816. height: math.unit(6, "feet"),
  22817. weight: math.unit(150, "lb"),
  22818. name: "Front",
  22819. image: {
  22820. source: "./media/characters/sammy/front.svg",
  22821. extra: 1193 / 1089,
  22822. bottom: 30.5 / 1226
  22823. }
  22824. },
  22825. },
  22826. [
  22827. {
  22828. name: "Macro",
  22829. height: math.unit(1700, "feet"),
  22830. default: true
  22831. },
  22832. {
  22833. name: "Examacro",
  22834. height: math.unit(2.5e9, "lightyears")
  22835. },
  22836. ]
  22837. ))
  22838. characterMakers.push(() => makeCharacter(
  22839. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22840. {
  22841. front: {
  22842. height: math.unit(21, "meters"),
  22843. weight: math.unit(12, "tonnes"),
  22844. name: "Front",
  22845. image: {
  22846. source: "./media/characters/kuru/front.svg",
  22847. extra: 4301 / 3785,
  22848. bottom: 371.3 / 4691
  22849. }
  22850. },
  22851. },
  22852. [
  22853. {
  22854. name: "Macro",
  22855. height: math.unit(21, "meters"),
  22856. default: true
  22857. },
  22858. ]
  22859. ))
  22860. characterMakers.push(() => makeCharacter(
  22861. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22862. {
  22863. front: {
  22864. height: math.unit(23, "meters"),
  22865. weight: math.unit(12.2, "tonnes"),
  22866. name: "Front",
  22867. image: {
  22868. source: "./media/characters/rakka/front.svg",
  22869. extra: 4670 / 4169,
  22870. bottom: 301 / 4968.7
  22871. }
  22872. },
  22873. },
  22874. [
  22875. {
  22876. name: "Macro",
  22877. height: math.unit(23, "meters"),
  22878. default: true
  22879. },
  22880. ]
  22881. ))
  22882. characterMakers.push(() => makeCharacter(
  22883. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22884. {
  22885. front: {
  22886. height: math.unit(6, "feet"),
  22887. weight: math.unit(150, "lb"),
  22888. name: "Front",
  22889. image: {
  22890. source: "./media/characters/rhys-feline/front.svg",
  22891. extra: 2488 / 2308,
  22892. bottom: 35.67 / 2519.19
  22893. }
  22894. },
  22895. },
  22896. [
  22897. {
  22898. name: "Really Small",
  22899. height: math.unit(1, "nm")
  22900. },
  22901. {
  22902. name: "Micro",
  22903. height: math.unit(4, "inches")
  22904. },
  22905. {
  22906. name: "Normal",
  22907. height: math.unit(4 + 10 / 12, "feet"),
  22908. default: true
  22909. },
  22910. {
  22911. name: "Macro",
  22912. height: math.unit(100, "feet")
  22913. },
  22914. {
  22915. name: "Megamacto",
  22916. height: math.unit(50, "miles")
  22917. },
  22918. ]
  22919. ))
  22920. characterMakers.push(() => makeCharacter(
  22921. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22922. {
  22923. side: {
  22924. height: math.unit(30, "feet"),
  22925. weight: math.unit(35000, "kg"),
  22926. name: "Side",
  22927. image: {
  22928. source: "./media/characters/alydar/side.svg",
  22929. extra: 234 / 222,
  22930. bottom: 6.5 / 241
  22931. }
  22932. },
  22933. front: {
  22934. height: math.unit(30, "feet"),
  22935. weight: math.unit(35000, "kg"),
  22936. name: "Front",
  22937. image: {
  22938. source: "./media/characters/alydar/front.svg",
  22939. extra: 223.37 / 210.2,
  22940. bottom: 22.3 / 246.76
  22941. }
  22942. },
  22943. top: {
  22944. height: math.unit(64.54, "feet"),
  22945. weight: math.unit(35000, "kg"),
  22946. name: "Top",
  22947. image: {
  22948. source: "./media/characters/alydar/top.svg"
  22949. }
  22950. },
  22951. anthro: {
  22952. height: math.unit(30, "feet"),
  22953. weight: math.unit(9000, "kg"),
  22954. name: "Anthro",
  22955. image: {
  22956. source: "./media/characters/alydar/anthro.svg",
  22957. extra: 432 / 421,
  22958. bottom: 7.18 / 440
  22959. }
  22960. },
  22961. maw: {
  22962. height: math.unit(11.693, "feet"),
  22963. name: "Maw",
  22964. image: {
  22965. source: "./media/characters/alydar/maw.svg"
  22966. }
  22967. },
  22968. head: {
  22969. height: math.unit(11.693, "feet"),
  22970. name: "Head",
  22971. image: {
  22972. source: "./media/characters/alydar/head.svg"
  22973. }
  22974. },
  22975. headAlt: {
  22976. height: math.unit(12.861, "feet"),
  22977. name: "Head (Alt)",
  22978. image: {
  22979. source: "./media/characters/alydar/head-alt.svg"
  22980. }
  22981. },
  22982. wing: {
  22983. height: math.unit(20.712, "feet"),
  22984. name: "Wing",
  22985. image: {
  22986. source: "./media/characters/alydar/wing.svg"
  22987. }
  22988. },
  22989. wingFeather: {
  22990. height: math.unit(9.662, "feet"),
  22991. name: "Wing Feather",
  22992. image: {
  22993. source: "./media/characters/alydar/wing-feather.svg"
  22994. }
  22995. },
  22996. countourFeather: {
  22997. height: math.unit(4.154, "feet"),
  22998. name: "Contour Feather",
  22999. image: {
  23000. source: "./media/characters/alydar/contour-feather.svg"
  23001. }
  23002. },
  23003. },
  23004. [
  23005. {
  23006. name: "Diplomatic",
  23007. height: math.unit(13, "feet"),
  23008. default: true
  23009. },
  23010. {
  23011. name: "Small",
  23012. height: math.unit(30, "feet")
  23013. },
  23014. {
  23015. name: "Normal",
  23016. height: math.unit(95, "feet"),
  23017. default: true
  23018. },
  23019. {
  23020. name: "Large",
  23021. height: math.unit(285, "feet")
  23022. },
  23023. {
  23024. name: "Incomprehensible",
  23025. height: math.unit(450, "megameters")
  23026. },
  23027. ]
  23028. ))
  23029. characterMakers.push(() => makeCharacter(
  23030. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23031. {
  23032. side: {
  23033. height: math.unit(11, "feet"),
  23034. weight: math.unit(1750, "kg"),
  23035. name: "Side",
  23036. image: {
  23037. source: "./media/characters/selicia/side.svg",
  23038. extra: 440 / 396,
  23039. bottom: 24.8 / 465.979
  23040. }
  23041. },
  23042. maw: {
  23043. height: math.unit(4.665, "feet"),
  23044. name: "Maw",
  23045. image: {
  23046. source: "./media/characters/selicia/maw.svg"
  23047. }
  23048. },
  23049. },
  23050. [
  23051. {
  23052. name: "Normal",
  23053. height: math.unit(11, "feet"),
  23054. default: true
  23055. },
  23056. ]
  23057. ))
  23058. characterMakers.push(() => makeCharacter(
  23059. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  23060. {
  23061. side: {
  23062. height: math.unit(2 + 6 / 12, "feet"),
  23063. weight: math.unit(30, "lb"),
  23064. name: "Side",
  23065. image: {
  23066. source: "./media/characters/layla/side.svg",
  23067. extra: 244 / 188,
  23068. bottom: 18.2 / 262.1
  23069. }
  23070. },
  23071. back: {
  23072. height: math.unit(2 + 6 / 12, "feet"),
  23073. weight: math.unit(30, "lb"),
  23074. name: "Back",
  23075. image: {
  23076. source: "./media/characters/layla/back.svg",
  23077. extra: 308 / 241.5,
  23078. bottom: 8.9 / 316.8
  23079. }
  23080. },
  23081. cumming: {
  23082. height: math.unit(2 + 6 / 12, "feet"),
  23083. weight: math.unit(30, "lb"),
  23084. name: "Cumming",
  23085. image: {
  23086. source: "./media/characters/layla/cumming.svg",
  23087. extra: 342 / 279,
  23088. bottom: 595 / 938
  23089. }
  23090. },
  23091. dickFlaccid: {
  23092. height: math.unit(2.595, "feet"),
  23093. name: "Flaccid Genitals",
  23094. image: {
  23095. source: "./media/characters/layla/dick-flaccid.svg"
  23096. }
  23097. },
  23098. dickErect: {
  23099. height: math.unit(2.359, "feet"),
  23100. name: "Erect Genitals",
  23101. image: {
  23102. source: "./media/characters/layla/dick-erect.svg"
  23103. }
  23104. },
  23105. },
  23106. [
  23107. {
  23108. name: "Micro",
  23109. height: math.unit(1, "inch")
  23110. },
  23111. {
  23112. name: "Small",
  23113. height: math.unit(1, "foot")
  23114. },
  23115. {
  23116. name: "Normal",
  23117. height: math.unit(2 + 6 / 12, "feet"),
  23118. default: true
  23119. },
  23120. {
  23121. name: "Macro",
  23122. height: math.unit(200, "feet")
  23123. },
  23124. {
  23125. name: "Megamacro",
  23126. height: math.unit(1000, "miles")
  23127. },
  23128. {
  23129. name: "Planetary",
  23130. height: math.unit(8000, "miles")
  23131. },
  23132. {
  23133. name: "True Layla",
  23134. height: math.unit(200000 * 7, "multiverses")
  23135. },
  23136. ]
  23137. ))
  23138. characterMakers.push(() => makeCharacter(
  23139. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23140. {
  23141. back: {
  23142. height: math.unit(10.5, "feet"),
  23143. weight: math.unit(800, "lb"),
  23144. name: "Back",
  23145. image: {
  23146. source: "./media/characters/knox/back.svg",
  23147. extra: 1486 / 1089,
  23148. bottom: 107 / 1601.4
  23149. }
  23150. },
  23151. side: {
  23152. height: math.unit(10.5, "feet"),
  23153. weight: math.unit(800, "lb"),
  23154. name: "Side",
  23155. image: {
  23156. source: "./media/characters/knox/side.svg",
  23157. extra: 244 / 218,
  23158. bottom: 14 / 260
  23159. }
  23160. },
  23161. },
  23162. [
  23163. {
  23164. name: "Compact",
  23165. height: math.unit(10.5, "feet"),
  23166. default: true
  23167. },
  23168. {
  23169. name: "Dynamax",
  23170. height: math.unit(210, "feet")
  23171. },
  23172. {
  23173. name: "Full Macro",
  23174. height: math.unit(850, "feet")
  23175. },
  23176. ]
  23177. ))
  23178. characterMakers.push(() => makeCharacter(
  23179. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23180. {
  23181. front: {
  23182. height: math.unit(6, "feet"),
  23183. weight: math.unit(152, "lb"),
  23184. name: "Front",
  23185. image: {
  23186. source: "./media/characters/shin-pikachu/front.svg",
  23187. extra: 1574 / 1480,
  23188. bottom: 53.3 / 1626
  23189. }
  23190. },
  23191. hand: {
  23192. height: math.unit(1.055, "feet"),
  23193. name: "Hand",
  23194. image: {
  23195. source: "./media/characters/shin-pikachu/hand.svg"
  23196. }
  23197. },
  23198. foot: {
  23199. height: math.unit(1.1, "feet"),
  23200. name: "Foot",
  23201. image: {
  23202. source: "./media/characters/shin-pikachu/foot.svg"
  23203. }
  23204. },
  23205. collar: {
  23206. height: math.unit(0.386, "feet"),
  23207. name: "Collar",
  23208. image: {
  23209. source: "./media/characters/shin-pikachu/collar.svg"
  23210. }
  23211. },
  23212. },
  23213. [
  23214. {
  23215. name: "Smallest",
  23216. height: math.unit(0.5, "inches")
  23217. },
  23218. {
  23219. name: "Micro",
  23220. height: math.unit(6, "inches")
  23221. },
  23222. {
  23223. name: "Normal",
  23224. height: math.unit(6, "feet"),
  23225. default: true
  23226. },
  23227. {
  23228. name: "Macro",
  23229. height: math.unit(150, "feet")
  23230. },
  23231. ]
  23232. ))
  23233. characterMakers.push(() => makeCharacter(
  23234. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23235. {
  23236. front: {
  23237. height: math.unit(28, "feet"),
  23238. weight: math.unit(10500, "lb"),
  23239. name: "Front",
  23240. image: {
  23241. source: "./media/characters/kayda/front.svg",
  23242. extra: 1536 / 1428,
  23243. bottom: 68.7 / 1603
  23244. }
  23245. },
  23246. back: {
  23247. height: math.unit(28, "feet"),
  23248. weight: math.unit(10500, "lb"),
  23249. name: "Back",
  23250. image: {
  23251. source: "./media/characters/kayda/back.svg",
  23252. extra: 1557 / 1464,
  23253. bottom: 39.5 / 1597.49
  23254. }
  23255. },
  23256. dick: {
  23257. height: math.unit(3.858, "feet"),
  23258. name: "Dick",
  23259. image: {
  23260. source: "./media/characters/kayda/dick.svg"
  23261. }
  23262. },
  23263. },
  23264. [
  23265. {
  23266. name: "Macro",
  23267. height: math.unit(28, "feet"),
  23268. default: true
  23269. },
  23270. ]
  23271. ))
  23272. characterMakers.push(() => makeCharacter(
  23273. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23274. {
  23275. front: {
  23276. height: math.unit(10 + 11 / 12, "feet"),
  23277. weight: math.unit(1400, "lb"),
  23278. name: "Front",
  23279. image: {
  23280. source: "./media/characters/brian/front.svg",
  23281. extra: 737 / 692,
  23282. bottom: 55.4 / 785
  23283. }
  23284. },
  23285. },
  23286. [
  23287. {
  23288. name: "Normal",
  23289. height: math.unit(10 + 11 / 12, "feet"),
  23290. default: true
  23291. },
  23292. ]
  23293. ))
  23294. characterMakers.push(() => makeCharacter(
  23295. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23296. {
  23297. front: {
  23298. height: math.unit(5 + 8 / 12, "feet"),
  23299. weight: math.unit(140, "lb"),
  23300. name: "Front",
  23301. image: {
  23302. source: "./media/characters/khemri/front.svg",
  23303. extra: 4780 / 4059,
  23304. bottom: 80.1 / 4859.25
  23305. }
  23306. },
  23307. },
  23308. [
  23309. {
  23310. name: "Micro",
  23311. height: math.unit(6, "inches")
  23312. },
  23313. {
  23314. name: "Normal",
  23315. height: math.unit(5 + 8 / 12, "feet"),
  23316. default: true
  23317. },
  23318. ]
  23319. ))
  23320. characterMakers.push(() => makeCharacter(
  23321. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23322. {
  23323. front: {
  23324. height: math.unit(13, "feet"),
  23325. weight: math.unit(1700, "lb"),
  23326. name: "Front",
  23327. image: {
  23328. source: "./media/characters/felix-braveheart/front.svg",
  23329. extra: 1222 / 1157,
  23330. bottom: 53.2 / 1280
  23331. }
  23332. },
  23333. back: {
  23334. height: math.unit(13, "feet"),
  23335. weight: math.unit(1700, "lb"),
  23336. name: "Back",
  23337. image: {
  23338. source: "./media/characters/felix-braveheart/back.svg",
  23339. extra: 1277 / 1203,
  23340. bottom: 50.2 / 1327
  23341. }
  23342. },
  23343. feral: {
  23344. height: math.unit(6, "feet"),
  23345. weight: math.unit(400, "lb"),
  23346. name: "Feral",
  23347. image: {
  23348. source: "./media/characters/felix-braveheart/feral.svg",
  23349. extra: 682 / 625,
  23350. bottom: 6.9 / 688
  23351. }
  23352. },
  23353. },
  23354. [
  23355. {
  23356. name: "Normal",
  23357. height: math.unit(13, "feet"),
  23358. default: true
  23359. },
  23360. ]
  23361. ))
  23362. characterMakers.push(() => makeCharacter(
  23363. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23364. {
  23365. side: {
  23366. height: math.unit(5 + 11 / 12, "feet"),
  23367. weight: math.unit(1400, "lb"),
  23368. name: "Side",
  23369. image: {
  23370. source: "./media/characters/shadow-blade/side.svg",
  23371. extra: 1726 / 1267,
  23372. bottom: 58.4 / 1785
  23373. }
  23374. },
  23375. },
  23376. [
  23377. {
  23378. name: "Normal",
  23379. height: math.unit(5 + 11 / 12, "feet"),
  23380. default: true
  23381. },
  23382. ]
  23383. ))
  23384. characterMakers.push(() => makeCharacter(
  23385. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23386. {
  23387. front: {
  23388. height: math.unit(1 + 6 / 12, "feet"),
  23389. weight: math.unit(25, "lb"),
  23390. name: "Front",
  23391. image: {
  23392. source: "./media/characters/karla-halldor/front.svg",
  23393. extra: 1459 / 1383,
  23394. bottom: 12 / 1472
  23395. }
  23396. },
  23397. },
  23398. [
  23399. {
  23400. name: "Normal",
  23401. height: math.unit(1 + 6 / 12, "feet"),
  23402. default: true
  23403. },
  23404. ]
  23405. ))
  23406. characterMakers.push(() => makeCharacter(
  23407. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23408. {
  23409. front: {
  23410. height: math.unit(6 + 2 / 12, "feet"),
  23411. weight: math.unit(160, "lb"),
  23412. name: "Front",
  23413. image: {
  23414. source: "./media/characters/ariam/front.svg",
  23415. extra: 714 / 617,
  23416. bottom: 23.4 / 737,
  23417. }
  23418. },
  23419. squatting: {
  23420. height: math.unit(4.1, "feet"),
  23421. weight: math.unit(160, "lb"),
  23422. name: "Squatting",
  23423. image: {
  23424. source: "./media/characters/ariam/squatting.svg",
  23425. extra: 2617 / 2112,
  23426. bottom: 61.2 / 2681,
  23427. }
  23428. },
  23429. },
  23430. [
  23431. {
  23432. name: "Normal",
  23433. height: math.unit(6 + 2 / 12, "feet"),
  23434. default: true
  23435. },
  23436. {
  23437. name: "Normal+",
  23438. height: math.unit(4, "meters")
  23439. },
  23440. {
  23441. name: "Macro",
  23442. height: math.unit(50, "meters")
  23443. },
  23444. {
  23445. name: "Macro+",
  23446. height: math.unit(100, "meters")
  23447. },
  23448. {
  23449. name: "Megamacro",
  23450. height: math.unit(20, "km")
  23451. },
  23452. ]
  23453. ))
  23454. characterMakers.push(() => makeCharacter(
  23455. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23456. {
  23457. front: {
  23458. height: math.unit(1.67, "meters"),
  23459. weight: math.unit(140, "lb"),
  23460. name: "Front",
  23461. image: {
  23462. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23463. extra: 438 / 410,
  23464. bottom: 0.75 / 439
  23465. }
  23466. },
  23467. },
  23468. [
  23469. {
  23470. name: "Shrunken",
  23471. height: math.unit(7.6, "cm")
  23472. },
  23473. {
  23474. name: "Human Scale",
  23475. height: math.unit(1.67, "meters")
  23476. },
  23477. {
  23478. name: "Wolxi Scale",
  23479. height: math.unit(36.7, "meters"),
  23480. default: true
  23481. },
  23482. ]
  23483. ))
  23484. characterMakers.push(() => makeCharacter(
  23485. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23486. {
  23487. front: {
  23488. height: math.unit(1.73, "meters"),
  23489. weight: math.unit(240, "lb"),
  23490. name: "Front",
  23491. image: {
  23492. source: "./media/characters/izue-two-mothers/front.svg",
  23493. extra: 469 / 437,
  23494. bottom: 1.24 / 470.6
  23495. }
  23496. },
  23497. },
  23498. [
  23499. {
  23500. name: "Shrunken",
  23501. height: math.unit(7.86, "cm")
  23502. },
  23503. {
  23504. name: "Human Scale",
  23505. height: math.unit(1.73, "meters")
  23506. },
  23507. {
  23508. name: "Wolxi Scale",
  23509. height: math.unit(38, "meters"),
  23510. default: true
  23511. },
  23512. ]
  23513. ))
  23514. characterMakers.push(() => makeCharacter(
  23515. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23516. {
  23517. front: {
  23518. height: math.unit(1.55, "meters"),
  23519. weight: math.unit(120, "lb"),
  23520. name: "Front",
  23521. image: {
  23522. source: "./media/characters/teeku-love-shack/front.svg",
  23523. extra: 387 / 362,
  23524. bottom: 1.51 / 388
  23525. }
  23526. },
  23527. },
  23528. [
  23529. {
  23530. name: "Shrunken",
  23531. height: math.unit(7, "cm")
  23532. },
  23533. {
  23534. name: "Human Scale",
  23535. height: math.unit(1.55, "meters")
  23536. },
  23537. {
  23538. name: "Wolxi Scale",
  23539. height: math.unit(34.1, "meters"),
  23540. default: true
  23541. },
  23542. ]
  23543. ))
  23544. characterMakers.push(() => makeCharacter(
  23545. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23546. {
  23547. front: {
  23548. height: math.unit(1.83, "meters"),
  23549. weight: math.unit(135, "lb"),
  23550. name: "Front",
  23551. image: {
  23552. source: "./media/characters/dejma-the-red/front.svg",
  23553. extra: 480 / 458,
  23554. bottom: 1.8 / 482
  23555. }
  23556. },
  23557. },
  23558. [
  23559. {
  23560. name: "Shrunken",
  23561. height: math.unit(8.3, "cm")
  23562. },
  23563. {
  23564. name: "Human Scale",
  23565. height: math.unit(1.83, "meters")
  23566. },
  23567. {
  23568. name: "Wolxi Scale",
  23569. height: math.unit(40, "meters"),
  23570. default: true
  23571. },
  23572. ]
  23573. ))
  23574. characterMakers.push(() => makeCharacter(
  23575. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23576. {
  23577. front: {
  23578. height: math.unit(1.78, "meters"),
  23579. weight: math.unit(65, "kg"),
  23580. name: "Front",
  23581. image: {
  23582. source: "./media/characters/aki/front.svg",
  23583. extra: 452 / 415
  23584. }
  23585. },
  23586. frontNsfw: {
  23587. height: math.unit(1.78, "meters"),
  23588. weight: math.unit(65, "kg"),
  23589. name: "Front (NSFW)",
  23590. image: {
  23591. source: "./media/characters/aki/front-nsfw.svg",
  23592. extra: 452 / 415
  23593. }
  23594. },
  23595. back: {
  23596. height: math.unit(1.78, "meters"),
  23597. weight: math.unit(65, "kg"),
  23598. name: "Back",
  23599. image: {
  23600. source: "./media/characters/aki/back.svg",
  23601. extra: 452 / 415
  23602. }
  23603. },
  23604. rump: {
  23605. height: math.unit(2.05, "feet"),
  23606. name: "Rump",
  23607. image: {
  23608. source: "./media/characters/aki/rump.svg"
  23609. }
  23610. },
  23611. dick: {
  23612. height: math.unit(0.95, "feet"),
  23613. name: "Dick",
  23614. image: {
  23615. source: "./media/characters/aki/dick.svg"
  23616. }
  23617. },
  23618. },
  23619. [
  23620. {
  23621. name: "Micro",
  23622. height: math.unit(15, "cm")
  23623. },
  23624. {
  23625. name: "Normal",
  23626. height: math.unit(178, "cm"),
  23627. default: true
  23628. },
  23629. {
  23630. name: "Macro",
  23631. height: math.unit(214, "m")
  23632. },
  23633. {
  23634. name: "Macro+",
  23635. height: math.unit(534, "m")
  23636. },
  23637. ]
  23638. ))
  23639. characterMakers.push(() => makeCharacter(
  23640. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23641. {
  23642. front: {
  23643. height: math.unit(5 + 5 / 12, "feet"),
  23644. weight: math.unit(120, "lb"),
  23645. name: "Front",
  23646. image: {
  23647. source: "./media/characters/ari/front.svg",
  23648. extra: 714.5 / 682,
  23649. bottom: 8 / 722.5
  23650. }
  23651. },
  23652. },
  23653. [
  23654. {
  23655. name: "Normal",
  23656. height: math.unit(5 + 5 / 12, "feet")
  23657. },
  23658. {
  23659. name: "Macro",
  23660. height: math.unit(100, "feet"),
  23661. default: true
  23662. },
  23663. {
  23664. name: "Megamacro",
  23665. height: math.unit(100, "miles")
  23666. },
  23667. {
  23668. name: "Gigamacro",
  23669. height: math.unit(80000, "miles")
  23670. },
  23671. ]
  23672. ))
  23673. characterMakers.push(() => makeCharacter(
  23674. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23675. {
  23676. side: {
  23677. height: math.unit(9, "feet"),
  23678. weight: math.unit(400, "kg"),
  23679. name: "Side",
  23680. image: {
  23681. source: "./media/characters/bolt/side.svg",
  23682. extra: 1126 / 896,
  23683. bottom: 60 / 1187.3,
  23684. }
  23685. },
  23686. },
  23687. [
  23688. {
  23689. name: "Micro",
  23690. height: math.unit(5, "inches")
  23691. },
  23692. {
  23693. name: "Normal",
  23694. height: math.unit(9, "feet"),
  23695. default: true
  23696. },
  23697. {
  23698. name: "Macro",
  23699. height: math.unit(700, "feet")
  23700. },
  23701. {
  23702. name: "Max Size",
  23703. height: math.unit(1.52e22, "yottameters")
  23704. },
  23705. ]
  23706. ))
  23707. characterMakers.push(() => makeCharacter(
  23708. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23709. {
  23710. front: {
  23711. height: math.unit(4.53, "meters"),
  23712. weight: math.unit(3, "tons"),
  23713. name: "Front",
  23714. image: {
  23715. source: "./media/characters/draekon-sylviar/front.svg",
  23716. extra: 1228 / 1068,
  23717. bottom: 41 / 1270
  23718. }
  23719. },
  23720. tail: {
  23721. height: math.unit(1.772, "meter"),
  23722. name: "Tail",
  23723. image: {
  23724. source: "./media/characters/draekon-sylviar/tail.svg"
  23725. }
  23726. },
  23727. head: {
  23728. height: math.unit(1.331, "meter"),
  23729. name: "Head",
  23730. image: {
  23731. source: "./media/characters/draekon-sylviar/head.svg"
  23732. }
  23733. },
  23734. hand: {
  23735. height: math.unit(0.564, "meter"),
  23736. name: "Hand",
  23737. image: {
  23738. source: "./media/characters/draekon-sylviar/hand.svg"
  23739. }
  23740. },
  23741. foot: {
  23742. height: math.unit(0.621, "meter"),
  23743. name: "Foot",
  23744. image: {
  23745. source: "./media/characters/draekon-sylviar/foot.svg",
  23746. bottom: 32 / 324
  23747. }
  23748. },
  23749. dick: {
  23750. height: math.unit(61, "cm"),
  23751. name: "Dick",
  23752. image: {
  23753. source: "./media/characters/draekon-sylviar/dick.svg"
  23754. }
  23755. },
  23756. dickseparated: {
  23757. height: math.unit(61, "cm"),
  23758. name: "Dick-separated",
  23759. image: {
  23760. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23761. }
  23762. },
  23763. },
  23764. [
  23765. {
  23766. name: "Small",
  23767. height: math.unit(4.53 / 2, "meters"),
  23768. default: true
  23769. },
  23770. {
  23771. name: "Normal",
  23772. height: math.unit(4.53, "meters"),
  23773. default: true
  23774. },
  23775. {
  23776. name: "Large",
  23777. height: math.unit(4.53 * 2, "meters"),
  23778. },
  23779. ]
  23780. ))
  23781. characterMakers.push(() => makeCharacter(
  23782. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23783. {
  23784. front: {
  23785. height: math.unit(6 + 2 / 12, "feet"),
  23786. weight: math.unit(180, "lb"),
  23787. name: "Front",
  23788. image: {
  23789. source: "./media/characters/brawler/front.svg",
  23790. extra: 3301 / 3027,
  23791. bottom: 138 / 3439
  23792. }
  23793. },
  23794. },
  23795. [
  23796. {
  23797. name: "Normal",
  23798. height: math.unit(6 + 2 / 12, "feet"),
  23799. default: true
  23800. },
  23801. ]
  23802. ))
  23803. characterMakers.push(() => makeCharacter(
  23804. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23805. {
  23806. front: {
  23807. height: math.unit(11, "feet"),
  23808. weight: math.unit(1000, "lb"),
  23809. name: "Front",
  23810. image: {
  23811. source: "./media/characters/alex/front.svg",
  23812. bottom: 44.5 / 620
  23813. }
  23814. },
  23815. },
  23816. [
  23817. {
  23818. name: "Micro",
  23819. height: math.unit(5, "inches")
  23820. },
  23821. {
  23822. name: "Normal",
  23823. height: math.unit(11, "feet"),
  23824. default: true
  23825. },
  23826. {
  23827. name: "Macro",
  23828. height: math.unit(9.5e9, "feet")
  23829. },
  23830. {
  23831. name: "Max Size",
  23832. height: math.unit(1.4e283, "yottameters")
  23833. },
  23834. ]
  23835. ))
  23836. characterMakers.push(() => makeCharacter(
  23837. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23838. {
  23839. female: {
  23840. height: math.unit(29.9, "m"),
  23841. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23842. name: "Female",
  23843. image: {
  23844. source: "./media/characters/zenari/female.svg",
  23845. extra: 3281.6 / 3217,
  23846. bottom: 72.2 / 3353
  23847. }
  23848. },
  23849. male: {
  23850. height: math.unit(27.7, "m"),
  23851. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23852. name: "Male",
  23853. image: {
  23854. source: "./media/characters/zenari/male.svg",
  23855. extra: 3008 / 2991,
  23856. bottom: 54.6 / 3069
  23857. }
  23858. },
  23859. },
  23860. [
  23861. {
  23862. name: "Macro",
  23863. height: math.unit(29.7, "meters"),
  23864. default: true
  23865. },
  23866. ]
  23867. ))
  23868. characterMakers.push(() => makeCharacter(
  23869. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23870. {
  23871. female: {
  23872. height: math.unit(23.8, "m"),
  23873. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23874. name: "Female",
  23875. image: {
  23876. source: "./media/characters/mactarian/female.svg",
  23877. extra: 2662 / 2569,
  23878. bottom: 73 / 2736
  23879. }
  23880. },
  23881. male: {
  23882. height: math.unit(23.8, "m"),
  23883. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23884. name: "Male",
  23885. image: {
  23886. source: "./media/characters/mactarian/male.svg",
  23887. extra: 2673 / 2600,
  23888. bottom: 76 / 2750
  23889. }
  23890. },
  23891. },
  23892. [
  23893. {
  23894. name: "Macro",
  23895. height: math.unit(23.8, "meters"),
  23896. default: true
  23897. },
  23898. ]
  23899. ))
  23900. characterMakers.push(() => makeCharacter(
  23901. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23902. {
  23903. female: {
  23904. height: math.unit(19.3, "m"),
  23905. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23906. name: "Female",
  23907. image: {
  23908. source: "./media/characters/umok/female.svg",
  23909. extra: 2186 / 2078,
  23910. bottom: 87 / 2277
  23911. }
  23912. },
  23913. male: {
  23914. height: math.unit(19.5, "m"),
  23915. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23916. name: "Male",
  23917. image: {
  23918. source: "./media/characters/umok/male.svg",
  23919. extra: 2233 / 2140,
  23920. bottom: 24.4 / 2258
  23921. }
  23922. },
  23923. },
  23924. [
  23925. {
  23926. name: "Macro",
  23927. height: math.unit(19.3, "meters"),
  23928. default: true
  23929. },
  23930. ]
  23931. ))
  23932. characterMakers.push(() => makeCharacter(
  23933. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23934. {
  23935. female: {
  23936. height: math.unit(26.15, "m"),
  23937. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23938. name: "Female",
  23939. image: {
  23940. source: "./media/characters/joraxian/female.svg",
  23941. extra: 2912 / 2824,
  23942. bottom: 36 / 2956
  23943. }
  23944. },
  23945. male: {
  23946. height: math.unit(25.4, "m"),
  23947. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23948. name: "Male",
  23949. image: {
  23950. source: "./media/characters/joraxian/male.svg",
  23951. extra: 2877 / 2721,
  23952. bottom: 82 / 2967
  23953. }
  23954. },
  23955. },
  23956. [
  23957. {
  23958. name: "Macro",
  23959. height: math.unit(26.15, "meters"),
  23960. default: true
  23961. },
  23962. ]
  23963. ))
  23964. characterMakers.push(() => makeCharacter(
  23965. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23966. {
  23967. female: {
  23968. height: math.unit(21.6, "m"),
  23969. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23970. name: "Female",
  23971. image: {
  23972. source: "./media/characters/sthara/female.svg",
  23973. extra: 2516 / 2347,
  23974. bottom: 21.5 / 2537
  23975. }
  23976. },
  23977. male: {
  23978. height: math.unit(24, "m"),
  23979. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23980. name: "Male",
  23981. image: {
  23982. source: "./media/characters/sthara/male.svg",
  23983. extra: 2732 / 2607,
  23984. bottom: 23 / 2732
  23985. }
  23986. },
  23987. },
  23988. [
  23989. {
  23990. name: "Macro",
  23991. height: math.unit(21.6, "meters"),
  23992. default: true
  23993. },
  23994. ]
  23995. ))
  23996. characterMakers.push(() => makeCharacter(
  23997. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23998. {
  23999. front: {
  24000. height: math.unit(6 + 4 / 12, "feet"),
  24001. weight: math.unit(175, "lb"),
  24002. name: "Front",
  24003. image: {
  24004. source: "./media/characters/luka-bryzant/front.svg",
  24005. extra: 311 / 289,
  24006. bottom: 4 / 315
  24007. }
  24008. },
  24009. back: {
  24010. height: math.unit(6 + 4 / 12, "feet"),
  24011. weight: math.unit(175, "lb"),
  24012. name: "Back",
  24013. image: {
  24014. source: "./media/characters/luka-bryzant/back.svg",
  24015. extra: 311 / 289,
  24016. bottom: 3.8 / 313.7
  24017. }
  24018. },
  24019. },
  24020. [
  24021. {
  24022. name: "Micro",
  24023. height: math.unit(10, "inches")
  24024. },
  24025. {
  24026. name: "Normal",
  24027. height: math.unit(6 + 4 / 12, "feet"),
  24028. default: true
  24029. },
  24030. {
  24031. name: "Large",
  24032. height: math.unit(12, "feet")
  24033. },
  24034. ]
  24035. ))
  24036. characterMakers.push(() => makeCharacter(
  24037. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24038. {
  24039. front: {
  24040. height: math.unit(5 + 7 / 12, "feet"),
  24041. weight: math.unit(185, "lb"),
  24042. name: "Front",
  24043. image: {
  24044. source: "./media/characters/aman-aquila/front.svg",
  24045. extra: 1013 / 976,
  24046. bottom: 45.6 / 1057
  24047. }
  24048. },
  24049. side: {
  24050. height: math.unit(5 + 7 / 12, "feet"),
  24051. weight: math.unit(185, "lb"),
  24052. name: "Side",
  24053. image: {
  24054. source: "./media/characters/aman-aquila/side.svg",
  24055. extra: 1054 / 1011,
  24056. bottom: 15 / 1070
  24057. }
  24058. },
  24059. back: {
  24060. height: math.unit(5 + 7 / 12, "feet"),
  24061. weight: math.unit(185, "lb"),
  24062. name: "Back",
  24063. image: {
  24064. source: "./media/characters/aman-aquila/back.svg",
  24065. extra: 1026 / 970,
  24066. bottom: 12 / 1039
  24067. }
  24068. },
  24069. head: {
  24070. height: math.unit(1.211, "feet"),
  24071. name: "Head",
  24072. image: {
  24073. source: "./media/characters/aman-aquila/head.svg",
  24074. }
  24075. },
  24076. },
  24077. [
  24078. {
  24079. name: "Minimicro",
  24080. height: math.unit(0.057, "inches")
  24081. },
  24082. {
  24083. name: "Micro",
  24084. height: math.unit(7, "inches")
  24085. },
  24086. {
  24087. name: "Mini",
  24088. height: math.unit(3 + 7 / 12, "feet")
  24089. },
  24090. {
  24091. name: "Normal",
  24092. height: math.unit(5 + 7 / 12, "feet"),
  24093. default: true
  24094. },
  24095. {
  24096. name: "Macro",
  24097. height: math.unit(157 + 7 / 12, "feet")
  24098. },
  24099. {
  24100. name: "Megamacro",
  24101. height: math.unit(1557 + 7 / 12, "feet")
  24102. },
  24103. {
  24104. name: "Gigamacro",
  24105. height: math.unit(15557 + 7 / 12, "feet")
  24106. },
  24107. ]
  24108. ))
  24109. characterMakers.push(() => makeCharacter(
  24110. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24111. {
  24112. front: {
  24113. height: math.unit(3 + 2 / 12, "inches"),
  24114. weight: math.unit(0.3, "ounces"),
  24115. name: "Front",
  24116. image: {
  24117. source: "./media/characters/hiphae/front.svg",
  24118. extra: 1931 / 1683,
  24119. bottom: 24 / 1955
  24120. }
  24121. },
  24122. },
  24123. [
  24124. {
  24125. name: "Normal",
  24126. height: math.unit(3 + 1 / 2, "inches"),
  24127. default: true
  24128. },
  24129. ]
  24130. ))
  24131. characterMakers.push(() => makeCharacter(
  24132. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24133. {
  24134. front: {
  24135. height: math.unit(5 + 10 / 12, "feet"),
  24136. weight: math.unit(165, "lb"),
  24137. name: "Front",
  24138. image: {
  24139. source: "./media/characters/nicky/front.svg",
  24140. extra: 3144 / 2886,
  24141. bottom: 45.6 / 3192
  24142. }
  24143. },
  24144. back: {
  24145. height: math.unit(5 + 10 / 12, "feet"),
  24146. weight: math.unit(165, "lb"),
  24147. name: "Back",
  24148. image: {
  24149. source: "./media/characters/nicky/back.svg",
  24150. extra: 3055 / 2804,
  24151. bottom: 28.4 / 3087
  24152. }
  24153. },
  24154. frontclothed: {
  24155. height: math.unit(5 + 10 / 12, "feet"),
  24156. weight: math.unit(165, "lb"),
  24157. name: "Front-clothed",
  24158. image: {
  24159. source: "./media/characters/nicky/front-clothed.svg",
  24160. extra: 3184.9 / 2926.9,
  24161. bottom: 86.5 / 3239.9
  24162. }
  24163. },
  24164. foot: {
  24165. height: math.unit(1.16, "feet"),
  24166. name: "Foot",
  24167. image: {
  24168. source: "./media/characters/nicky/foot.svg"
  24169. }
  24170. },
  24171. feet: {
  24172. height: math.unit(1.34, "feet"),
  24173. name: "Feet",
  24174. image: {
  24175. source: "./media/characters/nicky/feet.svg"
  24176. }
  24177. },
  24178. maw: {
  24179. height: math.unit(0.9, "feet"),
  24180. name: "Maw",
  24181. image: {
  24182. source: "./media/characters/nicky/maw.svg"
  24183. }
  24184. },
  24185. },
  24186. [
  24187. {
  24188. name: "Normal",
  24189. height: math.unit(5 + 10 / 12, "feet"),
  24190. default: true
  24191. },
  24192. {
  24193. name: "Macro",
  24194. height: math.unit(60, "feet")
  24195. },
  24196. {
  24197. name: "Megamacro",
  24198. height: math.unit(1, "mile")
  24199. },
  24200. ]
  24201. ))
  24202. characterMakers.push(() => makeCharacter(
  24203. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24204. {
  24205. side: {
  24206. height: math.unit(10, "feet"),
  24207. weight: math.unit(600, "lb"),
  24208. name: "Side",
  24209. image: {
  24210. source: "./media/characters/blair/side.svg",
  24211. bottom: 16.6 / 475,
  24212. extra: 458 / 431
  24213. }
  24214. },
  24215. },
  24216. [
  24217. {
  24218. name: "Micro",
  24219. height: math.unit(8, "inches")
  24220. },
  24221. {
  24222. name: "Normal",
  24223. height: math.unit(10, "feet"),
  24224. default: true
  24225. },
  24226. {
  24227. name: "Macro",
  24228. height: math.unit(180, "feet")
  24229. },
  24230. ]
  24231. ))
  24232. characterMakers.push(() => makeCharacter(
  24233. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24234. {
  24235. front: {
  24236. height: math.unit(5 + 4 / 12, "feet"),
  24237. weight: math.unit(125, "lb"),
  24238. name: "Front",
  24239. image: {
  24240. source: "./media/characters/fisher/front.svg",
  24241. extra: 444 / 390,
  24242. bottom: 2 / 444.8
  24243. }
  24244. },
  24245. },
  24246. [
  24247. {
  24248. name: "Micro",
  24249. height: math.unit(4, "inches")
  24250. },
  24251. {
  24252. name: "Normal",
  24253. height: math.unit(5 + 4 / 12, "feet"),
  24254. default: true
  24255. },
  24256. {
  24257. name: "Macro",
  24258. height: math.unit(100, "feet")
  24259. },
  24260. ]
  24261. ))
  24262. characterMakers.push(() => makeCharacter(
  24263. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24264. {
  24265. front: {
  24266. height: math.unit(6.71, "feet"),
  24267. weight: math.unit(200, "lb"),
  24268. capacity: math.unit(1000000, "people"),
  24269. name: "Front",
  24270. image: {
  24271. source: "./media/characters/gliss/front.svg",
  24272. extra: 2347 / 2231,
  24273. bottom: 113 / 2462
  24274. }
  24275. },
  24276. hammerspaceSize: {
  24277. height: math.unit(6.71 * 717, "feet"),
  24278. weight: math.unit(200, "lb"),
  24279. capacity: math.unit(1000000, "people"),
  24280. name: "Hammerspace Size",
  24281. image: {
  24282. source: "./media/characters/gliss/front.svg",
  24283. extra: 2347 / 2231,
  24284. bottom: 113 / 2462
  24285. }
  24286. },
  24287. },
  24288. [
  24289. {
  24290. name: "Normal",
  24291. height: math.unit(6.71, "feet"),
  24292. default: true
  24293. },
  24294. ]
  24295. ))
  24296. characterMakers.push(() => makeCharacter(
  24297. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24298. {
  24299. side: {
  24300. height: math.unit(1.44, "m"),
  24301. weight: math.unit(80, "kg"),
  24302. name: "Side",
  24303. image: {
  24304. source: "./media/characters/dune-anderson/side.svg",
  24305. bottom: 49 / 1426
  24306. }
  24307. },
  24308. },
  24309. [
  24310. {
  24311. name: "Wolf-sized",
  24312. height: math.unit(1.44, "meters")
  24313. },
  24314. {
  24315. name: "Normal",
  24316. height: math.unit(5.05, "meters"),
  24317. default: true
  24318. },
  24319. {
  24320. name: "Big",
  24321. height: math.unit(14.4, "meters")
  24322. },
  24323. {
  24324. name: "Huge",
  24325. height: math.unit(144, "meters")
  24326. },
  24327. ]
  24328. ))
  24329. characterMakers.push(() => makeCharacter(
  24330. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24331. {
  24332. front: {
  24333. height: math.unit(7, "feet"),
  24334. weight: math.unit(425, "lb"),
  24335. name: "Front",
  24336. image: {
  24337. source: "./media/characters/hind/front.svg",
  24338. extra: 2091 / 1860,
  24339. bottom: 129 / 2220
  24340. }
  24341. },
  24342. back: {
  24343. height: math.unit(7, "feet"),
  24344. weight: math.unit(425, "lb"),
  24345. name: "Back",
  24346. image: {
  24347. source: "./media/characters/hind/back.svg",
  24348. extra: 2091 / 1860,
  24349. bottom: 24.6 / 2309
  24350. }
  24351. },
  24352. tail: {
  24353. height: math.unit(2.8, "feet"),
  24354. name: "Tail",
  24355. image: {
  24356. source: "./media/characters/hind/tail.svg"
  24357. }
  24358. },
  24359. head: {
  24360. height: math.unit(2.55, "feet"),
  24361. name: "Head",
  24362. image: {
  24363. source: "./media/characters/hind/head.svg"
  24364. }
  24365. },
  24366. },
  24367. [
  24368. {
  24369. name: "XS",
  24370. height: math.unit(0.7, "feet")
  24371. },
  24372. {
  24373. name: "Normal",
  24374. height: math.unit(7, "feet"),
  24375. default: true
  24376. },
  24377. {
  24378. name: "XL",
  24379. height: math.unit(70, "feet")
  24380. },
  24381. ]
  24382. ))
  24383. characterMakers.push(() => makeCharacter(
  24384. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24385. {
  24386. front: {
  24387. height: math.unit(6, "feet"),
  24388. weight: math.unit(150, "lb"),
  24389. name: "Front",
  24390. image: {
  24391. source: "./media/characters/dylan-skaven/front.svg",
  24392. extra: 2318 / 2063,
  24393. bottom: 93.4 / 2410
  24394. }
  24395. },
  24396. },
  24397. [
  24398. {
  24399. name: "Nano",
  24400. height: math.unit(1, "mm")
  24401. },
  24402. {
  24403. name: "Micro",
  24404. height: math.unit(1, "cm")
  24405. },
  24406. {
  24407. name: "Normal",
  24408. height: math.unit(2.1, "meters"),
  24409. default: true
  24410. },
  24411. ]
  24412. ))
  24413. characterMakers.push(() => makeCharacter(
  24414. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24415. {
  24416. front: {
  24417. height: math.unit(7 + 5 / 12, "feet"),
  24418. weight: math.unit(357, "lb"),
  24419. name: "Front",
  24420. image: {
  24421. source: "./media/characters/solex-draconov/front.svg",
  24422. extra: 1993 / 1865,
  24423. bottom: 117 / 2111
  24424. }
  24425. },
  24426. },
  24427. [
  24428. {
  24429. name: "Natural Height",
  24430. height: math.unit(7 + 5 / 12, "feet"),
  24431. default: true
  24432. },
  24433. {
  24434. name: "Macro",
  24435. height: math.unit(350, "feet")
  24436. },
  24437. {
  24438. name: "Macro+",
  24439. height: math.unit(1000, "feet")
  24440. },
  24441. {
  24442. name: "Megamacro",
  24443. height: math.unit(20, "km")
  24444. },
  24445. {
  24446. name: "Megamacro+",
  24447. height: math.unit(1000, "km")
  24448. },
  24449. {
  24450. name: "Gigamacro",
  24451. height: math.unit(2.5, "Gm")
  24452. },
  24453. {
  24454. name: "Teramacro",
  24455. height: math.unit(15, "Tm")
  24456. },
  24457. {
  24458. name: "Galactic",
  24459. height: math.unit(30, "Zm")
  24460. },
  24461. {
  24462. name: "Universal",
  24463. height: math.unit(21000, "Ym")
  24464. },
  24465. {
  24466. name: "Omniversal",
  24467. height: math.unit(9.861e50, "Ym")
  24468. },
  24469. {
  24470. name: "Existential",
  24471. height: math.unit(1e300, "meters")
  24472. },
  24473. ]
  24474. ))
  24475. characterMakers.push(() => makeCharacter(
  24476. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24477. {
  24478. side: {
  24479. height: math.unit(25, "feet"),
  24480. weight: math.unit(90000, "lb"),
  24481. name: "Side",
  24482. image: {
  24483. source: "./media/characters/mandarax/side.svg",
  24484. extra: 614 / 332,
  24485. bottom: 55 / 630
  24486. }
  24487. },
  24488. head: {
  24489. height: math.unit(11.4, "feet"),
  24490. name: "Head",
  24491. image: {
  24492. source: "./media/characters/mandarax/head.svg"
  24493. }
  24494. },
  24495. belly: {
  24496. height: math.unit(33, "feet"),
  24497. name: "Belly",
  24498. capacity: math.unit(500, "people"),
  24499. image: {
  24500. source: "./media/characters/mandarax/belly.svg"
  24501. }
  24502. },
  24503. dick: {
  24504. height: math.unit(8.46, "feet"),
  24505. name: "Dick",
  24506. image: {
  24507. source: "./media/characters/mandarax/dick.svg"
  24508. }
  24509. },
  24510. top: {
  24511. height: math.unit(28, "meters"),
  24512. name: "Top",
  24513. image: {
  24514. source: "./media/characters/mandarax/top.svg"
  24515. }
  24516. },
  24517. },
  24518. [
  24519. {
  24520. name: "Normal",
  24521. height: math.unit(25, "feet"),
  24522. default: true
  24523. },
  24524. ]
  24525. ))
  24526. characterMakers.push(() => makeCharacter(
  24527. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24528. {
  24529. front: {
  24530. height: math.unit(5, "feet"),
  24531. weight: math.unit(90, "lb"),
  24532. name: "Front",
  24533. image: {
  24534. source: "./media/characters/pixil/front.svg",
  24535. extra: 2000 / 1618,
  24536. bottom: 12.3 / 2011
  24537. }
  24538. },
  24539. },
  24540. [
  24541. {
  24542. name: "Normal",
  24543. height: math.unit(5, "feet"),
  24544. default: true
  24545. },
  24546. {
  24547. name: "Megamacro",
  24548. height: math.unit(10, "miles"),
  24549. },
  24550. ]
  24551. ))
  24552. characterMakers.push(() => makeCharacter(
  24553. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24554. {
  24555. front: {
  24556. height: math.unit(7 + 2 / 12, "feet"),
  24557. weight: math.unit(200, "lb"),
  24558. name: "Front",
  24559. image: {
  24560. source: "./media/characters/angel/front.svg",
  24561. extra: 1830 / 1737,
  24562. bottom: 22.6 / 1854,
  24563. }
  24564. },
  24565. },
  24566. [
  24567. {
  24568. name: "Normal",
  24569. height: math.unit(7 + 2 / 12, "feet"),
  24570. default: true
  24571. },
  24572. {
  24573. name: "Macro",
  24574. height: math.unit(1000, "feet")
  24575. },
  24576. {
  24577. name: "Megamacro",
  24578. height: math.unit(2, "miles")
  24579. },
  24580. {
  24581. name: "Gigamacro",
  24582. height: math.unit(20, "earths")
  24583. },
  24584. ]
  24585. ))
  24586. characterMakers.push(() => makeCharacter(
  24587. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24588. {
  24589. front: {
  24590. height: math.unit(5, "feet"),
  24591. weight: math.unit(180, "lb"),
  24592. name: "Front",
  24593. image: {
  24594. source: "./media/characters/mekana/front.svg",
  24595. extra: 1671 / 1605,
  24596. bottom: 3.5 / 1691
  24597. }
  24598. },
  24599. side: {
  24600. height: math.unit(5, "feet"),
  24601. weight: math.unit(180, "lb"),
  24602. name: "Side",
  24603. image: {
  24604. source: "./media/characters/mekana/side.svg",
  24605. extra: 1671 / 1605,
  24606. bottom: 3.5 / 1691
  24607. }
  24608. },
  24609. back: {
  24610. height: math.unit(5, "feet"),
  24611. weight: math.unit(180, "lb"),
  24612. name: "Back",
  24613. image: {
  24614. source: "./media/characters/mekana/back.svg",
  24615. extra: 1671 / 1605,
  24616. bottom: 3.5 / 1691
  24617. }
  24618. },
  24619. },
  24620. [
  24621. {
  24622. name: "Normal",
  24623. height: math.unit(5, "feet"),
  24624. default: true
  24625. },
  24626. ]
  24627. ))
  24628. characterMakers.push(() => makeCharacter(
  24629. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24630. {
  24631. front: {
  24632. height: math.unit(4 + 6 / 12, "feet"),
  24633. weight: math.unit(80, "lb"),
  24634. name: "Front",
  24635. image: {
  24636. source: "./media/characters/pixie/front.svg",
  24637. extra: 1924 / 1825,
  24638. bottom: 22.4 / 1946
  24639. }
  24640. },
  24641. },
  24642. [
  24643. {
  24644. name: "Normal",
  24645. height: math.unit(4 + 6 / 12, "feet"),
  24646. default: true
  24647. },
  24648. {
  24649. name: "Macro",
  24650. height: math.unit(40, "feet")
  24651. },
  24652. ]
  24653. ))
  24654. characterMakers.push(() => makeCharacter(
  24655. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24656. {
  24657. front: {
  24658. height: math.unit(2.1, "meters"),
  24659. weight: math.unit(200, "lb"),
  24660. name: "Front",
  24661. image: {
  24662. source: "./media/characters/the-lascivious/front.svg",
  24663. extra: 1 / 0.893,
  24664. bottom: 3.5 / 573.7
  24665. }
  24666. },
  24667. },
  24668. [
  24669. {
  24670. name: "Human Scale",
  24671. height: math.unit(2.1, "meters")
  24672. },
  24673. {
  24674. name: "Wolxi Scale",
  24675. height: math.unit(46.2, "m"),
  24676. default: true
  24677. },
  24678. {
  24679. name: "Boinker of Buildings",
  24680. height: math.unit(10, "km")
  24681. },
  24682. {
  24683. name: "Shagger of Skyscrapers",
  24684. height: math.unit(40, "km")
  24685. },
  24686. {
  24687. name: "Banger of Boroughs",
  24688. height: math.unit(4000, "km")
  24689. },
  24690. {
  24691. name: "Screwer of States",
  24692. height: math.unit(100000, "km")
  24693. },
  24694. {
  24695. name: "Pounder of Planets",
  24696. height: math.unit(2000000, "km")
  24697. },
  24698. ]
  24699. ))
  24700. characterMakers.push(() => makeCharacter(
  24701. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24702. {
  24703. front: {
  24704. height: math.unit(6, "feet"),
  24705. weight: math.unit(150, "lb"),
  24706. name: "Front",
  24707. image: {
  24708. source: "./media/characters/aj/front.svg",
  24709. extra: 2039 / 1562,
  24710. bottom: 40 / 2079
  24711. }
  24712. },
  24713. },
  24714. [
  24715. {
  24716. name: "Normal",
  24717. height: math.unit(11 + 6 / 12, "feet"),
  24718. default: true
  24719. },
  24720. {
  24721. name: "Megamacro",
  24722. height: math.unit(60, "megameters")
  24723. },
  24724. ]
  24725. ))
  24726. characterMakers.push(() => makeCharacter(
  24727. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24728. {
  24729. side: {
  24730. height: math.unit(31 + 8 / 12, "feet"),
  24731. weight: math.unit(75000, "kg"),
  24732. name: "Side",
  24733. image: {
  24734. source: "./media/characters/koros/side.svg",
  24735. extra: 1442 / 1297,
  24736. bottom: 122.7 / 1562
  24737. }
  24738. },
  24739. dicksKingsCrown: {
  24740. height: math.unit(6, "feet"),
  24741. name: "Dicks (King's Crown)",
  24742. image: {
  24743. source: "./media/characters/koros/dicks-kings-crown.svg"
  24744. }
  24745. },
  24746. dicksTailSet: {
  24747. height: math.unit(3, "feet"),
  24748. name: "Dicks (Tail Set)",
  24749. image: {
  24750. source: "./media/characters/koros/dicks-tail-set.svg"
  24751. }
  24752. },
  24753. dickCumming: {
  24754. height: math.unit(7.98, "feet"),
  24755. name: "Dick (Cumming)",
  24756. image: {
  24757. source: "./media/characters/koros/dick-cumming.svg"
  24758. }
  24759. },
  24760. dicksBack: {
  24761. height: math.unit(5.9, "feet"),
  24762. name: "Dicks (Back)",
  24763. image: {
  24764. source: "./media/characters/koros/dicks-back.svg"
  24765. }
  24766. },
  24767. dicksFront: {
  24768. height: math.unit(3.72, "feet"),
  24769. name: "Dicks (Front)",
  24770. image: {
  24771. source: "./media/characters/koros/dicks-front.svg"
  24772. }
  24773. },
  24774. dicksPeeking: {
  24775. height: math.unit(3.0, "feet"),
  24776. name: "Dicks (Peeking)",
  24777. image: {
  24778. source: "./media/characters/koros/dicks-peeking.svg"
  24779. }
  24780. },
  24781. eye: {
  24782. height: math.unit(1.7, "feet"),
  24783. name: "Eye",
  24784. image: {
  24785. source: "./media/characters/koros/eye.svg"
  24786. }
  24787. },
  24788. headFront: {
  24789. height: math.unit(11.69, "feet"),
  24790. name: "Head (Front)",
  24791. image: {
  24792. source: "./media/characters/koros/head-front.svg"
  24793. }
  24794. },
  24795. headSide: {
  24796. height: math.unit(14, "feet"),
  24797. name: "Head (Side)",
  24798. image: {
  24799. source: "./media/characters/koros/head-side.svg"
  24800. }
  24801. },
  24802. leg: {
  24803. height: math.unit(17, "feet"),
  24804. name: "Leg",
  24805. image: {
  24806. source: "./media/characters/koros/leg.svg"
  24807. }
  24808. },
  24809. mawSide: {
  24810. height: math.unit(12.8, "feet"),
  24811. name: "Maw (Side)",
  24812. image: {
  24813. source: "./media/characters/koros/maw-side.svg"
  24814. }
  24815. },
  24816. mawSpitting: {
  24817. height: math.unit(17, "feet"),
  24818. name: "Maw (Spitting)",
  24819. image: {
  24820. source: "./media/characters/koros/maw-spitting.svg"
  24821. }
  24822. },
  24823. slit: {
  24824. height: math.unit(2.8, "feet"),
  24825. name: "Slit",
  24826. image: {
  24827. source: "./media/characters/koros/slit.svg"
  24828. }
  24829. },
  24830. stomach: {
  24831. height: math.unit(6.8, "feet"),
  24832. capacity: math.unit(20, "people"),
  24833. name: "Stomach",
  24834. image: {
  24835. source: "./media/characters/koros/stomach.svg"
  24836. }
  24837. },
  24838. wingspanBottom: {
  24839. height: math.unit(114, "feet"),
  24840. name: "Wingspan (Bottom)",
  24841. image: {
  24842. source: "./media/characters/koros/wingspan-bottom.svg"
  24843. }
  24844. },
  24845. wingspanTop: {
  24846. height: math.unit(104, "feet"),
  24847. name: "Wingspan (Top)",
  24848. image: {
  24849. source: "./media/characters/koros/wingspan-top.svg"
  24850. }
  24851. },
  24852. },
  24853. [
  24854. {
  24855. name: "Normal",
  24856. height: math.unit(31 + 8 / 12, "feet"),
  24857. default: true
  24858. },
  24859. ]
  24860. ))
  24861. characterMakers.push(() => makeCharacter(
  24862. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24863. {
  24864. front: {
  24865. height: math.unit(18 + 5 / 12, "feet"),
  24866. weight: math.unit(3750, "kg"),
  24867. name: "Front",
  24868. image: {
  24869. source: "./media/characters/vexx/front.svg",
  24870. extra: 426 / 396,
  24871. bottom: 31.5 / 458
  24872. }
  24873. },
  24874. maw: {
  24875. height: math.unit(6, "feet"),
  24876. name: "Maw",
  24877. image: {
  24878. source: "./media/characters/vexx/maw.svg"
  24879. }
  24880. },
  24881. },
  24882. [
  24883. {
  24884. name: "Normal",
  24885. height: math.unit(18 + 5 / 12, "feet"),
  24886. default: true
  24887. },
  24888. ]
  24889. ))
  24890. characterMakers.push(() => makeCharacter(
  24891. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24892. {
  24893. front: {
  24894. height: math.unit(17 + 6 / 12, "feet"),
  24895. weight: math.unit(150, "lb"),
  24896. name: "Front",
  24897. image: {
  24898. source: "./media/characters/baadra/front.svg",
  24899. extra: 3137 / 2890,
  24900. bottom: 168.4 / 3305
  24901. }
  24902. },
  24903. back: {
  24904. height: math.unit(17 + 6 / 12, "feet"),
  24905. weight: math.unit(150, "lb"),
  24906. name: "Back",
  24907. image: {
  24908. source: "./media/characters/baadra/back.svg",
  24909. extra: 3142 / 2890,
  24910. bottom: 220 / 3371
  24911. }
  24912. },
  24913. head: {
  24914. height: math.unit(5.45, "feet"),
  24915. name: "Head",
  24916. image: {
  24917. source: "./media/characters/baadra/head.svg"
  24918. }
  24919. },
  24920. headAngry: {
  24921. height: math.unit(4.95, "feet"),
  24922. name: "Head (Angry)",
  24923. image: {
  24924. source: "./media/characters/baadra/head-angry.svg"
  24925. }
  24926. },
  24927. headOpen: {
  24928. height: math.unit(6, "feet"),
  24929. name: "Head (Open)",
  24930. image: {
  24931. source: "./media/characters/baadra/head-open.svg"
  24932. }
  24933. },
  24934. },
  24935. [
  24936. {
  24937. name: "Normal",
  24938. height: math.unit(17 + 6 / 12, "feet"),
  24939. default: true
  24940. },
  24941. ]
  24942. ))
  24943. characterMakers.push(() => makeCharacter(
  24944. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24945. {
  24946. front: {
  24947. height: math.unit(7 + 3 / 12, "feet"),
  24948. weight: math.unit(180, "lb"),
  24949. name: "Front",
  24950. image: {
  24951. source: "./media/characters/juri/front.svg",
  24952. extra: 1401 / 1237,
  24953. bottom: 18.5 / 1418
  24954. }
  24955. },
  24956. side: {
  24957. height: math.unit(7 + 3 / 12, "feet"),
  24958. weight: math.unit(180, "lb"),
  24959. name: "Side",
  24960. image: {
  24961. source: "./media/characters/juri/side.svg",
  24962. extra: 1424 / 1242,
  24963. bottom: 18.5 / 1447
  24964. }
  24965. },
  24966. sitting: {
  24967. height: math.unit(6, "feet"),
  24968. weight: math.unit(180, "lb"),
  24969. name: "Sitting",
  24970. image: {
  24971. source: "./media/characters/juri/sitting.svg",
  24972. extra: 1270 / 1143,
  24973. bottom: 100 / 1343
  24974. }
  24975. },
  24976. back: {
  24977. height: math.unit(7 + 3 / 12, "feet"),
  24978. weight: math.unit(180, "lb"),
  24979. name: "Back",
  24980. image: {
  24981. source: "./media/characters/juri/back.svg",
  24982. extra: 1377 / 1240,
  24983. bottom: 23.7 / 1405
  24984. }
  24985. },
  24986. maw: {
  24987. height: math.unit(2.8, "feet"),
  24988. name: "Maw",
  24989. image: {
  24990. source: "./media/characters/juri/maw.svg"
  24991. }
  24992. },
  24993. stomach: {
  24994. height: math.unit(0.89, "feet"),
  24995. capacity: math.unit(4, "liters"),
  24996. name: "Stomach",
  24997. image: {
  24998. source: "./media/characters/juri/stomach.svg"
  24999. }
  25000. },
  25001. },
  25002. [
  25003. {
  25004. name: "Normal",
  25005. height: math.unit(7 + 3 / 12, "feet"),
  25006. default: true
  25007. },
  25008. ]
  25009. ))
  25010. characterMakers.push(() => makeCharacter(
  25011. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25012. {
  25013. fox: {
  25014. height: math.unit(5 + 6 / 12, "feet"),
  25015. weight: math.unit(140, "lb"),
  25016. name: "Fox",
  25017. image: {
  25018. source: "./media/characters/maxene-sita/fox.svg",
  25019. extra: 146 / 138,
  25020. bottom: 2.1 / 148.19
  25021. }
  25022. },
  25023. foxLaying: {
  25024. height: math.unit(1.70, "feet"),
  25025. weight: math.unit(140, "lb"),
  25026. name: "Fox (Laying)",
  25027. image: {
  25028. source: "./media/characters/maxene-sita/fox-laying.svg",
  25029. extra: 910 / 572,
  25030. bottom: 71 / 981
  25031. }
  25032. },
  25033. kitsune: {
  25034. height: math.unit(10, "feet"),
  25035. weight: math.unit(800, "lb"),
  25036. name: "Kitsune",
  25037. image: {
  25038. source: "./media/characters/maxene-sita/kitsune.svg",
  25039. extra: 185 / 176,
  25040. bottom: 4.7 / 189.9
  25041. }
  25042. },
  25043. hellhound: {
  25044. height: math.unit(10, "feet"),
  25045. weight: math.unit(700, "lb"),
  25046. name: "Hellhound",
  25047. image: {
  25048. source: "./media/characters/maxene-sita/hellhound.svg",
  25049. extra: 1600 / 1545,
  25050. bottom: 81 / 1681
  25051. }
  25052. },
  25053. },
  25054. [
  25055. {
  25056. name: "Normal",
  25057. height: math.unit(5 + 6 / 12, "feet"),
  25058. default: true
  25059. },
  25060. ]
  25061. ))
  25062. characterMakers.push(() => makeCharacter(
  25063. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25064. {
  25065. front: {
  25066. height: math.unit(3 + 4 / 12, "feet"),
  25067. weight: math.unit(70, "lb"),
  25068. name: "Front",
  25069. image: {
  25070. source: "./media/characters/maia/front.svg",
  25071. extra: 227 / 219.5,
  25072. bottom: 40 / 267
  25073. }
  25074. },
  25075. back: {
  25076. height: math.unit(3 + 4 / 12, "feet"),
  25077. weight: math.unit(70, "lb"),
  25078. name: "Back",
  25079. image: {
  25080. source: "./media/characters/maia/back.svg",
  25081. extra: 237 / 225
  25082. }
  25083. },
  25084. },
  25085. [
  25086. {
  25087. name: "Normal",
  25088. height: math.unit(3 + 4 / 12, "feet"),
  25089. default: true
  25090. },
  25091. ]
  25092. ))
  25093. characterMakers.push(() => makeCharacter(
  25094. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25095. {
  25096. front: {
  25097. height: math.unit(5 + 10 / 12, "feet"),
  25098. weight: math.unit(197, "lb"),
  25099. name: "Front",
  25100. image: {
  25101. source: "./media/characters/jabaro/front.svg",
  25102. extra: 225 / 216,
  25103. bottom: 5.06 / 230
  25104. }
  25105. },
  25106. back: {
  25107. height: math.unit(5 + 10 / 12, "feet"),
  25108. weight: math.unit(197, "lb"),
  25109. name: "Back",
  25110. image: {
  25111. source: "./media/characters/jabaro/back.svg",
  25112. extra: 225 / 219,
  25113. bottom: 1.9 / 227
  25114. }
  25115. },
  25116. },
  25117. [
  25118. {
  25119. name: "Normal",
  25120. height: math.unit(5 + 10 / 12, "feet"),
  25121. default: true
  25122. },
  25123. ]
  25124. ))
  25125. characterMakers.push(() => makeCharacter(
  25126. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25127. {
  25128. front: {
  25129. height: math.unit(5 + 8 / 12, "feet"),
  25130. weight: math.unit(139, "lb"),
  25131. name: "Front",
  25132. image: {
  25133. source: "./media/characters/risa/front.svg",
  25134. extra: 270 / 260,
  25135. bottom: 11.2 / 282
  25136. }
  25137. },
  25138. back: {
  25139. height: math.unit(5 + 8 / 12, "feet"),
  25140. weight: math.unit(139, "lb"),
  25141. name: "Back",
  25142. image: {
  25143. source: "./media/characters/risa/back.svg",
  25144. extra: 264 / 255,
  25145. bottom: 4 / 268
  25146. }
  25147. },
  25148. },
  25149. [
  25150. {
  25151. name: "Normal",
  25152. height: math.unit(5 + 8 / 12, "feet"),
  25153. default: true
  25154. },
  25155. ]
  25156. ))
  25157. characterMakers.push(() => makeCharacter(
  25158. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25159. {
  25160. front: {
  25161. height: math.unit(2 + 11 / 12, "feet"),
  25162. weight: math.unit(30, "lb"),
  25163. name: "Front",
  25164. image: {
  25165. source: "./media/characters/weatley/front.svg",
  25166. bottom: 10.7 / 414,
  25167. extra: 403.5 / 362
  25168. }
  25169. },
  25170. back: {
  25171. height: math.unit(2 + 11 / 12, "feet"),
  25172. weight: math.unit(30, "lb"),
  25173. name: "Back",
  25174. image: {
  25175. source: "./media/characters/weatley/back.svg",
  25176. bottom: 10.7 / 414,
  25177. extra: 403.5 / 362
  25178. }
  25179. },
  25180. },
  25181. [
  25182. {
  25183. name: "Normal",
  25184. height: math.unit(2 + 11 / 12, "feet"),
  25185. default: true
  25186. },
  25187. ]
  25188. ))
  25189. characterMakers.push(() => makeCharacter(
  25190. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25191. {
  25192. front: {
  25193. height: math.unit(5 + 2 / 12, "feet"),
  25194. weight: math.unit(50, "kg"),
  25195. name: "Front",
  25196. image: {
  25197. source: "./media/characters/mercury-crescent/front.svg",
  25198. extra: 1088 / 1033,
  25199. bottom: 18.9 / 1109
  25200. }
  25201. },
  25202. },
  25203. [
  25204. {
  25205. name: "Normal",
  25206. height: math.unit(5 + 2 / 12, "feet"),
  25207. default: true
  25208. },
  25209. ]
  25210. ))
  25211. characterMakers.push(() => makeCharacter(
  25212. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25213. {
  25214. front: {
  25215. height: math.unit(2, "feet"),
  25216. weight: math.unit(15, "kg"),
  25217. name: "Front",
  25218. image: {
  25219. source: "./media/characters/diamond-jones/front.svg",
  25220. bottom: 16 / 568
  25221. }
  25222. },
  25223. },
  25224. [
  25225. {
  25226. name: "Normal",
  25227. height: math.unit(2, "feet"),
  25228. default: true
  25229. },
  25230. ]
  25231. ))
  25232. characterMakers.push(() => makeCharacter(
  25233. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25234. {
  25235. front: {
  25236. height: math.unit(3, "feet"),
  25237. weight: math.unit(30, "kg"),
  25238. name: "Front",
  25239. image: {
  25240. source: "./media/characters/sweet-bit/front.svg",
  25241. extra: 675 / 567,
  25242. bottom: 27.7 / 703
  25243. }
  25244. },
  25245. },
  25246. [
  25247. {
  25248. name: "Normal",
  25249. height: math.unit(3, "feet"),
  25250. default: true
  25251. },
  25252. ]
  25253. ))
  25254. characterMakers.push(() => makeCharacter(
  25255. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25256. {
  25257. side: {
  25258. height: math.unit(9.178, "feet"),
  25259. weight: math.unit(500, "lb"),
  25260. name: "Side",
  25261. image: {
  25262. source: "./media/characters/umbrazen/side.svg",
  25263. extra: 1730 / 1473,
  25264. bottom: 34.6 / 1765
  25265. }
  25266. },
  25267. },
  25268. [
  25269. {
  25270. name: "Normal",
  25271. height: math.unit(9.178, "feet"),
  25272. default: true
  25273. },
  25274. ]
  25275. ))
  25276. characterMakers.push(() => makeCharacter(
  25277. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25278. {
  25279. front: {
  25280. height: math.unit(10, "feet"),
  25281. weight: math.unit(750, "lb"),
  25282. name: "Front",
  25283. image: {
  25284. source: "./media/characters/arlist/front.svg",
  25285. extra: 961 / 778,
  25286. bottom: 6.2 / 986
  25287. }
  25288. },
  25289. },
  25290. [
  25291. {
  25292. name: "Normal",
  25293. height: math.unit(10, "feet"),
  25294. default: true
  25295. },
  25296. ]
  25297. ))
  25298. characterMakers.push(() => makeCharacter(
  25299. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25300. {
  25301. front: {
  25302. height: math.unit(5 + 1 / 12, "feet"),
  25303. weight: math.unit(110, "lb"),
  25304. name: "Front",
  25305. image: {
  25306. source: "./media/characters/aradel/front.svg",
  25307. extra: 324 / 303,
  25308. bottom: 3.6 / 329.4
  25309. }
  25310. },
  25311. },
  25312. [
  25313. {
  25314. name: "Normal",
  25315. height: math.unit(5 + 1 / 12, "feet"),
  25316. default: true
  25317. },
  25318. ]
  25319. ))
  25320. characterMakers.push(() => makeCharacter(
  25321. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25322. {
  25323. front: {
  25324. height: math.unit(3 + 8 / 12, "feet"),
  25325. weight: math.unit(50, "lb"),
  25326. name: "Front",
  25327. image: {
  25328. source: "./media/characters/serryn/front.svg",
  25329. extra: 1792 / 1656,
  25330. bottom: 43.5 / 1840
  25331. }
  25332. },
  25333. },
  25334. [
  25335. {
  25336. name: "Normal",
  25337. height: math.unit(3 + 8 / 12, "feet"),
  25338. default: true
  25339. },
  25340. ]
  25341. ))
  25342. characterMakers.push(() => makeCharacter(
  25343. { name: "Xavier Thyme" },
  25344. {
  25345. front: {
  25346. height: math.unit(7 + 10 / 12, "feet"),
  25347. weight: math.unit(255, "lb"),
  25348. name: "Front",
  25349. image: {
  25350. source: "./media/characters/xavier-thyme/front.svg",
  25351. extra: 3733 / 3642,
  25352. bottom: 131 / 3869
  25353. }
  25354. },
  25355. frontRaven: {
  25356. height: math.unit(7 + 10 / 12, "feet"),
  25357. weight: math.unit(255, "lb"),
  25358. name: "Front (Raven)",
  25359. image: {
  25360. source: "./media/characters/xavier-thyme/front-raven.svg",
  25361. extra: 4385 / 3642,
  25362. bottom: 131 / 4517
  25363. }
  25364. },
  25365. },
  25366. [
  25367. {
  25368. name: "Normal",
  25369. height: math.unit(7 + 10 / 12, "feet"),
  25370. default: true
  25371. },
  25372. ]
  25373. ))
  25374. characterMakers.push(() => makeCharacter(
  25375. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25376. {
  25377. front: {
  25378. height: math.unit(1.6, "m"),
  25379. weight: math.unit(50, "kg"),
  25380. name: "Front",
  25381. image: {
  25382. source: "./media/characters/kiki/front.svg",
  25383. extra: 4682 / 3610,
  25384. bottom: 115 / 4777
  25385. }
  25386. },
  25387. },
  25388. [
  25389. {
  25390. name: "Normal",
  25391. height: math.unit(1.6, "meters"),
  25392. default: true
  25393. },
  25394. ]
  25395. ))
  25396. characterMakers.push(() => makeCharacter(
  25397. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25398. {
  25399. front: {
  25400. height: math.unit(50, "m"),
  25401. weight: math.unit(500, "tonnes"),
  25402. name: "Front",
  25403. image: {
  25404. source: "./media/characters/ryoko/front.svg",
  25405. extra: 4632 / 3926,
  25406. bottom: 193 / 4823
  25407. }
  25408. },
  25409. },
  25410. [
  25411. {
  25412. name: "Normal",
  25413. height: math.unit(50, "meters"),
  25414. default: true
  25415. },
  25416. ]
  25417. ))
  25418. characterMakers.push(() => makeCharacter(
  25419. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25420. {
  25421. front: {
  25422. height: math.unit(30, "m"),
  25423. weight: math.unit(22, "tonnes"),
  25424. name: "Front",
  25425. image: {
  25426. source: "./media/characters/elio/front.svg",
  25427. extra: 4582 / 3720,
  25428. bottom: 236 / 4828
  25429. }
  25430. },
  25431. },
  25432. [
  25433. {
  25434. name: "Normal",
  25435. height: math.unit(30, "meters"),
  25436. default: true
  25437. },
  25438. ]
  25439. ))
  25440. characterMakers.push(() => makeCharacter(
  25441. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25442. {
  25443. front: {
  25444. height: math.unit(6 + 3 / 12, "feet"),
  25445. weight: math.unit(120, "lb"),
  25446. name: "Front",
  25447. image: {
  25448. source: "./media/characters/azura/front.svg",
  25449. extra: 1149 / 1135,
  25450. bottom: 45 / 1194
  25451. }
  25452. },
  25453. frontClothed: {
  25454. height: math.unit(6 + 3 / 12, "feet"),
  25455. weight: math.unit(120, "lb"),
  25456. name: "Front (Clothed)",
  25457. image: {
  25458. source: "./media/characters/azura/front-clothed.svg",
  25459. extra: 1149 / 1135,
  25460. bottom: 45 / 1194
  25461. }
  25462. },
  25463. },
  25464. [
  25465. {
  25466. name: "Normal",
  25467. height: math.unit(6 + 3 / 12, "feet"),
  25468. default: true
  25469. },
  25470. {
  25471. name: "Macro",
  25472. height: math.unit(20 + 6 / 12, "feet")
  25473. },
  25474. {
  25475. name: "Megamacro",
  25476. height: math.unit(12, "miles")
  25477. },
  25478. {
  25479. name: "Gigamacro",
  25480. height: math.unit(10000, "miles")
  25481. },
  25482. {
  25483. name: "Teramacro",
  25484. height: math.unit(900000, "miles")
  25485. },
  25486. ]
  25487. ))
  25488. characterMakers.push(() => makeCharacter(
  25489. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25490. {
  25491. front: {
  25492. height: math.unit(12, "feet"),
  25493. weight: math.unit(1, "ton"),
  25494. capacity: math.unit(660000, "gallons"),
  25495. name: "Front",
  25496. image: {
  25497. source: "./media/characters/zeus/front.svg",
  25498. extra: 5005 / 4717,
  25499. bottom: 363 / 5388
  25500. }
  25501. },
  25502. },
  25503. [
  25504. {
  25505. name: "Normal",
  25506. height: math.unit(12, "feet")
  25507. },
  25508. {
  25509. name: "Preferred Size",
  25510. height: math.unit(0.5, "miles"),
  25511. default: true
  25512. },
  25513. {
  25514. name: "Giga Horse",
  25515. height: math.unit(300, "miles")
  25516. },
  25517. {
  25518. name: "Riding Planets",
  25519. height: math.unit(30, "megameters")
  25520. },
  25521. {
  25522. name: "Cosmic Giant",
  25523. height: math.unit(3, "zettameters")
  25524. },
  25525. {
  25526. name: "Breeding God",
  25527. height: math.unit(9.92e22, "yottameters")
  25528. },
  25529. ]
  25530. ))
  25531. characterMakers.push(() => makeCharacter(
  25532. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25533. {
  25534. side: {
  25535. height: math.unit(9, "feet"),
  25536. weight: math.unit(1500, "kg"),
  25537. name: "Side",
  25538. image: {
  25539. source: "./media/characters/fang/side.svg",
  25540. extra: 924 / 866,
  25541. bottom: 47.5 / 972.3
  25542. }
  25543. },
  25544. },
  25545. [
  25546. {
  25547. name: "Normal",
  25548. height: math.unit(9, "feet"),
  25549. default: true
  25550. },
  25551. {
  25552. name: "Macro",
  25553. height: math.unit(75 + 6 / 12, "feet")
  25554. },
  25555. {
  25556. name: "Teramacro",
  25557. height: math.unit(50000, "miles")
  25558. },
  25559. ]
  25560. ))
  25561. characterMakers.push(() => makeCharacter(
  25562. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25563. {
  25564. front: {
  25565. height: math.unit(10, "feet"),
  25566. weight: math.unit(2, "tons"),
  25567. name: "Front",
  25568. image: {
  25569. source: "./media/characters/rekhit/front.svg",
  25570. extra: 2796 / 2590,
  25571. bottom: 225 / 3022
  25572. }
  25573. },
  25574. },
  25575. [
  25576. {
  25577. name: "Normal",
  25578. height: math.unit(10, "feet"),
  25579. default: true
  25580. },
  25581. {
  25582. name: "Macro",
  25583. height: math.unit(500, "feet")
  25584. },
  25585. ]
  25586. ))
  25587. characterMakers.push(() => makeCharacter(
  25588. { name: "Dahlia Verrick" },
  25589. {
  25590. front: {
  25591. height: math.unit(7 + 6.451 / 12, "feet"),
  25592. weight: math.unit(310, "lb"),
  25593. name: "Front",
  25594. image: {
  25595. source: "./media/characters/dahlia-verrick/front.svg",
  25596. extra: 1488 / 1365,
  25597. bottom: 6.2 / 1495
  25598. }
  25599. },
  25600. back: {
  25601. height: math.unit(7 + 6.451 / 12, "feet"),
  25602. weight: math.unit(310, "lb"),
  25603. name: "Back",
  25604. image: {
  25605. source: "./media/characters/dahlia-verrick/back.svg",
  25606. extra: 1472 / 1351,
  25607. bottom: 5.28 / 1477
  25608. }
  25609. },
  25610. frontBusiness: {
  25611. height: math.unit(7 + 6.451 / 12, "feet"),
  25612. weight: math.unit(200, "lb"),
  25613. name: "Front (Business)",
  25614. image: {
  25615. source: "./media/characters/dahlia-verrick/front-business.svg",
  25616. extra: 1478 / 1381,
  25617. bottom: 5.5 / 1484
  25618. }
  25619. },
  25620. frontCasual: {
  25621. height: math.unit(7 + 6.451 / 12, "feet"),
  25622. weight: math.unit(200, "lb"),
  25623. name: "Front (Casual)",
  25624. image: {
  25625. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25626. extra: 1478 / 1381,
  25627. bottom: 5.5 / 1484
  25628. }
  25629. },
  25630. },
  25631. [
  25632. {
  25633. name: "Travel-Sized",
  25634. height: math.unit(7.45, "inches")
  25635. },
  25636. {
  25637. name: "Normal",
  25638. height: math.unit(7 + 6.451 / 12, "feet"),
  25639. default: true
  25640. },
  25641. {
  25642. name: "Hitting the Town",
  25643. height: math.unit(37 + 8 / 12, "feet")
  25644. },
  25645. {
  25646. name: "Stomp in the Suburbs",
  25647. height: math.unit(964 + 9.728 / 12, "feet")
  25648. },
  25649. {
  25650. name: "Sit on the City",
  25651. height: math.unit(61747 + 10.592 / 12, "feet")
  25652. },
  25653. {
  25654. name: "Glomp the Globe",
  25655. height: math.unit(252919327 + 4.832 / 12, "feet")
  25656. },
  25657. ]
  25658. ))
  25659. characterMakers.push(() => makeCharacter(
  25660. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25661. {
  25662. front: {
  25663. height: math.unit(6 + 4 / 12, "feet"),
  25664. weight: math.unit(320, "lb"),
  25665. name: "Front",
  25666. image: {
  25667. source: "./media/characters/balina-mahigan/front.svg",
  25668. extra: 447 / 428,
  25669. bottom: 18 / 466
  25670. }
  25671. },
  25672. back: {
  25673. height: math.unit(6 + 4 / 12, "feet"),
  25674. weight: math.unit(320, "lb"),
  25675. name: "Back",
  25676. image: {
  25677. source: "./media/characters/balina-mahigan/back.svg",
  25678. extra: 445 / 428,
  25679. bottom: 4.07 / 448
  25680. }
  25681. },
  25682. arm: {
  25683. height: math.unit(1.88, "feet"),
  25684. name: "Arm",
  25685. image: {
  25686. source: "./media/characters/balina-mahigan/arm.svg"
  25687. }
  25688. },
  25689. backPort: {
  25690. height: math.unit(0.685, "feet"),
  25691. name: "Back Port",
  25692. image: {
  25693. source: "./media/characters/balina-mahigan/back-port.svg"
  25694. }
  25695. },
  25696. hoofpaw: {
  25697. height: math.unit(1.41, "feet"),
  25698. name: "Hoofpaw",
  25699. image: {
  25700. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25701. }
  25702. },
  25703. leftHandBack: {
  25704. height: math.unit(0.938, "feet"),
  25705. name: "Left Hand (Back)",
  25706. image: {
  25707. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25708. }
  25709. },
  25710. leftHandFront: {
  25711. height: math.unit(0.938, "feet"),
  25712. name: "Left Hand (Front)",
  25713. image: {
  25714. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25715. }
  25716. },
  25717. rightHandBack: {
  25718. height: math.unit(0.95, "feet"),
  25719. name: "Right Hand (Back)",
  25720. image: {
  25721. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25722. }
  25723. },
  25724. rightHandFront: {
  25725. height: math.unit(0.95, "feet"),
  25726. name: "Right Hand (Front)",
  25727. image: {
  25728. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25729. }
  25730. },
  25731. },
  25732. [
  25733. {
  25734. name: "Normal",
  25735. height: math.unit(6 + 4 / 12, "feet"),
  25736. default: true
  25737. },
  25738. ]
  25739. ))
  25740. characterMakers.push(() => makeCharacter(
  25741. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25742. {
  25743. front: {
  25744. height: math.unit(6, "feet"),
  25745. weight: math.unit(320, "lb"),
  25746. name: "Front",
  25747. image: {
  25748. source: "./media/characters/balina-mejeri/front.svg",
  25749. extra: 517 / 488,
  25750. bottom: 44.2 / 561
  25751. }
  25752. },
  25753. },
  25754. [
  25755. {
  25756. name: "Normal",
  25757. height: math.unit(6 + 4 / 12, "feet")
  25758. },
  25759. {
  25760. name: "Business",
  25761. height: math.unit(155, "feet"),
  25762. default: true
  25763. },
  25764. ]
  25765. ))
  25766. characterMakers.push(() => makeCharacter(
  25767. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25768. {
  25769. kneeling: {
  25770. height: math.unit(6 + 4 / 12, "feet"),
  25771. weight: math.unit(300 * 20, "lb"),
  25772. name: "Kneeling",
  25773. image: {
  25774. source: "./media/characters/balbarian/kneeling.svg",
  25775. extra: 922 / 862,
  25776. bottom: 42.4 / 965
  25777. }
  25778. },
  25779. },
  25780. [
  25781. {
  25782. name: "Normal",
  25783. height: math.unit(6 + 4 / 12, "feet")
  25784. },
  25785. {
  25786. name: "Treasured",
  25787. height: math.unit(18 + 9 / 12, "feet"),
  25788. default: true
  25789. },
  25790. {
  25791. name: "Macro",
  25792. height: math.unit(900, "feet")
  25793. },
  25794. ]
  25795. ))
  25796. characterMakers.push(() => makeCharacter(
  25797. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25798. {
  25799. front: {
  25800. height: math.unit(6 + 4 / 12, "feet"),
  25801. weight: math.unit(325, "lb"),
  25802. name: "Front",
  25803. image: {
  25804. source: "./media/characters/balina-amarini/front.svg",
  25805. extra: 415 / 403,
  25806. bottom: 19 / 433.4
  25807. }
  25808. },
  25809. back: {
  25810. height: math.unit(6 + 4 / 12, "feet"),
  25811. weight: math.unit(325, "lb"),
  25812. name: "Back",
  25813. image: {
  25814. source: "./media/characters/balina-amarini/back.svg",
  25815. extra: 415 / 403,
  25816. bottom: 13.5 / 432
  25817. }
  25818. },
  25819. overdrive: {
  25820. height: math.unit(6 + 4 / 12, "feet"),
  25821. weight: math.unit(400, "lb"),
  25822. name: "Overdrive",
  25823. image: {
  25824. source: "./media/characters/balina-amarini/overdrive.svg",
  25825. extra: 269 / 259,
  25826. bottom: 12 / 282
  25827. }
  25828. },
  25829. },
  25830. [
  25831. {
  25832. name: "Boom",
  25833. height: math.unit(9 + 10 / 12, "feet"),
  25834. default: true
  25835. },
  25836. {
  25837. name: "Macro",
  25838. height: math.unit(280, "feet")
  25839. },
  25840. ]
  25841. ))
  25842. characterMakers.push(() => makeCharacter(
  25843. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25844. {
  25845. goddess: {
  25846. height: math.unit(600, "feet"),
  25847. weight: math.unit(2000000, "tons"),
  25848. name: "Goddess",
  25849. image: {
  25850. source: "./media/characters/lady-kubwa/goddess.svg",
  25851. extra: 1240.5 / 1223,
  25852. bottom: 22 / 1263
  25853. }
  25854. },
  25855. goddesser: {
  25856. height: math.unit(900, "feet"),
  25857. weight: math.unit(20000000, "lb"),
  25858. name: "Goddess-er",
  25859. image: {
  25860. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25861. extra: 899 / 888,
  25862. bottom: 12.6 / 912
  25863. }
  25864. },
  25865. },
  25866. [
  25867. {
  25868. name: "Macro",
  25869. height: math.unit(600, "feet"),
  25870. default: true
  25871. },
  25872. {
  25873. name: "Megamacro",
  25874. height: math.unit(250, "miles")
  25875. },
  25876. ]
  25877. ))
  25878. characterMakers.push(() => makeCharacter(
  25879. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25880. {
  25881. front: {
  25882. height: math.unit(7 + 7 / 12, "feet"),
  25883. weight: math.unit(250, "lb"),
  25884. name: "Front",
  25885. image: {
  25886. source: "./media/characters/tala-grovehorn/front.svg",
  25887. extra: 2636 / 2525,
  25888. bottom: 147 / 2781
  25889. }
  25890. },
  25891. back: {
  25892. height: math.unit(7 + 7 / 12, "feet"),
  25893. weight: math.unit(250, "lb"),
  25894. name: "Back",
  25895. image: {
  25896. source: "./media/characters/tala-grovehorn/back.svg",
  25897. extra: 2635 / 2539,
  25898. bottom: 100 / 2732.8
  25899. }
  25900. },
  25901. mouth: {
  25902. height: math.unit(1.15, "feet"),
  25903. name: "Mouth",
  25904. image: {
  25905. source: "./media/characters/tala-grovehorn/mouth.svg"
  25906. }
  25907. },
  25908. dick: {
  25909. height: math.unit(2.36, "feet"),
  25910. name: "Dick",
  25911. image: {
  25912. source: "./media/characters/tala-grovehorn/dick.svg"
  25913. }
  25914. },
  25915. slit: {
  25916. height: math.unit(0.61, "feet"),
  25917. name: "Slit",
  25918. image: {
  25919. source: "./media/characters/tala-grovehorn/slit.svg"
  25920. }
  25921. },
  25922. },
  25923. [
  25924. ]
  25925. ))
  25926. characterMakers.push(() => makeCharacter(
  25927. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25928. {
  25929. front: {
  25930. height: math.unit(7 + 7 / 12, "feet"),
  25931. weight: math.unit(225, "lb"),
  25932. name: "Front",
  25933. image: {
  25934. source: "./media/characters/epona/front.svg",
  25935. extra: 2445 / 2290,
  25936. bottom: 251 / 2696
  25937. }
  25938. },
  25939. back: {
  25940. height: math.unit(7 + 7 / 12, "feet"),
  25941. weight: math.unit(225, "lb"),
  25942. name: "Back",
  25943. image: {
  25944. source: "./media/characters/epona/back.svg",
  25945. extra: 2546 / 2408,
  25946. bottom: 44 / 2589
  25947. }
  25948. },
  25949. genitals: {
  25950. height: math.unit(1.5, "feet"),
  25951. name: "Genitals",
  25952. image: {
  25953. source: "./media/characters/epona/genitals.svg"
  25954. }
  25955. },
  25956. },
  25957. [
  25958. {
  25959. name: "Normal",
  25960. height: math.unit(7 + 7 / 12, "feet"),
  25961. default: true
  25962. },
  25963. ]
  25964. ))
  25965. characterMakers.push(() => makeCharacter(
  25966. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25967. {
  25968. front: {
  25969. height: math.unit(7, "feet"),
  25970. weight: math.unit(518, "lb"),
  25971. name: "Front",
  25972. image: {
  25973. source: "./media/characters/avia-bloodbourn/front.svg",
  25974. extra: 1466 / 1350,
  25975. bottom: 65 / 1527
  25976. }
  25977. },
  25978. },
  25979. [
  25980. ]
  25981. ))
  25982. characterMakers.push(() => makeCharacter(
  25983. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25984. {
  25985. front: {
  25986. height: math.unit(9.35, "feet"),
  25987. weight: math.unit(600, "lb"),
  25988. name: "Front",
  25989. image: {
  25990. source: "./media/characters/amera/front.svg",
  25991. extra: 891 / 818,
  25992. bottom: 30 / 922.7
  25993. }
  25994. },
  25995. back: {
  25996. height: math.unit(9.35, "feet"),
  25997. weight: math.unit(600, "lb"),
  25998. name: "Back",
  25999. image: {
  26000. source: "./media/characters/amera/back.svg",
  26001. extra: 876 / 824,
  26002. bottom: 6.8 / 884
  26003. }
  26004. },
  26005. dick: {
  26006. height: math.unit(2.14, "feet"),
  26007. name: "Dick",
  26008. image: {
  26009. source: "./media/characters/amera/dick.svg"
  26010. }
  26011. },
  26012. },
  26013. [
  26014. {
  26015. name: "Normal",
  26016. height: math.unit(9.35, "feet"),
  26017. default: true
  26018. },
  26019. ]
  26020. ))
  26021. characterMakers.push(() => makeCharacter(
  26022. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26023. {
  26024. kneeling: {
  26025. height: math.unit(3 + 4 / 12, "feet"),
  26026. weight: math.unit(90, "lb"),
  26027. name: "Kneeling",
  26028. image: {
  26029. source: "./media/characters/rosewen/kneeling.svg",
  26030. extra: 1835 / 1571,
  26031. bottom: 27.7 / 1862
  26032. }
  26033. },
  26034. },
  26035. [
  26036. {
  26037. name: "Normal",
  26038. height: math.unit(3 + 4 / 12, "feet"),
  26039. default: true
  26040. },
  26041. ]
  26042. ))
  26043. characterMakers.push(() => makeCharacter(
  26044. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26045. {
  26046. front: {
  26047. height: math.unit(5 + 10 / 12, "feet"),
  26048. weight: math.unit(200, "lb"),
  26049. name: "Front",
  26050. image: {
  26051. source: "./media/characters/sabah/front.svg",
  26052. extra: 849 / 763,
  26053. bottom: 33.9 / 881
  26054. }
  26055. },
  26056. },
  26057. [
  26058. {
  26059. name: "Normal",
  26060. height: math.unit(5 + 10 / 12, "feet"),
  26061. default: true
  26062. },
  26063. ]
  26064. ))
  26065. characterMakers.push(() => makeCharacter(
  26066. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26067. {
  26068. front: {
  26069. height: math.unit(3 + 5 / 12, "feet"),
  26070. weight: math.unit(40, "kg"),
  26071. name: "Front",
  26072. image: {
  26073. source: "./media/characters/purple-flame/front.svg",
  26074. extra: 1577 / 1412,
  26075. bottom: 97 / 1694
  26076. }
  26077. },
  26078. frontDressed: {
  26079. height: math.unit(3 + 5 / 12, "feet"),
  26080. weight: math.unit(40, "kg"),
  26081. name: "Front (Dressed)",
  26082. image: {
  26083. source: "./media/characters/purple-flame/front-dressed.svg",
  26084. extra: 1577 / 1412,
  26085. bottom: 97 / 1694
  26086. }
  26087. },
  26088. headphones: {
  26089. height: math.unit(0.85, "feet"),
  26090. name: "Headphones",
  26091. image: {
  26092. source: "./media/characters/purple-flame/headphones.svg"
  26093. }
  26094. },
  26095. },
  26096. [
  26097. {
  26098. name: "Really Small",
  26099. height: math.unit(5, "cm")
  26100. },
  26101. {
  26102. name: "Micro",
  26103. height: math.unit(1 + 5 / 12, "feet")
  26104. },
  26105. {
  26106. name: "Normal",
  26107. height: math.unit(3 + 5 / 12, "feet"),
  26108. default: true
  26109. },
  26110. {
  26111. name: "Minimacro",
  26112. height: math.unit(125, "feet")
  26113. },
  26114. {
  26115. name: "Macro",
  26116. height: math.unit(0.5, "miles")
  26117. },
  26118. {
  26119. name: "Megamacro",
  26120. height: math.unit(50, "miles")
  26121. },
  26122. {
  26123. name: "Gigantic",
  26124. height: math.unit(750, "miles")
  26125. },
  26126. {
  26127. name: "Planetary",
  26128. height: math.unit(15000, "miles")
  26129. },
  26130. ]
  26131. ))
  26132. characterMakers.push(() => makeCharacter(
  26133. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26134. {
  26135. front: {
  26136. height: math.unit(14, "feet"),
  26137. weight: math.unit(959, "lb"),
  26138. name: "Front",
  26139. image: {
  26140. source: "./media/characters/arsenal/front.svg",
  26141. extra: 2357 / 2157,
  26142. bottom: 93 / 2458
  26143. }
  26144. },
  26145. },
  26146. [
  26147. {
  26148. name: "Normal",
  26149. height: math.unit(14, "feet"),
  26150. default: true
  26151. },
  26152. ]
  26153. ))
  26154. characterMakers.push(() => makeCharacter(
  26155. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26156. {
  26157. front: {
  26158. height: math.unit(6, "feet"),
  26159. weight: math.unit(150, "lb"),
  26160. name: "Front",
  26161. image: {
  26162. source: "./media/characters/adira/front.svg",
  26163. extra: 1078 / 1029,
  26164. bottom: 87 / 1166
  26165. }
  26166. },
  26167. },
  26168. [
  26169. {
  26170. name: "Micro",
  26171. height: math.unit(4, "inches"),
  26172. default: true
  26173. },
  26174. {
  26175. name: "Macro",
  26176. height: math.unit(50, "feet")
  26177. },
  26178. ]
  26179. ))
  26180. characterMakers.push(() => makeCharacter(
  26181. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26182. {
  26183. front: {
  26184. height: math.unit(16, "feet"),
  26185. weight: math.unit(1000, "lb"),
  26186. name: "Front",
  26187. image: {
  26188. source: "./media/characters/grim/front.svg",
  26189. extra: 622 / 614,
  26190. bottom: 18.1 / 642
  26191. }
  26192. },
  26193. back: {
  26194. height: math.unit(16, "feet"),
  26195. weight: math.unit(1000, "lb"),
  26196. name: "Back",
  26197. image: {
  26198. source: "./media/characters/grim/back.svg",
  26199. extra: 610.6 / 602,
  26200. bottom: 40.8 / 652
  26201. }
  26202. },
  26203. hunched: {
  26204. height: math.unit(9.75, "feet"),
  26205. weight: math.unit(1000, "lb"),
  26206. name: "Hunched",
  26207. image: {
  26208. source: "./media/characters/grim/hunched.svg",
  26209. extra: 304 / 297,
  26210. bottom: 35.4 / 394
  26211. }
  26212. },
  26213. },
  26214. [
  26215. {
  26216. name: "Normal",
  26217. height: math.unit(16, "feet"),
  26218. default: true
  26219. },
  26220. ]
  26221. ))
  26222. characterMakers.push(() => makeCharacter(
  26223. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26224. {
  26225. front: {
  26226. height: math.unit(2.3, "meters"),
  26227. weight: math.unit(300, "lb"),
  26228. name: "Front",
  26229. image: {
  26230. source: "./media/characters/sinja/front-sfw.svg",
  26231. extra: 1393 / 1294,
  26232. bottom: 70 / 1463
  26233. }
  26234. },
  26235. frontNsfw: {
  26236. height: math.unit(2.3, "meters"),
  26237. weight: math.unit(300, "lb"),
  26238. name: "Front (NSFW)",
  26239. image: {
  26240. source: "./media/characters/sinja/front-nsfw.svg",
  26241. extra: 1393 / 1294,
  26242. bottom: 70 / 1463
  26243. }
  26244. },
  26245. back: {
  26246. height: math.unit(2.3, "meters"),
  26247. weight: math.unit(300, "lb"),
  26248. name: "Back",
  26249. image: {
  26250. source: "./media/characters/sinja/back.svg",
  26251. extra: 1393 / 1294,
  26252. bottom: 70 / 1463
  26253. }
  26254. },
  26255. head: {
  26256. height: math.unit(1.771, "feet"),
  26257. name: "Head",
  26258. image: {
  26259. source: "./media/characters/sinja/head.svg"
  26260. }
  26261. },
  26262. slit: {
  26263. height: math.unit(0.8, "feet"),
  26264. name: "Slit",
  26265. image: {
  26266. source: "./media/characters/sinja/slit.svg"
  26267. }
  26268. },
  26269. },
  26270. [
  26271. {
  26272. name: "Normal",
  26273. height: math.unit(2.3, "meters")
  26274. },
  26275. {
  26276. name: "Macro",
  26277. height: math.unit(91, "meters"),
  26278. default: true
  26279. },
  26280. {
  26281. name: "Megamacro",
  26282. height: math.unit(91440, "meters")
  26283. },
  26284. {
  26285. name: "Gigamacro",
  26286. height: math.unit(60960000, "meters")
  26287. },
  26288. {
  26289. name: "Teramacro",
  26290. height: math.unit(9144000000, "meters")
  26291. },
  26292. ]
  26293. ))
  26294. characterMakers.push(() => makeCharacter(
  26295. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26296. {
  26297. front: {
  26298. height: math.unit(1.7, "meters"),
  26299. weight: math.unit(130, "lb"),
  26300. name: "Front",
  26301. image: {
  26302. source: "./media/characters/kyu/front.svg",
  26303. extra: 415 / 395,
  26304. bottom: 5 / 420
  26305. }
  26306. },
  26307. head: {
  26308. height: math.unit(1.75, "feet"),
  26309. name: "Head",
  26310. image: {
  26311. source: "./media/characters/kyu/head.svg"
  26312. }
  26313. },
  26314. foot: {
  26315. height: math.unit(0.81, "feet"),
  26316. name: "Foot",
  26317. image: {
  26318. source: "./media/characters/kyu/foot.svg"
  26319. }
  26320. },
  26321. },
  26322. [
  26323. {
  26324. name: "Normal",
  26325. height: math.unit(1.7, "meters")
  26326. },
  26327. {
  26328. name: "Macro",
  26329. height: math.unit(131, "feet"),
  26330. default: true
  26331. },
  26332. {
  26333. name: "Megamacro",
  26334. height: math.unit(91440, "meters")
  26335. },
  26336. {
  26337. name: "Gigamacro",
  26338. height: math.unit(60960000, "meters")
  26339. },
  26340. {
  26341. name: "Teramacro",
  26342. height: math.unit(9144000000, "meters")
  26343. },
  26344. ]
  26345. ))
  26346. characterMakers.push(() => makeCharacter(
  26347. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26348. {
  26349. front: {
  26350. height: math.unit(7 + 1 / 12, "feet"),
  26351. weight: math.unit(250, "lb"),
  26352. name: "Front",
  26353. image: {
  26354. source: "./media/characters/joey/front.svg",
  26355. extra: 1791 / 1537,
  26356. bottom: 28 / 1816
  26357. }
  26358. },
  26359. },
  26360. [
  26361. {
  26362. name: "Micro",
  26363. height: math.unit(3, "inches")
  26364. },
  26365. {
  26366. name: "Normal",
  26367. height: math.unit(7 + 1 / 12, "feet"),
  26368. default: true
  26369. },
  26370. ]
  26371. ))
  26372. characterMakers.push(() => makeCharacter(
  26373. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26374. {
  26375. front: {
  26376. height: math.unit(165, "cm"),
  26377. weight: math.unit(140, "lb"),
  26378. name: "Front",
  26379. image: {
  26380. source: "./media/characters/sam-evans/front.svg",
  26381. extra: 3417 / 3230,
  26382. bottom: 41.3 / 3417
  26383. }
  26384. },
  26385. frontSixTails: {
  26386. height: math.unit(165, "cm"),
  26387. weight: math.unit(140, "lb"),
  26388. name: "Front-six-tails",
  26389. image: {
  26390. source: "./media/characters/sam-evans/front-six-tails.svg",
  26391. extra: 3417 / 3230,
  26392. bottom: 41.3 / 3417
  26393. }
  26394. },
  26395. back: {
  26396. height: math.unit(165, "cm"),
  26397. weight: math.unit(140, "lb"),
  26398. name: "Back",
  26399. image: {
  26400. source: "./media/characters/sam-evans/back.svg",
  26401. extra: 3227 / 3032,
  26402. bottom: 6.8 / 3234
  26403. }
  26404. },
  26405. face: {
  26406. height: math.unit(0.68, "feet"),
  26407. name: "Face",
  26408. image: {
  26409. source: "./media/characters/sam-evans/face.svg"
  26410. }
  26411. },
  26412. },
  26413. [
  26414. {
  26415. name: "Normal",
  26416. height: math.unit(165, "cm"),
  26417. default: true
  26418. },
  26419. {
  26420. name: "Macro",
  26421. height: math.unit(100, "meters")
  26422. },
  26423. {
  26424. name: "Macro+",
  26425. height: math.unit(800, "meters")
  26426. },
  26427. {
  26428. name: "Macro++",
  26429. height: math.unit(3, "km")
  26430. },
  26431. {
  26432. name: "Macro+++",
  26433. height: math.unit(30, "km")
  26434. },
  26435. ]
  26436. ))
  26437. characterMakers.push(() => makeCharacter(
  26438. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26439. {
  26440. front: {
  26441. height: math.unit(10, "feet"),
  26442. weight: math.unit(750, "lb"),
  26443. name: "Front",
  26444. image: {
  26445. source: "./media/characters/juliet-a/front.svg",
  26446. extra: 1766 / 1720,
  26447. bottom: 43 / 1809
  26448. }
  26449. },
  26450. back: {
  26451. height: math.unit(10, "feet"),
  26452. weight: math.unit(750, "lb"),
  26453. name: "Back",
  26454. image: {
  26455. source: "./media/characters/juliet-a/back.svg",
  26456. extra: 1781 / 1734,
  26457. bottom: 35 / 1810,
  26458. }
  26459. },
  26460. },
  26461. [
  26462. {
  26463. name: "Normal",
  26464. height: math.unit(10, "feet"),
  26465. default: true
  26466. },
  26467. {
  26468. name: "Dragon Form",
  26469. height: math.unit(250, "feet")
  26470. },
  26471. {
  26472. name: "Macro",
  26473. height: math.unit(1000, "feet")
  26474. },
  26475. {
  26476. name: "Megamacro",
  26477. height: math.unit(10000, "feet")
  26478. }
  26479. ]
  26480. ))
  26481. characterMakers.push(() => makeCharacter(
  26482. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26483. {
  26484. regular: {
  26485. height: math.unit(7 + 3 / 12, "feet"),
  26486. weight: math.unit(260, "lb"),
  26487. name: "Regular",
  26488. image: {
  26489. source: "./media/characters/wild/regular.svg",
  26490. extra: 97.45 / 92,
  26491. bottom: 6.8 / 104.3
  26492. }
  26493. },
  26494. biggums: {
  26495. height: math.unit(8 + 6 / 12, "feet"),
  26496. weight: math.unit(425, "lb"),
  26497. name: "Biggums",
  26498. image: {
  26499. source: "./media/characters/wild/biggums.svg",
  26500. extra: 97.45 / 92,
  26501. bottom: 7.5 / 132.34
  26502. }
  26503. },
  26504. mawRegular: {
  26505. height: math.unit(1.24, "feet"),
  26506. name: "Maw (Regular)",
  26507. image: {
  26508. source: "./media/characters/wild/maw.svg"
  26509. }
  26510. },
  26511. mawBiggums: {
  26512. height: math.unit(1.47, "feet"),
  26513. name: "Maw (Biggums)",
  26514. image: {
  26515. source: "./media/characters/wild/maw.svg"
  26516. }
  26517. },
  26518. },
  26519. [
  26520. {
  26521. name: "Normal",
  26522. height: math.unit(7 + 3 / 12, "feet"),
  26523. default: true
  26524. },
  26525. ]
  26526. ))
  26527. characterMakers.push(() => makeCharacter(
  26528. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26529. {
  26530. front: {
  26531. height: math.unit(2.5, "meters"),
  26532. weight: math.unit(200, "kg"),
  26533. name: "Front",
  26534. image: {
  26535. source: "./media/characters/vidar/front.svg",
  26536. extra: 2994 / 2795,
  26537. bottom: 56 / 3061
  26538. }
  26539. },
  26540. back: {
  26541. height: math.unit(2.5, "meters"),
  26542. weight: math.unit(200, "kg"),
  26543. name: "Back",
  26544. image: {
  26545. source: "./media/characters/vidar/back.svg",
  26546. extra: 3131 / 2928,
  26547. bottom: 13.5 / 3141.5
  26548. }
  26549. },
  26550. feral: {
  26551. height: math.unit(2.5, "meters"),
  26552. weight: math.unit(2000, "kg"),
  26553. name: "Feral",
  26554. image: {
  26555. source: "./media/characters/vidar/feral.svg",
  26556. extra: 2790 / 1765,
  26557. bottom: 6 / 2796
  26558. }
  26559. },
  26560. },
  26561. [
  26562. {
  26563. name: "Normal",
  26564. height: math.unit(2.5, "meters"),
  26565. default: true
  26566. },
  26567. {
  26568. name: "Macro",
  26569. height: math.unit(100, "meters")
  26570. },
  26571. ]
  26572. ))
  26573. characterMakers.push(() => makeCharacter(
  26574. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26575. {
  26576. front: {
  26577. height: math.unit(5 + 9 / 12, "feet"),
  26578. weight: math.unit(120, "lb"),
  26579. name: "Front",
  26580. image: {
  26581. source: "./media/characters/ash/front.svg",
  26582. extra: 2189 / 1961,
  26583. bottom: 5.2 / 2194
  26584. }
  26585. },
  26586. },
  26587. [
  26588. {
  26589. name: "Normal",
  26590. height: math.unit(5 + 9 / 12, "feet"),
  26591. default: true
  26592. },
  26593. ]
  26594. ))
  26595. characterMakers.push(() => makeCharacter(
  26596. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26597. {
  26598. front: {
  26599. height: math.unit(9, "feet"),
  26600. weight: math.unit(10000, "lb"),
  26601. name: "Front",
  26602. image: {
  26603. source: "./media/characters/gygabite/front.svg",
  26604. bottom: 31.7 / 537.8,
  26605. extra: 505 / 370
  26606. }
  26607. },
  26608. },
  26609. [
  26610. {
  26611. name: "Normal",
  26612. height: math.unit(9, "feet"),
  26613. default: true
  26614. },
  26615. ]
  26616. ))
  26617. characterMakers.push(() => makeCharacter(
  26618. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26619. {
  26620. front: {
  26621. height: math.unit(12, "feet"),
  26622. weight: math.unit(35000, "lb"),
  26623. name: "Front",
  26624. image: {
  26625. source: "./media/characters/p0tat0/front.svg",
  26626. extra: 1065 / 921,
  26627. bottom: 55.7 / 1121.25
  26628. }
  26629. },
  26630. },
  26631. [
  26632. {
  26633. name: "Normal",
  26634. height: math.unit(12, "feet"),
  26635. default: true
  26636. },
  26637. ]
  26638. ))
  26639. characterMakers.push(() => makeCharacter(
  26640. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26641. {
  26642. side: {
  26643. height: math.unit(6.5, "feet"),
  26644. weight: math.unit(800, "lb"),
  26645. name: "Side",
  26646. image: {
  26647. source: "./media/characters/dusk/side.svg",
  26648. extra: 615 / 373,
  26649. bottom: 53 / 664
  26650. }
  26651. },
  26652. sitting: {
  26653. height: math.unit(7, "feet"),
  26654. weight: math.unit(800, "lb"),
  26655. name: "Sitting",
  26656. image: {
  26657. source: "./media/characters/dusk/sitting.svg",
  26658. extra: 753 / 425,
  26659. bottom: 33 / 774
  26660. }
  26661. },
  26662. head: {
  26663. height: math.unit(6.1, "feet"),
  26664. name: "Head",
  26665. image: {
  26666. source: "./media/characters/dusk/head.svg"
  26667. }
  26668. },
  26669. },
  26670. [
  26671. {
  26672. name: "Normal",
  26673. height: math.unit(7, "feet"),
  26674. default: true
  26675. },
  26676. ]
  26677. ))
  26678. characterMakers.push(() => makeCharacter(
  26679. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26680. {
  26681. front: {
  26682. height: math.unit(15, "feet"),
  26683. weight: math.unit(7000, "lb"),
  26684. name: "Front",
  26685. image: {
  26686. source: "./media/characters/jay-direwolf/front.svg",
  26687. extra: 1810 / 1732,
  26688. bottom: 66 / 1892
  26689. }
  26690. },
  26691. },
  26692. [
  26693. {
  26694. name: "Normal",
  26695. height: math.unit(15, "feet"),
  26696. default: true
  26697. },
  26698. ]
  26699. ))
  26700. characterMakers.push(() => makeCharacter(
  26701. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26702. {
  26703. front: {
  26704. height: math.unit(4 + 9 / 12, "feet"),
  26705. weight: math.unit(130, "lb"),
  26706. name: "Front",
  26707. image: {
  26708. source: "./media/characters/anchovie/front.svg",
  26709. extra: 382 / 350,
  26710. bottom: 25 / 409
  26711. }
  26712. },
  26713. back: {
  26714. height: math.unit(4 + 9 / 12, "feet"),
  26715. weight: math.unit(130, "lb"),
  26716. name: "Back",
  26717. image: {
  26718. source: "./media/characters/anchovie/back.svg",
  26719. extra: 385 / 352,
  26720. bottom: 16.6 / 402
  26721. }
  26722. },
  26723. frontDressed: {
  26724. height: math.unit(4 + 9 / 12, "feet"),
  26725. weight: math.unit(130, "lb"),
  26726. name: "Front (Dressed)",
  26727. image: {
  26728. source: "./media/characters/anchovie/front-dressed.svg",
  26729. extra: 382 / 350,
  26730. bottom: 25 / 409
  26731. }
  26732. },
  26733. backDressed: {
  26734. height: math.unit(4 + 9 / 12, "feet"),
  26735. weight: math.unit(130, "lb"),
  26736. name: "Back (Dressed)",
  26737. image: {
  26738. source: "./media/characters/anchovie/back-dressed.svg",
  26739. extra: 385 / 352,
  26740. bottom: 16.6 / 402
  26741. }
  26742. },
  26743. },
  26744. [
  26745. {
  26746. name: "Micro",
  26747. height: math.unit(6.4, "inches")
  26748. },
  26749. {
  26750. name: "Normal",
  26751. height: math.unit(4 + 9 / 12, "feet"),
  26752. default: true
  26753. },
  26754. ]
  26755. ))
  26756. characterMakers.push(() => makeCharacter(
  26757. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26758. {
  26759. front: {
  26760. height: math.unit(2, "meters"),
  26761. weight: math.unit(180, "lb"),
  26762. name: "Front",
  26763. image: {
  26764. source: "./media/characters/acidrenamon/front.svg",
  26765. extra: 987 / 890,
  26766. bottom: 22.8 / 1009
  26767. }
  26768. },
  26769. back: {
  26770. height: math.unit(2, "meters"),
  26771. weight: math.unit(180, "lb"),
  26772. name: "Back",
  26773. image: {
  26774. source: "./media/characters/acidrenamon/back.svg",
  26775. extra: 983 / 891,
  26776. bottom: 8.4 / 992
  26777. }
  26778. },
  26779. head: {
  26780. height: math.unit(1.92, "feet"),
  26781. name: "Head",
  26782. image: {
  26783. source: "./media/characters/acidrenamon/head.svg"
  26784. }
  26785. },
  26786. rump: {
  26787. height: math.unit(1.72, "feet"),
  26788. name: "Rump",
  26789. image: {
  26790. source: "./media/characters/acidrenamon/rump.svg"
  26791. }
  26792. },
  26793. tail: {
  26794. height: math.unit(4.2, "feet"),
  26795. name: "Tail",
  26796. image: {
  26797. source: "./media/characters/acidrenamon/tail.svg"
  26798. }
  26799. },
  26800. },
  26801. [
  26802. {
  26803. name: "Normal",
  26804. height: math.unit(2, "meters"),
  26805. default: true
  26806. },
  26807. {
  26808. name: "Minimacro",
  26809. height: math.unit(7, "meters")
  26810. },
  26811. {
  26812. name: "Macro",
  26813. height: math.unit(200, "meters")
  26814. },
  26815. {
  26816. name: "Gigamacro",
  26817. height: math.unit(0.2, "earths")
  26818. },
  26819. ]
  26820. ))
  26821. characterMakers.push(() => makeCharacter(
  26822. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26823. {
  26824. front: {
  26825. height: math.unit(6, "feet"),
  26826. weight: math.unit(150, "lb"),
  26827. name: "Front",
  26828. image: {
  26829. source: "./media/characters/kenzie-lee/front.svg",
  26830. extra: 1525 / 1465,
  26831. bottom: 45 / 1570
  26832. }
  26833. },
  26834. side: {
  26835. height: math.unit(6, "feet"),
  26836. weight: math.unit(150, "lb"),
  26837. name: "Side",
  26838. image: {
  26839. source: "./media/characters/kenzie-lee/side.svg",
  26840. extra: 5505 / 5383,
  26841. bottom: 60 / 5573
  26842. }
  26843. },
  26844. paw: {
  26845. height: math.unit(0.57, "feet"),
  26846. name: "Paw",
  26847. image: {
  26848. source: "./media/characters/kenzie-lee/paw.svg"
  26849. }
  26850. },
  26851. },
  26852. [
  26853. {
  26854. name: "Normal",
  26855. height: math.unit(152, "feet"),
  26856. default: true
  26857. },
  26858. {
  26859. name: "Megamacro",
  26860. height: math.unit(7, "miles")
  26861. },
  26862. {
  26863. name: "Gigamacro",
  26864. height: math.unit(8000, "miles")
  26865. },
  26866. ]
  26867. ))
  26868. characterMakers.push(() => makeCharacter(
  26869. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26870. {
  26871. side: {
  26872. height: math.unit(6, "feet"),
  26873. weight: math.unit(150, "lb"),
  26874. name: "Side",
  26875. image: {
  26876. source: "./media/characters/withers/side.svg",
  26877. extra: 1830 / 1728,
  26878. bottom: 96 / 1927
  26879. }
  26880. },
  26881. front: {
  26882. height: math.unit(6, "feet"),
  26883. weight: math.unit(150, "lb"),
  26884. name: "Front",
  26885. image: {
  26886. source: "./media/characters/withers/front.svg",
  26887. extra: 1514 / 1438,
  26888. bottom: 118 / 1632
  26889. }
  26890. },
  26891. },
  26892. [
  26893. {
  26894. name: "Macro",
  26895. height: math.unit(168, "feet"),
  26896. default: true
  26897. },
  26898. {
  26899. name: "Megamacro",
  26900. height: math.unit(15, "miles")
  26901. }
  26902. ]
  26903. ))
  26904. characterMakers.push(() => makeCharacter(
  26905. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26906. {
  26907. front: {
  26908. height: math.unit(6 + 7 / 12, "feet"),
  26909. weight: math.unit(250, "lb"),
  26910. name: "Front",
  26911. image: {
  26912. source: "./media/characters/nemoskii/front.svg",
  26913. extra: 2270 / 1734,
  26914. bottom: 86 / 2354
  26915. }
  26916. },
  26917. back: {
  26918. height: math.unit(6 + 7 / 12, "feet"),
  26919. weight: math.unit(250, "lb"),
  26920. name: "Back",
  26921. image: {
  26922. source: "./media/characters/nemoskii/back.svg",
  26923. extra: 1845 / 1788,
  26924. bottom: 10.5 / 1852
  26925. }
  26926. },
  26927. head: {
  26928. height: math.unit(1.31, "feet"),
  26929. name: "Head",
  26930. image: {
  26931. source: "./media/characters/nemoskii/head.svg"
  26932. }
  26933. },
  26934. },
  26935. [
  26936. {
  26937. name: "Micro",
  26938. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  26939. },
  26940. {
  26941. name: "Normal",
  26942. height: math.unit(6 + 7 / 12, "feet"),
  26943. default: true
  26944. },
  26945. {
  26946. name: "Macro",
  26947. height: math.unit((6 + 7 / 12) * 150, "feet")
  26948. },
  26949. {
  26950. name: "Macro+",
  26951. height: math.unit((6 + 7 / 12) * 500, "feet")
  26952. },
  26953. {
  26954. name: "Megamacro",
  26955. height: math.unit((6 + 7 / 12) * 100000, "feet")
  26956. },
  26957. ]
  26958. ))
  26959. characterMakers.push(() => makeCharacter(
  26960. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  26961. {
  26962. front: {
  26963. height: math.unit(1, "mile"),
  26964. weight: math.unit(265261.9, "lb"),
  26965. name: "Front",
  26966. image: {
  26967. source: "./media/characters/shui/front.svg",
  26968. extra: 1633 / 1564,
  26969. bottom: 91.5 / 1726
  26970. }
  26971. },
  26972. },
  26973. [
  26974. {
  26975. name: "Macro",
  26976. height: math.unit(1, "mile"),
  26977. default: true
  26978. },
  26979. ]
  26980. ))
  26981. characterMakers.push(() => makeCharacter(
  26982. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  26983. {
  26984. front: {
  26985. height: math.unit(12 + 6 / 12, "feet"),
  26986. weight: math.unit(1342, "lb"),
  26987. name: "Front",
  26988. image: {
  26989. source: "./media/characters/arokh-takakura/front.svg",
  26990. extra: 1089 / 1043,
  26991. bottom: 77.4 / 1176.7
  26992. }
  26993. },
  26994. back: {
  26995. height: math.unit(12 + 6 / 12, "feet"),
  26996. weight: math.unit(1342, "lb"),
  26997. name: "Back",
  26998. image: {
  26999. source: "./media/characters/arokh-takakura/back.svg",
  27000. extra: 1046 / 1019,
  27001. bottom: 102 / 1150
  27002. }
  27003. },
  27004. },
  27005. [
  27006. {
  27007. name: "Big",
  27008. height: math.unit(12 + 6 / 12, "feet"),
  27009. default: true
  27010. },
  27011. ]
  27012. ))
  27013. characterMakers.push(() => makeCharacter(
  27014. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27015. {
  27016. front: {
  27017. height: math.unit(5 + 6 / 12, "feet"),
  27018. weight: math.unit(150, "lb"),
  27019. name: "Front",
  27020. image: {
  27021. source: "./media/characters/theo/front.svg",
  27022. extra: 1184 / 1131,
  27023. bottom: 7.4 / 1191
  27024. }
  27025. },
  27026. },
  27027. [
  27028. {
  27029. name: "Micro",
  27030. height: math.unit(5, "inches")
  27031. },
  27032. {
  27033. name: "Normal",
  27034. height: math.unit(5 + 6 / 12, "feet"),
  27035. default: true
  27036. },
  27037. ]
  27038. ))
  27039. characterMakers.push(() => makeCharacter(
  27040. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27041. {
  27042. front: {
  27043. height: math.unit(5 + 9 / 12, "feet"),
  27044. weight: math.unit(130, "lb"),
  27045. name: "Front",
  27046. image: {
  27047. source: "./media/characters/cecelia-swift/front.svg",
  27048. extra: 502 / 484,
  27049. bottom: 23 / 523
  27050. }
  27051. },
  27052. back: {
  27053. height: math.unit(5 + 9 / 12, "feet"),
  27054. weight: math.unit(130, "lb"),
  27055. name: "Back",
  27056. image: {
  27057. source: "./media/characters/cecelia-swift/back.svg",
  27058. extra: 499 / 485,
  27059. bottom: 12 / 511
  27060. }
  27061. },
  27062. head: {
  27063. height: math.unit(0.90, "feet"),
  27064. name: "Head",
  27065. image: {
  27066. source: "./media/characters/cecelia-swift/head.svg"
  27067. }
  27068. },
  27069. rump: {
  27070. height: math.unit(1.75, "feet"),
  27071. name: "Rump",
  27072. image: {
  27073. source: "./media/characters/cecelia-swift/rump.svg"
  27074. }
  27075. },
  27076. },
  27077. [
  27078. {
  27079. name: "Normal",
  27080. height: math.unit(5 + 9 / 12, "feet"),
  27081. default: true
  27082. },
  27083. {
  27084. name: "Big",
  27085. height: math.unit(50, "feet")
  27086. },
  27087. {
  27088. name: "Macro",
  27089. height: math.unit(100, "feet")
  27090. },
  27091. {
  27092. name: "Macro+",
  27093. height: math.unit(500, "feet")
  27094. },
  27095. {
  27096. name: "Macro++",
  27097. height: math.unit(1000, "feet")
  27098. },
  27099. ]
  27100. ))
  27101. characterMakers.push(() => makeCharacter(
  27102. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27103. {
  27104. front: {
  27105. height: math.unit(6, "feet"),
  27106. weight: math.unit(150, "lb"),
  27107. name: "Front",
  27108. image: {
  27109. source: "./media/characters/kaunan/front.svg",
  27110. extra: 2890 / 2523,
  27111. bottom: 49 / 2939
  27112. }
  27113. },
  27114. },
  27115. [
  27116. {
  27117. name: "Macro",
  27118. height: math.unit(150, "feet"),
  27119. default: true
  27120. },
  27121. ]
  27122. ))
  27123. characterMakers.push(() => makeCharacter(
  27124. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27125. {
  27126. front: {
  27127. height: math.unit(175, "cm"),
  27128. weight: math.unit(60, "kg"),
  27129. name: "Front",
  27130. image: {
  27131. source: "./media/characters/fei/front.svg",
  27132. extra: 2581 / 2400,
  27133. bottom: 82.2 / 2663
  27134. }
  27135. },
  27136. },
  27137. [
  27138. {
  27139. name: "Mortal",
  27140. height: math.unit(175, "cm")
  27141. },
  27142. {
  27143. name: "Normal",
  27144. height: math.unit(3500, "m"),
  27145. default: true
  27146. },
  27147. {
  27148. name: "Stroll",
  27149. height: math.unit(17.5, "km")
  27150. },
  27151. {
  27152. name: "Showoff",
  27153. height: math.unit(175, "km")
  27154. },
  27155. ]
  27156. ))
  27157. characterMakers.push(() => makeCharacter(
  27158. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27159. {
  27160. front: {
  27161. height: math.unit(7, "feet"),
  27162. weight: math.unit(1000, "kg"),
  27163. name: "Front",
  27164. image: {
  27165. source: "./media/characters/edrax/front.svg",
  27166. extra: 2838 / 2550,
  27167. bottom: 130 / 2968
  27168. }
  27169. },
  27170. },
  27171. [
  27172. {
  27173. name: "Small",
  27174. height: math.unit(7, "feet")
  27175. },
  27176. {
  27177. name: "Normal",
  27178. height: math.unit(1500, "meters")
  27179. },
  27180. {
  27181. name: "Mega",
  27182. height: math.unit(12000000, "km"),
  27183. default: true
  27184. },
  27185. {
  27186. name: "Megamacro",
  27187. height: math.unit(10600000, "lightyears")
  27188. },
  27189. {
  27190. name: "Hypermacro",
  27191. height: math.unit(256, "yottameters")
  27192. },
  27193. ]
  27194. ))
  27195. characterMakers.push(() => makeCharacter(
  27196. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27197. {
  27198. front: {
  27199. height: math.unit(10, "feet"),
  27200. weight: math.unit(750, "lb"),
  27201. name: "Front",
  27202. image: {
  27203. source: "./media/characters/clove/front.svg",
  27204. extra: 2031 / 1860,
  27205. bottom: 47.8 / 2080
  27206. }
  27207. },
  27208. back: {
  27209. height: math.unit(10, "feet"),
  27210. weight: math.unit(750, "lb"),
  27211. name: "Back",
  27212. image: {
  27213. source: "./media/characters/clove/back.svg",
  27214. extra: 2025 / 1859,
  27215. bottom: 46 / 2071
  27216. }
  27217. },
  27218. },
  27219. [
  27220. {
  27221. name: "Normal",
  27222. height: math.unit(10, "feet"),
  27223. default: true
  27224. },
  27225. ]
  27226. ))
  27227. characterMakers.push(() => makeCharacter(
  27228. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27229. {
  27230. front: {
  27231. height: math.unit(4, "feet"),
  27232. weight: math.unit(50, "lb"),
  27233. name: "Front",
  27234. image: {
  27235. source: "./media/characters/alex-rabbit/front.svg",
  27236. extra: 507 / 458,
  27237. bottom: 18.5 / 527
  27238. }
  27239. },
  27240. back: {
  27241. height: math.unit(4, "feet"),
  27242. weight: math.unit(50, "lb"),
  27243. name: "Back",
  27244. image: {
  27245. source: "./media/characters/alex-rabbit/back.svg",
  27246. extra: 502 / 460,
  27247. bottom: 18.9 / 521
  27248. }
  27249. },
  27250. },
  27251. [
  27252. {
  27253. name: "Normal",
  27254. height: math.unit(4, "feet"),
  27255. default: true
  27256. },
  27257. ]
  27258. ))
  27259. characterMakers.push(() => makeCharacter(
  27260. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27261. {
  27262. front: {
  27263. height: math.unit(1 + 3 / 12, "feet"),
  27264. weight: math.unit(80, "lb"),
  27265. name: "Front",
  27266. image: {
  27267. source: "./media/characters/zander-rose/front.svg",
  27268. extra: 916 / 797,
  27269. bottom: 17 / 933
  27270. }
  27271. },
  27272. back: {
  27273. height: math.unit(1 + 3 / 12, "feet"),
  27274. weight: math.unit(80, "lb"),
  27275. name: "Back",
  27276. image: {
  27277. source: "./media/characters/zander-rose/back.svg",
  27278. extra: 903 / 779,
  27279. bottom: 31 / 934
  27280. }
  27281. },
  27282. },
  27283. [
  27284. {
  27285. name: "Normal",
  27286. height: math.unit(1 + 3 / 12, "feet"),
  27287. default: true
  27288. },
  27289. ]
  27290. ))
  27291. characterMakers.push(() => makeCharacter(
  27292. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27293. {
  27294. anthro: {
  27295. height: math.unit(6, "feet"),
  27296. weight: math.unit(150, "lb"),
  27297. name: "Anthro",
  27298. image: {
  27299. source: "./media/characters/razz/anthro.svg",
  27300. extra: 1437 / 1343,
  27301. bottom: 48 / 1485
  27302. }
  27303. },
  27304. feral: {
  27305. height: math.unit(6, "feet"),
  27306. weight: math.unit(150, "lb"),
  27307. name: "Feral",
  27308. image: {
  27309. source: "./media/characters/razz/feral.svg",
  27310. extra: 2569 / 1385,
  27311. bottom: 95 / 2664
  27312. }
  27313. },
  27314. },
  27315. [
  27316. {
  27317. name: "Normal",
  27318. height: math.unit(6, "feet"),
  27319. default: true
  27320. },
  27321. ]
  27322. ))
  27323. characterMakers.push(() => makeCharacter(
  27324. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27325. {
  27326. front: {
  27327. height: math.unit(9 + 4 / 12, "feet"),
  27328. weight: math.unit(500, "lb"),
  27329. name: "Front",
  27330. image: {
  27331. source: "./media/characters/morrigan/front.svg",
  27332. extra: 2707 / 2579,
  27333. bottom: 156 / 2863
  27334. }
  27335. },
  27336. },
  27337. [
  27338. {
  27339. name: "Normal",
  27340. height: math.unit(9 + 4 / 12, "feet"),
  27341. default: true
  27342. },
  27343. ]
  27344. ))
  27345. characterMakers.push(() => makeCharacter(
  27346. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27347. {
  27348. front: {
  27349. height: math.unit(5, "stories"),
  27350. weight: math.unit(4000, "lb"),
  27351. name: "Front",
  27352. image: {
  27353. source: "./media/characters/jenene/front.svg",
  27354. extra: 1780 / 1710,
  27355. bottom: 57 / 1837
  27356. }
  27357. },
  27358. },
  27359. [
  27360. {
  27361. name: "Normal",
  27362. height: math.unit(5, "stories"),
  27363. default: true
  27364. },
  27365. ]
  27366. ))
  27367. characterMakers.push(() => makeCharacter(
  27368. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27369. {
  27370. front: {
  27371. height: math.unit(6, "feet"),
  27372. weight: math.unit(150, "lb"),
  27373. name: "Front",
  27374. image: {
  27375. source: "./media/characters/vix-archaser/front.svg",
  27376. extra: 2767 / 2562,
  27377. bottom: 36 / 2803
  27378. }
  27379. },
  27380. },
  27381. [
  27382. {
  27383. name: "Micro",
  27384. height: math.unit(1, "foot")
  27385. },
  27386. {
  27387. name: "Normal",
  27388. height: math.unit(6 + 5 / 12, "feet")
  27389. },
  27390. {
  27391. name: "Minimacro",
  27392. height: math.unit(500, "feet")
  27393. },
  27394. {
  27395. name: "Macro",
  27396. height: math.unit(4, "miles")
  27397. },
  27398. {
  27399. name: "Megamacro",
  27400. height: math.unit(250, "miles"),
  27401. default: true
  27402. },
  27403. {
  27404. name: "Gigamacro",
  27405. height: math.unit(1, "universe")
  27406. },
  27407. {
  27408. name: "Endgame",
  27409. height: math.unit(100, "multiverses")
  27410. }
  27411. ]
  27412. ))
  27413. characterMakers.push(() => makeCharacter(
  27414. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27415. {
  27416. taurSfw: {
  27417. height: math.unit(10, "meters"),
  27418. weight: math.unit(17500, "kg"),
  27419. name: "Taur",
  27420. image: {
  27421. source: "./media/characters/faey/taur-sfw.svg",
  27422. extra: 1200 / 968,
  27423. bottom: 41 / 1241
  27424. }
  27425. },
  27426. chestmaw: {
  27427. height: math.unit(2.01, "meters"),
  27428. name: "Chestmaw",
  27429. image: {
  27430. source: "./media/characters/faey/chestmaw.svg"
  27431. }
  27432. },
  27433. foot: {
  27434. height: math.unit(2.43, "meters"),
  27435. name: "Foot",
  27436. image: {
  27437. source: "./media/characters/faey/foot.svg"
  27438. }
  27439. },
  27440. jaws: {
  27441. height: math.unit(1.66, "meters"),
  27442. name: "Jaws",
  27443. image: {
  27444. source: "./media/characters/faey/jaws.svg"
  27445. }
  27446. },
  27447. tongues: {
  27448. height: math.unit(2.01, "meters"),
  27449. name: "Tongues",
  27450. image: {
  27451. source: "./media/characters/faey/tongues.svg"
  27452. }
  27453. },
  27454. },
  27455. [
  27456. {
  27457. name: "Small",
  27458. height: math.unit(10, "meters"),
  27459. default: true
  27460. },
  27461. {
  27462. name: "Big",
  27463. height: math.unit(500000, "km")
  27464. },
  27465. ]
  27466. ))
  27467. characterMakers.push(() => makeCharacter(
  27468. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27469. {
  27470. front: {
  27471. height: math.unit(7, "feet"),
  27472. weight: math.unit(275, "lb"),
  27473. name: "Front",
  27474. image: {
  27475. source: "./media/characters/roku/front.svg",
  27476. extra: 903 / 878,
  27477. bottom: 37 / 940
  27478. }
  27479. },
  27480. },
  27481. [
  27482. {
  27483. name: "Normal",
  27484. height: math.unit(7, "feet"),
  27485. default: true
  27486. },
  27487. {
  27488. name: "Macro",
  27489. height: math.unit(500, "feet")
  27490. },
  27491. {
  27492. name: "Megamacro",
  27493. height: math.unit(200, "miles")
  27494. },
  27495. ]
  27496. ))
  27497. characterMakers.push(() => makeCharacter(
  27498. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27499. {
  27500. front: {
  27501. height: math.unit(6 + 2 / 12, "feet"),
  27502. weight: math.unit(150, "lb"),
  27503. name: "Front",
  27504. image: {
  27505. source: "./media/characters/lira/front.svg",
  27506. extra: 1727 / 1605,
  27507. bottom: 26 / 1753
  27508. }
  27509. },
  27510. back: {
  27511. height: math.unit(6 + 2 / 12, "feet"),
  27512. weight: math.unit(150, "lb"),
  27513. name: "Back",
  27514. image: {
  27515. source: "./media/characters/lira/back.svg",
  27516. extra: 1713 / 159,
  27517. bottom: 20 / 1733
  27518. }
  27519. },
  27520. hand: {
  27521. height: math.unit(0.75, "feet"),
  27522. name: "Hand",
  27523. image: {
  27524. source: "./media/characters/lira/hand.svg"
  27525. }
  27526. },
  27527. maw: {
  27528. height: math.unit(0.65, "feet"),
  27529. name: "Maw",
  27530. image: {
  27531. source: "./media/characters/lira/maw.svg"
  27532. }
  27533. },
  27534. pawDigi: {
  27535. height: math.unit(1.6, "feet"),
  27536. name: "Paw Digi",
  27537. image: {
  27538. source: "./media/characters/lira/paw-digi.svg"
  27539. }
  27540. },
  27541. pawPlanti: {
  27542. height: math.unit(1.4, "feet"),
  27543. name: "Paw Planti",
  27544. image: {
  27545. source: "./media/characters/lira/paw-planti.svg"
  27546. }
  27547. },
  27548. },
  27549. [
  27550. {
  27551. name: "Normal",
  27552. height: math.unit(6 + 2 / 12, "feet"),
  27553. default: true
  27554. },
  27555. {
  27556. name: "Macro",
  27557. height: math.unit(100, "feet")
  27558. },
  27559. {
  27560. name: "Macro²",
  27561. height: math.unit(1600, "feet")
  27562. },
  27563. {
  27564. name: "Planetary",
  27565. height: math.unit(20, "earths")
  27566. },
  27567. ]
  27568. ))
  27569. characterMakers.push(() => makeCharacter(
  27570. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27571. {
  27572. front: {
  27573. height: math.unit(6, "feet"),
  27574. weight: math.unit(150, "lb"),
  27575. name: "Front",
  27576. image: {
  27577. source: "./media/characters/hadjet/front.svg",
  27578. extra: 1480 / 1346,
  27579. bottom: 26 / 1506
  27580. }
  27581. },
  27582. frontNsfw: {
  27583. height: math.unit(6, "feet"),
  27584. weight: math.unit(150, "lb"),
  27585. name: "Front (NSFW)",
  27586. image: {
  27587. source: "./media/characters/hadjet/front-nsfw.svg",
  27588. extra: 1440 / 1358,
  27589. bottom: 52 / 1492
  27590. }
  27591. },
  27592. },
  27593. [
  27594. {
  27595. name: "Macro",
  27596. height: math.unit(10, "stories"),
  27597. default: true
  27598. },
  27599. {
  27600. name: "Megamacro",
  27601. height: math.unit(1.5, "miles")
  27602. },
  27603. {
  27604. name: "Megamacro+",
  27605. height: math.unit(5, "miles")
  27606. },
  27607. ]
  27608. ))
  27609. characterMakers.push(() => makeCharacter(
  27610. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27611. {
  27612. side: {
  27613. height: math.unit(106, "feet"),
  27614. weight: math.unit(500, "tonnes"),
  27615. name: "Side",
  27616. image: {
  27617. source: "./media/characters/kodran/side.svg",
  27618. extra: 553 / 480,
  27619. bottom: 33 / 586
  27620. }
  27621. },
  27622. front: {
  27623. height: math.unit(132, "feet"),
  27624. weight: math.unit(500, "tonnes"),
  27625. name: "Front",
  27626. image: {
  27627. source: "./media/characters/kodran/front.svg",
  27628. extra: 667 / 643,
  27629. bottom: 42 / 709
  27630. }
  27631. },
  27632. flying: {
  27633. height: math.unit(350, "feet"),
  27634. weight: math.unit(500, "tonnes"),
  27635. name: "Flying",
  27636. image: {
  27637. source: "./media/characters/kodran/flying.svg"
  27638. }
  27639. },
  27640. foot: {
  27641. height: math.unit(33, "feet"),
  27642. name: "Foot",
  27643. image: {
  27644. source: "./media/characters/kodran/foot.svg"
  27645. }
  27646. },
  27647. footFront: {
  27648. height: math.unit(19, "feet"),
  27649. name: "Foot (Front)",
  27650. image: {
  27651. source: "./media/characters/kodran/foot-front.svg",
  27652. extra: 261 / 261,
  27653. bottom: 91 / 352
  27654. }
  27655. },
  27656. headFront: {
  27657. height: math.unit(53, "feet"),
  27658. name: "Head (Front)",
  27659. image: {
  27660. source: "./media/characters/kodran/head-front.svg"
  27661. }
  27662. },
  27663. headSide: {
  27664. height: math.unit(65, "feet"),
  27665. name: "Head (Side)",
  27666. image: {
  27667. source: "./media/characters/kodran/head-side.svg"
  27668. }
  27669. },
  27670. throat: {
  27671. height: math.unit(79, "feet"),
  27672. name: "Throat",
  27673. image: {
  27674. source: "./media/characters/kodran/throat.svg"
  27675. }
  27676. },
  27677. },
  27678. [
  27679. {
  27680. name: "Large",
  27681. height: math.unit(106, "feet"),
  27682. default: true
  27683. },
  27684. ]
  27685. ))
  27686. characterMakers.push(() => makeCharacter(
  27687. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27688. {
  27689. side: {
  27690. height: math.unit(11, "feet"),
  27691. weight: math.unit(150, "lb"),
  27692. name: "Side",
  27693. image: {
  27694. source: "./media/characters/pyxaron/side.svg",
  27695. extra: 305 / 195,
  27696. bottom: 17 / 322
  27697. }
  27698. },
  27699. },
  27700. [
  27701. {
  27702. name: "Normal",
  27703. height: math.unit(11, "feet"),
  27704. default: true
  27705. },
  27706. ]
  27707. ))
  27708. characterMakers.push(() => makeCharacter(
  27709. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27710. {
  27711. front: {
  27712. height: math.unit(6, "feet"),
  27713. weight: math.unit(150, "lb"),
  27714. name: "Front",
  27715. image: {
  27716. source: "./media/characters/meep/front.svg",
  27717. extra: 88 / 80,
  27718. bottom: 6 / 94
  27719. }
  27720. },
  27721. },
  27722. [
  27723. {
  27724. name: "Fun Sized",
  27725. height: math.unit(2, "inches"),
  27726. default: true
  27727. },
  27728. {
  27729. name: "Friend Sized",
  27730. height: math.unit(8, "inches")
  27731. },
  27732. ]
  27733. ))
  27734. characterMakers.push(() => makeCharacter(
  27735. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27736. {
  27737. front: {
  27738. height: math.unit(15, "feet"),
  27739. weight: math.unit(2500, "lb"),
  27740. name: "Front",
  27741. image: {
  27742. source: "./media/characters/holly-rabbit/front.svg",
  27743. extra: 1433 / 1233,
  27744. bottom: 125 / 1558
  27745. }
  27746. },
  27747. dick: {
  27748. height: math.unit(4.6, "feet"),
  27749. name: "Dick",
  27750. image: {
  27751. source: "./media/characters/holly-rabbit/dick.svg"
  27752. }
  27753. },
  27754. },
  27755. [
  27756. {
  27757. name: "Normal",
  27758. height: math.unit(15, "feet"),
  27759. default: true
  27760. },
  27761. {
  27762. name: "Macro",
  27763. height: math.unit(250, "feet")
  27764. },
  27765. {
  27766. name: "Macro+",
  27767. height: math.unit(2500, "feet")
  27768. },
  27769. ]
  27770. ))
  27771. characterMakers.push(() => makeCharacter(
  27772. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27773. {
  27774. front: {
  27775. height: math.unit(3.02, "meters"),
  27776. weight: math.unit(500, "kg"),
  27777. name: "Front",
  27778. image: {
  27779. source: "./media/characters/drena/front.svg",
  27780. extra: 282 / 243,
  27781. bottom: 8 / 290
  27782. }
  27783. },
  27784. side: {
  27785. height: math.unit(3.02, "meters"),
  27786. weight: math.unit(500, "kg"),
  27787. name: "Side",
  27788. image: {
  27789. source: "./media/characters/drena/side.svg",
  27790. extra: 280 / 245,
  27791. bottom: 10 / 290
  27792. }
  27793. },
  27794. back: {
  27795. height: math.unit(3.02, "meters"),
  27796. weight: math.unit(500, "kg"),
  27797. name: "Back",
  27798. image: {
  27799. source: "./media/characters/drena/back.svg",
  27800. extra: 278 / 243,
  27801. bottom: 2 / 280
  27802. }
  27803. },
  27804. foot: {
  27805. height: math.unit(0.75, "meters"),
  27806. name: "Foot",
  27807. image: {
  27808. source: "./media/characters/drena/foot.svg"
  27809. }
  27810. },
  27811. maw: {
  27812. height: math.unit(0.82, "meters"),
  27813. name: "Maw",
  27814. image: {
  27815. source: "./media/characters/drena/maw.svg"
  27816. }
  27817. },
  27818. rump: {
  27819. height: math.unit(0.93, "meters"),
  27820. name: "Rump",
  27821. image: {
  27822. source: "./media/characters/drena/rump.svg"
  27823. }
  27824. },
  27825. },
  27826. [
  27827. {
  27828. name: "Normal",
  27829. height: math.unit(3.02, "meters"),
  27830. default: true
  27831. },
  27832. ]
  27833. ))
  27834. characterMakers.push(() => makeCharacter(
  27835. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27836. {
  27837. front: {
  27838. height: math.unit(6 + 4 / 12, "feet"),
  27839. weight: math.unit(250, "lb"),
  27840. name: "Front",
  27841. image: {
  27842. source: "./media/characters/remmyzilla/front.svg",
  27843. extra: 4033 / 3588,
  27844. bottom: 123 / 4156
  27845. }
  27846. },
  27847. back: {
  27848. height: math.unit(6 + 4 / 12, "feet"),
  27849. weight: math.unit(250, "lb"),
  27850. name: "Back",
  27851. image: {
  27852. source: "./media/characters/remmyzilla/back.svg",
  27853. extra: 2687 / 2555,
  27854. bottom: 48 / 2735
  27855. }
  27856. },
  27857. frontFancy: {
  27858. height: math.unit(6 + 4 / 12, "feet"),
  27859. weight: math.unit(250, "lb"),
  27860. name: "Front (Fancy)",
  27861. image: {
  27862. source: "./media/characters/remmyzilla/front-fancy.svg",
  27863. extra: 4119 / 3419,
  27864. bottom: 237 / 4356
  27865. }
  27866. },
  27867. paw: {
  27868. height: math.unit(1.73, "feet"),
  27869. name: "Paw",
  27870. image: {
  27871. source: "./media/characters/remmyzilla/paw.svg"
  27872. }
  27873. },
  27874. maw: {
  27875. height: math.unit(1.73, "feet"),
  27876. name: "Maw",
  27877. image: {
  27878. source: "./media/characters/remmyzilla/maw.svg"
  27879. }
  27880. },
  27881. },
  27882. [
  27883. {
  27884. name: "Normal",
  27885. height: math.unit(6 + 4 / 12, "feet")
  27886. },
  27887. {
  27888. name: "Minimacro",
  27889. height: math.unit(12 + 8 / 12, "feet")
  27890. },
  27891. {
  27892. name: "Normal",
  27893. height: math.unit(640, "feet"),
  27894. default: true
  27895. },
  27896. {
  27897. name: "Megamacro",
  27898. height: math.unit(6400, "feet")
  27899. },
  27900. {
  27901. name: "Gigamacro",
  27902. height: math.unit(64000, "miles")
  27903. },
  27904. ]
  27905. ))
  27906. characterMakers.push(() => makeCharacter(
  27907. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  27908. {
  27909. front: {
  27910. height: math.unit(2.5, "meters"),
  27911. weight: math.unit(300, "lb"),
  27912. name: "Front",
  27913. image: {
  27914. source: "./media/characters/lawrence/front.svg",
  27915. extra: 357 / 335,
  27916. bottom: 30 / 387
  27917. }
  27918. },
  27919. back: {
  27920. height: math.unit(2.5, "meters"),
  27921. weight: math.unit(300, "lb"),
  27922. name: "Back",
  27923. image: {
  27924. source: "./media/characters/lawrence/back.svg",
  27925. extra: 357 / 338,
  27926. bottom: 16 / 373
  27927. }
  27928. },
  27929. head: {
  27930. height: math.unit(0.9, "meter"),
  27931. name: "Head",
  27932. image: {
  27933. source: "./media/characters/lawrence/head.svg"
  27934. }
  27935. },
  27936. maw: {
  27937. height: math.unit(0.7, "meter"),
  27938. name: "Maw",
  27939. image: {
  27940. source: "./media/characters/lawrence/maw.svg"
  27941. }
  27942. },
  27943. footBottom: {
  27944. height: math.unit(0.5, "meter"),
  27945. name: "Foot (Bottom)",
  27946. image: {
  27947. source: "./media/characters/lawrence/foot-bottom.svg"
  27948. }
  27949. },
  27950. footTop: {
  27951. height: math.unit(0.5, "meter"),
  27952. name: "Foot (Top)",
  27953. image: {
  27954. source: "./media/characters/lawrence/foot-top.svg"
  27955. }
  27956. },
  27957. },
  27958. [
  27959. {
  27960. name: "Normal",
  27961. height: math.unit(2.5, "meters"),
  27962. default: true
  27963. },
  27964. {
  27965. name: "Macro",
  27966. height: math.unit(95, "meters")
  27967. },
  27968. {
  27969. name: "Megamacro",
  27970. height: math.unit(150, "km")
  27971. },
  27972. ]
  27973. ))
  27974. characterMakers.push(() => makeCharacter(
  27975. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  27976. {
  27977. front: {
  27978. height: math.unit(4.2, "meters"),
  27979. name: "Front",
  27980. image: {
  27981. source: "./media/characters/sydney/front.svg",
  27982. extra: 1323 / 1277,
  27983. bottom: 111 / 1434
  27984. }
  27985. },
  27986. },
  27987. [
  27988. {
  27989. name: "Normal",
  27990. height: math.unit(4.2, "meters"),
  27991. default: true
  27992. },
  27993. ]
  27994. ))
  27995. characterMakers.push(() => makeCharacter(
  27996. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  27997. {
  27998. back: {
  27999. height: math.unit(201, "feet"),
  28000. name: "Back",
  28001. image: {
  28002. source: "./media/characters/jessica/back.svg",
  28003. extra: 273 / 259,
  28004. bottom: 7 / 280
  28005. }
  28006. },
  28007. },
  28008. [
  28009. {
  28010. name: "Normal",
  28011. height: math.unit(201, "feet"),
  28012. default: true
  28013. },
  28014. {
  28015. name: "Megamacro",
  28016. height: math.unit(8, "miles")
  28017. },
  28018. ]
  28019. ))
  28020. characterMakers.push(() => makeCharacter(
  28021. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28022. {
  28023. side: {
  28024. height: math.unit(320, "cm"),
  28025. name: "Side",
  28026. image: {
  28027. source: "./media/characters/victoria/side.svg",
  28028. extra: 778 / 346,
  28029. bottom: 56 / 834
  28030. }
  28031. },
  28032. maw: {
  28033. height: math.unit(5.9, "feet"),
  28034. name: "Maw",
  28035. image: {
  28036. source: "./media/characters/victoria/maw.svg"
  28037. }
  28038. },
  28039. },
  28040. [
  28041. {
  28042. name: "Normal",
  28043. height: math.unit(320, "cm"),
  28044. default: true
  28045. },
  28046. ]
  28047. ))
  28048. characterMakers.push(() => makeCharacter(
  28049. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28050. {
  28051. front: {
  28052. height: math.unit(5 + 6 / 12, "feet"),
  28053. name: "Front",
  28054. image: {
  28055. source: "./media/characters/cat/front.svg",
  28056. extra: 1374 / 1257,
  28057. bottom: 59 / 1433
  28058. }
  28059. },
  28060. back: {
  28061. height: math.unit(5 + 6 / 12, "feet"),
  28062. name: "Back",
  28063. image: {
  28064. source: "./media/characters/cat/back.svg",
  28065. extra: 1337 / 1226,
  28066. bottom: 34 / 1371
  28067. }
  28068. },
  28069. taur: {
  28070. height: math.unit(7, "feet"),
  28071. name: "Taur",
  28072. image: {
  28073. source: "./media/characters/cat/taur.svg",
  28074. extra: 1345 / 1231,
  28075. bottom: 66 / 1411
  28076. }
  28077. },
  28078. lucario: {
  28079. height: math.unit(4, "feet"),
  28080. name: "Lucario",
  28081. image: {
  28082. source: "./media/characters/cat/lucario.svg",
  28083. extra: 1470 / 1318,
  28084. bottom: 65 / 1535
  28085. }
  28086. },
  28087. megaLucario: {
  28088. height: math.unit(4, "feet"),
  28089. name: "Mega Lucario",
  28090. image: {
  28091. source: "./media/characters/cat/mega-lucario.svg",
  28092. extra: 1515 / 1319,
  28093. bottom: 63 / 1578
  28094. }
  28095. },
  28096. nickit: {
  28097. height: math.unit(2, "feet"),
  28098. name: "Nickit",
  28099. image: {
  28100. source: "./media/characters/cat/nickit.svg",
  28101. extra: 1980 / 1585,
  28102. bottom: 102 / 2082
  28103. }
  28104. },
  28105. lopunnyFront: {
  28106. height: math.unit(5, "feet"),
  28107. name: "Lopunny (Front)",
  28108. image: {
  28109. source: "./media/characters/cat/lopunny-front.svg",
  28110. extra: 1782 / 1469,
  28111. bottom: 38 / 1820
  28112. }
  28113. },
  28114. lopunnyBack: {
  28115. height: math.unit(5, "feet"),
  28116. name: "Lopunny (Back)",
  28117. image: {
  28118. source: "./media/characters/cat/lopunny-back.svg",
  28119. extra: 1660 / 1490,
  28120. bottom: 25 / 1685
  28121. }
  28122. },
  28123. },
  28124. [
  28125. {
  28126. name: "Really small",
  28127. height: math.unit(1, "nm")
  28128. },
  28129. {
  28130. name: "Micro",
  28131. height: math.unit(5, "inches")
  28132. },
  28133. {
  28134. name: "Normal",
  28135. height: math.unit(5 + 6 / 12, "feet"),
  28136. default: true
  28137. },
  28138. {
  28139. name: "Macro",
  28140. height: math.unit(50, "feet")
  28141. },
  28142. {
  28143. name: "Macro+",
  28144. height: math.unit(150, "feet")
  28145. },
  28146. {
  28147. name: "Megamacro",
  28148. height: math.unit(100, "miles")
  28149. },
  28150. ]
  28151. ))
  28152. characterMakers.push(() => makeCharacter(
  28153. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28154. {
  28155. front: {
  28156. height: math.unit(63.4, "meters"),
  28157. weight: math.unit(3.28349e+6, "kilograms"),
  28158. name: "Front",
  28159. image: {
  28160. source: "./media/characters/kirina-violet/front.svg",
  28161. extra: 2812 / 2725,
  28162. bottom: 0 / 2812
  28163. }
  28164. },
  28165. back: {
  28166. height: math.unit(63.4, "meters"),
  28167. weight: math.unit(3.28349e+6, "kilograms"),
  28168. name: "Back",
  28169. image: {
  28170. source: "./media/characters/kirina-violet/back.svg",
  28171. extra: 2812 / 2725,
  28172. bottom: 0 / 2812
  28173. }
  28174. },
  28175. mouth: {
  28176. height: math.unit(4.35, "meters"),
  28177. name: "Mouth",
  28178. image: {
  28179. source: "./media/characters/kirina-violet/mouth.svg"
  28180. }
  28181. },
  28182. paw: {
  28183. height: math.unit(5.6, "meters"),
  28184. name: "Paw",
  28185. image: {
  28186. source: "./media/characters/kirina-violet/paw.svg"
  28187. }
  28188. },
  28189. tail: {
  28190. height: math.unit(18, "meters"),
  28191. name: "Tail",
  28192. image: {
  28193. source: "./media/characters/kirina-violet/tail.svg"
  28194. }
  28195. },
  28196. },
  28197. [
  28198. {
  28199. name: "Macro",
  28200. height: math.unit(63.4, "meters"),
  28201. default: true
  28202. },
  28203. ]
  28204. ))
  28205. characterMakers.push(() => makeCharacter(
  28206. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28207. {
  28208. front: {
  28209. height: math.unit(60, "feet"),
  28210. name: "Front",
  28211. image: {
  28212. source: "./media/characters/cat-gigachu/front.svg",
  28213. extra: 1024 / 780,
  28214. bottom: 23 / 1047
  28215. }
  28216. },
  28217. back: {
  28218. height: math.unit(60, "feet"),
  28219. name: "Back",
  28220. image: {
  28221. source: "./media/characters/cat-gigachu/back.svg",
  28222. extra: 1024 / 780,
  28223. bottom: 23 / 1047
  28224. }
  28225. },
  28226. },
  28227. [
  28228. {
  28229. name: "Dynamax",
  28230. height: math.unit(60, "feet"),
  28231. default: true
  28232. },
  28233. ]
  28234. ))
  28235. characterMakers.push(() => makeCharacter(
  28236. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28237. {
  28238. front: {
  28239. height: math.unit(6, "feet"),
  28240. weight: math.unit(150, "lb"),
  28241. name: "Front",
  28242. image: {
  28243. source: "./media/characters/sfaiyan/front.svg",
  28244. extra: 999 / 978,
  28245. bottom: 5 / 1004
  28246. }
  28247. },
  28248. },
  28249. [
  28250. {
  28251. name: "Normal",
  28252. height: math.unit(1.82, "meters")
  28253. },
  28254. {
  28255. name: "Giant",
  28256. height: math.unit(2.27, "km"),
  28257. default: true
  28258. },
  28259. ]
  28260. ))
  28261. characterMakers.push(() => makeCharacter(
  28262. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28263. {
  28264. front: {
  28265. height: math.unit(179, "cm"),
  28266. weight: math.unit(100, "kg"),
  28267. name: "Front",
  28268. image: {
  28269. source: "./media/characters/raunehkeli/front.svg",
  28270. extra: 1934 / 1926,
  28271. bottom: 0 / 1934
  28272. }
  28273. },
  28274. },
  28275. [
  28276. {
  28277. name: "Normal",
  28278. height: math.unit(179, "cm")
  28279. },
  28280. {
  28281. name: "Maximum",
  28282. height: math.unit(575, "meters"),
  28283. default: true
  28284. },
  28285. ]
  28286. ))
  28287. characterMakers.push(() => makeCharacter(
  28288. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28289. {
  28290. front: {
  28291. height: math.unit(6, "feet"),
  28292. weight: math.unit(150, "lb"),
  28293. name: "Front",
  28294. image: {
  28295. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28296. extra: 2625 / 2518,
  28297. bottom: 60 / 2685
  28298. }
  28299. },
  28300. },
  28301. [
  28302. {
  28303. name: "Normal",
  28304. height: math.unit(6 + 2 / 12, "feet")
  28305. },
  28306. {
  28307. name: "Macro",
  28308. height: math.unit(1180, "feet"),
  28309. default: true
  28310. },
  28311. ]
  28312. ))
  28313. characterMakers.push(() => makeCharacter(
  28314. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28315. {
  28316. front: {
  28317. height: math.unit(5 + 6 / 12, "feet"),
  28318. weight: math.unit(108, "lb"),
  28319. name: "Front",
  28320. image: {
  28321. source: "./media/characters/lilith-zott/front.svg",
  28322. extra: 2510 / 2238,
  28323. bottom: 100 / 2610
  28324. }
  28325. },
  28326. frontDressed: {
  28327. height: math.unit(5 + 6 / 12, "feet"),
  28328. weight: math.unit(108, "lb"),
  28329. name: "Front (Dressed)",
  28330. image: {
  28331. source: "./media/characters/lilith-zott/front-dressed.svg",
  28332. extra: 2510 / 2238,
  28333. bottom: 100 / 2610
  28334. }
  28335. },
  28336. },
  28337. [
  28338. {
  28339. name: "Normal",
  28340. height: math.unit(5 + 6 / 12, "feet")
  28341. },
  28342. {
  28343. name: "Macro",
  28344. height: math.unit(1030, "feet"),
  28345. default: true
  28346. },
  28347. ]
  28348. ))
  28349. characterMakers.push(() => makeCharacter(
  28350. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28351. {
  28352. front: {
  28353. height: math.unit(6, "feet"),
  28354. weight: math.unit(150, "lb"),
  28355. name: "Front",
  28356. image: {
  28357. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28358. extra: 2567 / 2435,
  28359. bottom: 39 / 2606
  28360. }
  28361. },
  28362. frontSuper: {
  28363. height: math.unit(6, "feet"),
  28364. name: "Front (Super)",
  28365. image: {
  28366. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28367. extra: 2567 / 2435,
  28368. bottom: 39 / 2606
  28369. }
  28370. },
  28371. },
  28372. [
  28373. {
  28374. name: "Normal",
  28375. height: math.unit(5 + 10 / 12, "feet")
  28376. },
  28377. {
  28378. name: "Macro",
  28379. height: math.unit(1100, "feet"),
  28380. default: true
  28381. },
  28382. ]
  28383. ))
  28384. characterMakers.push(() => makeCharacter(
  28385. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28386. {
  28387. front: {
  28388. height: math.unit(100, "miles"),
  28389. name: "Front",
  28390. image: {
  28391. source: "./media/characters/sona/front.svg",
  28392. extra: 2433 / 2201,
  28393. bottom: 53 / 2486
  28394. }
  28395. },
  28396. foot: {
  28397. height: math.unit(16.1, "miles"),
  28398. name: "Foot",
  28399. image: {
  28400. source: "./media/characters/sona/foot.svg"
  28401. }
  28402. },
  28403. },
  28404. [
  28405. {
  28406. name: "Macro",
  28407. height: math.unit(100, "miles"),
  28408. default: true
  28409. },
  28410. ]
  28411. ))
  28412. characterMakers.push(() => makeCharacter(
  28413. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28414. {
  28415. front: {
  28416. height: math.unit(6, "feet"),
  28417. weight: math.unit(150, "lb"),
  28418. name: "Front",
  28419. image: {
  28420. source: "./media/characters/bailey/front.svg",
  28421. extra: 1778 / 1724,
  28422. bottom: 30 / 1808
  28423. }
  28424. },
  28425. },
  28426. [
  28427. {
  28428. name: "Micro",
  28429. height: math.unit(4, "inches")
  28430. },
  28431. {
  28432. name: "Normal",
  28433. height: math.unit(5 + 5 / 12, "feet"),
  28434. default: true
  28435. },
  28436. {
  28437. name: "Macro",
  28438. height: math.unit(250, "feet")
  28439. },
  28440. {
  28441. name: "Megamacro",
  28442. height: math.unit(100, "miles")
  28443. },
  28444. ]
  28445. ))
  28446. characterMakers.push(() => makeCharacter(
  28447. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28448. {
  28449. front: {
  28450. height: math.unit(5 + 2 / 12, "feet"),
  28451. weight: math.unit(120, "lb"),
  28452. name: "Front",
  28453. image: {
  28454. source: "./media/characters/snaps/front.svg",
  28455. extra: 2370 / 2177,
  28456. bottom: 48 / 2418
  28457. }
  28458. },
  28459. back: {
  28460. height: math.unit(5 + 2 / 12, "feet"),
  28461. weight: math.unit(120, "lb"),
  28462. name: "Back",
  28463. image: {
  28464. source: "./media/characters/snaps/back.svg",
  28465. extra: 2408 / 2258,
  28466. bottom: 15 / 2423
  28467. }
  28468. },
  28469. },
  28470. [
  28471. {
  28472. name: "Micro",
  28473. height: math.unit(9, "inches")
  28474. },
  28475. {
  28476. name: "Normal",
  28477. height: math.unit(5 + 2 / 12, "feet"),
  28478. default: true
  28479. },
  28480. {
  28481. name: "Mini Macro",
  28482. height: math.unit(10, "feet")
  28483. },
  28484. ]
  28485. ))
  28486. characterMakers.push(() => makeCharacter(
  28487. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28488. {
  28489. front: {
  28490. height: math.unit(1.8, "meters"),
  28491. weight: math.unit(85, "kg"),
  28492. name: "Front",
  28493. image: {
  28494. source: "./media/characters/azteck/front.svg",
  28495. extra: 2815 / 2625,
  28496. bottom: 89 / 2904
  28497. }
  28498. },
  28499. back: {
  28500. height: math.unit(1.8, "meters"),
  28501. weight: math.unit(85, "kg"),
  28502. name: "Back",
  28503. image: {
  28504. source: "./media/characters/azteck/back.svg",
  28505. extra: 2856 / 2648,
  28506. bottom: 85 / 2941
  28507. }
  28508. },
  28509. frontDressed: {
  28510. height: math.unit(1.8, "meters"),
  28511. weight: math.unit(85, "kg"),
  28512. name: "Front (Dressed)",
  28513. image: {
  28514. source: "./media/characters/azteck/front-dressed.svg",
  28515. extra: 2147 / 2003,
  28516. bottom: 68 / 2215
  28517. }
  28518. },
  28519. head: {
  28520. height: math.unit(0.47, "meters"),
  28521. weight: math.unit(85, "kg"),
  28522. name: "Head",
  28523. image: {
  28524. source: "./media/characters/azteck/head.svg"
  28525. }
  28526. },
  28527. },
  28528. [
  28529. {
  28530. name: "Bite sized",
  28531. height: math.unit(16, "cm")
  28532. },
  28533. {
  28534. name: "Normal",
  28535. height: math.unit(1.8, "meters"),
  28536. default: true
  28537. },
  28538. ]
  28539. ))
  28540. characterMakers.push(() => makeCharacter(
  28541. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28542. {
  28543. front: {
  28544. height: math.unit(6, "feet"),
  28545. weight: math.unit(150, "lb"),
  28546. name: "Front",
  28547. image: {
  28548. source: "./media/characters/pidge/front.svg",
  28549. extra: 620 / 588,
  28550. bottom: 9 / 629
  28551. }
  28552. },
  28553. back: {
  28554. height: math.unit(6, "feet"),
  28555. weight: math.unit(150, "lb"),
  28556. name: "Back",
  28557. image: {
  28558. source: "./media/characters/pidge/back.svg",
  28559. extra: 620 / 588,
  28560. bottom: 9 / 629
  28561. }
  28562. },
  28563. },
  28564. [
  28565. {
  28566. name: "Macro",
  28567. height: math.unit(1, "mile"),
  28568. default: true
  28569. },
  28570. ]
  28571. ))
  28572. characterMakers.push(() => makeCharacter(
  28573. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28574. {
  28575. front: {
  28576. height: math.unit(6, "feet"),
  28577. weight: math.unit(150, "lb"),
  28578. name: "Front",
  28579. image: {
  28580. source: "./media/characters/en/front.svg",
  28581. extra: 1697 / 1563,
  28582. bottom: 103 / 1800
  28583. }
  28584. },
  28585. back: {
  28586. height: math.unit(6, "feet"),
  28587. weight: math.unit(150, "lb"),
  28588. name: "Back",
  28589. image: {
  28590. source: "./media/characters/en/back.svg",
  28591. extra: 1700 / 1570,
  28592. bottom: 51 / 1751
  28593. }
  28594. },
  28595. frontDressed: {
  28596. height: math.unit(6, "feet"),
  28597. weight: math.unit(150, "lb"),
  28598. name: "Front (Dressed)",
  28599. image: {
  28600. source: "./media/characters/en/front-dressed.svg",
  28601. extra: 1697 / 1563,
  28602. bottom: 103 / 1800
  28603. }
  28604. },
  28605. backDressed: {
  28606. height: math.unit(6, "feet"),
  28607. weight: math.unit(150, "lb"),
  28608. name: "Back (Dressed)",
  28609. image: {
  28610. source: "./media/characters/en/back-dressed.svg",
  28611. extra: 1700 / 1570,
  28612. bottom: 51 / 1751
  28613. }
  28614. },
  28615. },
  28616. [
  28617. {
  28618. name: "Macro",
  28619. height: math.unit(210, "feet"),
  28620. default: true
  28621. },
  28622. ]
  28623. ))
  28624. characterMakers.push(() => makeCharacter(
  28625. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28626. {
  28627. front: {
  28628. height: math.unit(6, "feet"),
  28629. weight: math.unit(150, "lb"),
  28630. name: "Front",
  28631. image: {
  28632. source: "./media/characters/haze-orris/front.svg",
  28633. extra: 3975 / 3525,
  28634. bottom: 137 / 4112
  28635. }
  28636. },
  28637. },
  28638. [
  28639. {
  28640. name: "Micro",
  28641. height: math.unit(150, "mm"),
  28642. default: true
  28643. },
  28644. ]
  28645. ))
  28646. characterMakers.push(() => makeCharacter(
  28647. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28648. {
  28649. front: {
  28650. height: math.unit(6, "feet"),
  28651. weight: math.unit(150, "lb"),
  28652. name: "Front",
  28653. image: {
  28654. source: "./media/characters/casselene-yaro/front.svg",
  28655. extra: 4721 / 4541,
  28656. bottom: 82 / 4803
  28657. }
  28658. },
  28659. back: {
  28660. height: math.unit(6, "feet"),
  28661. weight: math.unit(150, "lb"),
  28662. name: "Back",
  28663. image: {
  28664. source: "./media/characters/casselene-yaro/back.svg",
  28665. extra: 4569 / 4377,
  28666. bottom: 69 / 4638
  28667. }
  28668. },
  28669. frontDressed: {
  28670. height: math.unit(6, "feet"),
  28671. weight: math.unit(150, "lb"),
  28672. name: "Front-dressed",
  28673. image: {
  28674. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28675. extra: 4721 / 4541,
  28676. bottom: 82 / 4803
  28677. }
  28678. },
  28679. },
  28680. [
  28681. {
  28682. name: "Macro",
  28683. height: math.unit(190, "feet"),
  28684. default: true
  28685. },
  28686. ]
  28687. ))
  28688. characterMakers.push(() => makeCharacter(
  28689. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28690. {
  28691. front: {
  28692. height: math.unit(6, "feet"),
  28693. weight: math.unit(150, "lb"),
  28694. name: "Front",
  28695. image: {
  28696. source: "./media/characters/myra-rue-delore/front.svg",
  28697. extra: 1340 / 1308,
  28698. bottom: 67 / 1407
  28699. }
  28700. },
  28701. back: {
  28702. height: math.unit(6, "feet"),
  28703. weight: math.unit(150, "lb"),
  28704. name: "Back",
  28705. image: {
  28706. source: "./media/characters/myra-rue-delore/back.svg",
  28707. extra: 1341 / 1310,
  28708. bottom: 40 / 1381
  28709. }
  28710. },
  28711. frontDressed: {
  28712. height: math.unit(6, "feet"),
  28713. weight: math.unit(150, "lb"),
  28714. name: "Front (Dressed)",
  28715. image: {
  28716. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28717. extra: 1340 / 1308,
  28718. bottom: 67 / 1407
  28719. }
  28720. },
  28721. },
  28722. [
  28723. {
  28724. name: "Macro",
  28725. height: math.unit(150, "feet"),
  28726. default: true
  28727. },
  28728. ]
  28729. ))
  28730. characterMakers.push(() => makeCharacter(
  28731. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28732. {
  28733. front: {
  28734. height: math.unit(10, "feet"),
  28735. weight: math.unit(15015, "lb"),
  28736. name: "Front",
  28737. image: {
  28738. source: "./media/characters/fem!plat/front.svg",
  28739. extra: 2799 / 2604,
  28740. bottom: 149 / 2948
  28741. }
  28742. },
  28743. },
  28744. [
  28745. {
  28746. name: "Normal",
  28747. height: math.unit(10, "feet"),
  28748. default: true
  28749. },
  28750. {
  28751. name: "Macro",
  28752. height: math.unit(100, "feet")
  28753. },
  28754. {
  28755. name: "Megamacro",
  28756. height: math.unit(1000, "feet")
  28757. },
  28758. ]
  28759. ))
  28760. characterMakers.push(() => makeCharacter(
  28761. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28762. {
  28763. front: {
  28764. height: math.unit(15 + 5 / 12, "feet"),
  28765. weight: math.unit(4600, "lb"),
  28766. name: "Front",
  28767. image: {
  28768. source: "./media/characters/neapolitan-ananassa/front.svg",
  28769. extra: 2903 / 2736,
  28770. bottom: 0 / 2903
  28771. }
  28772. },
  28773. side: {
  28774. height: math.unit(15 + 5 / 12, "feet"),
  28775. weight: math.unit(4600, "lb"),
  28776. name: "Side",
  28777. image: {
  28778. source: "./media/characters/neapolitan-ananassa/side.svg",
  28779. extra: 2925 / 2719,
  28780. bottom: 0 / 2925
  28781. }
  28782. },
  28783. back: {
  28784. height: math.unit(15 + 5 / 12, "feet"),
  28785. weight: math.unit(4600, "lb"),
  28786. name: "Back",
  28787. image: {
  28788. source: "./media/characters/neapolitan-ananassa/back.svg",
  28789. extra: 2903 / 2736,
  28790. bottom: 0 / 2903
  28791. }
  28792. },
  28793. },
  28794. [
  28795. {
  28796. name: "Normal",
  28797. height: math.unit(15 + 5 / 12, "feet"),
  28798. default: true
  28799. },
  28800. {
  28801. name: "Post-Millenium",
  28802. height: math.unit(35 + 5 / 12, "feet")
  28803. },
  28804. {
  28805. name: "Post-Era",
  28806. height: math.unit(450 + 5 / 12, "feet")
  28807. },
  28808. ]
  28809. ))
  28810. characterMakers.push(() => makeCharacter(
  28811. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28812. {
  28813. front: {
  28814. height: math.unit(300, "meters"),
  28815. weight: math.unit(125000, "tonnes"),
  28816. name: "Front",
  28817. image: {
  28818. source: "./media/characters/pazuzu/front.svg",
  28819. extra: 877 / 794,
  28820. bottom: 47 / 924
  28821. }
  28822. },
  28823. },
  28824. [
  28825. {
  28826. name: "Macro",
  28827. height: math.unit(300, "meters"),
  28828. default: true
  28829. },
  28830. ]
  28831. ))
  28832. characterMakers.push(() => makeCharacter(
  28833. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28834. {
  28835. side: {
  28836. height: math.unit(10 + 7 / 12, "feet"),
  28837. weight: math.unit(2.5, "tons"),
  28838. name: "Side",
  28839. image: {
  28840. source: "./media/characters/aasha/side.svg",
  28841. extra: 1345 / 1245,
  28842. bottom: 111 / 1456
  28843. }
  28844. },
  28845. back: {
  28846. height: math.unit(10 + 7 / 12, "feet"),
  28847. weight: math.unit(2.5, "tons"),
  28848. name: "Back",
  28849. image: {
  28850. source: "./media/characters/aasha/back.svg",
  28851. extra: 1133 / 1057,
  28852. bottom: 257 / 1390
  28853. }
  28854. },
  28855. },
  28856. [
  28857. {
  28858. name: "Normal",
  28859. height: math.unit(10 + 7 / 12, "feet"),
  28860. default: true
  28861. },
  28862. ]
  28863. ))
  28864. characterMakers.push(() => makeCharacter(
  28865. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  28866. {
  28867. front: {
  28868. height: math.unit(6 + 3 / 12, "feet"),
  28869. name: "Front",
  28870. image: {
  28871. source: "./media/characters/nevan/front.svg",
  28872. extra: 704 / 704,
  28873. bottom: 28 / 732
  28874. }
  28875. },
  28876. back: {
  28877. height: math.unit(6 + 3 / 12, "feet"),
  28878. name: "Back",
  28879. image: {
  28880. source: "./media/characters/nevan/back.svg",
  28881. extra: 714 / 714,
  28882. bottom: 21 / 735
  28883. }
  28884. },
  28885. frontFlaccid: {
  28886. height: math.unit(6 + 3 / 12, "feet"),
  28887. name: "Front (Flaccid)",
  28888. image: {
  28889. source: "./media/characters/nevan/front-flaccid.svg",
  28890. extra: 704 / 704,
  28891. bottom: 28 / 732
  28892. }
  28893. },
  28894. frontErect: {
  28895. height: math.unit(6 + 3 / 12, "feet"),
  28896. name: "Front (Erect)",
  28897. image: {
  28898. source: "./media/characters/nevan/front-erect.svg",
  28899. extra: 704 / 704,
  28900. bottom: 28 / 732
  28901. }
  28902. },
  28903. backFlaccid: {
  28904. height: math.unit(6 + 3 / 12, "feet"),
  28905. name: "Back (Flaccid)",
  28906. image: {
  28907. source: "./media/characters/nevan/back-flaccid.svg",
  28908. extra: 714 / 714,
  28909. bottom: 21 / 735
  28910. }
  28911. },
  28912. },
  28913. [
  28914. {
  28915. name: "Normal",
  28916. height: math.unit(6 + 3 / 12, "feet"),
  28917. default: true
  28918. },
  28919. ]
  28920. ))
  28921. characterMakers.push(() => makeCharacter(
  28922. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  28923. {
  28924. front: {
  28925. height: math.unit(4, "feet"),
  28926. name: "Front",
  28927. image: {
  28928. source: "./media/characters/arhan/front.svg",
  28929. extra: 3368 / 3133,
  28930. bottom: 0 / 3368
  28931. }
  28932. },
  28933. side: {
  28934. height: math.unit(4, "feet"),
  28935. name: "Side",
  28936. image: {
  28937. source: "./media/characters/arhan/side.svg",
  28938. extra: 3347 / 3105,
  28939. bottom: 0 / 3347
  28940. }
  28941. },
  28942. tongue: {
  28943. height: math.unit(1.42, "feet"),
  28944. name: "Tongue",
  28945. image: {
  28946. source: "./media/characters/arhan/tongue.svg"
  28947. }
  28948. },
  28949. head: {
  28950. height: math.unit(0.85, "feet"),
  28951. name: "Head",
  28952. image: {
  28953. source: "./media/characters/arhan/head.svg"
  28954. }
  28955. },
  28956. },
  28957. [
  28958. {
  28959. name: "Normal",
  28960. height: math.unit(4, "feet"),
  28961. default: true
  28962. },
  28963. ]
  28964. ))
  28965. characterMakers.push(() => makeCharacter(
  28966. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  28967. {
  28968. front: {
  28969. height: math.unit(5 + 7.5 / 12, "feet"),
  28970. weight: math.unit(120, "lb"),
  28971. name: "Front",
  28972. image: {
  28973. source: "./media/characters/digi-duncan/front.svg",
  28974. extra: 330 / 326,
  28975. bottom: 16 / 346
  28976. }
  28977. },
  28978. side: {
  28979. height: math.unit(5 + 7.5 / 12, "feet"),
  28980. weight: math.unit(120, "lb"),
  28981. name: "Side",
  28982. image: {
  28983. source: "./media/characters/digi-duncan/side.svg",
  28984. extra: 341 / 337,
  28985. bottom: 1 / 342
  28986. }
  28987. },
  28988. back: {
  28989. height: math.unit(5 + 7.5 / 12, "feet"),
  28990. weight: math.unit(120, "lb"),
  28991. name: "Back",
  28992. image: {
  28993. source: "./media/characters/digi-duncan/back.svg",
  28994. extra: 330 / 326,
  28995. bottom: 12 / 342
  28996. }
  28997. },
  28998. },
  28999. [
  29000. {
  29001. name: "Speck",
  29002. height: math.unit(0.25, "mm")
  29003. },
  29004. {
  29005. name: "Micro",
  29006. height: math.unit(5, "mm")
  29007. },
  29008. {
  29009. name: "Tiny",
  29010. height: math.unit(0.5, "inches"),
  29011. default: true
  29012. },
  29013. {
  29014. name: "Human",
  29015. height: math.unit(5 + 7.5 / 12, "feet")
  29016. },
  29017. {
  29018. name: "Minigiant",
  29019. height: math.unit(8 + 5.25, "feet")
  29020. },
  29021. {
  29022. name: "Giant",
  29023. height: math.unit(2000, "feet")
  29024. },
  29025. {
  29026. name: "Mega",
  29027. height: math.unit(371.1, "miles")
  29028. },
  29029. ]
  29030. ))
  29031. characterMakers.push(() => makeCharacter(
  29032. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29033. {
  29034. front: {
  29035. height: math.unit(2, "meters"),
  29036. weight: math.unit(350, "kg"),
  29037. name: "Front",
  29038. image: {
  29039. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29040. extra: 898 / 838,
  29041. bottom: 9 / 907
  29042. }
  29043. },
  29044. },
  29045. [
  29046. {
  29047. name: "Micro",
  29048. height: math.unit(8, "meters")
  29049. },
  29050. {
  29051. name: "Normal",
  29052. height: math.unit(50, "meters"),
  29053. default: true
  29054. },
  29055. {
  29056. name: "Macro",
  29057. height: math.unit(500, "meters")
  29058. },
  29059. ]
  29060. ))
  29061. characterMakers.push(() => makeCharacter(
  29062. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29063. {
  29064. front: {
  29065. height: math.unit(6 + 6 / 12, "feet"),
  29066. name: "Front",
  29067. image: {
  29068. source: "./media/characters/khardesh/front.svg",
  29069. extra: 888 / 797,
  29070. bottom: 25 / 913
  29071. }
  29072. },
  29073. },
  29074. [
  29075. {
  29076. name: "Normal",
  29077. height: math.unit(6 + 6 / 12, "feet"),
  29078. default: true
  29079. },
  29080. {
  29081. name: "Normal+",
  29082. height: math.unit(4, "meters")
  29083. },
  29084. {
  29085. name: "Macro",
  29086. height: math.unit(50, "meters")
  29087. },
  29088. {
  29089. name: "Macro+",
  29090. height: math.unit(100, "meters")
  29091. },
  29092. {
  29093. name: "Megamacro",
  29094. height: math.unit(20, "km")
  29095. },
  29096. ]
  29097. ))
  29098. characterMakers.push(() => makeCharacter(
  29099. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29100. {
  29101. front: {
  29102. height: math.unit(6, "feet"),
  29103. weight: math.unit(150, "lb"),
  29104. name: "Front",
  29105. image: {
  29106. source: "./media/characters/kosho/front.svg",
  29107. extra: 1847 / 1847,
  29108. bottom: 86 / 1933
  29109. }
  29110. },
  29111. },
  29112. [
  29113. {
  29114. name: "Second-stage micro",
  29115. height: math.unit(0.5, "inches")
  29116. },
  29117. {
  29118. name: "First-stage micro",
  29119. height: math.unit(6, "inches")
  29120. },
  29121. {
  29122. name: "Normal",
  29123. height: math.unit(6, "feet"),
  29124. default: true
  29125. },
  29126. {
  29127. name: "First-stage macro",
  29128. height: math.unit(72, "feet")
  29129. },
  29130. {
  29131. name: "Second-stage macro",
  29132. height: math.unit(864, "feet")
  29133. },
  29134. ]
  29135. ))
  29136. characterMakers.push(() => makeCharacter(
  29137. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29138. {
  29139. normal: {
  29140. height: math.unit(4 + 6 / 12, "feet"),
  29141. name: "Normal",
  29142. image: {
  29143. source: "./media/characters/hydra/normal.svg",
  29144. extra: 2833 / 2634,
  29145. bottom: 68 / 2901
  29146. }
  29147. },
  29148. smol: {
  29149. height: math.unit(0.705, "inches"),
  29150. name: "Smol",
  29151. image: {
  29152. source: "./media/characters/hydra/smol.svg",
  29153. extra: 2715 / 2540,
  29154. bottom: 0 / 2715
  29155. }
  29156. },
  29157. },
  29158. [
  29159. {
  29160. name: "Normal",
  29161. height: math.unit(4 + 6 / 12, "feet"),
  29162. default: true
  29163. }
  29164. ]
  29165. ))
  29166. characterMakers.push(() => makeCharacter(
  29167. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29168. {
  29169. front: {
  29170. height: math.unit(0.6, "cm"),
  29171. name: "Front",
  29172. image: {
  29173. source: "./media/characters/daz/front.svg",
  29174. extra: 1682 / 1164,
  29175. bottom: 42 / 1724
  29176. }
  29177. },
  29178. },
  29179. [
  29180. {
  29181. name: "Normal",
  29182. height: math.unit(0.6, "cm"),
  29183. default: true
  29184. },
  29185. ]
  29186. ))
  29187. characterMakers.push(() => makeCharacter(
  29188. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29189. {
  29190. front: {
  29191. height: math.unit(6, "feet"),
  29192. weight: math.unit(235, "lb"),
  29193. name: "Front",
  29194. image: {
  29195. source: "./media/characters/theo-pangolin/front.svg",
  29196. extra: 1996 / 1969,
  29197. bottom: 115 / 2111
  29198. }
  29199. },
  29200. back: {
  29201. height: math.unit(6, "feet"),
  29202. weight: math.unit(235, "lb"),
  29203. name: "Back",
  29204. image: {
  29205. source: "./media/characters/theo-pangolin/back.svg",
  29206. extra: 1979 / 1979,
  29207. bottom: 40 / 2019
  29208. }
  29209. },
  29210. feral: {
  29211. height: math.unit(2, "feet"),
  29212. weight: math.unit(30, "lb"),
  29213. name: "Feral",
  29214. image: {
  29215. source: "./media/characters/theo-pangolin/feral.svg",
  29216. extra: 803 / 791,
  29217. bottom: 181 / 984
  29218. }
  29219. },
  29220. footFive: {
  29221. height: math.unit(1.43, "feet"),
  29222. name: "Foot (Five Toes)",
  29223. image: {
  29224. source: "./media/characters/theo-pangolin/foot-five.svg"
  29225. }
  29226. },
  29227. footFour: {
  29228. height: math.unit(1.43, "feet"),
  29229. name: "Foot (Four Toes)",
  29230. image: {
  29231. source: "./media/characters/theo-pangolin/foot-four.svg"
  29232. }
  29233. },
  29234. handFour: {
  29235. height: math.unit(0.81, "feet"),
  29236. name: "Hand (Four Fingers)",
  29237. image: {
  29238. source: "./media/characters/theo-pangolin/hand-four.svg"
  29239. }
  29240. },
  29241. handThree: {
  29242. height: math.unit(0.81, "feet"),
  29243. name: "Hand (Three Fingers)",
  29244. image: {
  29245. source: "./media/characters/theo-pangolin/hand-three.svg"
  29246. }
  29247. },
  29248. headFront: {
  29249. height: math.unit(1.37, "feet"),
  29250. name: "Head (Front)",
  29251. image: {
  29252. source: "./media/characters/theo-pangolin/head-front.svg"
  29253. }
  29254. },
  29255. headSide: {
  29256. height: math.unit(1.43, "feet"),
  29257. name: "Head (Side)",
  29258. image: {
  29259. source: "./media/characters/theo-pangolin/head-side.svg"
  29260. }
  29261. },
  29262. tongue: {
  29263. height: math.unit(2.29, "feet"),
  29264. name: "Tongue",
  29265. image: {
  29266. source: "./media/characters/theo-pangolin/tongue.svg"
  29267. }
  29268. },
  29269. },
  29270. [
  29271. {
  29272. name: "Normal",
  29273. height: math.unit(6, "feet")
  29274. },
  29275. {
  29276. name: "Macro",
  29277. height: math.unit(400, "feet"),
  29278. default: true
  29279. },
  29280. ]
  29281. ))
  29282. characterMakers.push(() => makeCharacter(
  29283. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29284. {
  29285. front: {
  29286. height: math.unit(6, "inches"),
  29287. weight: math.unit(0.036, "kg"),
  29288. name: "Front",
  29289. image: {
  29290. source: "./media/characters/renée/front.svg",
  29291. extra: 900 / 886,
  29292. bottom: 8 / 908
  29293. }
  29294. },
  29295. },
  29296. [
  29297. {
  29298. name: "Nano",
  29299. height: math.unit(1, "nm")
  29300. },
  29301. {
  29302. name: "Micro",
  29303. height: math.unit(1, "mm")
  29304. },
  29305. {
  29306. name: "Normal",
  29307. height: math.unit(6, "inches")
  29308. },
  29309. {
  29310. name: "Macro",
  29311. height: math.unit(2000, "feet"),
  29312. default: true
  29313. },
  29314. {
  29315. name: "Megamacro",
  29316. height: math.unit(2, "km")
  29317. },
  29318. {
  29319. name: "Gigamacro",
  29320. height: math.unit(2000, "km")
  29321. },
  29322. {
  29323. name: "Teramacro",
  29324. height: math.unit(250000, "km")
  29325. },
  29326. ]
  29327. ))
  29328. characterMakers.push(() => makeCharacter(
  29329. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29330. {
  29331. front: {
  29332. height: math.unit(4, "meters"),
  29333. weight: math.unit(150, "kg"),
  29334. name: "Front",
  29335. image: {
  29336. source: "./media/characters/caledvwlch/front.svg",
  29337. extra: 1760 / 1551,
  29338. bottom: 28 / 1788
  29339. }
  29340. },
  29341. side: {
  29342. height: math.unit(4, "meters"),
  29343. weight: math.unit(150, "kg"),
  29344. name: "Side",
  29345. image: {
  29346. source: "./media/characters/caledvwlch/side.svg",
  29347. extra: 1605 / 1536,
  29348. bottom: 31 / 1636
  29349. }
  29350. },
  29351. back: {
  29352. height: math.unit(4, "meters"),
  29353. weight: math.unit(150, "kg"),
  29354. name: "Back",
  29355. image: {
  29356. source: "./media/characters/caledvwlch/back.svg",
  29357. extra: 1635 / 1565,
  29358. bottom: 27 / 1662
  29359. }
  29360. },
  29361. },
  29362. [
  29363. {
  29364. name: "\"Incognito\"",
  29365. height: math.unit(4, "meters")
  29366. },
  29367. {
  29368. name: "Small rampage",
  29369. height: math.unit(600, "meters")
  29370. },
  29371. {
  29372. name: "Mega",
  29373. height: math.unit(30, "km")
  29374. },
  29375. {
  29376. name: "Home-size",
  29377. height: math.unit(50, "km"),
  29378. default: true
  29379. },
  29380. {
  29381. name: "Giga",
  29382. height: math.unit(300, "km")
  29383. },
  29384. {
  29385. name: "Lounging",
  29386. height: math.unit(11000, "km")
  29387. },
  29388. {
  29389. name: "Planet snacking",
  29390. height: math.unit(2000000, "km")
  29391. },
  29392. ]
  29393. ))
  29394. characterMakers.push(() => makeCharacter(
  29395. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29396. {
  29397. front: {
  29398. height: math.unit(6, "feet"),
  29399. weight: math.unit(215, "lb"),
  29400. name: "Front",
  29401. image: {
  29402. source: "./media/characters/sapphire-svell/front.svg",
  29403. extra: 495 / 455,
  29404. bottom: 20 / 515
  29405. }
  29406. },
  29407. back: {
  29408. height: math.unit(6, "feet"),
  29409. weight: math.unit(216, "lb"),
  29410. name: "Back",
  29411. image: {
  29412. source: "./media/characters/sapphire-svell/back.svg",
  29413. extra: 497 / 477,
  29414. bottom: 7 / 504
  29415. }
  29416. },
  29417. maw: {
  29418. height: math.unit(1.57, "feet"),
  29419. name: "Maw",
  29420. image: {
  29421. source: "./media/characters/sapphire-svell/maw.svg"
  29422. }
  29423. },
  29424. foot: {
  29425. height: math.unit(1.07, "feet"),
  29426. name: "Foot",
  29427. image: {
  29428. source: "./media/characters/sapphire-svell/foot.svg"
  29429. }
  29430. },
  29431. toering: {
  29432. height: math.unit(1.7, "inch"),
  29433. name: "Toering",
  29434. image: {
  29435. source: "./media/characters/sapphire-svell/toering.svg"
  29436. }
  29437. },
  29438. },
  29439. [
  29440. {
  29441. name: "Normal",
  29442. height: math.unit(300, "feet"),
  29443. default: true
  29444. },
  29445. {
  29446. name: "Augmented",
  29447. height: math.unit(1250, "feet")
  29448. },
  29449. {
  29450. name: "Unleashed",
  29451. height: math.unit(3000, "feet")
  29452. },
  29453. ]
  29454. ))
  29455. characterMakers.push(() => makeCharacter(
  29456. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29457. {
  29458. side: {
  29459. height: math.unit(2 + 3 / 12, "feet"),
  29460. weight: math.unit(110, "lb"),
  29461. name: "Side",
  29462. image: {
  29463. source: "./media/characters/glitch-flux/side.svg",
  29464. extra: 997 / 805,
  29465. bottom: 20 / 1017
  29466. }
  29467. },
  29468. },
  29469. [
  29470. {
  29471. name: "Normal",
  29472. height: math.unit(2 + 3 / 12, "feet"),
  29473. default: true
  29474. },
  29475. ]
  29476. ))
  29477. characterMakers.push(() => makeCharacter(
  29478. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29479. {
  29480. front: {
  29481. height: math.unit(4, "meters"),
  29482. name: "Front",
  29483. image: {
  29484. source: "./media/characters/mid/front.svg",
  29485. extra: 507 / 476,
  29486. bottom: 17 / 524
  29487. }
  29488. },
  29489. back: {
  29490. height: math.unit(4, "meters"),
  29491. name: "Back",
  29492. image: {
  29493. source: "./media/characters/mid/back.svg",
  29494. extra: 519 / 487,
  29495. bottom: 7 / 526
  29496. }
  29497. },
  29498. stuck: {
  29499. height: math.unit(2.2, "meters"),
  29500. name: "Stuck",
  29501. image: {
  29502. source: "./media/characters/mid/stuck.svg",
  29503. extra: 1951 / 1869,
  29504. bottom: 88 / 2039
  29505. }
  29506. }
  29507. },
  29508. [
  29509. {
  29510. name: "Normal",
  29511. height: math.unit(4, "meters"),
  29512. default: true
  29513. },
  29514. {
  29515. name: "Big",
  29516. height: math.unit(10, "meters")
  29517. },
  29518. {
  29519. name: "Macro",
  29520. height: math.unit(800, "meters")
  29521. },
  29522. {
  29523. name: "Megamacro",
  29524. height: math.unit(100, "km")
  29525. },
  29526. {
  29527. name: "Overgrown",
  29528. height: math.unit(1, "parsec")
  29529. },
  29530. ]
  29531. ))
  29532. characterMakers.push(() => makeCharacter(
  29533. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29534. {
  29535. front: {
  29536. height: math.unit(2.5, "meters"),
  29537. weight: math.unit(225, "kg"),
  29538. name: "Front",
  29539. image: {
  29540. source: "./media/characters/iris/front.svg",
  29541. extra: 3348 / 3251,
  29542. bottom: 205 / 3553
  29543. }
  29544. },
  29545. maw: {
  29546. height: math.unit(0.56, "meter"),
  29547. name: "Maw",
  29548. image: {
  29549. source: "./media/characters/iris/maw.svg"
  29550. }
  29551. },
  29552. },
  29553. [
  29554. {
  29555. name: "Mewter cat",
  29556. height: math.unit(1.2, "meters")
  29557. },
  29558. {
  29559. name: "Minimacro",
  29560. height: math.unit(2.5, "meters"),
  29561. default: true
  29562. },
  29563. {
  29564. name: "Macro",
  29565. height: math.unit(180, "meters")
  29566. },
  29567. {
  29568. name: "Megamacro",
  29569. height: math.unit(2746, "meters")
  29570. },
  29571. ]
  29572. ))
  29573. characterMakers.push(() => makeCharacter(
  29574. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29575. {
  29576. front: {
  29577. height: math.unit(6, "feet"),
  29578. weight: math.unit(135, "lb"),
  29579. name: "Front",
  29580. image: {
  29581. source: "./media/characters/axel/front.svg",
  29582. extra: 908 / 908,
  29583. bottom: 58 / 966
  29584. }
  29585. },
  29586. side: {
  29587. height: math.unit(6, "feet"),
  29588. weight: math.unit(135, "lb"),
  29589. name: "Side",
  29590. image: {
  29591. source: "./media/characters/axel/side.svg",
  29592. extra: 958 / 958,
  29593. bottom: 11 / 969
  29594. }
  29595. },
  29596. back: {
  29597. height: math.unit(6, "feet"),
  29598. weight: math.unit(135, "lb"),
  29599. name: "Back",
  29600. image: {
  29601. source: "./media/characters/axel/back.svg",
  29602. extra: 887 / 887,
  29603. bottom: 34 / 921
  29604. }
  29605. },
  29606. head: {
  29607. height: math.unit(1.07, "feet"),
  29608. name: "Head",
  29609. image: {
  29610. source: "./media/characters/axel/head.svg"
  29611. }
  29612. },
  29613. beak: {
  29614. height: math.unit(1.4, "feet"),
  29615. name: "Beak",
  29616. image: {
  29617. source: "./media/characters/axel/beak.svg"
  29618. }
  29619. },
  29620. beakSide: {
  29621. height: math.unit(1.4, "feet"),
  29622. name: "Beak Side",
  29623. image: {
  29624. source: "./media/characters/axel/beak-side.svg"
  29625. }
  29626. },
  29627. sheath: {
  29628. height: math.unit(0.5, "feet"),
  29629. name: "Sheath",
  29630. image: {
  29631. source: "./media/characters/axel/sheath.svg"
  29632. }
  29633. },
  29634. dick: {
  29635. height: math.unit(0.98, "feet"),
  29636. name: "Dick",
  29637. image: {
  29638. source: "./media/characters/axel/dick.svg"
  29639. }
  29640. },
  29641. },
  29642. [
  29643. {
  29644. name: "Macro",
  29645. height: math.unit(68, "meters"),
  29646. default: true
  29647. },
  29648. ]
  29649. ))
  29650. characterMakers.push(() => makeCharacter(
  29651. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29652. {
  29653. front: {
  29654. height: math.unit(3.5, "meters"),
  29655. weight: math.unit(1200, "kg"),
  29656. name: "Front",
  29657. image: {
  29658. source: "./media/characters/joanna/front.svg",
  29659. extra: 1596 / 1488,
  29660. bottom: 29 / 1625
  29661. }
  29662. },
  29663. back: {
  29664. height: math.unit(3.5, "meters"),
  29665. weight: math.unit(1200, "kg"),
  29666. name: "Back",
  29667. image: {
  29668. source: "./media/characters/joanna/back.svg",
  29669. extra: 1594 / 1495,
  29670. bottom: 26 / 1620
  29671. }
  29672. },
  29673. frontShorts: {
  29674. height: math.unit(3.5, "meters"),
  29675. weight: math.unit(1200, "kg"),
  29676. name: "Front (Shorts)",
  29677. image: {
  29678. source: "./media/characters/joanna/front-shorts.svg",
  29679. extra: 1596 / 1488,
  29680. bottom: 29 / 1625
  29681. }
  29682. },
  29683. frontBiker: {
  29684. height: math.unit(3.5, "meters"),
  29685. weight: math.unit(1200, "kg"),
  29686. name: "Front (Biker)",
  29687. image: {
  29688. source: "./media/characters/joanna/front-biker.svg",
  29689. extra: 1596 / 1488,
  29690. bottom: 29 / 1625
  29691. }
  29692. },
  29693. backBiker: {
  29694. height: math.unit(3.5, "meters"),
  29695. weight: math.unit(1200, "kg"),
  29696. name: "Back (Biker)",
  29697. image: {
  29698. source: "./media/characters/joanna/back-biker.svg",
  29699. extra: 1594 / 1495,
  29700. bottom: 88 / 1682
  29701. }
  29702. },
  29703. bikeLeft: {
  29704. height: math.unit(2.4, "meters"),
  29705. weight: math.unit(1600, "kg"),
  29706. name: "Bike (Left)",
  29707. image: {
  29708. source: "./media/characters/joanna/bike-left.svg",
  29709. extra: 720 / 720,
  29710. bottom: 8 / 728
  29711. }
  29712. },
  29713. bikeRight: {
  29714. height: math.unit(2.4, "meters"),
  29715. weight: math.unit(1600, "kg"),
  29716. name: "Bike (Right)",
  29717. image: {
  29718. source: "./media/characters/joanna/bike-right.svg",
  29719. extra: 720 / 720,
  29720. bottom: 8 / 728
  29721. }
  29722. },
  29723. },
  29724. [
  29725. {
  29726. name: "Incognito",
  29727. height: math.unit(3.5, "meters")
  29728. },
  29729. {
  29730. name: "Casual Big",
  29731. height: math.unit(200, "meters")
  29732. },
  29733. {
  29734. name: "Macro",
  29735. height: math.unit(600, "meters")
  29736. },
  29737. {
  29738. name: "Original",
  29739. height: math.unit(20, "km"),
  29740. default: true
  29741. },
  29742. {
  29743. name: "Giga",
  29744. height: math.unit(400, "km")
  29745. },
  29746. {
  29747. name: "Lounging",
  29748. height: math.unit(1500, "km")
  29749. },
  29750. {
  29751. name: "Planetary",
  29752. height: math.unit(200000, "km")
  29753. },
  29754. ]
  29755. ))
  29756. characterMakers.push(() => makeCharacter(
  29757. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29758. {
  29759. front: {
  29760. height: math.unit(6, "feet"),
  29761. weight: math.unit(150, "lb"),
  29762. name: "Front",
  29763. image: {
  29764. source: "./media/characters/hugo-sigil/front.svg",
  29765. extra: 522 / 500,
  29766. bottom: 2 / 524
  29767. }
  29768. },
  29769. back: {
  29770. height: math.unit(6, "feet"),
  29771. weight: math.unit(150, "lb"),
  29772. name: "Back",
  29773. image: {
  29774. source: "./media/characters/hugo-sigil/back.svg",
  29775. extra: 519 / 495,
  29776. bottom: 5 / 524
  29777. }
  29778. },
  29779. maw: {
  29780. height: math.unit(1.4, "feet"),
  29781. weight: math.unit(150, "lb"),
  29782. name: "Maw",
  29783. image: {
  29784. source: "./media/characters/hugo-sigil/maw.svg"
  29785. }
  29786. },
  29787. feet: {
  29788. height: math.unit(1.56, "feet"),
  29789. weight: math.unit(150, "lb"),
  29790. name: "Feet",
  29791. image: {
  29792. source: "./media/characters/hugo-sigil/feet.svg",
  29793. extra: 177 / 177,
  29794. bottom: 12 / 189
  29795. }
  29796. },
  29797. },
  29798. [
  29799. {
  29800. name: "Normal",
  29801. height: math.unit(6, "feet")
  29802. },
  29803. {
  29804. name: "Macro",
  29805. height: math.unit(200, "feet"),
  29806. default: true
  29807. },
  29808. ]
  29809. ))
  29810. characterMakers.push(() => makeCharacter(
  29811. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  29812. {
  29813. front: {
  29814. height: math.unit(6, "feet"),
  29815. weight: math.unit(150, "lb"),
  29816. name: "Front",
  29817. image: {
  29818. source: "./media/characters/peri/front.svg",
  29819. extra: 2354 / 2233,
  29820. bottom: 49 / 2403
  29821. }
  29822. },
  29823. },
  29824. [
  29825. {
  29826. name: "Really Small",
  29827. height: math.unit(1, "nm")
  29828. },
  29829. {
  29830. name: "Micro",
  29831. height: math.unit(4, "inches")
  29832. },
  29833. {
  29834. name: "Normal",
  29835. height: math.unit(7, "inches"),
  29836. default: true
  29837. },
  29838. {
  29839. name: "Macro",
  29840. height: math.unit(400, "feet")
  29841. },
  29842. {
  29843. name: "Megamacro",
  29844. height: math.unit(100, "miles")
  29845. },
  29846. ]
  29847. ))
  29848. characterMakers.push(() => makeCharacter(
  29849. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  29850. {
  29851. frontSlim: {
  29852. height: math.unit(7, "feet"),
  29853. name: "Front (Slim)",
  29854. image: {
  29855. source: "./media/characters/issilora/front-slim.svg",
  29856. extra: 529 / 449,
  29857. bottom: 53 / 582
  29858. }
  29859. },
  29860. sideSlim: {
  29861. height: math.unit(7, "feet"),
  29862. name: "Side (Slim)",
  29863. image: {
  29864. source: "./media/characters/issilora/side-slim.svg",
  29865. extra: 570 / 480,
  29866. bottom: 30 / 600
  29867. }
  29868. },
  29869. backSlim: {
  29870. height: math.unit(7, "feet"),
  29871. name: "Back (Slim)",
  29872. image: {
  29873. source: "./media/characters/issilora/back-slim.svg",
  29874. extra: 537 / 455,
  29875. bottom: 46 / 583
  29876. }
  29877. },
  29878. frontBuff: {
  29879. height: math.unit(7, "feet"),
  29880. name: "Front (Buff)",
  29881. image: {
  29882. source: "./media/characters/issilora/front-buff.svg",
  29883. extra: 2310 / 2035,
  29884. bottom: 335 / 2645
  29885. }
  29886. },
  29887. head: {
  29888. height: math.unit(1.94, "feet"),
  29889. name: "Head",
  29890. image: {
  29891. source: "./media/characters/issilora/head.svg"
  29892. }
  29893. },
  29894. },
  29895. [
  29896. {
  29897. name: "Minimum",
  29898. height: math.unit(7, "feet")
  29899. },
  29900. {
  29901. name: "Comfortable",
  29902. height: math.unit(17, "feet")
  29903. },
  29904. {
  29905. name: "Fun Size",
  29906. height: math.unit(47, "feet")
  29907. },
  29908. {
  29909. name: "Natural Macro",
  29910. height: math.unit(137, "feet"),
  29911. default: true
  29912. },
  29913. {
  29914. name: "Maximum Kaiju",
  29915. height: math.unit(397, "feet")
  29916. },
  29917. ]
  29918. ))
  29919. characterMakers.push(() => makeCharacter(
  29920. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  29921. {
  29922. front: {
  29923. height: math.unit(50 + 9/12, "feet"),
  29924. weight: math.unit(32.8, "tons"),
  29925. name: "Front",
  29926. image: {
  29927. source: "./media/characters/irb'iiritaahn/front.svg",
  29928. extra: 1878/1826,
  29929. bottom: 326/2204
  29930. }
  29931. },
  29932. back: {
  29933. height: math.unit(50 + 9/12, "feet"),
  29934. weight: math.unit(32.8, "tons"),
  29935. name: "Back",
  29936. image: {
  29937. source: "./media/characters/irb'iiritaahn/back.svg",
  29938. extra: 2052/2018,
  29939. bottom: 152/2204
  29940. }
  29941. },
  29942. head: {
  29943. height: math.unit(12.86, "feet"),
  29944. name: "Head",
  29945. image: {
  29946. source: "./media/characters/irb'iiritaahn/head.svg"
  29947. }
  29948. },
  29949. maw: {
  29950. height: math.unit(9.66, "feet"),
  29951. name: "Maw",
  29952. image: {
  29953. source: "./media/characters/irb'iiritaahn/maw.svg"
  29954. }
  29955. },
  29956. frontDick: {
  29957. height: math.unit(8.78461, "feet"),
  29958. name: "Front Dick",
  29959. image: {
  29960. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  29961. }
  29962. },
  29963. rearDick: {
  29964. height: math.unit(8.78461, "feet"),
  29965. name: "Rear Dick",
  29966. image: {
  29967. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  29968. }
  29969. },
  29970. rearDickUnfolded: {
  29971. height: math.unit(8.78, "feet"),
  29972. name: "Rear Dick (Unfolded)",
  29973. image: {
  29974. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  29975. }
  29976. },
  29977. wings: {
  29978. height: math.unit(43, "feet"),
  29979. name: "Wings",
  29980. image: {
  29981. source: "./media/characters/irb'iiritaahn/wings.svg"
  29982. }
  29983. },
  29984. },
  29985. [
  29986. {
  29987. name: "Macro",
  29988. height: math.unit(50 + 9/12, "feet"),
  29989. default: true
  29990. },
  29991. ]
  29992. ))
  29993. characterMakers.push(() => makeCharacter(
  29994. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  29995. {
  29996. front: {
  29997. height: math.unit(205, "cm"),
  29998. weight: math.unit(102, "kg"),
  29999. name: "Front",
  30000. image: {
  30001. source: "./media/characters/irbisgreif/front.svg",
  30002. extra: 785/706,
  30003. bottom: 13/798
  30004. }
  30005. },
  30006. back: {
  30007. height: math.unit(205, "cm"),
  30008. weight: math.unit(102, "kg"),
  30009. name: "Back",
  30010. image: {
  30011. source: "./media/characters/irbisgreif/back.svg",
  30012. extra: 713/701,
  30013. bottom: 26/739
  30014. }
  30015. },
  30016. frontDressed: {
  30017. height: math.unit(216, "cm"),
  30018. weight: math.unit(102, "kg"),
  30019. name: "Front-dressed",
  30020. image: {
  30021. source: "./media/characters/irbisgreif/front-dressed.svg",
  30022. extra: 902/776,
  30023. bottom: 14/916
  30024. }
  30025. },
  30026. sideDressed: {
  30027. height: math.unit(195, "cm"),
  30028. weight: math.unit(102, "kg"),
  30029. name: "Side-dressed",
  30030. image: {
  30031. source: "./media/characters/irbisgreif/side-dressed.svg",
  30032. extra: 788/688,
  30033. bottom: 21/809
  30034. }
  30035. },
  30036. backDressed: {
  30037. height: math.unit(216, "cm"),
  30038. weight: math.unit(102, "kg"),
  30039. name: "Back-dressed",
  30040. image: {
  30041. source: "./media/characters/irbisgreif/back-dressed.svg",
  30042. extra: 901/783,
  30043. bottom: 10/911
  30044. }
  30045. },
  30046. dick: {
  30047. height: math.unit(0.49, "feet"),
  30048. name: "Dick",
  30049. image: {
  30050. source: "./media/characters/irbisgreif/dick.svg"
  30051. }
  30052. },
  30053. wingTop: {
  30054. height: math.unit(1.93 , "feet"),
  30055. name: "Wing-top",
  30056. image: {
  30057. source: "./media/characters/irbisgreif/wing-top.svg"
  30058. }
  30059. },
  30060. wingBottom: {
  30061. height: math.unit(1.93 , "feet"),
  30062. name: "Wing-bottom",
  30063. image: {
  30064. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30065. }
  30066. },
  30067. },
  30068. [
  30069. {
  30070. name: "Normal",
  30071. height: math.unit(216, "cm"),
  30072. default: true
  30073. },
  30074. ]
  30075. ))
  30076. characterMakers.push(() => makeCharacter(
  30077. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30078. {
  30079. front: {
  30080. height: math.unit(6, "feet"),
  30081. weight: math.unit(150, "lb"),
  30082. name: "Front",
  30083. image: {
  30084. source: "./media/characters/pride/front.svg",
  30085. extra: 1299/1230,
  30086. bottom: 18/1317
  30087. }
  30088. },
  30089. },
  30090. [
  30091. {
  30092. name: "Normal",
  30093. height: math.unit(7, "feet")
  30094. },
  30095. {
  30096. name: "Mini-macro",
  30097. height: math.unit(11, "feet")
  30098. },
  30099. {
  30100. name: "Macro",
  30101. height: math.unit(15, "meters"),
  30102. default: true
  30103. },
  30104. {
  30105. name: "Macro+",
  30106. height: math.unit(40, "meters")
  30107. },
  30108. ]
  30109. ))
  30110. characterMakers.push(() => makeCharacter(
  30111. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30112. {
  30113. front: {
  30114. height: math.unit(4 + 2 / 12, "feet"),
  30115. weight: math.unit(95, "lb"),
  30116. name: "Front",
  30117. image: {
  30118. source: "./media/characters/vaelophis-nyx/front.svg",
  30119. extra: 2532/2330,
  30120. bottom: 0/2532
  30121. }
  30122. },
  30123. back: {
  30124. height: math.unit(4 + 2 / 12, "feet"),
  30125. weight: math.unit(95, "lb"),
  30126. name: "Back",
  30127. image: {
  30128. source: "./media/characters/vaelophis-nyx/back.svg",
  30129. extra: 2484/2361,
  30130. bottom: 0/2484
  30131. }
  30132. },
  30133. feralSide: {
  30134. height: math.unit(2 + 1/12, "feet"),
  30135. weight: math.unit(20, "lb"),
  30136. name: "Feral (Side)",
  30137. image: {
  30138. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30139. extra: 1721/1581,
  30140. bottom: 70/1791
  30141. }
  30142. },
  30143. feralLazing: {
  30144. height: math.unit(1.08, "feet"),
  30145. weight: math.unit(20, "lb"),
  30146. name: "Feral (Lazing)",
  30147. image: {
  30148. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30149. extra: 822/822,
  30150. bottom: 248/1070
  30151. }
  30152. },
  30153. ear: {
  30154. height: math.unit(0.416, "feet"),
  30155. name: "Ear",
  30156. image: {
  30157. source: "./media/characters/vaelophis-nyx/ear.svg"
  30158. }
  30159. },
  30160. eye: {
  30161. height: math.unit(0.0748, "feet"),
  30162. name: "Eye",
  30163. image: {
  30164. source: "./media/characters/vaelophis-nyx/eye.svg"
  30165. }
  30166. },
  30167. mouth: {
  30168. height: math.unit(0.378, "feet"),
  30169. name: "Mouth",
  30170. image: {
  30171. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30172. }
  30173. },
  30174. spade: {
  30175. height: math.unit(0.55, "feet"),
  30176. name: "Spade",
  30177. image: {
  30178. source: "./media/characters/vaelophis-nyx/spade.svg"
  30179. }
  30180. },
  30181. },
  30182. [
  30183. {
  30184. name: "Normal",
  30185. height: math.unit(4 + 2/12, "feet"),
  30186. default: true
  30187. },
  30188. ]
  30189. ))
  30190. characterMakers.push(() => makeCharacter(
  30191. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30192. {
  30193. front: {
  30194. height: math.unit(7, "feet"),
  30195. weight: math.unit(231, "lb"),
  30196. name: "Front",
  30197. image: {
  30198. source: "./media/characters/flux/front.svg",
  30199. extra: 919/871,
  30200. bottom: 0/919
  30201. }
  30202. },
  30203. back: {
  30204. height: math.unit(7, "feet"),
  30205. weight: math.unit(231, "lb"),
  30206. name: "Back",
  30207. image: {
  30208. source: "./media/characters/flux/back.svg",
  30209. extra: 1040/992,
  30210. bottom: 0/1040
  30211. }
  30212. },
  30213. frontDressed: {
  30214. height: math.unit(7, "feet"),
  30215. weight: math.unit(231, "lb"),
  30216. name: "Front (Dressed)",
  30217. image: {
  30218. source: "./media/characters/flux/front-dressed.svg",
  30219. extra: 919/871,
  30220. bottom: 0/919
  30221. }
  30222. },
  30223. feralSide: {
  30224. height: math.unit(5, "feet"),
  30225. weight: math.unit(150, "lb"),
  30226. name: "Feral (Side)",
  30227. image: {
  30228. source: "./media/characters/flux/feral-side.svg",
  30229. extra: 598/528,
  30230. bottom: 28/626
  30231. }
  30232. },
  30233. head: {
  30234. height: math.unit(1.585, "feet"),
  30235. name: "Head",
  30236. image: {
  30237. source: "./media/characters/flux/head.svg"
  30238. }
  30239. },
  30240. headSide: {
  30241. height: math.unit(1.74, "feet"),
  30242. name: "Head (Side)",
  30243. image: {
  30244. source: "./media/characters/flux/head-side.svg"
  30245. }
  30246. },
  30247. headSideFire: {
  30248. height: math.unit(1.76, "feet"),
  30249. name: "Head (Side, Fire)",
  30250. image: {
  30251. source: "./media/characters/flux/head-side-fire.svg"
  30252. }
  30253. },
  30254. },
  30255. [
  30256. {
  30257. name: "Normal",
  30258. height: math.unit(7, "feet"),
  30259. default: true
  30260. },
  30261. ]
  30262. ))
  30263. characterMakers.push(() => makeCharacter(
  30264. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30265. {
  30266. front: {
  30267. height: math.unit(9, "feet"),
  30268. weight: math.unit(1012, "lb"),
  30269. name: "Front",
  30270. image: {
  30271. source: "./media/characters/ulfra-lupae/front.svg",
  30272. extra: 1083/1011,
  30273. bottom: 67/1150
  30274. }
  30275. },
  30276. },
  30277. [
  30278. {
  30279. name: "Micro",
  30280. height: math.unit(6, "inches")
  30281. },
  30282. {
  30283. name: "Socializing",
  30284. height: math.unit(6 + 5/12, "feet")
  30285. },
  30286. {
  30287. name: "Normal",
  30288. height: math.unit(9, "feet"),
  30289. default: true
  30290. },
  30291. {
  30292. name: "Macro",
  30293. height: math.unit(150, "feet")
  30294. },
  30295. ]
  30296. ))
  30297. characterMakers.push(() => makeCharacter(
  30298. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30299. {
  30300. front: {
  30301. height: math.unit(5 + 2/12, "feet"),
  30302. weight: math.unit(120, "lb"),
  30303. name: "Front",
  30304. image: {
  30305. source: "./media/characters/timber/front.svg",
  30306. extra: 2814/2705,
  30307. bottom: 181/2995
  30308. }
  30309. },
  30310. },
  30311. [
  30312. {
  30313. name: "Normal",
  30314. height: math.unit(5 + 2/12, "feet"),
  30315. default: true
  30316. },
  30317. ]
  30318. ))
  30319. characterMakers.push(() => makeCharacter(
  30320. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30321. {
  30322. front: {
  30323. height: math.unit(5 + 7/12, "feet"),
  30324. weight: math.unit(220, "lb"),
  30325. name: "Front",
  30326. image: {
  30327. source: "./media/characters/nicki/front.svg",
  30328. extra: 453/419,
  30329. bottom: 7/460
  30330. }
  30331. },
  30332. frontAlt: {
  30333. height: math.unit(5 + 7/12, "feet"),
  30334. weight: math.unit(220, "lb"),
  30335. name: "Front-alt",
  30336. image: {
  30337. source: "./media/characters/nicki/front-alt.svg",
  30338. extra: 435/411,
  30339. bottom: 12/447
  30340. }
  30341. },
  30342. back: {
  30343. height: math.unit(5 + 7/12, "feet"),
  30344. weight: math.unit(220, "lb"),
  30345. name: "Back",
  30346. image: {
  30347. source: "./media/characters/nicki/back.svg",
  30348. extra: 440/413,
  30349. bottom: 19/459
  30350. }
  30351. },
  30352. taur: {
  30353. height: math.unit(7 + 6/12, "feet"),
  30354. weight: math.unit(700, "lb"),
  30355. name: "Taur",
  30356. image: {
  30357. source: "./media/characters/nicki/taur.svg",
  30358. extra: 975/773,
  30359. bottom: 0/975
  30360. }
  30361. },
  30362. frontNsfw: {
  30363. height: math.unit(5 + 7/12, "feet"),
  30364. weight: math.unit(220, "lb"),
  30365. name: "Front (NSFW)",
  30366. image: {
  30367. source: "./media/characters/nicki/front-nsfw.svg",
  30368. extra: 453/419,
  30369. bottom: 7/460
  30370. }
  30371. },
  30372. frontNsfwAlt: {
  30373. height: math.unit(5 + 7/12, "feet"),
  30374. weight: math.unit(220, "lb"),
  30375. name: "Front (Alt, NSFW)",
  30376. image: {
  30377. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30378. extra: 435/411,
  30379. bottom: 12/447
  30380. }
  30381. },
  30382. backNsfw: {
  30383. height: math.unit(5 + 7/12, "feet"),
  30384. weight: math.unit(220, "lb"),
  30385. name: "Back (NSFW)",
  30386. image: {
  30387. source: "./media/characters/nicki/back-nsfw.svg",
  30388. extra: 440/413,
  30389. bottom: 19/459
  30390. }
  30391. },
  30392. head: {
  30393. height: math.unit(2.1, "feet"),
  30394. name: "Head",
  30395. image: {
  30396. source: "./media/characters/nicki/head.svg"
  30397. }
  30398. },
  30399. paw: {
  30400. height: math.unit(1.88, "feet"),
  30401. name: "Paw",
  30402. image: {
  30403. source: "./media/characters/nicki/paw.svg"
  30404. }
  30405. },
  30406. },
  30407. [
  30408. {
  30409. name: "Normal",
  30410. height: math.unit(5 + 7/12, "feet"),
  30411. default: true
  30412. },
  30413. ]
  30414. ))
  30415. characterMakers.push(() => makeCharacter(
  30416. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30417. {
  30418. front: {
  30419. height: math.unit(7 + 10/12, "feet"),
  30420. weight: math.unit(3.5, "tons"),
  30421. name: "Front",
  30422. image: {
  30423. source: "./media/characters/lee/front.svg",
  30424. extra: 1773/1615,
  30425. bottom: 86/1859
  30426. }
  30427. },
  30428. hand: {
  30429. height: math.unit(1.78, "feet"),
  30430. name: "Hand",
  30431. image: {
  30432. source: "./media/characters/lee/hand.svg"
  30433. }
  30434. },
  30435. maw: {
  30436. height: math.unit(1.18, "feet"),
  30437. name: "Maw",
  30438. image: {
  30439. source: "./media/characters/lee/maw.svg"
  30440. }
  30441. },
  30442. },
  30443. [
  30444. {
  30445. name: "Normal",
  30446. height: math.unit(7 + 10/12, "feet"),
  30447. default: true
  30448. },
  30449. ]
  30450. ))
  30451. characterMakers.push(() => makeCharacter(
  30452. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30453. {
  30454. front: {
  30455. height: math.unit(9, "feet"),
  30456. name: "Front",
  30457. image: {
  30458. source: "./media/characters/guti/front.svg",
  30459. extra: 4551/4355,
  30460. bottom: 123/4674
  30461. }
  30462. },
  30463. tongue: {
  30464. height: math.unit(1, "feet"),
  30465. name: "Tongue",
  30466. image: {
  30467. source: "./media/characters/guti/tongue.svg"
  30468. }
  30469. },
  30470. paw: {
  30471. height: math.unit(1.18, "feet"),
  30472. name: "Paw",
  30473. image: {
  30474. source: "./media/characters/guti/paw.svg"
  30475. }
  30476. },
  30477. },
  30478. [
  30479. {
  30480. name: "Normal",
  30481. height: math.unit(9, "feet"),
  30482. default: true
  30483. },
  30484. ]
  30485. ))
  30486. characterMakers.push(() => makeCharacter(
  30487. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30488. {
  30489. side: {
  30490. height: math.unit(5, "meters"),
  30491. name: "Side",
  30492. image: {
  30493. source: "./media/characters/vesper/side.svg",
  30494. extra: 1605/1518,
  30495. bottom: 0/1605
  30496. }
  30497. },
  30498. },
  30499. [
  30500. {
  30501. name: "Small",
  30502. height: math.unit(5, "meters")
  30503. },
  30504. {
  30505. name: "Sage",
  30506. height: math.unit(100, "meters"),
  30507. default: true
  30508. },
  30509. {
  30510. name: "Fun Size",
  30511. height: math.unit(600, "meters")
  30512. },
  30513. {
  30514. name: "Goddess",
  30515. height: math.unit(20000, "km")
  30516. },
  30517. {
  30518. name: "Maximum",
  30519. height: math.unit(5, "galaxies")
  30520. },
  30521. ]
  30522. ))
  30523. characterMakers.push(() => makeCharacter(
  30524. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30525. {
  30526. front: {
  30527. height: math.unit(6 + 3/12, "feet"),
  30528. weight: math.unit(190, "lb"),
  30529. name: "Front",
  30530. image: {
  30531. source: "./media/characters/gawain/front.svg",
  30532. extra: 2222/2139,
  30533. bottom: 90/2312
  30534. }
  30535. },
  30536. back: {
  30537. height: math.unit(6 + 3/12, "feet"),
  30538. weight: math.unit(190, "lb"),
  30539. name: "Back",
  30540. image: {
  30541. source: "./media/characters/gawain/back.svg",
  30542. extra: 2199/2111,
  30543. bottom: 73/2272
  30544. }
  30545. },
  30546. },
  30547. [
  30548. {
  30549. name: "Normal",
  30550. height: math.unit(6 + 3/12, "feet"),
  30551. default: true
  30552. },
  30553. ]
  30554. ))
  30555. characterMakers.push(() => makeCharacter(
  30556. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30557. {
  30558. side: {
  30559. height: math.unit(3.5, "meters"),
  30560. weight: math.unit(16000, "lb"),
  30561. name: "Side",
  30562. image: {
  30563. source: "./media/characters/dascalti/side.svg",
  30564. extra: 392/273,
  30565. bottom: 47/439
  30566. }
  30567. },
  30568. breath: {
  30569. height: math.unit(7.4, "feet"),
  30570. name: "Breath",
  30571. image: {
  30572. source: "./media/characters/dascalti/breath.svg"
  30573. }
  30574. },
  30575. fed: {
  30576. height: math.unit(3.6, "meters"),
  30577. weight: math.unit(16000, "lb"),
  30578. name: "Fed",
  30579. image: {
  30580. source: "./media/characters/dascalti/fed.svg",
  30581. extra: 1419/820,
  30582. bottom: 95/1514
  30583. }
  30584. },
  30585. },
  30586. [
  30587. {
  30588. name: "Normal",
  30589. height: math.unit(3.5, "meters"),
  30590. default: true
  30591. },
  30592. ]
  30593. ))
  30594. characterMakers.push(() => makeCharacter(
  30595. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30596. {
  30597. front: {
  30598. height: math.unit(3 + 5/12, "feet"),
  30599. name: "Front",
  30600. image: {
  30601. source: "./media/characters/mauve/front.svg",
  30602. extra: 1126/1033,
  30603. bottom: 65/1191
  30604. }
  30605. },
  30606. side: {
  30607. height: math.unit(3 + 5/12, "feet"),
  30608. name: "Side",
  30609. image: {
  30610. source: "./media/characters/mauve/side.svg",
  30611. extra: 1089/1001,
  30612. bottom: 29/1118
  30613. }
  30614. },
  30615. back: {
  30616. height: math.unit(3 + 5/12, "feet"),
  30617. name: "Back",
  30618. image: {
  30619. source: "./media/characters/mauve/back.svg",
  30620. extra: 1173/1053,
  30621. bottom: 109/1282
  30622. }
  30623. },
  30624. },
  30625. [
  30626. {
  30627. name: "Normal",
  30628. height: math.unit(3 + 5/12, "feet"),
  30629. default: true
  30630. },
  30631. ]
  30632. ))
  30633. characterMakers.push(() => makeCharacter(
  30634. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30635. {
  30636. front: {
  30637. height: math.unit(6 + 3/12, "feet"),
  30638. weight: math.unit(430, "lb"),
  30639. name: "Front",
  30640. image: {
  30641. source: "./media/characters/carlos/front.svg",
  30642. extra: 1964/1913,
  30643. bottom: 70/2034
  30644. }
  30645. },
  30646. },
  30647. [
  30648. {
  30649. name: "Normal",
  30650. height: math.unit(6 + 3/12, "feet"),
  30651. default: true
  30652. },
  30653. ]
  30654. ))
  30655. characterMakers.push(() => makeCharacter(
  30656. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30657. {
  30658. back: {
  30659. height: math.unit(5 + 10/12, "feet"),
  30660. weight: math.unit(200, "lb"),
  30661. name: "Back",
  30662. image: {
  30663. source: "./media/characters/jax/back.svg",
  30664. extra: 764/739,
  30665. bottom: 25/789
  30666. }
  30667. },
  30668. },
  30669. [
  30670. {
  30671. name: "Normal",
  30672. height: math.unit(5 + 10/12, "feet"),
  30673. default: true
  30674. },
  30675. ]
  30676. ))
  30677. characterMakers.push(() => makeCharacter(
  30678. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30679. {
  30680. front: {
  30681. height: math.unit(8, "feet"),
  30682. weight: math.unit(250, "lb"),
  30683. name: "Front",
  30684. image: {
  30685. source: "./media/characters/eikthynir/front.svg",
  30686. extra: 1332/1166,
  30687. bottom: 82/1414
  30688. }
  30689. },
  30690. back: {
  30691. height: math.unit(8, "feet"),
  30692. weight: math.unit(250, "lb"),
  30693. name: "Back",
  30694. image: {
  30695. source: "./media/characters/eikthynir/back.svg",
  30696. extra: 1342/1190,
  30697. bottom: 19/1361
  30698. }
  30699. },
  30700. dick: {
  30701. height: math.unit(2.35, "feet"),
  30702. name: "Dick",
  30703. image: {
  30704. source: "./media/characters/eikthynir/dick.svg"
  30705. }
  30706. },
  30707. },
  30708. [
  30709. {
  30710. name: "Normal",
  30711. height: math.unit(8, "feet"),
  30712. default: true
  30713. },
  30714. ]
  30715. ))
  30716. characterMakers.push(() => makeCharacter(
  30717. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30718. {
  30719. front: {
  30720. height: math.unit(99, "meters"),
  30721. weight: math.unit(13000, "tons"),
  30722. name: "Front",
  30723. image: {
  30724. source: "./media/characters/zlmos/front.svg",
  30725. extra: 2202/1992,
  30726. bottom: 315/2517
  30727. }
  30728. },
  30729. },
  30730. [
  30731. {
  30732. name: "Macro",
  30733. height: math.unit(99, "meters"),
  30734. default: true
  30735. },
  30736. ]
  30737. ))
  30738. characterMakers.push(() => makeCharacter(
  30739. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30740. {
  30741. front: {
  30742. height: math.unit(6 + 5/12, "feet"),
  30743. name: "Front",
  30744. image: {
  30745. source: "./media/characters/purri/front.svg",
  30746. extra: 1698/1610,
  30747. bottom: 32/1730
  30748. }
  30749. },
  30750. frontAlt: {
  30751. height: math.unit(6 + 5/12, "feet"),
  30752. name: "Front (Alt)",
  30753. image: {
  30754. source: "./media/characters/purri/front-alt.svg",
  30755. extra: 450/420,
  30756. bottom: 26/476
  30757. }
  30758. },
  30759. boots: {
  30760. height: math.unit(5.5, "feet"),
  30761. name: "Boots",
  30762. image: {
  30763. source: "./media/characters/purri/boots.svg",
  30764. extra: 905/853,
  30765. bottom: 18/923
  30766. }
  30767. },
  30768. lying: {
  30769. height: math.unit(2, "feet"),
  30770. name: "Lying",
  30771. image: {
  30772. source: "./media/characters/purri/lying.svg",
  30773. extra: 940/843,
  30774. bottom: 146/1086
  30775. }
  30776. },
  30777. devious: {
  30778. height: math.unit(1.77, "feet"),
  30779. name: "Devious",
  30780. image: {
  30781. source: "./media/characters/purri/devious.svg",
  30782. extra: 1440/1155,
  30783. bottom: 147/1587
  30784. }
  30785. },
  30786. bean: {
  30787. height: math.unit(1.94, "feet"),
  30788. name: "Bean",
  30789. image: {
  30790. source: "./media/characters/purri/bean.svg"
  30791. }
  30792. },
  30793. },
  30794. [
  30795. {
  30796. name: "Micro",
  30797. height: math.unit(1, "mm")
  30798. },
  30799. {
  30800. name: "Normal",
  30801. height: math.unit(6 + 5/12, "feet"),
  30802. default: true
  30803. },
  30804. {
  30805. name: "Macro :3c",
  30806. height: math.unit(2, "miles")
  30807. },
  30808. ]
  30809. ))
  30810. characterMakers.push(() => makeCharacter(
  30811. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  30812. {
  30813. front: {
  30814. height: math.unit(6 + 2/12, "feet"),
  30815. weight: math.unit(250, "lb"),
  30816. name: "Front",
  30817. image: {
  30818. source: "./media/characters/moonlight/front.svg",
  30819. extra: 1044/908,
  30820. bottom: 56/1100
  30821. }
  30822. },
  30823. feral: {
  30824. height: math.unit(3 + 1/12, "feet"),
  30825. weight: math.unit(50, "kg"),
  30826. name: "Feral",
  30827. image: {
  30828. source: "./media/characters/moonlight/feral.svg",
  30829. extra: 3705/2791,
  30830. bottom: 145/3850
  30831. }
  30832. },
  30833. paw: {
  30834. height: math.unit(1, "feet"),
  30835. name: "Paw",
  30836. image: {
  30837. source: "./media/characters/moonlight/paw.svg"
  30838. }
  30839. },
  30840. paws: {
  30841. height: math.unit(0.98, "feet"),
  30842. name: "Paws",
  30843. image: {
  30844. source: "./media/characters/moonlight/paws.svg",
  30845. extra: 939/939,
  30846. bottom: 50/989
  30847. }
  30848. },
  30849. mouth: {
  30850. height: math.unit(0.48, "feet"),
  30851. name: "Mouth",
  30852. image: {
  30853. source: "./media/characters/moonlight/mouth.svg"
  30854. }
  30855. },
  30856. dick: {
  30857. height: math.unit(1.46, "feet"),
  30858. name: "Dick",
  30859. image: {
  30860. source: "./media/characters/moonlight/dick.svg"
  30861. }
  30862. },
  30863. },
  30864. [
  30865. {
  30866. name: "Normal",
  30867. height: math.unit(6 + 2/12, "feet"),
  30868. default: true
  30869. },
  30870. {
  30871. name: "Macro",
  30872. height: math.unit(300, "feet")
  30873. },
  30874. {
  30875. name: "Macro+",
  30876. height: math.unit(1, "mile")
  30877. },
  30878. {
  30879. name: "Mt. Moon",
  30880. height: math.unit(5, "miles")
  30881. },
  30882. {
  30883. name: "Megamacro",
  30884. height: math.unit(15, "miles")
  30885. },
  30886. ]
  30887. ))
  30888. characterMakers.push(() => makeCharacter(
  30889. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  30890. {
  30891. back: {
  30892. height: math.unit(6, "feet"),
  30893. weight: math.unit(150, "lb"),
  30894. name: "Back",
  30895. image: {
  30896. source: "./media/characters/sylen/back.svg",
  30897. extra: 1335/1273,
  30898. bottom: 107/1442
  30899. }
  30900. },
  30901. },
  30902. [
  30903. {
  30904. name: "Normal",
  30905. height: math.unit(5 + 5/12, "feet")
  30906. },
  30907. {
  30908. name: "Megamacro",
  30909. height: math.unit(3, "miles"),
  30910. default: true
  30911. },
  30912. ]
  30913. ))
  30914. characterMakers.push(() => makeCharacter(
  30915. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  30916. {
  30917. front: {
  30918. height: math.unit(6, "feet"),
  30919. weight: math.unit(190, "lb"),
  30920. name: "Front",
  30921. image: {
  30922. source: "./media/characters/huttser/front.svg",
  30923. extra: 1152/1058,
  30924. bottom: 23/1175
  30925. }
  30926. },
  30927. side: {
  30928. height: math.unit(6, "feet"),
  30929. weight: math.unit(190, "lb"),
  30930. name: "Side",
  30931. image: {
  30932. source: "./media/characters/huttser/side.svg",
  30933. extra: 1174/1065,
  30934. bottom: 18/1192
  30935. }
  30936. },
  30937. back: {
  30938. height: math.unit(6, "feet"),
  30939. weight: math.unit(190, "lb"),
  30940. name: "Back",
  30941. image: {
  30942. source: "./media/characters/huttser/back.svg",
  30943. extra: 1158/1056,
  30944. bottom: 12/1170
  30945. }
  30946. },
  30947. },
  30948. [
  30949. ]
  30950. ))
  30951. characterMakers.push(() => makeCharacter(
  30952. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  30953. {
  30954. side: {
  30955. height: math.unit(12 + 9/12, "feet"),
  30956. weight: math.unit(15000, "lb"),
  30957. name: "Side",
  30958. image: {
  30959. source: "./media/characters/faan/side.svg",
  30960. extra: 2747/2697,
  30961. bottom: 0/2747
  30962. }
  30963. },
  30964. front: {
  30965. height: math.unit(12 + 9/12, "feet"),
  30966. weight: math.unit(15000, "lb"),
  30967. name: "Front",
  30968. image: {
  30969. source: "./media/characters/faan/front.svg",
  30970. extra: 607/571,
  30971. bottom: 24/631
  30972. }
  30973. },
  30974. head: {
  30975. height: math.unit(2.85, "feet"),
  30976. name: "Head",
  30977. image: {
  30978. source: "./media/characters/faan/head.svg"
  30979. }
  30980. },
  30981. headAlt: {
  30982. height: math.unit(3.13, "feet"),
  30983. name: "Head-alt",
  30984. image: {
  30985. source: "./media/characters/faan/head-alt.svg"
  30986. }
  30987. },
  30988. },
  30989. [
  30990. {
  30991. name: "Normal",
  30992. height: math.unit(12 + 9/12, "feet"),
  30993. default: true
  30994. },
  30995. ]
  30996. ))
  30997. characterMakers.push(() => makeCharacter(
  30998. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  30999. {
  31000. front: {
  31001. height: math.unit(6, "feet"),
  31002. weight: math.unit(300, "lb"),
  31003. name: "Front",
  31004. image: {
  31005. source: "./media/characters/tanio/front.svg",
  31006. extra: 711/673,
  31007. bottom: 25/736
  31008. }
  31009. },
  31010. },
  31011. [
  31012. {
  31013. name: "Normal",
  31014. height: math.unit(6, "feet"),
  31015. default: true
  31016. },
  31017. ]
  31018. ))
  31019. characterMakers.push(() => makeCharacter(
  31020. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31021. {
  31022. front: {
  31023. height: math.unit(3, "inches"),
  31024. name: "Front",
  31025. image: {
  31026. source: "./media/characters/noboru/front.svg",
  31027. extra: 1039/932,
  31028. bottom: 18/1057
  31029. }
  31030. },
  31031. },
  31032. [
  31033. {
  31034. name: "Micro",
  31035. height: math.unit(3, "inches"),
  31036. default: true
  31037. },
  31038. ]
  31039. ))
  31040. characterMakers.push(() => makeCharacter(
  31041. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31042. {
  31043. front: {
  31044. height: math.unit(1.85, "meters"),
  31045. weight: math.unit(80, "kg"),
  31046. name: "Front",
  31047. image: {
  31048. source: "./media/characters/daniel-barrett/front.svg",
  31049. extra: 355/337,
  31050. bottom: 9/364
  31051. }
  31052. },
  31053. },
  31054. [
  31055. {
  31056. name: "Pico",
  31057. height: math.unit(0.0433, "mm")
  31058. },
  31059. {
  31060. name: "Nano",
  31061. height: math.unit(1.5, "mm")
  31062. },
  31063. {
  31064. name: "Micro",
  31065. height: math.unit(5.3, "cm"),
  31066. default: true
  31067. },
  31068. {
  31069. name: "Normal",
  31070. height: math.unit(1.85, "meters")
  31071. },
  31072. {
  31073. name: "Macro",
  31074. height: math.unit(64.7, "meters")
  31075. },
  31076. {
  31077. name: "Megamacro",
  31078. height: math.unit(2.26, "km")
  31079. },
  31080. {
  31081. name: "Gigamacro",
  31082. height: math.unit(79, "km")
  31083. },
  31084. {
  31085. name: "Teramacro",
  31086. height: math.unit(2765, "km")
  31087. },
  31088. {
  31089. name: "Petamacro",
  31090. height: math.unit(96678, "km")
  31091. },
  31092. ]
  31093. ))
  31094. characterMakers.push(() => makeCharacter(
  31095. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31096. {
  31097. front: {
  31098. height: math.unit(30, "meters"),
  31099. weight: math.unit(400, "tons"),
  31100. name: "Front",
  31101. image: {
  31102. source: "./media/characters/zeel/front.svg",
  31103. extra: 2599/2599,
  31104. bottom: 226/2825
  31105. }
  31106. },
  31107. },
  31108. [
  31109. {
  31110. name: "Macro",
  31111. height: math.unit(30, "meters"),
  31112. default: true
  31113. },
  31114. ]
  31115. ))
  31116. characterMakers.push(() => makeCharacter(
  31117. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31118. {
  31119. front: {
  31120. height: math.unit(6 + 7/12, "feet"),
  31121. weight: math.unit(210, "lb"),
  31122. name: "Front",
  31123. image: {
  31124. source: "./media/characters/tarn/front.svg",
  31125. extra: 3517/3220,
  31126. bottom: 91/3608
  31127. }
  31128. },
  31129. back: {
  31130. height: math.unit(6 + 7/12, "feet"),
  31131. weight: math.unit(210, "lb"),
  31132. name: "Back",
  31133. image: {
  31134. source: "./media/characters/tarn/back.svg",
  31135. extra: 3566/3241,
  31136. bottom: 34/3600
  31137. }
  31138. },
  31139. dick: {
  31140. height: math.unit(1.65, "feet"),
  31141. name: "Dick",
  31142. image: {
  31143. source: "./media/characters/tarn/dick.svg"
  31144. }
  31145. },
  31146. paw: {
  31147. height: math.unit(1.80, "feet"),
  31148. name: "Paw",
  31149. image: {
  31150. source: "./media/characters/tarn/paw.svg"
  31151. }
  31152. },
  31153. tongue: {
  31154. height: math.unit(0.97, "feet"),
  31155. name: "Tongue",
  31156. image: {
  31157. source: "./media/characters/tarn/tongue.svg"
  31158. }
  31159. },
  31160. },
  31161. [
  31162. {
  31163. name: "Micro",
  31164. height: math.unit(4, "inches")
  31165. },
  31166. {
  31167. name: "Normal",
  31168. height: math.unit(6 + 7/12, "feet"),
  31169. default: true
  31170. },
  31171. {
  31172. name: "Macro",
  31173. height: math.unit(300, "feet")
  31174. },
  31175. ]
  31176. ))
  31177. characterMakers.push(() => makeCharacter(
  31178. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31179. {
  31180. front: {
  31181. height: math.unit(5 + 7/12, "feet"),
  31182. weight: math.unit(80, "kg"),
  31183. name: "Front",
  31184. image: {
  31185. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31186. extra: 3023/2865,
  31187. bottom: 33/3056
  31188. }
  31189. },
  31190. back: {
  31191. height: math.unit(5 + 7/12, "feet"),
  31192. weight: math.unit(80, "kg"),
  31193. name: "Back",
  31194. image: {
  31195. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31196. extra: 3020/2886,
  31197. bottom: 30/3050
  31198. }
  31199. },
  31200. dick: {
  31201. height: math.unit(0.98, "feet"),
  31202. name: "Dick",
  31203. image: {
  31204. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31205. }
  31206. },
  31207. anatomy: {
  31208. height: math.unit(2.86, "feet"),
  31209. name: "Anatomy",
  31210. image: {
  31211. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31212. }
  31213. },
  31214. },
  31215. [
  31216. {
  31217. name: "Really Small",
  31218. height: math.unit(2, "inches")
  31219. },
  31220. {
  31221. name: "Micro",
  31222. height: math.unit(5.583, "inches")
  31223. },
  31224. {
  31225. name: "Normal",
  31226. height: math.unit(5 + 7/12, "feet"),
  31227. default: true
  31228. },
  31229. {
  31230. name: "Macro",
  31231. height: math.unit(67, "feet")
  31232. },
  31233. {
  31234. name: "Megamacro",
  31235. height: math.unit(134, "feet")
  31236. },
  31237. ]
  31238. ))
  31239. characterMakers.push(() => makeCharacter(
  31240. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31241. {
  31242. front: {
  31243. height: math.unit(9, "feet"),
  31244. weight: math.unit(120, "lb"),
  31245. name: "Front",
  31246. image: {
  31247. source: "./media/characters/sally/front.svg",
  31248. extra: 1506/1349,
  31249. bottom: 66/1572
  31250. }
  31251. },
  31252. },
  31253. [
  31254. {
  31255. name: "Normal",
  31256. height: math.unit(9, "feet"),
  31257. default: true
  31258. },
  31259. ]
  31260. ))
  31261. characterMakers.push(() => makeCharacter(
  31262. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31263. {
  31264. front: {
  31265. height: math.unit(8, "feet"),
  31266. weight: math.unit(900, "lb"),
  31267. name: "Front",
  31268. image: {
  31269. source: "./media/characters/owen/front.svg",
  31270. extra: 1761/1657,
  31271. bottom: 74/1835
  31272. }
  31273. },
  31274. side: {
  31275. height: math.unit(8, "feet"),
  31276. weight: math.unit(900, "lb"),
  31277. name: "Side",
  31278. image: {
  31279. source: "./media/characters/owen/side.svg",
  31280. extra: 1797/1734,
  31281. bottom: 30/1827
  31282. }
  31283. },
  31284. back: {
  31285. height: math.unit(8, "feet"),
  31286. weight: math.unit(900, "lb"),
  31287. name: "Back",
  31288. image: {
  31289. source: "./media/characters/owen/back.svg",
  31290. extra: 1796/1706,
  31291. bottom: 59/1855
  31292. }
  31293. },
  31294. maw: {
  31295. height: math.unit(1.76, "feet"),
  31296. name: "Maw",
  31297. image: {
  31298. source: "./media/characters/owen/maw.svg"
  31299. }
  31300. },
  31301. },
  31302. [
  31303. {
  31304. name: "Normal",
  31305. height: math.unit(8, "feet"),
  31306. default: true
  31307. },
  31308. ]
  31309. ))
  31310. characterMakers.push(() => makeCharacter(
  31311. { name: "Ryth", species: ["gremlin"], tags: ["anthro"] },
  31312. {
  31313. front: {
  31314. height: math.unit(4, "feet"),
  31315. weight: math.unit(400, "lb"),
  31316. name: "Front",
  31317. image: {
  31318. source: "./media/characters/ryth/front.svg",
  31319. extra: 876/691,
  31320. bottom: 25/901
  31321. }
  31322. },
  31323. },
  31324. [
  31325. {
  31326. name: "Normal",
  31327. height: math.unit(4, "feet"),
  31328. default: true
  31329. },
  31330. ]
  31331. ))
  31332. characterMakers.push(() => makeCharacter(
  31333. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31334. {
  31335. front: {
  31336. height: math.unit(7, "feet"),
  31337. weight: math.unit(180, "lb"),
  31338. name: "Front",
  31339. image: {
  31340. source: "./media/characters/necrolance/front.svg",
  31341. extra: 1062/947,
  31342. bottom: 41/1103
  31343. }
  31344. },
  31345. back: {
  31346. height: math.unit(7, "feet"),
  31347. weight: math.unit(180, "lb"),
  31348. name: "Back",
  31349. image: {
  31350. source: "./media/characters/necrolance/back.svg",
  31351. extra: 1045/984,
  31352. bottom: 14/1059
  31353. }
  31354. },
  31355. wing: {
  31356. height: math.unit(2.67, "feet"),
  31357. name: "Wing",
  31358. image: {
  31359. source: "./media/characters/necrolance/wing.svg"
  31360. }
  31361. },
  31362. },
  31363. [
  31364. {
  31365. name: "Normal",
  31366. height: math.unit(7, "feet"),
  31367. default: true
  31368. },
  31369. ]
  31370. ))
  31371. characterMakers.push(() => makeCharacter(
  31372. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31373. {
  31374. front: {
  31375. height: math.unit(76, "meters"),
  31376. weight: math.unit(30000, "tons"),
  31377. name: "Front",
  31378. image: {
  31379. source: "./media/characters/tyler/front.svg",
  31380. extra: 1640/1640,
  31381. bottom: 114/1754
  31382. }
  31383. },
  31384. },
  31385. [
  31386. {
  31387. name: "Macro",
  31388. height: math.unit(76, "meters"),
  31389. default: true
  31390. },
  31391. ]
  31392. ))
  31393. characterMakers.push(() => makeCharacter(
  31394. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31395. {
  31396. front: {
  31397. height: math.unit(4 + 11/12, "feet"),
  31398. weight: math.unit(132, "lb"),
  31399. name: "Front",
  31400. image: {
  31401. source: "./media/characters/icey/front.svg",
  31402. extra: 2750/2550,
  31403. bottom: 33/2783
  31404. }
  31405. },
  31406. back: {
  31407. height: math.unit(4 + 11/12, "feet"),
  31408. weight: math.unit(132, "lb"),
  31409. name: "Back",
  31410. image: {
  31411. source: "./media/characters/icey/back.svg",
  31412. extra: 2624/2481,
  31413. bottom: 35/2659
  31414. }
  31415. },
  31416. },
  31417. [
  31418. {
  31419. name: "Normal",
  31420. height: math.unit(4 + 11/12, "feet"),
  31421. default: true
  31422. },
  31423. ]
  31424. ))
  31425. characterMakers.push(() => makeCharacter(
  31426. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31427. {
  31428. front: {
  31429. height: math.unit(100, "feet"),
  31430. weight: math.unit(0, "lb"),
  31431. name: "Front",
  31432. image: {
  31433. source: "./media/characters/smile/front.svg",
  31434. extra: 2983/2912,
  31435. bottom: 162/3145
  31436. }
  31437. },
  31438. back: {
  31439. height: math.unit(100, "feet"),
  31440. weight: math.unit(0, "lb"),
  31441. name: "Back",
  31442. image: {
  31443. source: "./media/characters/smile/back.svg",
  31444. extra: 3143/3031,
  31445. bottom: 91/3234
  31446. }
  31447. },
  31448. head: {
  31449. height: math.unit(26.3, "feet"),
  31450. weight: math.unit(0, "lb"),
  31451. name: "Head",
  31452. image: {
  31453. source: "./media/characters/smile/head.svg"
  31454. }
  31455. },
  31456. collar: {
  31457. height: math.unit(5.3, "feet"),
  31458. weight: math.unit(0, "lb"),
  31459. name: "Collar",
  31460. image: {
  31461. source: "./media/characters/smile/collar.svg"
  31462. }
  31463. },
  31464. },
  31465. [
  31466. {
  31467. name: "Macro",
  31468. height: math.unit(100, "feet"),
  31469. default: true
  31470. },
  31471. ]
  31472. ))
  31473. characterMakers.push(() => makeCharacter(
  31474. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31475. {
  31476. dragon: {
  31477. height: math.unit(26, "feet"),
  31478. weight: math.unit(36, "tons"),
  31479. name: "Dragon",
  31480. image: {
  31481. source: "./media/characters/arimphae/dragon.svg",
  31482. extra: 1574/983,
  31483. bottom: 357/1931
  31484. }
  31485. },
  31486. drake: {
  31487. height: math.unit(9, "feet"),
  31488. weight: math.unit(1.5, "tons"),
  31489. name: "Drake",
  31490. image: {
  31491. source: "./media/characters/arimphae/drake.svg",
  31492. extra: 1120/925,
  31493. bottom: 435/1555
  31494. }
  31495. },
  31496. },
  31497. [
  31498. {
  31499. name: "Small",
  31500. height: math.unit(26*5/9, "feet")
  31501. },
  31502. {
  31503. name: "Normal",
  31504. height: math.unit(26, "feet"),
  31505. default: true
  31506. },
  31507. ]
  31508. ))
  31509. characterMakers.push(() => makeCharacter(
  31510. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31511. {
  31512. front: {
  31513. height: math.unit(8 + 9/12, "feet"),
  31514. name: "Front",
  31515. image: {
  31516. source: "./media/characters/xander/front.svg",
  31517. extra: 848/673,
  31518. bottom: 62/910
  31519. }
  31520. },
  31521. },
  31522. [
  31523. {
  31524. name: "Normal",
  31525. height: math.unit(8 + 9/12, "feet"),
  31526. default: true
  31527. },
  31528. {
  31529. name: "Gaze Grabber",
  31530. height: math.unit(13 + 8/12, "feet")
  31531. },
  31532. {
  31533. name: "Jaw Dropper",
  31534. height: math.unit(27, "feet")
  31535. },
  31536. {
  31537. name: "Show Stopper",
  31538. height: math.unit(136, "feet")
  31539. },
  31540. {
  31541. name: "Superstar",
  31542. height: math.unit(1.9e6, "miles")
  31543. },
  31544. ]
  31545. ))
  31546. characterMakers.push(() => makeCharacter(
  31547. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31548. {
  31549. side: {
  31550. height: math.unit(2100, "feet"),
  31551. name: "Side",
  31552. image: {
  31553. source: "./media/characters/osiris/side.svg",
  31554. extra: 1105/939,
  31555. bottom: 167/1272
  31556. }
  31557. },
  31558. },
  31559. [
  31560. {
  31561. name: "Macro",
  31562. height: math.unit(2100, "feet"),
  31563. default: true
  31564. },
  31565. ]
  31566. ))
  31567. characterMakers.push(() => makeCharacter(
  31568. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31569. {
  31570. front: {
  31571. height: math.unit(6 + 8/12, "feet"),
  31572. weight: math.unit(225, "lb"),
  31573. name: "Front",
  31574. image: {
  31575. source: "./media/characters/rhys-londe/front.svg",
  31576. extra: 2258/2141,
  31577. bottom: 188/2446
  31578. }
  31579. },
  31580. back: {
  31581. height: math.unit(6 + 8/12, "feet"),
  31582. weight: math.unit(225, "lb"),
  31583. name: "Back",
  31584. image: {
  31585. source: "./media/characters/rhys-londe/back.svg",
  31586. extra: 2237/2137,
  31587. bottom: 63/2300
  31588. }
  31589. },
  31590. frontNsfw: {
  31591. height: math.unit(6 + 8/12, "feet"),
  31592. weight: math.unit(225, "lb"),
  31593. name: "Front (NSFW)",
  31594. image: {
  31595. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31596. extra: 2258/2141,
  31597. bottom: 188/2446
  31598. }
  31599. },
  31600. backNsfw: {
  31601. height: math.unit(6 + 8/12, "feet"),
  31602. weight: math.unit(225, "lb"),
  31603. name: "Back (NSFW)",
  31604. image: {
  31605. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31606. extra: 2237/2137,
  31607. bottom: 63/2300
  31608. }
  31609. },
  31610. dick: {
  31611. height: math.unit(30, "inches"),
  31612. name: "Dick",
  31613. image: {
  31614. source: "./media/characters/rhys-londe/dick.svg"
  31615. }
  31616. },
  31617. maw: {
  31618. height: math.unit(1.6, "feet"),
  31619. name: "Maw",
  31620. image: {
  31621. source: "./media/characters/rhys-londe/maw.svg"
  31622. }
  31623. },
  31624. },
  31625. [
  31626. {
  31627. name: "Normal",
  31628. height: math.unit(6 + 8/12, "feet"),
  31629. default: true
  31630. },
  31631. ]
  31632. ))
  31633. characterMakers.push(() => makeCharacter(
  31634. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31635. {
  31636. front: {
  31637. height: math.unit(3 + 10/12, "feet"),
  31638. weight: math.unit(90, "lb"),
  31639. name: "Front",
  31640. image: {
  31641. source: "./media/characters/taivas-ensim/front.svg",
  31642. extra: 1327/1216,
  31643. bottom: 96/1423
  31644. }
  31645. },
  31646. back: {
  31647. height: math.unit(3 + 10/12, "feet"),
  31648. weight: math.unit(90, "lb"),
  31649. name: "Back",
  31650. image: {
  31651. source: "./media/characters/taivas-ensim/back.svg",
  31652. extra: 1355/1247,
  31653. bottom: 11/1366
  31654. }
  31655. },
  31656. frontNsfw: {
  31657. height: math.unit(3 + 10/12, "feet"),
  31658. weight: math.unit(90, "lb"),
  31659. name: "Front (NSFW)",
  31660. image: {
  31661. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  31662. extra: 1327/1216,
  31663. bottom: 96/1423
  31664. }
  31665. },
  31666. backNsfw: {
  31667. height: math.unit(3 + 10/12, "feet"),
  31668. weight: math.unit(90, "lb"),
  31669. name: "Back (NSFW)",
  31670. image: {
  31671. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  31672. extra: 1355/1247,
  31673. bottom: 11/1366
  31674. }
  31675. },
  31676. },
  31677. [
  31678. {
  31679. name: "Normal",
  31680. height: math.unit(3 + 10/12, "feet"),
  31681. default: true
  31682. },
  31683. ]
  31684. ))
  31685. characterMakers.push(() => makeCharacter(
  31686. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  31687. {
  31688. front: {
  31689. height: math.unit(9 + 6/12, "feet"),
  31690. weight: math.unit(940, "lb"),
  31691. name: "Front",
  31692. image: {
  31693. source: "./media/characters/byliss/front.svg",
  31694. extra: 1327/1290,
  31695. bottom: 82/1409
  31696. }
  31697. },
  31698. back: {
  31699. height: math.unit(9 + 6/12, "feet"),
  31700. weight: math.unit(940, "lb"),
  31701. name: "Back",
  31702. image: {
  31703. source: "./media/characters/byliss/back.svg",
  31704. extra: 1376/1349,
  31705. bottom: 9/1385
  31706. }
  31707. },
  31708. frontNsfw: {
  31709. height: math.unit(9 + 6/12, "feet"),
  31710. weight: math.unit(940, "lb"),
  31711. name: "Front (NSFW)",
  31712. image: {
  31713. source: "./media/characters/byliss/front-nsfw.svg",
  31714. extra: 1327/1290,
  31715. bottom: 82/1409
  31716. }
  31717. },
  31718. backNsfw: {
  31719. height: math.unit(9 + 6/12, "feet"),
  31720. weight: math.unit(940, "lb"),
  31721. name: "Back (NSFW)",
  31722. image: {
  31723. source: "./media/characters/byliss/back-nsfw.svg",
  31724. extra: 1376/1349,
  31725. bottom: 9/1385
  31726. }
  31727. },
  31728. },
  31729. [
  31730. {
  31731. name: "Normal",
  31732. height: math.unit(9 + 6/12, "feet"),
  31733. default: true
  31734. },
  31735. ]
  31736. ))
  31737. characterMakers.push(() => makeCharacter(
  31738. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  31739. {
  31740. front: {
  31741. height: math.unit(5 + 2/12, "feet"),
  31742. weight: math.unit(200, "lb"),
  31743. name: "Front",
  31744. image: {
  31745. source: "./media/characters/noraly/front.svg",
  31746. extra: 4985/4773,
  31747. bottom: 150/5135
  31748. }
  31749. },
  31750. full: {
  31751. height: math.unit(5 + 2/12, "feet"),
  31752. weight: math.unit(164, "lb"),
  31753. name: "Full",
  31754. image: {
  31755. source: "./media/characters/noraly/full.svg",
  31756. extra: 1114/1059,
  31757. bottom: 35/1149
  31758. }
  31759. },
  31760. fuller: {
  31761. height: math.unit(5 + 2/12, "feet"),
  31762. weight: math.unit(230, "lb"),
  31763. name: "Fuller",
  31764. image: {
  31765. source: "./media/characters/noraly/fuller.svg",
  31766. extra: 1114/1059,
  31767. bottom: 35/1149
  31768. }
  31769. },
  31770. fullest: {
  31771. height: math.unit(5 + 2/12, "feet"),
  31772. weight: math.unit(300, "lb"),
  31773. name: "Fullest",
  31774. image: {
  31775. source: "./media/characters/noraly/fullest.svg",
  31776. extra: 1114/1059,
  31777. bottom: 35/1149
  31778. }
  31779. },
  31780. },
  31781. [
  31782. {
  31783. name: "Normal",
  31784. height: math.unit(5 + 2/12, "feet"),
  31785. default: true
  31786. },
  31787. ]
  31788. ))
  31789. characterMakers.push(() => makeCharacter(
  31790. { name: "Pera", species: ["snake"], tags: ["naga"] },
  31791. {
  31792. front: {
  31793. height: math.unit(5 + 2/12, "feet"),
  31794. weight: math.unit(210, "lb"),
  31795. name: "Front",
  31796. image: {
  31797. source: "./media/characters/pera/front.svg",
  31798. extra: 1560/1531,
  31799. bottom: 165/1725
  31800. }
  31801. },
  31802. back: {
  31803. height: math.unit(5 + 2/12, "feet"),
  31804. weight: math.unit(210, "lb"),
  31805. name: "Back",
  31806. image: {
  31807. source: "./media/characters/pera/back.svg",
  31808. extra: 1523/1493,
  31809. bottom: 152/1675
  31810. }
  31811. },
  31812. dick: {
  31813. height: math.unit(2.4, "feet"),
  31814. name: "Dick",
  31815. image: {
  31816. source: "./media/characters/pera/dick.svg"
  31817. }
  31818. },
  31819. },
  31820. [
  31821. {
  31822. name: "Normal",
  31823. height: math.unit(5 + 2/12, "feet"),
  31824. default: true
  31825. },
  31826. ]
  31827. ))
  31828. characterMakers.push(() => makeCharacter(
  31829. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  31830. {
  31831. front: {
  31832. height: math.unit(12, "feet"),
  31833. weight: math.unit(3200, "lb"),
  31834. name: "Front",
  31835. image: {
  31836. source: "./media/characters/julian/front.svg",
  31837. extra: 2962/2701,
  31838. bottom: 184/3146
  31839. }
  31840. },
  31841. maw: {
  31842. height: math.unit(5.35, "feet"),
  31843. name: "Maw",
  31844. image: {
  31845. source: "./media/characters/julian/maw.svg"
  31846. }
  31847. },
  31848. paw: {
  31849. height: math.unit(3.07, "feet"),
  31850. name: "Paw",
  31851. image: {
  31852. source: "./media/characters/julian/paw.svg"
  31853. }
  31854. },
  31855. },
  31856. [
  31857. {
  31858. name: "Default",
  31859. height: math.unit(12, "feet"),
  31860. default: true
  31861. },
  31862. {
  31863. name: "Big",
  31864. height: math.unit(50, "feet")
  31865. },
  31866. {
  31867. name: "Really Big",
  31868. height: math.unit(1, "mile")
  31869. },
  31870. {
  31871. name: "Extremely Big",
  31872. height: math.unit(100, "miles")
  31873. },
  31874. {
  31875. name: "Planet Hugger",
  31876. height: math.unit(200, "megameters")
  31877. },
  31878. {
  31879. name: "Unreasonably Big",
  31880. height: math.unit(1e300, "meters")
  31881. },
  31882. ]
  31883. ))
  31884. characterMakers.push(() => makeCharacter(
  31885. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  31886. {
  31887. solgooleo: {
  31888. height: math.unit(4, "meters"),
  31889. weight: math.unit(6000*1.5, "kg"),
  31890. volume: math.unit(6000, "liters"),
  31891. name: "Solgooleo",
  31892. image: {
  31893. source: "./media/characters/pi/solgooleo.svg",
  31894. extra: 388/331,
  31895. bottom: 29/417
  31896. }
  31897. },
  31898. },
  31899. [
  31900. {
  31901. name: "Normal",
  31902. height: math.unit(4, "meters"),
  31903. default: true
  31904. },
  31905. ]
  31906. ))
  31907. characterMakers.push(() => makeCharacter(
  31908. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  31909. {
  31910. front: {
  31911. height: math.unit(8 + 2/12, "feet"),
  31912. weight: math.unit(4, "tons"),
  31913. name: "Front",
  31914. image: {
  31915. source: "./media/characters/shaun/front.svg",
  31916. extra: 1550/1505,
  31917. bottom: 353/1903
  31918. }
  31919. },
  31920. },
  31921. [
  31922. {
  31923. name: "Lorg",
  31924. height: math.unit(8 + 2/12, "feet"),
  31925. default: true
  31926. },
  31927. ]
  31928. ))
  31929. characterMakers.push(() => makeCharacter(
  31930. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  31931. {
  31932. front: {
  31933. height: math.unit(7, "feet"),
  31934. name: "Front",
  31935. image: {
  31936. source: "./media/characters/sini/front.svg",
  31937. extra: 726/678,
  31938. bottom: 35/761
  31939. }
  31940. },
  31941. back: {
  31942. height: math.unit(7, "feet"),
  31943. name: "Back",
  31944. image: {
  31945. source: "./media/characters/sini/back.svg",
  31946. extra: 743/701,
  31947. bottom: 12/755
  31948. }
  31949. },
  31950. mawAnthro: {
  31951. height: math.unit(2.14, "feet"),
  31952. name: "Maw (Anthro)",
  31953. image: {
  31954. source: "./media/characters/sini/maw-anthro.svg"
  31955. }
  31956. },
  31957. dick: {
  31958. height: math.unit(1.45, "feet"),
  31959. name: "Dick (Anthro)",
  31960. image: {
  31961. source: "./media/characters/sini/dick-anthro.svg"
  31962. }
  31963. },
  31964. feral: {
  31965. height: math.unit(13, "feet"),
  31966. name: "Feral",
  31967. image: {
  31968. source: "./media/characters/sini/feral.svg",
  31969. extra: 814/605,
  31970. bottom: 11/825
  31971. }
  31972. },
  31973. mawFeral: {
  31974. height: math.unit(4.6, "feet"),
  31975. name: "Maw-feral",
  31976. image: {
  31977. source: "./media/characters/sini/maw-feral.svg"
  31978. }
  31979. },
  31980. footFeral: {
  31981. height: math.unit(4.2, "feet"),
  31982. name: "Foot-feral",
  31983. image: {
  31984. source: "./media/characters/sini/foot-feral.svg"
  31985. }
  31986. },
  31987. },
  31988. [
  31989. {
  31990. name: "Normal",
  31991. height: math.unit(7, "feet"),
  31992. default: true
  31993. },
  31994. ]
  31995. ))
  31996. characterMakers.push(() => makeCharacter(
  31997. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  31998. {
  31999. side: {
  32000. height: math.unit(13, "meters"),
  32001. weight: math.unit(9072, "kg"),
  32002. name: "Side",
  32003. image: {
  32004. source: "./media/characters/raylldo/side.svg",
  32005. extra: 403/344,
  32006. bottom: 42/445
  32007. }
  32008. },
  32009. leaping: {
  32010. height: math.unit(12.3, "meters"),
  32011. weight: math.unit(9072, "kg"),
  32012. name: "Leaping",
  32013. image: {
  32014. source: "./media/characters/raylldo/leaping.svg",
  32015. extra: 470/249,
  32016. bottom: 13/483
  32017. }
  32018. },
  32019. flying: {
  32020. height: math.unit(18, "meters"),
  32021. weight: math.unit(9072, "kg"),
  32022. name: "Flying",
  32023. image: {
  32024. source: "./media/characters/raylldo/flying.svg"
  32025. }
  32026. },
  32027. head: {
  32028. height: math.unit(5.85, "meters"),
  32029. name: "Head",
  32030. image: {
  32031. source: "./media/characters/raylldo/head.svg"
  32032. }
  32033. },
  32034. maw: {
  32035. height: math.unit(5.32, "meters"),
  32036. name: "Maw",
  32037. image: {
  32038. source: "./media/characters/raylldo/maw.svg"
  32039. }
  32040. },
  32041. eye: {
  32042. height: math.unit(0.54, "meters"),
  32043. name: "Eye",
  32044. image: {
  32045. source: "./media/characters/raylldo/eye.svg"
  32046. }
  32047. },
  32048. },
  32049. [
  32050. {
  32051. name: "Normal",
  32052. height: math.unit(13, "meters"),
  32053. default: true
  32054. },
  32055. ]
  32056. ))
  32057. characterMakers.push(() => makeCharacter(
  32058. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32059. {
  32060. anthroFront: {
  32061. height: math.unit(9, "feet"),
  32062. weight: math.unit(600, "lb"),
  32063. name: "Anthro (Front)",
  32064. image: {
  32065. source: "./media/characters/glint/anthro-front.svg",
  32066. extra: 1097/1018,
  32067. bottom: 28/1125
  32068. }
  32069. },
  32070. anthroBack: {
  32071. height: math.unit(9, "feet"),
  32072. weight: math.unit(600, "lb"),
  32073. name: "Anthro (Back)",
  32074. image: {
  32075. source: "./media/characters/glint/anthro-back.svg",
  32076. extra: 1154/997,
  32077. bottom: 36/1190
  32078. }
  32079. },
  32080. feral: {
  32081. height: math.unit(11, "feet"),
  32082. weight: math.unit(50000, "lb"),
  32083. name: "Feral",
  32084. image: {
  32085. source: "./media/characters/glint/feral.svg",
  32086. extra: 3035/1585,
  32087. bottom: 1169/4204
  32088. }
  32089. },
  32090. dickAnthro: {
  32091. height: math.unit(0.7, "meters"),
  32092. name: "Dick (Anthro)",
  32093. image: {
  32094. source: "./media/characters/glint/dick-anthro.svg"
  32095. }
  32096. },
  32097. dickFeral: {
  32098. height: math.unit(2.65, "meters"),
  32099. name: "Dick (Feral)",
  32100. image: {
  32101. source: "./media/characters/glint/dick-feral.svg"
  32102. }
  32103. },
  32104. slitHidden: {
  32105. height: math.unit(5.85, "meters"),
  32106. name: "Slit (Hidden)",
  32107. image: {
  32108. source: "./media/characters/glint/slit-hidden.svg"
  32109. }
  32110. },
  32111. slitErect: {
  32112. height: math.unit(5.85, "meters"),
  32113. name: "Slit (Erect)",
  32114. image: {
  32115. source: "./media/characters/glint/slit-erect.svg"
  32116. }
  32117. },
  32118. mawAnthro: {
  32119. height: math.unit(0.63, "meters"),
  32120. name: "Maw (Anthro)",
  32121. image: {
  32122. source: "./media/characters/glint/maw.svg"
  32123. }
  32124. },
  32125. mawFeral: {
  32126. height: math.unit(2.89, "meters"),
  32127. name: "Maw (Feral)",
  32128. image: {
  32129. source: "./media/characters/glint/maw.svg"
  32130. }
  32131. },
  32132. },
  32133. [
  32134. {
  32135. name: "Normal",
  32136. height: math.unit(9, "feet"),
  32137. default: true
  32138. },
  32139. ]
  32140. ))
  32141. characterMakers.push(() => makeCharacter(
  32142. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32143. {
  32144. side: {
  32145. height: math.unit(15, "feet"),
  32146. weight: math.unit(5000, "kg"),
  32147. name: "Side",
  32148. image: {
  32149. source: "./media/characters/kairne/side.svg",
  32150. extra: 979/811,
  32151. bottom: 13/992
  32152. }
  32153. },
  32154. front: {
  32155. height: math.unit(15, "feet"),
  32156. weight: math.unit(5000, "kg"),
  32157. name: "Front",
  32158. image: {
  32159. source: "./media/characters/kairne/front.svg",
  32160. extra: 908/814,
  32161. bottom: 26/934
  32162. }
  32163. },
  32164. sideNsfw: {
  32165. height: math.unit(15, "feet"),
  32166. weight: math.unit(5000, "kg"),
  32167. name: "Side (NSFW)",
  32168. image: {
  32169. source: "./media/characters/kairne/side-nsfw.svg",
  32170. extra: 979/811,
  32171. bottom: 13/992
  32172. }
  32173. },
  32174. frontNsfw: {
  32175. height: math.unit(15, "feet"),
  32176. weight: math.unit(5000, "kg"),
  32177. name: "Front (NSFW)",
  32178. image: {
  32179. source: "./media/characters/kairne/front-nsfw.svg",
  32180. extra: 908/814,
  32181. bottom: 26/934
  32182. }
  32183. },
  32184. dickCaged: {
  32185. height: math.unit(0.65, "meters"),
  32186. name: "Dick-caged",
  32187. image: {
  32188. source: "./media/characters/kairne/dick-caged.svg"
  32189. }
  32190. },
  32191. dick: {
  32192. height: math.unit(0.79, "meters"),
  32193. name: "Dick",
  32194. image: {
  32195. source: "./media/characters/kairne/dick.svg"
  32196. }
  32197. },
  32198. genitals: {
  32199. height: math.unit(1.29, "meters"),
  32200. name: "Genitals",
  32201. image: {
  32202. source: "./media/characters/kairne/genitals.svg"
  32203. }
  32204. },
  32205. maw: {
  32206. height: math.unit(1.73, "meters"),
  32207. name: "Maw",
  32208. image: {
  32209. source: "./media/characters/kairne/maw.svg"
  32210. }
  32211. },
  32212. },
  32213. [
  32214. {
  32215. name: "Normal",
  32216. height: math.unit(15, "feet"),
  32217. default: true
  32218. },
  32219. ]
  32220. ))
  32221. characterMakers.push(() => makeCharacter(
  32222. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32223. {
  32224. front: {
  32225. height: math.unit(5 + 8/12, "feet"),
  32226. weight: math.unit(139, "lb"),
  32227. name: "Front",
  32228. image: {
  32229. source: "./media/characters/biscuit-jackal/front.svg",
  32230. extra: 2106/1961,
  32231. bottom: 58/2164
  32232. }
  32233. },
  32234. back: {
  32235. height: math.unit(5 + 8/12, "feet"),
  32236. weight: math.unit(139, "lb"),
  32237. name: "Back",
  32238. image: {
  32239. source: "./media/characters/biscuit-jackal/back.svg",
  32240. extra: 2132/1976,
  32241. bottom: 57/2189
  32242. }
  32243. },
  32244. werejackal: {
  32245. height: math.unit(6 + 3/12, "feet"),
  32246. weight: math.unit(188, "lb"),
  32247. name: "Werejackal",
  32248. image: {
  32249. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32250. extra: 2373/2178,
  32251. bottom: 53/2426
  32252. }
  32253. },
  32254. },
  32255. [
  32256. {
  32257. name: "Normal",
  32258. height: math.unit(5 + 8/12, "feet"),
  32259. default: true
  32260. },
  32261. ]
  32262. ))
  32263. characterMakers.push(() => makeCharacter(
  32264. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32265. {
  32266. front: {
  32267. height: math.unit(140, "cm"),
  32268. weight: math.unit(45, "kg"),
  32269. name: "Front",
  32270. image: {
  32271. source: "./media/characters/tayra-white/front.svg",
  32272. extra: 2229/2192,
  32273. bottom: 75/2304
  32274. }
  32275. },
  32276. },
  32277. [
  32278. {
  32279. name: "Normal",
  32280. height: math.unit(140, "cm"),
  32281. default: true
  32282. },
  32283. ]
  32284. ))
  32285. characterMakers.push(() => makeCharacter(
  32286. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32287. {
  32288. front: {
  32289. height: math.unit(4 + 5/12, "feet"),
  32290. name: "Front",
  32291. image: {
  32292. source: "./media/characters/scoop/front.svg",
  32293. extra: 1257/1136,
  32294. bottom: 69/1326
  32295. }
  32296. },
  32297. back: {
  32298. height: math.unit(4 + 5/12, "feet"),
  32299. name: "Back",
  32300. image: {
  32301. source: "./media/characters/scoop/back.svg",
  32302. extra: 1321/1152,
  32303. bottom: 32/1353
  32304. }
  32305. },
  32306. maw: {
  32307. height: math.unit(0.68, "feet"),
  32308. name: "Maw",
  32309. image: {
  32310. source: "./media/characters/scoop/maw.svg"
  32311. }
  32312. },
  32313. },
  32314. [
  32315. {
  32316. name: "Really Small",
  32317. height: math.unit(1, "mm")
  32318. },
  32319. {
  32320. name: "Micro",
  32321. height: math.unit(1, "inch")
  32322. },
  32323. {
  32324. name: "Normal",
  32325. height: math.unit(4 + 5/12, "feet"),
  32326. default: true
  32327. },
  32328. {
  32329. name: "Macro",
  32330. height: math.unit(200, "feet")
  32331. },
  32332. {
  32333. name: "Megamacro",
  32334. height: math.unit(3240, "feet")
  32335. },
  32336. {
  32337. name: "Teramacro",
  32338. height: math.unit(2500, "miles")
  32339. },
  32340. ]
  32341. ))
  32342. characterMakers.push(() => makeCharacter(
  32343. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32344. {
  32345. front: {
  32346. height: math.unit(15 + 7/12, "feet"),
  32347. name: "Front",
  32348. image: {
  32349. source: "./media/characters/saphinara/front.svg",
  32350. extra: 604/546,
  32351. bottom: 19/623
  32352. }
  32353. },
  32354. side: {
  32355. height: math.unit(15 + 7/12, "feet"),
  32356. name: "Side",
  32357. image: {
  32358. source: "./media/characters/saphinara/side.svg",
  32359. extra: 605/547,
  32360. bottom: 6/611
  32361. }
  32362. },
  32363. back: {
  32364. height: math.unit(15 + 7/12, "feet"),
  32365. name: "Back",
  32366. image: {
  32367. source: "./media/characters/saphinara/back.svg",
  32368. extra: 591/531,
  32369. bottom: 13/604
  32370. }
  32371. },
  32372. frontTail: {
  32373. height: math.unit(15 + 7/12, "feet"),
  32374. name: "Front (Full Tail)",
  32375. image: {
  32376. source: "./media/characters/saphinara/front-tail.svg",
  32377. extra: 748/547,
  32378. bottom: 66/814
  32379. }
  32380. },
  32381. },
  32382. [
  32383. {
  32384. name: "Normal",
  32385. height: math.unit(15 + 7/12, "feet"),
  32386. default: true
  32387. },
  32388. {
  32389. name: "Angry",
  32390. height: math.unit(30 + 6/12, "feet")
  32391. },
  32392. {
  32393. name: "Enraged",
  32394. height: math.unit(102 + 1/12, "feet")
  32395. },
  32396. ]
  32397. ))
  32398. characterMakers.push(() => makeCharacter(
  32399. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32400. {
  32401. front: {
  32402. height: math.unit(6 + 8/12, "feet"),
  32403. weight: math.unit(300, "lb"),
  32404. name: "Front",
  32405. image: {
  32406. source: "./media/characters/jrain/front.svg",
  32407. extra: 3039/2865,
  32408. bottom: 399/3438
  32409. }
  32410. },
  32411. back: {
  32412. height: math.unit(6 + 8/12, "feet"),
  32413. weight: math.unit(300, "lb"),
  32414. name: "Back",
  32415. image: {
  32416. source: "./media/characters/jrain/back.svg",
  32417. extra: 3089/2938,
  32418. bottom: 172/3261
  32419. }
  32420. },
  32421. head: {
  32422. height: math.unit(2.14, "feet"),
  32423. name: "Head",
  32424. image: {
  32425. source: "./media/characters/jrain/head.svg"
  32426. }
  32427. },
  32428. maw: {
  32429. height: math.unit(1.77, "feet"),
  32430. name: "Maw",
  32431. image: {
  32432. source: "./media/characters/jrain/maw.svg"
  32433. }
  32434. },
  32435. leftHand: {
  32436. height: math.unit(1.1, "feet"),
  32437. name: "Left Hand",
  32438. image: {
  32439. source: "./media/characters/jrain/left-hand.svg"
  32440. }
  32441. },
  32442. rightHand: {
  32443. height: math.unit(1.1, "feet"),
  32444. name: "Right Hand",
  32445. image: {
  32446. source: "./media/characters/jrain/right-hand.svg"
  32447. }
  32448. },
  32449. eye: {
  32450. height: math.unit(0.35, "feet"),
  32451. name: "Eye",
  32452. image: {
  32453. source: "./media/characters/jrain/eye.svg"
  32454. }
  32455. },
  32456. },
  32457. [
  32458. {
  32459. name: "Normal",
  32460. height: math.unit(6 + 8/12, "feet"),
  32461. default: true
  32462. },
  32463. {
  32464. name: "Casually Large",
  32465. height: math.unit(25, "feet")
  32466. },
  32467. {
  32468. name: "Giant",
  32469. height: math.unit(100, "feet")
  32470. },
  32471. {
  32472. name: "Kaiju",
  32473. height: math.unit(300, "feet")
  32474. },
  32475. ]
  32476. ))
  32477. characterMakers.push(() => makeCharacter(
  32478. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32479. {
  32480. dragon: {
  32481. height: math.unit(5, "meters"),
  32482. name: "Dragon",
  32483. image: {
  32484. source: "./media/characters/sabrina/dragon.svg",
  32485. extra: 3670 / 2365,
  32486. bottom: 333 / 4003
  32487. }
  32488. },
  32489. gryphon: {
  32490. height: math.unit(3, "meters"),
  32491. name: "Gryphon",
  32492. image: {
  32493. source: "./media/characters/sabrina/gryphon.svg",
  32494. extra: 1576 / 945,
  32495. bottom: 71 / 1647
  32496. }
  32497. },
  32498. snake: {
  32499. height: math.unit(12, "meters"),
  32500. name: "Snake",
  32501. image: {
  32502. source: "./media/characters/sabrina/snake.svg",
  32503. extra: 1758 / 1320,
  32504. bottom: 186 / 1944
  32505. }
  32506. },
  32507. collar: {
  32508. height: math.unit(1.86, "meters"),
  32509. name: "Collar",
  32510. image: {
  32511. source: "./media/characters/sabrina/collar.svg"
  32512. }
  32513. },
  32514. eye: {
  32515. height: math.unit(0.53, "meters"),
  32516. name: "Eye",
  32517. image: {
  32518. source: "./media/characters/sabrina/eye.svg"
  32519. }
  32520. },
  32521. foot: {
  32522. height: math.unit(1.86, "meters"),
  32523. name: "Foot",
  32524. image: {
  32525. source: "./media/characters/sabrina/foot.svg"
  32526. }
  32527. },
  32528. hand: {
  32529. height: math.unit(1.32, "meters"),
  32530. name: "Hand",
  32531. image: {
  32532. source: "./media/characters/sabrina/hand.svg"
  32533. }
  32534. },
  32535. head: {
  32536. height: math.unit(2.44, "meters"),
  32537. name: "Head",
  32538. image: {
  32539. source: "./media/characters/sabrina/head.svg"
  32540. }
  32541. },
  32542. headAngry: {
  32543. height: math.unit(2.44, "meters"),
  32544. name: "Head (Angry))",
  32545. image: {
  32546. source: "./media/characters/sabrina/head-angry.svg"
  32547. }
  32548. },
  32549. maw: {
  32550. height: math.unit(1.65, "meters"),
  32551. name: "Maw",
  32552. image: {
  32553. source: "./media/characters/sabrina/maw.svg"
  32554. }
  32555. },
  32556. spikes: {
  32557. height: math.unit(1.69, "meters"),
  32558. name: "Spikes",
  32559. image: {
  32560. source: "./media/characters/sabrina/spikes.svg"
  32561. }
  32562. },
  32563. stomach: {
  32564. height: math.unit(1.15, "meters"),
  32565. name: "Stomach",
  32566. image: {
  32567. source: "./media/characters/sabrina/stomach.svg"
  32568. }
  32569. },
  32570. tongue: {
  32571. height: math.unit(1.27, "meters"),
  32572. name: "Tongue",
  32573. image: {
  32574. source: "./media/characters/sabrina/tongue.svg"
  32575. }
  32576. },
  32577. wingDorsal: {
  32578. height: math.unit(4.85, "meters"),
  32579. name: "Wing (Dorsal)",
  32580. image: {
  32581. source: "./media/characters/sabrina/wing-dorsal.svg"
  32582. }
  32583. },
  32584. wingVentral: {
  32585. height: math.unit(4.85, "meters"),
  32586. name: "Wing (Ventral)",
  32587. image: {
  32588. source: "./media/characters/sabrina/wing-ventral.svg"
  32589. }
  32590. },
  32591. },
  32592. [
  32593. {
  32594. name: "Normal",
  32595. height: math.unit(5, "meters"),
  32596. default: true
  32597. },
  32598. ]
  32599. ))
  32600. characterMakers.push(() => makeCharacter(
  32601. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  32602. {
  32603. frontMaid: {
  32604. height: math.unit(5 + 5/12, "feet"),
  32605. weight: math.unit(130, "lb"),
  32606. name: "Front (Maid)",
  32607. image: {
  32608. source: "./media/characters/midnight-tales/front-maid.svg",
  32609. extra: 489/454,
  32610. bottom: 61/550
  32611. }
  32612. },
  32613. frontFormal: {
  32614. height: math.unit(5 + 5/12, "feet"),
  32615. weight: math.unit(130, "lb"),
  32616. name: "Front (Formal)",
  32617. image: {
  32618. source: "./media/characters/midnight-tales/front-formal.svg",
  32619. extra: 489/454,
  32620. bottom: 61/550
  32621. }
  32622. },
  32623. back: {
  32624. height: math.unit(5 + 5/12, "feet"),
  32625. weight: math.unit(130, "lb"),
  32626. name: "Back",
  32627. image: {
  32628. source: "./media/characters/midnight-tales/back.svg",
  32629. extra: 498/456,
  32630. bottom: 33/531
  32631. }
  32632. },
  32633. frontBeast: {
  32634. height: math.unit(40, "feet"),
  32635. weight: math.unit(64000, "lb"),
  32636. name: "Front (Beast)",
  32637. image: {
  32638. source: "./media/characters/midnight-tales/front-beast.svg",
  32639. extra: 927/860,
  32640. bottom: 53/980
  32641. }
  32642. },
  32643. backBeast: {
  32644. height: math.unit(40, "feet"),
  32645. weight: math.unit(64000, "lb"),
  32646. name: "Back (Beast)",
  32647. image: {
  32648. source: "./media/characters/midnight-tales/back-beast.svg",
  32649. extra: 929/855,
  32650. bottom: 16/945
  32651. }
  32652. },
  32653. footBeast: {
  32654. height: math.unit(6.7, "feet"),
  32655. name: "Foot (Beast)",
  32656. image: {
  32657. source: "./media/characters/midnight-tales/foot-beast.svg"
  32658. }
  32659. },
  32660. headBeast: {
  32661. height: math.unit(8, "feet"),
  32662. name: "Head (Beast)",
  32663. image: {
  32664. source: "./media/characters/midnight-tales/head-beast.svg"
  32665. }
  32666. },
  32667. },
  32668. [
  32669. {
  32670. name: "Normal",
  32671. height: math.unit(5 + 5 / 12, "feet"),
  32672. default: true
  32673. },
  32674. {
  32675. name: "Macro",
  32676. height: math.unit(25, "feet")
  32677. },
  32678. ]
  32679. ))
  32680. characterMakers.push(() => makeCharacter(
  32681. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  32682. {
  32683. front: {
  32684. height: math.unit(5 + 10/12, "feet"),
  32685. name: "Front",
  32686. image: {
  32687. source: "./media/characters/argon/front.svg",
  32688. extra: 2009/1935,
  32689. bottom: 118/2127
  32690. }
  32691. },
  32692. back: {
  32693. height: math.unit(5 + 10/12, "feet"),
  32694. name: "Back",
  32695. image: {
  32696. source: "./media/characters/argon/back.svg",
  32697. extra: 2047/1992,
  32698. bottom: 20/2067
  32699. }
  32700. },
  32701. frontDressed: {
  32702. height: math.unit(5 + 10/12, "feet"),
  32703. name: "Front (Dressed)",
  32704. image: {
  32705. source: "./media/characters/argon/front-dressed.svg",
  32706. extra: 2009/1935,
  32707. bottom: 118/2127
  32708. }
  32709. },
  32710. },
  32711. [
  32712. {
  32713. name: "Normal",
  32714. height: math.unit(5 + 10/12, "feet"),
  32715. default: true
  32716. },
  32717. ]
  32718. ))
  32719. characterMakers.push(() => makeCharacter(
  32720. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  32721. {
  32722. front: {
  32723. height: math.unit(8 + 6/12, "feet"),
  32724. weight: math.unit(1150, "lb"),
  32725. name: "Front",
  32726. image: {
  32727. source: "./media/characters/kichi/front.svg",
  32728. extra: 1267/1164,
  32729. bottom: 61/1328
  32730. }
  32731. },
  32732. back: {
  32733. height: math.unit(8 + 6/12, "feet"),
  32734. weight: math.unit(1150, "lb"),
  32735. name: "Back",
  32736. image: {
  32737. source: "./media/characters/kichi/back.svg",
  32738. extra: 1273/1166,
  32739. bottom: 33/1306
  32740. }
  32741. },
  32742. },
  32743. [
  32744. {
  32745. name: "Normal",
  32746. height: math.unit(8 + 6/12, "feet"),
  32747. default: true
  32748. },
  32749. ]
  32750. ))
  32751. characterMakers.push(() => makeCharacter(
  32752. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  32753. {
  32754. front: {
  32755. height: math.unit(6, "feet"),
  32756. weight: math.unit(210, "lb"),
  32757. name: "Front",
  32758. image: {
  32759. source: "./media/characters/manetel-greyscale/front.svg",
  32760. extra: 350/312,
  32761. bottom: 8/358
  32762. }
  32763. },
  32764. },
  32765. [
  32766. {
  32767. name: "Micro",
  32768. height: math.unit(2, "inches")
  32769. },
  32770. {
  32771. name: "Normal",
  32772. height: math.unit(6, "feet"),
  32773. default: true
  32774. },
  32775. {
  32776. name: "Minimacro",
  32777. height: math.unit(17, "feet")
  32778. },
  32779. {
  32780. name: "Macro",
  32781. height: math.unit(117, "feet")
  32782. },
  32783. ]
  32784. ))
  32785. characterMakers.push(() => makeCharacter(
  32786. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  32787. {
  32788. side: {
  32789. height: math.unit(5 + 1/12, "feet"),
  32790. weight: math.unit(418, "lb"),
  32791. name: "Side",
  32792. image: {
  32793. source: "./media/characters/softpurr/side.svg",
  32794. extra: 1993/1945,
  32795. bottom: 134/2127
  32796. }
  32797. },
  32798. front: {
  32799. height: math.unit(5 + 1/12, "feet"),
  32800. weight: math.unit(418, "lb"),
  32801. name: "Front",
  32802. image: {
  32803. source: "./media/characters/softpurr/front.svg",
  32804. extra: 1950/1856,
  32805. bottom: 174/2124
  32806. }
  32807. },
  32808. paw: {
  32809. height: math.unit(1, "feet"),
  32810. name: "Paw",
  32811. image: {
  32812. source: "./media/characters/softpurr/paw.svg"
  32813. }
  32814. },
  32815. },
  32816. [
  32817. {
  32818. name: "Normal",
  32819. height: math.unit(5 + 1/12, "feet"),
  32820. default: true
  32821. },
  32822. ]
  32823. ))
  32824. characterMakers.push(() => makeCharacter(
  32825. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  32826. {
  32827. front: {
  32828. height: math.unit(260, "meters"),
  32829. name: "Front",
  32830. image: {
  32831. source: "./media/characters/anahita/front.svg",
  32832. extra: 665/635,
  32833. bottom: 89/754
  32834. }
  32835. },
  32836. },
  32837. [
  32838. {
  32839. name: "Macro",
  32840. height: math.unit(260, "meters"),
  32841. default: true
  32842. },
  32843. ]
  32844. ))
  32845. characterMakers.push(() => makeCharacter(
  32846. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  32847. {
  32848. front: {
  32849. height: math.unit(4 + 10/12, "feet"),
  32850. weight: math.unit(160, "lb"),
  32851. name: "Front",
  32852. image: {
  32853. source: "./media/characters/chip-mouse/front.svg",
  32854. extra: 3528/3408,
  32855. bottom: 0/3528
  32856. }
  32857. },
  32858. frontNsfw: {
  32859. height: math.unit(4 + 10/12, "feet"),
  32860. weight: math.unit(160, "lb"),
  32861. name: "Front (NSFW)",
  32862. image: {
  32863. source: "./media/characters/chip-mouse/front-nsfw.svg",
  32864. extra: 3528/3408,
  32865. bottom: 0/3528
  32866. }
  32867. },
  32868. },
  32869. [
  32870. {
  32871. name: "Normal",
  32872. height: math.unit(4 + 10/12, "feet"),
  32873. default: true
  32874. },
  32875. ]
  32876. ))
  32877. characterMakers.push(() => makeCharacter(
  32878. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  32879. {
  32880. side: {
  32881. height: math.unit(10, "feet"),
  32882. weight: math.unit(14000, "lb"),
  32883. name: "Side",
  32884. image: {
  32885. source: "./media/characters/kremm/side.svg",
  32886. extra: 1390/1053,
  32887. bottom: 90/1480
  32888. }
  32889. },
  32890. gut: {
  32891. height: math.unit(5.8, "feet"),
  32892. name: "Gut",
  32893. image: {
  32894. source: "./media/characters/kremm/gut.svg"
  32895. }
  32896. },
  32897. ass: {
  32898. height: math.unit(6.1, "feet"),
  32899. name: "Ass",
  32900. image: {
  32901. source: "./media/characters/kremm/ass.svg"
  32902. }
  32903. },
  32904. jaws: {
  32905. height: math.unit(2.2, "feet"),
  32906. name: "Jaws",
  32907. image: {
  32908. source: "./media/characters/kremm/jaws.svg"
  32909. }
  32910. },
  32911. dick: {
  32912. height: math.unit(4.26, "feet"),
  32913. name: "Dick",
  32914. image: {
  32915. source: "./media/characters/kremm/dick.svg"
  32916. }
  32917. },
  32918. },
  32919. [
  32920. {
  32921. name: "Normal",
  32922. height: math.unit(10, "feet"),
  32923. default: true
  32924. },
  32925. ]
  32926. ))
  32927. characterMakers.push(() => makeCharacter(
  32928. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  32929. {
  32930. front: {
  32931. height: math.unit(30, "stories"),
  32932. name: "Front",
  32933. image: {
  32934. source: "./media/characters/kai/front.svg",
  32935. extra: 1892/1718,
  32936. bottom: 162/2054
  32937. }
  32938. },
  32939. },
  32940. [
  32941. {
  32942. name: "Macro",
  32943. height: math.unit(30, "stories"),
  32944. default: true
  32945. },
  32946. ]
  32947. ))
  32948. characterMakers.push(() => makeCharacter(
  32949. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  32950. {
  32951. front: {
  32952. height: math.unit(6 + 4/12, "feet"),
  32953. weight: math.unit(145, "lb"),
  32954. name: "Front",
  32955. image: {
  32956. source: "./media/characters/sykes/front.svg",
  32957. extra: 1321 / 1187,
  32958. bottom: 66 / 1387
  32959. }
  32960. },
  32961. back: {
  32962. height: math.unit(6 + 4/12, "feet"),
  32963. weight: math.unit(145, "lb"),
  32964. name: "Back",
  32965. image: {
  32966. source: "./media/characters/sykes/back.svg",
  32967. extra: 1326/1181,
  32968. bottom: 31/1357
  32969. }
  32970. },
  32971. handBack: {
  32972. height: math.unit(0.9, "feet"),
  32973. name: "Hand (Back)",
  32974. image: {
  32975. source: "./media/characters/sykes/hand-back.svg"
  32976. }
  32977. },
  32978. handFront: {
  32979. height: math.unit(0.839, "feet"),
  32980. name: "Hand (Front)",
  32981. image: {
  32982. source: "./media/characters/sykes/hand-front.svg"
  32983. }
  32984. },
  32985. leftFoot: {
  32986. height: math.unit(1.2, "feet"),
  32987. name: "Foot (Left)",
  32988. image: {
  32989. source: "./media/characters/sykes/foot-left.svg"
  32990. }
  32991. },
  32992. rightFoot: {
  32993. height: math.unit(1.2, "feet"),
  32994. name: "Foot (Right)",
  32995. image: {
  32996. source: "./media/characters/sykes/foot-right.svg"
  32997. }
  32998. },
  32999. maw: {
  33000. height: math.unit(1.93, "feet"),
  33001. name: "Maw",
  33002. image: {
  33003. source: "./media/characters/sykes/maw.svg"
  33004. }
  33005. },
  33006. teeth: {
  33007. height: math.unit(0.51, "feet"),
  33008. name: "Teeth",
  33009. image: {
  33010. source: "./media/characters/sykes/teeth.svg"
  33011. }
  33012. },
  33013. tongue: {
  33014. height: math.unit(2.13, "feet"),
  33015. name: "Tongue",
  33016. image: {
  33017. source: "./media/characters/sykes/tongue.svg"
  33018. }
  33019. },
  33020. uvula: {
  33021. height: math.unit(0.16, "feet"),
  33022. name: "Uvula",
  33023. image: {
  33024. source: "./media/characters/sykes/uvula.svg"
  33025. }
  33026. },
  33027. collar: {
  33028. height: math.unit(0.287, "feet"),
  33029. name: "Collar",
  33030. image: {
  33031. source: "./media/characters/sykes/collar.svg"
  33032. }
  33033. },
  33034. },
  33035. [
  33036. {
  33037. name: "Shrunken",
  33038. height: math.unit(5, "inches")
  33039. },
  33040. {
  33041. name: "Normal",
  33042. height: math.unit(6 + 4 / 12, "feet"),
  33043. default: true
  33044. },
  33045. {
  33046. name: "Big",
  33047. height: math.unit(15, "feet")
  33048. },
  33049. ]
  33050. ))
  33051. characterMakers.push(() => makeCharacter(
  33052. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33053. {
  33054. front: {
  33055. height: math.unit(5 + 8/12, "feet"),
  33056. weight: math.unit(190, "lb"),
  33057. name: "Front",
  33058. image: {
  33059. source: "./media/characters/oven-otter/front.svg",
  33060. extra: 1809/1740,
  33061. bottom: 181/1990
  33062. }
  33063. },
  33064. back: {
  33065. height: math.unit(5 + 8/12, "feet"),
  33066. weight: math.unit(190, "lb"),
  33067. name: "Back",
  33068. image: {
  33069. source: "./media/characters/oven-otter/back.svg",
  33070. extra: 1709/1635,
  33071. bottom: 118/1827
  33072. }
  33073. },
  33074. hand: {
  33075. height: math.unit(1.07, "feet"),
  33076. name: "Hand",
  33077. image: {
  33078. source: "./media/characters/oven-otter/hand.svg"
  33079. }
  33080. },
  33081. beans: {
  33082. height: math.unit(1.74, "feet"),
  33083. name: "Beans",
  33084. image: {
  33085. source: "./media/characters/oven-otter/beans.svg"
  33086. }
  33087. },
  33088. },
  33089. [
  33090. {
  33091. name: "Micro",
  33092. height: math.unit(0.5, "inches")
  33093. },
  33094. {
  33095. name: "Normal",
  33096. height: math.unit(5 + 8/12, "feet"),
  33097. default: true
  33098. },
  33099. {
  33100. name: "Macro",
  33101. height: math.unit(250, "feet")
  33102. },
  33103. {
  33104. name: "Really High",
  33105. height: math.unit(420, "feet")
  33106. },
  33107. ]
  33108. ))
  33109. characterMakers.push(() => makeCharacter(
  33110. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33111. {
  33112. front: {
  33113. height: math.unit(5, "meters"),
  33114. weight: math.unit(292000000000000, "kg"),
  33115. name: "Front",
  33116. image: {
  33117. source: "./media/characters/devourer/front.svg",
  33118. extra: 1800/1733,
  33119. bottom: 211/2011
  33120. }
  33121. },
  33122. maw: {
  33123. height: math.unit(1.1, "meter"),
  33124. name: "Maw",
  33125. image: {
  33126. source: "./media/characters/devourer/maw.svg"
  33127. }
  33128. },
  33129. },
  33130. [
  33131. {
  33132. name: "Small",
  33133. height: math.unit(3, "meters")
  33134. },
  33135. {
  33136. name: "Large",
  33137. height: math.unit(5, "meters"),
  33138. default: true
  33139. },
  33140. ]
  33141. ))
  33142. characterMakers.push(() => makeCharacter(
  33143. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33144. {
  33145. front: {
  33146. height: math.unit(6, "feet"),
  33147. weight: math.unit(400, "lb"),
  33148. name: "Front",
  33149. image: {
  33150. source: "./media/characters/ellarby/front.svg",
  33151. extra: 1909/1763,
  33152. bottom: 80/1989
  33153. }
  33154. },
  33155. back: {
  33156. height: math.unit(6, "feet"),
  33157. weight: math.unit(400, "lb"),
  33158. name: "Back",
  33159. image: {
  33160. source: "./media/characters/ellarby/back.svg",
  33161. extra: 1914/1784,
  33162. bottom: 172/2086
  33163. }
  33164. },
  33165. },
  33166. [
  33167. {
  33168. name: "Mischief",
  33169. height: math.unit(18, "inches")
  33170. },
  33171. {
  33172. name: "Trouble",
  33173. height: math.unit(12, "feet")
  33174. },
  33175. {
  33176. name: "Havoc",
  33177. height: math.unit(200, "feet"),
  33178. default: true
  33179. },
  33180. {
  33181. name: "Pandemonium",
  33182. height: math.unit(1, "mile")
  33183. },
  33184. {
  33185. name: "Catastrophe",
  33186. height: math.unit(100, "miles")
  33187. },
  33188. ]
  33189. ))
  33190. characterMakers.push(() => makeCharacter(
  33191. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33192. {
  33193. front: {
  33194. height: math.unit(4.7, "meters"),
  33195. weight: math.unit(6500, "kg"),
  33196. name: "Front",
  33197. image: {
  33198. source: "./media/characters/vex/front.svg",
  33199. extra: 1288/1140,
  33200. bottom: 100/1388
  33201. }
  33202. },
  33203. },
  33204. [
  33205. {
  33206. name: "Normal",
  33207. height: math.unit(4.7, "meters"),
  33208. default: true
  33209. },
  33210. ]
  33211. ))
  33212. characterMakers.push(() => makeCharacter(
  33213. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33214. {
  33215. normal: {
  33216. height: math.unit(6, "feet"),
  33217. weight: math.unit(350, "lb"),
  33218. name: "Normal",
  33219. image: {
  33220. source: "./media/characters/teshy/normal.svg",
  33221. extra: 1795/1735,
  33222. bottom: 16/1811
  33223. }
  33224. },
  33225. monsterFront: {
  33226. height: math.unit(12, "feet"),
  33227. weight: math.unit(4700, "lb"),
  33228. name: "Monster (Front)",
  33229. image: {
  33230. source: "./media/characters/teshy/monster-front.svg",
  33231. extra: 2042/2034,
  33232. bottom: 128/2170
  33233. }
  33234. },
  33235. monsterSide: {
  33236. height: math.unit(12, "feet"),
  33237. weight: math.unit(4700, "lb"),
  33238. name: "Monster (Side)",
  33239. image: {
  33240. source: "./media/characters/teshy/monster-side.svg",
  33241. extra: 2067/2056,
  33242. bottom: 70/2137
  33243. }
  33244. },
  33245. monsterBack: {
  33246. height: math.unit(12, "feet"),
  33247. weight: math.unit(4700, "lb"),
  33248. name: "Monster (Back)",
  33249. image: {
  33250. source: "./media/characters/teshy/monster-back.svg",
  33251. extra: 1921/1914,
  33252. bottom: 171/2092
  33253. }
  33254. },
  33255. },
  33256. [
  33257. {
  33258. name: "Normal",
  33259. height: math.unit(6, "feet"),
  33260. default: true
  33261. },
  33262. ]
  33263. ))
  33264. characterMakers.push(() => makeCharacter(
  33265. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33266. {
  33267. front: {
  33268. height: math.unit(6, "feet"),
  33269. name: "Front",
  33270. image: {
  33271. source: "./media/characters/ramey/front.svg",
  33272. extra: 790/787,
  33273. bottom: 27/817
  33274. }
  33275. },
  33276. },
  33277. [
  33278. {
  33279. name: "Normal",
  33280. height: math.unit(6, "feet"),
  33281. default: true
  33282. },
  33283. ]
  33284. ))
  33285. characterMakers.push(() => makeCharacter(
  33286. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33287. {
  33288. front: {
  33289. height: math.unit(5 + 5/12, "feet"),
  33290. weight: math.unit(120, "lb"),
  33291. name: "Front",
  33292. image: {
  33293. source: "./media/characters/phirae/front.svg",
  33294. extra: 2491/2436,
  33295. bottom: 38/2529
  33296. }
  33297. },
  33298. },
  33299. [
  33300. {
  33301. name: "Normal",
  33302. height: math.unit(5 + 5/12, "feet"),
  33303. default: true
  33304. },
  33305. ]
  33306. ))
  33307. characterMakers.push(() => makeCharacter(
  33308. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33309. {
  33310. front: {
  33311. height: math.unit(6, "feet"),
  33312. weight: math.unit(150, "lb"),
  33313. name: "Front",
  33314. image: {
  33315. source: "./media/characters/stagglas/front.svg",
  33316. extra: 962/882,
  33317. bottom: 53/1015
  33318. }
  33319. },
  33320. },
  33321. [
  33322. {
  33323. name: "Normal",
  33324. height: math.unit(5 + 3/12, "feet"),
  33325. default: true
  33326. },
  33327. ]
  33328. ))
  33329. characterMakers.push(() => makeCharacter(
  33330. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33331. {
  33332. front: {
  33333. height: math.unit(5 + 4/12, "feet"),
  33334. weight: math.unit(145, "lb"),
  33335. name: "Front",
  33336. image: {
  33337. source: "./media/characters/starra/front.svg",
  33338. extra: 1790/1691,
  33339. bottom: 91/1881
  33340. }
  33341. },
  33342. },
  33343. [
  33344. {
  33345. name: "Normal",
  33346. height: math.unit(5 + 4/12, "feet"),
  33347. default: true
  33348. },
  33349. ]
  33350. ))
  33351. characterMakers.push(() => makeCharacter(
  33352. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33353. {
  33354. front: {
  33355. height: math.unit(2.2, "meters"),
  33356. name: "Front",
  33357. image: {
  33358. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33359. extra: 1194/1005,
  33360. bottom: 25/1219
  33361. }
  33362. },
  33363. },
  33364. [
  33365. {
  33366. name: "Normal",
  33367. height: math.unit(2.2, "meters"),
  33368. default: true
  33369. },
  33370. ]
  33371. ))
  33372. characterMakers.push(() => makeCharacter(
  33373. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33374. {
  33375. side: {
  33376. height: math.unit(8 + 2/12, "feet"),
  33377. weight: math.unit(1240, "lb"),
  33378. name: "Side",
  33379. image: {
  33380. source: "./media/characters/mika-valentine/side.svg",
  33381. extra: 2670/2501,
  33382. bottom: 250/2920
  33383. }
  33384. },
  33385. },
  33386. [
  33387. {
  33388. name: "Normal",
  33389. height: math.unit(8 + 2/12, "feet"),
  33390. default: true
  33391. },
  33392. ]
  33393. ))
  33394. characterMakers.push(() => makeCharacter(
  33395. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33396. {
  33397. front: {
  33398. height: math.unit(7 + 2/12, "feet"),
  33399. name: "Front",
  33400. image: {
  33401. source: "./media/characters/xoltol/front.svg",
  33402. extra: 2212/2124,
  33403. bottom: 84/2296
  33404. }
  33405. },
  33406. side: {
  33407. height: math.unit(7 + 2/12, "feet"),
  33408. name: "Side",
  33409. image: {
  33410. source: "./media/characters/xoltol/side.svg",
  33411. extra: 2273/2197,
  33412. bottom: 26/2299
  33413. }
  33414. },
  33415. hand: {
  33416. height: math.unit(2.5, "feet"),
  33417. name: "Hand",
  33418. image: {
  33419. source: "./media/characters/xoltol/hand.svg"
  33420. }
  33421. },
  33422. },
  33423. [
  33424. {
  33425. name: "Small-ish",
  33426. height: math.unit(5 + 11/12, "feet")
  33427. },
  33428. {
  33429. name: "Normal",
  33430. height: math.unit(7 + 2/12, "feet")
  33431. },
  33432. {
  33433. name: "\"Macro\"",
  33434. height: math.unit(14 + 9/12, "feet"),
  33435. default: true
  33436. },
  33437. {
  33438. name: "Alternate Height",
  33439. height: math.unit(20, "feet")
  33440. },
  33441. {
  33442. name: "Actually Macro",
  33443. height: math.unit(100, "feet")
  33444. },
  33445. ]
  33446. ))
  33447. characterMakers.push(() => makeCharacter(
  33448. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33449. {
  33450. front: {
  33451. height: math.unit(5 + 2/12, "feet"),
  33452. name: "Front",
  33453. image: {
  33454. source: "./media/characters/kotetsu-redwood/front.svg",
  33455. extra: 1053/942,
  33456. bottom: 60/1113
  33457. }
  33458. },
  33459. },
  33460. [
  33461. {
  33462. name: "Normal",
  33463. height: math.unit(5 + 2/12, "feet"),
  33464. default: true
  33465. },
  33466. ]
  33467. ))
  33468. //characters
  33469. function makeCharacters() {
  33470. const results = [];
  33471. characterMakers.forEach(character => {
  33472. results.push(character());
  33473. });
  33474. return results;
  33475. }