less copy protection, more size visualization
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

32627 行
819 KiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.capacity) {
  29. views[key].attributes.capacity = {
  30. name: "Capacity",
  31. power: 3,
  32. type: "volume",
  33. base: value.capacity
  34. }
  35. }
  36. });
  37. return createEntityMaker(info, views, defaultSizes);
  38. }
  39. const speciesData = {
  40. animal: {
  41. name: "Animal"
  42. },
  43. dog: {
  44. name: "Dog",
  45. parents: [
  46. "canine"
  47. ]
  48. },
  49. canine: {
  50. name: "Canine",
  51. parents: [
  52. "mammal"
  53. ]
  54. },
  55. crux: {
  56. name: "Crux",
  57. parents: [
  58. "mammal"
  59. ]
  60. },
  61. mammal: {
  62. name: "Mammal",
  63. parents: [
  64. "animal"
  65. ]
  66. },
  67. "rough-collie": {
  68. name: "Rough Collie",
  69. parents: [
  70. "dog"
  71. ]
  72. },
  73. dragon: {
  74. name: "Dragon",
  75. parents: [
  76. "reptile"
  77. ]
  78. },
  79. reptile: {
  80. name: "Reptile",
  81. parents: [
  82. "animal"
  83. ]
  84. },
  85. woodpecker: {
  86. name: "Woodpecker",
  87. parents: [
  88. "avian"
  89. ]
  90. },
  91. avian: {
  92. name: "Avian",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. kitsune: {
  98. name: "Kitsune",
  99. parents: [
  100. "fox"
  101. ]
  102. },
  103. fox: {
  104. name: "Fox",
  105. parents: [
  106. "mammal"
  107. ]
  108. },
  109. pokemon: {
  110. name: "Pokemon"
  111. },
  112. tiger: {
  113. name: "Tiger",
  114. parents: [
  115. "cat"
  116. ]
  117. },
  118. cat: {
  119. name: "Cat",
  120. parents: [
  121. "mammal"
  122. ]
  123. },
  124. "blue-jay": {
  125. name: "Blue Jay",
  126. parents: [
  127. "avian"
  128. ]
  129. },
  130. wolf: {
  131. name: "Wolf",
  132. parents: [
  133. "mammal"
  134. ]
  135. },
  136. coyote: {
  137. name: "Coyote",
  138. parents: [
  139. "mammal"
  140. ]
  141. },
  142. raccoon: {
  143. name: "Raccoon",
  144. parents: [
  145. "mammal"
  146. ]
  147. },
  148. weasel: {
  149. name: "Weasel",
  150. parents: [
  151. "mammal"
  152. ]
  153. },
  154. "red-panda": {
  155. name: "Red Panda",
  156. parents: [
  157. "mammal"
  158. ]
  159. },
  160. dolphin: {
  161. name: "Dolphin",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. "african-wild-dog": {
  167. name: "African Wild Dog",
  168. parents: [
  169. "canine"
  170. ]
  171. },
  172. "hyena": {
  173. name: "Hyena",
  174. parents: [
  175. "canine"
  176. ]
  177. },
  178. "carbuncle": {
  179. name: "Carbuncle",
  180. parents: [
  181. "animal"
  182. ]
  183. },
  184. bat: {
  185. name: "Bat",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. "leaf-nosed-bat": {
  191. name: "Leaf-Nosed Bat",
  192. parents: [
  193. "bat"
  194. ]
  195. },
  196. "fish": {
  197. name: "Fish",
  198. parents: [
  199. "animal"
  200. ]
  201. },
  202. "ram": {
  203. name: "Ram",
  204. parents: [
  205. "mammal"
  206. ]
  207. },
  208. "demon": {
  209. name: "Demon"
  210. },
  211. "cougar": {
  212. name: "Cougar",
  213. parents: [
  214. "cat"
  215. ]
  216. },
  217. "goat": {
  218. name: "Goat",
  219. parents: [
  220. "mammal"
  221. ]
  222. },
  223. "lion": {
  224. name: "Lion",
  225. parents: [
  226. "cat"
  227. ]
  228. },
  229. "harpy-eager": {
  230. name: "Harpy Eagle",
  231. parents: [
  232. "avian"
  233. ]
  234. },
  235. "deer": {
  236. name: "Deer",
  237. parents: [
  238. "mammal"
  239. ]
  240. },
  241. "phoenix": {
  242. name: "Phoenix",
  243. parents: [
  244. "avian"
  245. ]
  246. },
  247. "aeromorph": {
  248. name: "Aeromorph",
  249. parents: [
  250. "machine"
  251. ]
  252. },
  253. "machine": {
  254. name: "Machine",
  255. },
  256. "android": {
  257. name: "Android",
  258. parents: [
  259. "machine"
  260. ]
  261. },
  262. "jackal": {
  263. name: "Jackal",
  264. parents: [
  265. "canine"
  266. ]
  267. },
  268. "corvid": {
  269. name: "Corvid",
  270. parents: [
  271. "avian"
  272. ]
  273. },
  274. "pharaoh-hound": {
  275. name: "Pharaoh Hound",
  276. parents: [
  277. "dog"
  278. ]
  279. },
  280. "skunk": {
  281. name: "Skunk",
  282. parents: [
  283. "mammal"
  284. ]
  285. },
  286. "shark": {
  287. name: "Shark",
  288. parents: [
  289. "fish"
  290. ]
  291. },
  292. "black-panther": {
  293. name: "Black Panther",
  294. parents: [
  295. "cat"
  296. ]
  297. },
  298. "umbra": {
  299. name: "Umbra",
  300. parents: [
  301. "animal"
  302. ]
  303. },
  304. "raven": {
  305. name: "Raven",
  306. parents: [
  307. "corvid"
  308. ]
  309. },
  310. "snow-leopard": {
  311. name: "Snow Leopard",
  312. parents: [
  313. "cat"
  314. ]
  315. },
  316. "barbary-lion": {
  317. name: "Barbary Lion",
  318. parents: [
  319. "lion"
  320. ]
  321. },
  322. "dra'gal": {
  323. name: "Dra'Gal",
  324. parents: [
  325. "mammal"
  326. ]
  327. },
  328. "german-shepherd": {
  329. name: "German Shepherd",
  330. parents: [
  331. "dog"
  332. ]
  333. },
  334. "bayleef": {
  335. name: "Bayleef",
  336. parents: [
  337. "pokemon"
  338. ]
  339. },
  340. "mouse": {
  341. name: "Mouse",
  342. parents: [
  343. "rodent"
  344. ]
  345. },
  346. "rat": {
  347. name: "Rat",
  348. parents: [
  349. "mammal"
  350. ]
  351. },
  352. "hoshiko-beast": {
  353. name: "Hoshiko Beast",
  354. parents: ["animal"]
  355. },
  356. "snow-jugani": {
  357. name: "Snow Jugani",
  358. parents: ["cat"]
  359. },
  360. "patamon": {
  361. name: "Patamon",
  362. parents: ["digimon"]
  363. },
  364. "digimon": {
  365. name: "Digimon",
  366. },
  367. "jugani": {
  368. name: "Jugani",
  369. parents: ["cat"]
  370. },
  371. "luxray": {
  372. name: "Luxray",
  373. parents: ["pokemon"]
  374. },
  375. "mech": {
  376. name: "Mech",
  377. parents: ["machine"]
  378. },
  379. "zoid": {
  380. name: "Zoid",
  381. parents: ["mech"]
  382. },
  383. "monster": {
  384. name: "Monster",
  385. parents: ["animal"]
  386. },
  387. "foo-dog": {
  388. name: "Foo Dog",
  389. parents: ["mammal"]
  390. },
  391. "elephant": {
  392. name: "Elephant",
  393. parents: ["mammal"]
  394. },
  395. "eagle": {
  396. name: "Eagle",
  397. parents: ["avian"]
  398. },
  399. "cow": {
  400. name: "Cow",
  401. parents: ["mammal"]
  402. },
  403. "crocodile": {
  404. name: "Crocodile",
  405. parents: ["reptile"]
  406. },
  407. "borzoi": {
  408. name: "Borzoi",
  409. parents: ["dog"]
  410. },
  411. "snake": {
  412. name: "Snake",
  413. parents: ["reptile"]
  414. },
  415. "horned-bush-viper": {
  416. name: "Horned Bush Viper",
  417. parents: ["snake"]
  418. },
  419. "cobra": {
  420. name: "Cobra",
  421. parents: ["snake"]
  422. },
  423. "harpy-eagle": {
  424. name: "Harpy Eagle",
  425. parents: ["eagle"]
  426. },
  427. "raptor": {
  428. name: "Raptor",
  429. parents: ["dinosaur"]
  430. },
  431. "dinosaur": {
  432. name: "Dinosaur",
  433. parents: ["reptile"]
  434. },
  435. "veilhound": {
  436. name: "Veilhound",
  437. parents: ["hellhound", "demon"]
  438. },
  439. "hellhound": {
  440. name: "Hellhound",
  441. parents: ["canine"]
  442. },
  443. "insect": {
  444. name: "Insect",
  445. parents: ["animal"]
  446. },
  447. "beetle": {
  448. name: "Beetle",
  449. parents: ["insect"]
  450. },
  451. "moth": {
  452. name: "Moth",
  453. parents: ["insect"]
  454. },
  455. "eastern-dragon": {
  456. name: "Eastern Dragon",
  457. parents: ["dragon"]
  458. },
  459. "jaguar": {
  460. name: "Jaguar",
  461. parents: ["cat"]
  462. },
  463. "horse": {
  464. name: "Horse",
  465. parents: ["mammal"]
  466. },
  467. "sergal": {
  468. name: "Sergal",
  469. parents: ["mammal"]
  470. },
  471. "gryphon": {
  472. name: "Gryphon",
  473. parents: ["lion", "eagle"]
  474. },
  475. "robot": {
  476. name: "Robot",
  477. parents: ["machine"]
  478. },
  479. "medihound": {
  480. name: "Medihound",
  481. parents: ["robot", "dog"]
  482. },
  483. "sylveon": {
  484. name: "Sylveon",
  485. parents: ["pokemon"]
  486. },
  487. "catgirl": {
  488. name: "Catgirl",
  489. parents: ["mammal"]
  490. },
  491. "cowgirl": {
  492. name: "Cowgirl",
  493. parents: ["mammal"]
  494. },
  495. "pony": {
  496. name: "Pony",
  497. parents: ["horse"]
  498. },
  499. "rabbit": {
  500. name: "Rabbit",
  501. parents: ["mammal"]
  502. },
  503. "fennec-fox": {
  504. name: "Fennec Fox",
  505. parents: ["fox"]
  506. },
  507. "azodian": {
  508. name: "Azodian",
  509. parents: ["mouse"]
  510. },
  511. "shiba-inu": {
  512. name: "Shiba Inu",
  513. parents: ["dog"]
  514. },
  515. "changeling": {
  516. name: "Changeling",
  517. parents: ["insect"]
  518. },
  519. "cheetah": {
  520. name: "Cheetah",
  521. parents: ["cat"]
  522. },
  523. "golden-jackal": {
  524. name: "Golden Jackal",
  525. parents: ["jackal"]
  526. },
  527. "manectric": {
  528. name: "Manectric",
  529. parents: ["pokemon"]
  530. },
  531. "rat": {
  532. name: "Rat",
  533. parents: ["rodent"]
  534. },
  535. "rodent": {
  536. name: "Rodent",
  537. parents: ["mammal"]
  538. },
  539. "octocoon": {
  540. name: "Octocoon",
  541. parents: ["raccoon", "octopus"]
  542. },
  543. "octopus": {
  544. name: "Octopus",
  545. parents: ["fish"]
  546. },
  547. "werewolf": {
  548. name: "Werewolf",
  549. parents: ["wolf"]
  550. },
  551. "meerkat": {
  552. name: "Meerkat",
  553. parents: ["mammal"]
  554. },
  555. "human": {
  556. name: "Human",
  557. parents: ["mammal"]
  558. },
  559. "geth": {
  560. name: "Geth",
  561. parents: ["android"]
  562. },
  563. "husky": {
  564. name: "Husky",
  565. parents: ["dog"]
  566. },
  567. "long-eared-bat": {
  568. name: "Long Eared Bat",
  569. parents: ["bat"]
  570. },
  571. "lizard": {
  572. name: "Lizard",
  573. parents: ["reptile"]
  574. },
  575. "salamander": {
  576. name: "Salamander",
  577. parents: ["lizard"]
  578. },
  579. "chameleon": {
  580. name: "Chameleon",
  581. parents: ["lizard"]
  582. },
  583. "gecko": {
  584. name: "Gecko",
  585. parents: ["lizard"]
  586. },
  587. "kobold": {
  588. name: "Kobold",
  589. parents: ["reptile"]
  590. },
  591. "charizard": {
  592. name: "Charizard",
  593. parents: ["pokemon"]
  594. },
  595. "lugia": {
  596. name: "Lugia",
  597. parents: ["pokemon"]
  598. },
  599. "cerberus": {
  600. name: "Cerberus",
  601. parents: ["dog"]
  602. },
  603. "tyrantrum": {
  604. name: "Tyrantrum",
  605. parents: ["pokemon"]
  606. },
  607. "lemur": {
  608. name: "Lemur",
  609. parents: ["mammal"]
  610. },
  611. "kelpie": {
  612. name: "Kelpie",
  613. parents: ["horse", "monster"]
  614. },
  615. "labrador": {
  616. name: "Labrador",
  617. parents: ["dog"]
  618. },
  619. "sylveon": {
  620. name: "Sylveon",
  621. parents: ["eeveelution"]
  622. },
  623. "eeveelution": {
  624. name: "Eeveelution",
  625. parents: ["pokemon"]
  626. },
  627. "polar-bear": {
  628. name: "Polar Bear",
  629. parents: ["bear"]
  630. },
  631. "bear": {
  632. name: "Bear",
  633. parents: ["mammal"]
  634. },
  635. "absol": {
  636. name: "Absol",
  637. parents: ["pokemon"]
  638. },
  639. "wolver": {
  640. name: "Wolver",
  641. parents: ["mammal"]
  642. },
  643. "rottweiler": {
  644. name: "Rottweiler",
  645. parents: ["dog"]
  646. },
  647. "zebra": {
  648. name: "Zebra",
  649. parents: ["horse"]
  650. },
  651. "yoshi": {
  652. name: "Yoshi",
  653. parents: ["lizard"]
  654. },
  655. "lynx": {
  656. name: "Lynx",
  657. parents: ["cat"]
  658. },
  659. "unknown": {
  660. name: "Unknown",
  661. parents: []
  662. },
  663. "thylacine": {
  664. name: "Thylacine",
  665. parents: ["mammal"]
  666. },
  667. "gabumon": {
  668. name: "Gabumon",
  669. parents: ["digimon"]
  670. },
  671. "border-collie": {
  672. name: "Border Collie",
  673. parents: ["dog"]
  674. },
  675. "imp": {
  676. name: "Imp",
  677. parents: ["demon"]
  678. },
  679. "kangaroo": {
  680. name: "Kangaroo",
  681. parents: ["mammal"]
  682. },
  683. "renamon": {
  684. name: "Renamon",
  685. parents: ["digimon"]
  686. },
  687. "candy-orca-dragon": {
  688. name: "Candy Orca Dragon",
  689. parents: ["fish", "dragon", "candy"]
  690. },
  691. "sabertooth-tiger": {
  692. name: "Sabertooth Tiger",
  693. parents: ["cat"]
  694. },
  695. "espurr": {
  696. name: "Espurr",
  697. parents: ["pokemon"]
  698. },
  699. "otter": {
  700. name: "Otter",
  701. parents: ["mammal"]
  702. },
  703. "elemental": {
  704. name: "Elemental",
  705. parents: ["mammal"]
  706. },
  707. "mew": {
  708. name: "Mew",
  709. parents: ["pokemon"]
  710. },
  711. "goodra": {
  712. name: "Goodra",
  713. parents: ["pokemon"]
  714. },
  715. "fairy": {
  716. name: "Fairy",
  717. parents: ["magical"]
  718. },
  719. "typhlosion": {
  720. name: "Typhlosion",
  721. parents: ["pokemon"]
  722. },
  723. "magical": {
  724. name: "Magical",
  725. parents: []
  726. },
  727. "xenomorph": {
  728. name: "Xenomorph",
  729. parents: ["monster", "alien"]
  730. },
  731. "charr": {
  732. name: "Charr",
  733. parents: ["cat"]
  734. },
  735. "siberian-husky": {
  736. name: "Siberian Husky",
  737. parents: ["husky"]
  738. },
  739. "alligator": {
  740. name: "Alligator",
  741. parents: ["reptile"]
  742. },
  743. "bernese-mountain-dog": {
  744. name: "Bernese Mountain Dog",
  745. parents: ["dog"]
  746. },
  747. "reshiram": {
  748. name: "Reshiram",
  749. parents: ["pokemon"]
  750. },
  751. "grizzly-bear": {
  752. name: "Grizzly Bear",
  753. parents: ["bear"]
  754. },
  755. "water-monitor": {
  756. name: "Water Monitor",
  757. parents: ["lizard"]
  758. },
  759. "banchofossa": {
  760. name: "Banchofossa",
  761. parents: ["mammal"]
  762. },
  763. "kirin": {
  764. name: "Kirin",
  765. parents: ["monster"]
  766. },
  767. "quilava": {
  768. name: "Quilava",
  769. parents: ["pokemon"]
  770. },
  771. "seviper": {
  772. name: "Seviper",
  773. parents: ["pokemon"]
  774. },
  775. "flying-fox": {
  776. name: "Flying Fox",
  777. parents: ["bat"]
  778. },
  779. "keynain": {
  780. name: "Keynain",
  781. parents: ["avian"]
  782. },
  783. "lucario": {
  784. name: "Lucario",
  785. parents: ["pokemon"]
  786. },
  787. "siamese-cat": {
  788. name: "Siamese Cat",
  789. parents: ["cat"]
  790. },
  791. "spider": {
  792. name: "Spider",
  793. parents: ["insect"]
  794. },
  795. "samurott": {
  796. name: "Samurott",
  797. parents: ["pokemon"]
  798. },
  799. "megalodon": {
  800. name: "Megalodon",
  801. parents: ["shark"]
  802. },
  803. "unicorn": {
  804. name: "Unicorn",
  805. parents: ["horse"]
  806. },
  807. "greninja": {
  808. name: "Greninja",
  809. parents: ["pokemon"]
  810. },
  811. "water-dragon": {
  812. name: "Water Dragon",
  813. parents: ["dragon"]
  814. },
  815. "cross-fox": {
  816. name: "Cross Fox",
  817. parents: ["fox"]
  818. },
  819. "synth": {
  820. name: "Synth",
  821. parents: ["machine"]
  822. },
  823. "construct": {
  824. name: "Construct",
  825. parents: []
  826. },
  827. "mexican-wolf": {
  828. name: "Mexican Wolf",
  829. parents: ["wolf"]
  830. },
  831. "leopard": {
  832. name: "Leopard",
  833. parents: ["cat"]
  834. },
  835. "pig": {
  836. name: "Pig",
  837. parents: ["mammal"]
  838. },
  839. "ampharos": {
  840. name: "Ampharos",
  841. parents: ["pokemon"]
  842. },
  843. "orca": {
  844. name: "Orca",
  845. parents: ["fish"]
  846. },
  847. "lycanroc": {
  848. name: "Lycanroc",
  849. parents: ["pokemon"]
  850. },
  851. "surkanu": {
  852. name: "Surkanu",
  853. parents: ["monster"]
  854. },
  855. "seal": {
  856. name: "Seal",
  857. parents: ["mammal"]
  858. },
  859. "keldeo": {
  860. name: "Keldeo",
  861. parents: ["pokemon"]
  862. },
  863. "great-dane": {
  864. name: "Great Dane",
  865. parents: ["dog"]
  866. },
  867. "black-backed-jackal": {
  868. name: "Black Backed Jackal",
  869. parents: ["jackal"]
  870. },
  871. "sheep": {
  872. name: "Sheep",
  873. parents: ["mammal"]
  874. },
  875. "leopard-seal": {
  876. name: "Leopard Seal",
  877. parents: ["seal"]
  878. },
  879. "zoroark": {
  880. name: "Zoroark",
  881. parents: ["pokemon"]
  882. },
  883. "maned-wolf": {
  884. name: "Maned Wolf",
  885. parents: ["canine"]
  886. },
  887. "dracha": {
  888. name: "Dracha",
  889. parents: ["dragon"]
  890. },
  891. "wolxi": {
  892. name: "Wolxi",
  893. parents: ["mammal", "alien"]
  894. },
  895. "dratini": {
  896. name: "Dratini",
  897. parents: ["pokemon", "dragon"]
  898. },
  899. "skaven": {
  900. name: "Skaven",
  901. parents: ["rat"]
  902. },
  903. "mongoose": {
  904. name: "Mongoose",
  905. parents: ["mammal"]
  906. },
  907. "lopunny": {
  908. name: "Lopunny",
  909. parents: ["pokemon", "rabbit"]
  910. },
  911. "feraligatr": {
  912. name: "Feraligatr",
  913. parents: ["pokemon", "alligator"]
  914. },
  915. "houndoom": {
  916. name: "Houndoom",
  917. parents: ["pokemon", "dog"]
  918. },
  919. "protogen": {
  920. name: "Protogen",
  921. parents: ["machine"]
  922. },
  923. "saint-bernard": {
  924. name: "Saint Bernard",
  925. parents: ["dog"]
  926. },
  927. "crow": {
  928. name: "Crow",
  929. parents: ["corvid"]
  930. },
  931. "delphox": {
  932. name: "Delphox",
  933. parents: ["pokemon", "fox"]
  934. },
  935. "moose": {
  936. name: "Moose",
  937. parents: ["mammal"]
  938. },
  939. "joraxian": {
  940. name: "Joraxian",
  941. parents: ["monster", "canine", "demon"]
  942. },
  943. "nimbat": {
  944. name: "Nimbat",
  945. parents: ["mammal"]
  946. },
  947. "aardwolf": {
  948. name: "Aardwolf",
  949. parents: ["canine"]
  950. },
  951. "fluudrani": {
  952. name: "Fluudrani",
  953. parents: ["animal"]
  954. },
  955. "arcanine": {
  956. name: "Arcanine",
  957. parents: ["pokemon", "dog"]
  958. },
  959. "inteleon": {
  960. name: "Inteleon",
  961. parents: ["pokemon", "fish"]
  962. },
  963. "ninetales": {
  964. name: "Ninetales",
  965. parents: ["pokemon", "kitsune"]
  966. },
  967. "tigrex": {
  968. name: "Tigrex",
  969. parents: ["tiger"]
  970. },
  971. "zorua": {
  972. name: "Zorua",
  973. parents: ["pokemon", "fox"]
  974. },
  975. "vulpix": {
  976. name: "Vulpix",
  977. parents: ["pokemon", "fox"]
  978. },
  979. "barghest": {
  980. name: "Barghest",
  981. parents: ["monster"]
  982. },
  983. "gray-wolf": {
  984. name: "Gray Wolf",
  985. parents: ["wolf"]
  986. },
  987. "ruppells-fox": {
  988. name: "Rüppell's Fox",
  989. parents: ["fox"]
  990. },
  991. "bull-terrier": {
  992. name: "Bull Terrier",
  993. parents: ["dog"]
  994. },
  995. "european-honey-buzzard": {
  996. name: "European Honey Buzzard",
  997. parents: ["avian"]
  998. },
  999. "t-rex": {
  1000. name: "T Rex",
  1001. parents: ["dinosaur"]
  1002. },
  1003. "mactarian": {
  1004. name: "Mactarian",
  1005. parents: ["shark", "monster"]
  1006. },
  1007. "mewtwo-y": {
  1008. name: "Mewtwo Y",
  1009. parents: ["mewtwo"]
  1010. },
  1011. "mewtwo": {
  1012. name: "Mewtwo",
  1013. parents: ["pokemon"]
  1014. },
  1015. "mew": {
  1016. name: "Mew",
  1017. parents: ["pokemon"]
  1018. },
  1019. "eevee": {
  1020. name: "Eevee",
  1021. parents: ["eeveelution"]
  1022. },
  1023. "mienshao": {
  1024. name: "Mienshao",
  1025. parents: ["pokemon"]
  1026. },
  1027. "sugar-glider": {
  1028. name: "Sugar Glider",
  1029. parents: ["opossum"]
  1030. },
  1031. "spectral-bat": {
  1032. name: "Spectral Bat",
  1033. parents: ["bat"]
  1034. },
  1035. "scolipede": {
  1036. name: "Scolipede",
  1037. parents: ["pokemon", "insect"]
  1038. },
  1039. "jackalope": {
  1040. name: "Jackalope",
  1041. parents: ["rabbit", "antelope"]
  1042. },
  1043. "caracal": {
  1044. name: "Caracal",
  1045. parents: ["cat"]
  1046. },
  1047. "stoat": {
  1048. name: "Stoat",
  1049. parents: ["mammal"]
  1050. },
  1051. "african-golden-cat": {
  1052. name: "African Golden Cat",
  1053. parents: ["cat"]
  1054. },
  1055. "gigantosaurus": {
  1056. name: "Gigantosaurus",
  1057. parents: ["dinosaur"]
  1058. },
  1059. "zorgoia": {
  1060. name: "Zorgoia",
  1061. parents: ["mammal"]
  1062. },
  1063. "monitor-lizard": {
  1064. name: "Monitor Lizard",
  1065. parents: ["lizard"]
  1066. },
  1067. "ziralkia": {
  1068. name: "Ziralkia",
  1069. parents: ["mammal"]
  1070. },
  1071. "kiiasi": {
  1072. name: "Kiiasi",
  1073. parents: ["animal"]
  1074. },
  1075. "synx": {
  1076. name: "Synx",
  1077. parents: ["monster"]
  1078. },
  1079. "panther": {
  1080. name: "Panther",
  1081. parents: ["cat"]
  1082. },
  1083. "azumarill": {
  1084. name: "Azumarill",
  1085. parents: ["pokemon"]
  1086. },
  1087. "river-snaptail": {
  1088. name: "River Snaptail",
  1089. parents: ["otter", "crocodile"]
  1090. },
  1091. "great-blue-heron": {
  1092. name: "Great Blue Heron",
  1093. parents: ["avian"]
  1094. },
  1095. "smeargle": {
  1096. name: "Smeargle",
  1097. parents: ["pokemon"]
  1098. },
  1099. "vendeilen": {
  1100. name: "Vendeilen",
  1101. parents: ["monster"]
  1102. },
  1103. "ventura": {
  1104. name: "Ventura",
  1105. parents: ["canine"]
  1106. },
  1107. "clouded-leopard": {
  1108. name: "Clouded Leopard",
  1109. parents: ["leopard"]
  1110. },
  1111. "argonian": {
  1112. name: "Argonian",
  1113. parents: ["lizard"]
  1114. },
  1115. "salazzle": {
  1116. name: "Salazzle",
  1117. parents: ["pokemon", "lizard"]
  1118. },
  1119. "je-stoff-drachen": {
  1120. name: "Je-Stoff Drachen",
  1121. parents: ["dragon"]
  1122. },
  1123. "finnish-spitz-dog": {
  1124. name: "Finnish Spitz Dog",
  1125. parents: ["dog"]
  1126. },
  1127. "gray-fox": {
  1128. name: "Gray Fox",
  1129. parents: ["fox"]
  1130. },
  1131. "opossum": {
  1132. name: "opossum",
  1133. parents: ["mammal"]
  1134. },
  1135. "antelope": {
  1136. name: "Antelope",
  1137. parents: ["mammal"]
  1138. },
  1139. "weavile": {
  1140. name: "Weavile",
  1141. parents: ["pokemon"]
  1142. },
  1143. "pikachu": {
  1144. name: "Pikachu",
  1145. parents: ["pokemon", "mouse"]
  1146. },
  1147. "grovyle": {
  1148. name: "Grovyle",
  1149. parents: ["pokemon", "plant"]
  1150. },
  1151. "sthara": {
  1152. name: "Sthara",
  1153. parents: ["snow-leopard", "reptile"]
  1154. },
  1155. "star-warrior": {
  1156. name: "Star Warrior",
  1157. parents: ["magical"]
  1158. },
  1159. "dragonoid": {
  1160. name: "Dragonoid",
  1161. parents: ["dragon"]
  1162. },
  1163. "suicune": {
  1164. name: "Suicune",
  1165. parents: ["pokemon"]
  1166. },
  1167. "vole": {
  1168. name: "Vole",
  1169. parents: ["mammal"]
  1170. },
  1171. "blaziken": {
  1172. name: "Blaziken",
  1173. parents: ["pokemon", "avian"]
  1174. },
  1175. "buizel": {
  1176. name: "Buizel",
  1177. parents: ["pokemon", "fish"]
  1178. },
  1179. "floatzel": {
  1180. name: "Floatzel",
  1181. parents: ["pokemon", "fish"]
  1182. },
  1183. "umok": {
  1184. name: "Umok",
  1185. parents: ["avian"]
  1186. },
  1187. "sea-monster": {
  1188. name: "Sea Monster",
  1189. parents: ["monster", "fish"]
  1190. },
  1191. "egyptian-vulture": {
  1192. name: "Egyptian Vulture",
  1193. parents: ["avian"]
  1194. },
  1195. "doberman": {
  1196. name: "Doberman",
  1197. parents: ["dog"]
  1198. },
  1199. "zangoose": {
  1200. name: "Zangoose",
  1201. parents: ["pokemon", "mongoose"]
  1202. },
  1203. "mongoose": {
  1204. name: "Mongoose",
  1205. parents: ["mammal"]
  1206. },
  1207. "wickerbeast": {
  1208. name: "Wickerbeast",
  1209. parents: ["monster"]
  1210. },
  1211. "zenari": {
  1212. name: "Zenari",
  1213. parents: ["lizard"]
  1214. },
  1215. "plant": {
  1216. name: "Plant",
  1217. parents: []
  1218. },
  1219. "raskatox": {
  1220. name: "Raskatox",
  1221. parents: ["raccoon", "skunk", "cat", "fox"]
  1222. },
  1223. "mikromare": {
  1224. name: "mikromare",
  1225. parents: ["alien"]
  1226. },
  1227. "alien": {
  1228. name: "Alien",
  1229. parents: ["animal"]
  1230. },
  1231. "deity": {
  1232. name: "Deity",
  1233. parents: []
  1234. },
  1235. "skarlan": {
  1236. name: "Skarlan",
  1237. parents: ["slug", "dragon"]
  1238. },
  1239. "slug": {
  1240. name: "Slug",
  1241. parents: ["mollusk"]
  1242. },
  1243. "mollusk": {
  1244. name: "Mollusk",
  1245. parents: ["animal"]
  1246. },
  1247. "chimera": {
  1248. name: "Chimera",
  1249. parents: ["monster"]
  1250. },
  1251. "gestalt": {
  1252. name: "Gestalt",
  1253. parents: ["construct"]
  1254. },
  1255. "mimic": {
  1256. name: "Mimic",
  1257. parents: ["monster"]
  1258. },
  1259. "calico-rat": {
  1260. name: "Calico Rat",
  1261. parents: ["rat"]
  1262. },
  1263. "panda": {
  1264. name: "Panda",
  1265. parents: ["mammal"]
  1266. },
  1267. "oni": {
  1268. name: "Oni",
  1269. parents: ["monster"]
  1270. },
  1271. "pegasus": {
  1272. name: "Pegasus",
  1273. parents: ["horse"]
  1274. },
  1275. "vulpera": {
  1276. name: "Vulpera",
  1277. parents: ["fennec-fox"]
  1278. },
  1279. "ceratosaurus": {
  1280. name: "Ceratosaurus",
  1281. parents: ["dinosaur"]
  1282. },
  1283. "nykur": {
  1284. name: "Nykur",
  1285. parents: ["horse", "monster"]
  1286. },
  1287. "giraffe": {
  1288. name: "Giraffe",
  1289. parents: ["mammal"]
  1290. },
  1291. "tauren": {
  1292. name: "Tauren",
  1293. parents: ["cow"]
  1294. },
  1295. "draconi": {
  1296. name: "Draconi",
  1297. parents: ["alien", "cat", "cyborg"]
  1298. },
  1299. "dire-wolf": {
  1300. name: "Dire Wolf",
  1301. parents: ["wolf"]
  1302. },
  1303. "ferromorph": {
  1304. name: "Ferromorph",
  1305. parents: ["construct"]
  1306. },
  1307. "meowth": {
  1308. name: "Meowth",
  1309. parents: ["cat", "pokemon"]
  1310. },
  1311. "pavodragon": {
  1312. name: "Pavodragon",
  1313. parents: ["dragon"]
  1314. },
  1315. "aaltranae": {
  1316. name: "Aaltranae",
  1317. parents: ["dragon"]
  1318. },
  1319. "cyborg": {
  1320. name: "Cyborg",
  1321. parents: ["machine"]
  1322. },
  1323. "draptor": {
  1324. name: "Draptor",
  1325. parents: ["dragon"]
  1326. },
  1327. "candy": {
  1328. name: "Candy",
  1329. parents: []
  1330. },
  1331. "drenath": {
  1332. name: "Drenath",
  1333. parents: ["dragon", "snake", "rabbit"]
  1334. },
  1335. "coyju": {
  1336. name: "Coyju",
  1337. parents: ["coyote", "kaiju"]
  1338. },
  1339. "kaiju": {
  1340. name: "Kaiju",
  1341. parents: ["monster"]
  1342. },
  1343. "nickit": {
  1344. name: "Nickit",
  1345. parents: ["pokemon", "cat"]
  1346. },
  1347. "lopunny": {
  1348. name: "Lopunny",
  1349. parents: ["pokemon", "rabbit"]
  1350. },
  1351. "korean-jindo-dog": {
  1352. name: "Korean Jindo Dog",
  1353. parents: ["dog"]
  1354. },
  1355. "naga": {
  1356. name: "Naga",
  1357. parents: ["snake", "monster"]
  1358. },
  1359. "undead": {
  1360. name: "Undead",
  1361. parents: ["monster"]
  1362. },
  1363. "whale": {
  1364. name: "Whale",
  1365. parents: ["fish"]
  1366. },
  1367. "gelato-bee": {
  1368. name: "Gelato Bee",
  1369. parents: ["bee"]
  1370. },
  1371. "bee": {
  1372. name: "Bee",
  1373. parents: ["insect"]
  1374. },
  1375. "gardevoir": {
  1376. name: "Gardevoir",
  1377. parents: ["pokemon"]
  1378. },
  1379. "ant": {
  1380. name: "Ant",
  1381. parents: ["insect"]
  1382. },
  1383. "frog": {
  1384. name: "Frog",
  1385. parents: ["amphibian"]
  1386. },
  1387. "amphibian": {
  1388. name: "Amphibian",
  1389. parents: ["animal"]
  1390. },
  1391. "pangolin": {
  1392. name: "Pangolin",
  1393. parents: ["mammal"]
  1394. },
  1395. "uragi'viidorn": {
  1396. name: "Uragi'viidorn",
  1397. parents: ["avian", "bear"]
  1398. },
  1399. "gryphdelphais": {
  1400. name: "Gryphdelphais",
  1401. parents: ["dolphin", "gryphon"]
  1402. },
  1403. "plush": {
  1404. name: "Plush",
  1405. parents: ["construct"]
  1406. },
  1407. "draiger": {
  1408. name: "Draiger",
  1409. parents: ["dragon","tiger"]
  1410. },
  1411. "foxsky": {
  1412. name: "Foxsky",
  1413. parents: ["fox", "husky"]
  1414. },
  1415. "umbreon": {
  1416. name: "Umbreon",
  1417. parents: ["eeveelution"]
  1418. },
  1419. "slime-dragon": {
  1420. name: "Slime Dragon",
  1421. parents: ["dragon"]
  1422. },
  1423. "enderman": {
  1424. name: "Enderman",
  1425. parents: ["monster"]
  1426. },
  1427. "gremlin": {
  1428. name: "Gremlin",
  1429. parents: ["monster"]
  1430. },
  1431. "dragonsune": {
  1432. name: "Dragonsune",
  1433. parents: ["dragon", "kitsune"]
  1434. },
  1435. "ghost": {
  1436. name: "Ghost",
  1437. parents: ["monster"]
  1438. },
  1439. "false-vampire-bat": {
  1440. name: "False Vampire Bat",
  1441. parents: ["bat"]
  1442. },
  1443. "succubus": {
  1444. name: "Succubus",
  1445. parents: ["demon"]
  1446. },
  1447. "mia": {
  1448. name: "Mia",
  1449. parents: ["canine"]
  1450. },
  1451. }
  1452. //species
  1453. function getSpeciesInfo(speciesList) {
  1454. let result = new Set();
  1455. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1456. result.add(entry)
  1457. });
  1458. return Array.from(result);
  1459. };
  1460. function getSpeciesInfoHelper(species) {
  1461. if (!speciesData[species]) {
  1462. console.warn(species + " doesn't exist");
  1463. return [];
  1464. }
  1465. if (speciesData[species].parents) {
  1466. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1467. } else {
  1468. return [species];
  1469. }
  1470. }
  1471. characterMakers.push(() => makeCharacter(
  1472. {
  1473. name: "Fen",
  1474. species: ["crux"],
  1475. description: {
  1476. title: "Bio",
  1477. text: "Very furry. Sheds on everything."
  1478. },
  1479. tags: [
  1480. "anthro",
  1481. "goo"
  1482. ]
  1483. },
  1484. {
  1485. back: {
  1486. height: math.unit(2.2428, "meter"),
  1487. weight: math.unit(124.738, "kg"),
  1488. name: "Back",
  1489. image: {
  1490. source: "./media/characters/fen/back.svg",
  1491. extra: 2024 / 1867,
  1492. bottom: 13 / 2037
  1493. },
  1494. info: {
  1495. description: {
  1496. mode: "append",
  1497. text: "\n\nHe is not currently looking at you."
  1498. }
  1499. }
  1500. },
  1501. full: {
  1502. height: math.unit(1.34, "meter"),
  1503. weight: math.unit(225, "kg"),
  1504. name: "Full",
  1505. image: {
  1506. source: "./media/characters/fen/full.svg"
  1507. },
  1508. info: {
  1509. description: {
  1510. mode: "append",
  1511. text: "\n\nMunch."
  1512. }
  1513. }
  1514. },
  1515. kneeling: {
  1516. height: math.unit(5.4, "feet"),
  1517. weight: math.unit(124.738, "kg"),
  1518. name: "Kneeling",
  1519. image: {
  1520. source: "./media/characters/fen/kneeling.svg",
  1521. extra: 563 / 507
  1522. }
  1523. },
  1524. goo: {
  1525. height: math.unit(2.8, "feet"),
  1526. weight: math.unit(125, "kg"),
  1527. capacity: math.unit(1, "people"),
  1528. name: "Goo",
  1529. image: {
  1530. source: "./media/characters/fen/goo.svg",
  1531. bottom: 116 / 613
  1532. }
  1533. },
  1534. lounging: {
  1535. height: math.unit(6.5, "feet"),
  1536. weight: math.unit(125, "kg"),
  1537. name: "Lounging",
  1538. image: {
  1539. source: "./media/characters/fen/lounging.svg"
  1540. }
  1541. },
  1542. },
  1543. [
  1544. {
  1545. name: "Normal",
  1546. height: math.unit(2.2428, "meter")
  1547. },
  1548. {
  1549. name: "Big",
  1550. height: math.unit(12, "feet")
  1551. },
  1552. {
  1553. name: "Minimacro",
  1554. height: math.unit(40, "feet"),
  1555. default: true,
  1556. info: {
  1557. description: {
  1558. mode: "append",
  1559. text: "\n\nTOO DAMN BIG"
  1560. }
  1561. }
  1562. },
  1563. {
  1564. name: "Macro",
  1565. height: math.unit(100, "feet"),
  1566. info: {
  1567. description: {
  1568. mode: "append",
  1569. text: "\n\nTOO DAMN BIG"
  1570. }
  1571. }
  1572. },
  1573. {
  1574. name: "Macro+",
  1575. height: math.unit(300, "feet")
  1576. },
  1577. {
  1578. name: "Megamacro",
  1579. height: math.unit(2, "miles")
  1580. }
  1581. ]
  1582. ))
  1583. characterMakers.push(() => makeCharacter(
  1584. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1585. {
  1586. front: {
  1587. height: math.unit(183, "cm"),
  1588. weight: math.unit(80, "kg"),
  1589. name: "Front",
  1590. image: {
  1591. source: "./media/characters/sofia-fluttertail/front.svg",
  1592. bottom: 0.01,
  1593. extra: 2154 / 2081
  1594. }
  1595. },
  1596. frontAlt: {
  1597. height: math.unit(183, "cm"),
  1598. weight: math.unit(80, "kg"),
  1599. name: "Front (alt)",
  1600. image: {
  1601. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1602. }
  1603. },
  1604. back: {
  1605. height: math.unit(183, "cm"),
  1606. weight: math.unit(80, "kg"),
  1607. name: "Back",
  1608. image: {
  1609. source: "./media/characters/sofia-fluttertail/back.svg"
  1610. }
  1611. },
  1612. kneeling: {
  1613. height: math.unit(125, "cm"),
  1614. weight: math.unit(80, "kg"),
  1615. name: "Kneeling",
  1616. image: {
  1617. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1618. extra: 1033 / 977,
  1619. bottom: 23.7 / 1057
  1620. }
  1621. },
  1622. maw: {
  1623. height: math.unit(183 / 5, "cm"),
  1624. name: "Maw",
  1625. image: {
  1626. source: "./media/characters/sofia-fluttertail/maw.svg"
  1627. }
  1628. },
  1629. mawcloseup: {
  1630. height: math.unit(183 / 5 * 0.41, "cm"),
  1631. name: "Maw (Closeup)",
  1632. image: {
  1633. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1634. }
  1635. },
  1636. paws: {
  1637. height: math.unit(1.17, "feet"),
  1638. name: "Paws",
  1639. image: {
  1640. source: "./media/characters/sofia-fluttertail/paws.svg",
  1641. extra: 851 / 851,
  1642. bottom: 17 / 868
  1643. }
  1644. },
  1645. },
  1646. [
  1647. {
  1648. name: "Normal",
  1649. height: math.unit(1.83, "meter")
  1650. },
  1651. {
  1652. name: "Size Thief",
  1653. height: math.unit(18, "feet")
  1654. },
  1655. {
  1656. name: "50 Foot Collie",
  1657. height: math.unit(50, "feet")
  1658. },
  1659. {
  1660. name: "Macro",
  1661. height: math.unit(96, "feet"),
  1662. default: true
  1663. },
  1664. {
  1665. name: "Megamerger",
  1666. height: math.unit(650, "feet")
  1667. },
  1668. ]
  1669. ))
  1670. characterMakers.push(() => makeCharacter(
  1671. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1672. {
  1673. front: {
  1674. height: math.unit(7, "feet"),
  1675. weight: math.unit(100, "kg"),
  1676. name: "Front",
  1677. image: {
  1678. source: "./media/characters/march/front.svg",
  1679. extra: 1,
  1680. bottom: 0.015
  1681. }
  1682. },
  1683. foot: {
  1684. height: math.unit(0.9, "feet"),
  1685. name: "Foot",
  1686. image: {
  1687. source: "./media/characters/march/foot.svg"
  1688. }
  1689. },
  1690. },
  1691. [
  1692. {
  1693. name: "Normal",
  1694. height: math.unit(7.9, "feet")
  1695. },
  1696. {
  1697. name: "Macro",
  1698. height: math.unit(220, "meters")
  1699. },
  1700. {
  1701. name: "Megamacro",
  1702. height: math.unit(2.98, "km"),
  1703. default: true
  1704. },
  1705. {
  1706. name: "Gigamacro",
  1707. height: math.unit(15963, "km")
  1708. },
  1709. {
  1710. name: "Teramacro",
  1711. height: math.unit(2980000000, "km")
  1712. },
  1713. {
  1714. name: "Examacro",
  1715. height: math.unit(250, "parsecs")
  1716. },
  1717. ]
  1718. ))
  1719. characterMakers.push(() => makeCharacter(
  1720. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1721. {
  1722. front: {
  1723. height: math.unit(6, "feet"),
  1724. weight: math.unit(60, "kg"),
  1725. name: "Front",
  1726. image: {
  1727. source: "./media/characters/noir/front.svg",
  1728. extra: 1,
  1729. bottom: 0.032
  1730. }
  1731. },
  1732. },
  1733. [
  1734. {
  1735. name: "Normal",
  1736. height: math.unit(6.6, "feet")
  1737. },
  1738. {
  1739. name: "Macro",
  1740. height: math.unit(500, "feet")
  1741. },
  1742. {
  1743. name: "Megamacro",
  1744. height: math.unit(2.5, "km"),
  1745. default: true
  1746. },
  1747. {
  1748. name: "Gigamacro",
  1749. height: math.unit(22500, "km")
  1750. },
  1751. {
  1752. name: "Teramacro",
  1753. height: math.unit(2500000000, "km")
  1754. },
  1755. {
  1756. name: "Examacro",
  1757. height: math.unit(200, "parsecs")
  1758. },
  1759. ]
  1760. ))
  1761. characterMakers.push(() => makeCharacter(
  1762. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1763. {
  1764. front: {
  1765. height: math.unit(7, "feet"),
  1766. weight: math.unit(100, "kg"),
  1767. name: "Front",
  1768. image: {
  1769. source: "./media/characters/okuri/front.svg",
  1770. extra: 1,
  1771. bottom: 0.037
  1772. }
  1773. },
  1774. back: {
  1775. height: math.unit(7, "feet"),
  1776. weight: math.unit(100, "kg"),
  1777. name: "Back",
  1778. image: {
  1779. source: "./media/characters/okuri/back.svg",
  1780. extra: 1,
  1781. bottom: 0.007
  1782. }
  1783. },
  1784. },
  1785. [
  1786. {
  1787. name: "Megamacro",
  1788. height: math.unit(100, "miles"),
  1789. default: true
  1790. },
  1791. ]
  1792. ))
  1793. characterMakers.push(() => makeCharacter(
  1794. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1795. {
  1796. front: {
  1797. height: math.unit(7, "feet"),
  1798. weight: math.unit(100, "kg"),
  1799. name: "Front",
  1800. image: {
  1801. source: "./media/characters/manny/front.svg",
  1802. extra: 1,
  1803. bottom: 0.06
  1804. }
  1805. },
  1806. back: {
  1807. height: math.unit(7, "feet"),
  1808. weight: math.unit(100, "kg"),
  1809. name: "Back",
  1810. image: {
  1811. source: "./media/characters/manny/back.svg",
  1812. extra: 1,
  1813. bottom: 0.014
  1814. }
  1815. },
  1816. },
  1817. [
  1818. {
  1819. name: "Normal",
  1820. height: math.unit(7, "feet"),
  1821. },
  1822. {
  1823. name: "Macro",
  1824. height: math.unit(78, "feet"),
  1825. default: true
  1826. },
  1827. {
  1828. name: "Macro+",
  1829. height: math.unit(300, "meters")
  1830. },
  1831. {
  1832. name: "Macro++",
  1833. height: math.unit(2400, "meters")
  1834. },
  1835. {
  1836. name: "Megamacro",
  1837. height: math.unit(5167, "meters")
  1838. },
  1839. {
  1840. name: "Gigamacro",
  1841. height: math.unit(41769, "miles")
  1842. },
  1843. ]
  1844. ))
  1845. characterMakers.push(() => makeCharacter(
  1846. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1847. {
  1848. front: {
  1849. height: math.unit(7, "feet"),
  1850. weight: math.unit(100, "kg"),
  1851. name: "Front",
  1852. image: {
  1853. source: "./media/characters/adake/front-1.svg"
  1854. }
  1855. },
  1856. frontAlt: {
  1857. height: math.unit(7, "feet"),
  1858. weight: math.unit(100, "kg"),
  1859. name: "Front (Alt)",
  1860. image: {
  1861. source: "./media/characters/adake/front-2.svg",
  1862. extra: 1,
  1863. bottom: 0.01
  1864. }
  1865. },
  1866. back: {
  1867. height: math.unit(7, "feet"),
  1868. weight: math.unit(100, "kg"),
  1869. name: "Back",
  1870. image: {
  1871. source: "./media/characters/adake/back.svg",
  1872. }
  1873. },
  1874. kneel: {
  1875. height: math.unit(5.385, "feet"),
  1876. weight: math.unit(100, "kg"),
  1877. name: "Kneeling",
  1878. image: {
  1879. source: "./media/characters/adake/kneel.svg",
  1880. bottom: 0.052
  1881. }
  1882. },
  1883. },
  1884. [
  1885. {
  1886. name: "Normal",
  1887. height: math.unit(7, "feet"),
  1888. },
  1889. {
  1890. name: "Macro",
  1891. height: math.unit(78, "feet"),
  1892. default: true
  1893. },
  1894. {
  1895. name: "Macro+",
  1896. height: math.unit(300, "meters")
  1897. },
  1898. {
  1899. name: "Macro++",
  1900. height: math.unit(2400, "meters")
  1901. },
  1902. {
  1903. name: "Megamacro",
  1904. height: math.unit(5167, "meters")
  1905. },
  1906. {
  1907. name: "Gigamacro",
  1908. height: math.unit(41769, "miles")
  1909. },
  1910. ]
  1911. ))
  1912. characterMakers.push(() => makeCharacter(
  1913. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1914. {
  1915. front: {
  1916. height: math.unit(1.65, "meters"),
  1917. weight: math.unit(50, "kg"),
  1918. name: "Front",
  1919. image: {
  1920. source: "./media/characters/elijah/front.svg",
  1921. extra: 858 / 830,
  1922. bottom: 95.5 / 953.8559
  1923. }
  1924. },
  1925. back: {
  1926. height: math.unit(1.65, "meters"),
  1927. weight: math.unit(50, "kg"),
  1928. name: "Back",
  1929. image: {
  1930. source: "./media/characters/elijah/back.svg",
  1931. extra: 895 / 850,
  1932. bottom: 5.3 / 897.956
  1933. }
  1934. },
  1935. frontNsfw: {
  1936. height: math.unit(1.65, "meters"),
  1937. weight: math.unit(50, "kg"),
  1938. name: "Front (NSFW)",
  1939. image: {
  1940. source: "./media/characters/elijah/front-nsfw.svg",
  1941. extra: 858 / 830,
  1942. bottom: 95.5 / 953.8559
  1943. }
  1944. },
  1945. backNsfw: {
  1946. height: math.unit(1.65, "meters"),
  1947. weight: math.unit(50, "kg"),
  1948. name: "Back (NSFW)",
  1949. image: {
  1950. source: "./media/characters/elijah/back-nsfw.svg",
  1951. extra: 895 / 850,
  1952. bottom: 5.3 / 897.956
  1953. }
  1954. },
  1955. dick: {
  1956. height: math.unit(1, "feet"),
  1957. name: "Dick",
  1958. image: {
  1959. source: "./media/characters/elijah/dick.svg"
  1960. }
  1961. },
  1962. beakOpen: {
  1963. height: math.unit(1.25, "feet"),
  1964. name: "Beak (Open)",
  1965. image: {
  1966. source: "./media/characters/elijah/beak-open.svg"
  1967. }
  1968. },
  1969. beakShut: {
  1970. height: math.unit(1.25, "feet"),
  1971. name: "Beak (Shut)",
  1972. image: {
  1973. source: "./media/characters/elijah/beak-shut.svg"
  1974. }
  1975. },
  1976. footFlexing: {
  1977. height: math.unit(1.61, "feet"),
  1978. name: "Foot (Flexing)",
  1979. image: {
  1980. source: "./media/characters/elijah/foot-flexing.svg"
  1981. }
  1982. },
  1983. footStepping: {
  1984. height: math.unit(1.44, "feet"),
  1985. name: "Foot (Stepping)",
  1986. image: {
  1987. source: "./media/characters/elijah/foot-stepping.svg"
  1988. }
  1989. },
  1990. plantigradeLeg: {
  1991. height: math.unit(2.34, "feet"),
  1992. name: "Plantigrade Leg",
  1993. image: {
  1994. source: "./media/characters/elijah/plantigrade-leg.svg"
  1995. }
  1996. },
  1997. plantigradeFootLeft: {
  1998. height: math.unit(0.9, "feet"),
  1999. name: "Plantigrade Foot (Left)",
  2000. image: {
  2001. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2002. }
  2003. },
  2004. plantigradeFootRight: {
  2005. height: math.unit(0.9, "feet"),
  2006. name: "Plantigrade Foot (Right)",
  2007. image: {
  2008. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2009. }
  2010. },
  2011. },
  2012. [
  2013. {
  2014. name: "Normal",
  2015. height: math.unit(1.65, "meters")
  2016. },
  2017. {
  2018. name: "Macro",
  2019. height: math.unit(55, "meters"),
  2020. default: true
  2021. },
  2022. {
  2023. name: "Macro+",
  2024. height: math.unit(105, "meters")
  2025. },
  2026. ]
  2027. ))
  2028. characterMakers.push(() => makeCharacter(
  2029. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2030. {
  2031. front: {
  2032. height: math.unit(11, "feet"),
  2033. weight: math.unit(80, "kg"),
  2034. name: "Front",
  2035. image: {
  2036. source: "./media/characters/rai/front.svg",
  2037. extra: 1,
  2038. bottom: 0.03
  2039. }
  2040. },
  2041. side: {
  2042. height: math.unit(11, "feet"),
  2043. weight: math.unit(80, "kg"),
  2044. name: "Side",
  2045. image: {
  2046. source: "./media/characters/rai/side.svg"
  2047. }
  2048. },
  2049. back: {
  2050. height: math.unit(11, "feet"),
  2051. weight: math.unit(80, "lb"),
  2052. name: "Back",
  2053. image: {
  2054. source: "./media/characters/rai/back.svg",
  2055. extra: 1,
  2056. bottom: 0.01
  2057. }
  2058. },
  2059. feral: {
  2060. height: math.unit(11, "feet"),
  2061. weight: math.unit(800, "lb"),
  2062. name: "Feral",
  2063. image: {
  2064. source: "./media/characters/rai/feral.svg",
  2065. extra: 1050 / 659,
  2066. bottom: 0.07
  2067. }
  2068. },
  2069. dragon: {
  2070. height: math.unit(23, "feet"),
  2071. weight: math.unit(50000, "lb"),
  2072. name: "Dragon",
  2073. image: {
  2074. source: "./media/characters/rai/dragon.svg",
  2075. extra: 2498 / 2030,
  2076. bottom: 85.2 / 2584
  2077. }
  2078. },
  2079. maw: {
  2080. height: math.unit(6 / 3.81416, "feet"),
  2081. name: "Maw",
  2082. image: {
  2083. source: "./media/characters/rai/maw.svg"
  2084. }
  2085. },
  2086. },
  2087. [
  2088. {
  2089. name: "Normal",
  2090. height: math.unit(11, "feet")
  2091. },
  2092. {
  2093. name: "Macro",
  2094. height: math.unit(302, "feet"),
  2095. default: true
  2096. },
  2097. ]
  2098. ))
  2099. characterMakers.push(() => makeCharacter(
  2100. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2101. {
  2102. frontDressed: {
  2103. height: math.unit(216, "feet"),
  2104. weight: math.unit(7000000, "lb"),
  2105. name: "Front (Dressed)",
  2106. image: {
  2107. source: "./media/characters/jazzy/front-dressed.svg",
  2108. extra: 2738 / 2651,
  2109. bottom: 41.8 / 2786
  2110. }
  2111. },
  2112. backDressed: {
  2113. height: math.unit(216, "feet"),
  2114. weight: math.unit(7000000, "lb"),
  2115. name: "Back (Dressed)",
  2116. image: {
  2117. source: "./media/characters/jazzy/back-dressed.svg",
  2118. extra: 2775 / 2673,
  2119. bottom: 36.8 / 2817
  2120. }
  2121. },
  2122. front: {
  2123. height: math.unit(216, "feet"),
  2124. weight: math.unit(7000000, "lb"),
  2125. name: "Front",
  2126. image: {
  2127. source: "./media/characters/jazzy/front.svg",
  2128. extra: 2738 / 2651,
  2129. bottom: 41.8 / 2786
  2130. }
  2131. },
  2132. back: {
  2133. height: math.unit(216, "feet"),
  2134. weight: math.unit(7000000, "lb"),
  2135. name: "Back",
  2136. image: {
  2137. source: "./media/characters/jazzy/back.svg",
  2138. extra: 2775 / 2673,
  2139. bottom: 36.8 / 2817
  2140. }
  2141. },
  2142. maw: {
  2143. height: math.unit(20, "feet"),
  2144. name: "Maw",
  2145. image: {
  2146. source: "./media/characters/jazzy/maw.svg"
  2147. }
  2148. },
  2149. paws: {
  2150. height: math.unit(27.5, "feet"),
  2151. name: "Paws",
  2152. image: {
  2153. source: "./media/characters/jazzy/paws.svg"
  2154. }
  2155. },
  2156. eye: {
  2157. height: math.unit(4.4, "feet"),
  2158. name: "Eye",
  2159. image: {
  2160. source: "./media/characters/jazzy/eye.svg"
  2161. }
  2162. },
  2163. droneOffense: {
  2164. height: math.unit(9.5, "inches"),
  2165. name: "Drone (Offense)",
  2166. image: {
  2167. source: "./media/characters/jazzy/drone-offense.svg"
  2168. }
  2169. },
  2170. droneRecon: {
  2171. height: math.unit(9.5, "inches"),
  2172. name: "Drone (Recon)",
  2173. image: {
  2174. source: "./media/characters/jazzy/drone-recon.svg"
  2175. }
  2176. },
  2177. droneDefense: {
  2178. height: math.unit(9.5, "inches"),
  2179. name: "Drone (Defense)",
  2180. image: {
  2181. source: "./media/characters/jazzy/drone-defense.svg"
  2182. }
  2183. },
  2184. },
  2185. [
  2186. {
  2187. name: "Macro",
  2188. height: math.unit(216, "feet"),
  2189. default: true
  2190. },
  2191. ]
  2192. ))
  2193. characterMakers.push(() => makeCharacter(
  2194. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2195. {
  2196. front: {
  2197. height: math.unit(7, "feet"),
  2198. weight: math.unit(80, "kg"),
  2199. name: "Front",
  2200. image: {
  2201. source: "./media/characters/flamm/front.svg",
  2202. extra: 1794 / 1677,
  2203. bottom: 31.7 / 1828.5
  2204. }
  2205. },
  2206. },
  2207. [
  2208. {
  2209. name: "Normal",
  2210. height: math.unit(9.5, "feet")
  2211. },
  2212. {
  2213. name: "Macro",
  2214. height: math.unit(200, "feet"),
  2215. default: true
  2216. },
  2217. ]
  2218. ))
  2219. characterMakers.push(() => makeCharacter(
  2220. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2221. {
  2222. front: {
  2223. height: math.unit(5 + 3/12, "feet"),
  2224. weight: math.unit(60, "kg"),
  2225. name: "Front",
  2226. image: {
  2227. source: "./media/characters/zephiro/front.svg",
  2228. extra: 2309 / 2162,
  2229. bottom: 0.069
  2230. }
  2231. },
  2232. side: {
  2233. height: math.unit(5 + 3/12, "feet"),
  2234. weight: math.unit(60, "kg"),
  2235. name: "Side",
  2236. image: {
  2237. source: "./media/characters/zephiro/side.svg",
  2238. extra: 2403 / 2279,
  2239. bottom: 0.015
  2240. }
  2241. },
  2242. back: {
  2243. height: math.unit(5 + 3/12, "feet"),
  2244. weight: math.unit(60, "kg"),
  2245. name: "Back",
  2246. image: {
  2247. source: "./media/characters/zephiro/back.svg",
  2248. extra: 2373 / 2244,
  2249. bottom: 0.013
  2250. }
  2251. },
  2252. hand: {
  2253. height: math.unit(0.68, "feet"),
  2254. name: "Hand",
  2255. image: {
  2256. source: "./media/characters/zephiro/hand.svg"
  2257. }
  2258. },
  2259. paw: {
  2260. height: math.unit(1, "feet"),
  2261. name: "Paw",
  2262. image: {
  2263. source: "./media/characters/zephiro/paw.svg"
  2264. }
  2265. },
  2266. beans: {
  2267. height: math.unit(0.93, "feet"),
  2268. name: "Beans",
  2269. image: {
  2270. source: "./media/characters/zephiro/beans.svg"
  2271. }
  2272. },
  2273. },
  2274. [
  2275. {
  2276. name: "Micro",
  2277. height: math.unit(3, "inches")
  2278. },
  2279. {
  2280. name: "Normal",
  2281. height: math.unit(5 + 3 / 12, "feet"),
  2282. default: true
  2283. },
  2284. {
  2285. name: "Macro",
  2286. height: math.unit(118, "feet")
  2287. },
  2288. ]
  2289. ))
  2290. characterMakers.push(() => makeCharacter(
  2291. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2292. {
  2293. front: {
  2294. height: math.unit(5, "feet"),
  2295. weight: math.unit(90, "kg"),
  2296. name: "Front",
  2297. image: {
  2298. source: "./media/characters/fory/front.svg",
  2299. extra: 2862 / 2674,
  2300. bottom: 180 / 3043.8
  2301. }
  2302. },
  2303. back: {
  2304. height: math.unit(5, "feet"),
  2305. weight: math.unit(90, "kg"),
  2306. name: "Back",
  2307. image: {
  2308. source: "./media/characters/fory/back.svg",
  2309. extra: 2962 / 2791,
  2310. bottom: 106 / 3071.8
  2311. }
  2312. },
  2313. foot: {
  2314. height: math.unit(2.14, "feet"),
  2315. name: "Foot",
  2316. image: {
  2317. source: "./media/characters/fory/foot.svg"
  2318. }
  2319. },
  2320. },
  2321. [
  2322. {
  2323. name: "Normal",
  2324. height: math.unit(5, "feet")
  2325. },
  2326. {
  2327. name: "Macro",
  2328. height: math.unit(50, "feet"),
  2329. default: true
  2330. },
  2331. {
  2332. name: "Megamacro",
  2333. height: math.unit(10, "miles")
  2334. },
  2335. {
  2336. name: "Gigamacro",
  2337. height: math.unit(5, "earths")
  2338. },
  2339. ]
  2340. ))
  2341. characterMakers.push(() => makeCharacter(
  2342. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2343. {
  2344. front: {
  2345. height: math.unit(7, "feet"),
  2346. weight: math.unit(90, "kg"),
  2347. name: "Front",
  2348. image: {
  2349. source: "./media/characters/kurrikage/front.svg",
  2350. extra: 1,
  2351. bottom: 0.035
  2352. }
  2353. },
  2354. back: {
  2355. height: math.unit(7, "feet"),
  2356. weight: math.unit(90, "lb"),
  2357. name: "Back",
  2358. image: {
  2359. source: "./media/characters/kurrikage/back.svg"
  2360. }
  2361. },
  2362. paw: {
  2363. height: math.unit(1.5, "feet"),
  2364. name: "Paw",
  2365. image: {
  2366. source: "./media/characters/kurrikage/paw.svg"
  2367. }
  2368. },
  2369. staff: {
  2370. height: math.unit(6.7, "feet"),
  2371. name: "Staff",
  2372. image: {
  2373. source: "./media/characters/kurrikage/staff.svg"
  2374. }
  2375. },
  2376. peek: {
  2377. height: math.unit(1.05, "feet"),
  2378. name: "Peeking",
  2379. image: {
  2380. source: "./media/characters/kurrikage/peek.svg",
  2381. bottom: 0.08
  2382. }
  2383. },
  2384. },
  2385. [
  2386. {
  2387. name: "Normal",
  2388. height: math.unit(12, "feet"),
  2389. default: true
  2390. },
  2391. {
  2392. name: "Big",
  2393. height: math.unit(20, "feet")
  2394. },
  2395. {
  2396. name: "Macro",
  2397. height: math.unit(500, "feet")
  2398. },
  2399. {
  2400. name: "Megamacro",
  2401. height: math.unit(20, "miles")
  2402. },
  2403. ]
  2404. ))
  2405. characterMakers.push(() => makeCharacter(
  2406. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2407. {
  2408. front: {
  2409. height: math.unit(6, "feet"),
  2410. weight: math.unit(75, "kg"),
  2411. name: "Front",
  2412. image: {
  2413. source: "./media/characters/shingo/front.svg",
  2414. extra: 706/681,
  2415. bottom: 11/717
  2416. }
  2417. },
  2418. frontAlt: {
  2419. height: math.unit(6, "feet"),
  2420. weight: math.unit(75, "kg"),
  2421. name: "Front (Alt)",
  2422. image: {
  2423. source: "./media/characters/shingo/front-alt.svg",
  2424. extra: 3511 / 3338,
  2425. bottom: 0.005
  2426. }
  2427. },
  2428. paw: {
  2429. height: math.unit(1, "feet"),
  2430. name: "Paw",
  2431. image: {
  2432. source: "./media/characters/shingo/paw.svg"
  2433. }
  2434. },
  2435. },
  2436. [
  2437. {
  2438. name: "Micro",
  2439. height: math.unit(4, "inches")
  2440. },
  2441. {
  2442. name: "Normal",
  2443. height: math.unit(6, "feet"),
  2444. default: true
  2445. },
  2446. {
  2447. name: "Macro",
  2448. height: math.unit(108, "feet")
  2449. },
  2450. {
  2451. name: "Macro+",
  2452. height: math.unit(1500, "feet")
  2453. },
  2454. ]
  2455. ))
  2456. characterMakers.push(() => makeCharacter(
  2457. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2458. {
  2459. side: {
  2460. height: math.unit(6, "feet"),
  2461. weight: math.unit(75, "kg"),
  2462. name: "Side",
  2463. image: {
  2464. source: "./media/characters/aigey/side.svg"
  2465. }
  2466. },
  2467. },
  2468. [
  2469. {
  2470. name: "Macro",
  2471. height: math.unit(200, "feet"),
  2472. default: true
  2473. },
  2474. {
  2475. name: "Megamacro",
  2476. height: math.unit(100, "miles")
  2477. },
  2478. ]
  2479. )
  2480. )
  2481. characterMakers.push(() => makeCharacter(
  2482. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2483. {
  2484. front: {
  2485. height: math.unit(5 + 5 / 12, "feet"),
  2486. weight: math.unit(75, "kg"),
  2487. name: "Front",
  2488. image: {
  2489. source: "./media/characters/natasha/front.svg",
  2490. extra: 859 / 824,
  2491. bottom: 23 / 879.6
  2492. }
  2493. },
  2494. frontNsfw: {
  2495. height: math.unit(5 + 5 / 12, "feet"),
  2496. weight: math.unit(75, "kg"),
  2497. name: "Front (NSFW)",
  2498. image: {
  2499. source: "./media/characters/natasha/front-nsfw.svg",
  2500. extra: 859 / 824,
  2501. bottom: 23 / 879.6
  2502. }
  2503. },
  2504. frontErect: {
  2505. height: math.unit(5 + 5 / 12, "feet"),
  2506. weight: math.unit(75, "kg"),
  2507. name: "Front (Erect)",
  2508. image: {
  2509. source: "./media/characters/natasha/front-erect.svg",
  2510. extra: 859 / 824,
  2511. bottom: 23 / 879.6
  2512. }
  2513. },
  2514. back: {
  2515. height: math.unit(5 + 5 / 12, "feet"),
  2516. weight: math.unit(75, "kg"),
  2517. name: "Back",
  2518. image: {
  2519. source: "./media/characters/natasha/back.svg",
  2520. extra: 887.9 / 852.6,
  2521. bottom: 9.7 / 896.4
  2522. }
  2523. },
  2524. backAlt: {
  2525. height: math.unit(5 + 5 / 12, "feet"),
  2526. weight: math.unit(75, "kg"),
  2527. name: "Back (Alt)",
  2528. image: {
  2529. source: "./media/characters/natasha/back-alt.svg",
  2530. extra: 1236.7 / 1192,
  2531. bottom: 22.3 / 1258.2
  2532. }
  2533. },
  2534. dick: {
  2535. height: math.unit(1.772, "feet"),
  2536. name: "Dick",
  2537. image: {
  2538. source: "./media/characters/natasha/dick.svg"
  2539. }
  2540. },
  2541. paw: {
  2542. height: math.unit(0.250, "meters"),
  2543. name: "Paw",
  2544. image: {
  2545. source: "./media/characters/natasha/paw.svg"
  2546. }
  2547. },
  2548. },
  2549. [
  2550. {
  2551. name: "Normal",
  2552. height: math.unit(5 + 5 / 12, "feet")
  2553. },
  2554. {
  2555. name: "Large",
  2556. height: math.unit(12, "feet")
  2557. },
  2558. {
  2559. name: "Macro",
  2560. height: math.unit(100, "feet"),
  2561. default: true
  2562. },
  2563. {
  2564. name: "Macro+",
  2565. height: math.unit(260, "feet")
  2566. },
  2567. {
  2568. name: "Macro++",
  2569. height: math.unit(1, "mile")
  2570. },
  2571. ]
  2572. ))
  2573. characterMakers.push(() => makeCharacter(
  2574. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2575. {
  2576. front: {
  2577. height: math.unit(6, "feet"),
  2578. weight: math.unit(75, "kg"),
  2579. name: "Front",
  2580. image: {
  2581. source: "./media/characters/malik/front.svg"
  2582. }
  2583. },
  2584. side: {
  2585. height: math.unit(6, "feet"),
  2586. weight: math.unit(75, "kg"),
  2587. name: "Side",
  2588. image: {
  2589. source: "./media/characters/malik/side.svg",
  2590. extra: 1.1539
  2591. }
  2592. },
  2593. back: {
  2594. height: math.unit(6, "feet"),
  2595. weight: math.unit(75, "kg"),
  2596. name: "Back",
  2597. image: {
  2598. source: "./media/characters/malik/back.svg"
  2599. }
  2600. },
  2601. },
  2602. [
  2603. {
  2604. name: "Macro",
  2605. height: math.unit(156, "feet"),
  2606. default: true
  2607. },
  2608. {
  2609. name: "Macro+",
  2610. height: math.unit(1188, "feet")
  2611. },
  2612. ]
  2613. ))
  2614. characterMakers.push(() => makeCharacter(
  2615. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2616. {
  2617. front: {
  2618. height: math.unit(6, "feet"),
  2619. weight: math.unit(75, "kg"),
  2620. name: "Front",
  2621. image: {
  2622. source: "./media/characters/sefer/front.svg",
  2623. extra: 848 / 659,
  2624. bottom: 28.3 / 876.442
  2625. }
  2626. },
  2627. back: {
  2628. height: math.unit(6, "feet"),
  2629. weight: math.unit(75, "kg"),
  2630. name: "Back",
  2631. image: {
  2632. source: "./media/characters/sefer/back.svg",
  2633. extra: 864 / 695,
  2634. bottom: 10 / 871
  2635. }
  2636. },
  2637. frontDressed: {
  2638. height: math.unit(6, "feet"),
  2639. weight: math.unit(75, "kg"),
  2640. name: "Front (Dressed)",
  2641. image: {
  2642. source: "./media/characters/sefer/front-dressed.svg",
  2643. extra: 839 / 653,
  2644. bottom: 37.6 / 878
  2645. }
  2646. },
  2647. },
  2648. [
  2649. {
  2650. name: "Normal",
  2651. height: math.unit(6, "feet"),
  2652. default: true
  2653. },
  2654. ]
  2655. ))
  2656. characterMakers.push(() => makeCharacter(
  2657. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2658. {
  2659. body: {
  2660. height: math.unit(2.2428, "meter"),
  2661. weight: math.unit(124.738, "kg"),
  2662. name: "Body",
  2663. image: {
  2664. extra: 1225 / 1050,
  2665. source: "./media/characters/north/front.svg"
  2666. }
  2667. }
  2668. },
  2669. [
  2670. {
  2671. name: "Micro",
  2672. height: math.unit(4, "inches")
  2673. },
  2674. {
  2675. name: "Macro",
  2676. height: math.unit(63, "meters")
  2677. },
  2678. {
  2679. name: "Megamacro",
  2680. height: math.unit(101, "miles"),
  2681. default: true
  2682. }
  2683. ]
  2684. ))
  2685. characterMakers.push(() => makeCharacter(
  2686. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2687. {
  2688. angled: {
  2689. height: math.unit(4, "meter"),
  2690. weight: math.unit(150, "kg"),
  2691. name: "Angled",
  2692. image: {
  2693. source: "./media/characters/talan/angled-sfw.svg",
  2694. bottom: 29 / 3734
  2695. }
  2696. },
  2697. angledNsfw: {
  2698. height: math.unit(4, "meter"),
  2699. weight: math.unit(150, "kg"),
  2700. name: "Angled (NSFW)",
  2701. image: {
  2702. source: "./media/characters/talan/angled-nsfw.svg",
  2703. bottom: 29 / 3734
  2704. }
  2705. },
  2706. frontNsfw: {
  2707. height: math.unit(4, "meter"),
  2708. weight: math.unit(150, "kg"),
  2709. name: "Front (NSFW)",
  2710. image: {
  2711. source: "./media/characters/talan/front-nsfw.svg",
  2712. bottom: 29 / 3734
  2713. }
  2714. },
  2715. sideNsfw: {
  2716. height: math.unit(4, "meter"),
  2717. weight: math.unit(150, "kg"),
  2718. name: "Side (NSFW)",
  2719. image: {
  2720. source: "./media/characters/talan/side-nsfw.svg",
  2721. bottom: 29 / 3734
  2722. }
  2723. },
  2724. back: {
  2725. height: math.unit(4, "meter"),
  2726. weight: math.unit(150, "kg"),
  2727. name: "Back",
  2728. image: {
  2729. source: "./media/characters/talan/back.svg"
  2730. }
  2731. },
  2732. dickBottom: {
  2733. height: math.unit(0.621, "meter"),
  2734. name: "Dick (Bottom)",
  2735. image: {
  2736. source: "./media/characters/talan/dick-bottom.svg"
  2737. }
  2738. },
  2739. dickTop: {
  2740. height: math.unit(0.621, "meter"),
  2741. name: "Dick (Top)",
  2742. image: {
  2743. source: "./media/characters/talan/dick-top.svg"
  2744. }
  2745. },
  2746. dickSide: {
  2747. height: math.unit(0.305, "meter"),
  2748. name: "Dick (Side)",
  2749. image: {
  2750. source: "./media/characters/talan/dick-side.svg"
  2751. }
  2752. },
  2753. dickFront: {
  2754. height: math.unit(0.305, "meter"),
  2755. name: "Dick (Front)",
  2756. image: {
  2757. source: "./media/characters/talan/dick-front.svg"
  2758. }
  2759. },
  2760. },
  2761. [
  2762. {
  2763. name: "Normal",
  2764. height: math.unit(4, "meters")
  2765. },
  2766. {
  2767. name: "Macro",
  2768. height: math.unit(100, "meters")
  2769. },
  2770. {
  2771. name: "Megamacro",
  2772. height: math.unit(2, "miles"),
  2773. default: true
  2774. },
  2775. {
  2776. name: "Gigamacro",
  2777. height: math.unit(5000, "miles")
  2778. },
  2779. {
  2780. name: "Teramacro",
  2781. height: math.unit(100, "parsecs")
  2782. }
  2783. ]
  2784. ))
  2785. characterMakers.push(() => makeCharacter(
  2786. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2787. {
  2788. front: {
  2789. height: math.unit(2, "meter"),
  2790. weight: math.unit(90, "kg"),
  2791. name: "Front",
  2792. image: {
  2793. source: "./media/characters/gael'rathus/front.svg"
  2794. }
  2795. },
  2796. frontAlt: {
  2797. height: math.unit(2, "meter"),
  2798. weight: math.unit(90, "kg"),
  2799. name: "Front (alt)",
  2800. image: {
  2801. source: "./media/characters/gael'rathus/front-alt.svg"
  2802. }
  2803. },
  2804. frontAlt2: {
  2805. height: math.unit(2, "meter"),
  2806. weight: math.unit(90, "kg"),
  2807. name: "Front (alt 2)",
  2808. image: {
  2809. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2810. }
  2811. }
  2812. },
  2813. [
  2814. {
  2815. name: "Normal",
  2816. height: math.unit(9, "feet"),
  2817. default: true
  2818. },
  2819. {
  2820. name: "Large",
  2821. height: math.unit(25, "feet")
  2822. },
  2823. {
  2824. name: "Macro",
  2825. height: math.unit(0.25, "miles")
  2826. },
  2827. {
  2828. name: "Megamacro",
  2829. height: math.unit(10, "miles")
  2830. }
  2831. ]
  2832. ))
  2833. characterMakers.push(() => makeCharacter(
  2834. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2835. {
  2836. side: {
  2837. height: math.unit(2, "meter"),
  2838. weight: math.unit(140, "kg"),
  2839. name: "Side",
  2840. image: {
  2841. source: "./media/characters/sosha/side.svg",
  2842. bottom: 0.042
  2843. }
  2844. },
  2845. },
  2846. [
  2847. {
  2848. name: "Normal",
  2849. height: math.unit(12, "feet"),
  2850. default: true
  2851. }
  2852. ]
  2853. ))
  2854. characterMakers.push(() => makeCharacter(
  2855. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2856. {
  2857. side: {
  2858. height: math.unit(5 + 5 / 12, "feet"),
  2859. weight: math.unit(170, "kg"),
  2860. name: "Side",
  2861. image: {
  2862. source: "./media/characters/runnola/side.svg",
  2863. extra: 741 / 448,
  2864. bottom: 0.05
  2865. }
  2866. },
  2867. },
  2868. [
  2869. {
  2870. name: "Small",
  2871. height: math.unit(3, "feet")
  2872. },
  2873. {
  2874. name: "Normal",
  2875. height: math.unit(5 + 5 / 12, "feet"),
  2876. default: true
  2877. },
  2878. {
  2879. name: "Big",
  2880. height: math.unit(10, "feet")
  2881. },
  2882. ]
  2883. ))
  2884. characterMakers.push(() => makeCharacter(
  2885. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2886. {
  2887. front: {
  2888. height: math.unit(2, "meter"),
  2889. weight: math.unit(50, "kg"),
  2890. name: "Front",
  2891. image: {
  2892. source: "./media/characters/kurribird/front.svg",
  2893. bottom: 0.015
  2894. }
  2895. },
  2896. frontAlt: {
  2897. height: math.unit(1.5, "meter"),
  2898. weight: math.unit(50, "kg"),
  2899. name: "Front (Alt)",
  2900. image: {
  2901. source: "./media/characters/kurribird/front-alt.svg",
  2902. extra: 1.45
  2903. }
  2904. },
  2905. },
  2906. [
  2907. {
  2908. name: "Normal",
  2909. height: math.unit(7, "feet")
  2910. },
  2911. {
  2912. name: "Big",
  2913. height: math.unit(12, "feet"),
  2914. default: true
  2915. },
  2916. {
  2917. name: "Macro",
  2918. height: math.unit(1500, "feet")
  2919. },
  2920. {
  2921. name: "Megamacro",
  2922. height: math.unit(2, "miles")
  2923. }
  2924. ]
  2925. ))
  2926. characterMakers.push(() => makeCharacter(
  2927. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2928. {
  2929. front: {
  2930. height: math.unit(2, "meter"),
  2931. weight: math.unit(80, "kg"),
  2932. name: "Front",
  2933. image: {
  2934. source: "./media/characters/elbial/front.svg",
  2935. extra: 1643 / 1556,
  2936. bottom: 60.2 / 1696
  2937. }
  2938. },
  2939. side: {
  2940. height: math.unit(2, "meter"),
  2941. weight: math.unit(80, "kg"),
  2942. name: "Side",
  2943. image: {
  2944. source: "./media/characters/elbial/side.svg",
  2945. extra: 1630 / 1565,
  2946. bottom: 71.5 / 1697
  2947. }
  2948. },
  2949. back: {
  2950. height: math.unit(2, "meter"),
  2951. weight: math.unit(80, "kg"),
  2952. name: "Back",
  2953. image: {
  2954. source: "./media/characters/elbial/back.svg",
  2955. extra: 1668 / 1595,
  2956. bottom: 5.6 / 1672
  2957. }
  2958. },
  2959. frontDressed: {
  2960. height: math.unit(2, "meter"),
  2961. weight: math.unit(80, "kg"),
  2962. name: "Front (Dressed)",
  2963. image: {
  2964. source: "./media/characters/elbial/front-dressed.svg",
  2965. extra: 1653 / 1584,
  2966. bottom: 57 / 1708
  2967. }
  2968. },
  2969. genitals: {
  2970. height: math.unit(2 / 3.367, "meter"),
  2971. name: "Genitals",
  2972. image: {
  2973. source: "./media/characters/elbial/genitals.svg"
  2974. }
  2975. },
  2976. },
  2977. [
  2978. {
  2979. name: "Large",
  2980. height: math.unit(100, "feet")
  2981. },
  2982. {
  2983. name: "Macro",
  2984. height: math.unit(500, "feet"),
  2985. default: true
  2986. },
  2987. {
  2988. name: "Megamacro",
  2989. height: math.unit(10, "miles")
  2990. },
  2991. {
  2992. name: "Gigamacro",
  2993. height: math.unit(25000, "miles")
  2994. },
  2995. {
  2996. name: "Full-Size",
  2997. height: math.unit(8000000, "gigaparsecs")
  2998. }
  2999. ]
  3000. ))
  3001. characterMakers.push(() => makeCharacter(
  3002. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3003. {
  3004. front: {
  3005. height: math.unit(2, "meter"),
  3006. weight: math.unit(60, "kg"),
  3007. name: "Front",
  3008. image: {
  3009. source: "./media/characters/noah/front.svg"
  3010. }
  3011. },
  3012. talons: {
  3013. height: math.unit(0.315, "meter"),
  3014. name: "Talons",
  3015. image: {
  3016. source: "./media/characters/noah/talons.svg"
  3017. }
  3018. }
  3019. },
  3020. [
  3021. {
  3022. name: "Large",
  3023. height: math.unit(50, "feet")
  3024. },
  3025. {
  3026. name: "Macro",
  3027. height: math.unit(750, "feet"),
  3028. default: true
  3029. },
  3030. {
  3031. name: "Megamacro",
  3032. height: math.unit(50, "miles")
  3033. },
  3034. {
  3035. name: "Gigamacro",
  3036. height: math.unit(100000, "miles")
  3037. },
  3038. {
  3039. name: "Full-Size",
  3040. height: math.unit(3000000000, "miles")
  3041. }
  3042. ]
  3043. ))
  3044. characterMakers.push(() => makeCharacter(
  3045. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3046. {
  3047. front: {
  3048. height: math.unit(2, "meter"),
  3049. weight: math.unit(80, "kg"),
  3050. name: "Front",
  3051. image: {
  3052. source: "./media/characters/natalya/front.svg"
  3053. }
  3054. },
  3055. back: {
  3056. height: math.unit(2, "meter"),
  3057. weight: math.unit(80, "kg"),
  3058. name: "Back",
  3059. image: {
  3060. source: "./media/characters/natalya/back.svg"
  3061. }
  3062. }
  3063. },
  3064. [
  3065. {
  3066. name: "Normal",
  3067. height: math.unit(150, "feet"),
  3068. default: true
  3069. },
  3070. {
  3071. name: "Megamacro",
  3072. height: math.unit(5, "miles")
  3073. },
  3074. {
  3075. name: "Full-Size",
  3076. height: math.unit(600, "kiloparsecs")
  3077. }
  3078. ]
  3079. ))
  3080. characterMakers.push(() => makeCharacter(
  3081. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3082. {
  3083. front: {
  3084. height: math.unit(2, "meter"),
  3085. weight: math.unit(50, "kg"),
  3086. name: "Front",
  3087. image: {
  3088. source: "./media/characters/erestrebah/front.svg",
  3089. extra: 208 / 193,
  3090. bottom: 0.055
  3091. }
  3092. },
  3093. back: {
  3094. height: math.unit(2, "meter"),
  3095. weight: math.unit(50, "kg"),
  3096. name: "Back",
  3097. image: {
  3098. source: "./media/characters/erestrebah/back.svg",
  3099. extra: 1.3
  3100. }
  3101. }
  3102. },
  3103. [
  3104. {
  3105. name: "Normal",
  3106. height: math.unit(10, "feet")
  3107. },
  3108. {
  3109. name: "Large",
  3110. height: math.unit(50, "feet"),
  3111. default: true
  3112. },
  3113. {
  3114. name: "Macro",
  3115. height: math.unit(300, "feet")
  3116. },
  3117. {
  3118. name: "Macro+",
  3119. height: math.unit(750, "feet")
  3120. },
  3121. {
  3122. name: "Megamacro",
  3123. height: math.unit(3, "miles")
  3124. }
  3125. ]
  3126. ))
  3127. characterMakers.push(() => makeCharacter(
  3128. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3129. {
  3130. front: {
  3131. height: math.unit(2, "meter"),
  3132. weight: math.unit(80, "kg"),
  3133. name: "Front",
  3134. image: {
  3135. source: "./media/characters/jennifer/front.svg",
  3136. bottom: 0.11,
  3137. extra: 1.16
  3138. }
  3139. },
  3140. frontAlt: {
  3141. height: math.unit(2, "meter"),
  3142. weight: math.unit(80, "kg"),
  3143. name: "Front (Alt)",
  3144. image: {
  3145. source: "./media/characters/jennifer/front-alt.svg"
  3146. }
  3147. }
  3148. },
  3149. [
  3150. {
  3151. name: "Canon Height",
  3152. height: math.unit(120, "feet"),
  3153. default: true
  3154. },
  3155. {
  3156. name: "Macro+",
  3157. height: math.unit(300, "feet")
  3158. },
  3159. {
  3160. name: "Megamacro",
  3161. height: math.unit(20000, "feet")
  3162. }
  3163. ]
  3164. ))
  3165. characterMakers.push(() => makeCharacter(
  3166. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3167. {
  3168. front: {
  3169. height: math.unit(2, "meter"),
  3170. weight: math.unit(50, "kg"),
  3171. name: "Front",
  3172. image: {
  3173. source: "./media/characters/kalista/front.svg",
  3174. extra: 1947 / 1700,
  3175. bottom: 76.6 / 1412.98
  3176. }
  3177. },
  3178. back: {
  3179. height: math.unit(2, "meter"),
  3180. weight: math.unit(50, "kg"),
  3181. name: "Back",
  3182. image: {
  3183. source: "./media/characters/kalista/back.svg",
  3184. extra: 1366 / 1156,
  3185. bottom: 33.9 / 1362.78
  3186. }
  3187. }
  3188. },
  3189. [
  3190. {
  3191. name: "Uncomfortably Small",
  3192. height: math.unit(10, "feet")
  3193. },
  3194. {
  3195. name: "Small",
  3196. height: math.unit(30, "feet")
  3197. },
  3198. {
  3199. name: "Macro",
  3200. height: math.unit(100, "feet"),
  3201. default: true
  3202. },
  3203. {
  3204. name: "Macro+",
  3205. height: math.unit(2000, "feet")
  3206. },
  3207. {
  3208. name: "True Form",
  3209. height: math.unit(8924, "miles")
  3210. }
  3211. ]
  3212. ))
  3213. characterMakers.push(() => makeCharacter(
  3214. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3215. {
  3216. front: {
  3217. height: math.unit(2, "meter"),
  3218. weight: math.unit(120, "kg"),
  3219. name: "Front",
  3220. image: {
  3221. source: "./media/characters/ggv/front.svg"
  3222. }
  3223. },
  3224. side: {
  3225. height: math.unit(2, "meter"),
  3226. weight: math.unit(120, "kg"),
  3227. name: "Side",
  3228. image: {
  3229. source: "./media/characters/ggv/side.svg"
  3230. }
  3231. }
  3232. },
  3233. [
  3234. {
  3235. name: "Extremely Puny",
  3236. height: math.unit(9 + 5 / 12, "feet")
  3237. },
  3238. {
  3239. name: "Horribly Small",
  3240. height: math.unit(47.7, "miles"),
  3241. default: true
  3242. },
  3243. {
  3244. name: "Reasonably Sized",
  3245. height: math.unit(25000, "parsecs")
  3246. },
  3247. {
  3248. name: "Slightly Uncompressed",
  3249. height: math.unit(7.77e31, "parsecs")
  3250. },
  3251. {
  3252. name: "Omniversal",
  3253. height: math.unit(1e300, "meters")
  3254. },
  3255. ]
  3256. ))
  3257. characterMakers.push(() => makeCharacter(
  3258. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3259. {
  3260. front: {
  3261. height: math.unit(2, "meter"),
  3262. weight: math.unit(75, "lb"),
  3263. name: "Front",
  3264. image: {
  3265. source: "./media/characters/napalm/front.svg"
  3266. }
  3267. },
  3268. back: {
  3269. height: math.unit(2, "meter"),
  3270. weight: math.unit(75, "lb"),
  3271. name: "Back",
  3272. image: {
  3273. source: "./media/characters/napalm/back.svg"
  3274. }
  3275. }
  3276. },
  3277. [
  3278. {
  3279. name: "Standard",
  3280. height: math.unit(55, "feet"),
  3281. default: true
  3282. }
  3283. ]
  3284. ))
  3285. characterMakers.push(() => makeCharacter(
  3286. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3287. {
  3288. front: {
  3289. height: math.unit(7 + 5 / 6, "feet"),
  3290. weight: math.unit(325, "lb"),
  3291. name: "Front",
  3292. image: {
  3293. source: "./media/characters/asana/front.svg",
  3294. extra: 1133 / 1060,
  3295. bottom: 15.2 / 1148.6
  3296. }
  3297. },
  3298. back: {
  3299. height: math.unit(7 + 5 / 6, "feet"),
  3300. weight: math.unit(325, "lb"),
  3301. name: "Back",
  3302. image: {
  3303. source: "./media/characters/asana/back.svg",
  3304. extra: 1114 / 1043,
  3305. bottom: 5 / 1120
  3306. }
  3307. },
  3308. dressedDark: {
  3309. height: math.unit(7 + 5 / 6, "feet"),
  3310. weight: math.unit(325, "lb"),
  3311. name: "Dressed (Dark)",
  3312. image: {
  3313. source: "./media/characters/asana/dressed-dark.svg",
  3314. extra: 1133 / 1060,
  3315. bottom: 15.2 / 1148.6
  3316. }
  3317. },
  3318. dressedLight: {
  3319. height: math.unit(7 + 5 / 6, "feet"),
  3320. weight: math.unit(325, "lb"),
  3321. name: "Dressed (Light)",
  3322. image: {
  3323. source: "./media/characters/asana/dressed-light.svg",
  3324. extra: 1133 / 1060,
  3325. bottom: 15.2 / 1148.6
  3326. }
  3327. },
  3328. },
  3329. [
  3330. {
  3331. name: "Standard",
  3332. height: math.unit(7 + 5 / 6, "feet"),
  3333. default: true
  3334. },
  3335. {
  3336. name: "Large",
  3337. height: math.unit(10, "meters")
  3338. },
  3339. {
  3340. name: "Macro",
  3341. height: math.unit(2500, "meters")
  3342. },
  3343. {
  3344. name: "Megamacro",
  3345. height: math.unit(5e6, "meters")
  3346. },
  3347. {
  3348. name: "Examacro",
  3349. height: math.unit(5e12, "lightyears")
  3350. },
  3351. {
  3352. name: "Max Size",
  3353. height: math.unit(1e31, "lightyears")
  3354. }
  3355. ]
  3356. ))
  3357. characterMakers.push(() => makeCharacter(
  3358. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3359. {
  3360. front: {
  3361. height: math.unit(2, "meter"),
  3362. weight: math.unit(60, "kg"),
  3363. name: "Front",
  3364. image: {
  3365. source: "./media/characters/ebony/front.svg",
  3366. bottom: 0.03,
  3367. extra: 1045 / 810 + 0.03
  3368. }
  3369. },
  3370. side: {
  3371. height: math.unit(2, "meter"),
  3372. weight: math.unit(60, "kg"),
  3373. name: "Side",
  3374. image: {
  3375. source: "./media/characters/ebony/side.svg",
  3376. bottom: 0.03,
  3377. extra: 1045 / 810 + 0.03
  3378. }
  3379. },
  3380. back: {
  3381. height: math.unit(2, "meter"),
  3382. weight: math.unit(60, "kg"),
  3383. name: "Back",
  3384. image: {
  3385. source: "./media/characters/ebony/back.svg",
  3386. bottom: 0.01,
  3387. extra: 1045 / 810 + 0.01
  3388. }
  3389. },
  3390. },
  3391. [
  3392. // TODO check why I did this lol
  3393. {
  3394. name: "Standard",
  3395. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3396. default: true
  3397. },
  3398. {
  3399. name: "Macro",
  3400. height: math.unit(200, "feet")
  3401. },
  3402. {
  3403. name: "Gigamacro",
  3404. height: math.unit(13000, "km")
  3405. }
  3406. ]
  3407. ))
  3408. characterMakers.push(() => makeCharacter(
  3409. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3410. {
  3411. front: {
  3412. height: math.unit(6, "feet"),
  3413. weight: math.unit(175, "lb"),
  3414. name: "Front",
  3415. image: {
  3416. source: "./media/characters/mountain/front.svg",
  3417. extra: 972 / 955,
  3418. bottom: 64 / 1036.6
  3419. }
  3420. },
  3421. back: {
  3422. height: math.unit(6, "feet"),
  3423. weight: math.unit(175, "lb"),
  3424. name: "Back",
  3425. image: {
  3426. source: "./media/characters/mountain/back.svg",
  3427. extra: 970 / 950,
  3428. bottom: 28.25 / 999
  3429. }
  3430. },
  3431. },
  3432. [
  3433. {
  3434. name: "Large",
  3435. height: math.unit(20, "meters")
  3436. },
  3437. {
  3438. name: "Macro",
  3439. height: math.unit(300, "meters")
  3440. },
  3441. {
  3442. name: "Gigamacro",
  3443. height: math.unit(10000, "km"),
  3444. default: true
  3445. },
  3446. {
  3447. name: "Examacro",
  3448. height: math.unit(10e9, "lightyears")
  3449. }
  3450. ]
  3451. ))
  3452. characterMakers.push(() => makeCharacter(
  3453. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3454. {
  3455. front: {
  3456. height: math.unit(8, "feet"),
  3457. weight: math.unit(500, "lb"),
  3458. name: "Front",
  3459. image: {
  3460. source: "./media/characters/rick/front.svg"
  3461. }
  3462. }
  3463. },
  3464. [
  3465. {
  3466. name: "Normal",
  3467. height: math.unit(8, "feet"),
  3468. default: true
  3469. },
  3470. {
  3471. name: "Macro",
  3472. height: math.unit(5, "km")
  3473. }
  3474. ]
  3475. ))
  3476. characterMakers.push(() => makeCharacter(
  3477. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3478. {
  3479. front: {
  3480. height: math.unit(8, "feet"),
  3481. weight: math.unit(120, "lb"),
  3482. name: "Front",
  3483. image: {
  3484. source: "./media/characters/ona/front.svg"
  3485. }
  3486. },
  3487. frontAlt: {
  3488. height: math.unit(8, "feet"),
  3489. weight: math.unit(120, "lb"),
  3490. name: "Front (Alt)",
  3491. image: {
  3492. source: "./media/characters/ona/front-alt.svg"
  3493. }
  3494. },
  3495. back: {
  3496. height: math.unit(8, "feet"),
  3497. weight: math.unit(120, "lb"),
  3498. name: "Back",
  3499. image: {
  3500. source: "./media/characters/ona/back.svg"
  3501. }
  3502. },
  3503. foot: {
  3504. height: math.unit(1.1, "feet"),
  3505. name: "Foot",
  3506. image: {
  3507. source: "./media/characters/ona/foot.svg"
  3508. }
  3509. }
  3510. },
  3511. [
  3512. {
  3513. name: "Megamacro",
  3514. height: math.unit(70, "km"),
  3515. default: true
  3516. },
  3517. {
  3518. name: "Gigamacro",
  3519. height: math.unit(681818, "miles")
  3520. },
  3521. {
  3522. name: "Examacro",
  3523. height: math.unit(3800000, "lightyears")
  3524. },
  3525. ]
  3526. ))
  3527. characterMakers.push(() => makeCharacter(
  3528. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3529. {
  3530. front: {
  3531. height: math.unit(12, "feet"),
  3532. weight: math.unit(3000, "lb"),
  3533. name: "Front",
  3534. image: {
  3535. source: "./media/characters/mech/front.svg",
  3536. extra: 2900 / 2770,
  3537. bottom: 110 / 3010
  3538. }
  3539. },
  3540. back: {
  3541. height: math.unit(12, "feet"),
  3542. weight: math.unit(3000, "lb"),
  3543. name: "Back",
  3544. image: {
  3545. source: "./media/characters/mech/back.svg",
  3546. extra: 3011 / 2890,
  3547. bottom: 94 / 3105
  3548. }
  3549. },
  3550. maw: {
  3551. height: math.unit(3.07, "feet"),
  3552. name: "Maw",
  3553. image: {
  3554. source: "./media/characters/mech/maw.svg"
  3555. }
  3556. },
  3557. head: {
  3558. height: math.unit(2.82, "feet"),
  3559. name: "Head",
  3560. image: {
  3561. source: "./media/characters/mech/head.svg"
  3562. }
  3563. },
  3564. dick: {
  3565. height: math.unit(1.43, "feet"),
  3566. name: "Dick",
  3567. image: {
  3568. source: "./media/characters/mech/dick.svg"
  3569. }
  3570. },
  3571. },
  3572. [
  3573. {
  3574. name: "Normal",
  3575. height: math.unit(12, "feet")
  3576. },
  3577. {
  3578. name: "Macro",
  3579. height: math.unit(300, "feet"),
  3580. default: true
  3581. },
  3582. {
  3583. name: "Macro+",
  3584. height: math.unit(1500, "feet")
  3585. },
  3586. ]
  3587. ))
  3588. characterMakers.push(() => makeCharacter(
  3589. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3590. {
  3591. front: {
  3592. height: math.unit(1.3, "meter"),
  3593. weight: math.unit(30, "kg"),
  3594. name: "Front",
  3595. image: {
  3596. source: "./media/characters/gregory/front.svg",
  3597. }
  3598. }
  3599. },
  3600. [
  3601. {
  3602. name: "Normal",
  3603. height: math.unit(1.3, "meter"),
  3604. default: true
  3605. },
  3606. {
  3607. name: "Macro",
  3608. height: math.unit(20, "meter")
  3609. }
  3610. ]
  3611. ))
  3612. characterMakers.push(() => makeCharacter(
  3613. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3614. {
  3615. front: {
  3616. height: math.unit(2.8, "meter"),
  3617. weight: math.unit(200, "kg"),
  3618. name: "Front",
  3619. image: {
  3620. source: "./media/characters/elory/front.svg",
  3621. }
  3622. }
  3623. },
  3624. [
  3625. {
  3626. name: "Normal",
  3627. height: math.unit(2.8, "meter"),
  3628. default: true
  3629. },
  3630. {
  3631. name: "Macro",
  3632. height: math.unit(38, "meter")
  3633. }
  3634. ]
  3635. ))
  3636. characterMakers.push(() => makeCharacter(
  3637. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3638. {
  3639. front: {
  3640. height: math.unit(470, "feet"),
  3641. weight: math.unit(924, "tons"),
  3642. name: "Front",
  3643. image: {
  3644. source: "./media/characters/angelpatamon/front.svg",
  3645. }
  3646. }
  3647. },
  3648. [
  3649. {
  3650. name: "Normal",
  3651. height: math.unit(470, "feet"),
  3652. default: true
  3653. },
  3654. {
  3655. name: "Deity Size I",
  3656. height: math.unit(28651.2, "km")
  3657. },
  3658. {
  3659. name: "Deity Size II",
  3660. height: math.unit(171907.2, "km")
  3661. }
  3662. ]
  3663. ))
  3664. characterMakers.push(() => makeCharacter(
  3665. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3666. {
  3667. side: {
  3668. height: math.unit(7.2, "meter"),
  3669. weight: math.unit(8.2, "tons"),
  3670. name: "Side",
  3671. image: {
  3672. source: "./media/characters/cryae/side.svg",
  3673. extra: 3500 / 1500
  3674. }
  3675. }
  3676. },
  3677. [
  3678. {
  3679. name: "Normal",
  3680. height: math.unit(7.2, "meter"),
  3681. default: true
  3682. }
  3683. ]
  3684. ))
  3685. characterMakers.push(() => makeCharacter(
  3686. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3687. {
  3688. front: {
  3689. height: math.unit(6, "feet"),
  3690. weight: math.unit(175, "lb"),
  3691. name: "Front",
  3692. image: {
  3693. source: "./media/characters/xera/front.svg",
  3694. extra: 2377 / 1972,
  3695. bottom: 75.5 / 2452
  3696. }
  3697. },
  3698. side: {
  3699. height: math.unit(6, "feet"),
  3700. weight: math.unit(175, "lb"),
  3701. name: "Side",
  3702. image: {
  3703. source: "./media/characters/xera/side.svg",
  3704. extra: 2345 / 2019,
  3705. bottom: 39.7 / 2384
  3706. }
  3707. },
  3708. back: {
  3709. height: math.unit(6, "feet"),
  3710. weight: math.unit(175, "lb"),
  3711. name: "Back",
  3712. image: {
  3713. source: "./media/characters/xera/back.svg",
  3714. extra: 2095 / 1984,
  3715. bottom: 67 / 2166
  3716. }
  3717. },
  3718. },
  3719. [
  3720. {
  3721. name: "Small",
  3722. height: math.unit(10, "feet")
  3723. },
  3724. {
  3725. name: "Macro",
  3726. height: math.unit(500, "meters"),
  3727. default: true
  3728. },
  3729. {
  3730. name: "Macro+",
  3731. height: math.unit(10, "km")
  3732. },
  3733. {
  3734. name: "Gigamacro",
  3735. height: math.unit(25000, "km")
  3736. },
  3737. {
  3738. name: "Teramacro",
  3739. height: math.unit(3e6, "km")
  3740. }
  3741. ]
  3742. ))
  3743. characterMakers.push(() => makeCharacter(
  3744. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3745. {
  3746. front: {
  3747. height: math.unit(6, "feet"),
  3748. weight: math.unit(175, "lb"),
  3749. name: "Front",
  3750. image: {
  3751. source: "./media/characters/nebula/front.svg",
  3752. extra: 2566 / 2362,
  3753. bottom: 81 / 2644
  3754. }
  3755. }
  3756. },
  3757. [
  3758. {
  3759. name: "Small",
  3760. height: math.unit(4.5, "meters")
  3761. },
  3762. {
  3763. name: "Macro",
  3764. height: math.unit(1500, "meters"),
  3765. default: true
  3766. },
  3767. {
  3768. name: "Megamacro",
  3769. height: math.unit(150, "km")
  3770. },
  3771. {
  3772. name: "Gigamacro",
  3773. height: math.unit(27000, "km")
  3774. }
  3775. ]
  3776. ))
  3777. characterMakers.push(() => makeCharacter(
  3778. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3779. {
  3780. front: {
  3781. height: math.unit(6, "feet"),
  3782. weight: math.unit(225, "lb"),
  3783. name: "Front",
  3784. image: {
  3785. source: "./media/characters/abysgar/front.svg"
  3786. }
  3787. }
  3788. },
  3789. [
  3790. {
  3791. name: "Small",
  3792. height: math.unit(4.5, "meters")
  3793. },
  3794. {
  3795. name: "Macro",
  3796. height: math.unit(1250, "meters"),
  3797. default: true
  3798. },
  3799. {
  3800. name: "Megamacro",
  3801. height: math.unit(125, "km")
  3802. },
  3803. {
  3804. name: "Gigamacro",
  3805. height: math.unit(26000, "km")
  3806. }
  3807. ]
  3808. ))
  3809. characterMakers.push(() => makeCharacter(
  3810. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3811. {
  3812. front: {
  3813. height: math.unit(6, "feet"),
  3814. weight: math.unit(180, "lb"),
  3815. name: "Front",
  3816. image: {
  3817. source: "./media/characters/yakuz/front.svg"
  3818. }
  3819. }
  3820. },
  3821. [
  3822. {
  3823. name: "Small",
  3824. height: math.unit(5, "meters")
  3825. },
  3826. {
  3827. name: "Macro",
  3828. height: math.unit(1500, "meters"),
  3829. default: true
  3830. },
  3831. {
  3832. name: "Megamacro",
  3833. height: math.unit(200, "km")
  3834. },
  3835. {
  3836. name: "Gigamacro",
  3837. height: math.unit(100000, "km")
  3838. }
  3839. ]
  3840. ))
  3841. characterMakers.push(() => makeCharacter(
  3842. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3843. {
  3844. front: {
  3845. height: math.unit(6, "feet"),
  3846. weight: math.unit(175, "lb"),
  3847. name: "Front",
  3848. image: {
  3849. source: "./media/characters/mirova/front.svg",
  3850. extra: 3334 / 3071,
  3851. bottom: 42 / 3375.6
  3852. }
  3853. }
  3854. },
  3855. [
  3856. {
  3857. name: "Small",
  3858. height: math.unit(5, "meters")
  3859. },
  3860. {
  3861. name: "Macro",
  3862. height: math.unit(900, "meters"),
  3863. default: true
  3864. },
  3865. {
  3866. name: "Megamacro",
  3867. height: math.unit(135, "km")
  3868. },
  3869. {
  3870. name: "Gigamacro",
  3871. height: math.unit(20000, "km")
  3872. }
  3873. ]
  3874. ))
  3875. characterMakers.push(() => makeCharacter(
  3876. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3877. {
  3878. side: {
  3879. height: math.unit(28.35, "feet"),
  3880. weight: math.unit(99.75, "tons"),
  3881. name: "Side",
  3882. image: {
  3883. source: "./media/characters/asana-mech/side.svg",
  3884. extra: 923 / 699,
  3885. bottom: 50 / 975
  3886. }
  3887. },
  3888. chaingun: {
  3889. height: math.unit(7, "feet"),
  3890. weight: math.unit(2400, "lb"),
  3891. name: "Chaingun",
  3892. image: {
  3893. source: "./media/characters/asana-mech/chaingun.svg"
  3894. }
  3895. },
  3896. laser: {
  3897. height: math.unit(7.12, "feet"),
  3898. weight: math.unit(2000, "lb"),
  3899. name: "Laser",
  3900. image: {
  3901. source: "./media/characters/asana-mech/laser.svg"
  3902. }
  3903. },
  3904. },
  3905. [
  3906. {
  3907. name: "Normal",
  3908. height: math.unit(28.35, "feet"),
  3909. default: true
  3910. },
  3911. {
  3912. name: "Macro",
  3913. height: math.unit(2500, "feet")
  3914. },
  3915. {
  3916. name: "Megamacro",
  3917. height: math.unit(25, "miles")
  3918. },
  3919. {
  3920. name: "Examacro",
  3921. height: math.unit(6e8, "lightyears")
  3922. },
  3923. ]
  3924. ))
  3925. characterMakers.push(() => makeCharacter(
  3926. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3927. {
  3928. front: {
  3929. height: math.unit(5, "meters"),
  3930. weight: math.unit(1000, "kg"),
  3931. name: "Front",
  3932. image: {
  3933. source: "./media/characters/asche/front.svg",
  3934. extra: 1258 / 1190,
  3935. bottom: 47 / 1305
  3936. }
  3937. },
  3938. frontUnderwear: {
  3939. height: math.unit(5, "meters"),
  3940. weight: math.unit(1000, "kg"),
  3941. name: "Front (Underwear)",
  3942. image: {
  3943. source: "./media/characters/asche/front-underwear.svg",
  3944. extra: 1258 / 1190,
  3945. bottom: 47 / 1305
  3946. }
  3947. },
  3948. frontDressed: {
  3949. height: math.unit(5, "meters"),
  3950. weight: math.unit(1000, "kg"),
  3951. name: "Front (Dressed)",
  3952. image: {
  3953. source: "./media/characters/asche/front-dressed.svg",
  3954. extra: 1258 / 1190,
  3955. bottom: 47 / 1305
  3956. }
  3957. },
  3958. frontArmor: {
  3959. height: math.unit(5, "meters"),
  3960. weight: math.unit(1000, "kg"),
  3961. name: "Front (Armored)",
  3962. image: {
  3963. source: "./media/characters/asche/front-armored.svg",
  3964. extra: 1374 / 1308,
  3965. bottom: 23 / 1397
  3966. }
  3967. },
  3968. mp724: {
  3969. height: math.unit(0.96, "meters"),
  3970. weight: math.unit(38, "kg"),
  3971. name: "H&K MP724",
  3972. image: {
  3973. source: "./media/characters/asche/h&k-mp724.svg"
  3974. }
  3975. },
  3976. side: {
  3977. height: math.unit(5, "meters"),
  3978. weight: math.unit(1000, "kg"),
  3979. name: "Side",
  3980. image: {
  3981. source: "./media/characters/asche/side.svg",
  3982. extra: 1717 / 1609,
  3983. bottom: 0.005
  3984. }
  3985. },
  3986. back: {
  3987. height: math.unit(5, "meters"),
  3988. weight: math.unit(1000, "kg"),
  3989. name: "Back",
  3990. image: {
  3991. source: "./media/characters/asche/back.svg",
  3992. extra: 1570 / 1501
  3993. }
  3994. },
  3995. },
  3996. [
  3997. {
  3998. name: "DEFCON 5",
  3999. height: math.unit(5, "meters")
  4000. },
  4001. {
  4002. name: "DEFCON 4",
  4003. height: math.unit(500, "meters"),
  4004. default: true
  4005. },
  4006. {
  4007. name: "DEFCON 3",
  4008. height: math.unit(5, "km")
  4009. },
  4010. {
  4011. name: "DEFCON 2",
  4012. height: math.unit(500, "km")
  4013. },
  4014. {
  4015. name: "DEFCON 1",
  4016. height: math.unit(500000, "km")
  4017. },
  4018. {
  4019. name: "DEFCON 0",
  4020. height: math.unit(3, "gigaparsecs")
  4021. },
  4022. ]
  4023. ))
  4024. characterMakers.push(() => makeCharacter(
  4025. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4026. {
  4027. front: {
  4028. height: math.unit(2, "meters"),
  4029. weight: math.unit(76, "kg"),
  4030. name: "Front",
  4031. image: {
  4032. source: "./media/characters/gale/front.svg"
  4033. }
  4034. },
  4035. frontAlt1: {
  4036. height: math.unit(2, "meters"),
  4037. weight: math.unit(76, "kg"),
  4038. name: "Front (Alt 1)",
  4039. image: {
  4040. source: "./media/characters/gale/front-alt-1.svg"
  4041. }
  4042. },
  4043. frontAlt2: {
  4044. height: math.unit(2, "meters"),
  4045. weight: math.unit(76, "kg"),
  4046. name: "Front (Alt 2)",
  4047. image: {
  4048. source: "./media/characters/gale/front-alt-2.svg"
  4049. }
  4050. },
  4051. },
  4052. [
  4053. {
  4054. name: "Normal",
  4055. height: math.unit(7, "feet")
  4056. },
  4057. {
  4058. name: "Macro",
  4059. height: math.unit(150, "feet"),
  4060. default: true
  4061. },
  4062. {
  4063. name: "Macro+",
  4064. height: math.unit(300, "feet")
  4065. },
  4066. ]
  4067. ))
  4068. characterMakers.push(() => makeCharacter(
  4069. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4070. {
  4071. front: {
  4072. height: math.unit(2, "meters"),
  4073. weight: math.unit(76, "kg"),
  4074. name: "Front",
  4075. image: {
  4076. source: "./media/characters/draylen/front.svg"
  4077. }
  4078. }
  4079. },
  4080. [
  4081. {
  4082. name: "Macro",
  4083. height: math.unit(150, "feet"),
  4084. default: true
  4085. }
  4086. ]
  4087. ))
  4088. characterMakers.push(() => makeCharacter(
  4089. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4090. {
  4091. front: {
  4092. height: math.unit(7 + 9 / 12, "feet"),
  4093. weight: math.unit(379, "lbs"),
  4094. name: "Front",
  4095. image: {
  4096. source: "./media/characters/chez/front.svg"
  4097. }
  4098. },
  4099. side: {
  4100. height: math.unit(7 + 9 / 12, "feet"),
  4101. weight: math.unit(379, "lbs"),
  4102. name: "Side",
  4103. image: {
  4104. source: "./media/characters/chez/side.svg"
  4105. }
  4106. }
  4107. },
  4108. [
  4109. {
  4110. name: "Normal",
  4111. height: math.unit(7 + 9 / 12, "feet"),
  4112. default: true
  4113. },
  4114. {
  4115. name: "God King",
  4116. height: math.unit(9750000, "meters")
  4117. }
  4118. ]
  4119. ))
  4120. characterMakers.push(() => makeCharacter(
  4121. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4122. {
  4123. front: {
  4124. height: math.unit(6, "feet"),
  4125. weight: math.unit(275, "lbs"),
  4126. name: "Front",
  4127. image: {
  4128. source: "./media/characters/kaylum/front.svg",
  4129. bottom: 0.01,
  4130. extra: 1166 / 1031
  4131. }
  4132. },
  4133. frontWingless: {
  4134. height: math.unit(6, "feet"),
  4135. weight: math.unit(275, "lbs"),
  4136. name: "Front (Wingless)",
  4137. image: {
  4138. source: "./media/characters/kaylum/front-wingless.svg",
  4139. bottom: 0.01,
  4140. extra: 1117 / 1031
  4141. }
  4142. }
  4143. },
  4144. [
  4145. {
  4146. name: "Normal",
  4147. height: math.unit(3.05, "meters")
  4148. },
  4149. {
  4150. name: "Master",
  4151. height: math.unit(5.5, "meters")
  4152. },
  4153. {
  4154. name: "Rampage",
  4155. height: math.unit(19, "meters")
  4156. },
  4157. {
  4158. name: "Macro Lite",
  4159. height: math.unit(37, "meters")
  4160. },
  4161. {
  4162. name: "Hyper Predator",
  4163. height: math.unit(61, "meters")
  4164. },
  4165. {
  4166. name: "Macro",
  4167. height: math.unit(138, "meters"),
  4168. default: true
  4169. }
  4170. ]
  4171. ))
  4172. characterMakers.push(() => makeCharacter(
  4173. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4174. {
  4175. front: {
  4176. height: math.unit(6, "feet"),
  4177. weight: math.unit(150, "lbs"),
  4178. name: "Front",
  4179. image: {
  4180. source: "./media/characters/geta/front.svg"
  4181. }
  4182. }
  4183. },
  4184. [
  4185. {
  4186. name: "Micro",
  4187. height: math.unit(3, "inches"),
  4188. default: true
  4189. },
  4190. {
  4191. name: "Normal",
  4192. height: math.unit(5 + 5 / 12, "feet")
  4193. }
  4194. ]
  4195. ))
  4196. characterMakers.push(() => makeCharacter(
  4197. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4198. {
  4199. front: {
  4200. height: math.unit(6, "feet"),
  4201. weight: math.unit(300, "lbs"),
  4202. name: "Front",
  4203. image: {
  4204. source: "./media/characters/tyrnn/front.svg"
  4205. }
  4206. }
  4207. },
  4208. [
  4209. {
  4210. name: "Main Height",
  4211. height: math.unit(355, "feet"),
  4212. default: true
  4213. },
  4214. {
  4215. name: "Fave. Height",
  4216. height: math.unit(2400, "feet")
  4217. }
  4218. ]
  4219. ))
  4220. characterMakers.push(() => makeCharacter(
  4221. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4222. {
  4223. front: {
  4224. height: math.unit(6, "feet"),
  4225. weight: math.unit(300, "lbs"),
  4226. name: "Front",
  4227. image: {
  4228. source: "./media/characters/appledectomy/front.svg"
  4229. }
  4230. }
  4231. },
  4232. [
  4233. {
  4234. name: "Macro",
  4235. height: math.unit(2500, "feet")
  4236. },
  4237. {
  4238. name: "Megamacro",
  4239. height: math.unit(50, "miles"),
  4240. default: true
  4241. },
  4242. {
  4243. name: "Gigamacro",
  4244. height: math.unit(5000, "miles")
  4245. },
  4246. {
  4247. name: "Teramacro",
  4248. height: math.unit(250000, "miles")
  4249. },
  4250. ]
  4251. ))
  4252. characterMakers.push(() => makeCharacter(
  4253. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4254. {
  4255. front: {
  4256. height: math.unit(6, "feet"),
  4257. weight: math.unit(200, "lbs"),
  4258. name: "Front",
  4259. image: {
  4260. source: "./media/characters/vulpes/front.svg",
  4261. extra: 573 / 543,
  4262. bottom: 0.033
  4263. }
  4264. },
  4265. side: {
  4266. height: math.unit(6, "feet"),
  4267. weight: math.unit(200, "lbs"),
  4268. name: "Side",
  4269. image: {
  4270. source: "./media/characters/vulpes/side.svg",
  4271. extra: 577 / 549,
  4272. bottom: 11 / 588
  4273. }
  4274. },
  4275. back: {
  4276. height: math.unit(6, "feet"),
  4277. weight: math.unit(200, "lbs"),
  4278. name: "Back",
  4279. image: {
  4280. source: "./media/characters/vulpes/back.svg",
  4281. extra: 573 / 549,
  4282. bottom: 20 / 593
  4283. }
  4284. },
  4285. feet: {
  4286. height: math.unit(1.276, "feet"),
  4287. name: "Feet",
  4288. image: {
  4289. source: "./media/characters/vulpes/feet.svg"
  4290. }
  4291. },
  4292. maw: {
  4293. height: math.unit(1.18, "feet"),
  4294. name: "Maw",
  4295. image: {
  4296. source: "./media/characters/vulpes/maw.svg"
  4297. }
  4298. },
  4299. },
  4300. [
  4301. {
  4302. name: "Micro",
  4303. height: math.unit(2, "inches")
  4304. },
  4305. {
  4306. name: "Normal",
  4307. height: math.unit(6.3, "feet")
  4308. },
  4309. {
  4310. name: "Macro",
  4311. height: math.unit(850, "feet")
  4312. },
  4313. {
  4314. name: "Megamacro",
  4315. height: math.unit(7500, "feet"),
  4316. default: true
  4317. },
  4318. {
  4319. name: "Gigamacro",
  4320. height: math.unit(570000, "miles")
  4321. }
  4322. ]
  4323. ))
  4324. characterMakers.push(() => makeCharacter(
  4325. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4326. {
  4327. front: {
  4328. height: math.unit(6, "feet"),
  4329. weight: math.unit(210, "lbs"),
  4330. name: "Front",
  4331. image: {
  4332. source: "./media/characters/rain-fallen/front.svg"
  4333. }
  4334. },
  4335. side: {
  4336. height: math.unit(6, "feet"),
  4337. weight: math.unit(210, "lbs"),
  4338. name: "Side",
  4339. image: {
  4340. source: "./media/characters/rain-fallen/side.svg"
  4341. }
  4342. },
  4343. back: {
  4344. height: math.unit(6, "feet"),
  4345. weight: math.unit(210, "lbs"),
  4346. name: "Back",
  4347. image: {
  4348. source: "./media/characters/rain-fallen/back.svg"
  4349. }
  4350. },
  4351. feral: {
  4352. height: math.unit(9, "feet"),
  4353. weight: math.unit(700, "lbs"),
  4354. name: "Feral",
  4355. image: {
  4356. source: "./media/characters/rain-fallen/feral.svg"
  4357. }
  4358. },
  4359. },
  4360. [
  4361. {
  4362. name: "Meddling with Mortals",
  4363. height: math.unit(8 + 8/12, "feet")
  4364. },
  4365. {
  4366. name: "Normal",
  4367. height: math.unit(5, "meter")
  4368. },
  4369. {
  4370. name: "Macro",
  4371. height: math.unit(150, "meter"),
  4372. default: true
  4373. },
  4374. {
  4375. name: "Megamacro",
  4376. height: math.unit(278e6, "meter")
  4377. },
  4378. {
  4379. name: "Gigamacro",
  4380. height: math.unit(2e9, "meter")
  4381. },
  4382. {
  4383. name: "Teramacro",
  4384. height: math.unit(8e12, "meter")
  4385. },
  4386. {
  4387. name: "Devourer",
  4388. height: math.unit(14, "zettameters")
  4389. },
  4390. {
  4391. name: "Scarlet King",
  4392. height: math.unit(18, "yottameters")
  4393. },
  4394. {
  4395. name: "Void",
  4396. height: math.unit(6.66e66, "yottameters")
  4397. }
  4398. ]
  4399. ))
  4400. characterMakers.push(() => makeCharacter(
  4401. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4402. {
  4403. standing: {
  4404. height: math.unit(6, "feet"),
  4405. weight: math.unit(180, "lbs"),
  4406. name: "Standing",
  4407. image: {
  4408. source: "./media/characters/zaakira/standing.svg"
  4409. }
  4410. },
  4411. laying: {
  4412. height: math.unit(3, "feet"),
  4413. weight: math.unit(180, "lbs"),
  4414. name: "Laying",
  4415. image: {
  4416. source: "./media/characters/zaakira/laying.svg"
  4417. }
  4418. },
  4419. },
  4420. [
  4421. {
  4422. name: "Normal",
  4423. height: math.unit(12, "feet")
  4424. },
  4425. {
  4426. name: "Macro",
  4427. height: math.unit(279, "feet"),
  4428. default: true
  4429. }
  4430. ]
  4431. ))
  4432. characterMakers.push(() => makeCharacter(
  4433. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4434. {
  4435. femSfw: {
  4436. height: math.unit(8, "feet"),
  4437. weight: math.unit(350, "lb"),
  4438. name: "Fem",
  4439. image: {
  4440. source: "./media/characters/sigvald/fem-sfw.svg",
  4441. extra: 182 / 164,
  4442. bottom: 8.7 / 190.5
  4443. }
  4444. },
  4445. femNsfw: {
  4446. height: math.unit(8, "feet"),
  4447. weight: math.unit(350, "lb"),
  4448. name: "Fem (NSFW)",
  4449. image: {
  4450. source: "./media/characters/sigvald/fem-nsfw.svg",
  4451. extra: 182 / 164,
  4452. bottom: 8.7 / 190.5
  4453. }
  4454. },
  4455. maleNsfw: {
  4456. height: math.unit(8, "feet"),
  4457. weight: math.unit(350, "lb"),
  4458. name: "Male (NSFW)",
  4459. image: {
  4460. source: "./media/characters/sigvald/male-nsfw.svg",
  4461. extra: 182 / 164,
  4462. bottom: 8.7 / 190.5
  4463. }
  4464. },
  4465. hermNsfw: {
  4466. height: math.unit(8, "feet"),
  4467. weight: math.unit(350, "lb"),
  4468. name: "Herm (NSFW)",
  4469. image: {
  4470. source: "./media/characters/sigvald/herm-nsfw.svg",
  4471. extra: 182 / 164,
  4472. bottom: 8.7 / 190.5
  4473. }
  4474. },
  4475. dick: {
  4476. height: math.unit(2.36, "feet"),
  4477. name: "Dick",
  4478. image: {
  4479. source: "./media/characters/sigvald/dick.svg"
  4480. }
  4481. },
  4482. eye: {
  4483. height: math.unit(0.31, "feet"),
  4484. name: "Eye",
  4485. image: {
  4486. source: "./media/characters/sigvald/eye.svg"
  4487. }
  4488. },
  4489. mouth: {
  4490. height: math.unit(0.92, "feet"),
  4491. name: "Mouth",
  4492. image: {
  4493. source: "./media/characters/sigvald/mouth.svg"
  4494. }
  4495. },
  4496. paws: {
  4497. height: math.unit(2.2, "feet"),
  4498. name: "Paws",
  4499. image: {
  4500. source: "./media/characters/sigvald/paws.svg"
  4501. }
  4502. }
  4503. },
  4504. [
  4505. {
  4506. name: "Normal",
  4507. height: math.unit(8, "feet")
  4508. },
  4509. {
  4510. name: "Large",
  4511. height: math.unit(12, "feet")
  4512. },
  4513. {
  4514. name: "Larger",
  4515. height: math.unit(20, "feet")
  4516. },
  4517. {
  4518. name: "Macro",
  4519. height: math.unit(150, "feet")
  4520. },
  4521. {
  4522. name: "Macro+",
  4523. height: math.unit(200, "feet"),
  4524. default: true
  4525. },
  4526. ]
  4527. ))
  4528. characterMakers.push(() => makeCharacter(
  4529. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4530. {
  4531. side: {
  4532. height: math.unit(12, "feet"),
  4533. weight: math.unit(2000, "kg"),
  4534. name: "Side",
  4535. image: {
  4536. source: "./media/characters/scott/side.svg",
  4537. extra: 754 / 724,
  4538. bottom: 0.069
  4539. }
  4540. },
  4541. upright: {
  4542. height: math.unit(12, "feet"),
  4543. weight: math.unit(2000, "kg"),
  4544. name: "Upright",
  4545. image: {
  4546. source: "./media/characters/scott/upright.svg",
  4547. extra: 3881 / 3722,
  4548. bottom: 0.05
  4549. }
  4550. },
  4551. },
  4552. [
  4553. {
  4554. name: "Normal",
  4555. height: math.unit(12, "feet"),
  4556. default: true
  4557. },
  4558. ]
  4559. ))
  4560. characterMakers.push(() => makeCharacter(
  4561. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4562. {
  4563. side: {
  4564. height: math.unit(8, "meters"),
  4565. weight: math.unit(84755, "lbs"),
  4566. name: "Side",
  4567. image: {
  4568. source: "./media/characters/tobias/side.svg",
  4569. extra: 1474 / 1096,
  4570. bottom: 38.9 / 1513.1235
  4571. }
  4572. },
  4573. },
  4574. [
  4575. {
  4576. name: "Normal",
  4577. height: math.unit(8, "meters"),
  4578. default: true
  4579. },
  4580. ]
  4581. ))
  4582. characterMakers.push(() => makeCharacter(
  4583. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4584. {
  4585. front: {
  4586. height: math.unit(5.5, "feet"),
  4587. weight: math.unit(400, "lbs"),
  4588. name: "Front",
  4589. image: {
  4590. source: "./media/characters/kieran/front.svg",
  4591. extra: 2694 / 2364,
  4592. bottom: 217 / 2908
  4593. }
  4594. },
  4595. side: {
  4596. height: math.unit(5.5, "feet"),
  4597. weight: math.unit(400, "lbs"),
  4598. name: "Side",
  4599. image: {
  4600. source: "./media/characters/kieran/side.svg",
  4601. extra: 875 / 777,
  4602. bottom: 84.6 / 959
  4603. }
  4604. },
  4605. },
  4606. [
  4607. {
  4608. name: "Normal",
  4609. height: math.unit(5.5, "feet"),
  4610. default: true
  4611. },
  4612. ]
  4613. ))
  4614. characterMakers.push(() => makeCharacter(
  4615. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4616. {
  4617. side: {
  4618. height: math.unit(2, "meters"),
  4619. weight: math.unit(70, "kg"),
  4620. name: "Side",
  4621. image: {
  4622. source: "./media/characters/sanya/side.svg",
  4623. bottom: 0.02,
  4624. extra: 1.02
  4625. }
  4626. },
  4627. },
  4628. [
  4629. {
  4630. name: "Small",
  4631. height: math.unit(2, "meters")
  4632. },
  4633. {
  4634. name: "Normal",
  4635. height: math.unit(3, "meters")
  4636. },
  4637. {
  4638. name: "Macro",
  4639. height: math.unit(16, "meters"),
  4640. default: true
  4641. },
  4642. ]
  4643. ))
  4644. characterMakers.push(() => makeCharacter(
  4645. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4646. {
  4647. front: {
  4648. height: math.unit(2, "meters"),
  4649. weight: math.unit(120, "kg"),
  4650. name: "Front",
  4651. image: {
  4652. source: "./media/characters/miranda/front.svg",
  4653. extra: 195 / 185,
  4654. bottom: 10.9 / 206.5
  4655. }
  4656. },
  4657. back: {
  4658. height: math.unit(2, "meters"),
  4659. weight: math.unit(120, "kg"),
  4660. name: "Back",
  4661. image: {
  4662. source: "./media/characters/miranda/back.svg",
  4663. extra: 201 / 193,
  4664. bottom: 2.3 / 203.7
  4665. }
  4666. },
  4667. },
  4668. [
  4669. {
  4670. name: "Normal",
  4671. height: math.unit(10, "feet"),
  4672. default: true
  4673. }
  4674. ]
  4675. ))
  4676. characterMakers.push(() => makeCharacter(
  4677. { name: "James", species: ["deer"], tags: ["anthro"] },
  4678. {
  4679. side: {
  4680. height: math.unit(2, "meters"),
  4681. weight: math.unit(100, "kg"),
  4682. name: "Front",
  4683. image: {
  4684. source: "./media/characters/james/front.svg",
  4685. extra: 10 / 8.5
  4686. }
  4687. },
  4688. },
  4689. [
  4690. {
  4691. name: "Normal",
  4692. height: math.unit(8.5, "feet"),
  4693. default: true
  4694. }
  4695. ]
  4696. ))
  4697. characterMakers.push(() => makeCharacter(
  4698. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4699. {
  4700. side: {
  4701. height: math.unit(9.5, "feet"),
  4702. weight: math.unit(2500, "lbs"),
  4703. name: "Side",
  4704. image: {
  4705. source: "./media/characters/heather/side.svg"
  4706. }
  4707. },
  4708. },
  4709. [
  4710. {
  4711. name: "Normal",
  4712. height: math.unit(9.5, "feet"),
  4713. default: true
  4714. }
  4715. ]
  4716. ))
  4717. characterMakers.push(() => makeCharacter(
  4718. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4719. {
  4720. side: {
  4721. height: math.unit(6.5, "feet"),
  4722. weight: math.unit(400, "lbs"),
  4723. name: "Side",
  4724. image: {
  4725. source: "./media/characters/lukas/side.svg",
  4726. extra: 7.25 / 6.5
  4727. }
  4728. },
  4729. },
  4730. [
  4731. {
  4732. name: "Normal",
  4733. height: math.unit(6.5, "feet"),
  4734. default: true
  4735. }
  4736. ]
  4737. ))
  4738. characterMakers.push(() => makeCharacter(
  4739. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4740. {
  4741. side: {
  4742. height: math.unit(5, "feet"),
  4743. weight: math.unit(3000, "lbs"),
  4744. name: "Side",
  4745. image: {
  4746. source: "./media/characters/louise/side.svg"
  4747. }
  4748. },
  4749. },
  4750. [
  4751. {
  4752. name: "Normal",
  4753. height: math.unit(5, "feet"),
  4754. default: true
  4755. }
  4756. ]
  4757. ))
  4758. characterMakers.push(() => makeCharacter(
  4759. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4760. {
  4761. side: {
  4762. height: math.unit(6, "feet"),
  4763. weight: math.unit(150, "lbs"),
  4764. name: "Side",
  4765. image: {
  4766. source: "./media/characters/ramona/side.svg"
  4767. }
  4768. },
  4769. },
  4770. [
  4771. {
  4772. name: "Normal",
  4773. height: math.unit(5.3, "meters"),
  4774. default: true
  4775. },
  4776. {
  4777. name: "Macro",
  4778. height: math.unit(20, "stories")
  4779. },
  4780. {
  4781. name: "Macro+",
  4782. height: math.unit(50, "stories")
  4783. },
  4784. ]
  4785. ))
  4786. characterMakers.push(() => makeCharacter(
  4787. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4788. {
  4789. standing: {
  4790. height: math.unit(5.75, "feet"),
  4791. weight: math.unit(160, "lbs"),
  4792. name: "Standing",
  4793. image: {
  4794. source: "./media/characters/deerpuff/standing.svg",
  4795. extra: 682 / 624
  4796. }
  4797. },
  4798. sitting: {
  4799. height: math.unit(5.75 / 1.79, "feet"),
  4800. weight: math.unit(160, "lbs"),
  4801. name: "Sitting",
  4802. image: {
  4803. source: "./media/characters/deerpuff/sitting.svg",
  4804. bottom: 44 / 400,
  4805. extra: 1
  4806. }
  4807. },
  4808. taurLaying: {
  4809. height: math.unit(6, "feet"),
  4810. weight: math.unit(400, "lbs"),
  4811. name: "Taur (Laying)",
  4812. image: {
  4813. source: "./media/characters/deerpuff/taur-laying.svg"
  4814. }
  4815. },
  4816. },
  4817. [
  4818. {
  4819. name: "Puffball",
  4820. height: math.unit(6, "inches")
  4821. },
  4822. {
  4823. name: "Normalpuff",
  4824. height: math.unit(5.75, "feet")
  4825. },
  4826. {
  4827. name: "Macropuff",
  4828. height: math.unit(1500, "feet"),
  4829. default: true
  4830. },
  4831. {
  4832. name: "Megapuff",
  4833. height: math.unit(500, "miles")
  4834. },
  4835. {
  4836. name: "Gigapuff",
  4837. height: math.unit(250000, "miles")
  4838. },
  4839. {
  4840. name: "Omegapuff",
  4841. height: math.unit(1000, "lightyears")
  4842. },
  4843. ]
  4844. ))
  4845. characterMakers.push(() => makeCharacter(
  4846. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4847. {
  4848. stomping: {
  4849. height: math.unit(6, "feet"),
  4850. weight: math.unit(170, "lbs"),
  4851. name: "Stomping",
  4852. image: {
  4853. source: "./media/characters/vivian/stomping.svg"
  4854. }
  4855. },
  4856. sitting: {
  4857. height: math.unit(6 / 1.75, "feet"),
  4858. weight: math.unit(170, "lbs"),
  4859. name: "Sitting",
  4860. image: {
  4861. source: "./media/characters/vivian/sitting.svg",
  4862. bottom: 1 / 6.4,
  4863. extra: 1,
  4864. }
  4865. },
  4866. },
  4867. [
  4868. {
  4869. name: "Normal",
  4870. height: math.unit(7, "feet"),
  4871. default: true
  4872. },
  4873. {
  4874. name: "Macro",
  4875. height: math.unit(10, "stories")
  4876. },
  4877. {
  4878. name: "Macro+",
  4879. height: math.unit(30, "stories")
  4880. },
  4881. {
  4882. name: "Megamacro",
  4883. height: math.unit(10, "miles")
  4884. },
  4885. {
  4886. name: "Megamacro+",
  4887. height: math.unit(2750000, "meters")
  4888. },
  4889. ]
  4890. ))
  4891. characterMakers.push(() => makeCharacter(
  4892. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4893. {
  4894. front: {
  4895. height: math.unit(6, "feet"),
  4896. weight: math.unit(160, "lbs"),
  4897. name: "Front",
  4898. image: {
  4899. source: "./media/characters/prince/front.svg",
  4900. extra: 3400 / 3000
  4901. }
  4902. },
  4903. jumping: {
  4904. height: math.unit(6, "feet"),
  4905. weight: math.unit(160, "lbs"),
  4906. name: "Jumping",
  4907. image: {
  4908. source: "./media/characters/prince/jump.svg",
  4909. extra: 2555 / 2134
  4910. }
  4911. },
  4912. },
  4913. [
  4914. {
  4915. name: "Normal",
  4916. height: math.unit(7.75, "feet"),
  4917. default: true
  4918. },
  4919. {
  4920. name: "Not cute",
  4921. height: math.unit(17, "feet")
  4922. },
  4923. {
  4924. name: "I said NOT",
  4925. height: math.unit(91, "feet")
  4926. },
  4927. {
  4928. name: "Please stop",
  4929. height: math.unit(560, "feet")
  4930. },
  4931. {
  4932. name: "What have you done",
  4933. height: math.unit(2200, "feet")
  4934. },
  4935. {
  4936. name: "Deer God",
  4937. height: math.unit(3.6, "miles")
  4938. },
  4939. ]
  4940. ))
  4941. characterMakers.push(() => makeCharacter(
  4942. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4943. {
  4944. standing: {
  4945. height: math.unit(6, "feet"),
  4946. weight: math.unit(300, "lbs"),
  4947. name: "Standing",
  4948. image: {
  4949. source: "./media/characters/psymon/standing.svg",
  4950. extra: 1888 / 1810,
  4951. bottom: 0.05
  4952. }
  4953. },
  4954. slithering: {
  4955. height: math.unit(6, "feet"),
  4956. weight: math.unit(300, "lbs"),
  4957. name: "Slithering",
  4958. image: {
  4959. source: "./media/characters/psymon/slithering.svg",
  4960. extra: 1330 / 1224
  4961. }
  4962. },
  4963. slitheringAlt: {
  4964. height: math.unit(6, "feet"),
  4965. weight: math.unit(300, "lbs"),
  4966. name: "Slithering (Alt)",
  4967. image: {
  4968. source: "./media/characters/psymon/slithering-alt.svg",
  4969. extra: 1330 / 1224
  4970. }
  4971. },
  4972. },
  4973. [
  4974. {
  4975. name: "Normal",
  4976. height: math.unit(11.25, "feet"),
  4977. default: true
  4978. },
  4979. {
  4980. name: "Large",
  4981. height: math.unit(27, "feet")
  4982. },
  4983. {
  4984. name: "Giant",
  4985. height: math.unit(87, "feet")
  4986. },
  4987. {
  4988. name: "Macro",
  4989. height: math.unit(365, "feet")
  4990. },
  4991. {
  4992. name: "Megamacro",
  4993. height: math.unit(3, "miles")
  4994. },
  4995. {
  4996. name: "World Serpent",
  4997. height: math.unit(8000, "miles")
  4998. },
  4999. ]
  5000. ))
  5001. characterMakers.push(() => makeCharacter(
  5002. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5003. {
  5004. front: {
  5005. height: math.unit(6, "feet"),
  5006. weight: math.unit(180, "lbs"),
  5007. name: "Front",
  5008. image: {
  5009. source: "./media/characters/daimos/front.svg",
  5010. extra: 4160 / 3897,
  5011. bottom: 0.021
  5012. }
  5013. }
  5014. },
  5015. [
  5016. {
  5017. name: "Normal",
  5018. height: math.unit(8, "feet"),
  5019. default: true
  5020. },
  5021. {
  5022. name: "Big Dog",
  5023. height: math.unit(22, "feet")
  5024. },
  5025. {
  5026. name: "Macro",
  5027. height: math.unit(127, "feet")
  5028. },
  5029. {
  5030. name: "Megamacro",
  5031. height: math.unit(3600, "feet")
  5032. },
  5033. ]
  5034. ))
  5035. characterMakers.push(() => makeCharacter(
  5036. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5037. {
  5038. side: {
  5039. height: math.unit(6, "feet"),
  5040. weight: math.unit(180, "lbs"),
  5041. name: "Side",
  5042. image: {
  5043. source: "./media/characters/blake/side.svg",
  5044. extra: 1212 / 1120,
  5045. bottom: 0.05
  5046. }
  5047. },
  5048. crouched: {
  5049. height: math.unit(6 * 0.57, "feet"),
  5050. weight: math.unit(180, "lbs"),
  5051. name: "Crouched",
  5052. image: {
  5053. source: "./media/characters/blake/crouched.svg",
  5054. extra: 840 / 587,
  5055. bottom: 0.04
  5056. }
  5057. },
  5058. bent: {
  5059. height: math.unit(6 * 0.75, "feet"),
  5060. weight: math.unit(180, "lbs"),
  5061. name: "Bent",
  5062. image: {
  5063. source: "./media/characters/blake/bent.svg",
  5064. extra: 592 / 544,
  5065. bottom: 0.035
  5066. }
  5067. },
  5068. },
  5069. [
  5070. {
  5071. name: "Normal",
  5072. height: math.unit(8 + 1 / 6, "feet"),
  5073. default: true
  5074. },
  5075. {
  5076. name: "Big Backside",
  5077. height: math.unit(37, "feet")
  5078. },
  5079. {
  5080. name: "Subway Shredder",
  5081. height: math.unit(72, "feet")
  5082. },
  5083. {
  5084. name: "City Carver",
  5085. height: math.unit(1675, "feet")
  5086. },
  5087. {
  5088. name: "Tectonic Tweaker",
  5089. height: math.unit(2300, "miles")
  5090. },
  5091. ]
  5092. ))
  5093. characterMakers.push(() => makeCharacter(
  5094. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5095. {
  5096. front: {
  5097. height: math.unit(6, "feet"),
  5098. weight: math.unit(180, "lbs"),
  5099. name: "Front",
  5100. image: {
  5101. source: "./media/characters/guisetto/front.svg",
  5102. extra: 856 / 817,
  5103. bottom: 0.06
  5104. }
  5105. },
  5106. airborne: {
  5107. height: math.unit(6, "feet"),
  5108. weight: math.unit(180, "lbs"),
  5109. name: "Airborne",
  5110. image: {
  5111. source: "./media/characters/guisetto/airborne.svg",
  5112. extra: 584 / 525
  5113. }
  5114. },
  5115. },
  5116. [
  5117. {
  5118. name: "Normal",
  5119. height: math.unit(10 + 11 / 12, "feet"),
  5120. default: true
  5121. },
  5122. {
  5123. name: "Large",
  5124. height: math.unit(35, "feet")
  5125. },
  5126. {
  5127. name: "Macro",
  5128. height: math.unit(475, "feet")
  5129. },
  5130. ]
  5131. ))
  5132. characterMakers.push(() => makeCharacter(
  5133. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5134. {
  5135. front: {
  5136. height: math.unit(6, "feet"),
  5137. weight: math.unit(180, "lbs"),
  5138. name: "Front",
  5139. image: {
  5140. source: "./media/characters/luxor/front.svg",
  5141. extra: 2940 / 2152
  5142. }
  5143. },
  5144. back: {
  5145. height: math.unit(6, "feet"),
  5146. weight: math.unit(180, "lbs"),
  5147. name: "Back",
  5148. image: {
  5149. source: "./media/characters/luxor/back.svg",
  5150. extra: 1083 / 960
  5151. }
  5152. },
  5153. },
  5154. [
  5155. {
  5156. name: "Normal",
  5157. height: math.unit(5 + 5 / 6, "feet"),
  5158. default: true
  5159. },
  5160. {
  5161. name: "Lamp",
  5162. height: math.unit(50, "feet")
  5163. },
  5164. {
  5165. name: "Lämp",
  5166. height: math.unit(300, "feet")
  5167. },
  5168. {
  5169. name: "The sun is a lamp",
  5170. height: math.unit(250000, "miles")
  5171. },
  5172. ]
  5173. ))
  5174. characterMakers.push(() => makeCharacter(
  5175. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5176. {
  5177. front: {
  5178. height: math.unit(6, "feet"),
  5179. weight: math.unit(50, "lbs"),
  5180. name: "Front",
  5181. image: {
  5182. source: "./media/characters/huoyan/front.svg"
  5183. }
  5184. },
  5185. side: {
  5186. height: math.unit(6, "feet"),
  5187. weight: math.unit(180, "lbs"),
  5188. name: "Side",
  5189. image: {
  5190. source: "./media/characters/huoyan/side.svg"
  5191. }
  5192. },
  5193. },
  5194. [
  5195. {
  5196. name: "Chef",
  5197. height: math.unit(9, "feet")
  5198. },
  5199. {
  5200. name: "Normal",
  5201. height: math.unit(65, "feet"),
  5202. default: true
  5203. },
  5204. {
  5205. name: "Macro",
  5206. height: math.unit(780, "feet")
  5207. },
  5208. {
  5209. name: "Flaming Mountain",
  5210. height: math.unit(4.8, "miles")
  5211. },
  5212. {
  5213. name: "Celestial",
  5214. height: math.unit(765000, "miles")
  5215. },
  5216. ]
  5217. ))
  5218. characterMakers.push(() => makeCharacter(
  5219. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5220. {
  5221. front: {
  5222. height: math.unit(5 + 3 / 4, "feet"),
  5223. weight: math.unit(120, "lbs"),
  5224. name: "Front",
  5225. image: {
  5226. source: "./media/characters/tails/front.svg"
  5227. }
  5228. }
  5229. },
  5230. [
  5231. {
  5232. name: "Normal",
  5233. height: math.unit(5 + 3 / 4, "feet"),
  5234. default: true
  5235. }
  5236. ]
  5237. ))
  5238. characterMakers.push(() => makeCharacter(
  5239. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5240. {
  5241. front: {
  5242. height: math.unit(4, "feet"),
  5243. weight: math.unit(50, "lbs"),
  5244. name: "Front",
  5245. image: {
  5246. source: "./media/characters/rainy/front.svg"
  5247. }
  5248. }
  5249. },
  5250. [
  5251. {
  5252. name: "Macro",
  5253. height: math.unit(800, "feet"),
  5254. default: true
  5255. }
  5256. ]
  5257. ))
  5258. characterMakers.push(() => makeCharacter(
  5259. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5260. {
  5261. front: {
  5262. height: math.unit(6, "feet"),
  5263. weight: math.unit(150, "lbs"),
  5264. name: "Front",
  5265. image: {
  5266. source: "./media/characters/rainier/front.svg"
  5267. }
  5268. }
  5269. },
  5270. [
  5271. {
  5272. name: "Micro",
  5273. height: math.unit(2, "mm"),
  5274. default: true
  5275. }
  5276. ]
  5277. ))
  5278. characterMakers.push(() => makeCharacter(
  5279. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5280. {
  5281. front: {
  5282. height: math.unit(6, "feet"),
  5283. weight: math.unit(180, "lbs"),
  5284. name: "Front",
  5285. image: {
  5286. source: "./media/characters/andy/front.svg"
  5287. }
  5288. }
  5289. },
  5290. [
  5291. {
  5292. name: "Normal",
  5293. height: math.unit(8, "feet"),
  5294. default: true
  5295. },
  5296. {
  5297. name: "Macro",
  5298. height: math.unit(1000, "feet")
  5299. },
  5300. {
  5301. name: "Megamacro",
  5302. height: math.unit(5, "miles")
  5303. },
  5304. {
  5305. name: "Gigamacro",
  5306. height: math.unit(5000, "miles")
  5307. },
  5308. ]
  5309. ))
  5310. characterMakers.push(() => makeCharacter(
  5311. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5312. {
  5313. front: {
  5314. height: math.unit(6, "feet"),
  5315. weight: math.unit(210, "lbs"),
  5316. name: "Front",
  5317. image: {
  5318. source: "./media/characters/cimmaron/front-sfw.svg",
  5319. extra: 701 / 676,
  5320. bottom: 0.046
  5321. }
  5322. },
  5323. back: {
  5324. height: math.unit(6, "feet"),
  5325. weight: math.unit(210, "lbs"),
  5326. name: "Back",
  5327. image: {
  5328. source: "./media/characters/cimmaron/back-sfw.svg",
  5329. extra: 701 / 676,
  5330. bottom: 0.046
  5331. }
  5332. },
  5333. frontNsfw: {
  5334. height: math.unit(6, "feet"),
  5335. weight: math.unit(210, "lbs"),
  5336. name: "Front (NSFW)",
  5337. image: {
  5338. source: "./media/characters/cimmaron/front-nsfw.svg",
  5339. extra: 701 / 676,
  5340. bottom: 0.046
  5341. }
  5342. },
  5343. backNsfw: {
  5344. height: math.unit(6, "feet"),
  5345. weight: math.unit(210, "lbs"),
  5346. name: "Back (NSFW)",
  5347. image: {
  5348. source: "./media/characters/cimmaron/back-nsfw.svg",
  5349. extra: 701 / 676,
  5350. bottom: 0.046
  5351. }
  5352. },
  5353. dick: {
  5354. height: math.unit(1.714, "feet"),
  5355. name: "Dick",
  5356. image: {
  5357. source: "./media/characters/cimmaron/dick.svg"
  5358. }
  5359. },
  5360. },
  5361. [
  5362. {
  5363. name: "Normal",
  5364. height: math.unit(6, "feet"),
  5365. default: true
  5366. },
  5367. {
  5368. name: "Macro Mayor",
  5369. height: math.unit(350, "meters")
  5370. },
  5371. ]
  5372. ))
  5373. characterMakers.push(() => makeCharacter(
  5374. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5375. {
  5376. front: {
  5377. height: math.unit(6, "feet"),
  5378. weight: math.unit(200, "lbs"),
  5379. name: "Front",
  5380. image: {
  5381. source: "./media/characters/akari/front.svg",
  5382. extra: 962 / 901,
  5383. bottom: 0.04
  5384. }
  5385. }
  5386. },
  5387. [
  5388. {
  5389. name: "Micro",
  5390. height: math.unit(5, "inches"),
  5391. default: true
  5392. },
  5393. {
  5394. name: "Normal",
  5395. height: math.unit(7, "feet")
  5396. },
  5397. ]
  5398. ))
  5399. characterMakers.push(() => makeCharacter(
  5400. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5401. {
  5402. front: {
  5403. height: math.unit(6, "feet"),
  5404. weight: math.unit(140, "lbs"),
  5405. name: "Front",
  5406. image: {
  5407. source: "./media/characters/cynosura/front.svg",
  5408. extra: 896 / 847
  5409. }
  5410. },
  5411. back: {
  5412. height: math.unit(6, "feet"),
  5413. weight: math.unit(140, "lbs"),
  5414. name: "Back",
  5415. image: {
  5416. source: "./media/characters/cynosura/back.svg",
  5417. extra: 1365 / 1250
  5418. }
  5419. },
  5420. },
  5421. [
  5422. {
  5423. name: "Micro",
  5424. height: math.unit(4, "inches")
  5425. },
  5426. {
  5427. name: "Normal",
  5428. height: math.unit(5.75, "feet"),
  5429. default: true
  5430. },
  5431. {
  5432. name: "Tall",
  5433. height: math.unit(10, "feet")
  5434. },
  5435. {
  5436. name: "Big",
  5437. height: math.unit(20, "feet")
  5438. },
  5439. {
  5440. name: "Macro",
  5441. height: math.unit(50, "feet")
  5442. },
  5443. ]
  5444. ))
  5445. characterMakers.push(() => makeCharacter(
  5446. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5447. {
  5448. front: {
  5449. height: math.unit(6, "feet"),
  5450. weight: math.unit(170, "lbs"),
  5451. name: "Front",
  5452. image: {
  5453. source: "./media/characters/gin/front.svg",
  5454. extra: 1.053,
  5455. bottom: 0.025
  5456. }
  5457. },
  5458. foot: {
  5459. height: math.unit(6 / 4.25, "feet"),
  5460. name: "Foot",
  5461. image: {
  5462. source: "./media/characters/gin/foot.svg"
  5463. }
  5464. },
  5465. sole: {
  5466. height: math.unit(6 / 4.40, "feet"),
  5467. name: "Sole",
  5468. image: {
  5469. source: "./media/characters/gin/sole.svg"
  5470. }
  5471. },
  5472. },
  5473. [
  5474. {
  5475. name: "Normal",
  5476. height: math.unit(13 + 2 / 12, "feet")
  5477. },
  5478. {
  5479. name: "Macro",
  5480. height: math.unit(1500, "feet")
  5481. },
  5482. {
  5483. name: "Megamacro",
  5484. height: math.unit(200, "miles"),
  5485. default: true
  5486. },
  5487. {
  5488. name: "Gigamacro",
  5489. height: math.unit(500, "megameters")
  5490. },
  5491. {
  5492. name: "Teramacro",
  5493. height: math.unit(15, "lightyears")
  5494. }
  5495. ]
  5496. ))
  5497. characterMakers.push(() => makeCharacter(
  5498. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5499. {
  5500. front: {
  5501. height: math.unit(6 + 1 / 6, "feet"),
  5502. weight: math.unit(178, "lbs"),
  5503. name: "Front",
  5504. image: {
  5505. source: "./media/characters/guy/front.svg"
  5506. }
  5507. }
  5508. },
  5509. [
  5510. {
  5511. name: "Normal",
  5512. height: math.unit(6 + 1 / 6, "feet"),
  5513. default: true
  5514. },
  5515. {
  5516. name: "Large",
  5517. height: math.unit(25 + 7 / 12, "feet")
  5518. },
  5519. {
  5520. name: "Macro",
  5521. height: math.unit(60 + 9 / 12, "feet")
  5522. },
  5523. {
  5524. name: "Macro+",
  5525. height: math.unit(246, "feet")
  5526. },
  5527. {
  5528. name: "Macro++",
  5529. height: math.unit(878, "feet")
  5530. }
  5531. ]
  5532. ))
  5533. characterMakers.push(() => makeCharacter(
  5534. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5535. {
  5536. front: {
  5537. height: math.unit(9, "feet"),
  5538. weight: math.unit(800, "lbs"),
  5539. name: "Front",
  5540. image: {
  5541. source: "./media/characters/tiberius/front.svg",
  5542. extra: 2295 / 2071
  5543. }
  5544. },
  5545. back: {
  5546. height: math.unit(9, "feet"),
  5547. weight: math.unit(800, "lbs"),
  5548. name: "Back",
  5549. image: {
  5550. source: "./media/characters/tiberius/back.svg",
  5551. extra: 2373 / 2160
  5552. }
  5553. },
  5554. },
  5555. [
  5556. {
  5557. name: "Normal",
  5558. height: math.unit(9, "feet"),
  5559. default: true
  5560. }
  5561. ]
  5562. ))
  5563. characterMakers.push(() => makeCharacter(
  5564. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5565. {
  5566. front: {
  5567. height: math.unit(6, "feet"),
  5568. weight: math.unit(600, "lbs"),
  5569. name: "Front",
  5570. image: {
  5571. source: "./media/characters/surgo/front.svg",
  5572. extra: 3591 / 2227
  5573. }
  5574. },
  5575. back: {
  5576. height: math.unit(6, "feet"),
  5577. weight: math.unit(600, "lbs"),
  5578. name: "Back",
  5579. image: {
  5580. source: "./media/characters/surgo/back.svg",
  5581. extra: 3557 / 2228
  5582. }
  5583. },
  5584. laying: {
  5585. height: math.unit(6 * 0.85, "feet"),
  5586. weight: math.unit(600, "lbs"),
  5587. name: "Laying",
  5588. image: {
  5589. source: "./media/characters/surgo/laying.svg"
  5590. }
  5591. },
  5592. },
  5593. [
  5594. {
  5595. name: "Normal",
  5596. height: math.unit(6, "feet"),
  5597. default: true
  5598. }
  5599. ]
  5600. ))
  5601. characterMakers.push(() => makeCharacter(
  5602. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5603. {
  5604. side: {
  5605. height: math.unit(6, "feet"),
  5606. weight: math.unit(150, "lbs"),
  5607. name: "Side",
  5608. image: {
  5609. source: "./media/characters/cibus/side.svg",
  5610. extra: 800 / 400
  5611. }
  5612. },
  5613. },
  5614. [
  5615. {
  5616. name: "Normal",
  5617. height: math.unit(6, "feet"),
  5618. default: true
  5619. }
  5620. ]
  5621. ))
  5622. characterMakers.push(() => makeCharacter(
  5623. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5624. {
  5625. front: {
  5626. height: math.unit(6, "feet"),
  5627. weight: math.unit(240, "lbs"),
  5628. name: "Front",
  5629. image: {
  5630. source: "./media/characters/nibbles/front.svg"
  5631. }
  5632. },
  5633. side: {
  5634. height: math.unit(6, "feet"),
  5635. weight: math.unit(240, "lbs"),
  5636. name: "Side",
  5637. image: {
  5638. source: "./media/characters/nibbles/side.svg"
  5639. }
  5640. },
  5641. },
  5642. [
  5643. {
  5644. name: "Normal",
  5645. height: math.unit(9, "feet"),
  5646. default: true
  5647. }
  5648. ]
  5649. ))
  5650. characterMakers.push(() => makeCharacter(
  5651. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5652. {
  5653. side: {
  5654. height: math.unit(5 + 1 / 6, "feet"),
  5655. weight: math.unit(130, "lbs"),
  5656. name: "Side",
  5657. image: {
  5658. source: "./media/characters/rikky/side.svg",
  5659. extra: 851 / 801
  5660. }
  5661. },
  5662. },
  5663. [
  5664. {
  5665. name: "Normal",
  5666. height: math.unit(5 + 1 / 6, "feet")
  5667. },
  5668. {
  5669. name: "Macro",
  5670. height: math.unit(152, "feet"),
  5671. default: true
  5672. },
  5673. {
  5674. name: "Megamacro",
  5675. height: math.unit(7, "miles")
  5676. }
  5677. ]
  5678. ))
  5679. characterMakers.push(() => makeCharacter(
  5680. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5681. {
  5682. side: {
  5683. height: math.unit(370, "cm"),
  5684. weight: math.unit(350, "lbs"),
  5685. name: "Side",
  5686. image: {
  5687. source: "./media/characters/malfressa/side.svg"
  5688. }
  5689. },
  5690. walking: {
  5691. height: math.unit(370, "cm"),
  5692. weight: math.unit(350, "lbs"),
  5693. name: "Walking",
  5694. image: {
  5695. source: "./media/characters/malfressa/walking.svg"
  5696. }
  5697. },
  5698. feral: {
  5699. height: math.unit(2500, "cm"),
  5700. weight: math.unit(100000, "lbs"),
  5701. name: "Feral",
  5702. image: {
  5703. source: "./media/characters/malfressa/feral.svg",
  5704. extra: 2108 / 837,
  5705. bottom: 0.02
  5706. }
  5707. },
  5708. },
  5709. [
  5710. {
  5711. name: "Normal",
  5712. height: math.unit(370, "cm")
  5713. },
  5714. {
  5715. name: "Macro",
  5716. height: math.unit(300, "meters"),
  5717. default: true
  5718. }
  5719. ]
  5720. ))
  5721. characterMakers.push(() => makeCharacter(
  5722. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5723. {
  5724. front: {
  5725. height: math.unit(6, "feet"),
  5726. weight: math.unit(60, "kg"),
  5727. name: "Front",
  5728. image: {
  5729. source: "./media/characters/jaro/front.svg"
  5730. }
  5731. },
  5732. back: {
  5733. height: math.unit(6, "feet"),
  5734. weight: math.unit(60, "kg"),
  5735. name: "Back",
  5736. image: {
  5737. source: "./media/characters/jaro/back.svg"
  5738. }
  5739. },
  5740. },
  5741. [
  5742. {
  5743. name: "Micro",
  5744. height: math.unit(7, "inches")
  5745. },
  5746. {
  5747. name: "Normal",
  5748. height: math.unit(5.5, "feet"),
  5749. default: true
  5750. },
  5751. {
  5752. name: "Minimacro",
  5753. height: math.unit(20, "feet")
  5754. },
  5755. {
  5756. name: "Macro",
  5757. height: math.unit(200, "meters")
  5758. }
  5759. ]
  5760. ))
  5761. characterMakers.push(() => makeCharacter(
  5762. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5763. {
  5764. front: {
  5765. height: math.unit(6, "feet"),
  5766. weight: math.unit(195, "lb"),
  5767. name: "Front",
  5768. image: {
  5769. source: "./media/characters/rogue/front.svg"
  5770. }
  5771. },
  5772. },
  5773. [
  5774. {
  5775. name: "Macro",
  5776. height: math.unit(90, "feet"),
  5777. default: true
  5778. },
  5779. ]
  5780. ))
  5781. characterMakers.push(() => makeCharacter(
  5782. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5783. {
  5784. front: {
  5785. height: math.unit(5 + 8 / 12, "feet"),
  5786. weight: math.unit(140, "lb"),
  5787. name: "Front",
  5788. image: {
  5789. source: "./media/characters/piper/front.svg",
  5790. extra: 3948/3655,
  5791. bottom: 0/3948
  5792. }
  5793. },
  5794. },
  5795. [
  5796. {
  5797. name: "Micro",
  5798. height: math.unit(2, "inches")
  5799. },
  5800. {
  5801. name: "Normal",
  5802. height: math.unit(5 + 8 / 12, "feet")
  5803. },
  5804. {
  5805. name: "Macro",
  5806. height: math.unit(250, "feet"),
  5807. default: true
  5808. },
  5809. {
  5810. name: "Megamacro",
  5811. height: math.unit(7, "miles")
  5812. },
  5813. ]
  5814. ))
  5815. characterMakers.push(() => makeCharacter(
  5816. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5817. {
  5818. front: {
  5819. height: math.unit(6, "feet"),
  5820. weight: math.unit(220, "lb"),
  5821. name: "Front",
  5822. image: {
  5823. source: "./media/characters/gemini/front.svg"
  5824. }
  5825. },
  5826. back: {
  5827. height: math.unit(6, "feet"),
  5828. weight: math.unit(220, "lb"),
  5829. name: "Back",
  5830. image: {
  5831. source: "./media/characters/gemini/back.svg"
  5832. }
  5833. },
  5834. kneeling: {
  5835. height: math.unit(6 / 1.5, "feet"),
  5836. weight: math.unit(220, "lb"),
  5837. name: "Kneeling",
  5838. image: {
  5839. source: "./media/characters/gemini/kneeling.svg",
  5840. bottom: 0.02
  5841. }
  5842. },
  5843. },
  5844. [
  5845. {
  5846. name: "Macro",
  5847. height: math.unit(300, "meters"),
  5848. default: true
  5849. },
  5850. {
  5851. name: "Megamacro",
  5852. height: math.unit(6900, "meters")
  5853. },
  5854. ]
  5855. ))
  5856. characterMakers.push(() => makeCharacter(
  5857. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5858. {
  5859. anthro: {
  5860. height: math.unit(2.35, "meters"),
  5861. weight: math.unit(73, "kg"),
  5862. name: "Anthro",
  5863. image: {
  5864. source: "./media/characters/alicia/anthro.svg",
  5865. extra: 2571 / 2385,
  5866. bottom: 75 / 2648
  5867. }
  5868. },
  5869. paw: {
  5870. height: math.unit(1.32, "feet"),
  5871. name: "Paw",
  5872. image: {
  5873. source: "./media/characters/alicia/paw.svg"
  5874. }
  5875. },
  5876. feral: {
  5877. height: math.unit(1.69, "meters"),
  5878. weight: math.unit(73, "kg"),
  5879. name: "Feral",
  5880. image: {
  5881. source: "./media/characters/alicia/feral.svg",
  5882. extra: 2123 / 1715,
  5883. bottom: 222 / 2349
  5884. }
  5885. },
  5886. },
  5887. [
  5888. {
  5889. name: "Normal",
  5890. height: math.unit(2.35, "meters")
  5891. },
  5892. {
  5893. name: "Macro",
  5894. height: math.unit(60, "meters"),
  5895. default: true
  5896. },
  5897. {
  5898. name: "Megamacro",
  5899. height: math.unit(10000, "kilometers")
  5900. },
  5901. ]
  5902. ))
  5903. characterMakers.push(() => makeCharacter(
  5904. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5905. {
  5906. front: {
  5907. height: math.unit(7, "feet"),
  5908. weight: math.unit(250, "lbs"),
  5909. name: "Front",
  5910. image: {
  5911. source: "./media/characters/archy/front.svg"
  5912. }
  5913. }
  5914. },
  5915. [
  5916. {
  5917. name: "Micro",
  5918. height: math.unit(1, "inch")
  5919. },
  5920. {
  5921. name: "Shorty",
  5922. height: math.unit(5, "feet")
  5923. },
  5924. {
  5925. name: "Normal",
  5926. height: math.unit(7, "feet")
  5927. },
  5928. {
  5929. name: "Macro",
  5930. height: math.unit(600, "meters"),
  5931. default: true
  5932. },
  5933. {
  5934. name: "Megamacro",
  5935. height: math.unit(1, "mile")
  5936. },
  5937. ]
  5938. ))
  5939. characterMakers.push(() => makeCharacter(
  5940. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5941. {
  5942. front: {
  5943. height: math.unit(1.65, "meters"),
  5944. weight: math.unit(74, "kg"),
  5945. name: "Front",
  5946. image: {
  5947. source: "./media/characters/berri/front.svg",
  5948. extra: 857 / 837,
  5949. bottom: 18 / 877
  5950. }
  5951. },
  5952. bum: {
  5953. height: math.unit(1.46, "feet"),
  5954. name: "Bum",
  5955. image: {
  5956. source: "./media/characters/berri/bum.svg"
  5957. }
  5958. },
  5959. mouth: {
  5960. height: math.unit(0.44, "feet"),
  5961. name: "Mouth",
  5962. image: {
  5963. source: "./media/characters/berri/mouth.svg"
  5964. }
  5965. },
  5966. paw: {
  5967. height: math.unit(0.826, "feet"),
  5968. name: "Paw",
  5969. image: {
  5970. source: "./media/characters/berri/paw.svg"
  5971. }
  5972. },
  5973. },
  5974. [
  5975. {
  5976. name: "Normal",
  5977. height: math.unit(1.65, "meters")
  5978. },
  5979. {
  5980. name: "Macro",
  5981. height: math.unit(60, "m"),
  5982. default: true
  5983. },
  5984. {
  5985. name: "Megamacro",
  5986. height: math.unit(9.213, "km")
  5987. },
  5988. {
  5989. name: "Planet Eater",
  5990. height: math.unit(489, "megameters")
  5991. },
  5992. {
  5993. name: "Teramacro",
  5994. height: math.unit(2471635000000, "meters")
  5995. },
  5996. {
  5997. name: "Examacro",
  5998. height: math.unit(8.0624e+26, "meters")
  5999. }
  6000. ]
  6001. ))
  6002. characterMakers.push(() => makeCharacter(
  6003. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6004. {
  6005. front: {
  6006. height: math.unit(1.72, "meters"),
  6007. weight: math.unit(68, "kg"),
  6008. name: "Front",
  6009. image: {
  6010. source: "./media/characters/lexi/front.svg"
  6011. }
  6012. }
  6013. },
  6014. [
  6015. {
  6016. name: "Very Smol",
  6017. height: math.unit(10, "mm")
  6018. },
  6019. {
  6020. name: "Micro",
  6021. height: math.unit(6.8, "cm"),
  6022. default: true
  6023. },
  6024. {
  6025. name: "Normal",
  6026. height: math.unit(1.72, "m")
  6027. }
  6028. ]
  6029. ))
  6030. characterMakers.push(() => makeCharacter(
  6031. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6032. {
  6033. front: {
  6034. height: math.unit(1.69, "meters"),
  6035. weight: math.unit(68, "kg"),
  6036. name: "Front",
  6037. image: {
  6038. source: "./media/characters/martin/front.svg",
  6039. extra: 596 / 581
  6040. }
  6041. }
  6042. },
  6043. [
  6044. {
  6045. name: "Micro",
  6046. height: math.unit(6.85, "cm"),
  6047. default: true
  6048. },
  6049. {
  6050. name: "Normal",
  6051. height: math.unit(1.69, "m")
  6052. }
  6053. ]
  6054. ))
  6055. characterMakers.push(() => makeCharacter(
  6056. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6057. {
  6058. front: {
  6059. height: math.unit(1.69, "meters"),
  6060. weight: math.unit(68, "kg"),
  6061. name: "Front",
  6062. image: {
  6063. source: "./media/characters/juno/front.svg"
  6064. }
  6065. }
  6066. },
  6067. [
  6068. {
  6069. name: "Micro",
  6070. height: math.unit(7, "cm")
  6071. },
  6072. {
  6073. name: "Normal",
  6074. height: math.unit(1.89, "m")
  6075. },
  6076. {
  6077. name: "Macro",
  6078. height: math.unit(353, "meters"),
  6079. default: true
  6080. }
  6081. ]
  6082. ))
  6083. characterMakers.push(() => makeCharacter(
  6084. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6085. {
  6086. front: {
  6087. height: math.unit(1.93, "meters"),
  6088. weight: math.unit(83, "kg"),
  6089. name: "Front",
  6090. image: {
  6091. source: "./media/characters/samantha/front.svg"
  6092. }
  6093. },
  6094. frontClothed: {
  6095. height: math.unit(1.93, "meters"),
  6096. weight: math.unit(83, "kg"),
  6097. name: "Front (Clothed)",
  6098. image: {
  6099. source: "./media/characters/samantha/front-clothed.svg"
  6100. }
  6101. },
  6102. back: {
  6103. height: math.unit(1.93, "meters"),
  6104. weight: math.unit(83, "kg"),
  6105. name: "Back",
  6106. image: {
  6107. source: "./media/characters/samantha/back.svg"
  6108. }
  6109. },
  6110. },
  6111. [
  6112. {
  6113. name: "Normal",
  6114. height: math.unit(1.93, "m")
  6115. },
  6116. {
  6117. name: "Macro",
  6118. height: math.unit(74, "meters"),
  6119. default: true
  6120. },
  6121. {
  6122. name: "Macro+",
  6123. height: math.unit(223, "meters"),
  6124. },
  6125. {
  6126. name: "Megamacro",
  6127. height: math.unit(8381, "meters"),
  6128. },
  6129. {
  6130. name: "Megamacro+",
  6131. height: math.unit(12000, "kilometers")
  6132. },
  6133. ]
  6134. ))
  6135. characterMakers.push(() => makeCharacter(
  6136. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6137. {
  6138. front: {
  6139. height: math.unit(1.92, "meters"),
  6140. weight: math.unit(80, "kg"),
  6141. name: "Front",
  6142. image: {
  6143. source: "./media/characters/dr-clay/front.svg"
  6144. }
  6145. },
  6146. frontClothed: {
  6147. height: math.unit(1.92, "meters"),
  6148. weight: math.unit(80, "kg"),
  6149. name: "Front (Clothed)",
  6150. image: {
  6151. source: "./media/characters/dr-clay/front-clothed.svg"
  6152. }
  6153. }
  6154. },
  6155. [
  6156. {
  6157. name: "Normal",
  6158. height: math.unit(1.92, "m")
  6159. },
  6160. {
  6161. name: "Macro",
  6162. height: math.unit(214, "meters"),
  6163. default: true
  6164. },
  6165. {
  6166. name: "Macro+",
  6167. height: math.unit(12.237, "meters"),
  6168. },
  6169. {
  6170. name: "Megamacro",
  6171. height: math.unit(557, "megameters"),
  6172. },
  6173. {
  6174. name: "Unimaginable",
  6175. height: math.unit(120e9, "lightyears")
  6176. },
  6177. ]
  6178. ))
  6179. characterMakers.push(() => makeCharacter(
  6180. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6181. {
  6182. front: {
  6183. height: math.unit(2, "meters"),
  6184. weight: math.unit(80, "kg"),
  6185. name: "Front",
  6186. image: {
  6187. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6188. }
  6189. }
  6190. },
  6191. [
  6192. {
  6193. name: "Teramacro",
  6194. height: math.unit(500000, "lightyears"),
  6195. default: true
  6196. },
  6197. ]
  6198. ))
  6199. characterMakers.push(() => makeCharacter(
  6200. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6201. {
  6202. front: {
  6203. height: math.unit(2, "meters"),
  6204. weight: math.unit(150, "kg"),
  6205. name: "Front",
  6206. image: {
  6207. source: "./media/characters/vemus/front.svg",
  6208. extra: 2384 / 2084,
  6209. bottom: 0.0123
  6210. }
  6211. }
  6212. },
  6213. [
  6214. {
  6215. name: "Normal",
  6216. height: math.unit(3.75, "meters"),
  6217. default: true
  6218. },
  6219. {
  6220. name: "Big",
  6221. height: math.unit(8, "meters")
  6222. },
  6223. {
  6224. name: "Macro",
  6225. height: math.unit(100, "meters")
  6226. },
  6227. {
  6228. name: "Macro+",
  6229. height: math.unit(1500, "meters")
  6230. },
  6231. {
  6232. name: "Stellar",
  6233. height: math.unit(14e8, "meters")
  6234. },
  6235. ]
  6236. ))
  6237. characterMakers.push(() => makeCharacter(
  6238. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6239. {
  6240. front: {
  6241. height: math.unit(2, "meters"),
  6242. weight: math.unit(70, "kg"),
  6243. name: "Front",
  6244. image: {
  6245. source: "./media/characters/beherit/front.svg",
  6246. extra: 1408 / 1242
  6247. }
  6248. }
  6249. },
  6250. [
  6251. {
  6252. name: "Normal",
  6253. height: math.unit(6, "feet")
  6254. },
  6255. {
  6256. name: "Lorg",
  6257. height: math.unit(25, "feet"),
  6258. default: true
  6259. },
  6260. {
  6261. name: "Lorger",
  6262. height: math.unit(75, "feet")
  6263. },
  6264. {
  6265. name: "Macro",
  6266. height: math.unit(200, "meters")
  6267. },
  6268. ]
  6269. ))
  6270. characterMakers.push(() => makeCharacter(
  6271. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6272. {
  6273. front: {
  6274. height: math.unit(2, "meters"),
  6275. weight: math.unit(150, "kg"),
  6276. name: "Front",
  6277. image: {
  6278. source: "./media/characters/everett/front.svg",
  6279. extra: 2038 / 1737,
  6280. bottom: 0.03
  6281. }
  6282. },
  6283. paw: {
  6284. height: math.unit(2 / 3.6, "meters"),
  6285. name: "Paw",
  6286. image: {
  6287. source: "./media/characters/everett/paw.svg"
  6288. }
  6289. },
  6290. },
  6291. [
  6292. {
  6293. name: "Normal",
  6294. height: math.unit(15, "feet"),
  6295. default: true
  6296. },
  6297. {
  6298. name: "Lorg",
  6299. height: math.unit(70, "feet"),
  6300. default: true
  6301. },
  6302. {
  6303. name: "Lorger",
  6304. height: math.unit(250, "feet")
  6305. },
  6306. {
  6307. name: "Macro",
  6308. height: math.unit(500, "meters")
  6309. },
  6310. ]
  6311. ))
  6312. characterMakers.push(() => makeCharacter(
  6313. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6314. {
  6315. front: {
  6316. height: math.unit(2, "meters"),
  6317. weight: math.unit(86, "kg"),
  6318. name: "Front",
  6319. image: {
  6320. source: "./media/characters/rose/front.svg",
  6321. extra: 350/335,
  6322. bottom: 10/360
  6323. }
  6324. },
  6325. frontAlt: {
  6326. height: math.unit(1.6, "meters"),
  6327. weight: math.unit(86, "kg"),
  6328. name: "Front (Alt)",
  6329. image: {
  6330. source: "./media/characters/rose/front-alt.svg",
  6331. extra: 299/283,
  6332. bottom: 3/302
  6333. }
  6334. },
  6335. plush: {
  6336. height: math.unit(2, "meters"),
  6337. weight: math.unit(86/3, "kg"),
  6338. name: "Plush",
  6339. image: {
  6340. source: "./media/characters/rose/plush.svg",
  6341. extra: 361/337,
  6342. bottom: 11/372
  6343. }
  6344. },
  6345. },
  6346. [
  6347. {
  6348. name: "Mini-Micro",
  6349. height: math.unit(1, "cm")
  6350. },
  6351. {
  6352. name: "Micro",
  6353. height: math.unit(3.5, "inches"),
  6354. default: true
  6355. },
  6356. {
  6357. name: "Normal",
  6358. height: math.unit(6 + 1 / 6, "feet")
  6359. },
  6360. {
  6361. name: "Mini-Macro",
  6362. height: math.unit(9 + 10 / 12, "feet")
  6363. },
  6364. ]
  6365. ))
  6366. characterMakers.push(() => makeCharacter(
  6367. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6368. {
  6369. front: {
  6370. height: math.unit(2, "meters"),
  6371. weight: math.unit(350, "lbs"),
  6372. name: "Front",
  6373. image: {
  6374. source: "./media/characters/regal/front.svg"
  6375. }
  6376. },
  6377. back: {
  6378. height: math.unit(2, "meters"),
  6379. weight: math.unit(350, "lbs"),
  6380. name: "Back",
  6381. image: {
  6382. source: "./media/characters/regal/back.svg"
  6383. }
  6384. },
  6385. },
  6386. [
  6387. {
  6388. name: "Macro",
  6389. height: math.unit(350, "feet"),
  6390. default: true
  6391. }
  6392. ]
  6393. ))
  6394. characterMakers.push(() => makeCharacter(
  6395. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6396. {
  6397. front: {
  6398. height: math.unit(4 + 11 / 12, "feet"),
  6399. weight: math.unit(100, "lbs"),
  6400. name: "Front",
  6401. image: {
  6402. source: "./media/characters/opal/front.svg"
  6403. }
  6404. },
  6405. frontAlt: {
  6406. height: math.unit(4 + 11 / 12, "feet"),
  6407. weight: math.unit(100, "lbs"),
  6408. name: "Front (Alt)",
  6409. image: {
  6410. source: "./media/characters/opal/front-alt.svg"
  6411. }
  6412. },
  6413. },
  6414. [
  6415. {
  6416. name: "Small",
  6417. height: math.unit(4 + 11 / 12, "feet")
  6418. },
  6419. {
  6420. name: "Normal",
  6421. height: math.unit(20, "feet"),
  6422. default: true
  6423. },
  6424. {
  6425. name: "Macro",
  6426. height: math.unit(120, "feet")
  6427. },
  6428. {
  6429. name: "Megamacro",
  6430. height: math.unit(80, "miles")
  6431. },
  6432. {
  6433. name: "True Size",
  6434. height: math.unit(100000, "lightyears")
  6435. },
  6436. ]
  6437. ))
  6438. characterMakers.push(() => makeCharacter(
  6439. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6440. {
  6441. front: {
  6442. height: math.unit(6, "feet"),
  6443. weight: math.unit(200, "lbs"),
  6444. name: "Front",
  6445. image: {
  6446. source: "./media/characters/vector-wuff/front.svg"
  6447. }
  6448. }
  6449. },
  6450. [
  6451. {
  6452. name: "Normal",
  6453. height: math.unit(2.8, "meters")
  6454. },
  6455. {
  6456. name: "Macro",
  6457. height: math.unit(450, "meters"),
  6458. default: true
  6459. },
  6460. {
  6461. name: "Megamacro",
  6462. height: math.unit(15, "kilometers")
  6463. }
  6464. ]
  6465. ))
  6466. characterMakers.push(() => makeCharacter(
  6467. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6468. {
  6469. front: {
  6470. height: math.unit(6, "feet"),
  6471. weight: math.unit(256, "lbs"),
  6472. name: "Front",
  6473. image: {
  6474. source: "./media/characters/dannik/front.svg"
  6475. }
  6476. }
  6477. },
  6478. [
  6479. {
  6480. name: "Macro",
  6481. height: math.unit(69.57, "meters"),
  6482. default: true
  6483. },
  6484. ]
  6485. ))
  6486. characterMakers.push(() => makeCharacter(
  6487. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6488. {
  6489. front: {
  6490. height: math.unit(6, "feet"),
  6491. weight: math.unit(120, "lbs"),
  6492. name: "Front",
  6493. image: {
  6494. source: "./media/characters/azura-saharah/front.svg"
  6495. }
  6496. },
  6497. back: {
  6498. height: math.unit(6, "feet"),
  6499. weight: math.unit(120, "lbs"),
  6500. name: "Back",
  6501. image: {
  6502. source: "./media/characters/azura-saharah/back.svg"
  6503. }
  6504. },
  6505. },
  6506. [
  6507. {
  6508. name: "Macro",
  6509. height: math.unit(100, "feet"),
  6510. default: true
  6511. },
  6512. ]
  6513. ))
  6514. characterMakers.push(() => makeCharacter(
  6515. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6516. {
  6517. side: {
  6518. height: math.unit(5 + 4 / 12, "feet"),
  6519. weight: math.unit(163, "lbs"),
  6520. name: "Side",
  6521. image: {
  6522. source: "./media/characters/kennedy/side.svg"
  6523. }
  6524. }
  6525. },
  6526. [
  6527. {
  6528. name: "Standard Doggo",
  6529. height: math.unit(5 + 4 / 12, "feet")
  6530. },
  6531. {
  6532. name: "Big Doggo",
  6533. height: math.unit(25 + 3 / 12, "feet"),
  6534. default: true
  6535. },
  6536. ]
  6537. ))
  6538. characterMakers.push(() => makeCharacter(
  6539. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6540. {
  6541. front: {
  6542. height: math.unit(6, "feet"),
  6543. weight: math.unit(90, "lbs"),
  6544. name: "Front",
  6545. image: {
  6546. source: "./media/characters/odi-lunar/front.svg"
  6547. }
  6548. }
  6549. },
  6550. [
  6551. {
  6552. name: "Micro",
  6553. height: math.unit(3, "inches"),
  6554. default: true
  6555. },
  6556. {
  6557. name: "Normal",
  6558. height: math.unit(5.5, "feet")
  6559. }
  6560. ]
  6561. ))
  6562. characterMakers.push(() => makeCharacter(
  6563. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6564. {
  6565. back: {
  6566. height: math.unit(6, "feet"),
  6567. weight: math.unit(220, "lbs"),
  6568. name: "Back",
  6569. image: {
  6570. source: "./media/characters/mandake/back.svg"
  6571. }
  6572. }
  6573. },
  6574. [
  6575. {
  6576. name: "Normal",
  6577. height: math.unit(7, "feet"),
  6578. default: true
  6579. },
  6580. {
  6581. name: "Macro",
  6582. height: math.unit(78, "feet")
  6583. },
  6584. {
  6585. name: "Macro+",
  6586. height: math.unit(300, "meters")
  6587. },
  6588. {
  6589. name: "Macro++",
  6590. height: math.unit(2400, "feet")
  6591. },
  6592. {
  6593. name: "Megamacro",
  6594. height: math.unit(5167, "meters")
  6595. },
  6596. {
  6597. name: "Gigamacro",
  6598. height: math.unit(41769, "miles")
  6599. },
  6600. ]
  6601. ))
  6602. characterMakers.push(() => makeCharacter(
  6603. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6604. {
  6605. front: {
  6606. height: math.unit(6, "feet"),
  6607. weight: math.unit(120, "lbs"),
  6608. name: "Front",
  6609. image: {
  6610. source: "./media/characters/yozey/front.svg"
  6611. }
  6612. },
  6613. frontAlt: {
  6614. height: math.unit(6, "feet"),
  6615. weight: math.unit(120, "lbs"),
  6616. name: "Front (Alt)",
  6617. image: {
  6618. source: "./media/characters/yozey/front-alt.svg"
  6619. }
  6620. },
  6621. side: {
  6622. height: math.unit(6, "feet"),
  6623. weight: math.unit(120, "lbs"),
  6624. name: "Side",
  6625. image: {
  6626. source: "./media/characters/yozey/side.svg"
  6627. }
  6628. },
  6629. },
  6630. [
  6631. {
  6632. name: "Micro",
  6633. height: math.unit(3, "inches"),
  6634. default: true
  6635. },
  6636. {
  6637. name: "Normal",
  6638. height: math.unit(6, "feet")
  6639. }
  6640. ]
  6641. ))
  6642. characterMakers.push(() => makeCharacter(
  6643. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6644. {
  6645. front: {
  6646. height: math.unit(6, "feet"),
  6647. weight: math.unit(103, "lbs"),
  6648. name: "Front",
  6649. image: {
  6650. source: "./media/characters/valeska-voss/front.svg"
  6651. }
  6652. }
  6653. },
  6654. [
  6655. {
  6656. name: "Mini-Sized Sub",
  6657. height: math.unit(3.1, "inches")
  6658. },
  6659. {
  6660. name: "Mid-Sized Sub",
  6661. height: math.unit(6.2, "inches")
  6662. },
  6663. {
  6664. name: "Full-Sized Sub",
  6665. height: math.unit(9.3, "inches")
  6666. },
  6667. {
  6668. name: "Normal",
  6669. height: math.unit(5 + 2 / 12, "foot"),
  6670. default: true
  6671. },
  6672. ]
  6673. ))
  6674. characterMakers.push(() => makeCharacter(
  6675. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6676. {
  6677. front: {
  6678. height: math.unit(6, "feet"),
  6679. weight: math.unit(160, "lbs"),
  6680. name: "Front",
  6681. image: {
  6682. source: "./media/characters/gene-zeta/front.svg",
  6683. extra: 3006 / 2826,
  6684. bottom: 182 / 3188
  6685. }
  6686. }
  6687. },
  6688. [
  6689. {
  6690. name: "Micro",
  6691. height: math.unit(6, "inches")
  6692. },
  6693. {
  6694. name: "Normal",
  6695. height: math.unit(5 + 11 / 12, "foot"),
  6696. default: true
  6697. },
  6698. {
  6699. name: "Macro",
  6700. height: math.unit(140, "feet")
  6701. },
  6702. {
  6703. name: "Supercharged",
  6704. height: math.unit(2500, "feet")
  6705. },
  6706. ]
  6707. ))
  6708. characterMakers.push(() => makeCharacter(
  6709. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6710. {
  6711. front: {
  6712. height: math.unit(6, "feet"),
  6713. weight: math.unit(350, "lbs"),
  6714. name: "Front",
  6715. image: {
  6716. source: "./media/characters/razinox/front.svg",
  6717. extra: 1686 / 1548,
  6718. bottom: 28.2 / 1868
  6719. }
  6720. },
  6721. back: {
  6722. height: math.unit(6, "feet"),
  6723. weight: math.unit(350, "lbs"),
  6724. name: "Back",
  6725. image: {
  6726. source: "./media/characters/razinox/back.svg",
  6727. extra: 1660 / 1590,
  6728. bottom: 15 / 1665
  6729. }
  6730. },
  6731. },
  6732. [
  6733. {
  6734. name: "Normal",
  6735. height: math.unit(10 + 8 / 12, "foot")
  6736. },
  6737. {
  6738. name: "Minimacro",
  6739. height: math.unit(15, "foot")
  6740. },
  6741. {
  6742. name: "Macro",
  6743. height: math.unit(60, "foot"),
  6744. default: true
  6745. },
  6746. {
  6747. name: "Megamacro",
  6748. height: math.unit(5, "miles")
  6749. },
  6750. {
  6751. name: "Gigamacro",
  6752. height: math.unit(6000, "miles")
  6753. },
  6754. ]
  6755. ))
  6756. characterMakers.push(() => makeCharacter(
  6757. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6758. {
  6759. front: {
  6760. height: math.unit(6, "feet"),
  6761. weight: math.unit(150, "lbs"),
  6762. name: "Front",
  6763. image: {
  6764. source: "./media/characters/cobalt/front.svg"
  6765. }
  6766. }
  6767. },
  6768. [
  6769. {
  6770. name: "Normal",
  6771. height: math.unit(8 + 1 / 12, "foot")
  6772. },
  6773. {
  6774. name: "Macro",
  6775. height: math.unit(111, "foot"),
  6776. default: true
  6777. },
  6778. {
  6779. name: "Supracosmic",
  6780. height: math.unit(1e42, "feet")
  6781. },
  6782. ]
  6783. ))
  6784. characterMakers.push(() => makeCharacter(
  6785. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6786. {
  6787. front: {
  6788. height: math.unit(6, "feet"),
  6789. weight: math.unit(140, "lbs"),
  6790. name: "Front",
  6791. image: {
  6792. source: "./media/characters/amanda/front.svg"
  6793. }
  6794. }
  6795. },
  6796. [
  6797. {
  6798. name: "Micro",
  6799. height: math.unit(5, "inches"),
  6800. default: true
  6801. },
  6802. ]
  6803. ))
  6804. characterMakers.push(() => makeCharacter(
  6805. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6806. {
  6807. front: {
  6808. height: math.unit(2.75, "meters"),
  6809. weight: math.unit(1200, "lb"),
  6810. name: "Front",
  6811. image: {
  6812. source: "./media/characters/teal/front.svg",
  6813. extra: 2463 / 2320,
  6814. bottom: 166 / 2629
  6815. }
  6816. },
  6817. back: {
  6818. height: math.unit(2.75, "meters"),
  6819. weight: math.unit(1200, "lb"),
  6820. name: "Back",
  6821. image: {
  6822. source: "./media/characters/teal/back.svg",
  6823. extra: 2580 / 2489,
  6824. bottom: 151 / 2731
  6825. }
  6826. },
  6827. sitting: {
  6828. height: math.unit(1.9, "meters"),
  6829. weight: math.unit(1200, "lb"),
  6830. name: "Sitting",
  6831. image: {
  6832. source: "./media/characters/teal/sitting.svg",
  6833. extra: 623 / 590,
  6834. bottom: 121 / 744
  6835. }
  6836. },
  6837. standing: {
  6838. height: math.unit(2.75, "meters"),
  6839. weight: math.unit(1200, "lb"),
  6840. name: "Standing",
  6841. image: {
  6842. source: "./media/characters/teal/standing.svg",
  6843. extra: 923 / 893,
  6844. bottom: 60 / 983
  6845. }
  6846. },
  6847. stretching: {
  6848. height: math.unit(3.65, "meters"),
  6849. weight: math.unit(1200, "lb"),
  6850. name: "Stretching",
  6851. image: {
  6852. source: "./media/characters/teal/stretching.svg",
  6853. extra: 1276 / 1244,
  6854. bottom: 0 / 1276
  6855. }
  6856. },
  6857. legged: {
  6858. height: math.unit(1.3, "meters"),
  6859. weight: math.unit(100, "lb"),
  6860. name: "Legged",
  6861. image: {
  6862. source: "./media/characters/teal/legged.svg",
  6863. extra: 462 / 437,
  6864. bottom: 24 / 486
  6865. }
  6866. },
  6867. naga: {
  6868. height: math.unit(5.4, "meters"),
  6869. weight: math.unit(4000, "lb"),
  6870. name: "Naga",
  6871. image: {
  6872. source: "./media/characters/teal/naga.svg",
  6873. extra: 1902 / 1858,
  6874. bottom: 0 / 1902
  6875. }
  6876. },
  6877. hand: {
  6878. height: math.unit(0.52, "meters"),
  6879. name: "Hand",
  6880. image: {
  6881. source: "./media/characters/teal/hand.svg"
  6882. }
  6883. },
  6884. maw: {
  6885. height: math.unit(0.43, "meters"),
  6886. name: "Maw",
  6887. image: {
  6888. source: "./media/characters/teal/maw.svg"
  6889. }
  6890. },
  6891. slit: {
  6892. height: math.unit(0.25, "meters"),
  6893. name: "Slit",
  6894. image: {
  6895. source: "./media/characters/teal/slit.svg"
  6896. }
  6897. },
  6898. },
  6899. [
  6900. {
  6901. name: "Normal",
  6902. height: math.unit(2.75, "meters"),
  6903. default: true
  6904. },
  6905. {
  6906. name: "Macro",
  6907. height: math.unit(300, "feet")
  6908. },
  6909. {
  6910. name: "Macro+",
  6911. height: math.unit(2000, "feet")
  6912. },
  6913. ]
  6914. ))
  6915. characterMakers.push(() => makeCharacter(
  6916. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6917. {
  6918. frontCat: {
  6919. height: math.unit(6, "feet"),
  6920. weight: math.unit(180, "lbs"),
  6921. name: "Front (Cat)",
  6922. image: {
  6923. source: "./media/characters/ravin-amulet/front-cat.svg"
  6924. }
  6925. },
  6926. frontCatAlt: {
  6927. height: math.unit(6, "feet"),
  6928. weight: math.unit(180, "lbs"),
  6929. name: "Front (Alt, Cat)",
  6930. image: {
  6931. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6932. }
  6933. },
  6934. frontWerewolf: {
  6935. height: math.unit(6 * 1.2, "feet"),
  6936. weight: math.unit(225, "lbs"),
  6937. name: "Front (Werewolf)",
  6938. image: {
  6939. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6940. }
  6941. },
  6942. backWerewolf: {
  6943. height: math.unit(6 * 1.2, "feet"),
  6944. weight: math.unit(225, "lbs"),
  6945. name: "Back (Werewolf)",
  6946. image: {
  6947. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6948. }
  6949. },
  6950. },
  6951. [
  6952. {
  6953. name: "Nano",
  6954. height: math.unit(1, "micrometer")
  6955. },
  6956. {
  6957. name: "Micro",
  6958. height: math.unit(1, "inch")
  6959. },
  6960. {
  6961. name: "Normal",
  6962. height: math.unit(6, "feet"),
  6963. default: true
  6964. },
  6965. {
  6966. name: "Macro",
  6967. height: math.unit(60, "feet")
  6968. }
  6969. ]
  6970. ))
  6971. characterMakers.push(() => makeCharacter(
  6972. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6973. {
  6974. front: {
  6975. height: math.unit(6, "feet"),
  6976. weight: math.unit(165, "lbs"),
  6977. name: "Front",
  6978. image: {
  6979. source: "./media/characters/fluoresce/front.svg"
  6980. }
  6981. }
  6982. },
  6983. [
  6984. {
  6985. name: "Micro",
  6986. height: math.unit(6, "cm")
  6987. },
  6988. {
  6989. name: "Normal",
  6990. height: math.unit(5 + 7 / 12, "feet"),
  6991. default: true
  6992. },
  6993. {
  6994. name: "Macro",
  6995. height: math.unit(56, "feet")
  6996. },
  6997. {
  6998. name: "Megamacro",
  6999. height: math.unit(1.9, "miles")
  7000. },
  7001. ]
  7002. ))
  7003. characterMakers.push(() => makeCharacter(
  7004. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7005. {
  7006. front: {
  7007. height: math.unit(9 + 6 / 12, "feet"),
  7008. weight: math.unit(523, "lbs"),
  7009. name: "Side",
  7010. image: {
  7011. source: "./media/characters/aurora/side.svg"
  7012. }
  7013. }
  7014. },
  7015. [
  7016. {
  7017. name: "Normal",
  7018. height: math.unit(9 + 6 / 12, "feet")
  7019. },
  7020. {
  7021. name: "Macro",
  7022. height: math.unit(96, "feet"),
  7023. default: true
  7024. },
  7025. {
  7026. name: "Macro+",
  7027. height: math.unit(243, "feet")
  7028. },
  7029. ]
  7030. ))
  7031. characterMakers.push(() => makeCharacter(
  7032. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7033. {
  7034. front: {
  7035. height: math.unit(194, "cm"),
  7036. weight: math.unit(90, "kg"),
  7037. name: "Front",
  7038. image: {
  7039. source: "./media/characters/ranek/front.svg"
  7040. }
  7041. },
  7042. side: {
  7043. height: math.unit(194, "cm"),
  7044. weight: math.unit(90, "kg"),
  7045. name: "Side",
  7046. image: {
  7047. source: "./media/characters/ranek/side.svg"
  7048. }
  7049. },
  7050. back: {
  7051. height: math.unit(194, "cm"),
  7052. weight: math.unit(90, "kg"),
  7053. name: "Back",
  7054. image: {
  7055. source: "./media/characters/ranek/back.svg"
  7056. }
  7057. },
  7058. feral: {
  7059. height: math.unit(30, "cm"),
  7060. weight: math.unit(1.6, "lbs"),
  7061. name: "Feral",
  7062. image: {
  7063. source: "./media/characters/ranek/feral.svg"
  7064. }
  7065. },
  7066. },
  7067. [
  7068. {
  7069. name: "Normal",
  7070. height: math.unit(194, "cm"),
  7071. default: true
  7072. },
  7073. {
  7074. name: "Macro",
  7075. height: math.unit(100, "meters")
  7076. },
  7077. ]
  7078. ))
  7079. characterMakers.push(() => makeCharacter(
  7080. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7081. {
  7082. front: {
  7083. height: math.unit(5 + 6 / 12, "feet"),
  7084. weight: math.unit(153, "lbs"),
  7085. name: "Front",
  7086. image: {
  7087. source: "./media/characters/andrew-cooper/front.svg"
  7088. }
  7089. },
  7090. },
  7091. [
  7092. {
  7093. name: "Nano",
  7094. height: math.unit(1, "mm")
  7095. },
  7096. {
  7097. name: "Micro",
  7098. height: math.unit(2, "inches")
  7099. },
  7100. {
  7101. name: "Normal",
  7102. height: math.unit(5 + 6 / 12, "feet"),
  7103. default: true
  7104. }
  7105. ]
  7106. ))
  7107. characterMakers.push(() => makeCharacter(
  7108. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7109. {
  7110. front: {
  7111. height: math.unit(6, "feet"),
  7112. weight: math.unit(180, "lbs"),
  7113. name: "Front",
  7114. image: {
  7115. source: "./media/characters/akane-sato/front.svg",
  7116. extra: 1219 / 1140
  7117. }
  7118. },
  7119. back: {
  7120. height: math.unit(6, "feet"),
  7121. weight: math.unit(180, "lbs"),
  7122. name: "Back",
  7123. image: {
  7124. source: "./media/characters/akane-sato/back.svg",
  7125. extra: 1219 / 1170
  7126. }
  7127. },
  7128. },
  7129. [
  7130. {
  7131. name: "Normal",
  7132. height: math.unit(2.5, "meters")
  7133. },
  7134. {
  7135. name: "Macro",
  7136. height: math.unit(250, "meters"),
  7137. default: true
  7138. },
  7139. {
  7140. name: "Megamacro",
  7141. height: math.unit(25, "km")
  7142. },
  7143. ]
  7144. ))
  7145. characterMakers.push(() => makeCharacter(
  7146. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7147. {
  7148. front: {
  7149. height: math.unit(6, "feet"),
  7150. weight: math.unit(65, "kg"),
  7151. name: "Front",
  7152. image: {
  7153. source: "./media/characters/rook/front.svg",
  7154. extra: 960 / 950
  7155. }
  7156. }
  7157. },
  7158. [
  7159. {
  7160. name: "Normal",
  7161. height: math.unit(8.8, "feet")
  7162. },
  7163. {
  7164. name: "Macro",
  7165. height: math.unit(88, "feet"),
  7166. default: true
  7167. },
  7168. {
  7169. name: "Megamacro",
  7170. height: math.unit(8, "miles")
  7171. },
  7172. ]
  7173. ))
  7174. characterMakers.push(() => makeCharacter(
  7175. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7176. {
  7177. front: {
  7178. height: math.unit(12 + 2 / 12, "feet"),
  7179. weight: math.unit(808, "lbs"),
  7180. name: "Front",
  7181. image: {
  7182. source: "./media/characters/prodigy/front.svg"
  7183. }
  7184. }
  7185. },
  7186. [
  7187. {
  7188. name: "Normal",
  7189. height: math.unit(12 + 2 / 12, "feet"),
  7190. default: true
  7191. },
  7192. {
  7193. name: "Macro",
  7194. height: math.unit(143, "feet")
  7195. },
  7196. {
  7197. name: "Macro+",
  7198. height: math.unit(400, "feet")
  7199. },
  7200. ]
  7201. ))
  7202. characterMakers.push(() => makeCharacter(
  7203. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7204. {
  7205. front: {
  7206. height: math.unit(6, "feet"),
  7207. weight: math.unit(225, "lbs"),
  7208. name: "Front",
  7209. image: {
  7210. source: "./media/characters/daniel/front.svg"
  7211. }
  7212. },
  7213. leaning: {
  7214. height: math.unit(6, "feet"),
  7215. weight: math.unit(225, "lbs"),
  7216. name: "Leaning",
  7217. image: {
  7218. source: "./media/characters/daniel/leaning.svg"
  7219. }
  7220. },
  7221. },
  7222. [
  7223. {
  7224. name: "Macro",
  7225. height: math.unit(1000, "feet"),
  7226. default: true
  7227. },
  7228. ]
  7229. ))
  7230. characterMakers.push(() => makeCharacter(
  7231. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7232. {
  7233. front: {
  7234. height: math.unit(6, "feet"),
  7235. weight: math.unit(88, "lbs"),
  7236. name: "Front",
  7237. image: {
  7238. source: "./media/characters/chiros/front.svg",
  7239. extra: 306 / 226
  7240. }
  7241. },
  7242. side: {
  7243. height: math.unit(6, "feet"),
  7244. weight: math.unit(88, "lbs"),
  7245. name: "Side",
  7246. image: {
  7247. source: "./media/characters/chiros/side.svg",
  7248. extra: 306 / 226
  7249. }
  7250. },
  7251. },
  7252. [
  7253. {
  7254. name: "Normal",
  7255. height: math.unit(6, "cm"),
  7256. default: true
  7257. },
  7258. ]
  7259. ))
  7260. characterMakers.push(() => makeCharacter(
  7261. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7262. {
  7263. front: {
  7264. height: math.unit(6, "feet"),
  7265. weight: math.unit(100, "lbs"),
  7266. name: "Front",
  7267. image: {
  7268. source: "./media/characters/selka/front.svg",
  7269. extra: 947 / 887
  7270. }
  7271. }
  7272. },
  7273. [
  7274. {
  7275. name: "Normal",
  7276. height: math.unit(5, "cm"),
  7277. default: true
  7278. },
  7279. ]
  7280. ))
  7281. characterMakers.push(() => makeCharacter(
  7282. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7283. {
  7284. front: {
  7285. height: math.unit(8 + 3 / 12, "feet"),
  7286. weight: math.unit(424, "lbs"),
  7287. name: "Front",
  7288. image: {
  7289. source: "./media/characters/verin/front.svg",
  7290. extra: 1845 / 1550
  7291. }
  7292. },
  7293. frontArmored: {
  7294. height: math.unit(8 + 3 / 12, "feet"),
  7295. weight: math.unit(424, "lbs"),
  7296. name: "Front (Armored)",
  7297. image: {
  7298. source: "./media/characters/verin/front-armor.svg",
  7299. extra: 1845 / 1550,
  7300. bottom: 0.01
  7301. }
  7302. },
  7303. back: {
  7304. height: math.unit(8 + 3 / 12, "feet"),
  7305. weight: math.unit(424, "lbs"),
  7306. name: "Back",
  7307. image: {
  7308. source: "./media/characters/verin/back.svg",
  7309. bottom: 0.1,
  7310. extra: 1
  7311. }
  7312. },
  7313. foot: {
  7314. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7315. name: "Foot",
  7316. image: {
  7317. source: "./media/characters/verin/foot.svg"
  7318. }
  7319. },
  7320. },
  7321. [
  7322. {
  7323. name: "Normal",
  7324. height: math.unit(8 + 3 / 12, "feet")
  7325. },
  7326. {
  7327. name: "Minimacro",
  7328. height: math.unit(21, "feet"),
  7329. default: true
  7330. },
  7331. {
  7332. name: "Macro",
  7333. height: math.unit(626, "feet")
  7334. },
  7335. ]
  7336. ))
  7337. characterMakers.push(() => makeCharacter(
  7338. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7339. {
  7340. front: {
  7341. height: math.unit(2.718, "meters"),
  7342. weight: math.unit(150, "lbs"),
  7343. name: "Front",
  7344. image: {
  7345. source: "./media/characters/sovrim-terraquian/front.svg"
  7346. }
  7347. },
  7348. back: {
  7349. height: math.unit(2.718, "meters"),
  7350. weight: math.unit(150, "lbs"),
  7351. name: "Back",
  7352. image: {
  7353. source: "./media/characters/sovrim-terraquian/back.svg"
  7354. }
  7355. }
  7356. },
  7357. [
  7358. {
  7359. name: "Micro",
  7360. height: math.unit(2, "inches")
  7361. },
  7362. {
  7363. name: "Small",
  7364. height: math.unit(1, "meter")
  7365. },
  7366. {
  7367. name: "Normal",
  7368. height: math.unit(Math.E, "meters"),
  7369. default: true
  7370. },
  7371. {
  7372. name: "Macro",
  7373. height: math.unit(20, "meters")
  7374. },
  7375. {
  7376. name: "Macro+",
  7377. height: math.unit(400, "meters")
  7378. },
  7379. ]
  7380. ))
  7381. characterMakers.push(() => makeCharacter(
  7382. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7383. {
  7384. front: {
  7385. height: math.unit(7, "feet"),
  7386. weight: math.unit(489, "lbs"),
  7387. name: "Front",
  7388. image: {
  7389. source: "./media/characters/reece-silvermane/front.svg",
  7390. bottom: 0.02,
  7391. extra: 1
  7392. }
  7393. },
  7394. },
  7395. [
  7396. {
  7397. name: "Macro",
  7398. height: math.unit(1.5, "miles"),
  7399. default: true
  7400. },
  7401. ]
  7402. ))
  7403. characterMakers.push(() => makeCharacter(
  7404. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7405. {
  7406. front: {
  7407. height: math.unit(6, "feet"),
  7408. weight: math.unit(78, "kg"),
  7409. name: "Front",
  7410. image: {
  7411. source: "./media/characters/kane/front.svg",
  7412. extra: 978 / 899
  7413. }
  7414. },
  7415. },
  7416. [
  7417. {
  7418. name: "Normal",
  7419. height: math.unit(2.1, "m"),
  7420. },
  7421. {
  7422. name: "Macro",
  7423. height: math.unit(1, "km"),
  7424. default: true
  7425. },
  7426. ]
  7427. ))
  7428. characterMakers.push(() => makeCharacter(
  7429. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7430. {
  7431. front: {
  7432. height: math.unit(6, "feet"),
  7433. weight: math.unit(200, "kg"),
  7434. name: "Front",
  7435. image: {
  7436. source: "./media/characters/tegon/front.svg",
  7437. bottom: 0.01,
  7438. extra: 1
  7439. }
  7440. },
  7441. },
  7442. [
  7443. {
  7444. name: "Micro",
  7445. height: math.unit(1, "inch")
  7446. },
  7447. {
  7448. name: "Normal",
  7449. height: math.unit(6 + 3 / 12, "feet"),
  7450. default: true
  7451. },
  7452. {
  7453. name: "Macro",
  7454. height: math.unit(300, "feet")
  7455. },
  7456. {
  7457. name: "Megamacro",
  7458. height: math.unit(69, "miles")
  7459. },
  7460. ]
  7461. ))
  7462. characterMakers.push(() => makeCharacter(
  7463. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7464. {
  7465. side: {
  7466. height: math.unit(6, "feet"),
  7467. weight: math.unit(2304, "lbs"),
  7468. name: "Side",
  7469. image: {
  7470. source: "./media/characters/arcturax/side.svg",
  7471. extra: 790 / 376,
  7472. bottom: 0.01
  7473. }
  7474. },
  7475. },
  7476. [
  7477. {
  7478. name: "Micro",
  7479. height: math.unit(2, "inch")
  7480. },
  7481. {
  7482. name: "Normal",
  7483. height: math.unit(6, "feet")
  7484. },
  7485. {
  7486. name: "Macro",
  7487. height: math.unit(39, "feet"),
  7488. default: true
  7489. },
  7490. {
  7491. name: "Megamacro",
  7492. height: math.unit(7, "miles")
  7493. },
  7494. ]
  7495. ))
  7496. characterMakers.push(() => makeCharacter(
  7497. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7498. {
  7499. front: {
  7500. height: math.unit(6, "feet"),
  7501. weight: math.unit(50, "lbs"),
  7502. name: "Front",
  7503. image: {
  7504. source: "./media/characters/sentri/front.svg",
  7505. extra: 1750 / 1570,
  7506. bottom: 0.025
  7507. }
  7508. },
  7509. frontAlt: {
  7510. height: math.unit(6, "feet"),
  7511. weight: math.unit(50, "lbs"),
  7512. name: "Front (Alt)",
  7513. image: {
  7514. source: "./media/characters/sentri/front-alt.svg",
  7515. extra: 1750 / 1570,
  7516. bottom: 0.025
  7517. }
  7518. },
  7519. },
  7520. [
  7521. {
  7522. name: "Normal",
  7523. height: math.unit(15, "feet"),
  7524. default: true
  7525. },
  7526. {
  7527. name: "Macro",
  7528. height: math.unit(2500, "feet")
  7529. }
  7530. ]
  7531. ))
  7532. characterMakers.push(() => makeCharacter(
  7533. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7534. {
  7535. front: {
  7536. height: math.unit(5 + 8 / 12, "feet"),
  7537. weight: math.unit(130, "lbs"),
  7538. name: "Front",
  7539. image: {
  7540. source: "./media/characters/corvin/front.svg",
  7541. extra: 1803 / 1629
  7542. }
  7543. },
  7544. frontShirt: {
  7545. height: math.unit(5 + 8 / 12, "feet"),
  7546. weight: math.unit(130, "lbs"),
  7547. name: "Front (Shirt)",
  7548. image: {
  7549. source: "./media/characters/corvin/front-shirt.svg",
  7550. extra: 1803 / 1629
  7551. }
  7552. },
  7553. frontPoncho: {
  7554. height: math.unit(5 + 8 / 12, "feet"),
  7555. weight: math.unit(130, "lbs"),
  7556. name: "Front (Poncho)",
  7557. image: {
  7558. source: "./media/characters/corvin/front-poncho.svg",
  7559. extra: 1803 / 1629
  7560. }
  7561. },
  7562. side: {
  7563. height: math.unit(5 + 8 / 12, "feet"),
  7564. weight: math.unit(130, "lbs"),
  7565. name: "Side",
  7566. image: {
  7567. source: "./media/characters/corvin/side.svg",
  7568. extra: 1012 / 945
  7569. }
  7570. },
  7571. back: {
  7572. height: math.unit(5 + 8 / 12, "feet"),
  7573. weight: math.unit(130, "lbs"),
  7574. name: "Back",
  7575. image: {
  7576. source: "./media/characters/corvin/back.svg",
  7577. extra: 1803 / 1629
  7578. }
  7579. },
  7580. },
  7581. [
  7582. {
  7583. name: "Micro",
  7584. height: math.unit(3, "inches")
  7585. },
  7586. {
  7587. name: "Normal",
  7588. height: math.unit(5 + 8 / 12, "feet")
  7589. },
  7590. {
  7591. name: "Macro",
  7592. height: math.unit(300, "feet"),
  7593. default: true
  7594. },
  7595. {
  7596. name: "Megamacro",
  7597. height: math.unit(500, "miles")
  7598. }
  7599. ]
  7600. ))
  7601. characterMakers.push(() => makeCharacter(
  7602. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7603. {
  7604. front: {
  7605. height: math.unit(6, "feet"),
  7606. weight: math.unit(135, "lbs"),
  7607. name: "Front",
  7608. image: {
  7609. source: "./media/characters/q/front.svg",
  7610. extra: 854 / 752,
  7611. bottom: 0.005
  7612. }
  7613. },
  7614. back: {
  7615. height: math.unit(6, "feet"),
  7616. weight: math.unit(130, "lbs"),
  7617. name: "Back",
  7618. image: {
  7619. source: "./media/characters/q/back.svg",
  7620. extra: 854 / 752
  7621. }
  7622. },
  7623. },
  7624. [
  7625. {
  7626. name: "Macro",
  7627. height: math.unit(90, "feet"),
  7628. default: true
  7629. },
  7630. {
  7631. name: "Extra Macro",
  7632. height: math.unit(300, "feet"),
  7633. },
  7634. {
  7635. name: "BIG WALF",
  7636. height: math.unit(750, "feet"),
  7637. },
  7638. ]
  7639. ))
  7640. characterMakers.push(() => makeCharacter(
  7641. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7642. {
  7643. front: {
  7644. height: math.unit(6, "feet"),
  7645. weight: math.unit(150, "lbs"),
  7646. name: "Front",
  7647. image: {
  7648. source: "./media/characters/carley/front.svg",
  7649. extra: 3927 / 3540,
  7650. bottom: 29.2 / 735
  7651. }
  7652. }
  7653. },
  7654. [
  7655. {
  7656. name: "Normal",
  7657. height: math.unit(6 + 3 / 12, "feet")
  7658. },
  7659. {
  7660. name: "Macro",
  7661. height: math.unit(185, "feet"),
  7662. default: true
  7663. },
  7664. {
  7665. name: "Megamacro",
  7666. height: math.unit(8, "miles"),
  7667. },
  7668. ]
  7669. ))
  7670. characterMakers.push(() => makeCharacter(
  7671. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7672. {
  7673. front: {
  7674. height: math.unit(3, "feet"),
  7675. weight: math.unit(28, "lbs"),
  7676. name: "Front",
  7677. image: {
  7678. source: "./media/characters/citrine/front.svg"
  7679. }
  7680. }
  7681. },
  7682. [
  7683. {
  7684. name: "Normal",
  7685. height: math.unit(3, "feet"),
  7686. default: true
  7687. }
  7688. ]
  7689. ))
  7690. characterMakers.push(() => makeCharacter(
  7691. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7692. {
  7693. front: {
  7694. height: math.unit(14, "feet"),
  7695. weight: math.unit(1450, "kg"),
  7696. capacity: math.unit(15, "people"),
  7697. name: "Front",
  7698. image: {
  7699. source: "./media/characters/aura-starwind/front.svg",
  7700. extra: 1455 / 1335
  7701. }
  7702. },
  7703. side: {
  7704. height: math.unit(14, "feet"),
  7705. weight: math.unit(1450, "kg"),
  7706. capacity: math.unit(15, "people"),
  7707. name: "Side",
  7708. image: {
  7709. source: "./media/characters/aura-starwind/side.svg",
  7710. extra: 1654 / 1497
  7711. }
  7712. },
  7713. taur: {
  7714. height: math.unit(18, "feet"),
  7715. weight: math.unit(5500, "kg"),
  7716. capacity: math.unit(50, "people"),
  7717. name: "Taur",
  7718. image: {
  7719. source: "./media/characters/aura-starwind/taur.svg",
  7720. extra: 1760 / 1650
  7721. }
  7722. },
  7723. feral: {
  7724. height: math.unit(46, "feet"),
  7725. weight: math.unit(25000, "kg"),
  7726. capacity: math.unit(120, "people"),
  7727. name: "Feral",
  7728. image: {
  7729. source: "./media/characters/aura-starwind/feral.svg"
  7730. }
  7731. },
  7732. },
  7733. [
  7734. {
  7735. name: "Normal",
  7736. height: math.unit(14, "feet"),
  7737. default: true
  7738. },
  7739. {
  7740. name: "Macro",
  7741. height: math.unit(50, "meters")
  7742. },
  7743. {
  7744. name: "Megamacro",
  7745. height: math.unit(5000, "meters")
  7746. },
  7747. {
  7748. name: "Gigamacro",
  7749. height: math.unit(100000, "kilometers")
  7750. },
  7751. ]
  7752. ))
  7753. characterMakers.push(() => makeCharacter(
  7754. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7755. {
  7756. front: {
  7757. height: math.unit(2 + 7 / 12, "feet"),
  7758. weight: math.unit(32, "lbs"),
  7759. name: "Front",
  7760. image: {
  7761. source: "./media/characters/rivet/front.svg",
  7762. extra: 1716 / 1658,
  7763. bottom: 0.03
  7764. }
  7765. },
  7766. foot: {
  7767. height: math.unit(0.551, "feet"),
  7768. name: "Rivet's Foot",
  7769. image: {
  7770. source: "./media/characters/rivet/foot.svg"
  7771. },
  7772. rename: true
  7773. }
  7774. },
  7775. [
  7776. {
  7777. name: "Micro",
  7778. height: math.unit(1.5, "inches"),
  7779. },
  7780. {
  7781. name: "Normal",
  7782. height: math.unit(2 + 7 / 12, "feet"),
  7783. default: true
  7784. },
  7785. {
  7786. name: "Macro",
  7787. height: math.unit(85, "feet")
  7788. },
  7789. {
  7790. name: "Megamacro",
  7791. height: math.unit(2.2, "km")
  7792. }
  7793. ]
  7794. ))
  7795. characterMakers.push(() => makeCharacter(
  7796. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7797. {
  7798. front: {
  7799. height: math.unit(5 + 9 / 12, "feet"),
  7800. weight: math.unit(150, "lbs"),
  7801. name: "Front",
  7802. image: {
  7803. source: "./media/characters/coffee/front.svg",
  7804. extra: 3666 / 3032,
  7805. bottom: 0.04
  7806. }
  7807. },
  7808. foot: {
  7809. height: math.unit(1.29, "feet"),
  7810. name: "Foot",
  7811. image: {
  7812. source: "./media/characters/coffee/foot.svg"
  7813. }
  7814. },
  7815. },
  7816. [
  7817. {
  7818. name: "Micro",
  7819. height: math.unit(2, "inches"),
  7820. },
  7821. {
  7822. name: "Normal",
  7823. height: math.unit(5 + 9 / 12, "feet"),
  7824. default: true
  7825. },
  7826. {
  7827. name: "Macro",
  7828. height: math.unit(800, "feet")
  7829. },
  7830. {
  7831. name: "Megamacro",
  7832. height: math.unit(25, "miles")
  7833. }
  7834. ]
  7835. ))
  7836. characterMakers.push(() => makeCharacter(
  7837. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7838. {
  7839. front: {
  7840. height: math.unit(6, "feet"),
  7841. weight: math.unit(200, "lbs"),
  7842. name: "Front",
  7843. image: {
  7844. source: "./media/characters/chari-gal/front.svg",
  7845. extra: 1568 / 1385,
  7846. bottom: 0.047
  7847. }
  7848. },
  7849. gigantamax: {
  7850. height: math.unit(6 * 16, "feet"),
  7851. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7852. name: "Gigantamax",
  7853. image: {
  7854. source: "./media/characters/chari-gal/gigantamax.svg",
  7855. extra: 1124 / 888,
  7856. bottom: 0.03
  7857. }
  7858. },
  7859. },
  7860. [
  7861. {
  7862. name: "Normal",
  7863. height: math.unit(5 + 7 / 12, "feet")
  7864. },
  7865. {
  7866. name: "Macro",
  7867. height: math.unit(200, "feet"),
  7868. default: true
  7869. }
  7870. ]
  7871. ))
  7872. characterMakers.push(() => makeCharacter(
  7873. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7874. {
  7875. front: {
  7876. height: math.unit(6, "feet"),
  7877. weight: math.unit(150, "lbs"),
  7878. name: "Front",
  7879. image: {
  7880. source: "./media/characters/nova/front.svg",
  7881. extra: 5000 / 4722,
  7882. bottom: 0.02
  7883. }
  7884. }
  7885. },
  7886. [
  7887. {
  7888. name: "Micro-",
  7889. height: math.unit(0.8, "inches")
  7890. },
  7891. {
  7892. name: "Micro",
  7893. height: math.unit(2, "inches"),
  7894. default: true
  7895. },
  7896. ]
  7897. ))
  7898. characterMakers.push(() => makeCharacter(
  7899. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7900. {
  7901. front: {
  7902. height: math.unit(3 + 1 / 12, "feet"),
  7903. weight: math.unit(21.7, "lbs"),
  7904. name: "Front",
  7905. image: {
  7906. source: "./media/characters/argent/front.svg",
  7907. extra: 1471 / 1331,
  7908. bottom: 100.8 / 1575.5
  7909. }
  7910. }
  7911. },
  7912. [
  7913. {
  7914. name: "Micro",
  7915. height: math.unit(2, "inches")
  7916. },
  7917. {
  7918. name: "Normal",
  7919. height: math.unit(3 + 1 / 12, "feet"),
  7920. default: true
  7921. },
  7922. {
  7923. name: "Macro",
  7924. height: math.unit(120, "feet")
  7925. },
  7926. ]
  7927. ))
  7928. characterMakers.push(() => makeCharacter(
  7929. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7930. {
  7931. lamp: {
  7932. height: math.unit(7 * 1559 / 989, "feet"),
  7933. name: "Magic Lamp",
  7934. image: {
  7935. source: "./media/characters/mira-al-cul/lamp.svg",
  7936. extra: 1617 / 1559
  7937. }
  7938. },
  7939. front: {
  7940. height: math.unit(7, "feet"),
  7941. name: "Front",
  7942. image: {
  7943. source: "./media/characters/mira-al-cul/front.svg",
  7944. extra: 1044 / 990
  7945. }
  7946. },
  7947. },
  7948. [
  7949. {
  7950. name: "Heavily Restricted",
  7951. height: math.unit(7 * 1559 / 989, "feet")
  7952. },
  7953. {
  7954. name: "Freshly Freed",
  7955. height: math.unit(50 * 1559 / 989, "feet")
  7956. },
  7957. {
  7958. name: "World Encompassing",
  7959. height: math.unit(10000 * 1559 / 989, "miles")
  7960. },
  7961. {
  7962. name: "Galactic",
  7963. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7964. },
  7965. {
  7966. name: "Palmed Universe",
  7967. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7968. default: true
  7969. },
  7970. {
  7971. name: "Multiversal Matriarch",
  7972. height: math.unit(8.87e10, "yottameters")
  7973. },
  7974. {
  7975. name: "Void Mother",
  7976. height: math.unit(3.14e110, "yottaparsecs")
  7977. },
  7978. {
  7979. name: "Toying with Transcendence",
  7980. height: math.unit(1e307, "meters")
  7981. },
  7982. ]
  7983. ))
  7984. characterMakers.push(() => makeCharacter(
  7985. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7986. {
  7987. front: {
  7988. height: math.unit(17 + 1 / 12, "feet"),
  7989. weight: math.unit(476.2 * 5, "lbs"),
  7990. name: "Front",
  7991. image: {
  7992. source: "./media/characters/kuro-shi-uchū/front.svg",
  7993. extra: 2329 / 1835,
  7994. bottom: 0.02
  7995. }
  7996. },
  7997. },
  7998. [
  7999. {
  8000. name: "Micro",
  8001. height: math.unit(2, "inches")
  8002. },
  8003. {
  8004. name: "Normal",
  8005. height: math.unit(12, "meters")
  8006. },
  8007. {
  8008. name: "Planetary",
  8009. height: math.unit(0.00929, "AU"),
  8010. default: true
  8011. },
  8012. {
  8013. name: "Universal",
  8014. height: math.unit(20, "gigaparsecs")
  8015. },
  8016. ]
  8017. ))
  8018. characterMakers.push(() => makeCharacter(
  8019. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8020. {
  8021. front: {
  8022. height: math.unit(5 + 2 / 12, "feet"),
  8023. weight: math.unit(120, "lbs"),
  8024. name: "Front",
  8025. image: {
  8026. source: "./media/characters/katherine/front.svg",
  8027. extra: 2075 / 1969
  8028. }
  8029. },
  8030. dress: {
  8031. height: math.unit(5 + 2 / 12, "feet"),
  8032. weight: math.unit(120, "lbs"),
  8033. name: "Dress",
  8034. image: {
  8035. source: "./media/characters/katherine/dress.svg",
  8036. extra: 2258 / 2064
  8037. }
  8038. },
  8039. },
  8040. [
  8041. {
  8042. name: "Micro",
  8043. height: math.unit(1, "inches"),
  8044. default: true
  8045. },
  8046. {
  8047. name: "Normal",
  8048. height: math.unit(5 + 2 / 12, "feet")
  8049. },
  8050. {
  8051. name: "Macro",
  8052. height: math.unit(100, "meters")
  8053. },
  8054. {
  8055. name: "Megamacro",
  8056. height: math.unit(80, "miles")
  8057. },
  8058. ]
  8059. ))
  8060. characterMakers.push(() => makeCharacter(
  8061. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8062. {
  8063. front: {
  8064. height: math.unit(7 + 8 / 12, "feet"),
  8065. weight: math.unit(250, "lbs"),
  8066. name: "Front",
  8067. image: {
  8068. source: "./media/characters/yevis/front.svg",
  8069. extra: 1938 / 1755
  8070. }
  8071. }
  8072. },
  8073. [
  8074. {
  8075. name: "Mortal",
  8076. height: math.unit(7 + 8 / 12, "feet")
  8077. },
  8078. {
  8079. name: "Battle",
  8080. height: math.unit(25 + 11 / 12, "feet")
  8081. },
  8082. {
  8083. name: "Wrath",
  8084. height: math.unit(1654 + 11 / 12, "feet")
  8085. },
  8086. {
  8087. name: "Planet Destroyer",
  8088. height: math.unit(12000, "miles")
  8089. },
  8090. {
  8091. name: "Galaxy Conqueror",
  8092. height: math.unit(1.45, "zettameters"),
  8093. default: true
  8094. },
  8095. {
  8096. name: "Universal War",
  8097. height: math.unit(184, "gigaparsecs")
  8098. },
  8099. {
  8100. name: "Eternity War",
  8101. height: math.unit(1.98e55, "yottaparsecs")
  8102. },
  8103. ]
  8104. ))
  8105. characterMakers.push(() => makeCharacter(
  8106. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8107. {
  8108. front: {
  8109. height: math.unit(5 + 8 / 12, "feet"),
  8110. weight: math.unit(63, "kg"),
  8111. name: "Front",
  8112. image: {
  8113. source: "./media/characters/xavier/front.svg",
  8114. extra: 944 / 883
  8115. }
  8116. },
  8117. frontStretch: {
  8118. height: math.unit(5 + 8 / 12, "feet"),
  8119. weight: math.unit(63, "kg"),
  8120. name: "Stretching",
  8121. image: {
  8122. source: "./media/characters/xavier/front-stretch.svg",
  8123. extra: 962 / 820
  8124. }
  8125. },
  8126. },
  8127. [
  8128. {
  8129. name: "Normal",
  8130. height: math.unit(5 + 8 / 12, "feet")
  8131. },
  8132. {
  8133. name: "Macro",
  8134. height: math.unit(100, "meters"),
  8135. default: true
  8136. },
  8137. {
  8138. name: "McLargeHuge",
  8139. height: math.unit(10, "miles")
  8140. },
  8141. ]
  8142. ))
  8143. characterMakers.push(() => makeCharacter(
  8144. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8145. {
  8146. front: {
  8147. height: math.unit(5 + 5 / 12, "feet"),
  8148. weight: math.unit(150, "lb"),
  8149. name: "Front",
  8150. image: {
  8151. source: "./media/characters/joshii/front.svg",
  8152. extra: 765 / 653,
  8153. bottom: 51 / 816
  8154. }
  8155. },
  8156. foot: {
  8157. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8158. name: "Foot",
  8159. image: {
  8160. source: "./media/characters/joshii/foot.svg"
  8161. }
  8162. },
  8163. },
  8164. [
  8165. {
  8166. name: "Micro",
  8167. height: math.unit(2, "inches"),
  8168. default: true
  8169. },
  8170. {
  8171. name: "Normal",
  8172. height: math.unit(5 + 5 / 12, "feet")
  8173. },
  8174. {
  8175. name: "Macro",
  8176. height: math.unit(785, "feet")
  8177. },
  8178. {
  8179. name: "Megamacro",
  8180. height: math.unit(24.5, "miles")
  8181. },
  8182. ]
  8183. ))
  8184. characterMakers.push(() => makeCharacter(
  8185. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8186. {
  8187. front: {
  8188. height: math.unit(6, "feet"),
  8189. weight: math.unit(150, "lb"),
  8190. name: "Front",
  8191. image: {
  8192. source: "./media/characters/goddess-elizabeth/front.svg",
  8193. extra: 1800 / 1525,
  8194. bottom: 0.005
  8195. }
  8196. },
  8197. foot: {
  8198. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8199. name: "Foot",
  8200. image: {
  8201. source: "./media/characters/goddess-elizabeth/foot.svg"
  8202. }
  8203. },
  8204. mouth: {
  8205. height: math.unit(6, "feet"),
  8206. name: "Mouth",
  8207. image: {
  8208. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8209. }
  8210. },
  8211. },
  8212. [
  8213. {
  8214. name: "Micro",
  8215. height: math.unit(12, "feet")
  8216. },
  8217. {
  8218. name: "Normal",
  8219. height: math.unit(80, "miles"),
  8220. default: true
  8221. },
  8222. {
  8223. name: "Macro",
  8224. height: math.unit(15000, "parsecs")
  8225. },
  8226. ]
  8227. ))
  8228. characterMakers.push(() => makeCharacter(
  8229. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8230. {
  8231. front: {
  8232. height: math.unit(5 + 9 / 12, "feet"),
  8233. weight: math.unit(144, "lb"),
  8234. name: "Front",
  8235. image: {
  8236. source: "./media/characters/kara/front.svg"
  8237. }
  8238. },
  8239. feet: {
  8240. height: math.unit(6 / 6.765, "feet"),
  8241. name: "Kara's Feet",
  8242. rename: true,
  8243. image: {
  8244. source: "./media/characters/kara/feet.svg"
  8245. }
  8246. },
  8247. },
  8248. [
  8249. {
  8250. name: "Normal",
  8251. height: math.unit(5 + 9 / 12, "feet")
  8252. },
  8253. {
  8254. name: "Macro",
  8255. height: math.unit(174, "feet"),
  8256. default: true
  8257. },
  8258. ]
  8259. ))
  8260. characterMakers.push(() => makeCharacter(
  8261. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8262. {
  8263. front: {
  8264. height: math.unit(18, "feet"),
  8265. weight: math.unit(4050, "lb"),
  8266. name: "Front",
  8267. image: {
  8268. source: "./media/characters/tyrone/front.svg",
  8269. extra: 2405 / 2270,
  8270. bottom: 182 / 2587
  8271. }
  8272. },
  8273. },
  8274. [
  8275. {
  8276. name: "Normal",
  8277. height: math.unit(18, "feet"),
  8278. default: true
  8279. },
  8280. {
  8281. name: "Macro",
  8282. height: math.unit(300, "feet")
  8283. },
  8284. {
  8285. name: "Megamacro",
  8286. height: math.unit(15, "km")
  8287. },
  8288. {
  8289. name: "Gigamacro",
  8290. height: math.unit(500, "km")
  8291. },
  8292. {
  8293. name: "Teramacro",
  8294. height: math.unit(0.5, "gigameters")
  8295. },
  8296. {
  8297. name: "Omnimacro",
  8298. height: math.unit(1e252, "yottauniverse")
  8299. },
  8300. ]
  8301. ))
  8302. characterMakers.push(() => makeCharacter(
  8303. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8304. {
  8305. front: {
  8306. height: math.unit(7 + 8 / 12, "feet"),
  8307. weight: math.unit(120, "lb"),
  8308. name: "Front",
  8309. image: {
  8310. source: "./media/characters/danny/front.svg",
  8311. extra: 1490 / 1350
  8312. }
  8313. },
  8314. back: {
  8315. height: math.unit(7 + 8 / 12, "feet"),
  8316. weight: math.unit(120, "lb"),
  8317. name: "Back",
  8318. image: {
  8319. source: "./media/characters/danny/back.svg",
  8320. extra: 1490 / 1350
  8321. }
  8322. },
  8323. },
  8324. [
  8325. {
  8326. name: "Normal",
  8327. height: math.unit(7 + 8 / 12, "feet"),
  8328. default: true
  8329. },
  8330. ]
  8331. ))
  8332. characterMakers.push(() => makeCharacter(
  8333. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8334. {
  8335. front: {
  8336. height: math.unit(3.5, "inches"),
  8337. weight: math.unit(19, "grams"),
  8338. name: "Front",
  8339. image: {
  8340. source: "./media/characters/mallow/front.svg",
  8341. extra: 471 / 431
  8342. }
  8343. },
  8344. back: {
  8345. height: math.unit(3.5, "inches"),
  8346. weight: math.unit(19, "grams"),
  8347. name: "Back",
  8348. image: {
  8349. source: "./media/characters/mallow/back.svg",
  8350. extra: 471 / 431
  8351. }
  8352. },
  8353. },
  8354. [
  8355. {
  8356. name: "Normal",
  8357. height: math.unit(3.5, "inches"),
  8358. default: true
  8359. },
  8360. ]
  8361. ))
  8362. characterMakers.push(() => makeCharacter(
  8363. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8364. {
  8365. front: {
  8366. height: math.unit(9, "feet"),
  8367. weight: math.unit(230, "kg"),
  8368. name: "Front",
  8369. image: {
  8370. source: "./media/characters/starry-aqua/front.svg"
  8371. }
  8372. },
  8373. back: {
  8374. height: math.unit(9, "feet"),
  8375. weight: math.unit(230, "kg"),
  8376. name: "Back",
  8377. image: {
  8378. source: "./media/characters/starry-aqua/back.svg"
  8379. }
  8380. },
  8381. hand: {
  8382. height: math.unit(9 * 0.1168, "feet"),
  8383. name: "Hand",
  8384. image: {
  8385. source: "./media/characters/starry-aqua/hand.svg"
  8386. }
  8387. },
  8388. foot: {
  8389. height: math.unit(9 * 0.18, "feet"),
  8390. name: "Foot",
  8391. image: {
  8392. source: "./media/characters/starry-aqua/foot.svg"
  8393. }
  8394. }
  8395. },
  8396. [
  8397. {
  8398. name: "Micro",
  8399. height: math.unit(3, "inches")
  8400. },
  8401. {
  8402. name: "Normal",
  8403. height: math.unit(9, "feet")
  8404. },
  8405. {
  8406. name: "Macro",
  8407. height: math.unit(300, "feet"),
  8408. default: true
  8409. },
  8410. {
  8411. name: "Megamacro",
  8412. height: math.unit(3200, "feet")
  8413. }
  8414. ]
  8415. ))
  8416. characterMakers.push(() => makeCharacter(
  8417. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8418. {
  8419. front: {
  8420. height: math.unit(6, "feet"),
  8421. weight: math.unit(230, "lb"),
  8422. name: "Front",
  8423. image: {
  8424. source: "./media/characters/luka/front.svg",
  8425. extra: 1,
  8426. bottom: 0.025
  8427. }
  8428. },
  8429. },
  8430. [
  8431. {
  8432. name: "Normal",
  8433. height: math.unit(12 + 8 / 12, "feet"),
  8434. default: true
  8435. },
  8436. {
  8437. name: "Minimacro",
  8438. height: math.unit(20, "feet")
  8439. },
  8440. {
  8441. name: "Macro",
  8442. height: math.unit(250, "feet")
  8443. },
  8444. {
  8445. name: "Megamacro",
  8446. height: math.unit(5, "miles")
  8447. },
  8448. {
  8449. name: "Gigamacro",
  8450. height: math.unit(8000, "miles")
  8451. },
  8452. ]
  8453. ))
  8454. characterMakers.push(() => makeCharacter(
  8455. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8456. {
  8457. front: {
  8458. height: math.unit(6, "feet"),
  8459. weight: math.unit(150, "lb"),
  8460. name: "Front",
  8461. image: {
  8462. source: "./media/characters/natalie-nightring/front.svg",
  8463. extra: 1,
  8464. bottom: 0.06
  8465. }
  8466. },
  8467. },
  8468. [
  8469. {
  8470. name: "Uh Oh",
  8471. height: math.unit(0.1, "mm")
  8472. },
  8473. {
  8474. name: "Small",
  8475. height: math.unit(3, "inches")
  8476. },
  8477. {
  8478. name: "Human Scale",
  8479. height: math.unit(6, "feet")
  8480. },
  8481. {
  8482. name: "Librarian",
  8483. height: math.unit(50, "feet"),
  8484. default: true
  8485. },
  8486. {
  8487. name: "Immense",
  8488. height: math.unit(200, "miles")
  8489. },
  8490. ]
  8491. ))
  8492. characterMakers.push(() => makeCharacter(
  8493. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8494. {
  8495. front: {
  8496. height: math.unit(6, "feet"),
  8497. weight: math.unit(180, "lbs"),
  8498. name: "Front",
  8499. image: {
  8500. source: "./media/characters/danni-rosie/front.svg",
  8501. extra: 1260 / 1128,
  8502. bottom: 0.022
  8503. }
  8504. },
  8505. },
  8506. [
  8507. {
  8508. name: "Micro",
  8509. height: math.unit(2, "inches"),
  8510. default: true
  8511. },
  8512. ]
  8513. ))
  8514. characterMakers.push(() => makeCharacter(
  8515. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8516. {
  8517. front: {
  8518. height: math.unit(5 + 9 / 12, "feet"),
  8519. weight: math.unit(220, "lb"),
  8520. name: "Front",
  8521. image: {
  8522. source: "./media/characters/samantha-kruse/front.svg",
  8523. extra: (985 / 935),
  8524. bottom: 0.03
  8525. }
  8526. },
  8527. frontUndressed: {
  8528. height: math.unit(5 + 9 / 12, "feet"),
  8529. weight: math.unit(220, "lb"),
  8530. name: "Front (Undressed)",
  8531. image: {
  8532. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8533. extra: (973 / 923),
  8534. bottom: 0.025
  8535. }
  8536. },
  8537. fat: {
  8538. height: math.unit(5 + 9 / 12, "feet"),
  8539. weight: math.unit(900, "lb"),
  8540. name: "Front (Fat)",
  8541. image: {
  8542. source: "./media/characters/samantha-kruse/fat.svg",
  8543. extra: 2688 / 2561
  8544. }
  8545. },
  8546. },
  8547. [
  8548. {
  8549. name: "Normal",
  8550. height: math.unit(5 + 9 / 12, "feet"),
  8551. default: true
  8552. }
  8553. ]
  8554. ))
  8555. characterMakers.push(() => makeCharacter(
  8556. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8557. {
  8558. back: {
  8559. height: math.unit(5 + 4 / 12, "feet"),
  8560. weight: math.unit(4963, "lb"),
  8561. name: "Back",
  8562. image: {
  8563. source: "./media/characters/amelia-rosie/back.svg",
  8564. extra: 1113 / 963,
  8565. bottom: 0.01
  8566. }
  8567. },
  8568. },
  8569. [
  8570. {
  8571. name: "Level 0",
  8572. height: math.unit(5 + 4 / 12, "feet")
  8573. },
  8574. {
  8575. name: "Level 1",
  8576. height: math.unit(164597, "feet"),
  8577. default: true
  8578. },
  8579. {
  8580. name: "Level 2",
  8581. height: math.unit(956243, "miles")
  8582. },
  8583. {
  8584. name: "Level 3",
  8585. height: math.unit(29421709423, "miles")
  8586. },
  8587. {
  8588. name: "Level 4",
  8589. height: math.unit(154, "lightyears")
  8590. },
  8591. {
  8592. name: "Level 5",
  8593. height: math.unit(4738272, "lightyears")
  8594. },
  8595. {
  8596. name: "Level 6",
  8597. height: math.unit(145787152896, "lightyears")
  8598. },
  8599. ]
  8600. ))
  8601. characterMakers.push(() => makeCharacter(
  8602. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8603. {
  8604. front: {
  8605. height: math.unit(5 + 11 / 12, "feet"),
  8606. weight: math.unit(65, "kg"),
  8607. name: "Front",
  8608. image: {
  8609. source: "./media/characters/rook-kitara/front.svg",
  8610. extra: 1347 / 1274,
  8611. bottom: 0.005
  8612. }
  8613. },
  8614. },
  8615. [
  8616. {
  8617. name: "Totally Unfair",
  8618. height: math.unit(1.8, "mm")
  8619. },
  8620. {
  8621. name: "Lap Rookie",
  8622. height: math.unit(1.4, "feet")
  8623. },
  8624. {
  8625. name: "Normal",
  8626. height: math.unit(5 + 11 / 12, "feet"),
  8627. default: true
  8628. },
  8629. {
  8630. name: "How Did This Happen",
  8631. height: math.unit(80, "miles")
  8632. }
  8633. ]
  8634. ))
  8635. characterMakers.push(() => makeCharacter(
  8636. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8637. {
  8638. front: {
  8639. height: math.unit(7, "feet"),
  8640. weight: math.unit(300, "lb"),
  8641. name: "Front",
  8642. image: {
  8643. source: "./media/characters/pisces/front.svg",
  8644. extra: 2255 / 2115,
  8645. bottom: 0.03
  8646. }
  8647. },
  8648. back: {
  8649. height: math.unit(7, "feet"),
  8650. weight: math.unit(300, "lb"),
  8651. name: "Back",
  8652. image: {
  8653. source: "./media/characters/pisces/back.svg",
  8654. extra: 2146 / 2055,
  8655. bottom: 0.04
  8656. }
  8657. },
  8658. },
  8659. [
  8660. {
  8661. name: "Normal",
  8662. height: math.unit(7, "feet"),
  8663. default: true
  8664. },
  8665. {
  8666. name: "Swimming Pool",
  8667. height: math.unit(12.2, "meters")
  8668. },
  8669. {
  8670. name: "Olympic Swimming Pool",
  8671. height: math.unit(56.3, "meters")
  8672. },
  8673. {
  8674. name: "Lake Superior",
  8675. height: math.unit(93900, "meters")
  8676. },
  8677. {
  8678. name: "Mediterranean Sea",
  8679. height: math.unit(644457, "meters")
  8680. },
  8681. {
  8682. name: "World's Oceans",
  8683. height: math.unit(4567491, "meters")
  8684. },
  8685. ]
  8686. ))
  8687. characterMakers.push(() => makeCharacter(
  8688. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8689. {
  8690. front: {
  8691. height: math.unit(2.3, "meters"),
  8692. weight: math.unit(120, "kg"),
  8693. name: "Front",
  8694. image: {
  8695. source: "./media/characters/zelas/front.svg"
  8696. }
  8697. },
  8698. side: {
  8699. height: math.unit(2.3, "meters"),
  8700. weight: math.unit(120, "kg"),
  8701. name: "Side",
  8702. image: {
  8703. source: "./media/characters/zelas/side.svg"
  8704. }
  8705. },
  8706. back: {
  8707. height: math.unit(2.3, "meters"),
  8708. weight: math.unit(120, "kg"),
  8709. name: "Back",
  8710. image: {
  8711. source: "./media/characters/zelas/back.svg"
  8712. }
  8713. },
  8714. foot: {
  8715. height: math.unit(1.116, "feet"),
  8716. name: "Foot",
  8717. image: {
  8718. source: "./media/characters/zelas/foot.svg"
  8719. }
  8720. },
  8721. },
  8722. [
  8723. {
  8724. name: "Normal",
  8725. height: math.unit(2.3, "meters")
  8726. },
  8727. {
  8728. name: "Macro",
  8729. height: math.unit(30, "meters"),
  8730. default: true
  8731. },
  8732. ]
  8733. ))
  8734. characterMakers.push(() => makeCharacter(
  8735. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8736. {
  8737. front: {
  8738. height: math.unit(1, "inch"),
  8739. weight: math.unit(0.21, "grams"),
  8740. name: "Front",
  8741. image: {
  8742. source: "./media/characters/talbot/front.svg",
  8743. extra: 594 / 544
  8744. }
  8745. },
  8746. },
  8747. [
  8748. {
  8749. name: "Micro",
  8750. height: math.unit(1, "inch"),
  8751. default: true
  8752. },
  8753. ]
  8754. ))
  8755. characterMakers.push(() => makeCharacter(
  8756. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8757. {
  8758. front: {
  8759. height: math.unit(3 + 3 / 12, "feet"),
  8760. weight: math.unit(51.8, "lb"),
  8761. name: "Front",
  8762. image: {
  8763. source: "./media/characters/fliss/front.svg",
  8764. extra: 840 / 640
  8765. }
  8766. },
  8767. },
  8768. [
  8769. {
  8770. name: "Teeny Tiny",
  8771. height: math.unit(1, "mm")
  8772. },
  8773. {
  8774. name: "Small",
  8775. height: math.unit(1, "inch"),
  8776. default: true
  8777. },
  8778. {
  8779. name: "Standard Sylveon",
  8780. height: math.unit(3 + 3 / 12, "feet")
  8781. },
  8782. {
  8783. name: "Large Nuisance",
  8784. height: math.unit(33, "feet")
  8785. },
  8786. {
  8787. name: "City Filler",
  8788. height: math.unit(3000, "feet")
  8789. },
  8790. {
  8791. name: "New Horizon",
  8792. height: math.unit(6000, "miles")
  8793. },
  8794. ]
  8795. ))
  8796. characterMakers.push(() => makeCharacter(
  8797. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8798. {
  8799. front: {
  8800. height: math.unit(5, "cm"),
  8801. weight: math.unit(1.94, "g"),
  8802. name: "Front",
  8803. image: {
  8804. source: "./media/characters/fleta/front.svg",
  8805. extra: 835 / 803
  8806. }
  8807. },
  8808. back: {
  8809. height: math.unit(5, "cm"),
  8810. weight: math.unit(1.94, "g"),
  8811. name: "Back",
  8812. image: {
  8813. source: "./media/characters/fleta/back.svg",
  8814. extra: 835 / 803
  8815. }
  8816. },
  8817. },
  8818. [
  8819. {
  8820. name: "Micro",
  8821. height: math.unit(5, "cm"),
  8822. default: true
  8823. },
  8824. ]
  8825. ))
  8826. characterMakers.push(() => makeCharacter(
  8827. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8828. {
  8829. front: {
  8830. height: math.unit(6, "feet"),
  8831. weight: math.unit(225, "lb"),
  8832. name: "Front",
  8833. image: {
  8834. source: "./media/characters/dominic/front.svg",
  8835. extra: 1770 / 1620,
  8836. bottom: 0.025
  8837. }
  8838. },
  8839. back: {
  8840. height: math.unit(6, "feet"),
  8841. weight: math.unit(225, "lb"),
  8842. name: "Back",
  8843. image: {
  8844. source: "./media/characters/dominic/back.svg",
  8845. extra: 1745 / 1620,
  8846. bottom: 0.065
  8847. }
  8848. },
  8849. },
  8850. [
  8851. {
  8852. name: "Nano",
  8853. height: math.unit(0.1, "mm")
  8854. },
  8855. {
  8856. name: "Micro-",
  8857. height: math.unit(1, "mm")
  8858. },
  8859. {
  8860. name: "Micro",
  8861. height: math.unit(4, "inches")
  8862. },
  8863. {
  8864. name: "Normal",
  8865. height: math.unit(6 + 4 / 12, "feet"),
  8866. default: true
  8867. },
  8868. {
  8869. name: "Macro",
  8870. height: math.unit(115, "feet")
  8871. },
  8872. {
  8873. name: "Macro+",
  8874. height: math.unit(955, "feet")
  8875. },
  8876. {
  8877. name: "Megamacro",
  8878. height: math.unit(8990, "feet")
  8879. },
  8880. {
  8881. name: "Gigmacro",
  8882. height: math.unit(9310, "miles")
  8883. },
  8884. {
  8885. name: "Teramacro",
  8886. height: math.unit(1567005010, "miles")
  8887. },
  8888. {
  8889. name: "Examacro",
  8890. height: math.unit(1425, "parsecs")
  8891. },
  8892. ]
  8893. ))
  8894. characterMakers.push(() => makeCharacter(
  8895. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8896. {
  8897. front: {
  8898. height: math.unit(400, "feet"),
  8899. weight: math.unit(44444444, "lb"),
  8900. name: "Front",
  8901. image: {
  8902. source: "./media/characters/major-colonel/front.svg"
  8903. }
  8904. },
  8905. back: {
  8906. height: math.unit(400, "feet"),
  8907. weight: math.unit(44444444, "lb"),
  8908. name: "Back",
  8909. image: {
  8910. source: "./media/characters/major-colonel/back.svg"
  8911. }
  8912. },
  8913. },
  8914. [
  8915. {
  8916. name: "Macro",
  8917. height: math.unit(400, "feet"),
  8918. default: true
  8919. },
  8920. ]
  8921. ))
  8922. characterMakers.push(() => makeCharacter(
  8923. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8924. {
  8925. catFront: {
  8926. height: math.unit(6, "feet"),
  8927. weight: math.unit(120, "lb"),
  8928. name: "Front (Cat Side)",
  8929. image: {
  8930. source: "./media/characters/axel-lycan/cat-front.svg",
  8931. extra: 430 / 402,
  8932. bottom: 43 / 472.35
  8933. }
  8934. },
  8935. catBack: {
  8936. height: math.unit(6, "feet"),
  8937. weight: math.unit(120, "lb"),
  8938. name: "Back (Cat Side)",
  8939. image: {
  8940. source: "./media/characters/axel-lycan/cat-back.svg",
  8941. extra: 447 / 419,
  8942. bottom: 23.3 / 469
  8943. }
  8944. },
  8945. wolfFront: {
  8946. height: math.unit(6, "feet"),
  8947. weight: math.unit(120, "lb"),
  8948. name: "Front (Wolf Side)",
  8949. image: {
  8950. source: "./media/characters/axel-lycan/wolf-front.svg",
  8951. extra: 485 / 456,
  8952. bottom: 19 / 504
  8953. }
  8954. },
  8955. wolfBack: {
  8956. height: math.unit(6, "feet"),
  8957. weight: math.unit(120, "lb"),
  8958. name: "Back (Wolf Side)",
  8959. image: {
  8960. source: "./media/characters/axel-lycan/wolf-back.svg",
  8961. extra: 475 / 438,
  8962. bottom: 39.2 / 514
  8963. }
  8964. },
  8965. },
  8966. [
  8967. {
  8968. name: "Macro",
  8969. height: math.unit(1, "km"),
  8970. default: true
  8971. },
  8972. ]
  8973. ))
  8974. characterMakers.push(() => makeCharacter(
  8975. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8976. {
  8977. front: {
  8978. height: math.unit(5 + 9 / 12, "feet"),
  8979. weight: math.unit(175, "lb"),
  8980. name: "Front",
  8981. image: {
  8982. source: "./media/characters/vanrel-hyena/front.svg",
  8983. extra: 1086 / 1010,
  8984. bottom: 0.04
  8985. }
  8986. },
  8987. },
  8988. [
  8989. {
  8990. name: "Normal",
  8991. height: math.unit(5 + 9 / 12, "feet"),
  8992. default: true
  8993. },
  8994. ]
  8995. ))
  8996. characterMakers.push(() => makeCharacter(
  8997. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8998. {
  8999. front: {
  9000. height: math.unit(6, "feet"),
  9001. weight: math.unit(103, "lb"),
  9002. name: "Front",
  9003. image: {
  9004. source: "./media/characters/abbott-absol/front.svg",
  9005. extra: 2010 / 1842
  9006. }
  9007. },
  9008. },
  9009. [
  9010. {
  9011. name: "Megamicro",
  9012. height: math.unit(0.1, "mm")
  9013. },
  9014. {
  9015. name: "Micro",
  9016. height: math.unit(1, "inch")
  9017. },
  9018. {
  9019. name: "Normal",
  9020. height: math.unit(6, "feet"),
  9021. default: true
  9022. },
  9023. ]
  9024. ))
  9025. characterMakers.push(() => makeCharacter(
  9026. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9027. {
  9028. front: {
  9029. height: math.unit(6, "feet"),
  9030. weight: math.unit(264, "lb"),
  9031. name: "Front",
  9032. image: {
  9033. source: "./media/characters/hector/front.svg",
  9034. extra: 2280 / 2130,
  9035. bottom: 0.07
  9036. }
  9037. },
  9038. },
  9039. [
  9040. {
  9041. name: "Normal",
  9042. height: math.unit(12.25, "foot"),
  9043. default: true
  9044. },
  9045. {
  9046. name: "Macro",
  9047. height: math.unit(160, "feet")
  9048. },
  9049. ]
  9050. ))
  9051. characterMakers.push(() => makeCharacter(
  9052. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9053. {
  9054. front: {
  9055. height: math.unit(6, "feet"),
  9056. weight: math.unit(150, "lb"),
  9057. name: "Front",
  9058. image: {
  9059. source: "./media/characters/sal/front.svg",
  9060. extra: 1846 / 1699,
  9061. bottom: 0.04
  9062. }
  9063. },
  9064. },
  9065. [
  9066. {
  9067. name: "Megamacro",
  9068. height: math.unit(10, "miles"),
  9069. default: true
  9070. },
  9071. ]
  9072. ))
  9073. characterMakers.push(() => makeCharacter(
  9074. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9075. {
  9076. front: {
  9077. height: math.unit(3, "meters"),
  9078. weight: math.unit(450, "kg"),
  9079. name: "front",
  9080. image: {
  9081. source: "./media/characters/ranger/front.svg",
  9082. extra: 2401 / 2243,
  9083. bottom: 0.05
  9084. }
  9085. },
  9086. },
  9087. [
  9088. {
  9089. name: "Normal",
  9090. height: math.unit(3, "meters"),
  9091. default: true
  9092. },
  9093. ]
  9094. ))
  9095. characterMakers.push(() => makeCharacter(
  9096. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9097. {
  9098. front: {
  9099. height: math.unit(14, "feet"),
  9100. weight: math.unit(800, "kg"),
  9101. name: "Front",
  9102. image: {
  9103. source: "./media/characters/theresa/front.svg",
  9104. extra: 3575 / 3346,
  9105. bottom: 0.03
  9106. }
  9107. },
  9108. },
  9109. [
  9110. {
  9111. name: "Normal",
  9112. height: math.unit(14, "feet"),
  9113. default: true
  9114. },
  9115. ]
  9116. ))
  9117. characterMakers.push(() => makeCharacter(
  9118. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9119. {
  9120. front: {
  9121. height: math.unit(6, "feet"),
  9122. weight: math.unit(3, "kg"),
  9123. name: "Front",
  9124. image: {
  9125. source: "./media/characters/ine/front.svg",
  9126. extra: 678 / 539,
  9127. bottom: 0.023
  9128. }
  9129. },
  9130. },
  9131. [
  9132. {
  9133. name: "Normal",
  9134. height: math.unit(2.265, "feet"),
  9135. default: true
  9136. },
  9137. ]
  9138. ))
  9139. characterMakers.push(() => makeCharacter(
  9140. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9141. {
  9142. front: {
  9143. height: math.unit(5, "feet"),
  9144. weight: math.unit(30, "kg"),
  9145. name: "Front",
  9146. image: {
  9147. source: "./media/characters/vial/front.svg",
  9148. extra: 1365 / 1277,
  9149. bottom: 0.04
  9150. }
  9151. },
  9152. },
  9153. [
  9154. {
  9155. name: "Normal",
  9156. height: math.unit(5, "feet"),
  9157. default: true
  9158. },
  9159. ]
  9160. ))
  9161. characterMakers.push(() => makeCharacter(
  9162. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9163. {
  9164. side: {
  9165. height: math.unit(3.4, "meters"),
  9166. weight: math.unit(1000, "lb"),
  9167. name: "Side",
  9168. image: {
  9169. source: "./media/characters/rovoska/side.svg",
  9170. extra: 4403 / 1515
  9171. }
  9172. },
  9173. },
  9174. [
  9175. {
  9176. name: "Normal",
  9177. height: math.unit(3.4, "meters"),
  9178. default: true
  9179. },
  9180. ]
  9181. ))
  9182. characterMakers.push(() => makeCharacter(
  9183. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9184. {
  9185. front: {
  9186. height: math.unit(8, "feet"),
  9187. weight: math.unit(315, "lb"),
  9188. name: "Front",
  9189. image: {
  9190. source: "./media/characters/gunner-rotthbauer/front.svg"
  9191. }
  9192. },
  9193. back: {
  9194. height: math.unit(8, "feet"),
  9195. weight: math.unit(315, "lb"),
  9196. name: "Back",
  9197. image: {
  9198. source: "./media/characters/gunner-rotthbauer/back.svg"
  9199. }
  9200. },
  9201. },
  9202. [
  9203. {
  9204. name: "Micro",
  9205. height: math.unit(3.5, "inches")
  9206. },
  9207. {
  9208. name: "Normal",
  9209. height: math.unit(8, "feet"),
  9210. default: true
  9211. },
  9212. {
  9213. name: "Macro",
  9214. height: math.unit(250, "feet")
  9215. },
  9216. {
  9217. name: "Megamacro",
  9218. height: math.unit(1, "AU")
  9219. },
  9220. ]
  9221. ))
  9222. characterMakers.push(() => makeCharacter(
  9223. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9224. {
  9225. front: {
  9226. height: math.unit(5 + 5 / 12, "feet"),
  9227. weight: math.unit(140, "lb"),
  9228. name: "Front",
  9229. image: {
  9230. source: "./media/characters/allatia/front.svg",
  9231. extra: 1227 / 1180,
  9232. bottom: 0.027
  9233. }
  9234. },
  9235. },
  9236. [
  9237. {
  9238. name: "Normal",
  9239. height: math.unit(5 + 5 / 12, "feet")
  9240. },
  9241. {
  9242. name: "Macro",
  9243. height: math.unit(250, "feet"),
  9244. default: true
  9245. },
  9246. {
  9247. name: "Megamacro",
  9248. height: math.unit(8, "miles")
  9249. }
  9250. ]
  9251. ))
  9252. characterMakers.push(() => makeCharacter(
  9253. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9254. {
  9255. front: {
  9256. height: math.unit(6, "feet"),
  9257. weight: math.unit(120, "lb"),
  9258. name: "Front",
  9259. image: {
  9260. source: "./media/characters/tene/front.svg",
  9261. extra: 1728 / 1578,
  9262. bottom: 0.022
  9263. }
  9264. },
  9265. stomping: {
  9266. height: math.unit(2.025, "meters"),
  9267. weight: math.unit(120, "lb"),
  9268. name: "Stomping",
  9269. image: {
  9270. source: "./media/characters/tene/stomping.svg",
  9271. extra: 938 / 873,
  9272. bottom: 0.01
  9273. }
  9274. },
  9275. sitting: {
  9276. height: math.unit(1, "meter"),
  9277. weight: math.unit(120, "lb"),
  9278. name: "Sitting",
  9279. image: {
  9280. source: "./media/characters/tene/sitting.svg",
  9281. extra: 437 / 415,
  9282. bottom: 0.1
  9283. }
  9284. },
  9285. feral: {
  9286. height: math.unit(3.9, "feet"),
  9287. weight: math.unit(250, "lb"),
  9288. name: "Feral",
  9289. image: {
  9290. source: "./media/characters/tene/feral.svg",
  9291. extra: 717 / 458,
  9292. bottom: 0.179
  9293. }
  9294. },
  9295. },
  9296. [
  9297. {
  9298. name: "Normal",
  9299. height: math.unit(6, "feet")
  9300. },
  9301. {
  9302. name: "Macro",
  9303. height: math.unit(300, "feet"),
  9304. default: true
  9305. },
  9306. {
  9307. name: "Megamacro",
  9308. height: math.unit(5, "miles")
  9309. },
  9310. ]
  9311. ))
  9312. characterMakers.push(() => makeCharacter(
  9313. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9314. {
  9315. side: {
  9316. height: math.unit(6, "feet"),
  9317. name: "Side",
  9318. image: {
  9319. source: "./media/characters/evander/side.svg",
  9320. extra: 877 / 477
  9321. }
  9322. },
  9323. },
  9324. [
  9325. {
  9326. name: "Normal",
  9327. height: math.unit(0.83, "meters"),
  9328. default: true
  9329. },
  9330. ]
  9331. ))
  9332. characterMakers.push(() => makeCharacter(
  9333. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9334. {
  9335. front: {
  9336. height: math.unit(12, "feet"),
  9337. weight: math.unit(1000, "lb"),
  9338. name: "Front",
  9339. image: {
  9340. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9341. extra: 1762 / 1611
  9342. }
  9343. },
  9344. back: {
  9345. height: math.unit(12, "feet"),
  9346. weight: math.unit(1000, "lb"),
  9347. name: "Back",
  9348. image: {
  9349. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9350. extra: 1762 / 1611
  9351. }
  9352. },
  9353. },
  9354. [
  9355. {
  9356. name: "Normal",
  9357. height: math.unit(12, "feet"),
  9358. default: true
  9359. },
  9360. {
  9361. name: "Kaiju",
  9362. height: math.unit(150, "feet")
  9363. },
  9364. ]
  9365. ))
  9366. characterMakers.push(() => makeCharacter(
  9367. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9368. {
  9369. front: {
  9370. height: math.unit(6, "feet"),
  9371. weight: math.unit(150, "lb"),
  9372. name: "Front",
  9373. image: {
  9374. source: "./media/characters/zero-alurus/front.svg"
  9375. }
  9376. },
  9377. back: {
  9378. height: math.unit(6, "feet"),
  9379. weight: math.unit(150, "lb"),
  9380. name: "Back",
  9381. image: {
  9382. source: "./media/characters/zero-alurus/back.svg"
  9383. }
  9384. },
  9385. },
  9386. [
  9387. {
  9388. name: "Normal",
  9389. height: math.unit(5 + 10 / 12, "feet")
  9390. },
  9391. {
  9392. name: "Macro",
  9393. height: math.unit(60, "feet"),
  9394. default: true
  9395. },
  9396. {
  9397. name: "Macro+",
  9398. height: math.unit(450, "feet")
  9399. },
  9400. ]
  9401. ))
  9402. characterMakers.push(() => makeCharacter(
  9403. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9404. {
  9405. front: {
  9406. height: math.unit(6, "feet"),
  9407. weight: math.unit(200, "lb"),
  9408. name: "Front",
  9409. image: {
  9410. source: "./media/characters/mega-shi/front.svg",
  9411. extra: 1279 / 1250,
  9412. bottom: 0.02
  9413. }
  9414. },
  9415. back: {
  9416. height: math.unit(6, "feet"),
  9417. weight: math.unit(200, "lb"),
  9418. name: "Back",
  9419. image: {
  9420. source: "./media/characters/mega-shi/back.svg",
  9421. extra: 1279 / 1250,
  9422. bottom: 0.02
  9423. }
  9424. },
  9425. },
  9426. [
  9427. {
  9428. name: "Micro",
  9429. height: math.unit(16 + 6 / 12, "feet")
  9430. },
  9431. {
  9432. name: "Third Dimension",
  9433. height: math.unit(40, "meters")
  9434. },
  9435. {
  9436. name: "Normal",
  9437. height: math.unit(660, "feet"),
  9438. default: true
  9439. },
  9440. {
  9441. name: "Megamacro",
  9442. height: math.unit(10, "miles")
  9443. },
  9444. {
  9445. name: "Planetary Launch",
  9446. height: math.unit(500, "miles")
  9447. },
  9448. {
  9449. name: "Interstellar",
  9450. height: math.unit(1e9, "miles")
  9451. },
  9452. {
  9453. name: "Leaving the Universe",
  9454. height: math.unit(1, "gigaparsec")
  9455. },
  9456. {
  9457. name: "Travelling Universes",
  9458. height: math.unit(30e15, "parsecs")
  9459. },
  9460. ]
  9461. ))
  9462. characterMakers.push(() => makeCharacter(
  9463. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9464. {
  9465. front: {
  9466. height: math.unit(6, "feet"),
  9467. weight: math.unit(150, "lb"),
  9468. name: "Front",
  9469. image: {
  9470. source: "./media/characters/odyssey/front.svg",
  9471. extra: 1782 / 1582,
  9472. bottom: 0.01
  9473. }
  9474. },
  9475. side: {
  9476. height: math.unit(5.7, "feet"),
  9477. weight: math.unit(140, "lb"),
  9478. name: "Side",
  9479. image: {
  9480. source: "./media/characters/odyssey/side.svg",
  9481. extra: 6462 / 5700
  9482. }
  9483. },
  9484. },
  9485. [
  9486. {
  9487. name: "Normal",
  9488. height: math.unit(5 + 4 / 12, "feet")
  9489. },
  9490. {
  9491. name: "Macro",
  9492. height: math.unit(1, "km")
  9493. },
  9494. {
  9495. name: "Megamacro",
  9496. height: math.unit(3000, "km")
  9497. },
  9498. {
  9499. name: "Gigamacro",
  9500. height: math.unit(1, "AU"),
  9501. default: true
  9502. },
  9503. {
  9504. name: "Omniversal",
  9505. height: math.unit(100e14, "lightyears")
  9506. },
  9507. ]
  9508. ))
  9509. characterMakers.push(() => makeCharacter(
  9510. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9511. {
  9512. front: {
  9513. height: math.unit(6, "feet"),
  9514. weight: math.unit(300, "lb"),
  9515. name: "Front",
  9516. image: {
  9517. source: "./media/characters/mekuto/front.svg",
  9518. extra: 921 / 832,
  9519. bottom: 0.03
  9520. }
  9521. },
  9522. hand: {
  9523. height: math.unit(6 / 10.24, "feet"),
  9524. name: "Hand",
  9525. image: {
  9526. source: "./media/characters/mekuto/hand.svg"
  9527. }
  9528. },
  9529. foot: {
  9530. height: math.unit(6 / 5.05, "feet"),
  9531. name: "Foot",
  9532. image: {
  9533. source: "./media/characters/mekuto/foot.svg"
  9534. }
  9535. },
  9536. },
  9537. [
  9538. {
  9539. name: "Minimicro",
  9540. height: math.unit(0.2, "inches")
  9541. },
  9542. {
  9543. name: "Micro",
  9544. height: math.unit(1.5, "inches")
  9545. },
  9546. {
  9547. name: "Normal",
  9548. height: math.unit(5 + 11 / 12, "feet"),
  9549. default: true
  9550. },
  9551. {
  9552. name: "Minimacro",
  9553. height: math.unit(17 + 9 / 12, "feet")
  9554. },
  9555. {
  9556. name: "Macro",
  9557. height: math.unit(177.5, "feet")
  9558. },
  9559. {
  9560. name: "Megamacro",
  9561. height: math.unit(152, "miles")
  9562. },
  9563. ]
  9564. ))
  9565. characterMakers.push(() => makeCharacter(
  9566. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9567. {
  9568. front: {
  9569. height: math.unit(6.5, "inches"),
  9570. weight: math.unit(13, "oz"),
  9571. name: "Front",
  9572. image: {
  9573. source: "./media/characters/dafydd-tomos/front.svg",
  9574. extra: 2990 / 2603,
  9575. bottom: 0.03
  9576. }
  9577. },
  9578. },
  9579. [
  9580. {
  9581. name: "Micro",
  9582. height: math.unit(6.5, "inches"),
  9583. default: true
  9584. },
  9585. ]
  9586. ))
  9587. characterMakers.push(() => makeCharacter(
  9588. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9589. {
  9590. front: {
  9591. height: math.unit(6, "feet"),
  9592. weight: math.unit(150, "lb"),
  9593. name: "Front",
  9594. image: {
  9595. source: "./media/characters/splinter/front.svg",
  9596. extra: 2990 / 2882,
  9597. bottom: 0.04
  9598. }
  9599. },
  9600. back: {
  9601. height: math.unit(6, "feet"),
  9602. weight: math.unit(150, "lb"),
  9603. name: "Back",
  9604. image: {
  9605. source: "./media/characters/splinter/back.svg",
  9606. extra: 2990 / 2882,
  9607. bottom: 0.04
  9608. }
  9609. },
  9610. },
  9611. [
  9612. {
  9613. name: "Normal",
  9614. height: math.unit(6, "feet")
  9615. },
  9616. {
  9617. name: "Macro",
  9618. height: math.unit(230, "meters"),
  9619. default: true
  9620. },
  9621. ]
  9622. ))
  9623. characterMakers.push(() => makeCharacter(
  9624. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9625. {
  9626. front: {
  9627. height: math.unit(4 + 10 / 12, "feet"),
  9628. weight: math.unit(480, "lb"),
  9629. name: "Front",
  9630. image: {
  9631. source: "./media/characters/snow-gabumon/front.svg",
  9632. extra: 1140 / 963,
  9633. bottom: 0.058
  9634. }
  9635. },
  9636. back: {
  9637. height: math.unit(4 + 10 / 12, "feet"),
  9638. weight: math.unit(480, "lb"),
  9639. name: "Back",
  9640. image: {
  9641. source: "./media/characters/snow-gabumon/back.svg",
  9642. extra: 1115 / 962,
  9643. bottom: 0.041
  9644. }
  9645. },
  9646. frontUndresed: {
  9647. height: math.unit(4 + 10 / 12, "feet"),
  9648. weight: math.unit(480, "lb"),
  9649. name: "Front (Undressed)",
  9650. image: {
  9651. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9652. extra: 1061 / 960,
  9653. bottom: 0.045
  9654. }
  9655. },
  9656. },
  9657. [
  9658. {
  9659. name: "Micro",
  9660. height: math.unit(1, "inch")
  9661. },
  9662. {
  9663. name: "Normal",
  9664. height: math.unit(4 + 10 / 12, "feet"),
  9665. default: true
  9666. },
  9667. {
  9668. name: "Macro",
  9669. height: math.unit(200, "feet")
  9670. },
  9671. {
  9672. name: "Megamacro",
  9673. height: math.unit(120, "miles")
  9674. },
  9675. {
  9676. name: "Gigamacro",
  9677. height: math.unit(9800, "miles")
  9678. },
  9679. ]
  9680. ))
  9681. characterMakers.push(() => makeCharacter(
  9682. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9683. {
  9684. front: {
  9685. height: math.unit(1.7, "meters"),
  9686. weight: math.unit(140, "lb"),
  9687. name: "Front",
  9688. image: {
  9689. source: "./media/characters/moody/front.svg",
  9690. extra: 3226 / 3007,
  9691. bottom: 0.087
  9692. }
  9693. },
  9694. },
  9695. [
  9696. {
  9697. name: "Micro",
  9698. height: math.unit(1, "mm")
  9699. },
  9700. {
  9701. name: "Normal",
  9702. height: math.unit(1.7, "meters"),
  9703. default: true
  9704. },
  9705. {
  9706. name: "Macro",
  9707. height: math.unit(80, "meters")
  9708. },
  9709. {
  9710. name: "Macro+",
  9711. height: math.unit(500, "meters")
  9712. },
  9713. ]
  9714. ))
  9715. characterMakers.push(() => makeCharacter(
  9716. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9717. {
  9718. front: {
  9719. height: math.unit(6, "feet"),
  9720. weight: math.unit(150, "lb"),
  9721. name: "Front",
  9722. image: {
  9723. source: "./media/characters/zyas/front.svg",
  9724. extra: 1180 / 1120,
  9725. bottom: 0.045
  9726. }
  9727. },
  9728. },
  9729. [
  9730. {
  9731. name: "Normal",
  9732. height: math.unit(10, "feet"),
  9733. default: true
  9734. },
  9735. {
  9736. name: "Macro",
  9737. height: math.unit(500, "feet")
  9738. },
  9739. {
  9740. name: "Megamacro",
  9741. height: math.unit(5, "miles")
  9742. },
  9743. {
  9744. name: "Teramacro",
  9745. height: math.unit(150000, "miles")
  9746. },
  9747. ]
  9748. ))
  9749. characterMakers.push(() => makeCharacter(
  9750. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9751. {
  9752. front: {
  9753. height: math.unit(6, "feet"),
  9754. weight: math.unit(150, "lb"),
  9755. name: "Front",
  9756. image: {
  9757. source: "./media/characters/cuon/front.svg",
  9758. extra: 1390 / 1320,
  9759. bottom: 0.008
  9760. }
  9761. },
  9762. },
  9763. [
  9764. {
  9765. name: "Micro",
  9766. height: math.unit(3, "inches")
  9767. },
  9768. {
  9769. name: "Normal",
  9770. height: math.unit(18 + 9 / 12, "feet"),
  9771. default: true
  9772. },
  9773. {
  9774. name: "Macro",
  9775. height: math.unit(360, "feet")
  9776. },
  9777. {
  9778. name: "Megamacro",
  9779. height: math.unit(360, "miles")
  9780. },
  9781. ]
  9782. ))
  9783. characterMakers.push(() => makeCharacter(
  9784. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9785. {
  9786. front: {
  9787. height: math.unit(2.4, "meters"),
  9788. weight: math.unit(70, "kg"),
  9789. name: "Front",
  9790. image: {
  9791. source: "./media/characters/nyanuxk/front.svg",
  9792. extra: 1172 / 1084,
  9793. bottom: 0.065
  9794. }
  9795. },
  9796. side: {
  9797. height: math.unit(2.4, "meters"),
  9798. weight: math.unit(70, "kg"),
  9799. name: "Side",
  9800. image: {
  9801. source: "./media/characters/nyanuxk/side.svg",
  9802. extra: 1190 / 1132,
  9803. bottom: 0.007
  9804. }
  9805. },
  9806. back: {
  9807. height: math.unit(2.4, "meters"),
  9808. weight: math.unit(70, "kg"),
  9809. name: "Back",
  9810. image: {
  9811. source: "./media/characters/nyanuxk/back.svg",
  9812. extra: 1200 / 1141,
  9813. bottom: 0.015
  9814. }
  9815. },
  9816. foot: {
  9817. height: math.unit(0.52, "meters"),
  9818. name: "Foot",
  9819. image: {
  9820. source: "./media/characters/nyanuxk/foot.svg"
  9821. }
  9822. },
  9823. },
  9824. [
  9825. {
  9826. name: "Micro",
  9827. height: math.unit(2, "cm")
  9828. },
  9829. {
  9830. name: "Normal",
  9831. height: math.unit(2.4, "meters"),
  9832. default: true
  9833. },
  9834. {
  9835. name: "Smaller Macro",
  9836. height: math.unit(120, "meters")
  9837. },
  9838. {
  9839. name: "Bigger Macro",
  9840. height: math.unit(1.2, "km")
  9841. },
  9842. {
  9843. name: "Megamacro",
  9844. height: math.unit(15, "kilometers")
  9845. },
  9846. {
  9847. name: "Gigamacro",
  9848. height: math.unit(2000, "km")
  9849. },
  9850. {
  9851. name: "Teramacro",
  9852. height: math.unit(500000, "km")
  9853. },
  9854. ]
  9855. ))
  9856. characterMakers.push(() => makeCharacter(
  9857. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9858. {
  9859. side: {
  9860. height: math.unit(6, "feet"),
  9861. name: "Side",
  9862. image: {
  9863. source: "./media/characters/ailbhe/side.svg",
  9864. extra: 757 / 464,
  9865. bottom: 0.041
  9866. }
  9867. },
  9868. },
  9869. [
  9870. {
  9871. name: "Normal",
  9872. height: math.unit(1.07, "meters"),
  9873. default: true
  9874. },
  9875. ]
  9876. ))
  9877. characterMakers.push(() => makeCharacter(
  9878. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9879. {
  9880. front: {
  9881. height: math.unit(6, "feet"),
  9882. weight: math.unit(120, "kg"),
  9883. name: "Front",
  9884. image: {
  9885. source: "./media/characters/zevulfius/front.svg",
  9886. extra: 965 / 903
  9887. }
  9888. },
  9889. side: {
  9890. height: math.unit(6, "feet"),
  9891. weight: math.unit(120, "kg"),
  9892. name: "Side",
  9893. image: {
  9894. source: "./media/characters/zevulfius/side.svg",
  9895. extra: 939 / 900
  9896. }
  9897. },
  9898. back: {
  9899. height: math.unit(6, "feet"),
  9900. weight: math.unit(120, "kg"),
  9901. name: "Back",
  9902. image: {
  9903. source: "./media/characters/zevulfius/back.svg",
  9904. extra: 918 / 854,
  9905. bottom: 0.005
  9906. }
  9907. },
  9908. foot: {
  9909. height: math.unit(6 / 3.72, "feet"),
  9910. name: "Foot",
  9911. image: {
  9912. source: "./media/characters/zevulfius/foot.svg"
  9913. }
  9914. },
  9915. },
  9916. [
  9917. {
  9918. name: "Macro",
  9919. height: math.unit(750, "meters")
  9920. },
  9921. {
  9922. name: "Megamacro",
  9923. height: math.unit(20, "km"),
  9924. default: true
  9925. },
  9926. {
  9927. name: "Gigamacro",
  9928. height: math.unit(2000, "km")
  9929. },
  9930. {
  9931. name: "Teramacro",
  9932. height: math.unit(250000, "km")
  9933. },
  9934. ]
  9935. ))
  9936. characterMakers.push(() => makeCharacter(
  9937. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9938. {
  9939. front: {
  9940. height: math.unit(100, "feet"),
  9941. weight: math.unit(350, "kg"),
  9942. name: "Front",
  9943. image: {
  9944. source: "./media/characters/rikes/front.svg",
  9945. extra: 1565 / 1483,
  9946. bottom: 0.017
  9947. }
  9948. },
  9949. },
  9950. [
  9951. {
  9952. name: "Macro",
  9953. height: math.unit(100, "feet"),
  9954. default: true
  9955. },
  9956. ]
  9957. ))
  9958. characterMakers.push(() => makeCharacter(
  9959. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9960. {
  9961. anthro: {
  9962. height: math.unit(8, "feet"),
  9963. weight: math.unit(120, "kg"),
  9964. name: "Anthro",
  9965. image: {
  9966. source: "./media/characters/adam-silver-mane/anthro.svg",
  9967. extra: 5743 / 5339,
  9968. bottom: 0.07
  9969. }
  9970. },
  9971. taur: {
  9972. height: math.unit(16, "feet"),
  9973. weight: math.unit(1500, "kg"),
  9974. name: "Taur",
  9975. image: {
  9976. source: "./media/characters/adam-silver-mane/taur.svg",
  9977. extra: 1713 / 1571,
  9978. bottom: 0.01
  9979. }
  9980. },
  9981. },
  9982. [
  9983. {
  9984. name: "Normal",
  9985. height: math.unit(8, "feet")
  9986. },
  9987. {
  9988. name: "Minimacro",
  9989. height: math.unit(80, "feet")
  9990. },
  9991. {
  9992. name: "Macro",
  9993. height: math.unit(800, "feet"),
  9994. default: true
  9995. },
  9996. {
  9997. name: "Megamacro",
  9998. height: math.unit(8000, "feet")
  9999. },
  10000. {
  10001. name: "Gigamacro",
  10002. height: math.unit(800, "miles")
  10003. },
  10004. {
  10005. name: "Teramacro",
  10006. height: math.unit(80000, "miles")
  10007. },
  10008. {
  10009. name: "Celestial",
  10010. height: math.unit(8e6, "miles")
  10011. },
  10012. {
  10013. name: "Star Dragon",
  10014. height: math.unit(800000, "parsecs")
  10015. },
  10016. {
  10017. name: "Godly",
  10018. height: math.unit(800, "teraparsecs")
  10019. },
  10020. ]
  10021. ))
  10022. characterMakers.push(() => makeCharacter(
  10023. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10024. {
  10025. front: {
  10026. height: math.unit(6, "feet"),
  10027. weight: math.unit(150, "lb"),
  10028. name: "Front",
  10029. image: {
  10030. source: "./media/characters/ky'owin/front.svg",
  10031. extra: 3888 / 3068,
  10032. bottom: 0.015
  10033. }
  10034. },
  10035. },
  10036. [
  10037. {
  10038. name: "Normal",
  10039. height: math.unit(6 + 8 / 12, "feet")
  10040. },
  10041. {
  10042. name: "Large",
  10043. height: math.unit(68, "feet")
  10044. },
  10045. {
  10046. name: "Macro",
  10047. height: math.unit(132, "feet")
  10048. },
  10049. {
  10050. name: "Macro+",
  10051. height: math.unit(340, "feet")
  10052. },
  10053. {
  10054. name: "Macro++",
  10055. height: math.unit(680, "feet"),
  10056. default: true
  10057. },
  10058. {
  10059. name: "Megamacro",
  10060. height: math.unit(1, "mile")
  10061. },
  10062. {
  10063. name: "Megamacro+",
  10064. height: math.unit(10, "miles")
  10065. },
  10066. ]
  10067. ))
  10068. characterMakers.push(() => makeCharacter(
  10069. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10070. {
  10071. front: {
  10072. height: math.unit(4, "feet"),
  10073. weight: math.unit(50, "lb"),
  10074. name: "Front",
  10075. image: {
  10076. source: "./media/characters/mal/front.svg",
  10077. extra: 785 / 724,
  10078. bottom: 0.07
  10079. }
  10080. },
  10081. },
  10082. [
  10083. {
  10084. name: "Micro",
  10085. height: math.unit(4, "inches")
  10086. },
  10087. {
  10088. name: "Normal",
  10089. height: math.unit(4, "feet"),
  10090. default: true
  10091. },
  10092. {
  10093. name: "Macro",
  10094. height: math.unit(200, "feet")
  10095. },
  10096. ]
  10097. ))
  10098. characterMakers.push(() => makeCharacter(
  10099. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10100. {
  10101. front: {
  10102. height: math.unit(6, "feet"),
  10103. weight: math.unit(150, "lb"),
  10104. name: "Front",
  10105. image: {
  10106. source: "./media/characters/jordan-deware/front.svg",
  10107. extra: 1191 / 1012
  10108. }
  10109. },
  10110. },
  10111. [
  10112. {
  10113. name: "Nano",
  10114. height: math.unit(0.01, "mm")
  10115. },
  10116. {
  10117. name: "Minimicro",
  10118. height: math.unit(1, "mm")
  10119. },
  10120. {
  10121. name: "Micro",
  10122. height: math.unit(0.5, "inches")
  10123. },
  10124. {
  10125. name: "Normal",
  10126. height: math.unit(4, "feet"),
  10127. default: true
  10128. },
  10129. {
  10130. name: "Minimacro",
  10131. height: math.unit(40, "meters")
  10132. },
  10133. {
  10134. name: "Small Macro",
  10135. height: math.unit(400, "meters")
  10136. },
  10137. {
  10138. name: "Macro",
  10139. height: math.unit(4, "miles")
  10140. },
  10141. {
  10142. name: "Megamacro",
  10143. height: math.unit(40, "miles")
  10144. },
  10145. {
  10146. name: "Megamacro+",
  10147. height: math.unit(400, "miles")
  10148. },
  10149. {
  10150. name: "Gigamacro",
  10151. height: math.unit(400000, "miles")
  10152. },
  10153. ]
  10154. ))
  10155. characterMakers.push(() => makeCharacter(
  10156. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10157. {
  10158. side: {
  10159. height: math.unit(6, "feet"),
  10160. weight: math.unit(150, "lb"),
  10161. name: "Side",
  10162. image: {
  10163. source: "./media/characters/kimiko/side.svg",
  10164. extra: 600 / 358
  10165. }
  10166. },
  10167. },
  10168. [
  10169. {
  10170. name: "Normal",
  10171. height: math.unit(15, "feet"),
  10172. default: true
  10173. },
  10174. {
  10175. name: "Macro",
  10176. height: math.unit(220, "feet")
  10177. },
  10178. {
  10179. name: "Macro+",
  10180. height: math.unit(1450, "feet")
  10181. },
  10182. {
  10183. name: "Megamacro",
  10184. height: math.unit(11500, "feet")
  10185. },
  10186. {
  10187. name: "Gigamacro",
  10188. height: math.unit(9500, "miles")
  10189. },
  10190. {
  10191. name: "Teramacro",
  10192. height: math.unit(2208005005, "miles")
  10193. },
  10194. {
  10195. name: "Examacro",
  10196. height: math.unit(2750, "parsecs")
  10197. },
  10198. {
  10199. name: "Zettamacro",
  10200. height: math.unit(101500, "parsecs")
  10201. },
  10202. ]
  10203. ))
  10204. characterMakers.push(() => makeCharacter(
  10205. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10206. {
  10207. front: {
  10208. height: math.unit(6, "feet"),
  10209. weight: math.unit(70, "kg"),
  10210. name: "Front",
  10211. image: {
  10212. source: "./media/characters/andrew-sleepy/front.svg"
  10213. }
  10214. },
  10215. side: {
  10216. height: math.unit(6, "feet"),
  10217. weight: math.unit(70, "kg"),
  10218. name: "Side",
  10219. image: {
  10220. source: "./media/characters/andrew-sleepy/side.svg"
  10221. }
  10222. },
  10223. },
  10224. [
  10225. {
  10226. name: "Micro",
  10227. height: math.unit(1, "mm"),
  10228. default: true
  10229. },
  10230. ]
  10231. ))
  10232. characterMakers.push(() => makeCharacter(
  10233. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10234. {
  10235. front: {
  10236. height: math.unit(6, "feet"),
  10237. weight: math.unit(150, "lb"),
  10238. name: "Front",
  10239. image: {
  10240. source: "./media/characters/judio/front.svg",
  10241. extra: 1258 / 1110
  10242. }
  10243. },
  10244. },
  10245. [
  10246. {
  10247. name: "Normal",
  10248. height: math.unit(5 + 6 / 12, "feet")
  10249. },
  10250. {
  10251. name: "Macro",
  10252. height: math.unit(1000, "feet"),
  10253. default: true
  10254. },
  10255. {
  10256. name: "Megamacro",
  10257. height: math.unit(10, "miles")
  10258. },
  10259. ]
  10260. ))
  10261. characterMakers.push(() => makeCharacter(
  10262. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10263. {
  10264. front: {
  10265. height: math.unit(6, "feet"),
  10266. weight: math.unit(68, "kg"),
  10267. name: "Front",
  10268. image: {
  10269. source: "./media/characters/nomaxice/front.svg",
  10270. extra: 1498 / 1073,
  10271. bottom: 0.075
  10272. }
  10273. },
  10274. foot: {
  10275. height: math.unit(1.1, "feet"),
  10276. name: "Foot",
  10277. image: {
  10278. source: "./media/characters/nomaxice/foot.svg"
  10279. }
  10280. },
  10281. },
  10282. [
  10283. {
  10284. name: "Micro",
  10285. height: math.unit(8, "cm")
  10286. },
  10287. {
  10288. name: "Norm",
  10289. height: math.unit(1.82, "m")
  10290. },
  10291. {
  10292. name: "Norm+",
  10293. height: math.unit(8.8, "feet")
  10294. },
  10295. {
  10296. name: "Big",
  10297. height: math.unit(8, "meters"),
  10298. default: true
  10299. },
  10300. {
  10301. name: "Macro",
  10302. height: math.unit(18, "meters")
  10303. },
  10304. {
  10305. name: "Macro+",
  10306. height: math.unit(88, "meters")
  10307. },
  10308. ]
  10309. ))
  10310. characterMakers.push(() => makeCharacter(
  10311. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10312. {
  10313. front: {
  10314. height: math.unit(12, "feet"),
  10315. weight: math.unit(1.5, "tons"),
  10316. name: "Front",
  10317. image: {
  10318. source: "./media/characters/dydros/front.svg",
  10319. extra: 863 / 800,
  10320. bottom: 0.015
  10321. }
  10322. },
  10323. back: {
  10324. height: math.unit(12, "feet"),
  10325. weight: math.unit(1.5, "tons"),
  10326. name: "Back",
  10327. image: {
  10328. source: "./media/characters/dydros/back.svg",
  10329. extra: 900 / 843,
  10330. bottom: 0.005
  10331. }
  10332. },
  10333. },
  10334. [
  10335. {
  10336. name: "Normal",
  10337. height: math.unit(12, "feet"),
  10338. default: true
  10339. },
  10340. ]
  10341. ))
  10342. characterMakers.push(() => makeCharacter(
  10343. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10344. {
  10345. front: {
  10346. height: math.unit(6, "feet"),
  10347. weight: math.unit(100, "kg"),
  10348. name: "Front",
  10349. image: {
  10350. source: "./media/characters/riggi/front.svg",
  10351. extra: 5787 / 5303
  10352. }
  10353. },
  10354. hyper: {
  10355. height: math.unit(6 * 5 / 3, "feet"),
  10356. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10357. name: "Hyper",
  10358. image: {
  10359. source: "./media/characters/riggi/hyper.svg",
  10360. extra: 3595 / 3485
  10361. }
  10362. },
  10363. },
  10364. [
  10365. {
  10366. name: "Small Macro",
  10367. height: math.unit(50, "feet")
  10368. },
  10369. {
  10370. name: "Default",
  10371. height: math.unit(200, "feet"),
  10372. default: true
  10373. },
  10374. {
  10375. name: "Loom",
  10376. height: math.unit(10000, "feet")
  10377. },
  10378. {
  10379. name: "Cruising Altitude",
  10380. height: math.unit(30000, "feet")
  10381. },
  10382. {
  10383. name: "Megamacro",
  10384. height: math.unit(100, "miles")
  10385. },
  10386. {
  10387. name: "Continent Sized",
  10388. height: math.unit(2800, "miles")
  10389. },
  10390. {
  10391. name: "Earth Sized",
  10392. height: math.unit(8000, "miles")
  10393. },
  10394. ]
  10395. ))
  10396. characterMakers.push(() => makeCharacter(
  10397. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10398. {
  10399. front: {
  10400. height: math.unit(6, "feet"),
  10401. weight: math.unit(250, "lb"),
  10402. name: "Front",
  10403. image: {
  10404. source: "./media/characters/alexi/front.svg",
  10405. extra: 3483 / 3291,
  10406. bottom: 0.04
  10407. }
  10408. },
  10409. back: {
  10410. height: math.unit(6, "feet"),
  10411. weight: math.unit(250, "lb"),
  10412. name: "Back",
  10413. image: {
  10414. source: "./media/characters/alexi/back.svg",
  10415. extra: 3533 / 3356,
  10416. bottom: 0.021
  10417. }
  10418. },
  10419. frontTransforming: {
  10420. height: math.unit(8.58, "feet"),
  10421. weight: math.unit(1300, "lb"),
  10422. name: "Transforming",
  10423. image: {
  10424. source: "./media/characters/alexi/front-transforming.svg",
  10425. extra: 437 / 409,
  10426. bottom: 19 / 458.66
  10427. }
  10428. },
  10429. frontTransformed: {
  10430. height: math.unit(12.5, "feet"),
  10431. weight: math.unit(4000, "lb"),
  10432. name: "Transformed",
  10433. image: {
  10434. source: "./media/characters/alexi/front-transformed.svg",
  10435. extra: 639 / 614,
  10436. bottom: 30.55 / 671
  10437. }
  10438. },
  10439. },
  10440. [
  10441. {
  10442. name: "Normal",
  10443. height: math.unit(14, "feet"),
  10444. default: true
  10445. },
  10446. {
  10447. name: "Minimacro",
  10448. height: math.unit(30, "meters")
  10449. },
  10450. {
  10451. name: "Macro",
  10452. height: math.unit(500, "meters")
  10453. },
  10454. {
  10455. name: "Megamacro",
  10456. height: math.unit(9000, "km")
  10457. },
  10458. {
  10459. name: "Teramacro",
  10460. height: math.unit(384000, "km")
  10461. },
  10462. ]
  10463. ))
  10464. characterMakers.push(() => makeCharacter(
  10465. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10466. {
  10467. front: {
  10468. height: math.unit(6, "feet"),
  10469. weight: math.unit(150, "lb"),
  10470. name: "Front",
  10471. image: {
  10472. source: "./media/characters/kayroo/front.svg",
  10473. extra: 1153 / 1038,
  10474. bottom: 0.06
  10475. }
  10476. },
  10477. foot: {
  10478. height: math.unit(6, "feet"),
  10479. weight: math.unit(150, "lb"),
  10480. name: "Foot",
  10481. image: {
  10482. source: "./media/characters/kayroo/foot.svg"
  10483. }
  10484. },
  10485. },
  10486. [
  10487. {
  10488. name: "Normal",
  10489. height: math.unit(8, "feet"),
  10490. default: true
  10491. },
  10492. {
  10493. name: "Minimacro",
  10494. height: math.unit(250, "feet")
  10495. },
  10496. {
  10497. name: "Macro",
  10498. height: math.unit(2800, "feet")
  10499. },
  10500. {
  10501. name: "Megamacro",
  10502. height: math.unit(5200, "feet")
  10503. },
  10504. {
  10505. name: "Gigamacro",
  10506. height: math.unit(27000, "feet")
  10507. },
  10508. {
  10509. name: "Omega",
  10510. height: math.unit(45000, "feet")
  10511. },
  10512. ]
  10513. ))
  10514. characterMakers.push(() => makeCharacter(
  10515. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10516. {
  10517. front: {
  10518. height: math.unit(18, "feet"),
  10519. weight: math.unit(5800, "lb"),
  10520. name: "Front",
  10521. image: {
  10522. source: "./media/characters/rhys/front.svg",
  10523. extra: 3386 / 3090,
  10524. bottom: 0.07
  10525. }
  10526. },
  10527. },
  10528. [
  10529. {
  10530. name: "Normal",
  10531. height: math.unit(18, "feet"),
  10532. default: true
  10533. },
  10534. {
  10535. name: "Working Size",
  10536. height: math.unit(200, "feet")
  10537. },
  10538. {
  10539. name: "Demolition Size",
  10540. height: math.unit(2000, "feet")
  10541. },
  10542. {
  10543. name: "Maximum Licensed Size",
  10544. height: math.unit(5, "miles")
  10545. },
  10546. {
  10547. name: "Maximum Observed Size",
  10548. height: math.unit(10, "yottameters")
  10549. },
  10550. ]
  10551. ))
  10552. characterMakers.push(() => makeCharacter(
  10553. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10554. {
  10555. front: {
  10556. height: math.unit(6, "feet"),
  10557. weight: math.unit(250, "lb"),
  10558. name: "Front",
  10559. image: {
  10560. source: "./media/characters/toto/front.svg",
  10561. extra: 527 / 479,
  10562. bottom: 0.05
  10563. }
  10564. },
  10565. },
  10566. [
  10567. {
  10568. name: "Micro",
  10569. height: math.unit(3, "feet")
  10570. },
  10571. {
  10572. name: "Normal",
  10573. height: math.unit(10, "feet")
  10574. },
  10575. {
  10576. name: "Macro",
  10577. height: math.unit(150, "feet"),
  10578. default: true
  10579. },
  10580. {
  10581. name: "Megamacro",
  10582. height: math.unit(1200, "feet")
  10583. },
  10584. ]
  10585. ))
  10586. characterMakers.push(() => makeCharacter(
  10587. { name: "King", species: ["lion"], tags: ["anthro"] },
  10588. {
  10589. back: {
  10590. height: math.unit(6, "feet"),
  10591. weight: math.unit(150, "lb"),
  10592. name: "Back",
  10593. image: {
  10594. source: "./media/characters/king/back.svg"
  10595. }
  10596. },
  10597. },
  10598. [
  10599. {
  10600. name: "Micro",
  10601. height: math.unit(2, "inches")
  10602. },
  10603. {
  10604. name: "Normal",
  10605. height: math.unit(8, "feet")
  10606. },
  10607. {
  10608. name: "Macro",
  10609. height: math.unit(200, "feet"),
  10610. default: true
  10611. },
  10612. {
  10613. name: "Megamacro",
  10614. height: math.unit(50, "miles")
  10615. },
  10616. ]
  10617. ))
  10618. characterMakers.push(() => makeCharacter(
  10619. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10620. {
  10621. anthro: {
  10622. height: math.unit(6 + 5 / 12, "feet"),
  10623. weight: math.unit(280, "lb"),
  10624. name: "Anthro",
  10625. image: {
  10626. source: "./media/characters/cordite/anthro.svg",
  10627. extra: 1986 / 1905,
  10628. bottom: 0.025
  10629. }
  10630. },
  10631. feral: {
  10632. height: math.unit(2, "feet"),
  10633. weight: math.unit(90, "lb"),
  10634. name: "Feral",
  10635. image: {
  10636. source: "./media/characters/cordite/feral.svg",
  10637. extra: 1260 / 755,
  10638. bottom: 0.05
  10639. }
  10640. },
  10641. },
  10642. [
  10643. {
  10644. name: "Normal",
  10645. height: math.unit(6 + 5 / 12, "feet"),
  10646. default: true
  10647. },
  10648. ]
  10649. ))
  10650. characterMakers.push(() => makeCharacter(
  10651. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10652. {
  10653. front: {
  10654. height: math.unit(6, "feet"),
  10655. weight: math.unit(150, "lb"),
  10656. name: "Front",
  10657. image: {
  10658. source: "./media/characters/pianostrong/front.svg",
  10659. extra: 6577 / 6254,
  10660. bottom: 0.02
  10661. }
  10662. },
  10663. side: {
  10664. height: math.unit(6, "feet"),
  10665. weight: math.unit(150, "lb"),
  10666. name: "Side",
  10667. image: {
  10668. source: "./media/characters/pianostrong/side.svg",
  10669. extra: 6106 / 5730
  10670. }
  10671. },
  10672. back: {
  10673. height: math.unit(6, "feet"),
  10674. weight: math.unit(150, "lb"),
  10675. name: "Back",
  10676. image: {
  10677. source: "./media/characters/pianostrong/back.svg",
  10678. extra: 6085 / 5733,
  10679. bottom: 0.01
  10680. }
  10681. },
  10682. },
  10683. [
  10684. {
  10685. name: "Macro",
  10686. height: math.unit(100, "feet")
  10687. },
  10688. {
  10689. name: "Macro+",
  10690. height: math.unit(300, "feet"),
  10691. default: true
  10692. },
  10693. {
  10694. name: "Macro++",
  10695. height: math.unit(1000, "feet")
  10696. },
  10697. ]
  10698. ))
  10699. characterMakers.push(() => makeCharacter(
  10700. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10701. {
  10702. front: {
  10703. height: math.unit(6, "feet"),
  10704. weight: math.unit(150, "lb"),
  10705. name: "Front",
  10706. image: {
  10707. source: "./media/characters/kona/front.svg",
  10708. extra: 2960 / 2629,
  10709. bottom: 0.005
  10710. }
  10711. },
  10712. },
  10713. [
  10714. {
  10715. name: "Normal",
  10716. height: math.unit(11 + 8 / 12, "feet")
  10717. },
  10718. {
  10719. name: "Macro",
  10720. height: math.unit(850, "feet"),
  10721. default: true
  10722. },
  10723. {
  10724. name: "Macro+",
  10725. height: math.unit(1.5, "km"),
  10726. default: true
  10727. },
  10728. {
  10729. name: "Megamacro",
  10730. height: math.unit(80, "miles")
  10731. },
  10732. {
  10733. name: "Gigamacro",
  10734. height: math.unit(3500, "miles")
  10735. },
  10736. ]
  10737. ))
  10738. characterMakers.push(() => makeCharacter(
  10739. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10740. {
  10741. side: {
  10742. height: math.unit(1.9, "meters"),
  10743. weight: math.unit(326, "kg"),
  10744. name: "Side",
  10745. image: {
  10746. source: "./media/characters/levi/side.svg",
  10747. extra: 1704 / 1334,
  10748. bottom: 0.02
  10749. }
  10750. },
  10751. },
  10752. [
  10753. {
  10754. name: "Normal",
  10755. height: math.unit(1.9, "meters"),
  10756. default: true
  10757. },
  10758. {
  10759. name: "Macro",
  10760. height: math.unit(20, "meters")
  10761. },
  10762. {
  10763. name: "Macro+",
  10764. height: math.unit(200, "meters")
  10765. },
  10766. {
  10767. name: "Megamacro",
  10768. height: math.unit(2, "km")
  10769. },
  10770. {
  10771. name: "Megamacro+",
  10772. height: math.unit(20, "km")
  10773. },
  10774. {
  10775. name: "Gigamacro",
  10776. height: math.unit(2500, "km")
  10777. },
  10778. {
  10779. name: "Gigamacro+",
  10780. height: math.unit(120000, "km")
  10781. },
  10782. {
  10783. name: "Teramacro",
  10784. height: math.unit(7.77e6, "km")
  10785. },
  10786. ]
  10787. ))
  10788. characterMakers.push(() => makeCharacter(
  10789. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10790. {
  10791. front: {
  10792. height: math.unit(6 + 4 / 12, "feet"),
  10793. weight: math.unit(188, "lb"),
  10794. name: "Front",
  10795. image: {
  10796. source: "./media/characters/bmc/front.svg",
  10797. extra: 1067 / 1022,
  10798. bottom: 0.047
  10799. }
  10800. },
  10801. },
  10802. [
  10803. {
  10804. name: "Human-sized",
  10805. height: math.unit(6 + 4 / 12, "feet")
  10806. },
  10807. {
  10808. name: "Small",
  10809. height: math.unit(250, "feet")
  10810. },
  10811. {
  10812. name: "Normal",
  10813. height: math.unit(1250, "feet"),
  10814. default: true
  10815. },
  10816. {
  10817. name: "Good Day",
  10818. height: math.unit(88, "miles")
  10819. },
  10820. {
  10821. name: "Largest Measured Size",
  10822. height: math.unit(11.2e6, "lightyears")
  10823. },
  10824. ]
  10825. ))
  10826. characterMakers.push(() => makeCharacter(
  10827. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10828. {
  10829. front: {
  10830. height: math.unit(20, "feet"),
  10831. weight: math.unit(2016, "kg"),
  10832. name: "Front",
  10833. image: {
  10834. source: "./media/characters/sven-the-kaiju/front.svg",
  10835. extra: 1479 / 1449,
  10836. bottom: 0.05
  10837. }
  10838. },
  10839. },
  10840. [
  10841. {
  10842. name: "Fairy",
  10843. height: math.unit(6, "inches")
  10844. },
  10845. {
  10846. name: "Normal",
  10847. height: math.unit(20, "feet"),
  10848. default: true
  10849. },
  10850. {
  10851. name: "Rampage",
  10852. height: math.unit(200, "feet")
  10853. },
  10854. {
  10855. name: "Archfey Forest Guardian",
  10856. height: math.unit(1, "mile")
  10857. },
  10858. ]
  10859. ))
  10860. characterMakers.push(() => makeCharacter(
  10861. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10862. {
  10863. front: {
  10864. height: math.unit(4, "meters"),
  10865. weight: math.unit(2, "tons"),
  10866. name: "Front",
  10867. image: {
  10868. source: "./media/characters/marik/front.svg",
  10869. extra: 1057 / 1003,
  10870. bottom: 0.08
  10871. }
  10872. },
  10873. },
  10874. [
  10875. {
  10876. name: "Normal",
  10877. height: math.unit(4, "meters"),
  10878. default: true
  10879. },
  10880. {
  10881. name: "Macro",
  10882. height: math.unit(20, "meters")
  10883. },
  10884. {
  10885. name: "Megamacro",
  10886. height: math.unit(50, "km")
  10887. },
  10888. {
  10889. name: "Gigamacro",
  10890. height: math.unit(100, "km")
  10891. },
  10892. {
  10893. name: "Alpha Macro",
  10894. height: math.unit(7.88e7, "yottameters")
  10895. },
  10896. ]
  10897. ))
  10898. characterMakers.push(() => makeCharacter(
  10899. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10900. {
  10901. front: {
  10902. height: math.unit(6, "feet"),
  10903. weight: math.unit(110, "lb"),
  10904. name: "Front",
  10905. image: {
  10906. source: "./media/characters/mel/front.svg",
  10907. extra: 736 / 617,
  10908. bottom: 0.017
  10909. }
  10910. },
  10911. },
  10912. [
  10913. {
  10914. name: "Pico",
  10915. height: math.unit(3, "pm")
  10916. },
  10917. {
  10918. name: "Nano",
  10919. height: math.unit(3, "nm")
  10920. },
  10921. {
  10922. name: "Micro",
  10923. height: math.unit(0.3, "mm"),
  10924. default: true
  10925. },
  10926. {
  10927. name: "Micro+",
  10928. height: math.unit(3, "mm")
  10929. },
  10930. {
  10931. name: "Normal",
  10932. height: math.unit(5 + 10.5 / 12, "feet")
  10933. },
  10934. ]
  10935. ))
  10936. characterMakers.push(() => makeCharacter(
  10937. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10938. {
  10939. kaiju: {
  10940. height: math.unit(1.75, "meters"),
  10941. weight: math.unit(55, "kg"),
  10942. name: "Kaiju",
  10943. image: {
  10944. source: "./media/characters/lykonous/kaiju.svg",
  10945. extra: 1055 / 946,
  10946. bottom: 0.135
  10947. }
  10948. },
  10949. },
  10950. [
  10951. {
  10952. name: "Normal",
  10953. height: math.unit(2.5, "meters"),
  10954. default: true
  10955. },
  10956. {
  10957. name: "Kaiju Dragon",
  10958. height: math.unit(60, "meters")
  10959. },
  10960. {
  10961. name: "Mega Kaiju",
  10962. height: math.unit(120, "km")
  10963. },
  10964. {
  10965. name: "Giga Kaiju",
  10966. height: math.unit(200, "megameters")
  10967. },
  10968. {
  10969. name: "Terra Kaiju",
  10970. height: math.unit(400, "gigameters")
  10971. },
  10972. {
  10973. name: "Kaiju Dragon God",
  10974. height: math.unit(13000, "exaparsecs")
  10975. },
  10976. ]
  10977. ))
  10978. characterMakers.push(() => makeCharacter(
  10979. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10980. {
  10981. front: {
  10982. height: math.unit(6, "feet"),
  10983. weight: math.unit(150, "lb"),
  10984. name: "Front",
  10985. image: {
  10986. source: "./media/characters/blü/front.svg",
  10987. extra: 1883 / 1564,
  10988. bottom: 0.031
  10989. }
  10990. },
  10991. },
  10992. [
  10993. {
  10994. name: "Normal",
  10995. height: math.unit(13, "feet"),
  10996. default: true
  10997. },
  10998. {
  10999. name: "Big Boi",
  11000. height: math.unit(150, "meters")
  11001. },
  11002. {
  11003. name: "Mini Stomper",
  11004. height: math.unit(300, "meters")
  11005. },
  11006. {
  11007. name: "Macro",
  11008. height: math.unit(1000, "meters")
  11009. },
  11010. {
  11011. name: "Megamacro",
  11012. height: math.unit(11000, "meters")
  11013. },
  11014. {
  11015. name: "Gigamacro",
  11016. height: math.unit(11000, "km")
  11017. },
  11018. {
  11019. name: "Teramacro",
  11020. height: math.unit(420000, "km")
  11021. },
  11022. {
  11023. name: "Examacro",
  11024. height: math.unit(120, "parsecs")
  11025. },
  11026. {
  11027. name: "God Tho",
  11028. height: math.unit(98000000000, "parsecs")
  11029. },
  11030. ]
  11031. ))
  11032. characterMakers.push(() => makeCharacter(
  11033. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11034. {
  11035. taurFront: {
  11036. height: math.unit(6, "feet"),
  11037. weight: math.unit(200, "lb"),
  11038. name: "Taur (Front)",
  11039. image: {
  11040. source: "./media/characters/scales/taur-front.svg",
  11041. extra: 1,
  11042. bottom: 0.05
  11043. }
  11044. },
  11045. taurBack: {
  11046. height: math.unit(6, "feet"),
  11047. weight: math.unit(200, "lb"),
  11048. name: "Taur (Back)",
  11049. image: {
  11050. source: "./media/characters/scales/taur-back.svg",
  11051. extra: 1,
  11052. bottom: 0.08
  11053. }
  11054. },
  11055. anthro: {
  11056. height: math.unit(6 * 7 / 12, "feet"),
  11057. weight: math.unit(100, "lb"),
  11058. name: "Anthro",
  11059. image: {
  11060. source: "./media/characters/scales/anthro.svg",
  11061. extra: 1,
  11062. bottom: 0.06
  11063. }
  11064. },
  11065. },
  11066. [
  11067. {
  11068. name: "Normal",
  11069. height: math.unit(12, "feet"),
  11070. default: true
  11071. },
  11072. ]
  11073. ))
  11074. characterMakers.push(() => makeCharacter(
  11075. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11076. {
  11077. front: {
  11078. height: math.unit(6, "feet"),
  11079. weight: math.unit(150, "lb"),
  11080. name: "Front",
  11081. image: {
  11082. source: "./media/characters/koragos/front.svg",
  11083. extra: 841 / 794,
  11084. bottom: 0.035
  11085. }
  11086. },
  11087. back: {
  11088. height: math.unit(6, "feet"),
  11089. weight: math.unit(150, "lb"),
  11090. name: "Back",
  11091. image: {
  11092. source: "./media/characters/koragos/back.svg",
  11093. extra: 841 / 810,
  11094. bottom: 0.022
  11095. }
  11096. },
  11097. },
  11098. [
  11099. {
  11100. name: "Normal",
  11101. height: math.unit(6 + 11 / 12, "feet"),
  11102. default: true
  11103. },
  11104. {
  11105. name: "Macro",
  11106. height: math.unit(490, "feet")
  11107. },
  11108. {
  11109. name: "Megamacro",
  11110. height: math.unit(10, "miles")
  11111. },
  11112. {
  11113. name: "Gigamacro",
  11114. height: math.unit(50, "miles")
  11115. },
  11116. ]
  11117. ))
  11118. characterMakers.push(() => makeCharacter(
  11119. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11120. {
  11121. front: {
  11122. height: math.unit(6, "feet"),
  11123. weight: math.unit(250, "lb"),
  11124. name: "Front",
  11125. image: {
  11126. source: "./media/characters/xylrem/front.svg",
  11127. extra: 3323 / 3050,
  11128. bottom: 0.065
  11129. }
  11130. },
  11131. },
  11132. [
  11133. {
  11134. name: "Micro",
  11135. height: math.unit(4, "feet")
  11136. },
  11137. {
  11138. name: "Normal",
  11139. height: math.unit(16, "feet"),
  11140. default: true
  11141. },
  11142. {
  11143. name: "Macro",
  11144. height: math.unit(2720, "feet")
  11145. },
  11146. {
  11147. name: "Megamacro",
  11148. height: math.unit(25000, "miles")
  11149. },
  11150. ]
  11151. ))
  11152. characterMakers.push(() => makeCharacter(
  11153. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11154. {
  11155. front: {
  11156. height: math.unit(8, "feet"),
  11157. weight: math.unit(250, "kg"),
  11158. name: "Front",
  11159. image: {
  11160. source: "./media/characters/ikideru/front.svg",
  11161. extra: 930 / 870,
  11162. bottom: 0.087
  11163. }
  11164. },
  11165. back: {
  11166. height: math.unit(8, "feet"),
  11167. weight: math.unit(250, "kg"),
  11168. name: "Back",
  11169. image: {
  11170. source: "./media/characters/ikideru/back.svg",
  11171. extra: 919 / 852,
  11172. bottom: 0.055
  11173. }
  11174. },
  11175. },
  11176. [
  11177. {
  11178. name: "Rare",
  11179. height: math.unit(8, "feet"),
  11180. default: true
  11181. },
  11182. {
  11183. name: "Playful Loom",
  11184. height: math.unit(80, "feet")
  11185. },
  11186. {
  11187. name: "City Leaner",
  11188. height: math.unit(230, "feet")
  11189. },
  11190. {
  11191. name: "Megamacro",
  11192. height: math.unit(2500, "feet")
  11193. },
  11194. {
  11195. name: "Gigamacro",
  11196. height: math.unit(26400, "feet")
  11197. },
  11198. {
  11199. name: "Tectonic Shifter",
  11200. height: math.unit(1.7, "megameters")
  11201. },
  11202. {
  11203. name: "Planet Carer",
  11204. height: math.unit(21, "megameters")
  11205. },
  11206. {
  11207. name: "God",
  11208. height: math.unit(11157.22, "parsecs")
  11209. },
  11210. ]
  11211. ))
  11212. characterMakers.push(() => makeCharacter(
  11213. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11214. {
  11215. front: {
  11216. height: math.unit(6, "feet"),
  11217. weight: math.unit(120, "lb"),
  11218. name: "Front",
  11219. image: {
  11220. source: "./media/characters/neo/front.svg"
  11221. }
  11222. },
  11223. },
  11224. [
  11225. {
  11226. name: "Micro",
  11227. height: math.unit(2, "inches"),
  11228. default: true
  11229. },
  11230. {
  11231. name: "Human Size",
  11232. height: math.unit(5 + 8 / 12, "feet")
  11233. },
  11234. ]
  11235. ))
  11236. characterMakers.push(() => makeCharacter(
  11237. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11238. {
  11239. front: {
  11240. height: math.unit(13 + 10 / 12, "feet"),
  11241. weight: math.unit(5320, "lb"),
  11242. name: "Front",
  11243. image: {
  11244. source: "./media/characters/chauncey-chantz/front.svg",
  11245. extra: 1587 / 1435,
  11246. bottom: 0.02
  11247. }
  11248. },
  11249. },
  11250. [
  11251. {
  11252. name: "Normal",
  11253. height: math.unit(13 + 10 / 12, "feet"),
  11254. default: true
  11255. },
  11256. {
  11257. name: "Macro",
  11258. height: math.unit(45, "feet")
  11259. },
  11260. {
  11261. name: "Megamacro",
  11262. height: math.unit(250, "miles")
  11263. },
  11264. {
  11265. name: "Planetary",
  11266. height: math.unit(10000, "miles")
  11267. },
  11268. {
  11269. name: "Galactic",
  11270. height: math.unit(40000, "parsecs")
  11271. },
  11272. {
  11273. name: "Universal",
  11274. height: math.unit(1, "yottameter")
  11275. },
  11276. ]
  11277. ))
  11278. characterMakers.push(() => makeCharacter(
  11279. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11280. {
  11281. front: {
  11282. height: math.unit(6, "feet"),
  11283. weight: math.unit(150, "lb"),
  11284. name: "Front",
  11285. image: {
  11286. source: "./media/characters/epifox/front.svg",
  11287. extra: 1,
  11288. bottom: 0.075
  11289. }
  11290. },
  11291. },
  11292. [
  11293. {
  11294. name: "Micro",
  11295. height: math.unit(6, "inches")
  11296. },
  11297. {
  11298. name: "Normal",
  11299. height: math.unit(12, "feet"),
  11300. default: true
  11301. },
  11302. {
  11303. name: "Macro",
  11304. height: math.unit(3810, "feet")
  11305. },
  11306. {
  11307. name: "Megamacro",
  11308. height: math.unit(500, "miles")
  11309. },
  11310. ]
  11311. ))
  11312. characterMakers.push(() => makeCharacter(
  11313. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11314. {
  11315. front: {
  11316. height: math.unit(1.8796, "m"),
  11317. weight: math.unit(230, "lb"),
  11318. name: "Front",
  11319. image: {
  11320. source: "./media/characters/colin-t/front.svg",
  11321. extra: 1272 / 1193,
  11322. bottom: 0.07
  11323. }
  11324. },
  11325. },
  11326. [
  11327. {
  11328. name: "Micro",
  11329. height: math.unit(0.571, "meters")
  11330. },
  11331. {
  11332. name: "Normal",
  11333. height: math.unit(1.8796, "meters"),
  11334. default: true
  11335. },
  11336. {
  11337. name: "Tall",
  11338. height: math.unit(4, "meters")
  11339. },
  11340. {
  11341. name: "Macro",
  11342. height: math.unit(67.241, "meters")
  11343. },
  11344. {
  11345. name: "Megamacro",
  11346. height: math.unit(371.856, "meters")
  11347. },
  11348. {
  11349. name: "Planetary",
  11350. height: math.unit(12631.5689, "km")
  11351. },
  11352. ]
  11353. ))
  11354. characterMakers.push(() => makeCharacter(
  11355. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11356. {
  11357. front: {
  11358. height: math.unit(1.85, "meters"),
  11359. weight: math.unit(80, "kg"),
  11360. name: "Front",
  11361. image: {
  11362. source: "./media/characters/matvei/front.svg",
  11363. extra: 614 / 594,
  11364. bottom: 0.01
  11365. }
  11366. },
  11367. },
  11368. [
  11369. {
  11370. name: "Normal",
  11371. height: math.unit(1.85, "meters"),
  11372. default: true
  11373. },
  11374. ]
  11375. ))
  11376. characterMakers.push(() => makeCharacter(
  11377. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11378. {
  11379. front: {
  11380. height: math.unit(5 + 9 / 12, "feet"),
  11381. weight: math.unit(70, "lb"),
  11382. name: "Front",
  11383. image: {
  11384. source: "./media/characters/quincy/front.svg",
  11385. extra: 3041 / 2751
  11386. }
  11387. },
  11388. back: {
  11389. height: math.unit(5 + 9 / 12, "feet"),
  11390. weight: math.unit(70, "lb"),
  11391. name: "Back",
  11392. image: {
  11393. source: "./media/characters/quincy/back.svg",
  11394. extra: 3041 / 2751
  11395. }
  11396. },
  11397. flying: {
  11398. height: math.unit(5 + 4 / 12, "feet"),
  11399. weight: math.unit(70, "lb"),
  11400. name: "Flying",
  11401. image: {
  11402. source: "./media/characters/quincy/flying.svg",
  11403. extra: 1044 / 930
  11404. }
  11405. },
  11406. },
  11407. [
  11408. {
  11409. name: "Micro",
  11410. height: math.unit(3, "cm")
  11411. },
  11412. {
  11413. name: "Normal",
  11414. height: math.unit(5 + 9 / 12, "feet")
  11415. },
  11416. {
  11417. name: "Macro",
  11418. height: math.unit(200, "meters"),
  11419. default: true
  11420. },
  11421. {
  11422. name: "Megamacro",
  11423. height: math.unit(1000, "meters")
  11424. },
  11425. ]
  11426. ))
  11427. characterMakers.push(() => makeCharacter(
  11428. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11429. {
  11430. front: {
  11431. height: math.unit(4 + 7 / 12, "feet"),
  11432. weight: math.unit(50, "lb"),
  11433. name: "Front",
  11434. image: {
  11435. source: "./media/characters/vanrel/front.svg",
  11436. extra: 1,
  11437. bottom: 0.02
  11438. }
  11439. },
  11440. frontAlt: {
  11441. height: math.unit(4 + 7 / 12, "feet"),
  11442. weight: math.unit(50, "lb"),
  11443. name: "Front-alt",
  11444. image: {
  11445. source: "./media/characters/vanrel/front-alt.svg",
  11446. extra: 1,
  11447. bottom: 15 / 1511
  11448. }
  11449. },
  11450. elemental: {
  11451. height: math.unit(3, "feet"),
  11452. weight: math.unit(50, "lb"),
  11453. name: "Elemental",
  11454. image: {
  11455. source: "./media/characters/vanrel/elemental.svg",
  11456. extra: 192.3 / 162.8,
  11457. bottom: 1.79 / 194.17
  11458. }
  11459. },
  11460. side: {
  11461. height: math.unit(4 + 7 / 12, "feet"),
  11462. weight: math.unit(50, "lb"),
  11463. name: "Side",
  11464. image: {
  11465. source: "./media/characters/vanrel/side.svg",
  11466. extra: 1,
  11467. bottom: 0.025
  11468. }
  11469. },
  11470. tome: {
  11471. height: math.unit(1.35, "feet"),
  11472. weight: math.unit(10, "lb"),
  11473. name: "Vanrel's Tome",
  11474. rename: true,
  11475. image: {
  11476. source: "./media/characters/vanrel/tome.svg"
  11477. }
  11478. },
  11479. beans: {
  11480. height: math.unit(0.89, "feet"),
  11481. name: "Beans",
  11482. image: {
  11483. source: "./media/characters/vanrel/beans.svg"
  11484. }
  11485. },
  11486. },
  11487. [
  11488. {
  11489. name: "Normal",
  11490. height: math.unit(4 + 7 / 12, "feet"),
  11491. default: true
  11492. },
  11493. ]
  11494. ))
  11495. characterMakers.push(() => makeCharacter(
  11496. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11497. {
  11498. front: {
  11499. height: math.unit(7 + 5 / 12, "feet"),
  11500. weight: math.unit(150, "lb"),
  11501. name: "Front",
  11502. image: {
  11503. source: "./media/characters/kuiper-vanrel/front.svg",
  11504. extra: 1118 / 1068,
  11505. bottom: 0.09
  11506. }
  11507. },
  11508. foot: {
  11509. height: math.unit(0.55, "meters"),
  11510. name: "Foot",
  11511. image: {
  11512. source: "./media/characters/kuiper-vanrel/foot.svg",
  11513. }
  11514. },
  11515. battle: {
  11516. height: math.unit(6.824, "feet"),
  11517. weight: math.unit(150, "lb"),
  11518. name: "Battle",
  11519. image: {
  11520. source: "./media/characters/kuiper-vanrel/battle.svg",
  11521. extra: 1466 / 1327,
  11522. bottom: 29 / 1492.5
  11523. }
  11524. },
  11525. battleAlt: {
  11526. height: math.unit(6.824, "feet"),
  11527. weight: math.unit(150, "lb"),
  11528. name: "Battle (Alt)",
  11529. image: {
  11530. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11531. extra: 2081 / 1965,
  11532. bottom: 40 / 2121
  11533. }
  11534. },
  11535. },
  11536. [
  11537. {
  11538. name: "Normal",
  11539. height: math.unit(7 + 5 / 12, "feet"),
  11540. default: true
  11541. },
  11542. ]
  11543. ))
  11544. characterMakers.push(() => makeCharacter(
  11545. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11546. {
  11547. front: {
  11548. height: math.unit(8 + 5 / 12, "feet"),
  11549. weight: math.unit(150, "lb"),
  11550. name: "Front",
  11551. image: {
  11552. source: "./media/characters/keset-vanrel/front.svg",
  11553. extra: 1150 / 1084,
  11554. bottom: 0.05
  11555. }
  11556. },
  11557. hand: {
  11558. height: math.unit(0.6, "meters"),
  11559. name: "Hand",
  11560. image: {
  11561. source: "./media/characters/keset-vanrel/hand.svg"
  11562. }
  11563. },
  11564. foot: {
  11565. height: math.unit(0.94978, "meters"),
  11566. name: "Foot",
  11567. image: {
  11568. source: "./media/characters/keset-vanrel/foot.svg"
  11569. }
  11570. },
  11571. battle: {
  11572. height: math.unit(7.408, "feet"),
  11573. weight: math.unit(150, "lb"),
  11574. name: "Battle",
  11575. image: {
  11576. source: "./media/characters/keset-vanrel/battle.svg",
  11577. extra: 1890 / 1386,
  11578. bottom: 73.28 / 1970
  11579. }
  11580. },
  11581. },
  11582. [
  11583. {
  11584. name: "Normal",
  11585. height: math.unit(8 + 5 / 12, "feet"),
  11586. default: true
  11587. },
  11588. ]
  11589. ))
  11590. characterMakers.push(() => makeCharacter(
  11591. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11592. {
  11593. front: {
  11594. height: math.unit(6, "feet"),
  11595. weight: math.unit(150, "lb"),
  11596. name: "Front",
  11597. image: {
  11598. source: "./media/characters/neos/front.svg",
  11599. extra: 1696 / 992,
  11600. bottom: 0.14
  11601. }
  11602. },
  11603. },
  11604. [
  11605. {
  11606. name: "Normal",
  11607. height: math.unit(54, "cm"),
  11608. default: true
  11609. },
  11610. {
  11611. name: "Macro",
  11612. height: math.unit(100, "m")
  11613. },
  11614. {
  11615. name: "Megamacro",
  11616. height: math.unit(10, "km")
  11617. },
  11618. {
  11619. name: "Megamacro+",
  11620. height: math.unit(100, "km")
  11621. },
  11622. {
  11623. name: "Gigamacro",
  11624. height: math.unit(100, "Mm")
  11625. },
  11626. {
  11627. name: "Teramacro",
  11628. height: math.unit(100, "Gm")
  11629. },
  11630. {
  11631. name: "Examacro",
  11632. height: math.unit(100, "Em")
  11633. },
  11634. {
  11635. name: "Godly",
  11636. height: math.unit(10000, "Ym")
  11637. },
  11638. {
  11639. name: "Beyond Godly",
  11640. height: math.unit(25, "multiverses")
  11641. },
  11642. ]
  11643. ))
  11644. characterMakers.push(() => makeCharacter(
  11645. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11646. {
  11647. feminine: {
  11648. height: math.unit(5, "feet"),
  11649. weight: math.unit(100, "lb"),
  11650. name: "Feminine",
  11651. image: {
  11652. source: "./media/characters/sammy-mouse/feminine.svg",
  11653. extra: 2526 / 2425,
  11654. bottom: 0.123
  11655. }
  11656. },
  11657. masculine: {
  11658. height: math.unit(5, "feet"),
  11659. weight: math.unit(100, "lb"),
  11660. name: "Masculine",
  11661. image: {
  11662. source: "./media/characters/sammy-mouse/masculine.svg",
  11663. extra: 2526 / 2425,
  11664. bottom: 0.123
  11665. }
  11666. },
  11667. },
  11668. [
  11669. {
  11670. name: "Micro",
  11671. height: math.unit(5, "inches")
  11672. },
  11673. {
  11674. name: "Normal",
  11675. height: math.unit(5, "feet"),
  11676. default: true
  11677. },
  11678. {
  11679. name: "Macro",
  11680. height: math.unit(60, "feet")
  11681. },
  11682. ]
  11683. ))
  11684. characterMakers.push(() => makeCharacter(
  11685. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11686. {
  11687. front: {
  11688. height: math.unit(4, "feet"),
  11689. weight: math.unit(50, "lb"),
  11690. name: "Front",
  11691. image: {
  11692. source: "./media/characters/kole/front.svg",
  11693. extra: 1423 / 1303,
  11694. bottom: 0.025
  11695. }
  11696. },
  11697. back: {
  11698. height: math.unit(4, "feet"),
  11699. weight: math.unit(50, "lb"),
  11700. name: "Back",
  11701. image: {
  11702. source: "./media/characters/kole/back.svg",
  11703. extra: 1426 / 1280,
  11704. bottom: 0.02
  11705. }
  11706. },
  11707. },
  11708. [
  11709. {
  11710. name: "Normal",
  11711. height: math.unit(4, "feet"),
  11712. default: true
  11713. },
  11714. ]
  11715. ))
  11716. characterMakers.push(() => makeCharacter(
  11717. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11718. {
  11719. front: {
  11720. height: math.unit(2 + 6 / 12, "feet"),
  11721. weight: math.unit(20, "lb"),
  11722. name: "Front",
  11723. image: {
  11724. source: "./media/characters/rufran/front.svg",
  11725. extra: 2041 / 1839,
  11726. bottom: 0.055
  11727. }
  11728. },
  11729. back: {
  11730. height: math.unit(2 + 6 / 12, "feet"),
  11731. weight: math.unit(20, "lb"),
  11732. name: "Back",
  11733. image: {
  11734. source: "./media/characters/rufran/back.svg",
  11735. extra: 2054 / 1839,
  11736. bottom: 0.01
  11737. }
  11738. },
  11739. hand: {
  11740. height: math.unit(0.2166, "meters"),
  11741. name: "Hand",
  11742. image: {
  11743. source: "./media/characters/rufran/hand.svg"
  11744. }
  11745. },
  11746. foot: {
  11747. height: math.unit(0.185, "meters"),
  11748. name: "Foot",
  11749. image: {
  11750. source: "./media/characters/rufran/foot.svg"
  11751. }
  11752. },
  11753. },
  11754. [
  11755. {
  11756. name: "Micro",
  11757. height: math.unit(1, "inch")
  11758. },
  11759. {
  11760. name: "Normal",
  11761. height: math.unit(2 + 6 / 12, "feet"),
  11762. default: true
  11763. },
  11764. {
  11765. name: "Big",
  11766. height: math.unit(60, "feet")
  11767. },
  11768. {
  11769. name: "Macro",
  11770. height: math.unit(325, "feet")
  11771. },
  11772. ]
  11773. ))
  11774. characterMakers.push(() => makeCharacter(
  11775. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11776. {
  11777. front: {
  11778. height: math.unit(0.3, "meters"),
  11779. weight: math.unit(3.5, "kg"),
  11780. name: "Front",
  11781. image: {
  11782. source: "./media/characters/chip/front.svg",
  11783. extra: 748 / 674
  11784. }
  11785. },
  11786. },
  11787. [
  11788. {
  11789. name: "Micro",
  11790. height: math.unit(1, "inch"),
  11791. default: true
  11792. },
  11793. ]
  11794. ))
  11795. characterMakers.push(() => makeCharacter(
  11796. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11797. {
  11798. side: {
  11799. height: math.unit(2.3, "meters"),
  11800. weight: math.unit(3500, "lb"),
  11801. name: "Side",
  11802. image: {
  11803. source: "./media/characters/torvid/side.svg",
  11804. extra: 1972 / 722,
  11805. bottom: 0.035
  11806. }
  11807. },
  11808. },
  11809. [
  11810. {
  11811. name: "Normal",
  11812. height: math.unit(2.3, "meters"),
  11813. default: true
  11814. },
  11815. ]
  11816. ))
  11817. characterMakers.push(() => makeCharacter(
  11818. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11819. {
  11820. front: {
  11821. height: math.unit(2, "meters"),
  11822. weight: math.unit(150.5, "kg"),
  11823. name: "Front",
  11824. image: {
  11825. source: "./media/characters/susan/front.svg",
  11826. extra: 693 / 635,
  11827. bottom: 0.05
  11828. }
  11829. },
  11830. },
  11831. [
  11832. {
  11833. name: "Megamacro",
  11834. height: math.unit(505, "miles"),
  11835. default: true
  11836. },
  11837. ]
  11838. ))
  11839. characterMakers.push(() => makeCharacter(
  11840. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11841. {
  11842. front: {
  11843. height: math.unit(6, "feet"),
  11844. weight: math.unit(150, "lb"),
  11845. name: "Front",
  11846. image: {
  11847. source: "./media/characters/raindrops/front.svg",
  11848. extra: 2655 / 2461,
  11849. bottom: 49 / 2705
  11850. }
  11851. },
  11852. back: {
  11853. height: math.unit(6, "feet"),
  11854. weight: math.unit(150, "lb"),
  11855. name: "Back",
  11856. image: {
  11857. source: "./media/characters/raindrops/back.svg",
  11858. extra: 2574 / 2400,
  11859. bottom: 65 / 2634
  11860. }
  11861. },
  11862. },
  11863. [
  11864. {
  11865. name: "Micro",
  11866. height: math.unit(6, "inches")
  11867. },
  11868. {
  11869. name: "Normal",
  11870. height: math.unit(6 + 2 / 12, "feet")
  11871. },
  11872. {
  11873. name: "Macro",
  11874. height: math.unit(131, "feet"),
  11875. default: true
  11876. },
  11877. {
  11878. name: "Megamacro",
  11879. height: math.unit(15, "miles")
  11880. },
  11881. {
  11882. name: "Gigamacro",
  11883. height: math.unit(4000, "miles")
  11884. },
  11885. {
  11886. name: "Teramacro",
  11887. height: math.unit(315000, "miles")
  11888. },
  11889. ]
  11890. ))
  11891. characterMakers.push(() => makeCharacter(
  11892. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11893. {
  11894. front: {
  11895. height: math.unit(2.794, "meters"),
  11896. weight: math.unit(325, "kg"),
  11897. name: "Front",
  11898. image: {
  11899. source: "./media/characters/tezwa/front.svg",
  11900. extra: 2083 / 1906,
  11901. bottom: 0.031
  11902. }
  11903. },
  11904. foot: {
  11905. height: math.unit(0.687, "meters"),
  11906. name: "Foot",
  11907. image: {
  11908. source: "./media/characters/tezwa/foot.svg"
  11909. }
  11910. },
  11911. },
  11912. [
  11913. {
  11914. name: "Normal",
  11915. height: math.unit(9 + 2 / 12, "feet"),
  11916. default: true
  11917. },
  11918. ]
  11919. ))
  11920. characterMakers.push(() => makeCharacter(
  11921. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11922. {
  11923. front: {
  11924. height: math.unit(58, "feet"),
  11925. weight: math.unit(89000, "lb"),
  11926. name: "Front",
  11927. image: {
  11928. source: "./media/characters/typhus/front.svg",
  11929. extra: 816 / 800,
  11930. bottom: 0.065
  11931. }
  11932. },
  11933. },
  11934. [
  11935. {
  11936. name: "Macro",
  11937. height: math.unit(58, "feet"),
  11938. default: true
  11939. },
  11940. ]
  11941. ))
  11942. characterMakers.push(() => makeCharacter(
  11943. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11944. {
  11945. front: {
  11946. height: math.unit(12, "feet"),
  11947. weight: math.unit(6, "tonnes"),
  11948. name: "Front",
  11949. image: {
  11950. source: "./media/characters/lyra-von-wulf/front.svg",
  11951. extra: 1,
  11952. bottom: 0.10
  11953. }
  11954. },
  11955. frontMecha: {
  11956. height: math.unit(12, "feet"),
  11957. weight: math.unit(12, "tonnes"),
  11958. name: "Front (Mecha)",
  11959. image: {
  11960. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11961. extra: 1,
  11962. bottom: 0.042
  11963. }
  11964. },
  11965. maw: {
  11966. height: math.unit(2.2, "feet"),
  11967. name: "Maw",
  11968. image: {
  11969. source: "./media/characters/lyra-von-wulf/maw.svg"
  11970. }
  11971. },
  11972. },
  11973. [
  11974. {
  11975. name: "Normal",
  11976. height: math.unit(12, "feet"),
  11977. default: true
  11978. },
  11979. {
  11980. name: "Classic",
  11981. height: math.unit(50, "feet")
  11982. },
  11983. {
  11984. name: "Macro",
  11985. height: math.unit(500, "feet")
  11986. },
  11987. {
  11988. name: "Megamacro",
  11989. height: math.unit(1, "mile")
  11990. },
  11991. {
  11992. name: "Gigamacro",
  11993. height: math.unit(400, "miles")
  11994. },
  11995. {
  11996. name: "Teramacro",
  11997. height: math.unit(22000, "miles")
  11998. },
  11999. {
  12000. name: "Solarmacro",
  12001. height: math.unit(8600000, "miles")
  12002. },
  12003. {
  12004. name: "Galactic",
  12005. height: math.unit(1057000, "lightyears")
  12006. },
  12007. ]
  12008. ))
  12009. characterMakers.push(() => makeCharacter(
  12010. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12011. {
  12012. front: {
  12013. height: math.unit(6 + 10 / 12, "feet"),
  12014. weight: math.unit(150, "lb"),
  12015. name: "Front",
  12016. image: {
  12017. source: "./media/characters/dixon/front.svg",
  12018. extra: 3361 / 3209,
  12019. bottom: 0.01
  12020. }
  12021. },
  12022. },
  12023. [
  12024. {
  12025. name: "Normal",
  12026. height: math.unit(6 + 10 / 12, "feet"),
  12027. default: true
  12028. },
  12029. {
  12030. name: "Big",
  12031. height: math.unit(12, "meters")
  12032. },
  12033. {
  12034. name: "Macro",
  12035. height: math.unit(500, "meters")
  12036. },
  12037. {
  12038. name: "Megamacro",
  12039. height: math.unit(2, "km")
  12040. },
  12041. ]
  12042. ))
  12043. characterMakers.push(() => makeCharacter(
  12044. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12045. {
  12046. front: {
  12047. height: math.unit(185, "cm"),
  12048. weight: math.unit(68, "kg"),
  12049. name: "Front",
  12050. image: {
  12051. source: "./media/characters/kauko/front.svg",
  12052. extra: 1455 / 1421,
  12053. bottom: 0.03
  12054. }
  12055. },
  12056. back: {
  12057. height: math.unit(185, "cm"),
  12058. weight: math.unit(68, "kg"),
  12059. name: "Back",
  12060. image: {
  12061. source: "./media/characters/kauko/back.svg",
  12062. extra: 1455 / 1421,
  12063. bottom: 0.004
  12064. }
  12065. },
  12066. },
  12067. [
  12068. {
  12069. name: "Normal",
  12070. height: math.unit(185, "cm"),
  12071. default: true
  12072. },
  12073. ]
  12074. ))
  12075. characterMakers.push(() => makeCharacter(
  12076. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12077. {
  12078. front: {
  12079. height: math.unit(6, "feet"),
  12080. weight: math.unit(150, "kg"),
  12081. name: "Front",
  12082. image: {
  12083. source: "./media/characters/varg/front.svg",
  12084. extra: 1108 / 1018,
  12085. bottom: 0.0375
  12086. }
  12087. },
  12088. },
  12089. [
  12090. {
  12091. name: "Normal",
  12092. height: math.unit(5, "meters")
  12093. },
  12094. {
  12095. name: "Macro",
  12096. height: math.unit(200, "meters")
  12097. },
  12098. {
  12099. name: "Megamacro",
  12100. height: math.unit(20, "kilometers")
  12101. },
  12102. {
  12103. name: "True Size",
  12104. height: math.unit(211, "km"),
  12105. default: true
  12106. },
  12107. {
  12108. name: "Gigamacro",
  12109. height: math.unit(1000, "km")
  12110. },
  12111. {
  12112. name: "Gigamacro+",
  12113. height: math.unit(8000, "km")
  12114. },
  12115. {
  12116. name: "Teramacro",
  12117. height: math.unit(1000000, "km")
  12118. },
  12119. ]
  12120. ))
  12121. characterMakers.push(() => makeCharacter(
  12122. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12123. {
  12124. front: {
  12125. height: math.unit(7 + 7 / 12, "feet"),
  12126. weight: math.unit(267, "lb"),
  12127. name: "Front",
  12128. image: {
  12129. source: "./media/characters/dayza/front.svg",
  12130. extra: 1262 / 1200,
  12131. bottom: 0.035
  12132. }
  12133. },
  12134. side: {
  12135. height: math.unit(7 + 7 / 12, "feet"),
  12136. weight: math.unit(267, "lb"),
  12137. name: "Side",
  12138. image: {
  12139. source: "./media/characters/dayza/side.svg",
  12140. extra: 1295 / 1245,
  12141. bottom: 0.05
  12142. }
  12143. },
  12144. back: {
  12145. height: math.unit(7 + 7 / 12, "feet"),
  12146. weight: math.unit(267, "lb"),
  12147. name: "Back",
  12148. image: {
  12149. source: "./media/characters/dayza/back.svg",
  12150. extra: 1241 / 1170
  12151. }
  12152. },
  12153. },
  12154. [
  12155. {
  12156. name: "Normal",
  12157. height: math.unit(7 + 7 / 12, "feet"),
  12158. default: true
  12159. },
  12160. {
  12161. name: "Macro",
  12162. height: math.unit(155, "feet")
  12163. },
  12164. ]
  12165. ))
  12166. characterMakers.push(() => makeCharacter(
  12167. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12168. {
  12169. front: {
  12170. height: math.unit(6 + 5 / 12, "feet"),
  12171. weight: math.unit(160, "lb"),
  12172. name: "Front",
  12173. image: {
  12174. source: "./media/characters/xanthos/front.svg",
  12175. extra: 1,
  12176. bottom: 0.04
  12177. }
  12178. },
  12179. back: {
  12180. height: math.unit(6 + 5 / 12, "feet"),
  12181. weight: math.unit(160, "lb"),
  12182. name: "Back",
  12183. image: {
  12184. source: "./media/characters/xanthos/back.svg",
  12185. extra: 1,
  12186. bottom: 0.03
  12187. }
  12188. },
  12189. hand: {
  12190. height: math.unit(0.928, "feet"),
  12191. name: "Hand",
  12192. image: {
  12193. source: "./media/characters/xanthos/hand.svg"
  12194. }
  12195. },
  12196. foot: {
  12197. height: math.unit(1.286, "feet"),
  12198. name: "Foot",
  12199. image: {
  12200. source: "./media/characters/xanthos/foot.svg"
  12201. }
  12202. },
  12203. },
  12204. [
  12205. {
  12206. name: "Normal",
  12207. height: math.unit(6 + 5 / 12, "feet"),
  12208. default: true
  12209. },
  12210. {
  12211. name: "Normal+",
  12212. height: math.unit(6, "meters")
  12213. },
  12214. {
  12215. name: "Macro",
  12216. height: math.unit(40, "feet")
  12217. },
  12218. {
  12219. name: "Macro+",
  12220. height: math.unit(200, "meters")
  12221. },
  12222. {
  12223. name: "Megamacro",
  12224. height: math.unit(20, "km")
  12225. },
  12226. {
  12227. name: "Megamacro+",
  12228. height: math.unit(100, "km")
  12229. },
  12230. ]
  12231. ))
  12232. characterMakers.push(() => makeCharacter(
  12233. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12234. {
  12235. front: {
  12236. height: math.unit(6 + 3 / 12, "feet"),
  12237. weight: math.unit(215, "lb"),
  12238. name: "Front",
  12239. image: {
  12240. source: "./media/characters/grynn/front.svg",
  12241. extra: 4627 / 4209,
  12242. bottom: 0.047
  12243. }
  12244. },
  12245. },
  12246. [
  12247. {
  12248. name: "Micro",
  12249. height: math.unit(6, "inches")
  12250. },
  12251. {
  12252. name: "Normal",
  12253. height: math.unit(6 + 3 / 12, "feet"),
  12254. default: true
  12255. },
  12256. {
  12257. name: "Big",
  12258. height: math.unit(104, "feet")
  12259. },
  12260. {
  12261. name: "Macro",
  12262. height: math.unit(944, "feet")
  12263. },
  12264. {
  12265. name: "Macro+",
  12266. height: math.unit(9480, "feet")
  12267. },
  12268. {
  12269. name: "Megamacro",
  12270. height: math.unit(78752, "feet")
  12271. },
  12272. {
  12273. name: "Megamacro+",
  12274. height: math.unit(630128, "feet")
  12275. },
  12276. {
  12277. name: "Megamacro++",
  12278. height: math.unit(3150695, "feet")
  12279. },
  12280. ]
  12281. ))
  12282. characterMakers.push(() => makeCharacter(
  12283. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12284. {
  12285. front: {
  12286. height: math.unit(7 + 5 / 12, "feet"),
  12287. weight: math.unit(450, "lb"),
  12288. name: "Front",
  12289. image: {
  12290. source: "./media/characters/mocha-aura/front.svg",
  12291. extra: 1907 / 1817,
  12292. bottom: 0.04
  12293. }
  12294. },
  12295. back: {
  12296. height: math.unit(7 + 5 / 12, "feet"),
  12297. weight: math.unit(450, "lb"),
  12298. name: "Back",
  12299. image: {
  12300. source: "./media/characters/mocha-aura/back.svg",
  12301. extra: 1900 / 1825,
  12302. bottom: 0.045
  12303. }
  12304. },
  12305. },
  12306. [
  12307. {
  12308. name: "Nano",
  12309. height: math.unit(1, "nm")
  12310. },
  12311. {
  12312. name: "Megamicro",
  12313. height: math.unit(1, "mm")
  12314. },
  12315. {
  12316. name: "Micro",
  12317. height: math.unit(3, "inches")
  12318. },
  12319. {
  12320. name: "Normal",
  12321. height: math.unit(7 + 5 / 12, "feet"),
  12322. default: true
  12323. },
  12324. {
  12325. name: "Macro",
  12326. height: math.unit(30, "feet")
  12327. },
  12328. {
  12329. name: "Megamacro",
  12330. height: math.unit(3500, "feet")
  12331. },
  12332. {
  12333. name: "Teramacro",
  12334. height: math.unit(500000, "miles")
  12335. },
  12336. {
  12337. name: "Petamacro",
  12338. height: math.unit(50000000000000000, "parsecs")
  12339. },
  12340. ]
  12341. ))
  12342. characterMakers.push(() => makeCharacter(
  12343. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12344. {
  12345. front: {
  12346. height: math.unit(6, "feet"),
  12347. weight: math.unit(150, "lb"),
  12348. name: "Front",
  12349. image: {
  12350. source: "./media/characters/ilisha-devya/front.svg",
  12351. extra: 1,
  12352. bottom: 0.175
  12353. }
  12354. },
  12355. back: {
  12356. height: math.unit(6, "feet"),
  12357. weight: math.unit(150, "lb"),
  12358. name: "Back",
  12359. image: {
  12360. source: "./media/characters/ilisha-devya/back.svg",
  12361. extra: 1,
  12362. bottom: 0.015
  12363. }
  12364. },
  12365. },
  12366. [
  12367. {
  12368. name: "Macro",
  12369. height: math.unit(500, "feet"),
  12370. default: true
  12371. },
  12372. {
  12373. name: "Megamacro",
  12374. height: math.unit(10, "miles")
  12375. },
  12376. {
  12377. name: "Gigamacro",
  12378. height: math.unit(100000, "miles")
  12379. },
  12380. {
  12381. name: "Examacro",
  12382. height: math.unit(1e9, "lightyears")
  12383. },
  12384. {
  12385. name: "Omniversal",
  12386. height: math.unit(1e33, "lightyears")
  12387. },
  12388. {
  12389. name: "Beyond Infinite",
  12390. height: math.unit(1e100, "lightyears")
  12391. },
  12392. ]
  12393. ))
  12394. characterMakers.push(() => makeCharacter(
  12395. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12396. {
  12397. Side: {
  12398. height: math.unit(6, "feet"),
  12399. weight: math.unit(150, "lb"),
  12400. name: "Side",
  12401. image: {
  12402. source: "./media/characters/mira/side.svg",
  12403. extra: 900 / 799,
  12404. bottom: 0.02
  12405. }
  12406. },
  12407. },
  12408. [
  12409. {
  12410. name: "Human Size",
  12411. height: math.unit(6, "feet")
  12412. },
  12413. {
  12414. name: "Macro",
  12415. height: math.unit(100, "feet"),
  12416. default: true
  12417. },
  12418. {
  12419. name: "Megamacro",
  12420. height: math.unit(10, "miles")
  12421. },
  12422. {
  12423. name: "Gigamacro",
  12424. height: math.unit(25000, "miles")
  12425. },
  12426. {
  12427. name: "Teramacro",
  12428. height: math.unit(300, "AU")
  12429. },
  12430. {
  12431. name: "Full Size",
  12432. height: math.unit(4.5e10, "lightyears")
  12433. },
  12434. ]
  12435. ))
  12436. characterMakers.push(() => makeCharacter(
  12437. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12438. {
  12439. front: {
  12440. height: math.unit(6, "feet"),
  12441. weight: math.unit(150, "lb"),
  12442. name: "Front",
  12443. image: {
  12444. source: "./media/characters/holly/front.svg",
  12445. extra: 639 / 606
  12446. }
  12447. },
  12448. back: {
  12449. height: math.unit(6, "feet"),
  12450. weight: math.unit(150, "lb"),
  12451. name: "Back",
  12452. image: {
  12453. source: "./media/characters/holly/back.svg",
  12454. extra: 623 / 598
  12455. }
  12456. },
  12457. frontWorking: {
  12458. height: math.unit(6, "feet"),
  12459. weight: math.unit(150, "lb"),
  12460. name: "Front (Working)",
  12461. image: {
  12462. source: "./media/characters/holly/front-working.svg",
  12463. extra: 607 / 577,
  12464. bottom: 0.048
  12465. }
  12466. },
  12467. },
  12468. [
  12469. {
  12470. name: "Normal",
  12471. height: math.unit(12 + 3 / 12, "feet"),
  12472. default: true
  12473. },
  12474. ]
  12475. ))
  12476. characterMakers.push(() => makeCharacter(
  12477. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12478. {
  12479. front: {
  12480. height: math.unit(6, "feet"),
  12481. weight: math.unit(150, "lb"),
  12482. name: "Front",
  12483. image: {
  12484. source: "./media/characters/porter/front.svg",
  12485. extra: 1,
  12486. bottom: 0.01
  12487. }
  12488. },
  12489. frontRobes: {
  12490. height: math.unit(6, "feet"),
  12491. weight: math.unit(150, "lb"),
  12492. name: "Front (Robes)",
  12493. image: {
  12494. source: "./media/characters/porter/front-robes.svg",
  12495. extra: 1.01,
  12496. bottom: 0.01
  12497. }
  12498. },
  12499. },
  12500. [
  12501. {
  12502. name: "Normal",
  12503. height: math.unit(11 + 9 / 12, "feet"),
  12504. default: true
  12505. },
  12506. ]
  12507. ))
  12508. characterMakers.push(() => makeCharacter(
  12509. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12510. {
  12511. legendary: {
  12512. height: math.unit(6, "feet"),
  12513. weight: math.unit(150, "lb"),
  12514. name: "Legendary",
  12515. image: {
  12516. source: "./media/characters/lucy/legendary.svg",
  12517. extra: 1355 / 1100,
  12518. bottom: 0.045
  12519. }
  12520. },
  12521. },
  12522. [
  12523. {
  12524. name: "Legendary",
  12525. height: math.unit(86882 * 2, "miles"),
  12526. default: true
  12527. },
  12528. ]
  12529. ))
  12530. characterMakers.push(() => makeCharacter(
  12531. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12532. {
  12533. front: {
  12534. height: math.unit(6, "feet"),
  12535. weight: math.unit(150, "lb"),
  12536. name: "Front",
  12537. image: {
  12538. source: "./media/characters/drusilla/front.svg",
  12539. extra: 678 / 635,
  12540. bottom: 0.03
  12541. }
  12542. },
  12543. back: {
  12544. height: math.unit(6, "feet"),
  12545. weight: math.unit(150, "lb"),
  12546. name: "Back",
  12547. image: {
  12548. source: "./media/characters/drusilla/back.svg",
  12549. extra: 678 / 635,
  12550. bottom: 0.005
  12551. }
  12552. },
  12553. },
  12554. [
  12555. {
  12556. name: "Macro",
  12557. height: math.unit(100, "feet")
  12558. },
  12559. {
  12560. name: "Canon Height",
  12561. height: math.unit(2000, "feet"),
  12562. default: true
  12563. },
  12564. ]
  12565. ))
  12566. characterMakers.push(() => makeCharacter(
  12567. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12568. {
  12569. front: {
  12570. height: math.unit(6, "feet"),
  12571. weight: math.unit(180, "lb"),
  12572. name: "Front",
  12573. image: {
  12574. source: "./media/characters/renard-thatch/front.svg",
  12575. extra: 2411 / 2275,
  12576. bottom: 0.01
  12577. }
  12578. },
  12579. frontPosing: {
  12580. height: math.unit(6, "feet"),
  12581. weight: math.unit(180, "lb"),
  12582. name: "Front (Posing)",
  12583. image: {
  12584. source: "./media/characters/renard-thatch/front-posing.svg",
  12585. extra: 2381 / 2261,
  12586. bottom: 0.01
  12587. }
  12588. },
  12589. back: {
  12590. height: math.unit(6, "feet"),
  12591. weight: math.unit(180, "lb"),
  12592. name: "Back",
  12593. image: {
  12594. source: "./media/characters/renard-thatch/back.svg",
  12595. extra: 2428 / 2288
  12596. }
  12597. },
  12598. },
  12599. [
  12600. {
  12601. name: "Micro",
  12602. height: math.unit(3, "inches")
  12603. },
  12604. {
  12605. name: "Default",
  12606. height: math.unit(6, "feet"),
  12607. default: true
  12608. },
  12609. {
  12610. name: "Macro",
  12611. height: math.unit(75, "feet")
  12612. },
  12613. ]
  12614. ))
  12615. characterMakers.push(() => makeCharacter(
  12616. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12617. {
  12618. front: {
  12619. height: math.unit(1450, "feet"),
  12620. weight: math.unit(1.21e6, "tons"),
  12621. name: "Front",
  12622. image: {
  12623. source: "./media/characters/sekvra/front.svg",
  12624. extra: 1,
  12625. bottom: 0.03
  12626. }
  12627. },
  12628. frontClothed: {
  12629. height: math.unit(1450, "feet"),
  12630. weight: math.unit(1.21e6, "tons"),
  12631. name: "Front (Clothed)",
  12632. image: {
  12633. source: "./media/characters/sekvra/front-clothed.svg",
  12634. extra: 1,
  12635. bottom: 0.03
  12636. }
  12637. },
  12638. side: {
  12639. height: math.unit(1450, "feet"),
  12640. weight: math.unit(1.21e6, "tons"),
  12641. name: "Side",
  12642. image: {
  12643. source: "./media/characters/sekvra/side.svg",
  12644. extra: 1,
  12645. bottom: 0.025
  12646. }
  12647. },
  12648. back: {
  12649. height: math.unit(1450, "feet"),
  12650. weight: math.unit(1.21e6, "tons"),
  12651. name: "Back",
  12652. image: {
  12653. source: "./media/characters/sekvra/back.svg",
  12654. extra: 1,
  12655. bottom: 0.005
  12656. }
  12657. },
  12658. },
  12659. [
  12660. {
  12661. name: "Macro",
  12662. height: math.unit(1450, "feet"),
  12663. default: true
  12664. },
  12665. {
  12666. name: "Megamacro",
  12667. height: math.unit(15000, "feet")
  12668. },
  12669. ]
  12670. ))
  12671. characterMakers.push(() => makeCharacter(
  12672. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12673. {
  12674. front: {
  12675. height: math.unit(6, "feet"),
  12676. weight: math.unit(150, "lb"),
  12677. name: "Front",
  12678. image: {
  12679. source: "./media/characters/carmine/front.svg",
  12680. extra: 1,
  12681. bottom: 0.035
  12682. }
  12683. },
  12684. frontArmor: {
  12685. height: math.unit(6, "feet"),
  12686. weight: math.unit(150, "lb"),
  12687. name: "Front (Armor)",
  12688. image: {
  12689. source: "./media/characters/carmine/front-armor.svg",
  12690. extra: 1,
  12691. bottom: 0.035
  12692. }
  12693. },
  12694. },
  12695. [
  12696. {
  12697. name: "Large",
  12698. height: math.unit(1, "mile")
  12699. },
  12700. {
  12701. name: "Huge",
  12702. height: math.unit(40, "miles"),
  12703. default: true
  12704. },
  12705. {
  12706. name: "Colossal",
  12707. height: math.unit(2500, "miles")
  12708. },
  12709. ]
  12710. ))
  12711. characterMakers.push(() => makeCharacter(
  12712. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12713. {
  12714. front: {
  12715. height: math.unit(6, "feet"),
  12716. weight: math.unit(150, "lb"),
  12717. name: "Front",
  12718. image: {
  12719. source: "./media/characters/elyssia/front.svg",
  12720. extra: 2201 / 2035,
  12721. bottom: 0.05
  12722. }
  12723. },
  12724. frontClothed: {
  12725. height: math.unit(6, "feet"),
  12726. weight: math.unit(150, "lb"),
  12727. name: "Front (Clothed)",
  12728. image: {
  12729. source: "./media/characters/elyssia/front-clothed.svg",
  12730. extra: 2201 / 2035,
  12731. bottom: 0.05
  12732. }
  12733. },
  12734. back: {
  12735. height: math.unit(6, "feet"),
  12736. weight: math.unit(150, "lb"),
  12737. name: "Back",
  12738. image: {
  12739. source: "./media/characters/elyssia/back.svg",
  12740. extra: 2201 / 2035,
  12741. bottom: 0.013
  12742. }
  12743. },
  12744. },
  12745. [
  12746. {
  12747. name: "Smaller",
  12748. height: math.unit(150, "feet")
  12749. },
  12750. {
  12751. name: "Standard",
  12752. height: math.unit(1400, "feet"),
  12753. default: true
  12754. },
  12755. {
  12756. name: "Distracted",
  12757. height: math.unit(15000, "feet")
  12758. },
  12759. ]
  12760. ))
  12761. characterMakers.push(() => makeCharacter(
  12762. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12763. {
  12764. front: {
  12765. height: math.unit(7 + 4 / 12, "feet"),
  12766. weight: math.unit(500, "lb"),
  12767. name: "Front",
  12768. image: {
  12769. source: "./media/characters/geno-maxwell/front.svg",
  12770. extra: 2207 / 2040,
  12771. bottom: 0.015
  12772. }
  12773. },
  12774. },
  12775. [
  12776. {
  12777. name: "Micro",
  12778. height: math.unit(3, "inches")
  12779. },
  12780. {
  12781. name: "Normal",
  12782. height: math.unit(7 + 4 / 12, "feet"),
  12783. default: true
  12784. },
  12785. {
  12786. name: "Macro",
  12787. height: math.unit(220, "feet")
  12788. },
  12789. {
  12790. name: "Megamacro",
  12791. height: math.unit(11, "miles")
  12792. },
  12793. ]
  12794. ))
  12795. characterMakers.push(() => makeCharacter(
  12796. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12797. {
  12798. front: {
  12799. height: math.unit(7 + 4 / 12, "feet"),
  12800. weight: math.unit(500, "lb"),
  12801. name: "Front",
  12802. image: {
  12803. source: "./media/characters/regena-maxwell/front.svg",
  12804. extra: 3115 / 2770,
  12805. bottom: 0.02
  12806. }
  12807. },
  12808. },
  12809. [
  12810. {
  12811. name: "Normal",
  12812. height: math.unit(7 + 4 / 12, "feet"),
  12813. default: true
  12814. },
  12815. {
  12816. name: "Macro",
  12817. height: math.unit(220, "feet")
  12818. },
  12819. {
  12820. name: "Megamacro",
  12821. height: math.unit(11, "miles")
  12822. },
  12823. ]
  12824. ))
  12825. characterMakers.push(() => makeCharacter(
  12826. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12827. {
  12828. front: {
  12829. height: math.unit(6, "feet"),
  12830. weight: math.unit(150, "lb"),
  12831. name: "Front",
  12832. image: {
  12833. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12834. extra: 860 / 690,
  12835. bottom: 0.03
  12836. }
  12837. },
  12838. },
  12839. [
  12840. {
  12841. name: "Normal",
  12842. height: math.unit(1.7, "meters"),
  12843. default: true
  12844. },
  12845. ]
  12846. ))
  12847. characterMakers.push(() => makeCharacter(
  12848. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12849. {
  12850. front: {
  12851. height: math.unit(6, "feet"),
  12852. weight: math.unit(150, "lb"),
  12853. name: "Front",
  12854. image: {
  12855. source: "./media/characters/quilly/front.svg",
  12856. extra: 890 / 776
  12857. }
  12858. },
  12859. },
  12860. [
  12861. {
  12862. name: "Gigamacro",
  12863. height: math.unit(404090, "miles"),
  12864. default: true
  12865. },
  12866. ]
  12867. ))
  12868. characterMakers.push(() => makeCharacter(
  12869. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12870. {
  12871. front: {
  12872. height: math.unit(7 + 8 / 12, "feet"),
  12873. weight: math.unit(350, "lb"),
  12874. name: "Front",
  12875. image: {
  12876. source: "./media/characters/tempest/front.svg",
  12877. extra: 1175 / 1086,
  12878. bottom: 0.02
  12879. }
  12880. },
  12881. },
  12882. [
  12883. {
  12884. name: "Normal",
  12885. height: math.unit(7 + 8 / 12, "feet"),
  12886. default: true
  12887. },
  12888. ]
  12889. ))
  12890. characterMakers.push(() => makeCharacter(
  12891. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12892. {
  12893. side: {
  12894. height: math.unit(4 + 5 / 12, "feet"),
  12895. weight: math.unit(80, "lb"),
  12896. name: "Side",
  12897. image: {
  12898. source: "./media/characters/rodger/side.svg",
  12899. extra: 1235 / 1118
  12900. }
  12901. },
  12902. },
  12903. [
  12904. {
  12905. name: "Micro",
  12906. height: math.unit(1, "inch")
  12907. },
  12908. {
  12909. name: "Normal",
  12910. height: math.unit(4 + 5 / 12, "feet"),
  12911. default: true
  12912. },
  12913. {
  12914. name: "Macro",
  12915. height: math.unit(120, "feet")
  12916. },
  12917. ]
  12918. ))
  12919. characterMakers.push(() => makeCharacter(
  12920. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12921. {
  12922. front: {
  12923. height: math.unit(6, "feet"),
  12924. weight: math.unit(150, "lb"),
  12925. name: "Front",
  12926. image: {
  12927. source: "./media/characters/danyel/front.svg",
  12928. extra: 1185 / 1123,
  12929. bottom: 0.05
  12930. }
  12931. },
  12932. },
  12933. [
  12934. {
  12935. name: "Shrunken",
  12936. height: math.unit(0.5, "mm")
  12937. },
  12938. {
  12939. name: "Micro",
  12940. height: math.unit(1, "mm"),
  12941. default: true
  12942. },
  12943. {
  12944. name: "Upsized",
  12945. height: math.unit(5 + 5 / 12, "feet")
  12946. },
  12947. ]
  12948. ))
  12949. characterMakers.push(() => makeCharacter(
  12950. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12951. {
  12952. front: {
  12953. height: math.unit(5 + 6 / 12, "feet"),
  12954. weight: math.unit(200, "lb"),
  12955. name: "Front",
  12956. image: {
  12957. source: "./media/characters/vivian-bijoux/front.svg",
  12958. extra: 1,
  12959. bottom: 0.072
  12960. }
  12961. },
  12962. },
  12963. [
  12964. {
  12965. name: "Normal",
  12966. height: math.unit(5 + 6 / 12, "feet"),
  12967. default: true
  12968. },
  12969. {
  12970. name: "Bad Dream",
  12971. height: math.unit(500, "feet")
  12972. },
  12973. {
  12974. name: "Nightmare",
  12975. height: math.unit(500, "miles")
  12976. },
  12977. ]
  12978. ))
  12979. characterMakers.push(() => makeCharacter(
  12980. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12981. {
  12982. front: {
  12983. height: math.unit(6 + 1 / 12, "feet"),
  12984. weight: math.unit(260, "lb"),
  12985. name: "Front",
  12986. image: {
  12987. source: "./media/characters/zeta/front.svg",
  12988. extra: 1968 / 1889,
  12989. bottom: 0.06
  12990. }
  12991. },
  12992. back: {
  12993. height: math.unit(6 + 1 / 12, "feet"),
  12994. weight: math.unit(260, "lb"),
  12995. name: "Back",
  12996. image: {
  12997. source: "./media/characters/zeta/back.svg",
  12998. extra: 1944 / 1858,
  12999. bottom: 0.03
  13000. }
  13001. },
  13002. hand: {
  13003. height: math.unit(1.112, "feet"),
  13004. name: "Hand",
  13005. image: {
  13006. source: "./media/characters/zeta/hand.svg"
  13007. }
  13008. },
  13009. foot: {
  13010. height: math.unit(1.48, "feet"),
  13011. name: "Foot",
  13012. image: {
  13013. source: "./media/characters/zeta/foot.svg"
  13014. }
  13015. },
  13016. },
  13017. [
  13018. {
  13019. name: "Micro",
  13020. height: math.unit(6, "inches")
  13021. },
  13022. {
  13023. name: "Normal",
  13024. height: math.unit(6 + 1 / 12, "feet"),
  13025. default: true
  13026. },
  13027. {
  13028. name: "Macro",
  13029. height: math.unit(20, "feet")
  13030. },
  13031. ]
  13032. ))
  13033. characterMakers.push(() => makeCharacter(
  13034. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13035. {
  13036. front: {
  13037. height: math.unit(6, "feet"),
  13038. weight: math.unit(150, "lb"),
  13039. name: "Front",
  13040. image: {
  13041. source: "./media/characters/jamie-larsen/front.svg",
  13042. extra: 962 / 933,
  13043. bottom: 0.02
  13044. }
  13045. },
  13046. back: {
  13047. height: math.unit(6, "feet"),
  13048. weight: math.unit(150, "lb"),
  13049. name: "Back",
  13050. image: {
  13051. source: "./media/characters/jamie-larsen/back.svg",
  13052. extra: 997 / 946
  13053. }
  13054. },
  13055. },
  13056. [
  13057. {
  13058. name: "Macro",
  13059. height: math.unit(28 + 7 / 12, "feet"),
  13060. default: true
  13061. },
  13062. {
  13063. name: "Macro+",
  13064. height: math.unit(180, "feet")
  13065. },
  13066. {
  13067. name: "Megamacro",
  13068. height: math.unit(10, "miles")
  13069. },
  13070. {
  13071. name: "Gigamacro",
  13072. height: math.unit(200000, "miles")
  13073. },
  13074. ]
  13075. ))
  13076. characterMakers.push(() => makeCharacter(
  13077. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13078. {
  13079. front: {
  13080. height: math.unit(6, "feet"),
  13081. weight: math.unit(120, "lb"),
  13082. name: "Front",
  13083. image: {
  13084. source: "./media/characters/vance/front.svg",
  13085. extra: 1980 / 1890,
  13086. bottom: 0.09
  13087. }
  13088. },
  13089. back: {
  13090. height: math.unit(6, "feet"),
  13091. weight: math.unit(120, "lb"),
  13092. name: "Back",
  13093. image: {
  13094. source: "./media/characters/vance/back.svg",
  13095. extra: 2081 / 1994,
  13096. bottom: 0.014
  13097. }
  13098. },
  13099. hand: {
  13100. height: math.unit(0.88, "feet"),
  13101. name: "Hand",
  13102. image: {
  13103. source: "./media/characters/vance/hand.svg"
  13104. }
  13105. },
  13106. foot: {
  13107. height: math.unit(0.64, "feet"),
  13108. name: "Foot",
  13109. image: {
  13110. source: "./media/characters/vance/foot.svg"
  13111. }
  13112. },
  13113. },
  13114. [
  13115. {
  13116. name: "Small",
  13117. height: math.unit(90, "feet"),
  13118. default: true
  13119. },
  13120. {
  13121. name: "Macro",
  13122. height: math.unit(100, "meters")
  13123. },
  13124. {
  13125. name: "Megamacro",
  13126. height: math.unit(15, "miles")
  13127. },
  13128. ]
  13129. ))
  13130. characterMakers.push(() => makeCharacter(
  13131. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13132. {
  13133. front: {
  13134. height: math.unit(6, "feet"),
  13135. weight: math.unit(180, "lb"),
  13136. name: "Front",
  13137. image: {
  13138. source: "./media/characters/xochitl/front.svg",
  13139. extra: 2297 / 2261,
  13140. bottom: 0.065
  13141. }
  13142. },
  13143. back: {
  13144. height: math.unit(6, "feet"),
  13145. weight: math.unit(180, "lb"),
  13146. name: "Back",
  13147. image: {
  13148. source: "./media/characters/xochitl/back.svg",
  13149. extra: 2386 / 2354,
  13150. bottom: 0.01
  13151. }
  13152. },
  13153. foot: {
  13154. height: math.unit(6 / 5 * 1.15, "feet"),
  13155. weight: math.unit(150, "lb"),
  13156. name: "Foot",
  13157. image: {
  13158. source: "./media/characters/xochitl/foot.svg"
  13159. }
  13160. },
  13161. },
  13162. [
  13163. {
  13164. name: "Macro",
  13165. height: math.unit(80, "feet")
  13166. },
  13167. {
  13168. name: "Macro+",
  13169. height: math.unit(400, "feet"),
  13170. default: true
  13171. },
  13172. {
  13173. name: "Gigamacro",
  13174. height: math.unit(80000, "miles")
  13175. },
  13176. {
  13177. name: "Gigamacro+",
  13178. height: math.unit(400000, "miles")
  13179. },
  13180. {
  13181. name: "Teramacro",
  13182. height: math.unit(300, "AU")
  13183. },
  13184. ]
  13185. ))
  13186. characterMakers.push(() => makeCharacter(
  13187. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13188. {
  13189. front: {
  13190. height: math.unit(6, "feet"),
  13191. weight: math.unit(150, "lb"),
  13192. name: "Front",
  13193. image: {
  13194. source: "./media/characters/vincent/front.svg",
  13195. extra: 1130 / 1080,
  13196. bottom: 0.055
  13197. }
  13198. },
  13199. beak: {
  13200. height: math.unit(6 * 0.1, "feet"),
  13201. name: "Beak",
  13202. image: {
  13203. source: "./media/characters/vincent/beak.svg"
  13204. }
  13205. },
  13206. hand: {
  13207. height: math.unit(6 * 0.85, "feet"),
  13208. weight: math.unit(150, "lb"),
  13209. name: "Hand",
  13210. image: {
  13211. source: "./media/characters/vincent/hand.svg"
  13212. }
  13213. },
  13214. foot: {
  13215. height: math.unit(6 * 0.19, "feet"),
  13216. weight: math.unit(150, "lb"),
  13217. name: "Foot",
  13218. image: {
  13219. source: "./media/characters/vincent/foot.svg"
  13220. }
  13221. },
  13222. },
  13223. [
  13224. {
  13225. name: "Base",
  13226. height: math.unit(6 + 5 / 12, "feet"),
  13227. default: true
  13228. },
  13229. {
  13230. name: "Macro",
  13231. height: math.unit(300, "feet")
  13232. },
  13233. {
  13234. name: "Megamacro",
  13235. height: math.unit(2, "miles")
  13236. },
  13237. {
  13238. name: "Gigamacro",
  13239. height: math.unit(1000, "miles")
  13240. },
  13241. ]
  13242. ))
  13243. characterMakers.push(() => makeCharacter(
  13244. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  13245. {
  13246. front: {
  13247. height: math.unit(6 + 2 / 12, "feet"),
  13248. weight: math.unit(265, "lb"),
  13249. name: "Front",
  13250. image: {
  13251. source: "./media/characters/jay/front.svg",
  13252. extra: 1510 / 1430,
  13253. bottom: 0.042
  13254. }
  13255. },
  13256. back: {
  13257. height: math.unit(6 + 2 / 12, "feet"),
  13258. weight: math.unit(265, "lb"),
  13259. name: "Back",
  13260. image: {
  13261. source: "./media/characters/jay/back.svg",
  13262. extra: 1510 / 1430,
  13263. bottom: 0.025
  13264. }
  13265. },
  13266. clothed: {
  13267. height: math.unit(6 + 2 / 12, "feet"),
  13268. weight: math.unit(265, "lb"),
  13269. name: "Front (Clothed)",
  13270. image: {
  13271. source: "./media/characters/jay/clothed.svg",
  13272. extra: 744 / 699,
  13273. bottom: 0.043
  13274. }
  13275. },
  13276. head: {
  13277. height: math.unit(1.772, "feet"),
  13278. name: "Head",
  13279. image: {
  13280. source: "./media/characters/jay/head.svg"
  13281. }
  13282. },
  13283. sizeRay: {
  13284. height: math.unit(1.331, "feet"),
  13285. name: "Size Ray",
  13286. image: {
  13287. source: "./media/characters/jay/size-ray.svg"
  13288. }
  13289. },
  13290. },
  13291. [
  13292. {
  13293. name: "Micro",
  13294. height: math.unit(1, "inch")
  13295. },
  13296. {
  13297. name: "Normal",
  13298. height: math.unit(6 + 2 / 12, "feet"),
  13299. default: true
  13300. },
  13301. {
  13302. name: "Macro",
  13303. height: math.unit(1, "mile")
  13304. },
  13305. {
  13306. name: "Megamacro",
  13307. height: math.unit(100, "miles")
  13308. },
  13309. ]
  13310. ))
  13311. characterMakers.push(() => makeCharacter(
  13312. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13313. {
  13314. front: {
  13315. height: math.unit(2, "meters"),
  13316. weight: math.unit(500, "kg"),
  13317. name: "Front",
  13318. image: {
  13319. source: "./media/characters/coatl/front.svg",
  13320. extra: 3948 / 3500,
  13321. bottom: 0.082
  13322. }
  13323. },
  13324. },
  13325. [
  13326. {
  13327. name: "Normal",
  13328. height: math.unit(4, "meters")
  13329. },
  13330. {
  13331. name: "Macro",
  13332. height: math.unit(100, "meters"),
  13333. default: true
  13334. },
  13335. {
  13336. name: "Macro+",
  13337. height: math.unit(300, "meters")
  13338. },
  13339. {
  13340. name: "Megamacro",
  13341. height: math.unit(3, "gigameters")
  13342. },
  13343. {
  13344. name: "Megamacro+",
  13345. height: math.unit(300, "terameters")
  13346. },
  13347. {
  13348. name: "Megamacro++",
  13349. height: math.unit(3, "lightyears")
  13350. },
  13351. ]
  13352. ))
  13353. characterMakers.push(() => makeCharacter(
  13354. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13355. {
  13356. front: {
  13357. height: math.unit(6, "feet"),
  13358. weight: math.unit(50, "kg"),
  13359. name: "front",
  13360. image: {
  13361. source: "./media/characters/shiroryu/front.svg",
  13362. extra: 1990 / 1935
  13363. }
  13364. },
  13365. },
  13366. [
  13367. {
  13368. name: "Mortal Mingling",
  13369. height: math.unit(3, "meters")
  13370. },
  13371. {
  13372. name: "Kaiju-ish",
  13373. height: math.unit(250, "meters")
  13374. },
  13375. {
  13376. name: "Somewhat Godly",
  13377. height: math.unit(400, "km"),
  13378. default: true
  13379. },
  13380. {
  13381. name: "Planetary",
  13382. height: math.unit(300, "megameters")
  13383. },
  13384. {
  13385. name: "Galaxy-dwarfing",
  13386. height: math.unit(450, "kiloparsecs")
  13387. },
  13388. {
  13389. name: "Universe Eater",
  13390. height: math.unit(150, "gigaparsecs")
  13391. },
  13392. {
  13393. name: "Almost Immeasurable",
  13394. height: math.unit(1.3e266, "yottaparsecs")
  13395. },
  13396. ]
  13397. ))
  13398. characterMakers.push(() => makeCharacter(
  13399. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13400. {
  13401. front: {
  13402. height: math.unit(6, "feet"),
  13403. weight: math.unit(150, "lb"),
  13404. name: "Front",
  13405. image: {
  13406. source: "./media/characters/umeko/front.svg",
  13407. extra: 1,
  13408. bottom: 0.019
  13409. }
  13410. },
  13411. frontArmored: {
  13412. height: math.unit(6, "feet"),
  13413. weight: math.unit(150, "lb"),
  13414. name: "Front (Armored)",
  13415. image: {
  13416. source: "./media/characters/umeko/front-armored.svg",
  13417. extra: 1,
  13418. bottom: 0.021
  13419. }
  13420. },
  13421. },
  13422. [
  13423. {
  13424. name: "Macro",
  13425. height: math.unit(220, "feet"),
  13426. default: true
  13427. },
  13428. {
  13429. name: "Guardian Dragon",
  13430. height: math.unit(50, "miles")
  13431. },
  13432. {
  13433. name: "Cosmic",
  13434. height: math.unit(800000, "miles")
  13435. },
  13436. ]
  13437. ))
  13438. characterMakers.push(() => makeCharacter(
  13439. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13440. {
  13441. front: {
  13442. height: math.unit(6, "feet"),
  13443. weight: math.unit(150, "lb"),
  13444. name: "Front",
  13445. image: {
  13446. source: "./media/characters/cassidy/front.svg",
  13447. extra: 1,
  13448. bottom: 0.043
  13449. }
  13450. },
  13451. },
  13452. [
  13453. {
  13454. name: "Canon Height",
  13455. height: math.unit(120, "feet"),
  13456. default: true
  13457. },
  13458. {
  13459. name: "Macro+",
  13460. height: math.unit(400, "feet")
  13461. },
  13462. {
  13463. name: "Macro++",
  13464. height: math.unit(4000, "feet")
  13465. },
  13466. {
  13467. name: "Megamacro",
  13468. height: math.unit(3, "miles")
  13469. },
  13470. ]
  13471. ))
  13472. characterMakers.push(() => makeCharacter(
  13473. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13474. {
  13475. front: {
  13476. height: math.unit(6, "feet"),
  13477. weight: math.unit(150, "lb"),
  13478. name: "Front",
  13479. image: {
  13480. source: "./media/characters/isaac/front.svg",
  13481. extra: 896 / 815,
  13482. bottom: 0.11
  13483. }
  13484. },
  13485. },
  13486. [
  13487. {
  13488. name: "Human Size",
  13489. height: math.unit(8, "feet"),
  13490. default: true
  13491. },
  13492. {
  13493. name: "Macro",
  13494. height: math.unit(400, "feet")
  13495. },
  13496. {
  13497. name: "Megamacro",
  13498. height: math.unit(50, "miles")
  13499. },
  13500. {
  13501. name: "Canon Height",
  13502. height: math.unit(200, "AU")
  13503. },
  13504. ]
  13505. ))
  13506. characterMakers.push(() => makeCharacter(
  13507. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13508. {
  13509. front: {
  13510. height: math.unit(6, "feet"),
  13511. weight: math.unit(72, "kg"),
  13512. name: "Front",
  13513. image: {
  13514. source: "./media/characters/sleekit/front.svg",
  13515. extra: 4693 / 4487,
  13516. bottom: 0.012
  13517. }
  13518. },
  13519. },
  13520. [
  13521. {
  13522. name: "Minimum Height",
  13523. height: math.unit(10, "meters")
  13524. },
  13525. {
  13526. name: "Smaller",
  13527. height: math.unit(25, "meters")
  13528. },
  13529. {
  13530. name: "Larger",
  13531. height: math.unit(38, "meters"),
  13532. default: true
  13533. },
  13534. {
  13535. name: "Maximum height",
  13536. height: math.unit(100, "meters")
  13537. },
  13538. ]
  13539. ))
  13540. characterMakers.push(() => makeCharacter(
  13541. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13542. {
  13543. front: {
  13544. height: math.unit(6, "feet"),
  13545. weight: math.unit(150, "lb"),
  13546. name: "Front",
  13547. image: {
  13548. source: "./media/characters/nillia/front.svg",
  13549. extra: 2195 / 2037,
  13550. bottom: 0.005
  13551. }
  13552. },
  13553. back: {
  13554. height: math.unit(6, "feet"),
  13555. weight: math.unit(150, "lb"),
  13556. name: "Back",
  13557. image: {
  13558. source: "./media/characters/nillia/back.svg",
  13559. extra: 2195 / 2037,
  13560. bottom: 0.005
  13561. }
  13562. },
  13563. },
  13564. [
  13565. {
  13566. name: "Canon Height",
  13567. height: math.unit(489, "feet"),
  13568. default: true
  13569. }
  13570. ]
  13571. ))
  13572. characterMakers.push(() => makeCharacter(
  13573. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13574. {
  13575. front: {
  13576. height: math.unit(6, "feet"),
  13577. weight: math.unit(150, "lb"),
  13578. name: "Front",
  13579. image: {
  13580. source: "./media/characters/mesmyriza/front.svg",
  13581. extra: 2067 / 1784,
  13582. bottom: 0.035
  13583. }
  13584. },
  13585. foot: {
  13586. height: math.unit(6 / (250 / 35), "feet"),
  13587. name: "Foot",
  13588. image: {
  13589. source: "./media/characters/mesmyriza/foot.svg"
  13590. }
  13591. },
  13592. },
  13593. [
  13594. {
  13595. name: "Macro",
  13596. height: math.unit(457, "meters"),
  13597. default: true
  13598. },
  13599. {
  13600. name: "Megamacro",
  13601. height: math.unit(8, "megameters")
  13602. },
  13603. ]
  13604. ))
  13605. characterMakers.push(() => makeCharacter(
  13606. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13607. {
  13608. front: {
  13609. height: math.unit(6, "feet"),
  13610. weight: math.unit(250, "lb"),
  13611. name: "Front",
  13612. image: {
  13613. source: "./media/characters/saudade/front.svg",
  13614. extra: 1172 / 1139,
  13615. bottom: 0.035
  13616. }
  13617. },
  13618. },
  13619. [
  13620. {
  13621. name: "Micro",
  13622. height: math.unit(3, "inches")
  13623. },
  13624. {
  13625. name: "Normal",
  13626. height: math.unit(6, "feet"),
  13627. default: true
  13628. },
  13629. {
  13630. name: "Macro",
  13631. height: math.unit(50, "feet")
  13632. },
  13633. {
  13634. name: "Megamacro",
  13635. height: math.unit(2800, "feet")
  13636. },
  13637. ]
  13638. ))
  13639. characterMakers.push(() => makeCharacter(
  13640. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13641. {
  13642. front: {
  13643. height: math.unit(5 + 4 / 12, "feet"),
  13644. weight: math.unit(100, "lb"),
  13645. name: "Front",
  13646. image: {
  13647. source: "./media/characters/keireer/front.svg",
  13648. extra: 716 / 666,
  13649. bottom: 0.05
  13650. }
  13651. },
  13652. },
  13653. [
  13654. {
  13655. name: "Normal",
  13656. height: math.unit(5 + 4 / 12, "feet"),
  13657. default: true
  13658. },
  13659. ]
  13660. ))
  13661. characterMakers.push(() => makeCharacter(
  13662. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13663. {
  13664. front: {
  13665. height: math.unit(6, "feet"),
  13666. weight: math.unit(90, "kg"),
  13667. name: "Front",
  13668. image: {
  13669. source: "./media/characters/mirja/front.svg",
  13670. extra: 1789 / 1683,
  13671. bottom: 0.05
  13672. }
  13673. },
  13674. frontDressed: {
  13675. height: math.unit(6, "feet"),
  13676. weight: math.unit(90, "lb"),
  13677. name: "Front (Dressed)",
  13678. image: {
  13679. source: "./media/characters/mirja/front-dressed.svg",
  13680. extra: 1789 / 1683,
  13681. bottom: 0.05
  13682. }
  13683. },
  13684. back: {
  13685. height: math.unit(6, "feet"),
  13686. weight: math.unit(90, "lb"),
  13687. name: "Back",
  13688. image: {
  13689. source: "./media/characters/mirja/back.svg",
  13690. extra: 953 / 917,
  13691. bottom: 0.017
  13692. }
  13693. },
  13694. },
  13695. [
  13696. {
  13697. name: "\"Incognito\"",
  13698. height: math.unit(3, "meters")
  13699. },
  13700. {
  13701. name: "Strolling Size",
  13702. height: math.unit(15, "km")
  13703. },
  13704. {
  13705. name: "Larger Strolling Size",
  13706. height: math.unit(400, "km")
  13707. },
  13708. {
  13709. name: "Preferred Size",
  13710. height: math.unit(5000, "km")
  13711. },
  13712. {
  13713. name: "True Size",
  13714. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13715. default: true
  13716. },
  13717. ]
  13718. ))
  13719. characterMakers.push(() => makeCharacter(
  13720. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13721. {
  13722. front: {
  13723. height: math.unit(15, "feet"),
  13724. weight: math.unit(880, "kg"),
  13725. name: "Front",
  13726. image: {
  13727. source: "./media/characters/nightraver/front.svg",
  13728. extra: 2444 / 2160,
  13729. bottom: 0.027
  13730. }
  13731. },
  13732. back: {
  13733. height: math.unit(15, "feet"),
  13734. weight: math.unit(880, "kg"),
  13735. name: "Back",
  13736. image: {
  13737. source: "./media/characters/nightraver/back.svg",
  13738. extra: 2309 / 2180,
  13739. bottom: 0.005
  13740. }
  13741. },
  13742. sole: {
  13743. height: math.unit(2.878, "feet"),
  13744. name: "Sole",
  13745. image: {
  13746. source: "./media/characters/nightraver/sole.svg"
  13747. }
  13748. },
  13749. foot: {
  13750. height: math.unit(2.285, "feet"),
  13751. name: "Foot",
  13752. image: {
  13753. source: "./media/characters/nightraver/foot.svg"
  13754. }
  13755. },
  13756. maw: {
  13757. height: math.unit(2.67, "feet"),
  13758. name: "Maw",
  13759. image: {
  13760. source: "./media/characters/nightraver/maw.svg"
  13761. }
  13762. },
  13763. },
  13764. [
  13765. {
  13766. name: "Micro",
  13767. height: math.unit(1, "cm")
  13768. },
  13769. {
  13770. name: "Normal",
  13771. height: math.unit(15, "feet"),
  13772. default: true
  13773. },
  13774. {
  13775. name: "Macro",
  13776. height: math.unit(300, "feet")
  13777. },
  13778. {
  13779. name: "Megamacro",
  13780. height: math.unit(300, "miles")
  13781. },
  13782. {
  13783. name: "Gigamacro",
  13784. height: math.unit(10000, "miles")
  13785. },
  13786. ]
  13787. ))
  13788. characterMakers.push(() => makeCharacter(
  13789. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13790. {
  13791. side: {
  13792. height: math.unit(2, "inches"),
  13793. weight: math.unit(5, "grams"),
  13794. name: "Side",
  13795. image: {
  13796. source: "./media/characters/arc/side.svg"
  13797. }
  13798. },
  13799. },
  13800. [
  13801. {
  13802. name: "Micro",
  13803. height: math.unit(2, "inches"),
  13804. default: true
  13805. },
  13806. ]
  13807. ))
  13808. characterMakers.push(() => makeCharacter(
  13809. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13810. {
  13811. front: {
  13812. height: math.unit(1.1938, "meters"),
  13813. weight: math.unit(54, "kg"),
  13814. name: "Front",
  13815. image: {
  13816. source: "./media/characters/nebula-shahar/front.svg",
  13817. extra: 1642 / 1436,
  13818. bottom: 0.06
  13819. }
  13820. },
  13821. },
  13822. [
  13823. {
  13824. name: "Megamicro",
  13825. height: math.unit(0.3, "mm")
  13826. },
  13827. {
  13828. name: "Micro",
  13829. height: math.unit(3, "cm")
  13830. },
  13831. {
  13832. name: "Normal",
  13833. height: math.unit(138, "cm"),
  13834. default: true
  13835. },
  13836. {
  13837. name: "Macro",
  13838. height: math.unit(30, "m")
  13839. },
  13840. ]
  13841. ))
  13842. characterMakers.push(() => makeCharacter(
  13843. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13844. {
  13845. front: {
  13846. height: math.unit(5.24, "feet"),
  13847. weight: math.unit(150, "lb"),
  13848. name: "Front",
  13849. image: {
  13850. source: "./media/characters/shayla/front.svg",
  13851. extra: 1512 / 1414,
  13852. bottom: 0.01
  13853. }
  13854. },
  13855. back: {
  13856. height: math.unit(5.24, "feet"),
  13857. weight: math.unit(150, "lb"),
  13858. name: "Back",
  13859. image: {
  13860. source: "./media/characters/shayla/back.svg",
  13861. extra: 1512 / 1414
  13862. }
  13863. },
  13864. hand: {
  13865. height: math.unit(0.7781496062992126, "feet"),
  13866. name: "Hand",
  13867. image: {
  13868. source: "./media/characters/shayla/hand.svg"
  13869. }
  13870. },
  13871. foot: {
  13872. height: math.unit(1.4206036745406823, "feet"),
  13873. name: "Foot",
  13874. image: {
  13875. source: "./media/characters/shayla/foot.svg"
  13876. }
  13877. },
  13878. },
  13879. [
  13880. {
  13881. name: "Micro",
  13882. height: math.unit(0.32, "feet")
  13883. },
  13884. {
  13885. name: "Normal",
  13886. height: math.unit(5.24, "feet"),
  13887. default: true
  13888. },
  13889. {
  13890. name: "Macro",
  13891. height: math.unit(492.12, "feet")
  13892. },
  13893. {
  13894. name: "Megamacro",
  13895. height: math.unit(186.41, "miles")
  13896. },
  13897. ]
  13898. ))
  13899. characterMakers.push(() => makeCharacter(
  13900. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13901. {
  13902. front: {
  13903. height: math.unit(2.2, "m"),
  13904. weight: math.unit(120, "kg"),
  13905. name: "Front",
  13906. image: {
  13907. source: "./media/characters/pia-jr/front.svg",
  13908. extra: 1000 / 970,
  13909. bottom: 0.035
  13910. }
  13911. },
  13912. hand: {
  13913. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13914. name: "Hand",
  13915. image: {
  13916. source: "./media/characters/pia-jr/hand.svg"
  13917. }
  13918. },
  13919. paw: {
  13920. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13921. name: "Paw",
  13922. image: {
  13923. source: "./media/characters/pia-jr/paw.svg"
  13924. }
  13925. },
  13926. },
  13927. [
  13928. {
  13929. name: "Micro",
  13930. height: math.unit(1.2, "cm")
  13931. },
  13932. {
  13933. name: "Normal",
  13934. height: math.unit(2.2, "m"),
  13935. default: true
  13936. },
  13937. {
  13938. name: "Macro",
  13939. height: math.unit(180, "m")
  13940. },
  13941. {
  13942. name: "Megamacro",
  13943. height: math.unit(420, "km")
  13944. },
  13945. ]
  13946. ))
  13947. characterMakers.push(() => makeCharacter(
  13948. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13949. {
  13950. front: {
  13951. height: math.unit(2, "m"),
  13952. weight: math.unit(115, "kg"),
  13953. name: "Front",
  13954. image: {
  13955. source: "./media/characters/pia-sr/front.svg",
  13956. extra: 760 / 730,
  13957. bottom: 0.015
  13958. }
  13959. },
  13960. back: {
  13961. height: math.unit(2, "m"),
  13962. weight: math.unit(115, "kg"),
  13963. name: "Back",
  13964. image: {
  13965. source: "./media/characters/pia-sr/back.svg",
  13966. extra: 760 / 730,
  13967. bottom: 0.01
  13968. }
  13969. },
  13970. hand: {
  13971. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13972. name: "Hand",
  13973. image: {
  13974. source: "./media/characters/pia-sr/hand.svg"
  13975. }
  13976. },
  13977. foot: {
  13978. height: math.unit(1.83, "feet"),
  13979. name: "Foot",
  13980. image: {
  13981. source: "./media/characters/pia-sr/foot.svg"
  13982. }
  13983. },
  13984. },
  13985. [
  13986. {
  13987. name: "Micro",
  13988. height: math.unit(88, "mm")
  13989. },
  13990. {
  13991. name: "Normal",
  13992. height: math.unit(2, "m"),
  13993. default: true
  13994. },
  13995. {
  13996. name: "Macro",
  13997. height: math.unit(200, "m")
  13998. },
  13999. {
  14000. name: "Megamacro",
  14001. height: math.unit(420, "km")
  14002. },
  14003. ]
  14004. ))
  14005. characterMakers.push(() => makeCharacter(
  14006. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14007. {
  14008. front: {
  14009. height: math.unit(8 + 2 / 12, "feet"),
  14010. weight: math.unit(300, "lb"),
  14011. name: "Front",
  14012. image: {
  14013. source: "./media/characters/kibibyte/front.svg",
  14014. extra: 2221 / 2098,
  14015. bottom: 0.04
  14016. }
  14017. },
  14018. },
  14019. [
  14020. {
  14021. name: "Normal",
  14022. height: math.unit(8 + 2 / 12, "feet"),
  14023. default: true
  14024. },
  14025. {
  14026. name: "Socialable Macro",
  14027. height: math.unit(50, "feet")
  14028. },
  14029. {
  14030. name: "Macro",
  14031. height: math.unit(300, "feet")
  14032. },
  14033. {
  14034. name: "Megamacro",
  14035. height: math.unit(500, "miles")
  14036. },
  14037. ]
  14038. ))
  14039. characterMakers.push(() => makeCharacter(
  14040. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14041. {
  14042. front: {
  14043. height: math.unit(6, "feet"),
  14044. weight: math.unit(150, "lb"),
  14045. name: "Front",
  14046. image: {
  14047. source: "./media/characters/felix/front.svg",
  14048. extra: 762 / 722,
  14049. bottom: 0.02
  14050. }
  14051. },
  14052. frontClothed: {
  14053. height: math.unit(6, "feet"),
  14054. weight: math.unit(150, "lb"),
  14055. name: "Front (Clothed)",
  14056. image: {
  14057. source: "./media/characters/felix/front-clothed.svg",
  14058. extra: 762 / 722,
  14059. bottom: 0.02
  14060. }
  14061. },
  14062. },
  14063. [
  14064. {
  14065. name: "Normal",
  14066. height: math.unit(6 + 8 / 12, "feet"),
  14067. default: true
  14068. },
  14069. {
  14070. name: "Macro",
  14071. height: math.unit(2600, "feet")
  14072. },
  14073. {
  14074. name: "Megamacro",
  14075. height: math.unit(450, "miles")
  14076. },
  14077. ]
  14078. ))
  14079. characterMakers.push(() => makeCharacter(
  14080. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14081. {
  14082. front: {
  14083. height: math.unit(6 + 1 / 12, "feet"),
  14084. weight: math.unit(250, "lb"),
  14085. name: "Front",
  14086. image: {
  14087. source: "./media/characters/tobo/front.svg",
  14088. extra: 608 / 586,
  14089. bottom: 0.023
  14090. }
  14091. },
  14092. back: {
  14093. height: math.unit(6 + 1 / 12, "feet"),
  14094. weight: math.unit(250, "lb"),
  14095. name: "Back",
  14096. image: {
  14097. source: "./media/characters/tobo/back.svg",
  14098. extra: 608 / 586
  14099. }
  14100. },
  14101. },
  14102. [
  14103. {
  14104. name: "Nano",
  14105. height: math.unit(2, "nm")
  14106. },
  14107. {
  14108. name: "Megamicro",
  14109. height: math.unit(0.1, "mm")
  14110. },
  14111. {
  14112. name: "Micro",
  14113. height: math.unit(1, "inch"),
  14114. default: true
  14115. },
  14116. {
  14117. name: "Human-sized",
  14118. height: math.unit(6 + 1 / 12, "feet")
  14119. },
  14120. {
  14121. name: "Macro",
  14122. height: math.unit(250, "feet")
  14123. },
  14124. {
  14125. name: "Megamacro",
  14126. height: math.unit(75, "miles")
  14127. },
  14128. {
  14129. name: "Texas-sized",
  14130. height: math.unit(750, "miles")
  14131. },
  14132. {
  14133. name: "Teramacro",
  14134. height: math.unit(50000, "miles")
  14135. },
  14136. ]
  14137. ))
  14138. characterMakers.push(() => makeCharacter(
  14139. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14140. {
  14141. front: {
  14142. height: math.unit(6, "feet"),
  14143. weight: math.unit(269, "lb"),
  14144. name: "Front",
  14145. image: {
  14146. source: "./media/characters/danny-kapowsky/front.svg",
  14147. extra: 766 / 736,
  14148. bottom: 0.044
  14149. }
  14150. },
  14151. back: {
  14152. height: math.unit(6, "feet"),
  14153. weight: math.unit(269, "lb"),
  14154. name: "Back",
  14155. image: {
  14156. source: "./media/characters/danny-kapowsky/back.svg",
  14157. extra: 797 / 760,
  14158. bottom: 0.025
  14159. }
  14160. },
  14161. },
  14162. [
  14163. {
  14164. name: "Macro",
  14165. height: math.unit(150, "feet"),
  14166. default: true
  14167. },
  14168. {
  14169. name: "Macro+",
  14170. height: math.unit(200, "feet")
  14171. },
  14172. {
  14173. name: "Macro++",
  14174. height: math.unit(300, "feet")
  14175. },
  14176. {
  14177. name: "Macro+++",
  14178. height: math.unit(400, "feet")
  14179. },
  14180. ]
  14181. ))
  14182. characterMakers.push(() => makeCharacter(
  14183. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14184. {
  14185. side: {
  14186. height: math.unit(6, "feet"),
  14187. weight: math.unit(170, "lb"),
  14188. name: "Side",
  14189. image: {
  14190. source: "./media/characters/finn/side.svg",
  14191. extra: 1953 / 1807,
  14192. bottom: 0.057
  14193. }
  14194. },
  14195. },
  14196. [
  14197. {
  14198. name: "Megamacro",
  14199. height: math.unit(14445, "feet"),
  14200. default: true
  14201. },
  14202. ]
  14203. ))
  14204. characterMakers.push(() => makeCharacter(
  14205. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14206. {
  14207. front: {
  14208. height: math.unit(5 + 6 / 12, "feet"),
  14209. weight: math.unit(125, "lb"),
  14210. name: "Front",
  14211. image: {
  14212. source: "./media/characters/roy/front.svg",
  14213. extra: 1,
  14214. bottom: 0.11
  14215. }
  14216. },
  14217. },
  14218. [
  14219. {
  14220. name: "Micro",
  14221. height: math.unit(3, "inches"),
  14222. default: true
  14223. },
  14224. {
  14225. name: "Normal",
  14226. height: math.unit(5 + 6 / 12, "feet")
  14227. },
  14228. {
  14229. name: "Lesser Macro",
  14230. height: math.unit(60, "feet")
  14231. },
  14232. {
  14233. name: "Greater Macro",
  14234. height: math.unit(120, "feet")
  14235. },
  14236. ]
  14237. ))
  14238. characterMakers.push(() => makeCharacter(
  14239. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14240. {
  14241. front: {
  14242. height: math.unit(6, "feet"),
  14243. weight: math.unit(100, "lb"),
  14244. name: "Front",
  14245. image: {
  14246. source: "./media/characters/aevsivs/front.svg",
  14247. extra: 1,
  14248. bottom: 0.03
  14249. }
  14250. },
  14251. back: {
  14252. height: math.unit(6, "feet"),
  14253. weight: math.unit(100, "lb"),
  14254. name: "Back",
  14255. image: {
  14256. source: "./media/characters/aevsivs/back.svg"
  14257. }
  14258. },
  14259. },
  14260. [
  14261. {
  14262. name: "Micro",
  14263. height: math.unit(2, "inches"),
  14264. default: true
  14265. },
  14266. {
  14267. name: "Normal",
  14268. height: math.unit(5, "feet")
  14269. },
  14270. ]
  14271. ))
  14272. characterMakers.push(() => makeCharacter(
  14273. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14274. {
  14275. front: {
  14276. height: math.unit(5 + 7 / 12, "feet"),
  14277. weight: math.unit(159, "lb"),
  14278. name: "Front",
  14279. image: {
  14280. source: "./media/characters/hildegard/front.svg",
  14281. extra: 289 / 269,
  14282. bottom: 7.63 / 297.8
  14283. }
  14284. },
  14285. back: {
  14286. height: math.unit(5 + 7 / 12, "feet"),
  14287. weight: math.unit(159, "lb"),
  14288. name: "Back",
  14289. image: {
  14290. source: "./media/characters/hildegard/back.svg",
  14291. extra: 280 / 260,
  14292. bottom: 2.3 / 282
  14293. }
  14294. },
  14295. },
  14296. [
  14297. {
  14298. name: "Normal",
  14299. height: math.unit(5 + 7 / 12, "feet"),
  14300. default: true
  14301. },
  14302. ]
  14303. ))
  14304. characterMakers.push(() => makeCharacter(
  14305. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14306. {
  14307. bernard: {
  14308. height: math.unit(2 + 7 / 12, "feet"),
  14309. weight: math.unit(66, "lb"),
  14310. name: "Bernard",
  14311. rename: true,
  14312. image: {
  14313. source: "./media/characters/bernard-wilder/bernard.svg",
  14314. extra: 192 / 128,
  14315. bottom: 0.05
  14316. }
  14317. },
  14318. wilder: {
  14319. height: math.unit(5 + 8 / 12, "feet"),
  14320. weight: math.unit(143, "lb"),
  14321. name: "Wilder",
  14322. rename: true,
  14323. image: {
  14324. source: "./media/characters/bernard-wilder/wilder.svg",
  14325. extra: 361 / 312,
  14326. bottom: 0.02
  14327. }
  14328. },
  14329. },
  14330. [
  14331. {
  14332. name: "Normal",
  14333. height: math.unit(2 + 7 / 12, "feet"),
  14334. default: true
  14335. },
  14336. ]
  14337. ))
  14338. characterMakers.push(() => makeCharacter(
  14339. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14340. {
  14341. anthro: {
  14342. height: math.unit(6 + 1 / 12, "feet"),
  14343. weight: math.unit(155, "lb"),
  14344. name: "Anthro",
  14345. image: {
  14346. source: "./media/characters/hearth/anthro.svg",
  14347. extra: 260 / 250,
  14348. bottom: 0.02
  14349. }
  14350. },
  14351. feral: {
  14352. height: math.unit(3.78, "feet"),
  14353. weight: math.unit(35, "kg"),
  14354. name: "Feral",
  14355. image: {
  14356. source: "./media/characters/hearth/feral.svg",
  14357. extra: 153 / 135,
  14358. bottom: 0.03
  14359. }
  14360. },
  14361. },
  14362. [
  14363. {
  14364. name: "Normal",
  14365. height: math.unit(6 + 1 / 12, "feet"),
  14366. default: true
  14367. },
  14368. ]
  14369. ))
  14370. characterMakers.push(() => makeCharacter(
  14371. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14372. {
  14373. front: {
  14374. height: math.unit(6, "feet"),
  14375. weight: math.unit(182, "lb"),
  14376. name: "Front",
  14377. image: {
  14378. source: "./media/characters/ingrid/front.svg",
  14379. extra: 294 / 268,
  14380. bottom: 0.027
  14381. }
  14382. },
  14383. },
  14384. [
  14385. {
  14386. name: "Normal",
  14387. height: math.unit(6, "feet"),
  14388. default: true
  14389. },
  14390. ]
  14391. ))
  14392. characterMakers.push(() => makeCharacter(
  14393. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14394. {
  14395. eevee: {
  14396. height: math.unit(2 + 10 / 12, "feet"),
  14397. weight: math.unit(86, "lb"),
  14398. name: "Malgam",
  14399. image: {
  14400. source: "./media/characters/malgam/eevee.svg",
  14401. extra: 218 / 180,
  14402. bottom: 0.2
  14403. }
  14404. },
  14405. sylveon: {
  14406. height: math.unit(4, "feet"),
  14407. weight: math.unit(101, "lb"),
  14408. name: "Future Malgam",
  14409. rename: true,
  14410. image: {
  14411. source: "./media/characters/malgam/sylveon.svg",
  14412. extra: 371 / 325,
  14413. bottom: 0.015
  14414. }
  14415. },
  14416. gigantamax: {
  14417. height: math.unit(50, "feet"),
  14418. name: "Gigantamax Malgam",
  14419. rename: true,
  14420. image: {
  14421. source: "./media/characters/malgam/gigantamax.svg"
  14422. }
  14423. },
  14424. },
  14425. [
  14426. {
  14427. name: "Normal",
  14428. height: math.unit(2 + 10 / 12, "feet"),
  14429. default: true
  14430. },
  14431. ]
  14432. ))
  14433. characterMakers.push(() => makeCharacter(
  14434. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14435. {
  14436. front: {
  14437. height: math.unit(5 + 11 / 12, "feet"),
  14438. weight: math.unit(188, "lb"),
  14439. name: "Front",
  14440. image: {
  14441. source: "./media/characters/fleur/front.svg",
  14442. extra: 309 / 283,
  14443. bottom: 0.007
  14444. }
  14445. },
  14446. },
  14447. [
  14448. {
  14449. name: "Normal",
  14450. height: math.unit(5 + 11 / 12, "feet"),
  14451. default: true
  14452. },
  14453. ]
  14454. ))
  14455. characterMakers.push(() => makeCharacter(
  14456. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14457. {
  14458. front: {
  14459. height: math.unit(5 + 4 / 12, "feet"),
  14460. weight: math.unit(122, "lb"),
  14461. name: "Front",
  14462. image: {
  14463. source: "./media/characters/jude/front.svg",
  14464. extra: 288 / 273,
  14465. bottom: 0.03
  14466. }
  14467. },
  14468. },
  14469. [
  14470. {
  14471. name: "Normal",
  14472. height: math.unit(5 + 4 / 12, "feet"),
  14473. default: true
  14474. },
  14475. ]
  14476. ))
  14477. characterMakers.push(() => makeCharacter(
  14478. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14479. {
  14480. front: {
  14481. height: math.unit(5 + 11 / 12, "feet"),
  14482. weight: math.unit(190, "lb"),
  14483. name: "Front",
  14484. image: {
  14485. source: "./media/characters/seara/front.svg",
  14486. extra: 1,
  14487. bottom: 0.05
  14488. }
  14489. },
  14490. },
  14491. [
  14492. {
  14493. name: "Normal",
  14494. height: math.unit(5 + 11 / 12, "feet"),
  14495. default: true
  14496. },
  14497. ]
  14498. ))
  14499. characterMakers.push(() => makeCharacter(
  14500. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14501. {
  14502. front: {
  14503. height: math.unit(16 + 5 / 12, "feet"),
  14504. weight: math.unit(524, "lb"),
  14505. name: "Front",
  14506. image: {
  14507. source: "./media/characters/caspian/front.svg",
  14508. extra: 1,
  14509. bottom: 0.04
  14510. }
  14511. },
  14512. },
  14513. [
  14514. {
  14515. name: "Normal",
  14516. height: math.unit(16 + 5 / 12, "feet"),
  14517. default: true
  14518. },
  14519. ]
  14520. ))
  14521. characterMakers.push(() => makeCharacter(
  14522. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14523. {
  14524. front: {
  14525. height: math.unit(5 + 7 / 12, "feet"),
  14526. weight: math.unit(170, "lb"),
  14527. name: "Front",
  14528. image: {
  14529. source: "./media/characters/mika/front.svg",
  14530. extra: 1,
  14531. bottom: 0.016
  14532. }
  14533. },
  14534. },
  14535. [
  14536. {
  14537. name: "Normal",
  14538. height: math.unit(5 + 7 / 12, "feet"),
  14539. default: true
  14540. },
  14541. ]
  14542. ))
  14543. characterMakers.push(() => makeCharacter(
  14544. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14545. {
  14546. front: {
  14547. height: math.unit(6 + 2 / 12, "feet"),
  14548. weight: math.unit(268, "lb"),
  14549. name: "Front",
  14550. image: {
  14551. source: "./media/characters/sol/front.svg",
  14552. extra: 247 / 231,
  14553. bottom: 0.05
  14554. }
  14555. },
  14556. },
  14557. [
  14558. {
  14559. name: "Normal",
  14560. height: math.unit(6 + 2 / 12, "feet"),
  14561. default: true
  14562. },
  14563. ]
  14564. ))
  14565. characterMakers.push(() => makeCharacter(
  14566. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14567. {
  14568. buizel: {
  14569. height: math.unit(2 + 5 / 12, "feet"),
  14570. weight: math.unit(87, "lb"),
  14571. name: "Buizel",
  14572. image: {
  14573. source: "./media/characters/umiko/buizel.svg",
  14574. extra: 172 / 157,
  14575. bottom: 0.01
  14576. }
  14577. },
  14578. floatzel: {
  14579. height: math.unit(5 + 9 / 12, "feet"),
  14580. weight: math.unit(250, "lb"),
  14581. name: "Floatzel",
  14582. image: {
  14583. source: "./media/characters/umiko/floatzel.svg",
  14584. extra: 262 / 248
  14585. }
  14586. },
  14587. },
  14588. [
  14589. {
  14590. name: "Normal",
  14591. height: math.unit(2 + 5 / 12, "feet"),
  14592. default: true
  14593. },
  14594. ]
  14595. ))
  14596. characterMakers.push(() => makeCharacter(
  14597. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14598. {
  14599. front: {
  14600. height: math.unit(6 + 2 / 12, "feet"),
  14601. weight: math.unit(146, "lb"),
  14602. name: "Front",
  14603. image: {
  14604. source: "./media/characters/iliac/front.svg",
  14605. extra: 389 / 365,
  14606. bottom: 0.035
  14607. }
  14608. },
  14609. },
  14610. [
  14611. {
  14612. name: "Normal",
  14613. height: math.unit(6 + 2 / 12, "feet"),
  14614. default: true
  14615. },
  14616. ]
  14617. ))
  14618. characterMakers.push(() => makeCharacter(
  14619. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14620. {
  14621. front: {
  14622. height: math.unit(6, "feet"),
  14623. weight: math.unit(170, "lb"),
  14624. name: "Front",
  14625. image: {
  14626. source: "./media/characters/topaz/front.svg",
  14627. extra: 317 / 303,
  14628. bottom: 0.055
  14629. }
  14630. },
  14631. },
  14632. [
  14633. {
  14634. name: "Normal",
  14635. height: math.unit(6, "feet"),
  14636. default: true
  14637. },
  14638. ]
  14639. ))
  14640. characterMakers.push(() => makeCharacter(
  14641. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14642. {
  14643. front: {
  14644. height: math.unit(5 + 11 / 12, "feet"),
  14645. weight: math.unit(144, "lb"),
  14646. name: "Front",
  14647. image: {
  14648. source: "./media/characters/gabriel/front.svg",
  14649. extra: 285 / 262,
  14650. bottom: 0.004
  14651. }
  14652. },
  14653. },
  14654. [
  14655. {
  14656. name: "Normal",
  14657. height: math.unit(5 + 11 / 12, "feet"),
  14658. default: true
  14659. },
  14660. ]
  14661. ))
  14662. characterMakers.push(() => makeCharacter(
  14663. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14664. {
  14665. side: {
  14666. height: math.unit(6 + 5 / 12, "feet"),
  14667. weight: math.unit(300, "lb"),
  14668. name: "Side",
  14669. image: {
  14670. source: "./media/characters/tempest-suicune/side.svg",
  14671. extra: 195 / 154,
  14672. bottom: 0.04
  14673. }
  14674. },
  14675. },
  14676. [
  14677. {
  14678. name: "Normal",
  14679. height: math.unit(6 + 5 / 12, "feet"),
  14680. default: true
  14681. },
  14682. ]
  14683. ))
  14684. characterMakers.push(() => makeCharacter(
  14685. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14686. {
  14687. front: {
  14688. height: math.unit(7 + 2 / 12, "feet"),
  14689. weight: math.unit(322, "lb"),
  14690. name: "Front",
  14691. image: {
  14692. source: "./media/characters/vulcan/front.svg",
  14693. extra: 154 / 147,
  14694. bottom: 0.04
  14695. }
  14696. },
  14697. },
  14698. [
  14699. {
  14700. name: "Normal",
  14701. height: math.unit(7 + 2 / 12, "feet"),
  14702. default: true
  14703. },
  14704. ]
  14705. ))
  14706. characterMakers.push(() => makeCharacter(
  14707. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14708. {
  14709. front: {
  14710. height: math.unit(5 + 10 / 12, "feet"),
  14711. weight: math.unit(264, "lb"),
  14712. name: "Front",
  14713. image: {
  14714. source: "./media/characters/gault/front.svg",
  14715. extra: 161 / 140,
  14716. bottom: 0.028
  14717. }
  14718. },
  14719. },
  14720. [
  14721. {
  14722. name: "Normal",
  14723. height: math.unit(5 + 10 / 12, "feet"),
  14724. default: true
  14725. },
  14726. ]
  14727. ))
  14728. characterMakers.push(() => makeCharacter(
  14729. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14730. {
  14731. front: {
  14732. height: math.unit(6, "feet"),
  14733. weight: math.unit(150, "lb"),
  14734. name: "Front",
  14735. image: {
  14736. source: "./media/characters/shard/front.svg",
  14737. extra: 273 / 238,
  14738. bottom: 0.02
  14739. }
  14740. },
  14741. },
  14742. [
  14743. {
  14744. name: "Normal",
  14745. height: math.unit(3 + 6 / 12, "feet"),
  14746. default: true
  14747. },
  14748. ]
  14749. ))
  14750. characterMakers.push(() => makeCharacter(
  14751. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14752. {
  14753. front: {
  14754. height: math.unit(5 + 11 / 12, "feet"),
  14755. weight: math.unit(146, "lb"),
  14756. name: "Front",
  14757. image: {
  14758. source: "./media/characters/ashe/front.svg",
  14759. extra: 400 / 373,
  14760. bottom: 0.01
  14761. }
  14762. },
  14763. },
  14764. [
  14765. {
  14766. name: "Normal",
  14767. height: math.unit(5 + 11 / 12, "feet"),
  14768. default: true
  14769. },
  14770. ]
  14771. ))
  14772. characterMakers.push(() => makeCharacter(
  14773. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14774. {
  14775. front: {
  14776. height: math.unit(5 + 5 / 12, "feet"),
  14777. weight: math.unit(135, "lb"),
  14778. name: "Front",
  14779. image: {
  14780. source: "./media/characters/beatrix/front.svg",
  14781. extra: 392 / 379,
  14782. bottom: 0.01
  14783. }
  14784. },
  14785. },
  14786. [
  14787. {
  14788. name: "Normal",
  14789. height: math.unit(6, "feet"),
  14790. default: true
  14791. },
  14792. ]
  14793. ))
  14794. characterMakers.push(() => makeCharacter(
  14795. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14796. {
  14797. front: {
  14798. height: math.unit(6, "feet"),
  14799. weight: math.unit(150, "lb"),
  14800. name: "Front",
  14801. image: {
  14802. source: "./media/characters/ignatius/front.svg",
  14803. extra: 245 / 222,
  14804. bottom: 0.01
  14805. }
  14806. },
  14807. },
  14808. [
  14809. {
  14810. name: "Normal",
  14811. height: math.unit(5 + 5 / 12, "feet"),
  14812. default: true
  14813. },
  14814. ]
  14815. ))
  14816. characterMakers.push(() => makeCharacter(
  14817. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14818. {
  14819. front: {
  14820. height: math.unit(6 + 2 / 12, "feet"),
  14821. weight: math.unit(138, "lb"),
  14822. name: "Front",
  14823. image: {
  14824. source: "./media/characters/mei-li/front.svg",
  14825. extra: 237 / 229,
  14826. bottom: 0.03
  14827. }
  14828. },
  14829. },
  14830. [
  14831. {
  14832. name: "Normal",
  14833. height: math.unit(6 + 2 / 12, "feet"),
  14834. default: true
  14835. },
  14836. ]
  14837. ))
  14838. characterMakers.push(() => makeCharacter(
  14839. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14840. {
  14841. front: {
  14842. height: math.unit(2 + 4 / 12, "feet"),
  14843. weight: math.unit(62, "lb"),
  14844. name: "Front",
  14845. image: {
  14846. source: "./media/characters/puru/front.svg",
  14847. extra: 206 / 149,
  14848. bottom: 0.06
  14849. }
  14850. },
  14851. },
  14852. [
  14853. {
  14854. name: "Normal",
  14855. height: math.unit(2 + 4 / 12, "feet"),
  14856. default: true
  14857. },
  14858. ]
  14859. ))
  14860. characterMakers.push(() => makeCharacter(
  14861. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14862. {
  14863. taur: {
  14864. height: math.unit(11, "feet"),
  14865. weight: math.unit(500, "lb"),
  14866. name: "Taur",
  14867. image: {
  14868. source: "./media/characters/kee/taur.svg",
  14869. extra: 1,
  14870. bottom: 0.04
  14871. }
  14872. },
  14873. },
  14874. [
  14875. {
  14876. name: "Normal",
  14877. height: math.unit(11, "feet"),
  14878. default: true
  14879. },
  14880. ]
  14881. ))
  14882. characterMakers.push(() => makeCharacter(
  14883. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14884. {
  14885. anthro: {
  14886. height: math.unit(7, "feet"),
  14887. weight: math.unit(190, "lb"),
  14888. name: "Anthro",
  14889. image: {
  14890. source: "./media/characters/cobalt-dracha/anthro.svg",
  14891. extra: 231 / 225,
  14892. bottom: 0.04
  14893. }
  14894. },
  14895. feral: {
  14896. height: math.unit(9 + 7 / 12, "feet"),
  14897. weight: math.unit(294, "lb"),
  14898. name: "Feral",
  14899. image: {
  14900. source: "./media/characters/cobalt-dracha/feral.svg",
  14901. extra: 692 / 633,
  14902. bottom: 0.05
  14903. }
  14904. },
  14905. },
  14906. [
  14907. {
  14908. name: "Normal",
  14909. height: math.unit(7, "feet"),
  14910. default: true
  14911. },
  14912. ]
  14913. ))
  14914. characterMakers.push(() => makeCharacter(
  14915. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14916. {
  14917. fallen: {
  14918. height: math.unit(11 + 8 / 12, "feet"),
  14919. weight: math.unit(485, "lb"),
  14920. name: "Java (Fallen)",
  14921. rename: true,
  14922. image: {
  14923. source: "./media/characters/java/fallen.svg",
  14924. extra: 226 / 208,
  14925. bottom: 0.005
  14926. }
  14927. },
  14928. godkin: {
  14929. height: math.unit(10 + 6 / 12, "feet"),
  14930. weight: math.unit(328, "lb"),
  14931. name: "Java (Godkin)",
  14932. rename: true,
  14933. image: {
  14934. source: "./media/characters/java/godkin.svg",
  14935. extra: 270 / 262,
  14936. bottom: 0.02
  14937. }
  14938. },
  14939. },
  14940. [
  14941. {
  14942. name: "Normal",
  14943. height: math.unit(11 + 8 / 12, "feet"),
  14944. default: true
  14945. },
  14946. ]
  14947. ))
  14948. characterMakers.push(() => makeCharacter(
  14949. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14950. {
  14951. front: {
  14952. height: math.unit(7 + 8 / 12, "feet"),
  14953. weight: math.unit(320, "lb"),
  14954. name: "Front",
  14955. image: {
  14956. source: "./media/characters/skoll/front.svg",
  14957. extra: 232 / 220,
  14958. bottom: 0.02
  14959. }
  14960. },
  14961. },
  14962. [
  14963. {
  14964. name: "Normal",
  14965. height: math.unit(7 + 8 / 12, "feet"),
  14966. default: true
  14967. },
  14968. ]
  14969. ))
  14970. characterMakers.push(() => makeCharacter(
  14971. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14972. {
  14973. front: {
  14974. height: math.unit(5 + 9 / 12, "feet"),
  14975. weight: math.unit(170, "lb"),
  14976. name: "Front",
  14977. image: {
  14978. source: "./media/characters/purna/front.svg",
  14979. extra: 239 / 229,
  14980. bottom: 0.01
  14981. }
  14982. },
  14983. },
  14984. [
  14985. {
  14986. name: "Normal",
  14987. height: math.unit(5 + 9 / 12, "feet"),
  14988. default: true
  14989. },
  14990. ]
  14991. ))
  14992. characterMakers.push(() => makeCharacter(
  14993. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14994. {
  14995. front: {
  14996. height: math.unit(5 + 9 / 12, "feet"),
  14997. weight: math.unit(142, "lb"),
  14998. name: "Front",
  14999. image: {
  15000. source: "./media/characters/kuva/front.svg",
  15001. extra: 281 / 271,
  15002. bottom: 0.006
  15003. }
  15004. },
  15005. },
  15006. [
  15007. {
  15008. name: "Normal",
  15009. height: math.unit(5 + 9 / 12, "feet"),
  15010. default: true
  15011. },
  15012. ]
  15013. ))
  15014. characterMakers.push(() => makeCharacter(
  15015. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15016. {
  15017. anthro: {
  15018. height: math.unit(9 + 2 / 12, "feet"),
  15019. weight: math.unit(270, "lb"),
  15020. name: "Anthro",
  15021. image: {
  15022. source: "./media/characters/embra/anthro.svg",
  15023. extra: 200 / 187,
  15024. bottom: 0.02
  15025. }
  15026. },
  15027. feral: {
  15028. height: math.unit(18 + 8 / 12, "feet"),
  15029. weight: math.unit(576, "lb"),
  15030. name: "Feral",
  15031. image: {
  15032. source: "./media/characters/embra/feral.svg",
  15033. extra: 152 / 137,
  15034. bottom: 0.037
  15035. }
  15036. },
  15037. },
  15038. [
  15039. {
  15040. name: "Normal",
  15041. height: math.unit(9 + 2 / 12, "feet"),
  15042. default: true
  15043. },
  15044. ]
  15045. ))
  15046. characterMakers.push(() => makeCharacter(
  15047. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15048. {
  15049. anthro: {
  15050. height: math.unit(10 + 9 / 12, "feet"),
  15051. weight: math.unit(224, "lb"),
  15052. name: "Anthro",
  15053. image: {
  15054. source: "./media/characters/grottos/anthro.svg",
  15055. extra: 350 / 332,
  15056. bottom: 0.045
  15057. }
  15058. },
  15059. feral: {
  15060. height: math.unit(20 + 7 / 12, "feet"),
  15061. weight: math.unit(629, "lb"),
  15062. name: "Feral",
  15063. image: {
  15064. source: "./media/characters/grottos/feral.svg",
  15065. extra: 207 / 190,
  15066. bottom: 0.05
  15067. }
  15068. },
  15069. },
  15070. [
  15071. {
  15072. name: "Normal",
  15073. height: math.unit(10 + 9 / 12, "feet"),
  15074. default: true
  15075. },
  15076. ]
  15077. ))
  15078. characterMakers.push(() => makeCharacter(
  15079. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15080. {
  15081. anthro: {
  15082. height: math.unit(9 + 6 / 12, "feet"),
  15083. weight: math.unit(298, "lb"),
  15084. name: "Anthro",
  15085. image: {
  15086. source: "./media/characters/frifna/anthro.svg",
  15087. extra: 282 / 269,
  15088. bottom: 0.015
  15089. }
  15090. },
  15091. feral: {
  15092. height: math.unit(16 + 2 / 12, "feet"),
  15093. weight: math.unit(624, "lb"),
  15094. name: "Feral",
  15095. image: {
  15096. source: "./media/characters/frifna/feral.svg"
  15097. }
  15098. },
  15099. },
  15100. [
  15101. {
  15102. name: "Normal",
  15103. height: math.unit(9 + 6 / 12, "feet"),
  15104. default: true
  15105. },
  15106. ]
  15107. ))
  15108. characterMakers.push(() => makeCharacter(
  15109. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15110. {
  15111. front: {
  15112. height: math.unit(6 + 2 / 12, "feet"),
  15113. weight: math.unit(168, "lb"),
  15114. name: "Front",
  15115. image: {
  15116. source: "./media/characters/elise/front.svg",
  15117. extra: 276 / 271
  15118. }
  15119. },
  15120. },
  15121. [
  15122. {
  15123. name: "Normal",
  15124. height: math.unit(6 + 2 / 12, "feet"),
  15125. default: true
  15126. },
  15127. ]
  15128. ))
  15129. characterMakers.push(() => makeCharacter(
  15130. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15131. {
  15132. front: {
  15133. height: math.unit(5 + 10 / 12, "feet"),
  15134. weight: math.unit(210, "lb"),
  15135. name: "Front",
  15136. image: {
  15137. source: "./media/characters/glade/front.svg",
  15138. extra: 258 / 247,
  15139. bottom: 0.008
  15140. }
  15141. },
  15142. },
  15143. [
  15144. {
  15145. name: "Normal",
  15146. height: math.unit(5 + 10 / 12, "feet"),
  15147. default: true
  15148. },
  15149. ]
  15150. ))
  15151. characterMakers.push(() => makeCharacter(
  15152. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15153. {
  15154. front: {
  15155. height: math.unit(5 + 10 / 12, "feet"),
  15156. weight: math.unit(129, "lb"),
  15157. name: "Front",
  15158. image: {
  15159. source: "./media/characters/rina/front.svg",
  15160. extra: 266 / 255,
  15161. bottom: 0.005
  15162. }
  15163. },
  15164. },
  15165. [
  15166. {
  15167. name: "Normal",
  15168. height: math.unit(5 + 10 / 12, "feet"),
  15169. default: true
  15170. },
  15171. ]
  15172. ))
  15173. characterMakers.push(() => makeCharacter(
  15174. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15175. {
  15176. front: {
  15177. height: math.unit(6 + 1 / 12, "feet"),
  15178. weight: math.unit(192, "lb"),
  15179. name: "Front",
  15180. image: {
  15181. source: "./media/characters/veronica/front.svg",
  15182. extra: 319 / 309,
  15183. bottom: 0.005
  15184. }
  15185. },
  15186. },
  15187. [
  15188. {
  15189. name: "Normal",
  15190. height: math.unit(6 + 1 / 12, "feet"),
  15191. default: true
  15192. },
  15193. ]
  15194. ))
  15195. characterMakers.push(() => makeCharacter(
  15196. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15197. {
  15198. front: {
  15199. height: math.unit(9 + 3 / 12, "feet"),
  15200. weight: math.unit(1100, "lb"),
  15201. name: "Front",
  15202. image: {
  15203. source: "./media/characters/braxton/front.svg",
  15204. extra: 1057 / 984,
  15205. bottom: 0.05
  15206. }
  15207. },
  15208. },
  15209. [
  15210. {
  15211. name: "Normal",
  15212. height: math.unit(9 + 3 / 12, "feet")
  15213. },
  15214. {
  15215. name: "Giant",
  15216. height: math.unit(300, "feet"),
  15217. default: true
  15218. },
  15219. {
  15220. name: "Macro",
  15221. height: math.unit(700, "feet")
  15222. },
  15223. {
  15224. name: "Megamacro",
  15225. height: math.unit(6000, "feet")
  15226. },
  15227. ]
  15228. ))
  15229. characterMakers.push(() => makeCharacter(
  15230. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15231. {
  15232. front: {
  15233. height: math.unit(6 + 7 / 12, "feet"),
  15234. weight: math.unit(150, "lb"),
  15235. name: "Front",
  15236. image: {
  15237. source: "./media/characters/blue-feyonics/front.svg",
  15238. extra: 1403 / 1306,
  15239. bottom: 0.047
  15240. }
  15241. },
  15242. },
  15243. [
  15244. {
  15245. name: "Normal",
  15246. height: math.unit(6 + 7 / 12, "feet"),
  15247. default: true
  15248. },
  15249. ]
  15250. ))
  15251. characterMakers.push(() => makeCharacter(
  15252. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15253. {
  15254. front: {
  15255. height: math.unit(1.8, "meters"),
  15256. weight: math.unit(60, "kg"),
  15257. name: "Front",
  15258. image: {
  15259. source: "./media/characters/maxwell/front.svg",
  15260. extra: 2060 / 1873
  15261. }
  15262. },
  15263. },
  15264. [
  15265. {
  15266. name: "Micro",
  15267. height: math.unit(1, "mm")
  15268. },
  15269. {
  15270. name: "Normal",
  15271. height: math.unit(1.8, "meter"),
  15272. default: true
  15273. },
  15274. {
  15275. name: "Macro",
  15276. height: math.unit(30, "meters")
  15277. },
  15278. {
  15279. name: "Megamacro",
  15280. height: math.unit(10, "km")
  15281. },
  15282. ]
  15283. ))
  15284. characterMakers.push(() => makeCharacter(
  15285. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15286. {
  15287. front: {
  15288. height: math.unit(6, "feet"),
  15289. weight: math.unit(150, "lb"),
  15290. name: "Front",
  15291. image: {
  15292. source: "./media/characters/jack/front.svg",
  15293. extra: 1754 / 1640,
  15294. bottom: 0.01
  15295. }
  15296. },
  15297. },
  15298. [
  15299. {
  15300. name: "Normal",
  15301. height: math.unit(80000, "feet"),
  15302. default: true
  15303. },
  15304. {
  15305. name: "Max size",
  15306. height: math.unit(10, "lightyears")
  15307. },
  15308. ]
  15309. ))
  15310. characterMakers.push(() => makeCharacter(
  15311. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15312. {
  15313. upright: {
  15314. height: math.unit(7, "feet"),
  15315. weight: math.unit(170, "lb"),
  15316. name: "Upright",
  15317. image: {
  15318. source: "./media/characters/cafat/upright.svg",
  15319. bottom: 0.01
  15320. }
  15321. },
  15322. uprightFull: {
  15323. height: math.unit(7, "feet"),
  15324. weight: math.unit(170, "lb"),
  15325. name: "Upright (Full)",
  15326. image: {
  15327. source: "./media/characters/cafat/upright-full.svg",
  15328. bottom: 0.01
  15329. }
  15330. },
  15331. side: {
  15332. height: math.unit(5, "feet"),
  15333. weight: math.unit(150, "lb"),
  15334. name: "Side",
  15335. image: {
  15336. source: "./media/characters/cafat/side.svg"
  15337. }
  15338. },
  15339. },
  15340. [
  15341. {
  15342. name: "Small",
  15343. height: math.unit(7, "feet"),
  15344. default: true
  15345. },
  15346. {
  15347. name: "Large",
  15348. height: math.unit(15.5, "feet")
  15349. },
  15350. ]
  15351. ))
  15352. characterMakers.push(() => makeCharacter(
  15353. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15354. {
  15355. front: {
  15356. height: math.unit(6, "feet"),
  15357. weight: math.unit(150, "lb"),
  15358. name: "Front",
  15359. image: {
  15360. source: "./media/characters/verin-raharra/front.svg",
  15361. extra: 5019 / 4835,
  15362. bottom: 0.023
  15363. }
  15364. },
  15365. },
  15366. [
  15367. {
  15368. name: "Normal",
  15369. height: math.unit(7 + 5 / 12, "feet"),
  15370. default: true
  15371. },
  15372. {
  15373. name: "Upsized",
  15374. height: math.unit(20, "feet")
  15375. },
  15376. ]
  15377. ))
  15378. characterMakers.push(() => makeCharacter(
  15379. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15380. {
  15381. front: {
  15382. height: math.unit(7, "feet"),
  15383. weight: math.unit(230, "lb"),
  15384. name: "Front",
  15385. image: {
  15386. source: "./media/characters/nakata/front.svg",
  15387. extra: 1.005,
  15388. bottom: 0.01
  15389. }
  15390. },
  15391. },
  15392. [
  15393. {
  15394. name: "Normal",
  15395. height: math.unit(7, "feet"),
  15396. default: true
  15397. },
  15398. {
  15399. name: "Big",
  15400. height: math.unit(14, "feet")
  15401. },
  15402. {
  15403. name: "Macro",
  15404. height: math.unit(400, "feet")
  15405. },
  15406. ]
  15407. ))
  15408. characterMakers.push(() => makeCharacter(
  15409. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15410. {
  15411. front: {
  15412. height: math.unit(4.91, "feet"),
  15413. weight: math.unit(100, "lb"),
  15414. name: "Front",
  15415. image: {
  15416. source: "./media/characters/lily/front.svg",
  15417. extra: 1585 / 1415,
  15418. bottom: 0.02
  15419. }
  15420. },
  15421. },
  15422. [
  15423. {
  15424. name: "Normal",
  15425. height: math.unit(4.91, "feet"),
  15426. default: true
  15427. },
  15428. ]
  15429. ))
  15430. characterMakers.push(() => makeCharacter(
  15431. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15432. {
  15433. laying: {
  15434. height: math.unit(4 + 4 / 12, "feet"),
  15435. weight: math.unit(600, "lb"),
  15436. name: "Laying",
  15437. image: {
  15438. source: "./media/characters/sheila/laying.svg",
  15439. extra: 1333 / 1265,
  15440. bottom: 0.16
  15441. }
  15442. },
  15443. },
  15444. [
  15445. {
  15446. name: "Normal",
  15447. height: math.unit(4 + 4 / 12, "feet"),
  15448. default: true
  15449. },
  15450. ]
  15451. ))
  15452. characterMakers.push(() => makeCharacter(
  15453. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15454. {
  15455. front: {
  15456. height: math.unit(6, "feet"),
  15457. weight: math.unit(190, "lb"),
  15458. name: "Front",
  15459. image: {
  15460. source: "./media/characters/sax/front.svg",
  15461. extra: 1187 / 973,
  15462. bottom: 0.042
  15463. }
  15464. },
  15465. },
  15466. [
  15467. {
  15468. name: "Micro",
  15469. height: math.unit(4, "inches"),
  15470. default: true
  15471. },
  15472. ]
  15473. ))
  15474. characterMakers.push(() => makeCharacter(
  15475. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15476. {
  15477. front: {
  15478. height: math.unit(6, "feet"),
  15479. weight: math.unit(150, "lb"),
  15480. name: "Front",
  15481. image: {
  15482. source: "./media/characters/pandora/front.svg",
  15483. extra: 2720 / 2556,
  15484. bottom: 0.015
  15485. }
  15486. },
  15487. back: {
  15488. height: math.unit(6, "feet"),
  15489. weight: math.unit(150, "lb"),
  15490. name: "Back",
  15491. image: {
  15492. source: "./media/characters/pandora/back.svg",
  15493. extra: 2720 / 2556,
  15494. bottom: 0.01
  15495. }
  15496. },
  15497. beans: {
  15498. height: math.unit(6 / 8, "feet"),
  15499. name: "Beans",
  15500. image: {
  15501. source: "./media/characters/pandora/beans.svg"
  15502. }
  15503. },
  15504. skirt: {
  15505. height: math.unit(6, "feet"),
  15506. weight: math.unit(150, "lb"),
  15507. name: "Skirt",
  15508. image: {
  15509. source: "./media/characters/pandora/skirt.svg",
  15510. extra: 1622 / 1525,
  15511. bottom: 0.015
  15512. }
  15513. },
  15514. hoodie: {
  15515. height: math.unit(6, "feet"),
  15516. weight: math.unit(150, "lb"),
  15517. name: "Hoodie",
  15518. image: {
  15519. source: "./media/characters/pandora/hoodie.svg",
  15520. extra: 1622 / 1525,
  15521. bottom: 0.015
  15522. }
  15523. },
  15524. casual: {
  15525. height: math.unit(6, "feet"),
  15526. weight: math.unit(150, "lb"),
  15527. name: "Casual",
  15528. image: {
  15529. source: "./media/characters/pandora/casual.svg",
  15530. extra: 1622 / 1525,
  15531. bottom: 0.015
  15532. }
  15533. },
  15534. },
  15535. [
  15536. {
  15537. name: "Normal",
  15538. height: math.unit(6, "feet")
  15539. },
  15540. {
  15541. name: "Big Steppy",
  15542. height: math.unit(1, "km"),
  15543. default: true
  15544. },
  15545. ]
  15546. ))
  15547. characterMakers.push(() => makeCharacter(
  15548. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15549. {
  15550. side: {
  15551. height: math.unit(10, "feet"),
  15552. weight: math.unit(800, "kg"),
  15553. name: "Side",
  15554. image: {
  15555. source: "./media/characters/venio-darcony/side.svg",
  15556. extra: 1373 / 1003,
  15557. bottom: 0.037
  15558. }
  15559. },
  15560. front: {
  15561. height: math.unit(19, "feet"),
  15562. weight: math.unit(800, "kg"),
  15563. name: "Front",
  15564. image: {
  15565. source: "./media/characters/venio-darcony/front.svg"
  15566. }
  15567. },
  15568. back: {
  15569. height: math.unit(19, "feet"),
  15570. weight: math.unit(800, "kg"),
  15571. name: "Back",
  15572. image: {
  15573. source: "./media/characters/venio-darcony/back.svg"
  15574. }
  15575. },
  15576. sideNsfw: {
  15577. height: math.unit(10, "feet"),
  15578. weight: math.unit(800, "kg"),
  15579. name: "Side (NSFW)",
  15580. image: {
  15581. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15582. extra: 1373 / 1003,
  15583. bottom: 0.037
  15584. }
  15585. },
  15586. frontNsfw: {
  15587. height: math.unit(19, "feet"),
  15588. weight: math.unit(800, "kg"),
  15589. name: "Front (NSFW)",
  15590. image: {
  15591. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15592. }
  15593. },
  15594. backNsfw: {
  15595. height: math.unit(19, "feet"),
  15596. weight: math.unit(800, "kg"),
  15597. name: "Back (NSFW)",
  15598. image: {
  15599. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15600. }
  15601. },
  15602. sideArmored: {
  15603. height: math.unit(10, "feet"),
  15604. weight: math.unit(800, "kg"),
  15605. name: "Side (Armored)",
  15606. image: {
  15607. source: "./media/characters/venio-darcony/side-armored.svg",
  15608. extra: 1373 / 1003,
  15609. bottom: 0.037
  15610. }
  15611. },
  15612. frontArmored: {
  15613. height: math.unit(19, "feet"),
  15614. weight: math.unit(900, "kg"),
  15615. name: "Front (Armored)",
  15616. image: {
  15617. source: "./media/characters/venio-darcony/front-armored.svg"
  15618. }
  15619. },
  15620. backArmored: {
  15621. height: math.unit(19, "feet"),
  15622. weight: math.unit(900, "kg"),
  15623. name: "Back (Armored)",
  15624. image: {
  15625. source: "./media/characters/venio-darcony/back-armored.svg"
  15626. }
  15627. },
  15628. sword: {
  15629. height: math.unit(10, "feet"),
  15630. weight: math.unit(50, "lb"),
  15631. name: "Sword",
  15632. image: {
  15633. source: "./media/characters/venio-darcony/sword.svg"
  15634. }
  15635. },
  15636. },
  15637. [
  15638. {
  15639. name: "Normal",
  15640. height: math.unit(10, "feet")
  15641. },
  15642. {
  15643. name: "Macro",
  15644. height: math.unit(130, "feet"),
  15645. default: true
  15646. },
  15647. {
  15648. name: "Macro+",
  15649. height: math.unit(240, "feet")
  15650. },
  15651. ]
  15652. ))
  15653. characterMakers.push(() => makeCharacter(
  15654. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15655. {
  15656. front: {
  15657. height: math.unit(6, "feet"),
  15658. weight: math.unit(150, "lb"),
  15659. name: "Front",
  15660. image: {
  15661. source: "./media/characters/veski/front.svg",
  15662. extra: 1299 / 1225,
  15663. bottom: 0.04
  15664. }
  15665. },
  15666. back: {
  15667. height: math.unit(6, "feet"),
  15668. weight: math.unit(150, "lb"),
  15669. name: "Back",
  15670. image: {
  15671. source: "./media/characters/veski/back.svg",
  15672. extra: 1299 / 1225,
  15673. bottom: 0.008
  15674. }
  15675. },
  15676. maw: {
  15677. height: math.unit(1.5 * 1.21, "feet"),
  15678. name: "Maw",
  15679. image: {
  15680. source: "./media/characters/veski/maw.svg"
  15681. }
  15682. },
  15683. },
  15684. [
  15685. {
  15686. name: "Macro",
  15687. height: math.unit(2, "km"),
  15688. default: true
  15689. },
  15690. ]
  15691. ))
  15692. characterMakers.push(() => makeCharacter(
  15693. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15694. {
  15695. front: {
  15696. height: math.unit(5 + 7 / 12, "feet"),
  15697. name: "Front",
  15698. image: {
  15699. source: "./media/characters/isabelle/front.svg",
  15700. extra: 2130 / 1976,
  15701. bottom: 0.05
  15702. }
  15703. },
  15704. },
  15705. [
  15706. {
  15707. name: "Supermicro",
  15708. height: math.unit(10, "micrometers")
  15709. },
  15710. {
  15711. name: "Micro",
  15712. height: math.unit(1, "inch")
  15713. },
  15714. {
  15715. name: "Tiny",
  15716. height: math.unit(5, "inches")
  15717. },
  15718. {
  15719. name: "Standard",
  15720. height: math.unit(5 + 7 / 12, "inches")
  15721. },
  15722. {
  15723. name: "Macro",
  15724. height: math.unit(80, "meters"),
  15725. default: true
  15726. },
  15727. {
  15728. name: "Megamacro",
  15729. height: math.unit(250, "meters")
  15730. },
  15731. {
  15732. name: "Gigamacro",
  15733. height: math.unit(5, "km")
  15734. },
  15735. {
  15736. name: "Cosmic",
  15737. height: math.unit(2.5e6, "miles")
  15738. },
  15739. ]
  15740. ))
  15741. characterMakers.push(() => makeCharacter(
  15742. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15743. {
  15744. front: {
  15745. height: math.unit(6, "feet"),
  15746. weight: math.unit(150, "lb"),
  15747. name: "Front",
  15748. image: {
  15749. source: "./media/characters/hanzo/front.svg",
  15750. extra: 374 / 344,
  15751. bottom: 0.02
  15752. }
  15753. },
  15754. },
  15755. [
  15756. {
  15757. name: "Normal",
  15758. height: math.unit(8, "feet"),
  15759. default: true
  15760. },
  15761. ]
  15762. ))
  15763. characterMakers.push(() => makeCharacter(
  15764. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15765. {
  15766. front: {
  15767. height: math.unit(7, "feet"),
  15768. weight: math.unit(130, "lb"),
  15769. name: "Front",
  15770. image: {
  15771. source: "./media/characters/anna/front.svg",
  15772. extra: 169 / 145,
  15773. bottom: 0.06
  15774. }
  15775. },
  15776. full: {
  15777. height: math.unit(4.96, "feet"),
  15778. weight: math.unit(220, "lb"),
  15779. name: "Full",
  15780. image: {
  15781. source: "./media/characters/anna/full.svg",
  15782. extra: 138 / 114,
  15783. bottom: 0.15
  15784. }
  15785. },
  15786. tongue: {
  15787. height: math.unit(2.53, "feet"),
  15788. name: "Tongue",
  15789. image: {
  15790. source: "./media/characters/anna/tongue.svg"
  15791. }
  15792. },
  15793. },
  15794. [
  15795. {
  15796. name: "Normal",
  15797. height: math.unit(7, "feet"),
  15798. default: true
  15799. },
  15800. ]
  15801. ))
  15802. characterMakers.push(() => makeCharacter(
  15803. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15804. {
  15805. front: {
  15806. height: math.unit(7, "feet"),
  15807. weight: math.unit(150, "lb"),
  15808. name: "Front",
  15809. image: {
  15810. source: "./media/characters/ian-corvid/front.svg",
  15811. extra: 150 / 142,
  15812. bottom: 0.02
  15813. }
  15814. },
  15815. back: {
  15816. height: math.unit(7, "feet"),
  15817. weight: math.unit(150, "lb"),
  15818. name: "Back",
  15819. image: {
  15820. source: "./media/characters/ian-corvid/back.svg",
  15821. extra: 150 / 143,
  15822. bottom: 0.01
  15823. }
  15824. },
  15825. stomping: {
  15826. height: math.unit(7, "feet"),
  15827. weight: math.unit(150, "lb"),
  15828. name: "Stomping",
  15829. image: {
  15830. source: "./media/characters/ian-corvid/stomping.svg",
  15831. extra: 76 / 72
  15832. }
  15833. },
  15834. sitting: {
  15835. height: math.unit(7 / 1.8, "feet"),
  15836. weight: math.unit(150, "lb"),
  15837. name: "Sitting",
  15838. image: {
  15839. source: "./media/characters/ian-corvid/sitting.svg",
  15840. extra: 1400 / 1269,
  15841. bottom: 0.15
  15842. }
  15843. },
  15844. },
  15845. [
  15846. {
  15847. name: "Tiny Microw",
  15848. height: math.unit(1, "inch")
  15849. },
  15850. {
  15851. name: "Microw",
  15852. height: math.unit(6, "inches")
  15853. },
  15854. {
  15855. name: "Crow",
  15856. height: math.unit(7 + 1 / 12, "feet"),
  15857. default: true
  15858. },
  15859. {
  15860. name: "Macrow",
  15861. height: math.unit(176, "feet")
  15862. },
  15863. ]
  15864. ))
  15865. characterMakers.push(() => makeCharacter(
  15866. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15867. {
  15868. front: {
  15869. height: math.unit(5 + 7 / 12, "feet"),
  15870. weight: math.unit(147, "lb"),
  15871. name: "Front",
  15872. image: {
  15873. source: "./media/characters/natalie-kellon/front.svg",
  15874. extra: 1214 / 1141,
  15875. bottom: 0.02
  15876. }
  15877. },
  15878. },
  15879. [
  15880. {
  15881. name: "Micro",
  15882. height: math.unit(1 / 16, "inch")
  15883. },
  15884. {
  15885. name: "Tiny",
  15886. height: math.unit(4, "inches")
  15887. },
  15888. {
  15889. name: "Normal",
  15890. height: math.unit(5 + 7 / 12, "feet"),
  15891. default: true
  15892. },
  15893. {
  15894. name: "Amazon",
  15895. height: math.unit(12, "feet")
  15896. },
  15897. {
  15898. name: "Giantess",
  15899. height: math.unit(160, "meters")
  15900. },
  15901. {
  15902. name: "Titaness",
  15903. height: math.unit(800, "meters")
  15904. },
  15905. ]
  15906. ))
  15907. characterMakers.push(() => makeCharacter(
  15908. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15909. {
  15910. front: {
  15911. height: math.unit(6, "feet"),
  15912. weight: math.unit(150, "lb"),
  15913. name: "Front",
  15914. image: {
  15915. source: "./media/characters/alluria/front.svg",
  15916. extra: 806 / 738,
  15917. bottom: 0.01
  15918. }
  15919. },
  15920. side: {
  15921. height: math.unit(6, "feet"),
  15922. weight: math.unit(150, "lb"),
  15923. name: "Side",
  15924. image: {
  15925. source: "./media/characters/alluria/side.svg",
  15926. extra: 800 / 750,
  15927. }
  15928. },
  15929. back: {
  15930. height: math.unit(6, "feet"),
  15931. weight: math.unit(150, "lb"),
  15932. name: "Back",
  15933. image: {
  15934. source: "./media/characters/alluria/back.svg",
  15935. extra: 806 / 738,
  15936. }
  15937. },
  15938. frontMaid: {
  15939. height: math.unit(6, "feet"),
  15940. weight: math.unit(150, "lb"),
  15941. name: "Front (Maid)",
  15942. image: {
  15943. source: "./media/characters/alluria/front-maid.svg",
  15944. extra: 806 / 738,
  15945. bottom: 0.01
  15946. }
  15947. },
  15948. sideMaid: {
  15949. height: math.unit(6, "feet"),
  15950. weight: math.unit(150, "lb"),
  15951. name: "Side (Maid)",
  15952. image: {
  15953. source: "./media/characters/alluria/side-maid.svg",
  15954. extra: 800 / 750,
  15955. bottom: 0.005
  15956. }
  15957. },
  15958. backMaid: {
  15959. height: math.unit(6, "feet"),
  15960. weight: math.unit(150, "lb"),
  15961. name: "Back (Maid)",
  15962. image: {
  15963. source: "./media/characters/alluria/back-maid.svg",
  15964. extra: 806 / 738,
  15965. }
  15966. },
  15967. },
  15968. [
  15969. {
  15970. name: "Micro",
  15971. height: math.unit(6, "inches"),
  15972. default: true
  15973. },
  15974. ]
  15975. ))
  15976. characterMakers.push(() => makeCharacter(
  15977. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15978. {
  15979. front: {
  15980. height: math.unit(6, "feet"),
  15981. weight: math.unit(150, "lb"),
  15982. name: "Front",
  15983. image: {
  15984. source: "./media/characters/kyle/front.svg",
  15985. extra: 1069 / 962,
  15986. bottom: 77.228 / 1727.45
  15987. }
  15988. },
  15989. },
  15990. [
  15991. {
  15992. name: "Macro",
  15993. height: math.unit(150, "feet"),
  15994. default: true
  15995. },
  15996. ]
  15997. ))
  15998. characterMakers.push(() => makeCharacter(
  15999. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16000. {
  16001. front: {
  16002. height: math.unit(6, "feet"),
  16003. weight: math.unit(300, "lb"),
  16004. name: "Front",
  16005. image: {
  16006. source: "./media/characters/duncan/front.svg",
  16007. extra: 1650 / 1482,
  16008. bottom: 0.05
  16009. }
  16010. },
  16011. },
  16012. [
  16013. {
  16014. name: "Macro",
  16015. height: math.unit(100, "feet"),
  16016. default: true
  16017. },
  16018. ]
  16019. ))
  16020. characterMakers.push(() => makeCharacter(
  16021. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16022. {
  16023. front: {
  16024. height: math.unit(5 + 4 / 12, "feet"),
  16025. weight: math.unit(220, "lb"),
  16026. name: "Front",
  16027. image: {
  16028. source: "./media/characters/memory/front.svg",
  16029. extra: 3641 / 3545,
  16030. bottom: 0.03
  16031. }
  16032. },
  16033. back: {
  16034. height: math.unit(5 + 4 / 12, "feet"),
  16035. weight: math.unit(220, "lb"),
  16036. name: "Back",
  16037. image: {
  16038. source: "./media/characters/memory/back.svg",
  16039. extra: 3641 / 3545,
  16040. bottom: 0.025
  16041. }
  16042. },
  16043. frontSkirt: {
  16044. height: math.unit(5 + 4 / 12, "feet"),
  16045. weight: math.unit(220, "lb"),
  16046. name: "Front (Skirt)",
  16047. image: {
  16048. source: "./media/characters/memory/front-skirt.svg",
  16049. extra: 3641 / 3545,
  16050. bottom: 0.03
  16051. }
  16052. },
  16053. frontDress: {
  16054. height: math.unit(5 + 4 / 12, "feet"),
  16055. weight: math.unit(220, "lb"),
  16056. name: "Front (Dress)",
  16057. image: {
  16058. source: "./media/characters/memory/front-dress.svg",
  16059. extra: 3641 / 3545,
  16060. bottom: 0.03
  16061. }
  16062. },
  16063. },
  16064. [
  16065. {
  16066. name: "Micro",
  16067. height: math.unit(6, "inches"),
  16068. default: true
  16069. },
  16070. {
  16071. name: "Normal",
  16072. height: math.unit(5 + 4 / 12, "feet")
  16073. },
  16074. ]
  16075. ))
  16076. characterMakers.push(() => makeCharacter(
  16077. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16078. {
  16079. front: {
  16080. height: math.unit(4 + 11 / 12, "feet"),
  16081. weight: math.unit(100, "lb"),
  16082. name: "Front",
  16083. image: {
  16084. source: "./media/characters/luno/front.svg",
  16085. extra: 1535 / 1487,
  16086. bottom: 0.03
  16087. }
  16088. },
  16089. },
  16090. [
  16091. {
  16092. name: "Micro",
  16093. height: math.unit(3, "inches")
  16094. },
  16095. {
  16096. name: "Normal",
  16097. height: math.unit(4 + 11 / 12, "feet"),
  16098. default: true
  16099. },
  16100. {
  16101. name: "Macro",
  16102. height: math.unit(300, "feet")
  16103. },
  16104. {
  16105. name: "Megamacro",
  16106. height: math.unit(700, "miles")
  16107. },
  16108. ]
  16109. ))
  16110. characterMakers.push(() => makeCharacter(
  16111. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16112. {
  16113. front: {
  16114. height: math.unit(6 + 2 / 12, "feet"),
  16115. weight: math.unit(170, "lb"),
  16116. name: "Front",
  16117. image: {
  16118. source: "./media/characters/jamesy/front.svg",
  16119. extra: 440 / 382,
  16120. bottom: 0.005
  16121. }
  16122. },
  16123. },
  16124. [
  16125. {
  16126. name: "Micro",
  16127. height: math.unit(3, "inches")
  16128. },
  16129. {
  16130. name: "Normal",
  16131. height: math.unit(6 + 2 / 12, "feet"),
  16132. default: true
  16133. },
  16134. {
  16135. name: "Macro",
  16136. height: math.unit(300, "feet")
  16137. },
  16138. {
  16139. name: "Megamacro",
  16140. height: math.unit(700, "miles")
  16141. },
  16142. ]
  16143. ))
  16144. characterMakers.push(() => makeCharacter(
  16145. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16146. {
  16147. front: {
  16148. height: math.unit(6, "feet"),
  16149. weight: math.unit(160, "lb"),
  16150. name: "Front",
  16151. image: {
  16152. source: "./media/characters/mark/front.svg",
  16153. extra: 3300 / 3100,
  16154. bottom: 136.42 / 3440.47
  16155. }
  16156. },
  16157. },
  16158. [
  16159. {
  16160. name: "Macro",
  16161. height: math.unit(120, "meters")
  16162. },
  16163. {
  16164. name: "Bigger Macro",
  16165. height: math.unit(350, "meters")
  16166. },
  16167. {
  16168. name: "Megamacro",
  16169. height: math.unit(8, "km"),
  16170. default: true
  16171. },
  16172. {
  16173. name: "Continental",
  16174. height: math.unit(4550, "km")
  16175. },
  16176. {
  16177. name: "Planetary",
  16178. height: math.unit(65000, "km")
  16179. },
  16180. ]
  16181. ))
  16182. characterMakers.push(() => makeCharacter(
  16183. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16184. {
  16185. front: {
  16186. height: math.unit(6, "feet"),
  16187. weight: math.unit(400, "lb"),
  16188. name: "Front",
  16189. image: {
  16190. source: "./media/characters/mac/front.svg",
  16191. extra: 1048 / 987.7,
  16192. bottom: 60 / 1107.6,
  16193. }
  16194. },
  16195. },
  16196. [
  16197. {
  16198. name: "Macro",
  16199. height: math.unit(500, "feet"),
  16200. default: true
  16201. },
  16202. ]
  16203. ))
  16204. characterMakers.push(() => makeCharacter(
  16205. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16206. {
  16207. front: {
  16208. height: math.unit(5 + 2 / 12, "feet"),
  16209. weight: math.unit(190, "lb"),
  16210. name: "Front",
  16211. image: {
  16212. source: "./media/characters/bari/front.svg",
  16213. extra: 3156 / 2880,
  16214. bottom: 0.03
  16215. }
  16216. },
  16217. back: {
  16218. height: math.unit(5 + 2 / 12, "feet"),
  16219. weight: math.unit(190, "lb"),
  16220. name: "Back",
  16221. image: {
  16222. source: "./media/characters/bari/back.svg",
  16223. extra: 3260 / 2834,
  16224. bottom: 0.025
  16225. }
  16226. },
  16227. frontPlush: {
  16228. height: math.unit(5 + 2 / 12, "feet"),
  16229. weight: math.unit(190, "lb"),
  16230. name: "Front (Plush)",
  16231. image: {
  16232. source: "./media/characters/bari/front-plush.svg",
  16233. extra: 1112 / 1061,
  16234. bottom: 0.002
  16235. }
  16236. },
  16237. },
  16238. [
  16239. {
  16240. name: "Micro",
  16241. height: math.unit(3, "inches")
  16242. },
  16243. {
  16244. name: "Normal",
  16245. height: math.unit(5 + 2 / 12, "feet"),
  16246. default: true
  16247. },
  16248. {
  16249. name: "Macro",
  16250. height: math.unit(20, "feet")
  16251. },
  16252. ]
  16253. ))
  16254. characterMakers.push(() => makeCharacter(
  16255. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16256. {
  16257. front: {
  16258. height: math.unit(6 + 1 / 12, "feet"),
  16259. weight: math.unit(275, "lb"),
  16260. name: "Front",
  16261. image: {
  16262. source: "./media/characters/hunter-misha-raven/front.svg"
  16263. }
  16264. },
  16265. },
  16266. [
  16267. {
  16268. name: "Mortal",
  16269. height: math.unit(6 + 1 / 12, "feet")
  16270. },
  16271. {
  16272. name: "Divine",
  16273. height: math.unit(1.12134e34, "parsecs"),
  16274. default: true
  16275. },
  16276. ]
  16277. ))
  16278. characterMakers.push(() => makeCharacter(
  16279. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16280. {
  16281. front: {
  16282. height: math.unit(6 + 3 / 12, "feet"),
  16283. weight: math.unit(220, "lb"),
  16284. name: "Front",
  16285. image: {
  16286. source: "./media/characters/max-calore/front.svg",
  16287. extra: 1700 / 1648,
  16288. bottom: 0.01
  16289. }
  16290. },
  16291. back: {
  16292. height: math.unit(6 + 3 / 12, "feet"),
  16293. weight: math.unit(220, "lb"),
  16294. name: "Back",
  16295. image: {
  16296. source: "./media/characters/max-calore/back.svg",
  16297. extra: 1700 / 1648,
  16298. bottom: 0.01
  16299. }
  16300. },
  16301. },
  16302. [
  16303. {
  16304. name: "Normal",
  16305. height: math.unit(6 + 3 / 12, "feet"),
  16306. default: true
  16307. },
  16308. ]
  16309. ))
  16310. characterMakers.push(() => makeCharacter(
  16311. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16312. {
  16313. side: {
  16314. height: math.unit(2 + 8 / 12, "feet"),
  16315. weight: math.unit(99, "lb"),
  16316. name: "Side",
  16317. image: {
  16318. source: "./media/characters/aspen/side.svg",
  16319. extra: 152 / 138,
  16320. bottom: 0.032
  16321. }
  16322. },
  16323. },
  16324. [
  16325. {
  16326. name: "Normal",
  16327. height: math.unit(2 + 8 / 12, "feet"),
  16328. default: true
  16329. },
  16330. ]
  16331. ))
  16332. characterMakers.push(() => makeCharacter(
  16333. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16334. {
  16335. side: {
  16336. height: math.unit(3 + 2 / 12, "feet"),
  16337. weight: math.unit(224, "lb"),
  16338. name: "Side",
  16339. image: {
  16340. source: "./media/characters/sheila-feral-wolf/side.svg",
  16341. extra: 179 / 166,
  16342. bottom: 0.03
  16343. }
  16344. },
  16345. },
  16346. [
  16347. {
  16348. name: "Normal",
  16349. height: math.unit(3 + 2 / 12, "feet"),
  16350. default: true
  16351. },
  16352. ]
  16353. ))
  16354. characterMakers.push(() => makeCharacter(
  16355. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16356. {
  16357. side: {
  16358. height: math.unit(1 + 9 / 12, "feet"),
  16359. weight: math.unit(38, "lb"),
  16360. name: "Side",
  16361. image: {
  16362. source: "./media/characters/michelle/side.svg",
  16363. extra: 147 / 136.7,
  16364. bottom: 0.03
  16365. }
  16366. },
  16367. },
  16368. [
  16369. {
  16370. name: "Normal",
  16371. height: math.unit(1 + 9 / 12, "feet"),
  16372. default: true
  16373. },
  16374. ]
  16375. ))
  16376. characterMakers.push(() => makeCharacter(
  16377. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16378. {
  16379. front: {
  16380. height: math.unit(1 + 1 / 12, "feet"),
  16381. weight: math.unit(18, "lb"),
  16382. name: "Front",
  16383. image: {
  16384. source: "./media/characters/nino/front.svg"
  16385. }
  16386. },
  16387. },
  16388. [
  16389. {
  16390. name: "Normal",
  16391. height: math.unit(1 + 1 / 12, "feet"),
  16392. default: true
  16393. },
  16394. ]
  16395. ))
  16396. characterMakers.push(() => makeCharacter(
  16397. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16398. {
  16399. front: {
  16400. height: math.unit(1, "feet"),
  16401. weight: math.unit(16, "lb"),
  16402. name: "Front",
  16403. image: {
  16404. source: "./media/characters/viola/front.svg"
  16405. }
  16406. },
  16407. },
  16408. [
  16409. {
  16410. name: "Normal",
  16411. height: math.unit(1, "feet"),
  16412. default: true
  16413. },
  16414. ]
  16415. ))
  16416. characterMakers.push(() => makeCharacter(
  16417. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16418. {
  16419. front: {
  16420. height: math.unit(6 + 5 / 12, "feet"),
  16421. weight: math.unit(580, "lb"),
  16422. name: "Front",
  16423. image: {
  16424. source: "./media/characters/atlas/front.svg",
  16425. extra: 298.5 / 290,
  16426. bottom: 0.015
  16427. }
  16428. },
  16429. },
  16430. [
  16431. {
  16432. name: "Normal",
  16433. height: math.unit(6 + 5 / 12, "feet"),
  16434. default: true
  16435. },
  16436. ]
  16437. ))
  16438. characterMakers.push(() => makeCharacter(
  16439. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16440. {
  16441. side: {
  16442. height: math.unit(1 + 10 / 12, "feet"),
  16443. weight: math.unit(25, "lb"),
  16444. name: "Side",
  16445. image: {
  16446. source: "./media/characters/davy/side.svg",
  16447. extra: 200 / 170,
  16448. bottom: 0.01
  16449. }
  16450. },
  16451. },
  16452. [
  16453. {
  16454. name: "Normal",
  16455. height: math.unit(1 + 10 / 12, "feet"),
  16456. default: true
  16457. },
  16458. ]
  16459. ))
  16460. characterMakers.push(() => makeCharacter(
  16461. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16462. {
  16463. side: {
  16464. height: math.unit(4 + 8 / 12, "feet"),
  16465. weight: math.unit(166, "lb"),
  16466. name: "Side",
  16467. image: {
  16468. source: "./media/characters/fiona/side.svg",
  16469. extra: 232 / 220,
  16470. bottom: 0.03
  16471. }
  16472. },
  16473. },
  16474. [
  16475. {
  16476. name: "Normal",
  16477. height: math.unit(4 + 8 / 12, "feet"),
  16478. default: true
  16479. },
  16480. ]
  16481. ))
  16482. characterMakers.push(() => makeCharacter(
  16483. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16484. {
  16485. front: {
  16486. height: math.unit(2, "feet"),
  16487. weight: math.unit(62, "lb"),
  16488. name: "Front",
  16489. image: {
  16490. source: "./media/characters/lyla/front.svg",
  16491. bottom: 0.1
  16492. }
  16493. },
  16494. },
  16495. [
  16496. {
  16497. name: "Normal",
  16498. height: math.unit(2, "feet"),
  16499. default: true
  16500. },
  16501. ]
  16502. ))
  16503. characterMakers.push(() => makeCharacter(
  16504. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16505. {
  16506. side: {
  16507. height: math.unit(1.8, "feet"),
  16508. weight: math.unit(44, "lb"),
  16509. name: "Side",
  16510. image: {
  16511. source: "./media/characters/perseus/side.svg",
  16512. bottom: 0.21
  16513. }
  16514. },
  16515. },
  16516. [
  16517. {
  16518. name: "Normal",
  16519. height: math.unit(1.8, "feet"),
  16520. default: true
  16521. },
  16522. ]
  16523. ))
  16524. characterMakers.push(() => makeCharacter(
  16525. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16526. {
  16527. side: {
  16528. height: math.unit(4 + 2 / 12, "feet"),
  16529. weight: math.unit(20, "lb"),
  16530. name: "Side",
  16531. image: {
  16532. source: "./media/characters/remus/side.svg"
  16533. }
  16534. },
  16535. },
  16536. [
  16537. {
  16538. name: "Normal",
  16539. height: math.unit(4 + 2 / 12, "feet"),
  16540. default: true
  16541. },
  16542. ]
  16543. ))
  16544. characterMakers.push(() => makeCharacter(
  16545. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16546. {
  16547. front: {
  16548. height: math.unit(4 + 11 / 12, "feet"),
  16549. weight: math.unit(114, "lb"),
  16550. name: "Front",
  16551. image: {
  16552. source: "./media/characters/raf/front.svg",
  16553. bottom: 20.5 / 1863
  16554. }
  16555. },
  16556. side: {
  16557. height: math.unit(4 + 11 / 12, "feet"),
  16558. weight: math.unit(114, "lb"),
  16559. name: "Side",
  16560. image: {
  16561. source: "./media/characters/raf/side.svg",
  16562. bottom: 22 / 1822
  16563. }
  16564. },
  16565. },
  16566. [
  16567. {
  16568. name: "Micro",
  16569. height: math.unit(2, "inches")
  16570. },
  16571. {
  16572. name: "Normal",
  16573. height: math.unit(4 + 11 / 12, "feet"),
  16574. default: true
  16575. },
  16576. {
  16577. name: "Macro",
  16578. height: math.unit(70, "feet")
  16579. },
  16580. ]
  16581. ))
  16582. characterMakers.push(() => makeCharacter(
  16583. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16584. {
  16585. front: {
  16586. height: math.unit(1.5, "meters"),
  16587. weight: math.unit(68, "kg"),
  16588. name: "Front",
  16589. image: {
  16590. source: "./media/characters/liam-einarr/front.svg",
  16591. extra: 2822 / 2666
  16592. }
  16593. },
  16594. back: {
  16595. height: math.unit(1.5, "meters"),
  16596. weight: math.unit(68, "kg"),
  16597. name: "Back",
  16598. image: {
  16599. source: "./media/characters/liam-einarr/back.svg",
  16600. extra: 2822 / 2666,
  16601. bottom: 0.015
  16602. }
  16603. },
  16604. },
  16605. [
  16606. {
  16607. name: "Normal",
  16608. height: math.unit(1.5, "meters"),
  16609. default: true
  16610. },
  16611. {
  16612. name: "Macro",
  16613. height: math.unit(150, "meters")
  16614. },
  16615. {
  16616. name: "Megamacro",
  16617. height: math.unit(35, "km")
  16618. },
  16619. ]
  16620. ))
  16621. characterMakers.push(() => makeCharacter(
  16622. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16623. {
  16624. front: {
  16625. height: math.unit(6, "feet"),
  16626. weight: math.unit(75, "kg"),
  16627. name: "Front",
  16628. image: {
  16629. source: "./media/characters/linda/front.svg",
  16630. extra: 930 / 874,
  16631. bottom: 0.004
  16632. }
  16633. },
  16634. },
  16635. [
  16636. {
  16637. name: "Normal",
  16638. height: math.unit(6, "feet"),
  16639. default: true
  16640. },
  16641. ]
  16642. ))
  16643. characterMakers.push(() => makeCharacter(
  16644. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16645. {
  16646. front: {
  16647. height: math.unit(6 + 8 / 12, "feet"),
  16648. weight: math.unit(220, "lb"),
  16649. name: "Front",
  16650. image: {
  16651. source: "./media/characters/caylex/front.svg",
  16652. extra: 821 / 772,
  16653. bottom: 0.07
  16654. }
  16655. },
  16656. back: {
  16657. height: math.unit(6 + 8 / 12, "feet"),
  16658. weight: math.unit(220, "lb"),
  16659. name: "Back",
  16660. image: {
  16661. source: "./media/characters/caylex/back.svg",
  16662. extra: 821 / 772,
  16663. bottom: 0.022
  16664. }
  16665. },
  16666. hand: {
  16667. height: math.unit(1.25, "feet"),
  16668. name: "Hand",
  16669. image: {
  16670. source: "./media/characters/caylex/hand.svg"
  16671. }
  16672. },
  16673. foot: {
  16674. height: math.unit(1.6, "feet"),
  16675. name: "Foot",
  16676. image: {
  16677. source: "./media/characters/caylex/foot.svg"
  16678. }
  16679. },
  16680. armored: {
  16681. height: math.unit(6 + 8 / 12, "feet"),
  16682. weight: math.unit(250, "lb"),
  16683. name: "Armored",
  16684. image: {
  16685. source: "./media/characters/caylex/armored.svg",
  16686. extra: 1420 / 1310,
  16687. bottom: 0.045
  16688. }
  16689. },
  16690. },
  16691. [
  16692. {
  16693. name: "Normal",
  16694. height: math.unit(6 + 8 / 12, "feet"),
  16695. default: true
  16696. },
  16697. {
  16698. name: "Normal+",
  16699. height: math.unit(12, "feet")
  16700. },
  16701. ]
  16702. ))
  16703. characterMakers.push(() => makeCharacter(
  16704. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16705. {
  16706. front: {
  16707. height: math.unit(7 + 6 / 12, "feet"),
  16708. weight: math.unit(288, "lb"),
  16709. name: "Front",
  16710. image: {
  16711. source: "./media/characters/alana/front.svg",
  16712. extra: 679 / 653,
  16713. bottom: 22.5 / 701
  16714. }
  16715. },
  16716. },
  16717. [
  16718. {
  16719. name: "Normal",
  16720. height: math.unit(7 + 6 / 12, "feet")
  16721. },
  16722. {
  16723. name: "Large",
  16724. height: math.unit(50, "feet")
  16725. },
  16726. {
  16727. name: "Macro",
  16728. height: math.unit(100, "feet"),
  16729. default: true
  16730. },
  16731. {
  16732. name: "Macro+",
  16733. height: math.unit(200, "feet")
  16734. },
  16735. ]
  16736. ))
  16737. characterMakers.push(() => makeCharacter(
  16738. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16739. {
  16740. front: {
  16741. height: math.unit(6 + 1 / 12, "feet"),
  16742. weight: math.unit(210, "lb"),
  16743. name: "Front",
  16744. image: {
  16745. source: "./media/characters/hasani/front.svg",
  16746. extra: 244 / 232,
  16747. bottom: 0.01
  16748. }
  16749. },
  16750. back: {
  16751. height: math.unit(6 + 1 / 12, "feet"),
  16752. weight: math.unit(210, "lb"),
  16753. name: "Back",
  16754. image: {
  16755. source: "./media/characters/hasani/back.svg",
  16756. extra: 244 / 232,
  16757. bottom: 0.01
  16758. }
  16759. },
  16760. },
  16761. [
  16762. {
  16763. name: "Normal",
  16764. height: math.unit(6 + 1 / 12, "feet")
  16765. },
  16766. {
  16767. name: "Macro",
  16768. height: math.unit(175, "feet"),
  16769. default: true
  16770. },
  16771. ]
  16772. ))
  16773. characterMakers.push(() => makeCharacter(
  16774. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16775. {
  16776. front: {
  16777. height: math.unit(1.82, "meters"),
  16778. weight: math.unit(140, "lb"),
  16779. name: "Front",
  16780. image: {
  16781. source: "./media/characters/nita/front.svg",
  16782. extra: 2473 / 2363,
  16783. bottom: 0.01
  16784. }
  16785. },
  16786. },
  16787. [
  16788. {
  16789. name: "Normal",
  16790. height: math.unit(1.82, "m")
  16791. },
  16792. {
  16793. name: "Macro",
  16794. height: math.unit(300, "m")
  16795. },
  16796. {
  16797. name: "Mistake Canon",
  16798. height: math.unit(0.5, "miles"),
  16799. default: true
  16800. },
  16801. {
  16802. name: "Big Mistake",
  16803. height: math.unit(13, "miles")
  16804. },
  16805. {
  16806. name: "Playing God",
  16807. height: math.unit(2450, "miles")
  16808. },
  16809. ]
  16810. ))
  16811. characterMakers.push(() => makeCharacter(
  16812. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16813. {
  16814. front: {
  16815. height: math.unit(4, "feet"),
  16816. weight: math.unit(120, "lb"),
  16817. name: "Front",
  16818. image: {
  16819. source: "./media/characters/shiriko/front.svg",
  16820. extra: 195 / 188
  16821. }
  16822. },
  16823. },
  16824. [
  16825. {
  16826. name: "Normal",
  16827. height: math.unit(4, "feet"),
  16828. default: true
  16829. },
  16830. ]
  16831. ))
  16832. characterMakers.push(() => makeCharacter(
  16833. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16834. {
  16835. front: {
  16836. height: math.unit(6, "feet"),
  16837. name: "front",
  16838. image: {
  16839. source: "./media/characters/deja/front.svg",
  16840. extra: 926 / 840,
  16841. bottom: 0.07
  16842. }
  16843. },
  16844. },
  16845. [
  16846. {
  16847. name: "Planck Length",
  16848. height: math.unit(1.6e-35, "meters")
  16849. },
  16850. {
  16851. name: "Normal",
  16852. height: math.unit(30.48, "meters"),
  16853. default: true
  16854. },
  16855. {
  16856. name: "Universal",
  16857. height: math.unit(8.8e26, "meters")
  16858. },
  16859. ]
  16860. ))
  16861. characterMakers.push(() => makeCharacter(
  16862. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16863. {
  16864. side: {
  16865. height: math.unit(8, "feet"),
  16866. weight: math.unit(6300, "lb"),
  16867. name: "Side",
  16868. image: {
  16869. source: "./media/characters/anima/side.svg",
  16870. bottom: 0.035
  16871. }
  16872. },
  16873. },
  16874. [
  16875. {
  16876. name: "Normal",
  16877. height: math.unit(8, "feet"),
  16878. default: true
  16879. },
  16880. ]
  16881. ))
  16882. characterMakers.push(() => makeCharacter(
  16883. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16884. {
  16885. front: {
  16886. height: math.unit(8, "feet"),
  16887. weight: math.unit(350, "lb"),
  16888. name: "Front",
  16889. image: {
  16890. source: "./media/characters/bianca/front.svg",
  16891. extra: 234 / 225,
  16892. bottom: 0.03
  16893. }
  16894. },
  16895. },
  16896. [
  16897. {
  16898. name: "Normal",
  16899. height: math.unit(8, "feet"),
  16900. default: true
  16901. },
  16902. ]
  16903. ))
  16904. characterMakers.push(() => makeCharacter(
  16905. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16906. {
  16907. front: {
  16908. height: math.unit(6, "feet"),
  16909. weight: math.unit(150, "lb"),
  16910. name: "Front",
  16911. image: {
  16912. source: "./media/characters/adinia/front.svg",
  16913. extra: 1845 / 1672,
  16914. bottom: 0.02
  16915. }
  16916. },
  16917. back: {
  16918. height: math.unit(6, "feet"),
  16919. weight: math.unit(150, "lb"),
  16920. name: "Back",
  16921. image: {
  16922. source: "./media/characters/adinia/back.svg",
  16923. extra: 1845 / 1672,
  16924. bottom: 0.002
  16925. }
  16926. },
  16927. },
  16928. [
  16929. {
  16930. name: "Normal",
  16931. height: math.unit(11 + 5 / 12, "feet"),
  16932. default: true
  16933. },
  16934. ]
  16935. ))
  16936. characterMakers.push(() => makeCharacter(
  16937. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16938. {
  16939. front: {
  16940. height: math.unit(3, "meters"),
  16941. weight: math.unit(200, "kg"),
  16942. name: "Front",
  16943. image: {
  16944. source: "./media/characters/lykasa/front.svg",
  16945. extra: 1076 / 976,
  16946. bottom: 0.06
  16947. }
  16948. },
  16949. },
  16950. [
  16951. {
  16952. name: "Normal",
  16953. height: math.unit(3, "meters")
  16954. },
  16955. {
  16956. name: "Kaiju",
  16957. height: math.unit(120, "meters"),
  16958. default: true
  16959. },
  16960. {
  16961. name: "Mega Kaiju",
  16962. height: math.unit(240, "km")
  16963. },
  16964. {
  16965. name: "Giga Kaiju",
  16966. height: math.unit(400, "megameters")
  16967. },
  16968. {
  16969. name: "Tera Kaiju",
  16970. height: math.unit(800, "gigameters")
  16971. },
  16972. {
  16973. name: "Kaiju Dragon Goddess",
  16974. height: math.unit(26, "zettaparsecs")
  16975. },
  16976. ]
  16977. ))
  16978. characterMakers.push(() => makeCharacter(
  16979. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16980. {
  16981. side: {
  16982. height: math.unit(283 / 124 * 6, "feet"),
  16983. weight: math.unit(35000, "lb"),
  16984. name: "Side",
  16985. image: {
  16986. source: "./media/characters/malfaren/side.svg",
  16987. extra: 2500 / 1010,
  16988. bottom: 0.01
  16989. }
  16990. },
  16991. front: {
  16992. height: math.unit(22.36, "feet"),
  16993. weight: math.unit(35000, "lb"),
  16994. name: "Front",
  16995. image: {
  16996. source: "./media/characters/malfaren/front.svg",
  16997. extra: 1631 / 1476,
  16998. bottom: 0.01
  16999. }
  17000. },
  17001. maw: {
  17002. height: math.unit(6.9, "feet"),
  17003. name: "Maw",
  17004. image: {
  17005. source: "./media/characters/malfaren/maw.svg"
  17006. }
  17007. },
  17008. },
  17009. [
  17010. {
  17011. name: "Big",
  17012. height: math.unit(283 / 162 * 6, "feet"),
  17013. },
  17014. {
  17015. name: "Bigger",
  17016. height: math.unit(283 / 124 * 6, "feet")
  17017. },
  17018. {
  17019. name: "Massive",
  17020. height: math.unit(283 / 92 * 6, "feet"),
  17021. default: true
  17022. },
  17023. {
  17024. name: "👀💦",
  17025. height: math.unit(283 / 73 * 6, "feet"),
  17026. },
  17027. ]
  17028. ))
  17029. characterMakers.push(() => makeCharacter(
  17030. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17031. {
  17032. front: {
  17033. height: math.unit(1.7, "m"),
  17034. weight: math.unit(70, "kg"),
  17035. name: "Front",
  17036. image: {
  17037. source: "./media/characters/kernel/front.svg",
  17038. extra: 222 / 210,
  17039. bottom: 0.007
  17040. }
  17041. },
  17042. },
  17043. [
  17044. {
  17045. name: "Nano",
  17046. height: math.unit(17, "micrometers")
  17047. },
  17048. {
  17049. name: "Micro",
  17050. height: math.unit(1.7, "mm")
  17051. },
  17052. {
  17053. name: "Small",
  17054. height: math.unit(1.7, "cm")
  17055. },
  17056. {
  17057. name: "Normal",
  17058. height: math.unit(1.7, "m"),
  17059. default: true
  17060. },
  17061. ]
  17062. ))
  17063. characterMakers.push(() => makeCharacter(
  17064. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17065. {
  17066. front: {
  17067. height: math.unit(1.75, "meters"),
  17068. weight: math.unit(65, "kg"),
  17069. name: "Front",
  17070. image: {
  17071. source: "./media/characters/jayne-folest/front.svg",
  17072. extra: 2115 / 2007,
  17073. bottom: 0.02
  17074. }
  17075. },
  17076. back: {
  17077. height: math.unit(1.75, "meters"),
  17078. weight: math.unit(65, "kg"),
  17079. name: "Back",
  17080. image: {
  17081. source: "./media/characters/jayne-folest/back.svg",
  17082. extra: 2115 / 2007,
  17083. bottom: 0.005
  17084. }
  17085. },
  17086. frontClothed: {
  17087. height: math.unit(1.75, "meters"),
  17088. weight: math.unit(65, "kg"),
  17089. name: "Front (Clothed)",
  17090. image: {
  17091. source: "./media/characters/jayne-folest/front-clothed.svg",
  17092. extra: 2115 / 2007,
  17093. bottom: 0.035
  17094. }
  17095. },
  17096. hand: {
  17097. height: math.unit(1 / 1.260, "feet"),
  17098. name: "Hand",
  17099. image: {
  17100. source: "./media/characters/jayne-folest/hand.svg"
  17101. }
  17102. },
  17103. foot: {
  17104. height: math.unit(1 / 0.918, "feet"),
  17105. name: "Foot",
  17106. image: {
  17107. source: "./media/characters/jayne-folest/foot.svg"
  17108. }
  17109. },
  17110. },
  17111. [
  17112. {
  17113. name: "Micro",
  17114. height: math.unit(4, "cm")
  17115. },
  17116. {
  17117. name: "Normal",
  17118. height: math.unit(1.75, "meters")
  17119. },
  17120. {
  17121. name: "Macro",
  17122. height: math.unit(47.5, "meters"),
  17123. default: true
  17124. },
  17125. ]
  17126. ))
  17127. characterMakers.push(() => makeCharacter(
  17128. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17129. {
  17130. front: {
  17131. height: math.unit(180, "cm"),
  17132. weight: math.unit(70, "kg"),
  17133. name: "Front",
  17134. image: {
  17135. source: "./media/characters/algier/front.svg",
  17136. extra: 596 / 572,
  17137. bottom: 0.04
  17138. }
  17139. },
  17140. back: {
  17141. height: math.unit(180, "cm"),
  17142. weight: math.unit(70, "kg"),
  17143. name: "Back",
  17144. image: {
  17145. source: "./media/characters/algier/back.svg",
  17146. extra: 596 / 572,
  17147. bottom: 0.025
  17148. }
  17149. },
  17150. frontdressed: {
  17151. height: math.unit(180, "cm"),
  17152. weight: math.unit(150, "kg"),
  17153. name: "Front-dressed",
  17154. image: {
  17155. source: "./media/characters/algier/front-dressed.svg",
  17156. extra: 596 / 572,
  17157. bottom: 0.038
  17158. }
  17159. },
  17160. },
  17161. [
  17162. {
  17163. name: "Micro",
  17164. height: math.unit(5, "cm")
  17165. },
  17166. {
  17167. name: "Normal",
  17168. height: math.unit(180, "cm"),
  17169. default: true
  17170. },
  17171. {
  17172. name: "Macro",
  17173. height: math.unit(64, "m")
  17174. },
  17175. ]
  17176. ))
  17177. characterMakers.push(() => makeCharacter(
  17178. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17179. {
  17180. upright: {
  17181. height: math.unit(7, "feet"),
  17182. weight: math.unit(300, "lb"),
  17183. name: "Upright",
  17184. image: {
  17185. source: "./media/characters/pretzel/upright.svg",
  17186. extra: 534 / 522,
  17187. bottom: 0.065
  17188. }
  17189. },
  17190. sprawling: {
  17191. height: math.unit(3.75, "feet"),
  17192. weight: math.unit(300, "lb"),
  17193. name: "Sprawling",
  17194. image: {
  17195. source: "./media/characters/pretzel/sprawling.svg",
  17196. extra: 314 / 281,
  17197. bottom: 0.1
  17198. }
  17199. },
  17200. tongue: {
  17201. height: math.unit(2, "feet"),
  17202. name: "Tongue",
  17203. image: {
  17204. source: "./media/characters/pretzel/tongue.svg"
  17205. }
  17206. },
  17207. },
  17208. [
  17209. {
  17210. name: "Normal",
  17211. height: math.unit(7, "feet"),
  17212. default: true
  17213. },
  17214. {
  17215. name: "Oversized",
  17216. height: math.unit(15, "feet")
  17217. },
  17218. {
  17219. name: "Huge",
  17220. height: math.unit(30, "feet")
  17221. },
  17222. {
  17223. name: "Macro",
  17224. height: math.unit(250, "feet")
  17225. },
  17226. ]
  17227. ))
  17228. characterMakers.push(() => makeCharacter(
  17229. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17230. {
  17231. sideFront: {
  17232. height: math.unit(5 + 2 / 12, "feet"),
  17233. weight: math.unit(120, "lb"),
  17234. name: "Front Side",
  17235. image: {
  17236. source: "./media/characters/roxi/side-front.svg",
  17237. extra: 2924 / 2717,
  17238. bottom: 0.08
  17239. }
  17240. },
  17241. sideBack: {
  17242. height: math.unit(5 + 2 / 12, "feet"),
  17243. weight: math.unit(120, "lb"),
  17244. name: "Back Side",
  17245. image: {
  17246. source: "./media/characters/roxi/side-back.svg",
  17247. extra: 2904 / 2693,
  17248. bottom: 0.06
  17249. }
  17250. },
  17251. front: {
  17252. height: math.unit(5 + 2 / 12, "feet"),
  17253. weight: math.unit(120, "lb"),
  17254. name: "Front",
  17255. image: {
  17256. source: "./media/characters/roxi/front.svg",
  17257. extra: 2028 / 1907,
  17258. bottom: 0.01
  17259. }
  17260. },
  17261. frontAlt: {
  17262. height: math.unit(5 + 2 / 12, "feet"),
  17263. weight: math.unit(120, "lb"),
  17264. name: "Front (Alt)",
  17265. image: {
  17266. source: "./media/characters/roxi/front-alt.svg",
  17267. extra: 1828 / 1798,
  17268. bottom: 0.01
  17269. }
  17270. },
  17271. sitting: {
  17272. height: math.unit(2.8, "feet"),
  17273. weight: math.unit(120, "lb"),
  17274. name: "Sitting",
  17275. image: {
  17276. source: "./media/characters/roxi/sitting.svg",
  17277. extra: 2660 / 2462,
  17278. bottom: 0.1
  17279. }
  17280. },
  17281. },
  17282. [
  17283. {
  17284. name: "Normal",
  17285. height: math.unit(5 + 2 / 12, "feet"),
  17286. default: true
  17287. },
  17288. ]
  17289. ))
  17290. characterMakers.push(() => makeCharacter(
  17291. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17292. {
  17293. side: {
  17294. height: math.unit(55, "feet"),
  17295. weight: math.unit(153, "tons"),
  17296. name: "Side",
  17297. image: {
  17298. source: "./media/characters/shadow/side.svg",
  17299. extra: 701 / 628,
  17300. bottom: 0.02
  17301. }
  17302. },
  17303. flying: {
  17304. height: math.unit(145, "feet"),
  17305. weight: math.unit(153, "tons"),
  17306. name: "Flying",
  17307. image: {
  17308. source: "./media/characters/shadow/flying.svg"
  17309. }
  17310. },
  17311. },
  17312. [
  17313. {
  17314. name: "Normal",
  17315. height: math.unit(55, "feet"),
  17316. default: true
  17317. },
  17318. ]
  17319. ))
  17320. characterMakers.push(() => makeCharacter(
  17321. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17322. {
  17323. front: {
  17324. height: math.unit(6, "feet"),
  17325. weight: math.unit(200, "lb"),
  17326. name: "Front",
  17327. image: {
  17328. source: "./media/characters/marcie/front.svg",
  17329. extra: 960 / 876,
  17330. bottom: 58 / 1017.87
  17331. }
  17332. },
  17333. },
  17334. [
  17335. {
  17336. name: "Macro",
  17337. height: math.unit(1, "mile"),
  17338. default: true
  17339. },
  17340. ]
  17341. ))
  17342. characterMakers.push(() => makeCharacter(
  17343. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17344. {
  17345. front: {
  17346. height: math.unit(7, "feet"),
  17347. weight: math.unit(200, "lb"),
  17348. name: "Front",
  17349. image: {
  17350. source: "./media/characters/kachina/front.svg",
  17351. extra: 1290.68 / 1119,
  17352. bottom: 36.5 / 1327.18
  17353. }
  17354. },
  17355. },
  17356. [
  17357. {
  17358. name: "Normal",
  17359. height: math.unit(7, "feet"),
  17360. default: true
  17361. },
  17362. ]
  17363. ))
  17364. characterMakers.push(() => makeCharacter(
  17365. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17366. {
  17367. looking: {
  17368. height: math.unit(2, "meters"),
  17369. weight: math.unit(300, "kg"),
  17370. name: "Looking",
  17371. image: {
  17372. source: "./media/characters/kash/looking.svg",
  17373. extra: 474 / 344,
  17374. bottom: 0.03
  17375. }
  17376. },
  17377. side: {
  17378. height: math.unit(2, "meters"),
  17379. weight: math.unit(300, "kg"),
  17380. name: "Side",
  17381. image: {
  17382. source: "./media/characters/kash/side.svg",
  17383. extra: 302 / 251,
  17384. bottom: 0.03
  17385. }
  17386. },
  17387. front: {
  17388. height: math.unit(2, "meters"),
  17389. weight: math.unit(300, "kg"),
  17390. name: "Front",
  17391. image: {
  17392. source: "./media/characters/kash/front.svg",
  17393. extra: 495 / 360,
  17394. bottom: 0.015
  17395. }
  17396. },
  17397. },
  17398. [
  17399. {
  17400. name: "Normal",
  17401. height: math.unit(2, "meters"),
  17402. default: true
  17403. },
  17404. {
  17405. name: "Big",
  17406. height: math.unit(3, "meters")
  17407. },
  17408. {
  17409. name: "Large",
  17410. height: math.unit(5, "meters")
  17411. },
  17412. ]
  17413. ))
  17414. characterMakers.push(() => makeCharacter(
  17415. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17416. {
  17417. feeding: {
  17418. height: math.unit(6.7, "feet"),
  17419. weight: math.unit(350, "lb"),
  17420. name: "Feeding",
  17421. image: {
  17422. source: "./media/characters/lalim/feeding.svg",
  17423. }
  17424. },
  17425. },
  17426. [
  17427. {
  17428. name: "Normal",
  17429. height: math.unit(6.7, "feet"),
  17430. default: true
  17431. },
  17432. ]
  17433. ))
  17434. characterMakers.push(() => makeCharacter(
  17435. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17436. {
  17437. front: {
  17438. height: math.unit(9.5, "feet"),
  17439. weight: math.unit(600, "lb"),
  17440. name: "Front",
  17441. image: {
  17442. source: "./media/characters/de'vout/front.svg",
  17443. extra: 1443 / 1328,
  17444. bottom: 0.025
  17445. }
  17446. },
  17447. back: {
  17448. height: math.unit(9.5, "feet"),
  17449. weight: math.unit(600, "lb"),
  17450. name: "Back",
  17451. image: {
  17452. source: "./media/characters/de'vout/back.svg",
  17453. extra: 1443 / 1328
  17454. }
  17455. },
  17456. frontDressed: {
  17457. height: math.unit(9.5, "feet"),
  17458. weight: math.unit(600, "lb"),
  17459. name: "Front (Dressed",
  17460. image: {
  17461. source: "./media/characters/de'vout/front-dressed.svg",
  17462. extra: 1443 / 1328,
  17463. bottom: 0.025
  17464. }
  17465. },
  17466. backDressed: {
  17467. height: math.unit(9.5, "feet"),
  17468. weight: math.unit(600, "lb"),
  17469. name: "Back (Dressed",
  17470. image: {
  17471. source: "./media/characters/de'vout/back-dressed.svg",
  17472. extra: 1443 / 1328
  17473. }
  17474. },
  17475. },
  17476. [
  17477. {
  17478. name: "Normal",
  17479. height: math.unit(9.5, "feet"),
  17480. default: true
  17481. },
  17482. ]
  17483. ))
  17484. characterMakers.push(() => makeCharacter(
  17485. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17486. {
  17487. front: {
  17488. height: math.unit(8, "feet"),
  17489. weight: math.unit(225, "lb"),
  17490. name: "Front",
  17491. image: {
  17492. source: "./media/characters/talana/front.svg",
  17493. extra: 1410 / 1300,
  17494. bottom: 0.015
  17495. }
  17496. },
  17497. frontDressed: {
  17498. height: math.unit(8, "feet"),
  17499. weight: math.unit(225, "lb"),
  17500. name: "Front (Dressed",
  17501. image: {
  17502. source: "./media/characters/talana/front-dressed.svg",
  17503. extra: 1410 / 1300,
  17504. bottom: 0.015
  17505. }
  17506. },
  17507. },
  17508. [
  17509. {
  17510. name: "Normal",
  17511. height: math.unit(8, "feet"),
  17512. default: true
  17513. },
  17514. ]
  17515. ))
  17516. characterMakers.push(() => makeCharacter(
  17517. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17518. {
  17519. side: {
  17520. height: math.unit(7.2, "feet"),
  17521. weight: math.unit(150, "lb"),
  17522. name: "Side",
  17523. image: {
  17524. source: "./media/characters/xeauvok/side.svg",
  17525. extra: 1975 / 1523,
  17526. bottom: 0.07
  17527. }
  17528. },
  17529. },
  17530. [
  17531. {
  17532. name: "Normal",
  17533. height: math.unit(7.2, "feet"),
  17534. default: true
  17535. },
  17536. ]
  17537. ))
  17538. characterMakers.push(() => makeCharacter(
  17539. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17540. {
  17541. side: {
  17542. height: math.unit(10, "feet"),
  17543. weight: math.unit(900, "kg"),
  17544. name: "Side",
  17545. image: {
  17546. source: "./media/characters/zara/side.svg",
  17547. extra: 504 / 498
  17548. }
  17549. },
  17550. },
  17551. [
  17552. {
  17553. name: "Normal",
  17554. height: math.unit(10, "feet"),
  17555. default: true
  17556. },
  17557. ]
  17558. ))
  17559. characterMakers.push(() => makeCharacter(
  17560. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17561. {
  17562. side: {
  17563. height: math.unit(6, "feet"),
  17564. weight: math.unit(150, "lb"),
  17565. name: "Side",
  17566. image: {
  17567. source: "./media/characters/richard-dragon/side.svg",
  17568. extra: 845 / 340,
  17569. bottom: 0.017
  17570. }
  17571. },
  17572. maw: {
  17573. height: math.unit(2.97, "feet"),
  17574. name: "Maw",
  17575. image: {
  17576. source: "./media/characters/richard-dragon/maw.svg"
  17577. }
  17578. },
  17579. },
  17580. [
  17581. ]
  17582. ))
  17583. characterMakers.push(() => makeCharacter(
  17584. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17585. {
  17586. front: {
  17587. height: math.unit(4, "feet"),
  17588. weight: math.unit(100, "lb"),
  17589. name: "Front",
  17590. image: {
  17591. source: "./media/characters/richard-smeargle/front.svg",
  17592. extra: 2952 / 2820,
  17593. bottom: 0.028
  17594. }
  17595. },
  17596. },
  17597. [
  17598. {
  17599. name: "Normal",
  17600. height: math.unit(4, "feet"),
  17601. default: true
  17602. },
  17603. {
  17604. name: "Dynamax",
  17605. height: math.unit(20, "meters")
  17606. },
  17607. ]
  17608. ))
  17609. characterMakers.push(() => makeCharacter(
  17610. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17611. {
  17612. front: {
  17613. height: math.unit(6, "feet"),
  17614. weight: math.unit(110, "lb"),
  17615. name: "Front",
  17616. image: {
  17617. source: "./media/characters/klay/front.svg",
  17618. extra: 962 / 883,
  17619. bottom: 0.04
  17620. }
  17621. },
  17622. back: {
  17623. height: math.unit(6, "feet"),
  17624. weight: math.unit(110, "lb"),
  17625. name: "Back",
  17626. image: {
  17627. source: "./media/characters/klay/back.svg",
  17628. extra: 962 / 883
  17629. }
  17630. },
  17631. beans: {
  17632. height: math.unit(1.15, "feet"),
  17633. name: "Beans",
  17634. image: {
  17635. source: "./media/characters/klay/beans.svg"
  17636. }
  17637. },
  17638. },
  17639. [
  17640. {
  17641. name: "Micro",
  17642. height: math.unit(6, "inches")
  17643. },
  17644. {
  17645. name: "Mini",
  17646. height: math.unit(3, "feet")
  17647. },
  17648. {
  17649. name: "Normal",
  17650. height: math.unit(6, "feet"),
  17651. default: true
  17652. },
  17653. {
  17654. name: "Big",
  17655. height: math.unit(25, "feet")
  17656. },
  17657. {
  17658. name: "Macro",
  17659. height: math.unit(100, "feet")
  17660. },
  17661. {
  17662. name: "Megamacro",
  17663. height: math.unit(400, "feet")
  17664. },
  17665. ]
  17666. ))
  17667. characterMakers.push(() => makeCharacter(
  17668. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17669. {
  17670. front: {
  17671. height: math.unit(6, "feet"),
  17672. weight: math.unit(160, "lb"),
  17673. name: "Front",
  17674. image: {
  17675. source: "./media/characters/marcus/front.svg",
  17676. extra: 734 / 676,
  17677. bottom: 0.03
  17678. }
  17679. },
  17680. },
  17681. [
  17682. {
  17683. name: "Little",
  17684. height: math.unit(6, "feet")
  17685. },
  17686. {
  17687. name: "Normal",
  17688. height: math.unit(110, "feet"),
  17689. default: true
  17690. },
  17691. {
  17692. name: "Macro",
  17693. height: math.unit(250, "feet")
  17694. },
  17695. {
  17696. name: "Megamacro",
  17697. height: math.unit(1000, "feet")
  17698. },
  17699. ]
  17700. ))
  17701. characterMakers.push(() => makeCharacter(
  17702. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17703. {
  17704. front: {
  17705. height: math.unit(7, "feet"),
  17706. weight: math.unit(275, "lb"),
  17707. name: "Front",
  17708. image: {
  17709. source: "./media/characters/claude-delroute/front.svg",
  17710. extra: 230 / 214,
  17711. bottom: 0.007
  17712. }
  17713. },
  17714. side: {
  17715. height: math.unit(7, "feet"),
  17716. weight: math.unit(275, "lb"),
  17717. name: "Side",
  17718. image: {
  17719. source: "./media/characters/claude-delroute/side.svg",
  17720. extra: 222 / 214,
  17721. bottom: 0.01
  17722. }
  17723. },
  17724. back: {
  17725. height: math.unit(7, "feet"),
  17726. weight: math.unit(275, "lb"),
  17727. name: "Back",
  17728. image: {
  17729. source: "./media/characters/claude-delroute/back.svg",
  17730. extra: 230 / 214,
  17731. bottom: 0.015
  17732. }
  17733. },
  17734. maw: {
  17735. height: math.unit(0.6407, "meters"),
  17736. name: "Maw",
  17737. image: {
  17738. source: "./media/characters/claude-delroute/maw.svg"
  17739. }
  17740. },
  17741. },
  17742. [
  17743. {
  17744. name: "Normal",
  17745. height: math.unit(7, "feet"),
  17746. default: true
  17747. },
  17748. {
  17749. name: "Lorge",
  17750. height: math.unit(20, "feet")
  17751. },
  17752. ]
  17753. ))
  17754. characterMakers.push(() => makeCharacter(
  17755. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17756. {
  17757. front: {
  17758. height: math.unit(8 + 4 / 12, "feet"),
  17759. weight: math.unit(600, "lb"),
  17760. name: "Front",
  17761. image: {
  17762. source: "./media/characters/dragonien/front.svg",
  17763. extra: 100 / 94,
  17764. bottom: 3.3 / 103.3445
  17765. }
  17766. },
  17767. back: {
  17768. height: math.unit(8 + 4 / 12, "feet"),
  17769. weight: math.unit(600, "lb"),
  17770. name: "Back",
  17771. image: {
  17772. source: "./media/characters/dragonien/back.svg",
  17773. extra: 776 / 746,
  17774. bottom: 6.4 / 782.0616
  17775. }
  17776. },
  17777. foot: {
  17778. height: math.unit(1.54, "feet"),
  17779. name: "Foot",
  17780. image: {
  17781. source: "./media/characters/dragonien/foot.svg",
  17782. }
  17783. },
  17784. },
  17785. [
  17786. {
  17787. name: "Normal",
  17788. height: math.unit(8 + 4 / 12, "feet"),
  17789. default: true
  17790. },
  17791. {
  17792. name: "Macro",
  17793. height: math.unit(200, "feet")
  17794. },
  17795. {
  17796. name: "Megamacro",
  17797. height: math.unit(1, "mile")
  17798. },
  17799. {
  17800. name: "Gigamacro",
  17801. height: math.unit(1000, "miles")
  17802. },
  17803. ]
  17804. ))
  17805. characterMakers.push(() => makeCharacter(
  17806. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17807. {
  17808. front: {
  17809. height: math.unit(5 + 2 / 12, "feet"),
  17810. weight: math.unit(110, "lb"),
  17811. name: "Front",
  17812. image: {
  17813. source: "./media/characters/desta/front.svg",
  17814. extra: 767 / 726,
  17815. bottom: 11.7 / 779
  17816. }
  17817. },
  17818. back: {
  17819. height: math.unit(5 + 2 / 12, "feet"),
  17820. weight: math.unit(110, "lb"),
  17821. name: "Back",
  17822. image: {
  17823. source: "./media/characters/desta/back.svg",
  17824. extra: 777 / 728,
  17825. bottom: 6 / 784
  17826. }
  17827. },
  17828. frontAlt: {
  17829. height: math.unit(5 + 2 / 12, "feet"),
  17830. weight: math.unit(110, "lb"),
  17831. name: "Front",
  17832. image: {
  17833. source: "./media/characters/desta/front-alt.svg",
  17834. extra: 1482 / 1417
  17835. }
  17836. },
  17837. side: {
  17838. height: math.unit(5 + 2 / 12, "feet"),
  17839. weight: math.unit(110, "lb"),
  17840. name: "Side",
  17841. image: {
  17842. source: "./media/characters/desta/side.svg",
  17843. extra: 2579 / 2491,
  17844. bottom: 0.053
  17845. }
  17846. },
  17847. },
  17848. [
  17849. {
  17850. name: "Micro",
  17851. height: math.unit(6, "inches")
  17852. },
  17853. {
  17854. name: "Normal",
  17855. height: math.unit(5 + 2 / 12, "feet"),
  17856. default: true
  17857. },
  17858. {
  17859. name: "Macro",
  17860. height: math.unit(62, "feet")
  17861. },
  17862. {
  17863. name: "Megamacro",
  17864. height: math.unit(1800, "feet")
  17865. },
  17866. ]
  17867. ))
  17868. characterMakers.push(() => makeCharacter(
  17869. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17870. {
  17871. front: {
  17872. height: math.unit(10, "feet"),
  17873. weight: math.unit(700, "lb"),
  17874. name: "Front",
  17875. image: {
  17876. source: "./media/characters/storm-alystar/front.svg",
  17877. extra: 2112 / 1898,
  17878. bottom: 0.034
  17879. }
  17880. },
  17881. },
  17882. [
  17883. {
  17884. name: "Micro",
  17885. height: math.unit(3.5, "inches")
  17886. },
  17887. {
  17888. name: "Normal",
  17889. height: math.unit(10, "feet"),
  17890. default: true
  17891. },
  17892. {
  17893. name: "Macro",
  17894. height: math.unit(400, "feet")
  17895. },
  17896. {
  17897. name: "Deific",
  17898. height: math.unit(60, "miles")
  17899. },
  17900. ]
  17901. ))
  17902. characterMakers.push(() => makeCharacter(
  17903. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17904. {
  17905. front: {
  17906. height: math.unit(2.35, "meters"),
  17907. weight: math.unit(119, "kg"),
  17908. name: "Front",
  17909. image: {
  17910. source: "./media/characters/ilia/front.svg",
  17911. extra: 1285 / 1255,
  17912. bottom: 0.06
  17913. }
  17914. },
  17915. },
  17916. [
  17917. {
  17918. name: "Normal",
  17919. height: math.unit(2.35, "meters")
  17920. },
  17921. {
  17922. name: "Macro",
  17923. height: math.unit(140, "meters"),
  17924. default: true
  17925. },
  17926. {
  17927. name: "Megamacro",
  17928. height: math.unit(100, "miles")
  17929. },
  17930. ]
  17931. ))
  17932. characterMakers.push(() => makeCharacter(
  17933. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17934. {
  17935. front: {
  17936. height: math.unit(6 + 5 / 12, "feet"),
  17937. weight: math.unit(190, "lb"),
  17938. name: "Front",
  17939. image: {
  17940. source: "./media/characters/kingdead/front.svg",
  17941. extra: 1228 / 1177
  17942. }
  17943. },
  17944. },
  17945. [
  17946. {
  17947. name: "Micro",
  17948. height: math.unit(7, "inches")
  17949. },
  17950. {
  17951. name: "Normal",
  17952. height: math.unit(6 + 5 / 12, "feet")
  17953. },
  17954. {
  17955. name: "Macro",
  17956. height: math.unit(150, "feet"),
  17957. default: true
  17958. },
  17959. {
  17960. name: "Megamacro",
  17961. height: math.unit(200, "miles")
  17962. },
  17963. ]
  17964. ))
  17965. characterMakers.push(() => makeCharacter(
  17966. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17967. {
  17968. front: {
  17969. height: math.unit(8, "feet"),
  17970. weight: math.unit(600, "lb"),
  17971. name: "Front",
  17972. image: {
  17973. source: "./media/characters/kyrehx/front.svg",
  17974. extra: 1195 / 1095,
  17975. bottom: 0.034
  17976. }
  17977. },
  17978. },
  17979. [
  17980. {
  17981. name: "Micro",
  17982. height: math.unit(2, "inches")
  17983. },
  17984. {
  17985. name: "Normal",
  17986. height: math.unit(8, "feet"),
  17987. default: true
  17988. },
  17989. {
  17990. name: "Macro",
  17991. height: math.unit(255, "feet")
  17992. },
  17993. ]
  17994. ))
  17995. characterMakers.push(() => makeCharacter(
  17996. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17997. {
  17998. front: {
  17999. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18000. weight: math.unit(184, "lb"),
  18001. name: "Front",
  18002. image: {
  18003. source: "./media/characters/xang/front.svg",
  18004. extra: 845 / 755
  18005. }
  18006. },
  18007. },
  18008. [
  18009. {
  18010. name: "Normal",
  18011. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18012. default: true
  18013. },
  18014. {
  18015. name: "Macro",
  18016. height: math.unit(0.935 * 146, "feet")
  18017. },
  18018. {
  18019. name: "Megamacro",
  18020. height: math.unit(0.935 * 3, "miles")
  18021. },
  18022. ]
  18023. ))
  18024. characterMakers.push(() => makeCharacter(
  18025. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18026. {
  18027. frontDressed: {
  18028. height: math.unit(5 + 7 / 12, "feet"),
  18029. weight: math.unit(140, "lb"),
  18030. name: "Front (Dressed)",
  18031. image: {
  18032. source: "./media/characters/doc-weardno/front-dressed.svg",
  18033. extra: 263 / 234
  18034. }
  18035. },
  18036. backDressed: {
  18037. height: math.unit(5 + 7 / 12, "feet"),
  18038. weight: math.unit(140, "lb"),
  18039. name: "Back (Dressed)",
  18040. image: {
  18041. source: "./media/characters/doc-weardno/back-dressed.svg",
  18042. extra: 266 / 238
  18043. }
  18044. },
  18045. front: {
  18046. height: math.unit(5 + 7 / 12, "feet"),
  18047. weight: math.unit(140, "lb"),
  18048. name: "Front",
  18049. image: {
  18050. source: "./media/characters/doc-weardno/front.svg",
  18051. extra: 254 / 233
  18052. }
  18053. },
  18054. },
  18055. [
  18056. {
  18057. name: "Micro",
  18058. height: math.unit(3, "inches")
  18059. },
  18060. {
  18061. name: "Normal",
  18062. height: math.unit(5 + 7 / 12, "feet"),
  18063. default: true
  18064. },
  18065. {
  18066. name: "Macro",
  18067. height: math.unit(25, "feet")
  18068. },
  18069. {
  18070. name: "Megamacro",
  18071. height: math.unit(2, "miles")
  18072. },
  18073. ]
  18074. ))
  18075. characterMakers.push(() => makeCharacter(
  18076. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18077. {
  18078. front: {
  18079. height: math.unit(6 + 2 / 12, "feet"),
  18080. weight: math.unit(153, "lb"),
  18081. name: "Front",
  18082. image: {
  18083. source: "./media/characters/seth-whilst/front.svg",
  18084. bottom: 0.07
  18085. }
  18086. },
  18087. },
  18088. [
  18089. {
  18090. name: "Micro",
  18091. height: math.unit(5, "inches")
  18092. },
  18093. {
  18094. name: "Normal",
  18095. height: math.unit(6 + 2 / 12, "feet"),
  18096. default: true
  18097. },
  18098. ]
  18099. ))
  18100. characterMakers.push(() => makeCharacter(
  18101. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18102. {
  18103. front: {
  18104. height: math.unit(3, "inches"),
  18105. weight: math.unit(8, "grams"),
  18106. name: "Front",
  18107. image: {
  18108. source: "./media/characters/pocket-jabari/front.svg",
  18109. extra: 1024 / 974,
  18110. bottom: 0.039
  18111. }
  18112. },
  18113. },
  18114. [
  18115. {
  18116. name: "Minimicro",
  18117. height: math.unit(8, "mm")
  18118. },
  18119. {
  18120. name: "Micro",
  18121. height: math.unit(3, "inches"),
  18122. default: true
  18123. },
  18124. {
  18125. name: "Normal",
  18126. height: math.unit(3, "feet")
  18127. },
  18128. ]
  18129. ))
  18130. characterMakers.push(() => makeCharacter(
  18131. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18132. {
  18133. front: {
  18134. height: math.unit(15, "feet"),
  18135. weight: math.unit(3280, "lb"),
  18136. name: "Front",
  18137. image: {
  18138. source: "./media/characters/sapphy/front.svg",
  18139. extra: 671 / 577,
  18140. bottom: 0.085
  18141. }
  18142. },
  18143. back: {
  18144. height: math.unit(15, "feet"),
  18145. weight: math.unit(3280, "lb"),
  18146. name: "Back",
  18147. image: {
  18148. source: "./media/characters/sapphy/back.svg",
  18149. extra: 631 / 607,
  18150. bottom: 0.045
  18151. }
  18152. },
  18153. },
  18154. [
  18155. {
  18156. name: "Normal",
  18157. height: math.unit(15, "feet")
  18158. },
  18159. {
  18160. name: "Casual Macro",
  18161. height: math.unit(120, "feet")
  18162. },
  18163. {
  18164. name: "Macro",
  18165. height: math.unit(2150, "feet"),
  18166. default: true
  18167. },
  18168. {
  18169. name: "Megamacro",
  18170. height: math.unit(8, "miles")
  18171. },
  18172. {
  18173. name: "Galaxy Mom",
  18174. height: math.unit(6, "megalightyears")
  18175. },
  18176. ]
  18177. ))
  18178. characterMakers.push(() => makeCharacter(
  18179. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  18180. {
  18181. front: {
  18182. height: math.unit(6, "feet"),
  18183. weight: math.unit(170, "lb"),
  18184. name: "Front",
  18185. image: {
  18186. source: "./media/characters/kiro/front.svg",
  18187. extra: 1064 / 1012,
  18188. bottom: 0.052
  18189. }
  18190. },
  18191. },
  18192. [
  18193. {
  18194. name: "Micro",
  18195. height: math.unit(6, "inches")
  18196. },
  18197. {
  18198. name: "Normal",
  18199. height: math.unit(6, "feet"),
  18200. default: true
  18201. },
  18202. {
  18203. name: "Macro",
  18204. height: math.unit(72, "feet")
  18205. },
  18206. ]
  18207. ))
  18208. characterMakers.push(() => makeCharacter(
  18209. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18210. {
  18211. front: {
  18212. height: math.unit(5 + 9 / 12, "feet"),
  18213. weight: math.unit(175, "lb"),
  18214. name: "Front",
  18215. image: {
  18216. source: "./media/characters/irishfox/front.svg",
  18217. extra: 1912 / 1680,
  18218. bottom: 0.02
  18219. }
  18220. },
  18221. },
  18222. [
  18223. {
  18224. name: "Nano",
  18225. height: math.unit(1, "mm")
  18226. },
  18227. {
  18228. name: "Micro",
  18229. height: math.unit(2, "inches")
  18230. },
  18231. {
  18232. name: "Normal",
  18233. height: math.unit(5 + 9 / 12, "feet"),
  18234. default: true
  18235. },
  18236. {
  18237. name: "Macro",
  18238. height: math.unit(45, "feet")
  18239. },
  18240. ]
  18241. ))
  18242. characterMakers.push(() => makeCharacter(
  18243. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18244. {
  18245. front: {
  18246. height: math.unit(6 + 1 / 12, "feet"),
  18247. weight: math.unit(150, "lb"),
  18248. name: "Front",
  18249. image: {
  18250. source: "./media/characters/aronai-sieyes/front.svg",
  18251. extra: 1556 / 1480,
  18252. bottom: 0.015
  18253. }
  18254. },
  18255. side: {
  18256. height: math.unit(6 + 1 / 12, "feet"),
  18257. weight: math.unit(150, "lb"),
  18258. name: "Side",
  18259. image: {
  18260. source: "./media/characters/aronai-sieyes/side.svg",
  18261. extra: 1433 / 1390,
  18262. bottom: 0.0393
  18263. }
  18264. },
  18265. back: {
  18266. height: math.unit(6 + 1 / 12, "feet"),
  18267. weight: math.unit(150, "lb"),
  18268. name: "Back",
  18269. image: {
  18270. source: "./media/characters/aronai-sieyes/back.svg",
  18271. extra: 1544 / 1494,
  18272. bottom: 0.02
  18273. }
  18274. },
  18275. frontClothed: {
  18276. height: math.unit(6 + 1 / 12, "feet"),
  18277. weight: math.unit(150, "lb"),
  18278. name: "Front (Clothed)",
  18279. image: {
  18280. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18281. extra: 1582 / 1527
  18282. }
  18283. },
  18284. feral: {
  18285. height: math.unit(18, "feet"),
  18286. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  18287. name: "Feral",
  18288. image: {
  18289. source: "./media/characters/aronai-sieyes/feral.svg",
  18290. extra: 1530 / 1240,
  18291. bottom: 0.035
  18292. }
  18293. },
  18294. },
  18295. [
  18296. {
  18297. name: "Micro",
  18298. height: math.unit(2, "inches")
  18299. },
  18300. {
  18301. name: "Normal",
  18302. height: math.unit(6 + 1 / 12, "feet"),
  18303. default: true
  18304. }
  18305. ]
  18306. ))
  18307. characterMakers.push(() => makeCharacter(
  18308. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18309. {
  18310. front: {
  18311. height: math.unit(12, "feet"),
  18312. weight: math.unit(410, "kg"),
  18313. name: "Front",
  18314. image: {
  18315. source: "./media/characters/xuna/front.svg",
  18316. extra: 2184 / 1980
  18317. }
  18318. },
  18319. side: {
  18320. height: math.unit(12, "feet"),
  18321. weight: math.unit(410, "kg"),
  18322. name: "Side",
  18323. image: {
  18324. source: "./media/characters/xuna/side.svg",
  18325. extra: 2184 / 1980
  18326. }
  18327. },
  18328. back: {
  18329. height: math.unit(12, "feet"),
  18330. weight: math.unit(410, "kg"),
  18331. name: "Back",
  18332. image: {
  18333. source: "./media/characters/xuna/back.svg",
  18334. extra: 2184 / 1980
  18335. }
  18336. },
  18337. },
  18338. [
  18339. {
  18340. name: "Nano glow",
  18341. height: math.unit(10, "nm")
  18342. },
  18343. {
  18344. name: "Micro floof",
  18345. height: math.unit(0.3, "m")
  18346. },
  18347. {
  18348. name: "Huggable softy boi",
  18349. height: math.unit(3.6576, "m"),
  18350. default: true
  18351. },
  18352. {
  18353. name: "Admirable floof",
  18354. height: math.unit(80, "meters")
  18355. },
  18356. {
  18357. name: "Gentle macro",
  18358. height: math.unit(300, "meters")
  18359. },
  18360. {
  18361. name: "Very careful floof",
  18362. height: math.unit(3200, "meters")
  18363. },
  18364. {
  18365. name: "The mega floof",
  18366. height: math.unit(36000, "meters")
  18367. },
  18368. {
  18369. name: "Giga-fur-Wicker",
  18370. height: math.unit(4800000, "meters")
  18371. },
  18372. {
  18373. name: "Licky world",
  18374. height: math.unit(20000000, "meters")
  18375. },
  18376. {
  18377. name: "Floofy cyan sun",
  18378. height: math.unit(1500000000, "meters")
  18379. },
  18380. {
  18381. name: "Milky Wicker",
  18382. height: math.unit(1000000000000000000000, "meters")
  18383. },
  18384. {
  18385. name: "The observing Wicker",
  18386. height: math.unit(999999999999999999999999999, "meters")
  18387. },
  18388. ]
  18389. ))
  18390. characterMakers.push(() => makeCharacter(
  18391. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18392. {
  18393. front: {
  18394. height: math.unit(5 + 9 / 12, "feet"),
  18395. weight: math.unit(150, "lb"),
  18396. name: "Front",
  18397. image: {
  18398. source: "./media/characters/arokha-sieyes/front.svg",
  18399. extra: 1425 / 1284,
  18400. bottom: 0.05
  18401. }
  18402. },
  18403. },
  18404. [
  18405. {
  18406. name: "Normal",
  18407. height: math.unit(5 + 9 / 12, "feet")
  18408. },
  18409. {
  18410. name: "Macro",
  18411. height: math.unit(30, "meters"),
  18412. default: true
  18413. },
  18414. ]
  18415. ))
  18416. characterMakers.push(() => makeCharacter(
  18417. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18418. {
  18419. front: {
  18420. height: math.unit(6, "feet"),
  18421. weight: math.unit(180, "lb"),
  18422. name: "Front",
  18423. image: {
  18424. source: "./media/characters/arokh-sieyes/front.svg",
  18425. extra: 1830 / 1769,
  18426. bottom: 0.01
  18427. }
  18428. },
  18429. },
  18430. [
  18431. {
  18432. name: "Normal",
  18433. height: math.unit(6, "feet")
  18434. },
  18435. {
  18436. name: "Macro",
  18437. height: math.unit(30, "meters"),
  18438. default: true
  18439. },
  18440. ]
  18441. ))
  18442. characterMakers.push(() => makeCharacter(
  18443. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18444. {
  18445. side: {
  18446. height: math.unit(13 + 1 / 12, "feet"),
  18447. weight: math.unit(8.5, "tonnes"),
  18448. name: "Side",
  18449. image: {
  18450. source: "./media/characters/goldeneye/side.svg",
  18451. extra: 1182 / 778,
  18452. bottom: 0.067
  18453. }
  18454. },
  18455. paw: {
  18456. height: math.unit(3.4, "feet"),
  18457. name: "Paw",
  18458. image: {
  18459. source: "./media/characters/goldeneye/paw.svg"
  18460. }
  18461. },
  18462. },
  18463. [
  18464. {
  18465. name: "Normal",
  18466. height: math.unit(13 + 1 / 12, "feet"),
  18467. default: true
  18468. },
  18469. ]
  18470. ))
  18471. characterMakers.push(() => makeCharacter(
  18472. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18473. {
  18474. front: {
  18475. height: math.unit(6 + 1 / 12, "feet"),
  18476. weight: math.unit(210, "lb"),
  18477. name: "Front",
  18478. image: {
  18479. source: "./media/characters/leonardo-lycheborne/front.svg",
  18480. extra: 390 / 365,
  18481. bottom: 0.032
  18482. }
  18483. },
  18484. side: {
  18485. height: math.unit(6 + 1 / 12, "feet"),
  18486. weight: math.unit(210, "lb"),
  18487. name: "Side",
  18488. image: {
  18489. source: "./media/characters/leonardo-lycheborne/side.svg",
  18490. extra: 390 / 365,
  18491. bottom: 0.005
  18492. }
  18493. },
  18494. back: {
  18495. height: math.unit(6 + 1 / 12, "feet"),
  18496. weight: math.unit(210, "lb"),
  18497. name: "Back",
  18498. image: {
  18499. source: "./media/characters/leonardo-lycheborne/back.svg",
  18500. extra: 392 / 366,
  18501. bottom: 0.01
  18502. }
  18503. },
  18504. hand: {
  18505. height: math.unit(1.08, "feet"),
  18506. name: "Hand",
  18507. image: {
  18508. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18509. }
  18510. },
  18511. foot: {
  18512. height: math.unit(1.32, "feet"),
  18513. name: "Foot",
  18514. image: {
  18515. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18516. }
  18517. },
  18518. were: {
  18519. height: math.unit(20, "feet"),
  18520. weight: math.unit(7800, "lb"),
  18521. name: "Were",
  18522. image: {
  18523. source: "./media/characters/leonardo-lycheborne/were.svg",
  18524. extra: 308 / 294,
  18525. bottom: 0.048
  18526. }
  18527. },
  18528. feral: {
  18529. height: math.unit(7.5, "feet"),
  18530. weight: math.unit(600, "lb"),
  18531. name: "Feral",
  18532. image: {
  18533. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18534. extra: 210 / 186,
  18535. bottom: 0.108
  18536. }
  18537. },
  18538. taur: {
  18539. height: math.unit(11, "feet"),
  18540. weight: math.unit(3300, "lb"),
  18541. name: "Taur",
  18542. image: {
  18543. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18544. extra: 320 / 303,
  18545. bottom: 0.025
  18546. }
  18547. },
  18548. barghest: {
  18549. height: math.unit(11, "feet"),
  18550. weight: math.unit(1300, "lb"),
  18551. name: "Barghest",
  18552. image: {
  18553. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18554. extra: 323 / 302,
  18555. bottom: 0.027
  18556. }
  18557. },
  18558. dick: {
  18559. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18560. name: "Dick",
  18561. image: {
  18562. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18563. }
  18564. },
  18565. dickWere: {
  18566. height: math.unit((20) / 3.8, "feet"),
  18567. name: "Dick (Were)",
  18568. image: {
  18569. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18570. }
  18571. },
  18572. },
  18573. [
  18574. {
  18575. name: "Normal",
  18576. height: math.unit(6 + 1 / 12, "feet"),
  18577. default: true
  18578. },
  18579. ]
  18580. ))
  18581. characterMakers.push(() => makeCharacter(
  18582. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18583. {
  18584. front: {
  18585. height: math.unit(10, "feet"),
  18586. weight: math.unit(350, "lb"),
  18587. name: "Front",
  18588. image: {
  18589. source: "./media/characters/jet/front.svg",
  18590. extra: 2050 / 1980,
  18591. bottom: 0.013
  18592. }
  18593. },
  18594. back: {
  18595. height: math.unit(10, "feet"),
  18596. weight: math.unit(350, "lb"),
  18597. name: "Back",
  18598. image: {
  18599. source: "./media/characters/jet/back.svg",
  18600. extra: 2050 / 1980,
  18601. bottom: 0.013
  18602. }
  18603. },
  18604. },
  18605. [
  18606. {
  18607. name: "Micro",
  18608. height: math.unit(6, "inches")
  18609. },
  18610. {
  18611. name: "Normal",
  18612. height: math.unit(10, "feet"),
  18613. default: true
  18614. },
  18615. {
  18616. name: "Macro",
  18617. height: math.unit(100, "feet")
  18618. },
  18619. ]
  18620. ))
  18621. characterMakers.push(() => makeCharacter(
  18622. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18623. {
  18624. front: {
  18625. height: math.unit(15, "feet"),
  18626. weight: math.unit(2800, "lb"),
  18627. name: "Front",
  18628. image: {
  18629. source: "./media/characters/tanarath/front.svg",
  18630. extra: 2392 / 2220,
  18631. bottom: 0.03
  18632. }
  18633. },
  18634. back: {
  18635. height: math.unit(15, "feet"),
  18636. weight: math.unit(2800, "lb"),
  18637. name: "Back",
  18638. image: {
  18639. source: "./media/characters/tanarath/back.svg",
  18640. extra: 2392 / 2220,
  18641. bottom: 0.03
  18642. }
  18643. },
  18644. },
  18645. [
  18646. {
  18647. name: "Normal",
  18648. height: math.unit(15, "feet"),
  18649. default: true
  18650. },
  18651. ]
  18652. ))
  18653. characterMakers.push(() => makeCharacter(
  18654. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18655. {
  18656. front: {
  18657. height: math.unit(7 + 1 / 12, "feet"),
  18658. weight: math.unit(175, "lb"),
  18659. name: "Front",
  18660. image: {
  18661. source: "./media/characters/patty-cattybatty/front.svg",
  18662. extra: 908 / 874,
  18663. bottom: 0.025
  18664. }
  18665. },
  18666. },
  18667. [
  18668. {
  18669. name: "Micro",
  18670. height: math.unit(1, "inch")
  18671. },
  18672. {
  18673. name: "Normal",
  18674. height: math.unit(7 + 1 / 12, "feet")
  18675. },
  18676. {
  18677. name: "Mini Macro",
  18678. height: math.unit(155, "feet")
  18679. },
  18680. {
  18681. name: "Macro",
  18682. height: math.unit(1077, "feet")
  18683. },
  18684. {
  18685. name: "Mega Macro",
  18686. height: math.unit(47650, "feet"),
  18687. default: true
  18688. },
  18689. {
  18690. name: "Giga Macro",
  18691. height: math.unit(440, "miles")
  18692. },
  18693. {
  18694. name: "Tera Macro",
  18695. height: math.unit(8700, "miles")
  18696. },
  18697. {
  18698. name: "Planetary Macro",
  18699. height: math.unit(32700, "miles")
  18700. },
  18701. {
  18702. name: "Solar Macro",
  18703. height: math.unit(550000, "miles")
  18704. },
  18705. {
  18706. name: "Celestial Macro",
  18707. height: math.unit(2.5, "AU")
  18708. },
  18709. ]
  18710. ))
  18711. characterMakers.push(() => makeCharacter(
  18712. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18713. {
  18714. front: {
  18715. height: math.unit(4 + 5 / 12, "feet"),
  18716. weight: math.unit(90, "lb"),
  18717. name: "Front",
  18718. image: {
  18719. source: "./media/characters/cappu/front.svg",
  18720. extra: 1247 / 1152,
  18721. bottom: 0.012
  18722. }
  18723. },
  18724. },
  18725. [
  18726. {
  18727. name: "Normal",
  18728. height: math.unit(4 + 5 / 12, "feet"),
  18729. default: true
  18730. },
  18731. ]
  18732. ))
  18733. characterMakers.push(() => makeCharacter(
  18734. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18735. {
  18736. frontDressed: {
  18737. height: math.unit(70, "cm"),
  18738. weight: math.unit(6, "kg"),
  18739. name: "Front (Dressed)",
  18740. image: {
  18741. source: "./media/characters/sebi/front-dressed.svg",
  18742. extra: 713.5 / 686.5,
  18743. bottom: 0.003
  18744. }
  18745. },
  18746. front: {
  18747. height: math.unit(70, "cm"),
  18748. weight: math.unit(5, "kg"),
  18749. name: "Front",
  18750. image: {
  18751. source: "./media/characters/sebi/front.svg",
  18752. extra: 713.5 / 686.5,
  18753. bottom: 0.003
  18754. }
  18755. }
  18756. },
  18757. [
  18758. {
  18759. name: "Normal",
  18760. height: math.unit(70, "cm"),
  18761. default: true
  18762. },
  18763. {
  18764. name: "Macro",
  18765. height: math.unit(8, "meters")
  18766. },
  18767. ]
  18768. ))
  18769. characterMakers.push(() => makeCharacter(
  18770. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18771. {
  18772. front: {
  18773. height: math.unit(6, "feet"),
  18774. weight: math.unit(150, "lb"),
  18775. name: "Front",
  18776. image: {
  18777. source: "./media/characters/typhek/front.svg",
  18778. extra: 1948 / 1929,
  18779. bottom: 0.025
  18780. }
  18781. },
  18782. side: {
  18783. height: math.unit(6, "feet"),
  18784. weight: math.unit(150, "lb"),
  18785. name: "Side",
  18786. image: {
  18787. source: "./media/characters/typhek/side.svg",
  18788. extra: 2034 / 2010,
  18789. bottom: 0.003
  18790. }
  18791. },
  18792. back: {
  18793. height: math.unit(6, "feet"),
  18794. weight: math.unit(150, "lb"),
  18795. name: "Back",
  18796. image: {
  18797. source: "./media/characters/typhek/back.svg",
  18798. extra: 2005 / 1978,
  18799. bottom: 0.004
  18800. }
  18801. },
  18802. palm: {
  18803. height: math.unit(1.2, "feet"),
  18804. name: "Palm",
  18805. image: {
  18806. source: "./media/characters/typhek/palm.svg"
  18807. }
  18808. },
  18809. fist: {
  18810. height: math.unit(1.1, "feet"),
  18811. name: "Fist",
  18812. image: {
  18813. source: "./media/characters/typhek/fist.svg"
  18814. }
  18815. },
  18816. foot: {
  18817. height: math.unit(1.57, "feet"),
  18818. name: "Foot",
  18819. image: {
  18820. source: "./media/characters/typhek/foot.svg"
  18821. }
  18822. },
  18823. sole: {
  18824. height: math.unit(2.05, "feet"),
  18825. name: "Sole",
  18826. image: {
  18827. source: "./media/characters/typhek/sole.svg"
  18828. }
  18829. },
  18830. },
  18831. [
  18832. {
  18833. name: "Macro",
  18834. height: math.unit(40, "stories"),
  18835. default: true
  18836. },
  18837. {
  18838. name: "Megamacro",
  18839. height: math.unit(1, "mile")
  18840. },
  18841. {
  18842. name: "Gigamacro",
  18843. height: math.unit(4000, "solarradii")
  18844. },
  18845. {
  18846. name: "Universal",
  18847. height: math.unit(1.1, "universes")
  18848. }
  18849. ]
  18850. ))
  18851. characterMakers.push(() => makeCharacter(
  18852. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18853. {
  18854. side: {
  18855. height: math.unit(5 + 7 / 12, "feet"),
  18856. weight: math.unit(150, "lb"),
  18857. name: "Side",
  18858. image: {
  18859. source: "./media/characters/kassy/side.svg",
  18860. extra: 1280 / 1225,
  18861. bottom: 0.002
  18862. }
  18863. },
  18864. front: {
  18865. height: math.unit(5 + 7 / 12, "feet"),
  18866. weight: math.unit(150, "lb"),
  18867. name: "Front",
  18868. image: {
  18869. source: "./media/characters/kassy/front.svg",
  18870. extra: 1280 / 1225,
  18871. bottom: 0.025
  18872. }
  18873. },
  18874. back: {
  18875. height: math.unit(5 + 7 / 12, "feet"),
  18876. weight: math.unit(150, "lb"),
  18877. name: "Back",
  18878. image: {
  18879. source: "./media/characters/kassy/back.svg",
  18880. extra: 1280 / 1225,
  18881. bottom: 0.002
  18882. }
  18883. },
  18884. foot: {
  18885. height: math.unit(1.266, "feet"),
  18886. name: "Foot",
  18887. image: {
  18888. source: "./media/characters/kassy/foot.svg"
  18889. }
  18890. },
  18891. },
  18892. [
  18893. {
  18894. name: "Normal",
  18895. height: math.unit(5 + 7 / 12, "feet")
  18896. },
  18897. {
  18898. name: "Macro",
  18899. height: math.unit(137, "feet"),
  18900. default: true
  18901. },
  18902. {
  18903. name: "Megamacro",
  18904. height: math.unit(1, "mile")
  18905. },
  18906. ]
  18907. ))
  18908. characterMakers.push(() => makeCharacter(
  18909. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18910. {
  18911. front: {
  18912. height: math.unit(6 + 1 / 12, "feet"),
  18913. weight: math.unit(200, "lb"),
  18914. name: "Front",
  18915. image: {
  18916. source: "./media/characters/neil/front.svg",
  18917. extra: 1326 / 1250,
  18918. bottom: 0.023
  18919. }
  18920. },
  18921. },
  18922. [
  18923. {
  18924. name: "Normal",
  18925. height: math.unit(6 + 1 / 12, "feet"),
  18926. default: true
  18927. },
  18928. {
  18929. name: "Macro",
  18930. height: math.unit(200, "feet")
  18931. },
  18932. ]
  18933. ))
  18934. characterMakers.push(() => makeCharacter(
  18935. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18936. {
  18937. front: {
  18938. height: math.unit(5 + 9 / 12, "feet"),
  18939. weight: math.unit(190, "lb"),
  18940. name: "Front",
  18941. image: {
  18942. source: "./media/characters/atticus/front.svg",
  18943. extra: 2934 / 2785,
  18944. bottom: 0.025
  18945. }
  18946. },
  18947. },
  18948. [
  18949. {
  18950. name: "Normal",
  18951. height: math.unit(5 + 9 / 12, "feet"),
  18952. default: true
  18953. },
  18954. {
  18955. name: "Macro",
  18956. height: math.unit(180, "feet")
  18957. },
  18958. ]
  18959. ))
  18960. characterMakers.push(() => makeCharacter(
  18961. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18962. {
  18963. side: {
  18964. height: math.unit(9, "feet"),
  18965. weight: math.unit(650, "lb"),
  18966. name: "Side",
  18967. image: {
  18968. source: "./media/characters/milo/side.svg",
  18969. extra: 2644 / 2310,
  18970. bottom: 0.032
  18971. }
  18972. },
  18973. },
  18974. [
  18975. {
  18976. name: "Normal",
  18977. height: math.unit(9, "feet"),
  18978. default: true
  18979. },
  18980. {
  18981. name: "Macro",
  18982. height: math.unit(300, "feet")
  18983. },
  18984. ]
  18985. ))
  18986. characterMakers.push(() => makeCharacter(
  18987. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18988. {
  18989. side: {
  18990. height: math.unit(8, "meters"),
  18991. weight: math.unit(90000, "kg"),
  18992. name: "Side",
  18993. image: {
  18994. source: "./media/characters/ijzer/side.svg",
  18995. extra: 2756 / 1600,
  18996. bottom: 0.01
  18997. }
  18998. },
  18999. },
  19000. [
  19001. {
  19002. name: "Small",
  19003. height: math.unit(3, "meters")
  19004. },
  19005. {
  19006. name: "Normal",
  19007. height: math.unit(8, "meters"),
  19008. default: true
  19009. },
  19010. {
  19011. name: "Normal+",
  19012. height: math.unit(10, "meters")
  19013. },
  19014. {
  19015. name: "Bigger",
  19016. height: math.unit(24, "meters")
  19017. },
  19018. {
  19019. name: "Huge",
  19020. height: math.unit(80, "meters")
  19021. },
  19022. ]
  19023. ))
  19024. characterMakers.push(() => makeCharacter(
  19025. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19026. {
  19027. front: {
  19028. height: math.unit(6 + 2 / 12, "feet"),
  19029. weight: math.unit(153, "lb"),
  19030. name: "Front",
  19031. image: {
  19032. source: "./media/characters/luca-cervicum/front.svg",
  19033. extra: 370 / 327,
  19034. bottom: 0.015
  19035. }
  19036. },
  19037. back: {
  19038. height: math.unit(6 + 2 / 12, "feet"),
  19039. weight: math.unit(153, "lb"),
  19040. name: "Back",
  19041. image: {
  19042. source: "./media/characters/luca-cervicum/back.svg",
  19043. extra: 367 / 333,
  19044. bottom: 0.005
  19045. }
  19046. },
  19047. frontGear: {
  19048. height: math.unit(6 + 2 / 12, "feet"),
  19049. weight: math.unit(173, "lb"),
  19050. name: "Front (Gear)",
  19051. image: {
  19052. source: "./media/characters/luca-cervicum/front-gear.svg",
  19053. extra: 377 / 333,
  19054. bottom: 0.006
  19055. }
  19056. },
  19057. },
  19058. [
  19059. {
  19060. name: "Normal",
  19061. height: math.unit(6 + 2 / 12, "feet"),
  19062. default: true
  19063. },
  19064. ]
  19065. ))
  19066. characterMakers.push(() => makeCharacter(
  19067. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19068. {
  19069. front: {
  19070. height: math.unit(6 + 1 / 12, "feet"),
  19071. weight: math.unit(304, "lb"),
  19072. name: "Front",
  19073. image: {
  19074. source: "./media/characters/oliver/front.svg",
  19075. extra: 157 / 143,
  19076. bottom: 0.08
  19077. }
  19078. },
  19079. },
  19080. [
  19081. {
  19082. name: "Normal",
  19083. height: math.unit(6 + 1 / 12, "feet"),
  19084. default: true
  19085. },
  19086. ]
  19087. ))
  19088. characterMakers.push(() => makeCharacter(
  19089. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19090. {
  19091. front: {
  19092. height: math.unit(5 + 7 / 12, "feet"),
  19093. weight: math.unit(140, "lb"),
  19094. name: "Front",
  19095. image: {
  19096. source: "./media/characters/shane/front.svg",
  19097. extra: 304 / 289,
  19098. bottom: 0.005
  19099. }
  19100. },
  19101. },
  19102. [
  19103. {
  19104. name: "Normal",
  19105. height: math.unit(5 + 7 / 12, "feet"),
  19106. default: true
  19107. },
  19108. ]
  19109. ))
  19110. characterMakers.push(() => makeCharacter(
  19111. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19112. {
  19113. front: {
  19114. height: math.unit(5 + 9 / 12, "feet"),
  19115. weight: math.unit(178, "lb"),
  19116. name: "Front",
  19117. image: {
  19118. source: "./media/characters/shin/front.svg",
  19119. extra: 159 / 151,
  19120. bottom: 0.015
  19121. }
  19122. },
  19123. },
  19124. [
  19125. {
  19126. name: "Normal",
  19127. height: math.unit(5 + 9 / 12, "feet"),
  19128. default: true
  19129. },
  19130. ]
  19131. ))
  19132. characterMakers.push(() => makeCharacter(
  19133. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19134. {
  19135. front: {
  19136. height: math.unit(5 + 10 / 12, "feet"),
  19137. weight: math.unit(168, "lb"),
  19138. name: "Front",
  19139. image: {
  19140. source: "./media/characters/xerxes/front.svg",
  19141. extra: 282 / 260,
  19142. bottom: 0.045
  19143. }
  19144. },
  19145. },
  19146. [
  19147. {
  19148. name: "Normal",
  19149. height: math.unit(5 + 10 / 12, "feet"),
  19150. default: true
  19151. },
  19152. ]
  19153. ))
  19154. characterMakers.push(() => makeCharacter(
  19155. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19156. {
  19157. front: {
  19158. height: math.unit(6 + 7 / 12, "feet"),
  19159. weight: math.unit(208, "lb"),
  19160. name: "Front",
  19161. image: {
  19162. source: "./media/characters/chaska/front.svg",
  19163. extra: 332 / 319,
  19164. bottom: 0.015
  19165. }
  19166. },
  19167. },
  19168. [
  19169. {
  19170. name: "Normal",
  19171. height: math.unit(6 + 7 / 12, "feet"),
  19172. default: true
  19173. },
  19174. ]
  19175. ))
  19176. characterMakers.push(() => makeCharacter(
  19177. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19178. {
  19179. front: {
  19180. height: math.unit(5 + 8 / 12, "feet"),
  19181. weight: math.unit(208, "lb"),
  19182. name: "Front",
  19183. image: {
  19184. source: "./media/characters/enuk/front.svg",
  19185. extra: 437 / 406,
  19186. bottom: 0.02
  19187. }
  19188. },
  19189. },
  19190. [
  19191. {
  19192. name: "Normal",
  19193. height: math.unit(5 + 8 / 12, "feet"),
  19194. default: true
  19195. },
  19196. ]
  19197. ))
  19198. characterMakers.push(() => makeCharacter(
  19199. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19200. {
  19201. front: {
  19202. height: math.unit(5 + 10 / 12, "feet"),
  19203. weight: math.unit(252, "lb"),
  19204. name: "Front",
  19205. image: {
  19206. source: "./media/characters/bruun/front.svg",
  19207. extra: 197 / 187,
  19208. bottom: 0.012
  19209. }
  19210. },
  19211. },
  19212. [
  19213. {
  19214. name: "Normal",
  19215. height: math.unit(5 + 10 / 12, "feet"),
  19216. default: true
  19217. },
  19218. ]
  19219. ))
  19220. characterMakers.push(() => makeCharacter(
  19221. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19222. {
  19223. front: {
  19224. height: math.unit(6 + 10 / 12, "feet"),
  19225. weight: math.unit(255, "lb"),
  19226. name: "Front",
  19227. image: {
  19228. source: "./media/characters/alexeev/front.svg",
  19229. extra: 213 / 200,
  19230. bottom: 0.05
  19231. }
  19232. },
  19233. },
  19234. [
  19235. {
  19236. name: "Normal",
  19237. height: math.unit(6 + 10 / 12, "feet"),
  19238. default: true
  19239. },
  19240. ]
  19241. ))
  19242. characterMakers.push(() => makeCharacter(
  19243. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19244. {
  19245. front: {
  19246. height: math.unit(2 + 8 / 12, "feet"),
  19247. weight: math.unit(22, "lb"),
  19248. name: "Front",
  19249. image: {
  19250. source: "./media/characters/evelyn/front.svg",
  19251. extra: 208 / 180
  19252. }
  19253. },
  19254. },
  19255. [
  19256. {
  19257. name: "Normal",
  19258. height: math.unit(2 + 8 / 12, "feet"),
  19259. default: true
  19260. },
  19261. ]
  19262. ))
  19263. characterMakers.push(() => makeCharacter(
  19264. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19265. {
  19266. front: {
  19267. height: math.unit(5 + 9 / 12, "feet"),
  19268. weight: math.unit(139, "lb"),
  19269. name: "Front",
  19270. image: {
  19271. source: "./media/characters/inca/front.svg",
  19272. extra: 294 / 291,
  19273. bottom: 0.03
  19274. }
  19275. },
  19276. },
  19277. [
  19278. {
  19279. name: "Normal",
  19280. height: math.unit(5 + 9 / 12, "feet"),
  19281. default: true
  19282. },
  19283. ]
  19284. ))
  19285. characterMakers.push(() => makeCharacter(
  19286. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19287. {
  19288. front: {
  19289. height: math.unit(5 + 1 / 12, "feet"),
  19290. weight: math.unit(84, "lb"),
  19291. name: "Front",
  19292. image: {
  19293. source: "./media/characters/magdalene/front.svg",
  19294. extra: 293 / 273
  19295. }
  19296. },
  19297. },
  19298. [
  19299. {
  19300. name: "Normal",
  19301. height: math.unit(5 + 1 / 12, "feet"),
  19302. default: true
  19303. },
  19304. ]
  19305. ))
  19306. characterMakers.push(() => makeCharacter(
  19307. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19308. {
  19309. front: {
  19310. height: math.unit(6 + 3 / 12, "feet"),
  19311. weight: math.unit(185, "lb"),
  19312. name: "Front",
  19313. image: {
  19314. source: "./media/characters/mera/front.svg",
  19315. extra: 291 / 277,
  19316. bottom: 0.03
  19317. }
  19318. },
  19319. },
  19320. [
  19321. {
  19322. name: "Normal",
  19323. height: math.unit(6 + 3 / 12, "feet"),
  19324. default: true
  19325. },
  19326. ]
  19327. ))
  19328. characterMakers.push(() => makeCharacter(
  19329. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19330. {
  19331. front: {
  19332. height: math.unit(6 + 7 / 12, "feet"),
  19333. weight: math.unit(160, "lb"),
  19334. name: "Front",
  19335. image: {
  19336. source: "./media/characters/ceres/front.svg",
  19337. extra: 1023 / 950,
  19338. bottom: 0.027
  19339. }
  19340. },
  19341. back: {
  19342. height: math.unit(6 + 7 / 12, "feet"),
  19343. weight: math.unit(160, "lb"),
  19344. name: "Back",
  19345. image: {
  19346. source: "./media/characters/ceres/back.svg",
  19347. extra: 1023 / 950
  19348. }
  19349. },
  19350. },
  19351. [
  19352. {
  19353. name: "Normal",
  19354. height: math.unit(6 + 7 / 12, "feet"),
  19355. default: true
  19356. },
  19357. ]
  19358. ))
  19359. characterMakers.push(() => makeCharacter(
  19360. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19361. {
  19362. front: {
  19363. height: math.unit(5 + 10 / 12, "feet"),
  19364. weight: math.unit(150, "lb"),
  19365. name: "Front",
  19366. image: {
  19367. source: "./media/characters/kris/front.svg",
  19368. extra: 885 / 803,
  19369. bottom: 0.03
  19370. }
  19371. },
  19372. },
  19373. [
  19374. {
  19375. name: "Normal",
  19376. height: math.unit(5 + 10 / 12, "feet"),
  19377. default: true
  19378. },
  19379. ]
  19380. ))
  19381. characterMakers.push(() => makeCharacter(
  19382. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19383. {
  19384. front: {
  19385. height: math.unit(7, "feet"),
  19386. weight: math.unit(120, "kg"),
  19387. name: "Front",
  19388. image: {
  19389. source: "./media/characters/taluthus/front.svg",
  19390. extra: 903 / 833,
  19391. bottom: 0.015
  19392. }
  19393. },
  19394. },
  19395. [
  19396. {
  19397. name: "Normal",
  19398. height: math.unit(7, "feet"),
  19399. default: true
  19400. },
  19401. {
  19402. name: "Macro",
  19403. height: math.unit(300, "feet")
  19404. },
  19405. ]
  19406. ))
  19407. characterMakers.push(() => makeCharacter(
  19408. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19409. {
  19410. front: {
  19411. height: math.unit(5 + 9 / 12, "feet"),
  19412. weight: math.unit(145, "lb"),
  19413. name: "Front",
  19414. image: {
  19415. source: "./media/characters/dawn/front.svg",
  19416. extra: 2094 / 2016,
  19417. bottom: 0.025
  19418. }
  19419. },
  19420. back: {
  19421. height: math.unit(5 + 9 / 12, "feet"),
  19422. weight: math.unit(160, "lb"),
  19423. name: "Back",
  19424. image: {
  19425. source: "./media/characters/dawn/back.svg",
  19426. extra: 2112 / 2080,
  19427. bottom: 0.005
  19428. }
  19429. },
  19430. },
  19431. [
  19432. {
  19433. name: "Normal",
  19434. height: math.unit(6 + 7 / 12, "feet"),
  19435. default: true
  19436. },
  19437. ]
  19438. ))
  19439. characterMakers.push(() => makeCharacter(
  19440. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19441. {
  19442. anthro: {
  19443. height: math.unit(8 + 3 / 12, "feet"),
  19444. weight: math.unit(450, "lb"),
  19445. name: "Anthro",
  19446. image: {
  19447. source: "./media/characters/arador/anthro.svg",
  19448. extra: 1835 / 1718,
  19449. bottom: 0.025
  19450. }
  19451. },
  19452. feral: {
  19453. height: math.unit(4, "feet"),
  19454. weight: math.unit(200, "lb"),
  19455. name: "Feral",
  19456. image: {
  19457. source: "./media/characters/arador/feral.svg",
  19458. extra: 1683 / 1514,
  19459. bottom: 0.07
  19460. }
  19461. },
  19462. },
  19463. [
  19464. {
  19465. name: "Normal",
  19466. height: math.unit(8 + 3 / 12, "feet")
  19467. },
  19468. {
  19469. name: "Macro",
  19470. height: math.unit(82.5, "feet"),
  19471. default: true
  19472. },
  19473. ]
  19474. ))
  19475. characterMakers.push(() => makeCharacter(
  19476. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19477. {
  19478. front: {
  19479. height: math.unit(5 + 10 / 12, "feet"),
  19480. weight: math.unit(125, "lb"),
  19481. name: "Front",
  19482. image: {
  19483. source: "./media/characters/dharsi/front.svg",
  19484. extra: 716 / 630,
  19485. bottom: 0.035
  19486. }
  19487. },
  19488. },
  19489. [
  19490. {
  19491. name: "Nano",
  19492. height: math.unit(100, "nm")
  19493. },
  19494. {
  19495. name: "Micro",
  19496. height: math.unit(2, "inches")
  19497. },
  19498. {
  19499. name: "Normal",
  19500. height: math.unit(5 + 10 / 12, "feet"),
  19501. default: true
  19502. },
  19503. {
  19504. name: "Macro",
  19505. height: math.unit(1000, "feet")
  19506. },
  19507. {
  19508. name: "Megamacro",
  19509. height: math.unit(10, "miles")
  19510. },
  19511. {
  19512. name: "Gigamacro",
  19513. height: math.unit(3000, "miles")
  19514. },
  19515. {
  19516. name: "Teramacro",
  19517. height: math.unit(500000, "miles")
  19518. },
  19519. {
  19520. name: "Teramacro+",
  19521. height: math.unit(30, "galaxies")
  19522. },
  19523. ]
  19524. ))
  19525. characterMakers.push(() => makeCharacter(
  19526. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19527. {
  19528. front: {
  19529. height: math.unit(6, "feet"),
  19530. weight: math.unit(150, "lb"),
  19531. name: "Front",
  19532. image: {
  19533. source: "./media/characters/deathy/front.svg",
  19534. extra: 1552 / 1463,
  19535. bottom: 0.025
  19536. }
  19537. },
  19538. side: {
  19539. height: math.unit(6, "feet"),
  19540. weight: math.unit(150, "lb"),
  19541. name: "Side",
  19542. image: {
  19543. source: "./media/characters/deathy/side.svg",
  19544. extra: 1604 / 1455,
  19545. bottom: 0.025
  19546. }
  19547. },
  19548. back: {
  19549. height: math.unit(6, "feet"),
  19550. weight: math.unit(150, "lb"),
  19551. name: "Back",
  19552. image: {
  19553. source: "./media/characters/deathy/back.svg",
  19554. extra: 1580 / 1463,
  19555. bottom: 0.005
  19556. }
  19557. },
  19558. },
  19559. [
  19560. {
  19561. name: "Micro",
  19562. height: math.unit(5, "millimeters")
  19563. },
  19564. {
  19565. name: "Normal",
  19566. height: math.unit(6 + 5 / 12, "feet"),
  19567. default: true
  19568. },
  19569. ]
  19570. ))
  19571. characterMakers.push(() => makeCharacter(
  19572. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19573. {
  19574. front: {
  19575. height: math.unit(16, "feet"),
  19576. weight: math.unit(4000, "lb"),
  19577. name: "Front",
  19578. image: {
  19579. source: "./media/characters/juniper/front.svg",
  19580. bottom: 0.04
  19581. }
  19582. },
  19583. },
  19584. [
  19585. {
  19586. name: "Normal",
  19587. height: math.unit(16, "feet"),
  19588. default: true
  19589. },
  19590. ]
  19591. ))
  19592. characterMakers.push(() => makeCharacter(
  19593. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19594. {
  19595. front: {
  19596. height: math.unit(6, "feet"),
  19597. weight: math.unit(150, "lb"),
  19598. name: "Front",
  19599. image: {
  19600. source: "./media/characters/hipster/front.svg",
  19601. extra: 1312 / 1209,
  19602. bottom: 0.025
  19603. }
  19604. },
  19605. back: {
  19606. height: math.unit(6, "feet"),
  19607. weight: math.unit(150, "lb"),
  19608. name: "Back",
  19609. image: {
  19610. source: "./media/characters/hipster/back.svg",
  19611. extra: 1281 / 1196,
  19612. bottom: 0.01
  19613. }
  19614. },
  19615. },
  19616. [
  19617. {
  19618. name: "Micro",
  19619. height: math.unit(1, "mm")
  19620. },
  19621. {
  19622. name: "Normal",
  19623. height: math.unit(4, "inches"),
  19624. default: true
  19625. },
  19626. {
  19627. name: "Macro",
  19628. height: math.unit(500, "feet")
  19629. },
  19630. {
  19631. name: "Megamacro",
  19632. height: math.unit(1000, "miles")
  19633. },
  19634. ]
  19635. ))
  19636. characterMakers.push(() => makeCharacter(
  19637. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19638. {
  19639. front: {
  19640. height: math.unit(6, "feet"),
  19641. weight: math.unit(150, "lb"),
  19642. name: "Front",
  19643. image: {
  19644. source: "./media/characters/tendirmuldr/front.svg",
  19645. extra: 1878 / 1772,
  19646. bottom: 0.015
  19647. }
  19648. },
  19649. },
  19650. [
  19651. {
  19652. name: "Megamacro",
  19653. height: math.unit(1500, "miles"),
  19654. default: true
  19655. },
  19656. ]
  19657. ))
  19658. characterMakers.push(() => makeCharacter(
  19659. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19660. {
  19661. front: {
  19662. height: math.unit(14, "feet"),
  19663. weight: math.unit(12000, "lb"),
  19664. name: "Front",
  19665. image: {
  19666. source: "./media/characters/mort/front.svg",
  19667. extra: 365 / 318,
  19668. bottom: 0.01
  19669. }
  19670. },
  19671. side: {
  19672. height: math.unit(14, "feet"),
  19673. weight: math.unit(12000, "lb"),
  19674. name: "Side",
  19675. image: {
  19676. source: "./media/characters/mort/side.svg",
  19677. extra: 365 / 318,
  19678. bottom: 0.052
  19679. },
  19680. default: true
  19681. },
  19682. back: {
  19683. height: math.unit(14, "feet"),
  19684. weight: math.unit(12000, "lb"),
  19685. name: "Back",
  19686. image: {
  19687. source: "./media/characters/mort/back.svg",
  19688. extra: 371 / 332,
  19689. bottom: 0.18
  19690. }
  19691. },
  19692. },
  19693. [
  19694. {
  19695. name: "Normal",
  19696. height: math.unit(14, "feet"),
  19697. default: true
  19698. },
  19699. ]
  19700. ))
  19701. characterMakers.push(() => makeCharacter(
  19702. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19703. {
  19704. front: {
  19705. height: math.unit(8, "feet"),
  19706. weight: math.unit(1, "ton"),
  19707. name: "Front",
  19708. image: {
  19709. source: "./media/characters/lycoa/front.svg",
  19710. extra: 1875 / 1789,
  19711. bottom: 0.022
  19712. }
  19713. },
  19714. back: {
  19715. height: math.unit(8, "feet"),
  19716. weight: math.unit(1, "ton"),
  19717. name: "Back",
  19718. image: {
  19719. source: "./media/characters/lycoa/back.svg",
  19720. extra: 1835 / 1781,
  19721. bottom: 0.03
  19722. }
  19723. },
  19724. head: {
  19725. height: math.unit(2.1, "feet"),
  19726. name: "Head",
  19727. image: {
  19728. source: "./media/characters/lycoa/head.svg"
  19729. }
  19730. },
  19731. tailmaw: {
  19732. height: math.unit(1.9, "feet"),
  19733. name: "Tailmaw",
  19734. image: {
  19735. source: "./media/characters/lycoa/tailmaw.svg"
  19736. }
  19737. },
  19738. tentacles: {
  19739. height: math.unit(2.1, "feet"),
  19740. name: "Tentacles",
  19741. image: {
  19742. source: "./media/characters/lycoa/tentacles.svg"
  19743. }
  19744. },
  19745. dick: {
  19746. height: math.unit(1.73, "feet"),
  19747. name: "Dick",
  19748. image: {
  19749. source: "./media/characters/lycoa/dick.svg"
  19750. }
  19751. },
  19752. },
  19753. [
  19754. {
  19755. name: "Normal",
  19756. height: math.unit(8, "feet"),
  19757. default: true
  19758. },
  19759. {
  19760. name: "Macro",
  19761. height: math.unit(30, "feet")
  19762. },
  19763. ]
  19764. ))
  19765. characterMakers.push(() => makeCharacter(
  19766. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19767. {
  19768. front: {
  19769. height: math.unit(4 + 2 / 12, "feet"),
  19770. weight: math.unit(70, "lb"),
  19771. name: "Front",
  19772. image: {
  19773. source: "./media/characters/naldara/front.svg",
  19774. extra: 841 / 720,
  19775. bottom: 0.04
  19776. }
  19777. },
  19778. naga: {
  19779. height: math.unit(23, "feet"),
  19780. weight: math.unit(15000, "kg"),
  19781. name: "Naga",
  19782. image: {
  19783. source: "./media/characters/naldara/naga.svg",
  19784. extra: 3290 / 2959,
  19785. bottom: 124 / 3432
  19786. }
  19787. },
  19788. },
  19789. [
  19790. {
  19791. name: "Normal",
  19792. height: math.unit(4 + 2 / 12, "feet"),
  19793. default: true
  19794. },
  19795. ]
  19796. ))
  19797. characterMakers.push(() => makeCharacter(
  19798. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19799. {
  19800. front: {
  19801. height: math.unit(13 + 7 / 12, "feet"),
  19802. weight: math.unit(1500, "lb"),
  19803. name: "Front",
  19804. image: {
  19805. source: "./media/characters/briar/front.svg",
  19806. extra: 626 / 596,
  19807. bottom: 0.08
  19808. }
  19809. },
  19810. },
  19811. [
  19812. {
  19813. name: "Normal",
  19814. height: math.unit(13 + 7 / 12, "feet"),
  19815. default: true
  19816. },
  19817. ]
  19818. ))
  19819. characterMakers.push(() => makeCharacter(
  19820. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19821. {
  19822. side: {
  19823. height: math.unit(10, "feet"),
  19824. weight: math.unit(500, "lb"),
  19825. name: "Side",
  19826. image: {
  19827. source: "./media/characters/vanguard/side.svg",
  19828. extra: 502 / 425,
  19829. bottom: 0.087
  19830. }
  19831. },
  19832. },
  19833. [
  19834. {
  19835. name: "Normal",
  19836. height: math.unit(10, "feet"),
  19837. default: true
  19838. },
  19839. ]
  19840. ))
  19841. characterMakers.push(() => makeCharacter(
  19842. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19843. {
  19844. front: {
  19845. height: math.unit(7.5, "feet"),
  19846. weight: math.unit(2, "lb"),
  19847. name: "Front",
  19848. image: {
  19849. source: "./media/characters/artemis/front.svg",
  19850. extra: 1192 / 1075,
  19851. bottom: 0.07
  19852. }
  19853. },
  19854. frontNsfw: {
  19855. height: math.unit(7.5, "feet"),
  19856. weight: math.unit(2, "lb"),
  19857. name: "Front (NSFW)",
  19858. image: {
  19859. source: "./media/characters/artemis/front-nsfw.svg",
  19860. extra: 1192 / 1075,
  19861. bottom: 0.07
  19862. }
  19863. },
  19864. frontNsfwer: {
  19865. height: math.unit(7.5, "feet"),
  19866. weight: math.unit(2, "lb"),
  19867. name: "Front (NSFW-er)",
  19868. image: {
  19869. source: "./media/characters/artemis/front-nsfwer.svg",
  19870. extra: 1192 / 1075,
  19871. bottom: 0.07
  19872. }
  19873. },
  19874. side: {
  19875. height: math.unit(7.5, "feet"),
  19876. weight: math.unit(2, "lb"),
  19877. name: "Side",
  19878. image: {
  19879. source: "./media/characters/artemis/side.svg",
  19880. extra: 1192 / 1075,
  19881. bottom: 0.07
  19882. }
  19883. },
  19884. sideNsfw: {
  19885. height: math.unit(7.5, "feet"),
  19886. weight: math.unit(2, "lb"),
  19887. name: "Side (NSFW)",
  19888. image: {
  19889. source: "./media/characters/artemis/side-nsfw.svg",
  19890. extra: 1192 / 1075,
  19891. bottom: 0.07
  19892. }
  19893. },
  19894. sideNsfwer: {
  19895. height: math.unit(7.5, "feet"),
  19896. weight: math.unit(2, "lb"),
  19897. name: "Side (NSFW-er)",
  19898. image: {
  19899. source: "./media/characters/artemis/side-nsfwer.svg",
  19900. extra: 1192 / 1075,
  19901. bottom: 0.07
  19902. }
  19903. },
  19904. maw: {
  19905. height: math.unit(1.1, "feet"),
  19906. name: "Maw",
  19907. image: {
  19908. source: "./media/characters/artemis/maw.svg"
  19909. }
  19910. },
  19911. stomach: {
  19912. height: math.unit(0.95, "feet"),
  19913. name: "Stomach",
  19914. image: {
  19915. source: "./media/characters/artemis/stomach.svg"
  19916. }
  19917. },
  19918. dickCanine: {
  19919. height: math.unit(1, "feet"),
  19920. name: "Dick (Canine)",
  19921. image: {
  19922. source: "./media/characters/artemis/dick-canine.svg"
  19923. }
  19924. },
  19925. dickEquine: {
  19926. height: math.unit(0.85, "feet"),
  19927. name: "Dick (Equine)",
  19928. image: {
  19929. source: "./media/characters/artemis/dick-equine.svg"
  19930. }
  19931. },
  19932. dickExotic: {
  19933. height: math.unit(0.85, "feet"),
  19934. name: "Dick (Exotic)",
  19935. image: {
  19936. source: "./media/characters/artemis/dick-exotic.svg"
  19937. }
  19938. },
  19939. },
  19940. [
  19941. {
  19942. name: "Normal",
  19943. height: math.unit(7.5, "feet"),
  19944. default: true
  19945. },
  19946. {
  19947. name: "Enlarged",
  19948. height: math.unit(12, "feet")
  19949. },
  19950. ]
  19951. ))
  19952. characterMakers.push(() => makeCharacter(
  19953. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19954. {
  19955. front: {
  19956. height: math.unit(5 + 3 / 12, "feet"),
  19957. weight: math.unit(160, "lb"),
  19958. name: "Front",
  19959. image: {
  19960. source: "./media/characters/kira/front.svg",
  19961. extra: 906 / 786,
  19962. bottom: 0.01
  19963. }
  19964. },
  19965. back: {
  19966. height: math.unit(5 + 3 / 12, "feet"),
  19967. weight: math.unit(160, "lb"),
  19968. name: "Back",
  19969. image: {
  19970. source: "./media/characters/kira/back.svg",
  19971. extra: 882 / 757,
  19972. bottom: 0.005
  19973. }
  19974. },
  19975. frontDressed: {
  19976. height: math.unit(5 + 3 / 12, "feet"),
  19977. weight: math.unit(160, "lb"),
  19978. name: "Front (Dressed)",
  19979. image: {
  19980. source: "./media/characters/kira/front-dressed.svg",
  19981. extra: 906 / 786,
  19982. bottom: 0.01
  19983. }
  19984. },
  19985. beans: {
  19986. height: math.unit(0.92, "feet"),
  19987. name: "Beans",
  19988. image: {
  19989. source: "./media/characters/kira/beans.svg"
  19990. }
  19991. },
  19992. },
  19993. [
  19994. {
  19995. name: "Normal",
  19996. height: math.unit(5 + 3 / 12, "feet"),
  19997. default: true
  19998. },
  19999. ]
  20000. ))
  20001. characterMakers.push(() => makeCharacter(
  20002. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20003. {
  20004. front: {
  20005. height: math.unit(5 + 4 / 12, "feet"),
  20006. weight: math.unit(145, "lb"),
  20007. name: "Front",
  20008. image: {
  20009. source: "./media/characters/scramble/front.svg",
  20010. extra: 763 / 727,
  20011. bottom: 0.05
  20012. }
  20013. },
  20014. back: {
  20015. height: math.unit(5 + 4 / 12, "feet"),
  20016. weight: math.unit(145, "lb"),
  20017. name: "Back",
  20018. image: {
  20019. source: "./media/characters/scramble/back.svg",
  20020. extra: 826 / 737,
  20021. bottom: 0.002
  20022. }
  20023. },
  20024. },
  20025. [
  20026. {
  20027. name: "Normal",
  20028. height: math.unit(5 + 4 / 12, "feet"),
  20029. default: true
  20030. },
  20031. ]
  20032. ))
  20033. characterMakers.push(() => makeCharacter(
  20034. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20035. {
  20036. side: {
  20037. height: math.unit(6 + 2 / 12, "feet"),
  20038. weight: math.unit(190, "lb"),
  20039. name: "Side",
  20040. image: {
  20041. source: "./media/characters/biscuit/side.svg",
  20042. extra: 858 / 791,
  20043. bottom: 0.044
  20044. }
  20045. },
  20046. },
  20047. [
  20048. {
  20049. name: "Normal",
  20050. height: math.unit(6 + 2 / 12, "feet"),
  20051. default: true
  20052. },
  20053. ]
  20054. ))
  20055. characterMakers.push(() => makeCharacter(
  20056. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20057. {
  20058. front: {
  20059. height: math.unit(5 + 2 / 12, "feet"),
  20060. weight: math.unit(120, "lb"),
  20061. name: "Front",
  20062. image: {
  20063. source: "./media/characters/poffin/front.svg",
  20064. extra: 786 / 680,
  20065. bottom: 0.005
  20066. }
  20067. },
  20068. },
  20069. [
  20070. {
  20071. name: "Normal",
  20072. height: math.unit(5 + 2 / 12, "feet"),
  20073. default: true
  20074. },
  20075. ]
  20076. ))
  20077. characterMakers.push(() => makeCharacter(
  20078. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20079. {
  20080. front: {
  20081. height: math.unit(6 + 3 / 12, "feet"),
  20082. weight: math.unit(519, "lb"),
  20083. name: "Front",
  20084. image: {
  20085. source: "./media/characters/dhari/front.svg",
  20086. extra: 1048 / 946,
  20087. bottom: 0.015
  20088. }
  20089. },
  20090. back: {
  20091. height: math.unit(6 + 3 / 12, "feet"),
  20092. weight: math.unit(519, "lb"),
  20093. name: "Back",
  20094. image: {
  20095. source: "./media/characters/dhari/back.svg",
  20096. extra: 1048 / 931,
  20097. bottom: 0.005
  20098. }
  20099. },
  20100. frontDressed: {
  20101. height: math.unit(6 + 3 / 12, "feet"),
  20102. weight: math.unit(519, "lb"),
  20103. name: "Front (Dressed)",
  20104. image: {
  20105. source: "./media/characters/dhari/front-dressed.svg",
  20106. extra: 1713 / 1546,
  20107. bottom: 0.02
  20108. }
  20109. },
  20110. backDressed: {
  20111. height: math.unit(6 + 3 / 12, "feet"),
  20112. weight: math.unit(519, "lb"),
  20113. name: "Back (Dressed)",
  20114. image: {
  20115. source: "./media/characters/dhari/back-dressed.svg",
  20116. extra: 1699 / 1537,
  20117. bottom: 0.01
  20118. }
  20119. },
  20120. maw: {
  20121. height: math.unit(0.95, "feet"),
  20122. name: "Maw",
  20123. image: {
  20124. source: "./media/characters/dhari/maw.svg"
  20125. }
  20126. },
  20127. wereFront: {
  20128. height: math.unit(12 + 8 / 12, "feet"),
  20129. weight: math.unit(4000, "lb"),
  20130. name: "Front (Were)",
  20131. image: {
  20132. source: "./media/characters/dhari/were-front.svg",
  20133. extra: 1065 / 969,
  20134. bottom: 0.015
  20135. }
  20136. },
  20137. wereBack: {
  20138. height: math.unit(12 + 8 / 12, "feet"),
  20139. weight: math.unit(4000, "lb"),
  20140. name: "Back (Were)",
  20141. image: {
  20142. source: "./media/characters/dhari/were-back.svg",
  20143. extra: 1065 / 969,
  20144. bottom: 0.012
  20145. }
  20146. },
  20147. wereMaw: {
  20148. height: math.unit(0.625, "meters"),
  20149. name: "Maw (Were)",
  20150. image: {
  20151. source: "./media/characters/dhari/were-maw.svg"
  20152. }
  20153. },
  20154. },
  20155. [
  20156. {
  20157. name: "Normal",
  20158. height: math.unit(6 + 3 / 12, "feet"),
  20159. default: true
  20160. },
  20161. ]
  20162. ))
  20163. characterMakers.push(() => makeCharacter(
  20164. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20165. {
  20166. anthro: {
  20167. height: math.unit(5 + 7 / 12, "feet"),
  20168. weight: math.unit(175, "lb"),
  20169. name: "Anthro",
  20170. image: {
  20171. source: "./media/characters/rena-dyne/anthro.svg",
  20172. extra: 1849 / 1785,
  20173. bottom: 0.005
  20174. }
  20175. },
  20176. taur: {
  20177. height: math.unit(15 + 6 / 12, "feet"),
  20178. weight: math.unit(8000, "lb"),
  20179. name: "Taur",
  20180. image: {
  20181. source: "./media/characters/rena-dyne/taur.svg",
  20182. extra: 2315 / 2234,
  20183. bottom: 0.033
  20184. }
  20185. },
  20186. },
  20187. [
  20188. {
  20189. name: "Normal",
  20190. height: math.unit(5 + 7 / 12, "feet"),
  20191. default: true
  20192. },
  20193. ]
  20194. ))
  20195. characterMakers.push(() => makeCharacter(
  20196. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20197. {
  20198. front: {
  20199. height: math.unit(8, "feet"),
  20200. weight: math.unit(600, "lb"),
  20201. name: "Front",
  20202. image: {
  20203. source: "./media/characters/weremeep/front.svg",
  20204. extra: 967 / 862,
  20205. bottom: 0.01
  20206. }
  20207. },
  20208. },
  20209. [
  20210. {
  20211. name: "Normal",
  20212. height: math.unit(8, "feet"),
  20213. default: true
  20214. },
  20215. {
  20216. name: "Lorg",
  20217. height: math.unit(12, "feet")
  20218. },
  20219. {
  20220. name: "Oh Lawd She Comin'",
  20221. height: math.unit(20, "feet")
  20222. },
  20223. ]
  20224. ))
  20225. characterMakers.push(() => makeCharacter(
  20226. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20227. {
  20228. front: {
  20229. height: math.unit(4, "feet"),
  20230. weight: math.unit(90, "lb"),
  20231. name: "Front",
  20232. image: {
  20233. source: "./media/characters/reza/front.svg",
  20234. extra: 1183 / 1111,
  20235. bottom: 0.017
  20236. }
  20237. },
  20238. back: {
  20239. height: math.unit(4, "feet"),
  20240. weight: math.unit(90, "lb"),
  20241. name: "Back",
  20242. image: {
  20243. source: "./media/characters/reza/back.svg",
  20244. extra: 1183 / 1111,
  20245. bottom: 0.01
  20246. }
  20247. },
  20248. drake: {
  20249. height: math.unit(30, "feet"),
  20250. weight: math.unit(246960, "lb"),
  20251. name: "Drake",
  20252. image: {
  20253. source: "./media/characters/reza/drake.svg",
  20254. extra: 2350 / 2024,
  20255. bottom: 60.7 / 2403
  20256. }
  20257. },
  20258. },
  20259. [
  20260. {
  20261. name: "Normal",
  20262. height: math.unit(4, "feet"),
  20263. default: true
  20264. },
  20265. ]
  20266. ))
  20267. characterMakers.push(() => makeCharacter(
  20268. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20269. {
  20270. side: {
  20271. height: math.unit(15, "feet"),
  20272. weight: math.unit(14, "tons"),
  20273. name: "Side",
  20274. image: {
  20275. source: "./media/characters/athea/side.svg",
  20276. extra: 960 / 540,
  20277. bottom: 0.003
  20278. }
  20279. },
  20280. sitting: {
  20281. height: math.unit(6 * 2.85, "feet"),
  20282. weight: math.unit(14, "tons"),
  20283. name: "Sitting",
  20284. image: {
  20285. source: "./media/characters/athea/sitting.svg",
  20286. extra: 621 / 581,
  20287. bottom: 0.075
  20288. }
  20289. },
  20290. maw: {
  20291. height: math.unit(7.59498031496063, "feet"),
  20292. name: "Maw",
  20293. image: {
  20294. source: "./media/characters/athea/maw.svg"
  20295. }
  20296. },
  20297. },
  20298. [
  20299. {
  20300. name: "Lap Cat",
  20301. height: math.unit(2.5, "feet")
  20302. },
  20303. {
  20304. name: "Minimacro",
  20305. height: math.unit(15, "feet"),
  20306. default: true
  20307. },
  20308. {
  20309. name: "Macro",
  20310. height: math.unit(120, "feet")
  20311. },
  20312. {
  20313. name: "Macro+",
  20314. height: math.unit(640, "feet")
  20315. },
  20316. {
  20317. name: "Colossus",
  20318. height: math.unit(2.2, "miles")
  20319. },
  20320. ]
  20321. ))
  20322. characterMakers.push(() => makeCharacter(
  20323. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20324. {
  20325. front: {
  20326. height: math.unit(8 + 8 / 12, "feet"),
  20327. weight: math.unit(130, "kg"),
  20328. name: "Front",
  20329. image: {
  20330. source: "./media/characters/seroko/front.svg",
  20331. extra: 1385 / 1280,
  20332. bottom: 0.025
  20333. }
  20334. },
  20335. back: {
  20336. height: math.unit(8 + 8 / 12, "feet"),
  20337. weight: math.unit(130, "kg"),
  20338. name: "Back",
  20339. image: {
  20340. source: "./media/characters/seroko/back.svg",
  20341. extra: 1369 / 1238,
  20342. bottom: 0.018
  20343. }
  20344. },
  20345. frontDressed: {
  20346. height: math.unit(8 + 8 / 12, "feet"),
  20347. weight: math.unit(130, "kg"),
  20348. name: "Front (Dressed)",
  20349. image: {
  20350. source: "./media/characters/seroko/front-dressed.svg",
  20351. extra: 1366 / 1275,
  20352. bottom: 0.03
  20353. }
  20354. },
  20355. },
  20356. [
  20357. {
  20358. name: "Normal",
  20359. height: math.unit(8 + 8 / 12, "feet"),
  20360. default: true
  20361. },
  20362. ]
  20363. ))
  20364. characterMakers.push(() => makeCharacter(
  20365. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20366. {
  20367. front: {
  20368. height: math.unit(5.5, "feet"),
  20369. weight: math.unit(160, "lb"),
  20370. name: "Front",
  20371. image: {
  20372. source: "./media/characters/quatzi/front.svg",
  20373. extra: 2346 / 2242,
  20374. bottom: 0.015
  20375. }
  20376. },
  20377. },
  20378. [
  20379. {
  20380. name: "Normal",
  20381. height: math.unit(5.5, "feet"),
  20382. default: true
  20383. },
  20384. {
  20385. name: "Big",
  20386. height: math.unit(7.7, "feet")
  20387. },
  20388. ]
  20389. ))
  20390. characterMakers.push(() => makeCharacter(
  20391. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20392. {
  20393. front: {
  20394. height: math.unit(5 + 11 / 12, "feet"),
  20395. weight: math.unit(180, "lb"),
  20396. name: "Front",
  20397. image: {
  20398. source: "./media/characters/sen/front.svg",
  20399. extra: 1321 / 1254,
  20400. bottom: 0.015
  20401. }
  20402. },
  20403. side: {
  20404. height: math.unit(5 + 11 / 12, "feet"),
  20405. weight: math.unit(180, "lb"),
  20406. name: "Side",
  20407. image: {
  20408. source: "./media/characters/sen/side.svg",
  20409. extra: 1321 / 1254,
  20410. bottom: 0.007
  20411. }
  20412. },
  20413. back: {
  20414. height: math.unit(5 + 11 / 12, "feet"),
  20415. weight: math.unit(180, "lb"),
  20416. name: "Back",
  20417. image: {
  20418. source: "./media/characters/sen/back.svg",
  20419. extra: 1321 / 1254
  20420. }
  20421. },
  20422. },
  20423. [
  20424. {
  20425. name: "Normal",
  20426. height: math.unit(5 + 11 / 12, "feet"),
  20427. default: true
  20428. },
  20429. ]
  20430. ))
  20431. characterMakers.push(() => makeCharacter(
  20432. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20433. {
  20434. front: {
  20435. height: math.unit(166.6, "cm"),
  20436. weight: math.unit(66.6, "kg"),
  20437. name: "Front",
  20438. image: {
  20439. source: "./media/characters/fruity/front.svg",
  20440. extra: 1510 / 1386,
  20441. bottom: 0.04
  20442. }
  20443. },
  20444. back: {
  20445. height: math.unit(166.6, "cm"),
  20446. weight: math.unit(66.6, "lb"),
  20447. name: "Back",
  20448. image: {
  20449. source: "./media/characters/fruity/back.svg",
  20450. extra: 1563 / 1435,
  20451. bottom: 0.005
  20452. }
  20453. },
  20454. },
  20455. [
  20456. {
  20457. name: "Normal",
  20458. height: math.unit(166.6, "cm"),
  20459. default: true
  20460. },
  20461. {
  20462. name: "Demonic",
  20463. height: math.unit(166.6, "feet")
  20464. },
  20465. ]
  20466. ))
  20467. characterMakers.push(() => makeCharacter(
  20468. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20469. {
  20470. side: {
  20471. height: math.unit(10, "feet"),
  20472. weight: math.unit(500, "lb"),
  20473. name: "Side",
  20474. image: {
  20475. source: "./media/characters/zost/side.svg",
  20476. extra: 966 / 880,
  20477. bottom: 0.075
  20478. }
  20479. },
  20480. mawFront: {
  20481. height: math.unit(1.08, "meters"),
  20482. name: "Maw (Front)",
  20483. image: {
  20484. source: "./media/characters/zost/maw-front.svg"
  20485. }
  20486. },
  20487. mawSide: {
  20488. height: math.unit(2.66, "feet"),
  20489. name: "Maw (Side)",
  20490. image: {
  20491. source: "./media/characters/zost/maw-side.svg"
  20492. }
  20493. },
  20494. },
  20495. [
  20496. {
  20497. name: "Normal",
  20498. height: math.unit(10, "feet"),
  20499. default: true
  20500. },
  20501. ]
  20502. ))
  20503. characterMakers.push(() => makeCharacter(
  20504. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20505. {
  20506. front: {
  20507. height: math.unit(5 + 4 / 12, "feet"),
  20508. weight: math.unit(120, "lb"),
  20509. name: "Front",
  20510. image: {
  20511. source: "./media/characters/luci/front.svg",
  20512. extra: 1985 / 1884,
  20513. bottom: 0.04
  20514. }
  20515. },
  20516. back: {
  20517. height: math.unit(5 + 4 / 12, "feet"),
  20518. weight: math.unit(120, "lb"),
  20519. name: "Back",
  20520. image: {
  20521. source: "./media/characters/luci/back.svg",
  20522. extra: 1892 / 1791,
  20523. bottom: 0.002
  20524. }
  20525. },
  20526. },
  20527. [
  20528. {
  20529. name: "Normal",
  20530. height: math.unit(5 + 4 / 12, "feet"),
  20531. default: true
  20532. },
  20533. ]
  20534. ))
  20535. characterMakers.push(() => makeCharacter(
  20536. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20537. {
  20538. front: {
  20539. height: math.unit(1500, "feet"),
  20540. weight: math.unit(3.8e6, "tons"),
  20541. name: "Front",
  20542. image: {
  20543. source: "./media/characters/2th/front.svg",
  20544. extra: 3489 / 3350,
  20545. bottom: 0.1
  20546. }
  20547. },
  20548. foot: {
  20549. height: math.unit(461, "feet"),
  20550. name: "Foot",
  20551. image: {
  20552. source: "./media/characters/2th/foot.svg"
  20553. }
  20554. },
  20555. },
  20556. [
  20557. {
  20558. name: "\"Micro\"",
  20559. height: math.unit(15 + 7 / 12, "feet")
  20560. },
  20561. {
  20562. name: "Normal",
  20563. height: math.unit(1500, "feet"),
  20564. default: true
  20565. },
  20566. {
  20567. name: "Macro",
  20568. height: math.unit(5000, "feet")
  20569. },
  20570. {
  20571. name: "Megamacro",
  20572. height: math.unit(15, "miles")
  20573. },
  20574. {
  20575. name: "Gigamacro",
  20576. height: math.unit(4000, "miles")
  20577. },
  20578. {
  20579. name: "Galactic",
  20580. height: math.unit(50, "AU")
  20581. },
  20582. ]
  20583. ))
  20584. characterMakers.push(() => makeCharacter(
  20585. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20586. {
  20587. front: {
  20588. height: math.unit(5 + 6 / 12, "feet"),
  20589. weight: math.unit(220, "lb"),
  20590. name: "Front",
  20591. image: {
  20592. source: "./media/characters/amethyst/front.svg",
  20593. extra: 2078 / 2040,
  20594. bottom: 0.045
  20595. }
  20596. },
  20597. back: {
  20598. height: math.unit(5 + 6 / 12, "feet"),
  20599. weight: math.unit(220, "lb"),
  20600. name: "Back",
  20601. image: {
  20602. source: "./media/characters/amethyst/back.svg",
  20603. extra: 2021 / 1989,
  20604. bottom: 0.02
  20605. }
  20606. },
  20607. },
  20608. [
  20609. {
  20610. name: "Normal",
  20611. height: math.unit(5 + 6 / 12, "feet"),
  20612. default: true
  20613. },
  20614. ]
  20615. ))
  20616. characterMakers.push(() => makeCharacter(
  20617. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20618. {
  20619. front: {
  20620. height: math.unit(4 + 11 / 12, "feet"),
  20621. weight: math.unit(120, "lb"),
  20622. name: "Front",
  20623. image: {
  20624. source: "./media/characters/yumi-akiyama/front.svg",
  20625. extra: 1327 / 1235,
  20626. bottom: 0.02
  20627. }
  20628. },
  20629. back: {
  20630. height: math.unit(4 + 11 / 12, "feet"),
  20631. weight: math.unit(120, "lb"),
  20632. name: "Back",
  20633. image: {
  20634. source: "./media/characters/yumi-akiyama/back.svg",
  20635. extra: 1287 / 1245,
  20636. bottom: 0.002
  20637. }
  20638. },
  20639. },
  20640. [
  20641. {
  20642. name: "Galactic",
  20643. height: math.unit(50, "galaxies"),
  20644. default: true
  20645. },
  20646. {
  20647. name: "Universal",
  20648. height: math.unit(100, "universes")
  20649. },
  20650. ]
  20651. ))
  20652. characterMakers.push(() => makeCharacter(
  20653. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20654. {
  20655. front: {
  20656. height: math.unit(8, "feet"),
  20657. weight: math.unit(500, "lb"),
  20658. name: "Front",
  20659. image: {
  20660. source: "./media/characters/rifter-yrmori/front.svg",
  20661. extra: 1180 / 1125,
  20662. bottom: 0.02
  20663. }
  20664. },
  20665. back: {
  20666. height: math.unit(8, "feet"),
  20667. weight: math.unit(500, "lb"),
  20668. name: "Back",
  20669. image: {
  20670. source: "./media/characters/rifter-yrmori/back.svg",
  20671. extra: 1190 / 1145,
  20672. bottom: 0.001
  20673. }
  20674. },
  20675. wings: {
  20676. height: math.unit(7.75, "feet"),
  20677. weight: math.unit(500, "lb"),
  20678. name: "Wings",
  20679. image: {
  20680. source: "./media/characters/rifter-yrmori/wings.svg",
  20681. extra: 1357 / 1285
  20682. }
  20683. },
  20684. maw: {
  20685. height: math.unit(0.8, "feet"),
  20686. name: "Maw",
  20687. image: {
  20688. source: "./media/characters/rifter-yrmori/maw.svg"
  20689. }
  20690. },
  20691. mawfront: {
  20692. height: math.unit(1.45, "feet"),
  20693. name: "Maw (Front)",
  20694. image: {
  20695. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20696. }
  20697. },
  20698. },
  20699. [
  20700. {
  20701. name: "Normal",
  20702. height: math.unit(8, "feet"),
  20703. default: true
  20704. },
  20705. {
  20706. name: "Macro",
  20707. height: math.unit(42, "meters")
  20708. },
  20709. ]
  20710. ))
  20711. characterMakers.push(() => makeCharacter(
  20712. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20713. {
  20714. were: {
  20715. height: math.unit(25 + 6 / 12, "feet"),
  20716. weight: math.unit(10000, "lb"),
  20717. name: "Were",
  20718. image: {
  20719. source: "./media/characters/tahajin/were.svg",
  20720. extra: 801 / 770,
  20721. bottom: 0.042
  20722. }
  20723. },
  20724. aquatic: {
  20725. height: math.unit(6 + 4 / 12, "feet"),
  20726. weight: math.unit(160, "lb"),
  20727. name: "Aquatic",
  20728. image: {
  20729. source: "./media/characters/tahajin/aquatic.svg",
  20730. extra: 572 / 542,
  20731. bottom: 0.04
  20732. }
  20733. },
  20734. chow: {
  20735. height: math.unit(8 + 11 / 12, "feet"),
  20736. weight: math.unit(450, "lb"),
  20737. name: "Chow",
  20738. image: {
  20739. source: "./media/characters/tahajin/chow.svg",
  20740. extra: 660 / 640,
  20741. bottom: 0.015
  20742. }
  20743. },
  20744. demiNaga: {
  20745. height: math.unit(6 + 8 / 12, "feet"),
  20746. weight: math.unit(300, "lb"),
  20747. name: "Demi Naga",
  20748. image: {
  20749. source: "./media/characters/tahajin/demi-naga.svg",
  20750. extra: 643 / 615,
  20751. bottom: 0.1
  20752. }
  20753. },
  20754. data: {
  20755. height: math.unit(5, "inches"),
  20756. weight: math.unit(0.1, "lb"),
  20757. name: "Data",
  20758. image: {
  20759. source: "./media/characters/tahajin/data.svg"
  20760. }
  20761. },
  20762. fluu: {
  20763. height: math.unit(5 + 7 / 12, "feet"),
  20764. weight: math.unit(140, "lb"),
  20765. name: "Fluu",
  20766. image: {
  20767. source: "./media/characters/tahajin/fluu.svg",
  20768. extra: 628 / 592,
  20769. bottom: 0.02
  20770. }
  20771. },
  20772. starWarrior: {
  20773. height: math.unit(4 + 5 / 12, "feet"),
  20774. weight: math.unit(50, "lb"),
  20775. name: "Star Warrior",
  20776. image: {
  20777. source: "./media/characters/tahajin/star-warrior.svg"
  20778. }
  20779. },
  20780. },
  20781. [
  20782. {
  20783. name: "Normal",
  20784. height: math.unit(25 + 6 / 12, "feet"),
  20785. default: true
  20786. },
  20787. ]
  20788. ))
  20789. characterMakers.push(() => makeCharacter(
  20790. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20791. {
  20792. front: {
  20793. height: math.unit(8, "feet"),
  20794. weight: math.unit(350, "lb"),
  20795. name: "Front",
  20796. image: {
  20797. source: "./media/characters/gabira/front.svg",
  20798. extra: 608 / 580,
  20799. bottom: 0.03
  20800. }
  20801. },
  20802. back: {
  20803. height: math.unit(8, "feet"),
  20804. weight: math.unit(350, "lb"),
  20805. name: "Back",
  20806. image: {
  20807. source: "./media/characters/gabira/back.svg",
  20808. extra: 608 / 580,
  20809. bottom: 0.03
  20810. }
  20811. },
  20812. },
  20813. [
  20814. {
  20815. name: "Normal",
  20816. height: math.unit(8, "feet"),
  20817. default: true
  20818. },
  20819. ]
  20820. ))
  20821. characterMakers.push(() => makeCharacter(
  20822. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20823. {
  20824. front: {
  20825. height: math.unit(5 + 3 / 12, "feet"),
  20826. weight: math.unit(137, "lb"),
  20827. name: "Front",
  20828. image: {
  20829. source: "./media/characters/sasha-katraine/front.svg",
  20830. bottom: 0.045
  20831. }
  20832. },
  20833. },
  20834. [
  20835. {
  20836. name: "Micro",
  20837. height: math.unit(5, "inches")
  20838. },
  20839. {
  20840. name: "Normal",
  20841. height: math.unit(5 + 3 / 12, "feet"),
  20842. default: true
  20843. },
  20844. ]
  20845. ))
  20846. characterMakers.push(() => makeCharacter(
  20847. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20848. {
  20849. side: {
  20850. height: math.unit(4, "inches"),
  20851. weight: math.unit(200, "grams"),
  20852. name: "Side",
  20853. image: {
  20854. source: "./media/characters/der/side.svg",
  20855. extra: 719 / 400,
  20856. bottom: 30.6 / 749.9187
  20857. }
  20858. },
  20859. },
  20860. [
  20861. {
  20862. name: "Micro",
  20863. height: math.unit(4, "inches"),
  20864. default: true
  20865. },
  20866. ]
  20867. ))
  20868. characterMakers.push(() => makeCharacter(
  20869. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20870. {
  20871. side: {
  20872. height: math.unit(30, "meters"),
  20873. weight: math.unit(700, "tonnes"),
  20874. name: "Side",
  20875. image: {
  20876. source: "./media/characters/fixerdragon/side.svg",
  20877. extra: (1293.0514 - 116.03) / 1106.86,
  20878. bottom: 116.03 / 1293.0514
  20879. }
  20880. },
  20881. },
  20882. [
  20883. {
  20884. name: "Planck",
  20885. height: math.unit(1.6e-35, "meters")
  20886. },
  20887. {
  20888. name: "Micro",
  20889. height: math.unit(0.4, "meters")
  20890. },
  20891. {
  20892. name: "Normal",
  20893. height: math.unit(30, "meters"),
  20894. default: true
  20895. },
  20896. {
  20897. name: "Megamacro",
  20898. height: math.unit(1.2, "megameters")
  20899. },
  20900. {
  20901. name: "Teramacro",
  20902. height: math.unit(130, "terameters")
  20903. },
  20904. {
  20905. name: "Yottamacro",
  20906. height: math.unit(6200, "yottameters")
  20907. },
  20908. ]
  20909. ));
  20910. characterMakers.push(() => makeCharacter(
  20911. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20912. {
  20913. front: {
  20914. height: math.unit(8, "feet"),
  20915. weight: math.unit(250, "lb"),
  20916. name: "Front",
  20917. image: {
  20918. source: "./media/characters/kite/front.svg",
  20919. extra: 2796 / 2659,
  20920. bottom: 0.002
  20921. }
  20922. },
  20923. },
  20924. [
  20925. {
  20926. name: "Normal",
  20927. height: math.unit(8, "feet"),
  20928. default: true
  20929. },
  20930. {
  20931. name: "Macro",
  20932. height: math.unit(360, "feet")
  20933. },
  20934. {
  20935. name: "Megamacro",
  20936. height: math.unit(1500, "feet")
  20937. },
  20938. ]
  20939. ))
  20940. characterMakers.push(() => makeCharacter(
  20941. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20942. {
  20943. front: {
  20944. height: math.unit(5 + 10 / 12, "feet"),
  20945. weight: math.unit(150, "lb"),
  20946. name: "Front",
  20947. image: {
  20948. source: "./media/characters/poojawa-vynar/front.svg",
  20949. extra: (1506.1547 - 55) / 1356.6,
  20950. bottom: 55 / 1506.1547
  20951. }
  20952. },
  20953. frontTailless: {
  20954. height: math.unit(5 + 10 / 12, "feet"),
  20955. weight: math.unit(150, "lb"),
  20956. name: "Front (Tailless)",
  20957. image: {
  20958. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20959. extra: (1506.1547 - 55) / 1356.6,
  20960. bottom: 55 / 1506.1547
  20961. }
  20962. },
  20963. },
  20964. [
  20965. {
  20966. name: "Normal",
  20967. height: math.unit(5 + 10 / 12, "feet"),
  20968. default: true
  20969. },
  20970. ]
  20971. ))
  20972. characterMakers.push(() => makeCharacter(
  20973. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20974. {
  20975. front: {
  20976. height: math.unit(293, "meters"),
  20977. weight: math.unit(70400, "tons"),
  20978. name: "Front",
  20979. image: {
  20980. source: "./media/characters/violette/front.svg",
  20981. extra: 1227 / 1180,
  20982. bottom: 0.005
  20983. }
  20984. },
  20985. back: {
  20986. height: math.unit(293, "meters"),
  20987. weight: math.unit(70400, "tons"),
  20988. name: "Back",
  20989. image: {
  20990. source: "./media/characters/violette/back.svg",
  20991. extra: 1227 / 1180,
  20992. bottom: 0.005
  20993. }
  20994. },
  20995. },
  20996. [
  20997. {
  20998. name: "Macro",
  20999. height: math.unit(293, "meters"),
  21000. default: true
  21001. },
  21002. ]
  21003. ))
  21004. characterMakers.push(() => makeCharacter(
  21005. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21006. {
  21007. front: {
  21008. height: math.unit(1050, "feet"),
  21009. weight: math.unit(200000, "tons"),
  21010. name: "Front",
  21011. image: {
  21012. source: "./media/characters/alessandra/front.svg",
  21013. extra: 960 / 912,
  21014. bottom: 0.06
  21015. }
  21016. },
  21017. },
  21018. [
  21019. {
  21020. name: "Macro",
  21021. height: math.unit(1050, "feet")
  21022. },
  21023. {
  21024. name: "Macro+",
  21025. height: math.unit(900, "meters"),
  21026. default: true
  21027. },
  21028. ]
  21029. ))
  21030. characterMakers.push(() => makeCharacter(
  21031. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21032. {
  21033. front: {
  21034. height: math.unit(5, "feet"),
  21035. weight: math.unit(187, "lb"),
  21036. name: "Front",
  21037. image: {
  21038. source: "./media/characters/person/front.svg",
  21039. extra: 3087 / 2945,
  21040. bottom: 91 / 3181
  21041. }
  21042. },
  21043. },
  21044. [
  21045. {
  21046. name: "Micro",
  21047. height: math.unit(3, "inches")
  21048. },
  21049. {
  21050. name: "Normal",
  21051. height: math.unit(5, "feet"),
  21052. default: true
  21053. },
  21054. {
  21055. name: "Macro",
  21056. height: math.unit(90, "feet")
  21057. },
  21058. {
  21059. name: "Max Size",
  21060. height: math.unit(280, "feet")
  21061. },
  21062. ]
  21063. ))
  21064. characterMakers.push(() => makeCharacter(
  21065. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21066. {
  21067. front: {
  21068. height: math.unit(4.5, "meters"),
  21069. weight: math.unit(3200, "lb"),
  21070. name: "Front",
  21071. image: {
  21072. source: "./media/characters/ty/front.svg",
  21073. extra: 1038 / 960,
  21074. bottom: 31.156 / 1068
  21075. }
  21076. },
  21077. back: {
  21078. height: math.unit(4.5, "meters"),
  21079. weight: math.unit(3200, "lb"),
  21080. name: "Back",
  21081. image: {
  21082. source: "./media/characters/ty/back.svg",
  21083. extra: 1044 / 966,
  21084. bottom: 7.48 / 1049
  21085. }
  21086. },
  21087. },
  21088. [
  21089. {
  21090. name: "Normal",
  21091. height: math.unit(4.5, "meters"),
  21092. default: true
  21093. },
  21094. ]
  21095. ))
  21096. characterMakers.push(() => makeCharacter(
  21097. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21098. {
  21099. front: {
  21100. height: math.unit(5 + 4 / 12, "feet"),
  21101. weight: math.unit(115, "lb"),
  21102. name: "Front",
  21103. image: {
  21104. source: "./media/characters/rocky/front.svg",
  21105. extra: 1012 / 975,
  21106. bottom: 54 / 1066
  21107. }
  21108. },
  21109. },
  21110. [
  21111. {
  21112. name: "Normal",
  21113. height: math.unit(5 + 4 / 12, "feet"),
  21114. default: true
  21115. },
  21116. ]
  21117. ))
  21118. characterMakers.push(() => makeCharacter(
  21119. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21120. {
  21121. upright: {
  21122. height: math.unit(6, "meters"),
  21123. weight: math.unit(4000, "kg"),
  21124. name: "Upright",
  21125. image: {
  21126. source: "./media/characters/ruin/upright.svg",
  21127. extra: 668 / 661,
  21128. bottom: 42 / 799.8396
  21129. }
  21130. },
  21131. },
  21132. [
  21133. {
  21134. name: "Normal",
  21135. height: math.unit(6, "meters"),
  21136. default: true
  21137. },
  21138. ]
  21139. ))
  21140. characterMakers.push(() => makeCharacter(
  21141. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21142. {
  21143. front: {
  21144. height: math.unit(5, "feet"),
  21145. weight: math.unit(106, "lb"),
  21146. name: "Front",
  21147. image: {
  21148. source: "./media/characters/robin/front.svg",
  21149. extra: 862 / 799,
  21150. bottom: 42.4 / 914.8856
  21151. }
  21152. },
  21153. },
  21154. [
  21155. {
  21156. name: "Normal",
  21157. height: math.unit(5, "feet"),
  21158. default: true
  21159. },
  21160. ]
  21161. ))
  21162. characterMakers.push(() => makeCharacter(
  21163. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21164. {
  21165. side: {
  21166. height: math.unit(3, "feet"),
  21167. weight: math.unit(225, "lb"),
  21168. name: "Side",
  21169. image: {
  21170. source: "./media/characters/saian/side.svg",
  21171. extra: 566 / 356,
  21172. bottom: 79.7 / 643
  21173. }
  21174. },
  21175. maw: {
  21176. height: math.unit(2.85, "feet"),
  21177. name: "Maw",
  21178. image: {
  21179. source: "./media/characters/saian/maw.svg"
  21180. }
  21181. },
  21182. },
  21183. [
  21184. {
  21185. name: "Normal",
  21186. height: math.unit(3, "feet"),
  21187. default: true
  21188. },
  21189. ]
  21190. ))
  21191. characterMakers.push(() => makeCharacter(
  21192. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21193. {
  21194. side: {
  21195. height: math.unit(8, "feet"),
  21196. weight: math.unit(300, "lb"),
  21197. name: "Side",
  21198. image: {
  21199. source: "./media/characters/equus-silvermane/side.svg",
  21200. extra: 2176 / 2050,
  21201. bottom: 65.7 / 2245
  21202. }
  21203. },
  21204. front: {
  21205. height: math.unit(8, "feet"),
  21206. weight: math.unit(300, "lb"),
  21207. name: "Front",
  21208. image: {
  21209. source: "./media/characters/equus-silvermane/front.svg",
  21210. extra: 4633 / 4400,
  21211. bottom: 71.3 / 4706.915
  21212. }
  21213. },
  21214. sideStepping: {
  21215. height: math.unit(8, "feet"),
  21216. weight: math.unit(300, "lb"),
  21217. name: "Side (Stepping)",
  21218. image: {
  21219. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21220. extra: 1968 / 1860,
  21221. bottom: 16.4 / 1989
  21222. }
  21223. },
  21224. },
  21225. [
  21226. {
  21227. name: "Normal",
  21228. height: math.unit(8, "feet")
  21229. },
  21230. {
  21231. name: "Minimacro",
  21232. height: math.unit(75, "feet"),
  21233. default: true
  21234. },
  21235. {
  21236. name: "Macro",
  21237. height: math.unit(150, "feet")
  21238. },
  21239. {
  21240. name: "Macro+",
  21241. height: math.unit(1000, "feet")
  21242. },
  21243. {
  21244. name: "Megamacro",
  21245. height: math.unit(1, "mile")
  21246. },
  21247. ]
  21248. ))
  21249. characterMakers.push(() => makeCharacter(
  21250. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21251. {
  21252. side: {
  21253. height: math.unit(20, "feet"),
  21254. weight: math.unit(30000, "kg"),
  21255. name: "Side",
  21256. image: {
  21257. source: "./media/characters/windar/side.svg",
  21258. extra: 1491 / 1248,
  21259. bottom: 82.56 / 1568
  21260. }
  21261. },
  21262. },
  21263. [
  21264. {
  21265. name: "Normal",
  21266. height: math.unit(20, "feet"),
  21267. default: true
  21268. },
  21269. ]
  21270. ))
  21271. characterMakers.push(() => makeCharacter(
  21272. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21273. {
  21274. side: {
  21275. height: math.unit(15.66, "feet"),
  21276. weight: math.unit(150, "lb"),
  21277. name: "Side",
  21278. image: {
  21279. source: "./media/characters/melody/side.svg",
  21280. extra: 1097 / 944,
  21281. bottom: 11.8 / 1109
  21282. }
  21283. },
  21284. sideOutfit: {
  21285. height: math.unit(15.66, "feet"),
  21286. weight: math.unit(150, "lb"),
  21287. name: "Side (Outfit)",
  21288. image: {
  21289. source: "./media/characters/melody/side-outfit.svg",
  21290. extra: 1097 / 944,
  21291. bottom: 11.8 / 1109
  21292. }
  21293. },
  21294. },
  21295. [
  21296. {
  21297. name: "Normal",
  21298. height: math.unit(15.66, "feet"),
  21299. default: true
  21300. },
  21301. ]
  21302. ))
  21303. characterMakers.push(() => makeCharacter(
  21304. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21305. {
  21306. front: {
  21307. height: math.unit(8, "feet"),
  21308. weight: math.unit(325, "lb"),
  21309. name: "Front",
  21310. image: {
  21311. source: "./media/characters/windera/front.svg",
  21312. extra: 3180 / 2845,
  21313. bottom: 178 / 3365
  21314. }
  21315. },
  21316. },
  21317. [
  21318. {
  21319. name: "Normal",
  21320. height: math.unit(8, "feet"),
  21321. default: true
  21322. },
  21323. ]
  21324. ))
  21325. characterMakers.push(() => makeCharacter(
  21326. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21327. {
  21328. front: {
  21329. height: math.unit(28.75, "feet"),
  21330. weight: math.unit(2000, "kg"),
  21331. name: "Front",
  21332. image: {
  21333. source: "./media/characters/sonear/front.svg",
  21334. extra: 1041.1 / 964.9,
  21335. bottom: 53.7 / 1096.6
  21336. }
  21337. },
  21338. },
  21339. [
  21340. {
  21341. name: "Normal",
  21342. height: math.unit(28.75, "feet"),
  21343. default: true
  21344. },
  21345. ]
  21346. ))
  21347. characterMakers.push(() => makeCharacter(
  21348. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21349. {
  21350. side: {
  21351. height: math.unit(25.5, "feet"),
  21352. weight: math.unit(23000, "kg"),
  21353. name: "Side",
  21354. image: {
  21355. source: "./media/characters/kanara/side.svg"
  21356. }
  21357. },
  21358. },
  21359. [
  21360. {
  21361. name: "Normal",
  21362. height: math.unit(25.5, "feet"),
  21363. default: true
  21364. },
  21365. ]
  21366. ))
  21367. characterMakers.push(() => makeCharacter(
  21368. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21369. {
  21370. side: {
  21371. height: math.unit(10, "feet"),
  21372. weight: math.unit(1000, "kg"),
  21373. name: "Side",
  21374. image: {
  21375. source: "./media/characters/ereus/side.svg",
  21376. extra: 1157 / 959,
  21377. bottom: 153 / 1312.5
  21378. }
  21379. },
  21380. },
  21381. [
  21382. {
  21383. name: "Normal",
  21384. height: math.unit(10, "feet"),
  21385. default: true
  21386. },
  21387. ]
  21388. ))
  21389. characterMakers.push(() => makeCharacter(
  21390. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21391. {
  21392. side: {
  21393. height: math.unit(4.5, "feet"),
  21394. weight: math.unit(500, "lb"),
  21395. name: "Side",
  21396. image: {
  21397. source: "./media/characters/e-ter/side.svg",
  21398. extra: 1550 / 1248,
  21399. bottom: 146 / 1694
  21400. }
  21401. },
  21402. },
  21403. [
  21404. {
  21405. name: "Normal",
  21406. height: math.unit(4.5, "feet"),
  21407. default: true
  21408. },
  21409. ]
  21410. ))
  21411. characterMakers.push(() => makeCharacter(
  21412. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21413. {
  21414. side: {
  21415. height: math.unit(9.7, "feet"),
  21416. weight: math.unit(4000, "kg"),
  21417. name: "Side",
  21418. image: {
  21419. source: "./media/characters/yamie/side.svg"
  21420. }
  21421. },
  21422. },
  21423. [
  21424. {
  21425. name: "Normal",
  21426. height: math.unit(9.7, "feet"),
  21427. default: true
  21428. },
  21429. ]
  21430. ))
  21431. characterMakers.push(() => makeCharacter(
  21432. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21433. {
  21434. front: {
  21435. height: math.unit(50, "feet"),
  21436. weight: math.unit(50000, "kg"),
  21437. name: "Front",
  21438. image: {
  21439. source: "./media/characters/anders/front.svg",
  21440. extra: 570 / 539,
  21441. bottom: 14.7 / 586.7
  21442. }
  21443. },
  21444. },
  21445. [
  21446. {
  21447. name: "Large",
  21448. height: math.unit(50, "feet")
  21449. },
  21450. {
  21451. name: "Macro",
  21452. height: math.unit(2000, "feet"),
  21453. default: true
  21454. },
  21455. {
  21456. name: "Megamacro",
  21457. height: math.unit(12, "miles")
  21458. },
  21459. ]
  21460. ))
  21461. characterMakers.push(() => makeCharacter(
  21462. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21463. {
  21464. front: {
  21465. height: math.unit(7 + 2 / 12, "feet"),
  21466. weight: math.unit(300, "lb"),
  21467. name: "Front",
  21468. image: {
  21469. source: "./media/characters/reban/front.svg",
  21470. extra: 516 / 487,
  21471. bottom: 42.82 / 558.356
  21472. }
  21473. },
  21474. dick: {
  21475. height: math.unit(7 / 5, "feet"),
  21476. name: "Dick",
  21477. image: {
  21478. source: "./media/characters/reban/dick.svg"
  21479. }
  21480. },
  21481. },
  21482. [
  21483. {
  21484. name: "Natural Height",
  21485. height: math.unit(7 + 2 / 12, "feet")
  21486. },
  21487. {
  21488. name: "Macro",
  21489. height: math.unit(500, "feet"),
  21490. default: true
  21491. },
  21492. {
  21493. name: "Canon Height",
  21494. height: math.unit(50, "AU")
  21495. },
  21496. ]
  21497. ))
  21498. characterMakers.push(() => makeCharacter(
  21499. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21500. {
  21501. front: {
  21502. height: math.unit(6, "feet"),
  21503. weight: math.unit(150, "lb"),
  21504. name: "Front",
  21505. image: {
  21506. source: "./media/characters/terrance-keayes/front.svg",
  21507. extra: 1.005,
  21508. bottom: 151 / 1615
  21509. }
  21510. },
  21511. side: {
  21512. height: math.unit(6, "feet"),
  21513. weight: math.unit(150, "lb"),
  21514. name: "Side",
  21515. image: {
  21516. source: "./media/characters/terrance-keayes/side.svg",
  21517. extra: 1.005,
  21518. bottom: 129.4 / 1544
  21519. }
  21520. },
  21521. back: {
  21522. height: math.unit(6, "feet"),
  21523. weight: math.unit(150, "lb"),
  21524. name: "Back",
  21525. image: {
  21526. source: "./media/characters/terrance-keayes/back.svg",
  21527. extra: 1.005,
  21528. bottom: 58.4 / 1557.3
  21529. }
  21530. },
  21531. dick: {
  21532. height: math.unit(6 * 0.208, "feet"),
  21533. name: "Dick",
  21534. image: {
  21535. source: "./media/characters/terrance-keayes/dick.svg"
  21536. }
  21537. },
  21538. },
  21539. [
  21540. {
  21541. name: "Canon Height",
  21542. height: math.unit(35, "miles"),
  21543. default: true
  21544. },
  21545. ]
  21546. ))
  21547. characterMakers.push(() => makeCharacter(
  21548. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21549. {
  21550. front: {
  21551. height: math.unit(6, "feet"),
  21552. weight: math.unit(150, "lb"),
  21553. name: "Front",
  21554. image: {
  21555. source: "./media/characters/ofelia/front.svg",
  21556. extra: 546 / 541,
  21557. bottom: 39 / 583
  21558. }
  21559. },
  21560. back: {
  21561. height: math.unit(6, "feet"),
  21562. weight: math.unit(150, "lb"),
  21563. name: "Back",
  21564. image: {
  21565. source: "./media/characters/ofelia/back.svg",
  21566. extra: 564 / 559.5,
  21567. bottom: 8.69 / 573.02
  21568. }
  21569. },
  21570. maw: {
  21571. height: math.unit(1, "feet"),
  21572. name: "Maw",
  21573. image: {
  21574. source: "./media/characters/ofelia/maw.svg"
  21575. }
  21576. },
  21577. foot: {
  21578. height: math.unit(1.949, "feet"),
  21579. name: "Foot",
  21580. image: {
  21581. source: "./media/characters/ofelia/foot.svg"
  21582. }
  21583. },
  21584. },
  21585. [
  21586. {
  21587. name: "Canon Height",
  21588. height: math.unit(2000, "miles"),
  21589. default: true
  21590. },
  21591. ]
  21592. ))
  21593. characterMakers.push(() => makeCharacter(
  21594. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21595. {
  21596. front: {
  21597. height: math.unit(6, "feet"),
  21598. weight: math.unit(150, "lb"),
  21599. name: "Front",
  21600. image: {
  21601. source: "./media/characters/samuel/front.svg",
  21602. extra: 265 / 258,
  21603. bottom: 2 / 266.1566
  21604. }
  21605. },
  21606. },
  21607. [
  21608. {
  21609. name: "Macro",
  21610. height: math.unit(100, "feet"),
  21611. default: true
  21612. },
  21613. {
  21614. name: "Full Size",
  21615. height: math.unit(1000, "miles")
  21616. },
  21617. ]
  21618. ))
  21619. characterMakers.push(() => makeCharacter(
  21620. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21621. {
  21622. front: {
  21623. height: math.unit(6, "feet"),
  21624. weight: math.unit(300, "lb"),
  21625. name: "Front",
  21626. image: {
  21627. source: "./media/characters/beishir-kiel/front.svg",
  21628. extra: 569 / 547,
  21629. bottom: 41.9 / 609
  21630. }
  21631. },
  21632. maw: {
  21633. height: math.unit(6 * 0.202, "feet"),
  21634. name: "Maw",
  21635. image: {
  21636. source: "./media/characters/beishir-kiel/maw.svg"
  21637. }
  21638. },
  21639. },
  21640. [
  21641. {
  21642. name: "Macro",
  21643. height: math.unit(300, "feet"),
  21644. default: true
  21645. },
  21646. ]
  21647. ))
  21648. characterMakers.push(() => makeCharacter(
  21649. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21650. {
  21651. front: {
  21652. height: math.unit(5 + 8 / 12, "feet"),
  21653. weight: math.unit(120, "lb"),
  21654. name: "Front",
  21655. image: {
  21656. source: "./media/characters/logan-grey/front.svg",
  21657. extra: 2539 / 2393,
  21658. bottom: 97.6 / 2636.37
  21659. }
  21660. },
  21661. frontAlt: {
  21662. height: math.unit(5 + 8 / 12, "feet"),
  21663. weight: math.unit(120, "lb"),
  21664. name: "Front (Alt)",
  21665. image: {
  21666. source: "./media/characters/logan-grey/front-alt.svg",
  21667. extra: 958 / 893,
  21668. bottom: 15 / 970.768
  21669. }
  21670. },
  21671. back: {
  21672. height: math.unit(5 + 8 / 12, "feet"),
  21673. weight: math.unit(120, "lb"),
  21674. name: "Back",
  21675. image: {
  21676. source: "./media/characters/logan-grey/back.svg",
  21677. extra: 958 / 893,
  21678. bottom: 2.1881 / 970.9788
  21679. }
  21680. },
  21681. dick: {
  21682. height: math.unit(1.437, "feet"),
  21683. name: "Dick",
  21684. image: {
  21685. source: "./media/characters/logan-grey/dick.svg"
  21686. }
  21687. },
  21688. },
  21689. [
  21690. {
  21691. name: "Normal",
  21692. height: math.unit(5 + 8 / 12, "feet")
  21693. },
  21694. {
  21695. name: "The 500 Foot Femboy",
  21696. height: math.unit(500, "feet"),
  21697. default: true
  21698. },
  21699. {
  21700. name: "Megmacro",
  21701. height: math.unit(20, "miles")
  21702. },
  21703. ]
  21704. ))
  21705. characterMakers.push(() => makeCharacter(
  21706. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21707. {
  21708. front: {
  21709. height: math.unit(8 + 2 / 12, "feet"),
  21710. weight: math.unit(275, "lb"),
  21711. name: "Front",
  21712. image: {
  21713. source: "./media/characters/draganta/front.svg",
  21714. extra: 1177 / 1135,
  21715. bottom: 33.46 / 1212.1
  21716. }
  21717. },
  21718. },
  21719. [
  21720. {
  21721. name: "Normal",
  21722. height: math.unit(8 + 6 / 12, "feet"),
  21723. default: true
  21724. },
  21725. {
  21726. name: "Macro",
  21727. height: math.unit(150, "feet")
  21728. },
  21729. {
  21730. name: "Megamacro",
  21731. height: math.unit(1000, "miles")
  21732. },
  21733. ]
  21734. ))
  21735. characterMakers.push(() => makeCharacter(
  21736. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21737. {
  21738. front: {
  21739. height: math.unit(1.72, "m"),
  21740. weight: math.unit(80, "lb"),
  21741. name: "Front",
  21742. image: {
  21743. source: "./media/characters/voski/front.svg",
  21744. extra: 2076.22 / 2022.4,
  21745. bottom: 102.7 / 2177.3866
  21746. }
  21747. },
  21748. frontNsfw: {
  21749. height: math.unit(1.72, "m"),
  21750. weight: math.unit(80, "lb"),
  21751. name: "Front (NSFW)",
  21752. image: {
  21753. source: "./media/characters/voski/front-nsfw.svg",
  21754. extra: 2076.22 / 2022.4,
  21755. bottom: 102.7 / 2177.3866
  21756. }
  21757. },
  21758. back: {
  21759. height: math.unit(1.72, "m"),
  21760. weight: math.unit(80, "lb"),
  21761. name: "Back",
  21762. image: {
  21763. source: "./media/characters/voski/back.svg",
  21764. extra: 2104 / 2051,
  21765. bottom: 10.45 / 2113.63
  21766. }
  21767. },
  21768. },
  21769. [
  21770. {
  21771. name: "Normal",
  21772. height: math.unit(1.72, "m")
  21773. },
  21774. {
  21775. name: "Macro",
  21776. height: math.unit(55, "m"),
  21777. default: true
  21778. },
  21779. {
  21780. name: "Macro+",
  21781. height: math.unit(300, "m")
  21782. },
  21783. {
  21784. name: "Macro++",
  21785. height: math.unit(700, "m")
  21786. },
  21787. {
  21788. name: "Macro+++",
  21789. height: math.unit(4500, "m")
  21790. },
  21791. {
  21792. name: "Macro++++",
  21793. height: math.unit(45, "km")
  21794. },
  21795. {
  21796. name: "Macro+++++",
  21797. height: math.unit(1220, "km")
  21798. },
  21799. ]
  21800. ))
  21801. characterMakers.push(() => makeCharacter(
  21802. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21803. {
  21804. front: {
  21805. height: math.unit(2.3, "m"),
  21806. weight: math.unit(304, "kg"),
  21807. name: "Front",
  21808. image: {
  21809. source: "./media/characters/icowom-lee/front.svg",
  21810. extra: 985 / 955,
  21811. bottom: 25.4 / 1012
  21812. }
  21813. },
  21814. fronttentacles: {
  21815. height: math.unit(2.3, "m"),
  21816. weight: math.unit(304, "kg"),
  21817. name: "Front-tentacles",
  21818. image: {
  21819. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21820. extra: 985 / 955,
  21821. bottom: 25.4 / 1012
  21822. }
  21823. },
  21824. back: {
  21825. height: math.unit(2.3, "m"),
  21826. weight: math.unit(304, "kg"),
  21827. name: "Back",
  21828. image: {
  21829. source: "./media/characters/icowom-lee/back.svg",
  21830. extra: 975 / 954,
  21831. bottom: 9.5 / 985
  21832. }
  21833. },
  21834. backtentacles: {
  21835. height: math.unit(2.3, "m"),
  21836. weight: math.unit(304, "kg"),
  21837. name: "Back-tentacles",
  21838. image: {
  21839. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21840. extra: 975 / 954,
  21841. bottom: 9.5 / 985
  21842. }
  21843. },
  21844. frontDressed: {
  21845. height: math.unit(2.3, "m"),
  21846. weight: math.unit(304, "kg"),
  21847. name: "Front (Dressed)",
  21848. image: {
  21849. source: "./media/characters/icowom-lee/front-dressed.svg",
  21850. extra: 3076 / 2933,
  21851. bottom: 51.4 / 3125.1889
  21852. }
  21853. },
  21854. rump: {
  21855. height: math.unit(0.776, "meters"),
  21856. name: "Rump",
  21857. image: {
  21858. source: "./media/characters/icowom-lee/rump.svg"
  21859. }
  21860. },
  21861. genitals: {
  21862. height: math.unit(0.78, "meters"),
  21863. name: "Genitals",
  21864. image: {
  21865. source: "./media/characters/icowom-lee/genitals.svg"
  21866. }
  21867. },
  21868. },
  21869. [
  21870. {
  21871. name: "Normal",
  21872. height: math.unit(2.3, "meters"),
  21873. default: true
  21874. },
  21875. {
  21876. name: "Macro",
  21877. height: math.unit(94, "meters"),
  21878. default: true
  21879. },
  21880. ]
  21881. ))
  21882. characterMakers.push(() => makeCharacter(
  21883. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21884. {
  21885. front: {
  21886. height: math.unit(22, "meters"),
  21887. weight: math.unit(21000, "kg"),
  21888. name: "Front",
  21889. image: {
  21890. source: "./media/characters/shock-diamond/front.svg",
  21891. extra: 2204 / 2053,
  21892. bottom: 65 / 2239.47
  21893. }
  21894. },
  21895. frontNude: {
  21896. height: math.unit(22, "meters"),
  21897. weight: math.unit(21000, "kg"),
  21898. name: "Front (Nude)",
  21899. image: {
  21900. source: "./media/characters/shock-diamond/front-nude.svg",
  21901. extra: 2514 / 2285,
  21902. bottom: 13 / 2527.56
  21903. }
  21904. },
  21905. },
  21906. [
  21907. {
  21908. name: "Normal",
  21909. height: math.unit(3, "meters")
  21910. },
  21911. {
  21912. name: "Macro",
  21913. height: math.unit(22, "meters"),
  21914. default: true
  21915. },
  21916. ]
  21917. ))
  21918. characterMakers.push(() => makeCharacter(
  21919. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21920. {
  21921. front: {
  21922. height: math.unit(5 + 4 / 12, "feet"),
  21923. weight: math.unit(120, "lb"),
  21924. name: "Front",
  21925. image: {
  21926. source: "./media/characters/rory/front.svg",
  21927. extra: 589 / 556,
  21928. bottom: 45.7 / 635.76
  21929. }
  21930. },
  21931. frontNude: {
  21932. height: math.unit(5 + 4 / 12, "feet"),
  21933. weight: math.unit(120, "lb"),
  21934. name: "Front (Nude)",
  21935. image: {
  21936. source: "./media/characters/rory/front-nude.svg",
  21937. extra: 589 / 556,
  21938. bottom: 45.7 / 635.76
  21939. }
  21940. },
  21941. side: {
  21942. height: math.unit(5 + 4 / 12, "feet"),
  21943. weight: math.unit(120, "lb"),
  21944. name: "Side",
  21945. image: {
  21946. source: "./media/characters/rory/side.svg",
  21947. extra: 597 / 564,
  21948. bottom: 55 / 653
  21949. }
  21950. },
  21951. back: {
  21952. height: math.unit(5 + 4 / 12, "feet"),
  21953. weight: math.unit(120, "lb"),
  21954. name: "Back",
  21955. image: {
  21956. source: "./media/characters/rory/back.svg",
  21957. extra: 620 / 585,
  21958. bottom: 8.86 / 630.43
  21959. }
  21960. },
  21961. dick: {
  21962. height: math.unit(0.86, "feet"),
  21963. name: "Dick",
  21964. image: {
  21965. source: "./media/characters/rory/dick.svg"
  21966. }
  21967. },
  21968. },
  21969. [
  21970. {
  21971. name: "Normal",
  21972. height: math.unit(5 + 4 / 12, "feet"),
  21973. default: true
  21974. },
  21975. {
  21976. name: "Macro",
  21977. height: math.unit(100, "feet")
  21978. },
  21979. {
  21980. name: "Macro+",
  21981. height: math.unit(140, "feet")
  21982. },
  21983. {
  21984. name: "Macro++",
  21985. height: math.unit(300, "feet")
  21986. },
  21987. ]
  21988. ))
  21989. characterMakers.push(() => makeCharacter(
  21990. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21991. {
  21992. front: {
  21993. height: math.unit(5 + 9 / 12, "feet"),
  21994. weight: math.unit(190, "lb"),
  21995. name: "Front",
  21996. image: {
  21997. source: "./media/characters/sprisk/front.svg",
  21998. extra: 1225 / 1180,
  21999. bottom: 42.7 / 1266.4
  22000. }
  22001. },
  22002. frontNsfw: {
  22003. height: math.unit(5 + 9 / 12, "feet"),
  22004. weight: math.unit(190, "lb"),
  22005. name: "Front (NSFW)",
  22006. image: {
  22007. source: "./media/characters/sprisk/front-nsfw.svg",
  22008. extra: 1225 / 1180,
  22009. bottom: 42.7 / 1266.4
  22010. }
  22011. },
  22012. back: {
  22013. height: math.unit(5 + 9 / 12, "feet"),
  22014. weight: math.unit(190, "lb"),
  22015. name: "Back",
  22016. image: {
  22017. source: "./media/characters/sprisk/back.svg",
  22018. extra: 1247 / 1200,
  22019. bottom: 5.6 / 1253.04
  22020. }
  22021. },
  22022. },
  22023. [
  22024. {
  22025. name: "Tiny",
  22026. height: math.unit(2, "inches")
  22027. },
  22028. {
  22029. name: "Normal",
  22030. height: math.unit(5 + 9 / 12, "feet"),
  22031. default: true
  22032. },
  22033. {
  22034. name: "Mini Macro",
  22035. height: math.unit(18, "feet")
  22036. },
  22037. {
  22038. name: "Macro",
  22039. height: math.unit(100, "feet")
  22040. },
  22041. {
  22042. name: "MACRO",
  22043. height: math.unit(50, "miles")
  22044. },
  22045. {
  22046. name: "M A C R O",
  22047. height: math.unit(300, "miles")
  22048. },
  22049. ]
  22050. ))
  22051. characterMakers.push(() => makeCharacter(
  22052. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22053. {
  22054. side: {
  22055. height: math.unit(15.6, "meters"),
  22056. weight: math.unit(700000, "kg"),
  22057. name: "Side",
  22058. image: {
  22059. source: "./media/characters/bunsen/side.svg",
  22060. extra: 1644 / 358
  22061. }
  22062. },
  22063. foot: {
  22064. height: math.unit(1.611 * 1644 / 358, "meter"),
  22065. name: "Foot",
  22066. image: {
  22067. source: "./media/characters/bunsen/foot.svg"
  22068. }
  22069. },
  22070. },
  22071. [
  22072. {
  22073. name: "Small",
  22074. height: math.unit(10, "feet")
  22075. },
  22076. {
  22077. name: "Normal",
  22078. height: math.unit(15.6, "meters"),
  22079. default: true
  22080. },
  22081. ]
  22082. ))
  22083. characterMakers.push(() => makeCharacter(
  22084. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22085. {
  22086. front: {
  22087. height: math.unit(4 + 11 / 12, "feet"),
  22088. weight: math.unit(140, "lb"),
  22089. name: "Front",
  22090. image: {
  22091. source: "./media/characters/sesh/front.svg",
  22092. extra: 3420 / 3231,
  22093. bottom: 72 / 3949.5
  22094. }
  22095. },
  22096. },
  22097. [
  22098. {
  22099. name: "Normal",
  22100. height: math.unit(4 + 11 / 12, "feet")
  22101. },
  22102. {
  22103. name: "Grown",
  22104. height: math.unit(15, "feet"),
  22105. default: true
  22106. },
  22107. {
  22108. name: "Macro",
  22109. height: math.unit(1500, "feet")
  22110. },
  22111. {
  22112. name: "Megamacro",
  22113. height: math.unit(30, "miles")
  22114. },
  22115. {
  22116. name: "Continental",
  22117. height: math.unit(3000, "miles")
  22118. },
  22119. {
  22120. name: "Gravity Mass",
  22121. height: math.unit(300000, "miles")
  22122. },
  22123. {
  22124. name: "Planet Buster",
  22125. height: math.unit(30000000, "miles")
  22126. },
  22127. {
  22128. name: "Big",
  22129. height: math.unit(3000000000, "miles")
  22130. },
  22131. ]
  22132. ))
  22133. characterMakers.push(() => makeCharacter(
  22134. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22135. {
  22136. front: {
  22137. height: math.unit(9, "feet"),
  22138. weight: math.unit(350, "lb"),
  22139. name: "Front",
  22140. image: {
  22141. source: "./media/characters/pepper/front.svg",
  22142. extra: 1448 / 1312,
  22143. bottom: 9.4 / 1457.88
  22144. }
  22145. },
  22146. back: {
  22147. height: math.unit(9, "feet"),
  22148. weight: math.unit(350, "lb"),
  22149. name: "Back",
  22150. image: {
  22151. source: "./media/characters/pepper/back.svg",
  22152. extra: 1423 / 1300,
  22153. bottom: 4.6 / 1429
  22154. }
  22155. },
  22156. maw: {
  22157. height: math.unit(0.932, "feet"),
  22158. name: "Maw",
  22159. image: {
  22160. source: "./media/characters/pepper/maw.svg"
  22161. }
  22162. },
  22163. },
  22164. [
  22165. {
  22166. name: "Normal",
  22167. height: math.unit(9, "feet"),
  22168. default: true
  22169. },
  22170. ]
  22171. ))
  22172. characterMakers.push(() => makeCharacter(
  22173. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22174. {
  22175. front: {
  22176. height: math.unit(6, "feet"),
  22177. weight: math.unit(150, "lb"),
  22178. name: "Front",
  22179. image: {
  22180. source: "./media/characters/maelstrom/front.svg",
  22181. extra: 2100 / 1883,
  22182. bottom: 94 / 2196.7
  22183. }
  22184. },
  22185. },
  22186. [
  22187. {
  22188. name: "Less Kaiju",
  22189. height: math.unit(200, "feet")
  22190. },
  22191. {
  22192. name: "Kaiju",
  22193. height: math.unit(400, "feet"),
  22194. default: true
  22195. },
  22196. {
  22197. name: "Kaiju-er",
  22198. height: math.unit(600, "feet")
  22199. },
  22200. ]
  22201. ))
  22202. characterMakers.push(() => makeCharacter(
  22203. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22204. {
  22205. front: {
  22206. height: math.unit(6 + 5 / 12, "feet"),
  22207. weight: math.unit(180, "lb"),
  22208. name: "Front",
  22209. image: {
  22210. source: "./media/characters/lexir/front.svg",
  22211. extra: 180 / 172,
  22212. bottom: 12 / 192
  22213. }
  22214. },
  22215. back: {
  22216. height: math.unit(6 + 5 / 12, "feet"),
  22217. weight: math.unit(180, "lb"),
  22218. name: "Back",
  22219. image: {
  22220. source: "./media/characters/lexir/back.svg",
  22221. extra: 183.84 / 175.5,
  22222. bottom: 3.1 / 187
  22223. }
  22224. },
  22225. },
  22226. [
  22227. {
  22228. name: "Very Smal",
  22229. height: math.unit(1, "nm")
  22230. },
  22231. {
  22232. name: "Normal",
  22233. height: math.unit(6 + 5 / 12, "feet"),
  22234. default: true
  22235. },
  22236. {
  22237. name: "Macro",
  22238. height: math.unit(1, "mile")
  22239. },
  22240. {
  22241. name: "Megamacro",
  22242. height: math.unit(50, "miles")
  22243. },
  22244. ]
  22245. ))
  22246. characterMakers.push(() => makeCharacter(
  22247. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22248. {
  22249. front: {
  22250. height: math.unit(1.5, "meters"),
  22251. weight: math.unit(100, "lb"),
  22252. name: "Front",
  22253. image: {
  22254. source: "./media/characters/maksio/front.svg",
  22255. extra: 1549 / 1531,
  22256. bottom: 123.7 / 1674.5429
  22257. }
  22258. },
  22259. back: {
  22260. height: math.unit(1.5, "meters"),
  22261. weight: math.unit(100, "lb"),
  22262. name: "Back",
  22263. image: {
  22264. source: "./media/characters/maksio/back.svg",
  22265. extra: 1541 / 1509,
  22266. bottom: 97 / 1639
  22267. }
  22268. },
  22269. hand: {
  22270. height: math.unit(0.621, "feet"),
  22271. name: "Hand",
  22272. image: {
  22273. source: "./media/characters/maksio/hand.svg"
  22274. }
  22275. },
  22276. foot: {
  22277. height: math.unit(1.611, "feet"),
  22278. name: "Foot",
  22279. image: {
  22280. source: "./media/characters/maksio/foot.svg"
  22281. }
  22282. },
  22283. },
  22284. [
  22285. {
  22286. name: "Shrunken",
  22287. height: math.unit(10, "cm")
  22288. },
  22289. {
  22290. name: "Normal",
  22291. height: math.unit(150, "cm"),
  22292. default: true
  22293. },
  22294. ]
  22295. ))
  22296. characterMakers.push(() => makeCharacter(
  22297. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22298. {
  22299. front: {
  22300. height: math.unit(100, "feet"),
  22301. name: "Front",
  22302. image: {
  22303. source: "./media/characters/erza-bear/front.svg",
  22304. extra: 2449 / 2390,
  22305. bottom: 46 / 2494
  22306. }
  22307. },
  22308. back: {
  22309. height: math.unit(100, "feet"),
  22310. name: "Back",
  22311. image: {
  22312. source: "./media/characters/erza-bear/back.svg",
  22313. extra: 2489 / 2430,
  22314. bottom: 85.4 / 2480
  22315. }
  22316. },
  22317. tail: {
  22318. height: math.unit(42, "feet"),
  22319. name: "Tail",
  22320. image: {
  22321. source: "./media/characters/erza-bear/tail.svg"
  22322. }
  22323. },
  22324. tongue: {
  22325. height: math.unit(8, "feet"),
  22326. name: "Tongue",
  22327. image: {
  22328. source: "./media/characters/erza-bear/tongue.svg"
  22329. }
  22330. },
  22331. dick: {
  22332. height: math.unit(10.5, "feet"),
  22333. name: "Dick",
  22334. image: {
  22335. source: "./media/characters/erza-bear/dick.svg"
  22336. }
  22337. },
  22338. dickVertical: {
  22339. height: math.unit(16.9, "feet"),
  22340. name: "Dick (Vertical)",
  22341. image: {
  22342. source: "./media/characters/erza-bear/dick-vertical.svg"
  22343. }
  22344. },
  22345. },
  22346. [
  22347. {
  22348. name: "Macro",
  22349. height: math.unit(100, "feet"),
  22350. default: true
  22351. },
  22352. ]
  22353. ))
  22354. characterMakers.push(() => makeCharacter(
  22355. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22356. {
  22357. front: {
  22358. height: math.unit(172, "cm"),
  22359. weight: math.unit(73, "kg"),
  22360. name: "Front",
  22361. image: {
  22362. source: "./media/characters/violet-flor/front.svg",
  22363. extra: 1530 / 1442,
  22364. bottom: 61.9 / 1588.8
  22365. }
  22366. },
  22367. back: {
  22368. height: math.unit(180, "cm"),
  22369. weight: math.unit(73, "kg"),
  22370. name: "Back",
  22371. image: {
  22372. source: "./media/characters/violet-flor/back.svg",
  22373. extra: 1692 / 1630,
  22374. bottom: 20 / 1712
  22375. }
  22376. },
  22377. },
  22378. [
  22379. {
  22380. name: "Normal",
  22381. height: math.unit(172, "cm"),
  22382. default: true
  22383. },
  22384. ]
  22385. ))
  22386. characterMakers.push(() => makeCharacter(
  22387. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22388. {
  22389. front: {
  22390. height: math.unit(6, "feet"),
  22391. weight: math.unit(220, "lb"),
  22392. name: "Front",
  22393. image: {
  22394. source: "./media/characters/lynn-rhea/front.svg",
  22395. extra: 310 / 273
  22396. }
  22397. },
  22398. back: {
  22399. height: math.unit(6, "feet"),
  22400. weight: math.unit(220, "lb"),
  22401. name: "Back",
  22402. image: {
  22403. source: "./media/characters/lynn-rhea/back.svg",
  22404. extra: 310 / 273
  22405. }
  22406. },
  22407. dicks: {
  22408. height: math.unit(0.9, "feet"),
  22409. name: "Dicks",
  22410. image: {
  22411. source: "./media/characters/lynn-rhea/dicks.svg"
  22412. }
  22413. },
  22414. slit: {
  22415. height: math.unit(0.4, "feet"),
  22416. name: "Slit",
  22417. image: {
  22418. source: "./media/characters/lynn-rhea/slit.svg"
  22419. }
  22420. },
  22421. },
  22422. [
  22423. {
  22424. name: "Micro",
  22425. height: math.unit(1, "inch")
  22426. },
  22427. {
  22428. name: "Macro",
  22429. height: math.unit(60, "feet"),
  22430. default: true
  22431. },
  22432. {
  22433. name: "Megamacro",
  22434. height: math.unit(2, "miles")
  22435. },
  22436. {
  22437. name: "Gigamacro",
  22438. height: math.unit(3, "earths")
  22439. },
  22440. {
  22441. name: "Galactic",
  22442. height: math.unit(0.8, "galaxies")
  22443. },
  22444. ]
  22445. ))
  22446. characterMakers.push(() => makeCharacter(
  22447. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22448. {
  22449. front: {
  22450. height: math.unit(1600, "feet"),
  22451. weight: math.unit(85758785169, "kg"),
  22452. name: "Front",
  22453. image: {
  22454. source: "./media/characters/valathos/front.svg",
  22455. extra: 1451 / 1339
  22456. }
  22457. },
  22458. },
  22459. [
  22460. {
  22461. name: "Macro",
  22462. height: math.unit(1600, "feet"),
  22463. default: true
  22464. },
  22465. ]
  22466. ))
  22467. characterMakers.push(() => makeCharacter(
  22468. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22469. {
  22470. front: {
  22471. height: math.unit(7 + 5 / 12, "feet"),
  22472. weight: math.unit(300, "lb"),
  22473. name: "Front",
  22474. image: {
  22475. source: "./media/characters/azula/front.svg",
  22476. extra: 3208 / 2880,
  22477. bottom: 80.2 / 3277
  22478. }
  22479. },
  22480. back: {
  22481. height: math.unit(7 + 5 / 12, "feet"),
  22482. weight: math.unit(300, "lb"),
  22483. name: "Back",
  22484. image: {
  22485. source: "./media/characters/azula/back.svg",
  22486. extra: 3169 / 2822,
  22487. bottom: 150.6 / 3321
  22488. }
  22489. },
  22490. },
  22491. [
  22492. {
  22493. name: "Normal",
  22494. height: math.unit(7 + 5 / 12, "feet"),
  22495. default: true
  22496. },
  22497. {
  22498. name: "Big",
  22499. height: math.unit(20, "feet")
  22500. },
  22501. ]
  22502. ))
  22503. characterMakers.push(() => makeCharacter(
  22504. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22505. {
  22506. front: {
  22507. height: math.unit(5 + 1 / 12, "feet"),
  22508. weight: math.unit(110, "lb"),
  22509. name: "Front",
  22510. image: {
  22511. source: "./media/characters/rupert/front.svg",
  22512. extra: 1549 / 1495,
  22513. bottom: 54.2 / 1604.4
  22514. }
  22515. },
  22516. },
  22517. [
  22518. {
  22519. name: "Normal",
  22520. height: math.unit(5 + 1 / 12, "feet"),
  22521. default: true
  22522. },
  22523. ]
  22524. ))
  22525. characterMakers.push(() => makeCharacter(
  22526. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22527. {
  22528. front: {
  22529. height: math.unit(8 + 4 / 12, "feet"),
  22530. weight: math.unit(350, "lb"),
  22531. name: "Front",
  22532. image: {
  22533. source: "./media/characters/sheera-castellar/front.svg",
  22534. extra: 1957 / 1894,
  22535. bottom: 26.97 / 1975.017
  22536. }
  22537. },
  22538. side: {
  22539. height: math.unit(8 + 4 / 12, "feet"),
  22540. weight: math.unit(350, "lb"),
  22541. name: "Side",
  22542. image: {
  22543. source: "./media/characters/sheera-castellar/side.svg",
  22544. extra: 1957 / 1894
  22545. }
  22546. },
  22547. back: {
  22548. height: math.unit(8 + 4 / 12, "feet"),
  22549. weight: math.unit(350, "lb"),
  22550. name: "Back",
  22551. image: {
  22552. source: "./media/characters/sheera-castellar/back.svg",
  22553. extra: 1957 / 1894
  22554. }
  22555. },
  22556. angled: {
  22557. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22558. weight: math.unit(350, "lb"),
  22559. name: "Angled",
  22560. image: {
  22561. source: "./media/characters/sheera-castellar/angled.svg",
  22562. extra: 1807 / 1707,
  22563. bottom: 68 / 1875
  22564. }
  22565. },
  22566. genitals: {
  22567. height: math.unit(2.2, "feet"),
  22568. name: "Genitals",
  22569. image: {
  22570. source: "./media/characters/sheera-castellar/genitals.svg"
  22571. }
  22572. },
  22573. },
  22574. [
  22575. {
  22576. name: "Normal",
  22577. height: math.unit(8 + 4 / 12, "feet")
  22578. },
  22579. {
  22580. name: "Macro",
  22581. height: math.unit(150, "feet"),
  22582. default: true
  22583. },
  22584. {
  22585. name: "Macro+",
  22586. height: math.unit(800, "feet")
  22587. },
  22588. ]
  22589. ))
  22590. characterMakers.push(() => makeCharacter(
  22591. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22592. {
  22593. front: {
  22594. height: math.unit(6, "feet"),
  22595. weight: math.unit(150, "lb"),
  22596. name: "Front",
  22597. image: {
  22598. source: "./media/characters/jaipur/front.svg",
  22599. extra: 3860 / 3731,
  22600. bottom: 287 / 4140
  22601. }
  22602. },
  22603. back: {
  22604. height: math.unit(6, "feet"),
  22605. weight: math.unit(150, "lb"),
  22606. name: "Back",
  22607. image: {
  22608. source: "./media/characters/jaipur/back.svg",
  22609. extra: 4060 / 3930,
  22610. bottom: 151 / 4200
  22611. }
  22612. },
  22613. },
  22614. [
  22615. {
  22616. name: "Normal",
  22617. height: math.unit(1.85, "meters"),
  22618. default: true
  22619. },
  22620. {
  22621. name: "Macro",
  22622. height: math.unit(150, "meters")
  22623. },
  22624. {
  22625. name: "Macro+",
  22626. height: math.unit(0.5, "miles")
  22627. },
  22628. {
  22629. name: "Macro++",
  22630. height: math.unit(2.5, "miles")
  22631. },
  22632. {
  22633. name: "Macro+++",
  22634. height: math.unit(12, "miles")
  22635. },
  22636. {
  22637. name: "Macro++++",
  22638. height: math.unit(120, "miles")
  22639. },
  22640. {
  22641. name: "Macro+++++",
  22642. height: math.unit(1200, "miles")
  22643. },
  22644. ]
  22645. ))
  22646. characterMakers.push(() => makeCharacter(
  22647. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22648. {
  22649. front: {
  22650. height: math.unit(6, "feet"),
  22651. weight: math.unit(150, "lb"),
  22652. name: "Front",
  22653. image: {
  22654. source: "./media/characters/sheila-wolf/front.svg",
  22655. extra: 1931 / 1808,
  22656. bottom: 29.5 / 1960
  22657. }
  22658. },
  22659. dick: {
  22660. height: math.unit(1.464, "feet"),
  22661. name: "Dick",
  22662. image: {
  22663. source: "./media/characters/sheila-wolf/dick.svg"
  22664. }
  22665. },
  22666. muzzle: {
  22667. height: math.unit(0.513, "feet"),
  22668. name: "Muzzle",
  22669. image: {
  22670. source: "./media/characters/sheila-wolf/muzzle.svg"
  22671. }
  22672. },
  22673. },
  22674. [
  22675. {
  22676. name: "Macro",
  22677. height: math.unit(70, "feet"),
  22678. default: true
  22679. },
  22680. ]
  22681. ))
  22682. characterMakers.push(() => makeCharacter(
  22683. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22684. {
  22685. front: {
  22686. height: math.unit(32, "meters"),
  22687. weight: math.unit(300000, "kg"),
  22688. name: "Front",
  22689. image: {
  22690. source: "./media/characters/almor/front.svg",
  22691. extra: 1408 / 1322,
  22692. bottom: 94.6 / 1506.5
  22693. }
  22694. },
  22695. },
  22696. [
  22697. {
  22698. name: "Macro",
  22699. height: math.unit(32, "meters"),
  22700. default: true
  22701. },
  22702. ]
  22703. ))
  22704. characterMakers.push(() => makeCharacter(
  22705. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22706. {
  22707. front: {
  22708. height: math.unit(7, "feet"),
  22709. weight: math.unit(200, "lb"),
  22710. name: "Front",
  22711. image: {
  22712. source: "./media/characters/silver/front.svg",
  22713. extra: 472.1 / 450.5,
  22714. bottom: 26.5 / 499.424
  22715. }
  22716. },
  22717. },
  22718. [
  22719. {
  22720. name: "Normal",
  22721. height: math.unit(7, "feet"),
  22722. default: true
  22723. },
  22724. {
  22725. name: "Macro",
  22726. height: math.unit(800, "feet")
  22727. },
  22728. {
  22729. name: "Megamacro",
  22730. height: math.unit(250, "miles")
  22731. },
  22732. ]
  22733. ))
  22734. characterMakers.push(() => makeCharacter(
  22735. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22736. {
  22737. front: {
  22738. height: math.unit(6, "feet"),
  22739. weight: math.unit(150, "lb"),
  22740. name: "Front",
  22741. image: {
  22742. source: "./media/characters/pliskin/front.svg",
  22743. extra: 1469 / 1359,
  22744. bottom: 70 / 1540
  22745. }
  22746. },
  22747. },
  22748. [
  22749. {
  22750. name: "Micro",
  22751. height: math.unit(3, "inches")
  22752. },
  22753. {
  22754. name: "Normal",
  22755. height: math.unit(5 + 11 / 12, "feet"),
  22756. default: true
  22757. },
  22758. {
  22759. name: "Macro",
  22760. height: math.unit(120, "feet")
  22761. },
  22762. ]
  22763. ))
  22764. characterMakers.push(() => makeCharacter(
  22765. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22766. {
  22767. front: {
  22768. height: math.unit(6, "feet"),
  22769. weight: math.unit(150, "lb"),
  22770. name: "Front",
  22771. image: {
  22772. source: "./media/characters/sammy/front.svg",
  22773. extra: 1193 / 1089,
  22774. bottom: 30.5 / 1226
  22775. }
  22776. },
  22777. },
  22778. [
  22779. {
  22780. name: "Macro",
  22781. height: math.unit(1700, "feet"),
  22782. default: true
  22783. },
  22784. {
  22785. name: "Examacro",
  22786. height: math.unit(2.5e9, "lightyears")
  22787. },
  22788. ]
  22789. ))
  22790. characterMakers.push(() => makeCharacter(
  22791. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22792. {
  22793. front: {
  22794. height: math.unit(21, "meters"),
  22795. weight: math.unit(12, "tonnes"),
  22796. name: "Front",
  22797. image: {
  22798. source: "./media/characters/kuru/front.svg",
  22799. extra: 4301 / 3785,
  22800. bottom: 371.3 / 4691
  22801. }
  22802. },
  22803. },
  22804. [
  22805. {
  22806. name: "Macro",
  22807. height: math.unit(21, "meters"),
  22808. default: true
  22809. },
  22810. ]
  22811. ))
  22812. characterMakers.push(() => makeCharacter(
  22813. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22814. {
  22815. front: {
  22816. height: math.unit(23, "meters"),
  22817. weight: math.unit(12.2, "tonnes"),
  22818. name: "Front",
  22819. image: {
  22820. source: "./media/characters/rakka/front.svg",
  22821. extra: 4670 / 4169,
  22822. bottom: 301 / 4968.7
  22823. }
  22824. },
  22825. },
  22826. [
  22827. {
  22828. name: "Macro",
  22829. height: math.unit(23, "meters"),
  22830. default: true
  22831. },
  22832. ]
  22833. ))
  22834. characterMakers.push(() => makeCharacter(
  22835. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22836. {
  22837. front: {
  22838. height: math.unit(6, "feet"),
  22839. weight: math.unit(150, "lb"),
  22840. name: "Front",
  22841. image: {
  22842. source: "./media/characters/rhys-feline/front.svg",
  22843. extra: 2488 / 2308,
  22844. bottom: 35.67 / 2519.19
  22845. }
  22846. },
  22847. },
  22848. [
  22849. {
  22850. name: "Really Small",
  22851. height: math.unit(1, "nm")
  22852. },
  22853. {
  22854. name: "Micro",
  22855. height: math.unit(4, "inches")
  22856. },
  22857. {
  22858. name: "Normal",
  22859. height: math.unit(4 + 10 / 12, "feet"),
  22860. default: true
  22861. },
  22862. {
  22863. name: "Macro",
  22864. height: math.unit(100, "feet")
  22865. },
  22866. {
  22867. name: "Megamacto",
  22868. height: math.unit(50, "miles")
  22869. },
  22870. ]
  22871. ))
  22872. characterMakers.push(() => makeCharacter(
  22873. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22874. {
  22875. side: {
  22876. height: math.unit(30, "feet"),
  22877. weight: math.unit(35000, "kg"),
  22878. name: "Side",
  22879. image: {
  22880. source: "./media/characters/alydar/side.svg",
  22881. extra: 234 / 222,
  22882. bottom: 6.5 / 241
  22883. }
  22884. },
  22885. front: {
  22886. height: math.unit(30, "feet"),
  22887. weight: math.unit(35000, "kg"),
  22888. name: "Front",
  22889. image: {
  22890. source: "./media/characters/alydar/front.svg",
  22891. extra: 223.37 / 210.2,
  22892. bottom: 22.3 / 246.76
  22893. }
  22894. },
  22895. top: {
  22896. height: math.unit(64.54, "feet"),
  22897. weight: math.unit(35000, "kg"),
  22898. name: "Top",
  22899. image: {
  22900. source: "./media/characters/alydar/top.svg"
  22901. }
  22902. },
  22903. anthro: {
  22904. height: math.unit(30, "feet"),
  22905. weight: math.unit(9000, "kg"),
  22906. name: "Anthro",
  22907. image: {
  22908. source: "./media/characters/alydar/anthro.svg",
  22909. extra: 432 / 421,
  22910. bottom: 7.18 / 440
  22911. }
  22912. },
  22913. maw: {
  22914. height: math.unit(11.693, "feet"),
  22915. name: "Maw",
  22916. image: {
  22917. source: "./media/characters/alydar/maw.svg"
  22918. }
  22919. },
  22920. head: {
  22921. height: math.unit(11.693, "feet"),
  22922. name: "Head",
  22923. image: {
  22924. source: "./media/characters/alydar/head.svg"
  22925. }
  22926. },
  22927. headAlt: {
  22928. height: math.unit(12.861, "feet"),
  22929. name: "Head (Alt)",
  22930. image: {
  22931. source: "./media/characters/alydar/head-alt.svg"
  22932. }
  22933. },
  22934. wing: {
  22935. height: math.unit(20.712, "feet"),
  22936. name: "Wing",
  22937. image: {
  22938. source: "./media/characters/alydar/wing.svg"
  22939. }
  22940. },
  22941. wingFeather: {
  22942. height: math.unit(9.662, "feet"),
  22943. name: "Wing Feather",
  22944. image: {
  22945. source: "./media/characters/alydar/wing-feather.svg"
  22946. }
  22947. },
  22948. countourFeather: {
  22949. height: math.unit(4.154, "feet"),
  22950. name: "Contour Feather",
  22951. image: {
  22952. source: "./media/characters/alydar/contour-feather.svg"
  22953. }
  22954. },
  22955. },
  22956. [
  22957. {
  22958. name: "Diplomatic",
  22959. height: math.unit(13, "feet"),
  22960. default: true
  22961. },
  22962. {
  22963. name: "Small",
  22964. height: math.unit(30, "feet")
  22965. },
  22966. {
  22967. name: "Normal",
  22968. height: math.unit(95, "feet"),
  22969. default: true
  22970. },
  22971. {
  22972. name: "Large",
  22973. height: math.unit(285, "feet")
  22974. },
  22975. {
  22976. name: "Incomprehensible",
  22977. height: math.unit(450, "megameters")
  22978. },
  22979. ]
  22980. ))
  22981. characterMakers.push(() => makeCharacter(
  22982. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22983. {
  22984. side: {
  22985. height: math.unit(11, "feet"),
  22986. weight: math.unit(1750, "kg"),
  22987. name: "Side",
  22988. image: {
  22989. source: "./media/characters/selicia/side.svg",
  22990. extra: 440 / 396,
  22991. bottom: 24.8 / 465.979
  22992. }
  22993. },
  22994. maw: {
  22995. height: math.unit(4.665, "feet"),
  22996. name: "Maw",
  22997. image: {
  22998. source: "./media/characters/selicia/maw.svg"
  22999. }
  23000. },
  23001. },
  23002. [
  23003. {
  23004. name: "Normal",
  23005. height: math.unit(11, "feet"),
  23006. default: true
  23007. },
  23008. ]
  23009. ))
  23010. characterMakers.push(() => makeCharacter(
  23011. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  23012. {
  23013. side: {
  23014. height: math.unit(2 + 6 / 12, "feet"),
  23015. weight: math.unit(30, "lb"),
  23016. name: "Side",
  23017. image: {
  23018. source: "./media/characters/layla/side.svg",
  23019. extra: 244 / 188,
  23020. bottom: 18.2 / 262.1
  23021. }
  23022. },
  23023. back: {
  23024. height: math.unit(2 + 6 / 12, "feet"),
  23025. weight: math.unit(30, "lb"),
  23026. name: "Back",
  23027. image: {
  23028. source: "./media/characters/layla/back.svg",
  23029. extra: 308 / 241.5,
  23030. bottom: 8.9 / 316.8
  23031. }
  23032. },
  23033. cumming: {
  23034. height: math.unit(2 + 6 / 12, "feet"),
  23035. weight: math.unit(30, "lb"),
  23036. name: "Cumming",
  23037. image: {
  23038. source: "./media/characters/layla/cumming.svg",
  23039. extra: 342 / 279,
  23040. bottom: 595 / 938
  23041. }
  23042. },
  23043. dickFlaccid: {
  23044. height: math.unit(2.595, "feet"),
  23045. name: "Flaccid Genitals",
  23046. image: {
  23047. source: "./media/characters/layla/dick-flaccid.svg"
  23048. }
  23049. },
  23050. dickErect: {
  23051. height: math.unit(2.359, "feet"),
  23052. name: "Erect Genitals",
  23053. image: {
  23054. source: "./media/characters/layla/dick-erect.svg"
  23055. }
  23056. },
  23057. },
  23058. [
  23059. {
  23060. name: "Micro",
  23061. height: math.unit(1, "inch")
  23062. },
  23063. {
  23064. name: "Small",
  23065. height: math.unit(1, "foot")
  23066. },
  23067. {
  23068. name: "Normal",
  23069. height: math.unit(2 + 6 / 12, "feet"),
  23070. default: true
  23071. },
  23072. {
  23073. name: "Macro",
  23074. height: math.unit(200, "feet")
  23075. },
  23076. {
  23077. name: "Megamacro",
  23078. height: math.unit(1000, "miles")
  23079. },
  23080. {
  23081. name: "Planetary",
  23082. height: math.unit(8000, "miles")
  23083. },
  23084. {
  23085. name: "True Layla",
  23086. height: math.unit(200000 * 7, "multiverses")
  23087. },
  23088. ]
  23089. ))
  23090. characterMakers.push(() => makeCharacter(
  23091. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23092. {
  23093. back: {
  23094. height: math.unit(10.5, "feet"),
  23095. weight: math.unit(800, "lb"),
  23096. name: "Back",
  23097. image: {
  23098. source: "./media/characters/knox/back.svg",
  23099. extra: 1486 / 1089,
  23100. bottom: 107 / 1601.4
  23101. }
  23102. },
  23103. side: {
  23104. height: math.unit(10.5, "feet"),
  23105. weight: math.unit(800, "lb"),
  23106. name: "Side",
  23107. image: {
  23108. source: "./media/characters/knox/side.svg",
  23109. extra: 244 / 218,
  23110. bottom: 14 / 260
  23111. }
  23112. },
  23113. },
  23114. [
  23115. {
  23116. name: "Compact",
  23117. height: math.unit(10.5, "feet"),
  23118. default: true
  23119. },
  23120. {
  23121. name: "Dynamax",
  23122. height: math.unit(210, "feet")
  23123. },
  23124. {
  23125. name: "Full Macro",
  23126. height: math.unit(850, "feet")
  23127. },
  23128. ]
  23129. ))
  23130. characterMakers.push(() => makeCharacter(
  23131. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23132. {
  23133. front: {
  23134. height: math.unit(6, "feet"),
  23135. weight: math.unit(152, "lb"),
  23136. name: "Front",
  23137. image: {
  23138. source: "./media/characters/shin-pikachu/front.svg",
  23139. extra: 1574 / 1480,
  23140. bottom: 53.3 / 1626
  23141. }
  23142. },
  23143. hand: {
  23144. height: math.unit(1.055, "feet"),
  23145. name: "Hand",
  23146. image: {
  23147. source: "./media/characters/shin-pikachu/hand.svg"
  23148. }
  23149. },
  23150. foot: {
  23151. height: math.unit(1.1, "feet"),
  23152. name: "Foot",
  23153. image: {
  23154. source: "./media/characters/shin-pikachu/foot.svg"
  23155. }
  23156. },
  23157. collar: {
  23158. height: math.unit(0.386, "feet"),
  23159. name: "Collar",
  23160. image: {
  23161. source: "./media/characters/shin-pikachu/collar.svg"
  23162. }
  23163. },
  23164. },
  23165. [
  23166. {
  23167. name: "Smallest",
  23168. height: math.unit(0.5, "inches")
  23169. },
  23170. {
  23171. name: "Micro",
  23172. height: math.unit(6, "inches")
  23173. },
  23174. {
  23175. name: "Normal",
  23176. height: math.unit(6, "feet"),
  23177. default: true
  23178. },
  23179. {
  23180. name: "Macro",
  23181. height: math.unit(150, "feet")
  23182. },
  23183. ]
  23184. ))
  23185. characterMakers.push(() => makeCharacter(
  23186. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23187. {
  23188. front: {
  23189. height: math.unit(28, "feet"),
  23190. weight: math.unit(10500, "lb"),
  23191. name: "Front",
  23192. image: {
  23193. source: "./media/characters/kayda/front.svg",
  23194. extra: 1536 / 1428,
  23195. bottom: 68.7 / 1603
  23196. }
  23197. },
  23198. back: {
  23199. height: math.unit(28, "feet"),
  23200. weight: math.unit(10500, "lb"),
  23201. name: "Back",
  23202. image: {
  23203. source: "./media/characters/kayda/back.svg",
  23204. extra: 1557 / 1464,
  23205. bottom: 39.5 / 1597.49
  23206. }
  23207. },
  23208. dick: {
  23209. height: math.unit(3.858, "feet"),
  23210. name: "Dick",
  23211. image: {
  23212. source: "./media/characters/kayda/dick.svg"
  23213. }
  23214. },
  23215. },
  23216. [
  23217. {
  23218. name: "Macro",
  23219. height: math.unit(28, "feet"),
  23220. default: true
  23221. },
  23222. ]
  23223. ))
  23224. characterMakers.push(() => makeCharacter(
  23225. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23226. {
  23227. front: {
  23228. height: math.unit(10 + 11 / 12, "feet"),
  23229. weight: math.unit(1400, "lb"),
  23230. name: "Front",
  23231. image: {
  23232. source: "./media/characters/brian/front.svg",
  23233. extra: 737 / 692,
  23234. bottom: 55.4 / 785
  23235. }
  23236. },
  23237. },
  23238. [
  23239. {
  23240. name: "Normal",
  23241. height: math.unit(10 + 11 / 12, "feet"),
  23242. default: true
  23243. },
  23244. ]
  23245. ))
  23246. characterMakers.push(() => makeCharacter(
  23247. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23248. {
  23249. front: {
  23250. height: math.unit(5 + 8 / 12, "feet"),
  23251. weight: math.unit(140, "lb"),
  23252. name: "Front",
  23253. image: {
  23254. source: "./media/characters/khemri/front.svg",
  23255. extra: 4780 / 4059,
  23256. bottom: 80.1 / 4859.25
  23257. }
  23258. },
  23259. },
  23260. [
  23261. {
  23262. name: "Micro",
  23263. height: math.unit(6, "inches")
  23264. },
  23265. {
  23266. name: "Normal",
  23267. height: math.unit(5 + 8 / 12, "feet"),
  23268. default: true
  23269. },
  23270. ]
  23271. ))
  23272. characterMakers.push(() => makeCharacter(
  23273. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23274. {
  23275. front: {
  23276. height: math.unit(13, "feet"),
  23277. weight: math.unit(1700, "lb"),
  23278. name: "Front",
  23279. image: {
  23280. source: "./media/characters/felix-braveheart/front.svg",
  23281. extra: 1222 / 1157,
  23282. bottom: 53.2 / 1280
  23283. }
  23284. },
  23285. back: {
  23286. height: math.unit(13, "feet"),
  23287. weight: math.unit(1700, "lb"),
  23288. name: "Back",
  23289. image: {
  23290. source: "./media/characters/felix-braveheart/back.svg",
  23291. extra: 1277 / 1203,
  23292. bottom: 50.2 / 1327
  23293. }
  23294. },
  23295. feral: {
  23296. height: math.unit(6, "feet"),
  23297. weight: math.unit(400, "lb"),
  23298. name: "Feral",
  23299. image: {
  23300. source: "./media/characters/felix-braveheart/feral.svg",
  23301. extra: 682 / 625,
  23302. bottom: 6.9 / 688
  23303. }
  23304. },
  23305. },
  23306. [
  23307. {
  23308. name: "Normal",
  23309. height: math.unit(13, "feet"),
  23310. default: true
  23311. },
  23312. ]
  23313. ))
  23314. characterMakers.push(() => makeCharacter(
  23315. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23316. {
  23317. side: {
  23318. height: math.unit(5 + 11 / 12, "feet"),
  23319. weight: math.unit(1400, "lb"),
  23320. name: "Side",
  23321. image: {
  23322. source: "./media/characters/shadow-blade/side.svg",
  23323. extra: 1726 / 1267,
  23324. bottom: 58.4 / 1785
  23325. }
  23326. },
  23327. },
  23328. [
  23329. {
  23330. name: "Normal",
  23331. height: math.unit(5 + 11 / 12, "feet"),
  23332. default: true
  23333. },
  23334. ]
  23335. ))
  23336. characterMakers.push(() => makeCharacter(
  23337. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23338. {
  23339. front: {
  23340. height: math.unit(1 + 6 / 12, "feet"),
  23341. weight: math.unit(25, "lb"),
  23342. name: "Front",
  23343. image: {
  23344. source: "./media/characters/karla-halldor/front.svg",
  23345. extra: 1459 / 1383,
  23346. bottom: 12 / 1472
  23347. }
  23348. },
  23349. },
  23350. [
  23351. {
  23352. name: "Normal",
  23353. height: math.unit(1 + 6 / 12, "feet"),
  23354. default: true
  23355. },
  23356. ]
  23357. ))
  23358. characterMakers.push(() => makeCharacter(
  23359. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23360. {
  23361. front: {
  23362. height: math.unit(6 + 2 / 12, "feet"),
  23363. weight: math.unit(160, "lb"),
  23364. name: "Front",
  23365. image: {
  23366. source: "./media/characters/ariam/front.svg",
  23367. extra: 714 / 617,
  23368. bottom: 23.4 / 737,
  23369. }
  23370. },
  23371. squatting: {
  23372. height: math.unit(4.1, "feet"),
  23373. weight: math.unit(160, "lb"),
  23374. name: "Squatting",
  23375. image: {
  23376. source: "./media/characters/ariam/squatting.svg",
  23377. extra: 2617 / 2112,
  23378. bottom: 61.2 / 2681,
  23379. }
  23380. },
  23381. },
  23382. [
  23383. {
  23384. name: "Normal",
  23385. height: math.unit(6 + 2 / 12, "feet"),
  23386. default: true
  23387. },
  23388. {
  23389. name: "Normal+",
  23390. height: math.unit(4, "meters")
  23391. },
  23392. {
  23393. name: "Macro",
  23394. height: math.unit(50, "meters")
  23395. },
  23396. {
  23397. name: "Macro+",
  23398. height: math.unit(100, "meters")
  23399. },
  23400. {
  23401. name: "Megamacro",
  23402. height: math.unit(20, "km")
  23403. },
  23404. ]
  23405. ))
  23406. characterMakers.push(() => makeCharacter(
  23407. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23408. {
  23409. front: {
  23410. height: math.unit(1.67, "meters"),
  23411. weight: math.unit(140, "lb"),
  23412. name: "Front",
  23413. image: {
  23414. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23415. extra: 438 / 410,
  23416. bottom: 0.75 / 439
  23417. }
  23418. },
  23419. },
  23420. [
  23421. {
  23422. name: "Shrunken",
  23423. height: math.unit(7.6, "cm")
  23424. },
  23425. {
  23426. name: "Human Scale",
  23427. height: math.unit(1.67, "meters")
  23428. },
  23429. {
  23430. name: "Wolxi Scale",
  23431. height: math.unit(36.7, "meters"),
  23432. default: true
  23433. },
  23434. ]
  23435. ))
  23436. characterMakers.push(() => makeCharacter(
  23437. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23438. {
  23439. front: {
  23440. height: math.unit(1.73, "meters"),
  23441. weight: math.unit(240, "lb"),
  23442. name: "Front",
  23443. image: {
  23444. source: "./media/characters/izue-two-mothers/front.svg",
  23445. extra: 469 / 437,
  23446. bottom: 1.24 / 470.6
  23447. }
  23448. },
  23449. },
  23450. [
  23451. {
  23452. name: "Shrunken",
  23453. height: math.unit(7.86, "cm")
  23454. },
  23455. {
  23456. name: "Human Scale",
  23457. height: math.unit(1.73, "meters")
  23458. },
  23459. {
  23460. name: "Wolxi Scale",
  23461. height: math.unit(38, "meters"),
  23462. default: true
  23463. },
  23464. ]
  23465. ))
  23466. characterMakers.push(() => makeCharacter(
  23467. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23468. {
  23469. front: {
  23470. height: math.unit(1.55, "meters"),
  23471. weight: math.unit(120, "lb"),
  23472. name: "Front",
  23473. image: {
  23474. source: "./media/characters/teeku-love-shack/front.svg",
  23475. extra: 387 / 362,
  23476. bottom: 1.51 / 388
  23477. }
  23478. },
  23479. },
  23480. [
  23481. {
  23482. name: "Shrunken",
  23483. height: math.unit(7, "cm")
  23484. },
  23485. {
  23486. name: "Human Scale",
  23487. height: math.unit(1.55, "meters")
  23488. },
  23489. {
  23490. name: "Wolxi Scale",
  23491. height: math.unit(34.1, "meters"),
  23492. default: true
  23493. },
  23494. ]
  23495. ))
  23496. characterMakers.push(() => makeCharacter(
  23497. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23498. {
  23499. front: {
  23500. height: math.unit(1.83, "meters"),
  23501. weight: math.unit(135, "lb"),
  23502. name: "Front",
  23503. image: {
  23504. source: "./media/characters/dejma-the-red/front.svg",
  23505. extra: 480 / 458,
  23506. bottom: 1.8 / 482
  23507. }
  23508. },
  23509. },
  23510. [
  23511. {
  23512. name: "Shrunken",
  23513. height: math.unit(8.3, "cm")
  23514. },
  23515. {
  23516. name: "Human Scale",
  23517. height: math.unit(1.83, "meters")
  23518. },
  23519. {
  23520. name: "Wolxi Scale",
  23521. height: math.unit(40, "meters"),
  23522. default: true
  23523. },
  23524. ]
  23525. ))
  23526. characterMakers.push(() => makeCharacter(
  23527. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23528. {
  23529. front: {
  23530. height: math.unit(1.78, "meters"),
  23531. weight: math.unit(65, "kg"),
  23532. name: "Front",
  23533. image: {
  23534. source: "./media/characters/aki/front.svg",
  23535. extra: 452 / 415
  23536. }
  23537. },
  23538. frontNsfw: {
  23539. height: math.unit(1.78, "meters"),
  23540. weight: math.unit(65, "kg"),
  23541. name: "Front (NSFW)",
  23542. image: {
  23543. source: "./media/characters/aki/front-nsfw.svg",
  23544. extra: 452 / 415
  23545. }
  23546. },
  23547. back: {
  23548. height: math.unit(1.78, "meters"),
  23549. weight: math.unit(65, "kg"),
  23550. name: "Back",
  23551. image: {
  23552. source: "./media/characters/aki/back.svg",
  23553. extra: 452 / 415
  23554. }
  23555. },
  23556. rump: {
  23557. height: math.unit(2.05, "feet"),
  23558. name: "Rump",
  23559. image: {
  23560. source: "./media/characters/aki/rump.svg"
  23561. }
  23562. },
  23563. dick: {
  23564. height: math.unit(0.95, "feet"),
  23565. name: "Dick",
  23566. image: {
  23567. source: "./media/characters/aki/dick.svg"
  23568. }
  23569. },
  23570. },
  23571. [
  23572. {
  23573. name: "Micro",
  23574. height: math.unit(15, "cm")
  23575. },
  23576. {
  23577. name: "Normal",
  23578. height: math.unit(178, "cm"),
  23579. default: true
  23580. },
  23581. {
  23582. name: "Macro",
  23583. height: math.unit(214, "m")
  23584. },
  23585. {
  23586. name: "Macro+",
  23587. height: math.unit(534, "m")
  23588. },
  23589. ]
  23590. ))
  23591. characterMakers.push(() => makeCharacter(
  23592. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23593. {
  23594. front: {
  23595. height: math.unit(5 + 5 / 12, "feet"),
  23596. weight: math.unit(120, "lb"),
  23597. name: "Front",
  23598. image: {
  23599. source: "./media/characters/ari/front.svg",
  23600. extra: 714.5 / 682,
  23601. bottom: 8 / 722.5
  23602. }
  23603. },
  23604. },
  23605. [
  23606. {
  23607. name: "Normal",
  23608. height: math.unit(5 + 5 / 12, "feet")
  23609. },
  23610. {
  23611. name: "Macro",
  23612. height: math.unit(100, "feet"),
  23613. default: true
  23614. },
  23615. {
  23616. name: "Megamacro",
  23617. height: math.unit(100, "miles")
  23618. },
  23619. {
  23620. name: "Gigamacro",
  23621. height: math.unit(80000, "miles")
  23622. },
  23623. ]
  23624. ))
  23625. characterMakers.push(() => makeCharacter(
  23626. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23627. {
  23628. side: {
  23629. height: math.unit(9, "feet"),
  23630. weight: math.unit(400, "kg"),
  23631. name: "Side",
  23632. image: {
  23633. source: "./media/characters/bolt/side.svg",
  23634. extra: 1126 / 896,
  23635. bottom: 60 / 1187.3,
  23636. }
  23637. },
  23638. },
  23639. [
  23640. {
  23641. name: "Micro",
  23642. height: math.unit(5, "inches")
  23643. },
  23644. {
  23645. name: "Normal",
  23646. height: math.unit(9, "feet"),
  23647. default: true
  23648. },
  23649. {
  23650. name: "Macro",
  23651. height: math.unit(700, "feet")
  23652. },
  23653. {
  23654. name: "Max Size",
  23655. height: math.unit(1.52e22, "yottameters")
  23656. },
  23657. ]
  23658. ))
  23659. characterMakers.push(() => makeCharacter(
  23660. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23661. {
  23662. front: {
  23663. height: math.unit(4.53, "meters"),
  23664. weight: math.unit(3, "tons"),
  23665. name: "Front",
  23666. image: {
  23667. source: "./media/characters/draekon-sylviar/front.svg",
  23668. extra: 1228 / 1068,
  23669. bottom: 41 / 1270
  23670. }
  23671. },
  23672. tail: {
  23673. height: math.unit(1.772, "meter"),
  23674. name: "Tail",
  23675. image: {
  23676. source: "./media/characters/draekon-sylviar/tail.svg"
  23677. }
  23678. },
  23679. head: {
  23680. height: math.unit(1.331, "meter"),
  23681. name: "Head",
  23682. image: {
  23683. source: "./media/characters/draekon-sylviar/head.svg"
  23684. }
  23685. },
  23686. hand: {
  23687. height: math.unit(0.564, "meter"),
  23688. name: "Hand",
  23689. image: {
  23690. source: "./media/characters/draekon-sylviar/hand.svg"
  23691. }
  23692. },
  23693. foot: {
  23694. height: math.unit(0.621, "meter"),
  23695. name: "Foot",
  23696. image: {
  23697. source: "./media/characters/draekon-sylviar/foot.svg",
  23698. bottom: 32 / 324
  23699. }
  23700. },
  23701. dick: {
  23702. height: math.unit(61, "cm"),
  23703. name: "Dick",
  23704. image: {
  23705. source: "./media/characters/draekon-sylviar/dick.svg"
  23706. }
  23707. },
  23708. dickseparated: {
  23709. height: math.unit(61, "cm"),
  23710. name: "Dick-separated",
  23711. image: {
  23712. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23713. }
  23714. },
  23715. },
  23716. [
  23717. {
  23718. name: "Small",
  23719. height: math.unit(4.53 / 2, "meters"),
  23720. default: true
  23721. },
  23722. {
  23723. name: "Normal",
  23724. height: math.unit(4.53, "meters"),
  23725. default: true
  23726. },
  23727. {
  23728. name: "Large",
  23729. height: math.unit(4.53 * 2, "meters"),
  23730. },
  23731. ]
  23732. ))
  23733. characterMakers.push(() => makeCharacter(
  23734. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23735. {
  23736. front: {
  23737. height: math.unit(6 + 2 / 12, "feet"),
  23738. weight: math.unit(180, "lb"),
  23739. name: "Front",
  23740. image: {
  23741. source: "./media/characters/brawler/front.svg",
  23742. extra: 3301 / 3027,
  23743. bottom: 138 / 3439
  23744. }
  23745. },
  23746. },
  23747. [
  23748. {
  23749. name: "Normal",
  23750. height: math.unit(6 + 2 / 12, "feet"),
  23751. default: true
  23752. },
  23753. ]
  23754. ))
  23755. characterMakers.push(() => makeCharacter(
  23756. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23757. {
  23758. front: {
  23759. height: math.unit(11, "feet"),
  23760. weight: math.unit(1000, "lb"),
  23761. name: "Front",
  23762. image: {
  23763. source: "./media/characters/alex/front.svg",
  23764. bottom: 44.5 / 620
  23765. }
  23766. },
  23767. },
  23768. [
  23769. {
  23770. name: "Micro",
  23771. height: math.unit(5, "inches")
  23772. },
  23773. {
  23774. name: "Normal",
  23775. height: math.unit(11, "feet"),
  23776. default: true
  23777. },
  23778. {
  23779. name: "Macro",
  23780. height: math.unit(9.5e9, "feet")
  23781. },
  23782. {
  23783. name: "Max Size",
  23784. height: math.unit(1.4e283, "yottameters")
  23785. },
  23786. ]
  23787. ))
  23788. characterMakers.push(() => makeCharacter(
  23789. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23790. {
  23791. female: {
  23792. height: math.unit(29.9, "m"),
  23793. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23794. name: "Female",
  23795. image: {
  23796. source: "./media/characters/zenari/female.svg",
  23797. extra: 3281.6 / 3217,
  23798. bottom: 72.2 / 3353
  23799. }
  23800. },
  23801. male: {
  23802. height: math.unit(27.7, "m"),
  23803. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23804. name: "Male",
  23805. image: {
  23806. source: "./media/characters/zenari/male.svg",
  23807. extra: 3008 / 2991,
  23808. bottom: 54.6 / 3069
  23809. }
  23810. },
  23811. },
  23812. [
  23813. {
  23814. name: "Macro",
  23815. height: math.unit(29.7, "meters"),
  23816. default: true
  23817. },
  23818. ]
  23819. ))
  23820. characterMakers.push(() => makeCharacter(
  23821. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23822. {
  23823. female: {
  23824. height: math.unit(23.8, "m"),
  23825. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23826. name: "Female",
  23827. image: {
  23828. source: "./media/characters/mactarian/female.svg",
  23829. extra: 2662 / 2569,
  23830. bottom: 73 / 2736
  23831. }
  23832. },
  23833. male: {
  23834. height: math.unit(23.8, "m"),
  23835. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23836. name: "Male",
  23837. image: {
  23838. source: "./media/characters/mactarian/male.svg",
  23839. extra: 2673 / 2600,
  23840. bottom: 76 / 2750
  23841. }
  23842. },
  23843. },
  23844. [
  23845. {
  23846. name: "Macro",
  23847. height: math.unit(23.8, "meters"),
  23848. default: true
  23849. },
  23850. ]
  23851. ))
  23852. characterMakers.push(() => makeCharacter(
  23853. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23854. {
  23855. female: {
  23856. height: math.unit(19.3, "m"),
  23857. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23858. name: "Female",
  23859. image: {
  23860. source: "./media/characters/umok/female.svg",
  23861. extra: 2186 / 2078,
  23862. bottom: 87 / 2277
  23863. }
  23864. },
  23865. male: {
  23866. height: math.unit(19.5, "m"),
  23867. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23868. name: "Male",
  23869. image: {
  23870. source: "./media/characters/umok/male.svg",
  23871. extra: 2233 / 2140,
  23872. bottom: 24.4 / 2258
  23873. }
  23874. },
  23875. },
  23876. [
  23877. {
  23878. name: "Macro",
  23879. height: math.unit(19.3, "meters"),
  23880. default: true
  23881. },
  23882. ]
  23883. ))
  23884. characterMakers.push(() => makeCharacter(
  23885. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23886. {
  23887. female: {
  23888. height: math.unit(26.15, "m"),
  23889. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23890. name: "Female",
  23891. image: {
  23892. source: "./media/characters/joraxian/female.svg",
  23893. extra: 2912 / 2824,
  23894. bottom: 36 / 2956
  23895. }
  23896. },
  23897. male: {
  23898. height: math.unit(25.4, "m"),
  23899. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23900. name: "Male",
  23901. image: {
  23902. source: "./media/characters/joraxian/male.svg",
  23903. extra: 2877 / 2721,
  23904. bottom: 82 / 2967
  23905. }
  23906. },
  23907. },
  23908. [
  23909. {
  23910. name: "Macro",
  23911. height: math.unit(26.15, "meters"),
  23912. default: true
  23913. },
  23914. ]
  23915. ))
  23916. characterMakers.push(() => makeCharacter(
  23917. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23918. {
  23919. female: {
  23920. height: math.unit(21.6, "m"),
  23921. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23922. name: "Female",
  23923. image: {
  23924. source: "./media/characters/sthara/female.svg",
  23925. extra: 2516 / 2347,
  23926. bottom: 21.5 / 2537
  23927. }
  23928. },
  23929. male: {
  23930. height: math.unit(24, "m"),
  23931. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23932. name: "Male",
  23933. image: {
  23934. source: "./media/characters/sthara/male.svg",
  23935. extra: 2732 / 2607,
  23936. bottom: 23 / 2732
  23937. }
  23938. },
  23939. },
  23940. [
  23941. {
  23942. name: "Macro",
  23943. height: math.unit(21.6, "meters"),
  23944. default: true
  23945. },
  23946. ]
  23947. ))
  23948. characterMakers.push(() => makeCharacter(
  23949. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23950. {
  23951. front: {
  23952. height: math.unit(6 + 4 / 12, "feet"),
  23953. weight: math.unit(175, "lb"),
  23954. name: "Front",
  23955. image: {
  23956. source: "./media/characters/luka-bryzant/front.svg",
  23957. extra: 311 / 289,
  23958. bottom: 4 / 315
  23959. }
  23960. },
  23961. back: {
  23962. height: math.unit(6 + 4 / 12, "feet"),
  23963. weight: math.unit(175, "lb"),
  23964. name: "Back",
  23965. image: {
  23966. source: "./media/characters/luka-bryzant/back.svg",
  23967. extra: 311 / 289,
  23968. bottom: 3.8 / 313.7
  23969. }
  23970. },
  23971. },
  23972. [
  23973. {
  23974. name: "Micro",
  23975. height: math.unit(10, "inches")
  23976. },
  23977. {
  23978. name: "Normal",
  23979. height: math.unit(6 + 4 / 12, "feet"),
  23980. default: true
  23981. },
  23982. {
  23983. name: "Large",
  23984. height: math.unit(12, "feet")
  23985. },
  23986. ]
  23987. ))
  23988. characterMakers.push(() => makeCharacter(
  23989. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23990. {
  23991. front: {
  23992. height: math.unit(5 + 7 / 12, "feet"),
  23993. weight: math.unit(185, "lb"),
  23994. name: "Front",
  23995. image: {
  23996. source: "./media/characters/aman-aquila/front.svg",
  23997. extra: 1013 / 976,
  23998. bottom: 45.6 / 1057
  23999. }
  24000. },
  24001. side: {
  24002. height: math.unit(5 + 7 / 12, "feet"),
  24003. weight: math.unit(185, "lb"),
  24004. name: "Side",
  24005. image: {
  24006. source: "./media/characters/aman-aquila/side.svg",
  24007. extra: 1054 / 1011,
  24008. bottom: 15 / 1070
  24009. }
  24010. },
  24011. back: {
  24012. height: math.unit(5 + 7 / 12, "feet"),
  24013. weight: math.unit(185, "lb"),
  24014. name: "Back",
  24015. image: {
  24016. source: "./media/characters/aman-aquila/back.svg",
  24017. extra: 1026 / 970,
  24018. bottom: 12 / 1039
  24019. }
  24020. },
  24021. head: {
  24022. height: math.unit(1.211, "feet"),
  24023. name: "Head",
  24024. image: {
  24025. source: "./media/characters/aman-aquila/head.svg",
  24026. }
  24027. },
  24028. },
  24029. [
  24030. {
  24031. name: "Minimicro",
  24032. height: math.unit(0.057, "inches")
  24033. },
  24034. {
  24035. name: "Micro",
  24036. height: math.unit(7, "inches")
  24037. },
  24038. {
  24039. name: "Mini",
  24040. height: math.unit(3 + 7 / 12, "feet")
  24041. },
  24042. {
  24043. name: "Normal",
  24044. height: math.unit(5 + 7 / 12, "feet"),
  24045. default: true
  24046. },
  24047. {
  24048. name: "Macro",
  24049. height: math.unit(157 + 7 / 12, "feet")
  24050. },
  24051. {
  24052. name: "Megamacro",
  24053. height: math.unit(1557 + 7 / 12, "feet")
  24054. },
  24055. {
  24056. name: "Gigamacro",
  24057. height: math.unit(15557 + 7 / 12, "feet")
  24058. },
  24059. ]
  24060. ))
  24061. characterMakers.push(() => makeCharacter(
  24062. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24063. {
  24064. front: {
  24065. height: math.unit(3 + 2 / 12, "inches"),
  24066. weight: math.unit(0.3, "ounces"),
  24067. name: "Front",
  24068. image: {
  24069. source: "./media/characters/hiphae/front.svg",
  24070. extra: 1931 / 1683,
  24071. bottom: 24 / 1955
  24072. }
  24073. },
  24074. },
  24075. [
  24076. {
  24077. name: "Normal",
  24078. height: math.unit(3 + 1 / 2, "inches"),
  24079. default: true
  24080. },
  24081. ]
  24082. ))
  24083. characterMakers.push(() => makeCharacter(
  24084. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24085. {
  24086. front: {
  24087. height: math.unit(5 + 10 / 12, "feet"),
  24088. weight: math.unit(165, "lb"),
  24089. name: "Front",
  24090. image: {
  24091. source: "./media/characters/nicky/front.svg",
  24092. extra: 3144 / 2886,
  24093. bottom: 45.6 / 3192
  24094. }
  24095. },
  24096. back: {
  24097. height: math.unit(5 + 10 / 12, "feet"),
  24098. weight: math.unit(165, "lb"),
  24099. name: "Back",
  24100. image: {
  24101. source: "./media/characters/nicky/back.svg",
  24102. extra: 3055 / 2804,
  24103. bottom: 28.4 / 3087
  24104. }
  24105. },
  24106. frontclothed: {
  24107. height: math.unit(5 + 10 / 12, "feet"),
  24108. weight: math.unit(165, "lb"),
  24109. name: "Front-clothed",
  24110. image: {
  24111. source: "./media/characters/nicky/front-clothed.svg",
  24112. extra: 3184.9 / 2926.9,
  24113. bottom: 86.5 / 3239.9
  24114. }
  24115. },
  24116. foot: {
  24117. height: math.unit(1.16, "feet"),
  24118. name: "Foot",
  24119. image: {
  24120. source: "./media/characters/nicky/foot.svg"
  24121. }
  24122. },
  24123. feet: {
  24124. height: math.unit(1.34, "feet"),
  24125. name: "Feet",
  24126. image: {
  24127. source: "./media/characters/nicky/feet.svg"
  24128. }
  24129. },
  24130. maw: {
  24131. height: math.unit(0.9, "feet"),
  24132. name: "Maw",
  24133. image: {
  24134. source: "./media/characters/nicky/maw.svg"
  24135. }
  24136. },
  24137. },
  24138. [
  24139. {
  24140. name: "Normal",
  24141. height: math.unit(5 + 10 / 12, "feet"),
  24142. default: true
  24143. },
  24144. {
  24145. name: "Macro",
  24146. height: math.unit(60, "feet")
  24147. },
  24148. {
  24149. name: "Megamacro",
  24150. height: math.unit(1, "mile")
  24151. },
  24152. ]
  24153. ))
  24154. characterMakers.push(() => makeCharacter(
  24155. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24156. {
  24157. side: {
  24158. height: math.unit(10, "feet"),
  24159. weight: math.unit(600, "lb"),
  24160. name: "Side",
  24161. image: {
  24162. source: "./media/characters/blair/side.svg",
  24163. bottom: 16.6 / 475,
  24164. extra: 458 / 431
  24165. }
  24166. },
  24167. },
  24168. [
  24169. {
  24170. name: "Micro",
  24171. height: math.unit(8, "inches")
  24172. },
  24173. {
  24174. name: "Normal",
  24175. height: math.unit(10, "feet"),
  24176. default: true
  24177. },
  24178. {
  24179. name: "Macro",
  24180. height: math.unit(180, "feet")
  24181. },
  24182. ]
  24183. ))
  24184. characterMakers.push(() => makeCharacter(
  24185. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24186. {
  24187. front: {
  24188. height: math.unit(5 + 4 / 12, "feet"),
  24189. weight: math.unit(125, "lb"),
  24190. name: "Front",
  24191. image: {
  24192. source: "./media/characters/fisher/front.svg",
  24193. extra: 444 / 390,
  24194. bottom: 2 / 444.8
  24195. }
  24196. },
  24197. },
  24198. [
  24199. {
  24200. name: "Micro",
  24201. height: math.unit(4, "inches")
  24202. },
  24203. {
  24204. name: "Normal",
  24205. height: math.unit(5 + 4 / 12, "feet"),
  24206. default: true
  24207. },
  24208. {
  24209. name: "Macro",
  24210. height: math.unit(100, "feet")
  24211. },
  24212. ]
  24213. ))
  24214. characterMakers.push(() => makeCharacter(
  24215. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24216. {
  24217. front: {
  24218. height: math.unit(6.71, "feet"),
  24219. weight: math.unit(200, "lb"),
  24220. capacity: math.unit(1000000, "people"),
  24221. name: "Front",
  24222. image: {
  24223. source: "./media/characters/gliss/front.svg",
  24224. extra: 2347 / 2231,
  24225. bottom: 113 / 2462
  24226. }
  24227. },
  24228. hammerspaceSize: {
  24229. height: math.unit(6.71 * 717, "feet"),
  24230. weight: math.unit(200, "lb"),
  24231. capacity: math.unit(1000000, "people"),
  24232. name: "Hammerspace Size",
  24233. image: {
  24234. source: "./media/characters/gliss/front.svg",
  24235. extra: 2347 / 2231,
  24236. bottom: 113 / 2462
  24237. }
  24238. },
  24239. },
  24240. [
  24241. {
  24242. name: "Normal",
  24243. height: math.unit(6.71, "feet"),
  24244. default: true
  24245. },
  24246. ]
  24247. ))
  24248. characterMakers.push(() => makeCharacter(
  24249. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24250. {
  24251. side: {
  24252. height: math.unit(1.44, "m"),
  24253. weight: math.unit(80, "kg"),
  24254. name: "Side",
  24255. image: {
  24256. source: "./media/characters/dune-anderson/side.svg",
  24257. bottom: 49 / 1426
  24258. }
  24259. },
  24260. },
  24261. [
  24262. {
  24263. name: "Wolf-sized",
  24264. height: math.unit(1.44, "meters")
  24265. },
  24266. {
  24267. name: "Normal",
  24268. height: math.unit(5.05, "meters"),
  24269. default: true
  24270. },
  24271. {
  24272. name: "Big",
  24273. height: math.unit(14.4, "meters")
  24274. },
  24275. {
  24276. name: "Huge",
  24277. height: math.unit(144, "meters")
  24278. },
  24279. ]
  24280. ))
  24281. characterMakers.push(() => makeCharacter(
  24282. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24283. {
  24284. front: {
  24285. height: math.unit(7, "feet"),
  24286. weight: math.unit(425, "lb"),
  24287. name: "Front",
  24288. image: {
  24289. source: "./media/characters/hind/front.svg",
  24290. extra: 2091 / 1860,
  24291. bottom: 129 / 2220
  24292. }
  24293. },
  24294. back: {
  24295. height: math.unit(7, "feet"),
  24296. weight: math.unit(425, "lb"),
  24297. name: "Back",
  24298. image: {
  24299. source: "./media/characters/hind/back.svg",
  24300. extra: 2091 / 1860,
  24301. bottom: 24.6 / 2309
  24302. }
  24303. },
  24304. tail: {
  24305. height: math.unit(2.8, "feet"),
  24306. name: "Tail",
  24307. image: {
  24308. source: "./media/characters/hind/tail.svg"
  24309. }
  24310. },
  24311. head: {
  24312. height: math.unit(2.55, "feet"),
  24313. name: "Head",
  24314. image: {
  24315. source: "./media/characters/hind/head.svg"
  24316. }
  24317. },
  24318. },
  24319. [
  24320. {
  24321. name: "XS",
  24322. height: math.unit(0.7, "feet")
  24323. },
  24324. {
  24325. name: "Normal",
  24326. height: math.unit(7, "feet"),
  24327. default: true
  24328. },
  24329. {
  24330. name: "XL",
  24331. height: math.unit(70, "feet")
  24332. },
  24333. ]
  24334. ))
  24335. characterMakers.push(() => makeCharacter(
  24336. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24337. {
  24338. front: {
  24339. height: math.unit(6, "feet"),
  24340. weight: math.unit(150, "lb"),
  24341. name: "Front",
  24342. image: {
  24343. source: "./media/characters/dylan-skaven/front.svg",
  24344. extra: 2318 / 2063,
  24345. bottom: 93.4 / 2410
  24346. }
  24347. },
  24348. },
  24349. [
  24350. {
  24351. name: "Nano",
  24352. height: math.unit(1, "mm")
  24353. },
  24354. {
  24355. name: "Micro",
  24356. height: math.unit(1, "cm")
  24357. },
  24358. {
  24359. name: "Normal",
  24360. height: math.unit(2.1, "meters"),
  24361. default: true
  24362. },
  24363. ]
  24364. ))
  24365. characterMakers.push(() => makeCharacter(
  24366. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24367. {
  24368. front: {
  24369. height: math.unit(7 + 5 / 12, "feet"),
  24370. weight: math.unit(357, "lb"),
  24371. name: "Front",
  24372. image: {
  24373. source: "./media/characters/solex-draconov/front.svg",
  24374. extra: 1993 / 1865,
  24375. bottom: 117 / 2111
  24376. }
  24377. },
  24378. },
  24379. [
  24380. {
  24381. name: "Natural Height",
  24382. height: math.unit(7 + 5 / 12, "feet"),
  24383. default: true
  24384. },
  24385. {
  24386. name: "Macro",
  24387. height: math.unit(350, "feet")
  24388. },
  24389. {
  24390. name: "Macro+",
  24391. height: math.unit(1000, "feet")
  24392. },
  24393. {
  24394. name: "Megamacro",
  24395. height: math.unit(20, "km")
  24396. },
  24397. {
  24398. name: "Megamacro+",
  24399. height: math.unit(1000, "km")
  24400. },
  24401. {
  24402. name: "Gigamacro",
  24403. height: math.unit(2.5, "Gm")
  24404. },
  24405. {
  24406. name: "Teramacro",
  24407. height: math.unit(15, "Tm")
  24408. },
  24409. {
  24410. name: "Galactic",
  24411. height: math.unit(30, "Zm")
  24412. },
  24413. {
  24414. name: "Universal",
  24415. height: math.unit(21000, "Ym")
  24416. },
  24417. {
  24418. name: "Omniversal",
  24419. height: math.unit(9.861e50, "Ym")
  24420. },
  24421. {
  24422. name: "Existential",
  24423. height: math.unit(1e300, "meters")
  24424. },
  24425. ]
  24426. ))
  24427. characterMakers.push(() => makeCharacter(
  24428. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24429. {
  24430. side: {
  24431. height: math.unit(25, "feet"),
  24432. weight: math.unit(90000, "lb"),
  24433. name: "Side",
  24434. image: {
  24435. source: "./media/characters/mandarax/side.svg",
  24436. extra: 614 / 332,
  24437. bottom: 55 / 630
  24438. }
  24439. },
  24440. head: {
  24441. height: math.unit(11.4, "feet"),
  24442. name: "Head",
  24443. image: {
  24444. source: "./media/characters/mandarax/head.svg"
  24445. }
  24446. },
  24447. belly: {
  24448. height: math.unit(33, "feet"),
  24449. name: "Belly",
  24450. capacity: math.unit(500, "people"),
  24451. image: {
  24452. source: "./media/characters/mandarax/belly.svg"
  24453. }
  24454. },
  24455. dick: {
  24456. height: math.unit(8.46, "feet"),
  24457. name: "Dick",
  24458. image: {
  24459. source: "./media/characters/mandarax/dick.svg"
  24460. }
  24461. },
  24462. top: {
  24463. height: math.unit(28, "meters"),
  24464. name: "Top",
  24465. image: {
  24466. source: "./media/characters/mandarax/top.svg"
  24467. }
  24468. },
  24469. },
  24470. [
  24471. {
  24472. name: "Normal",
  24473. height: math.unit(25, "feet"),
  24474. default: true
  24475. },
  24476. ]
  24477. ))
  24478. characterMakers.push(() => makeCharacter(
  24479. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24480. {
  24481. front: {
  24482. height: math.unit(5, "feet"),
  24483. weight: math.unit(90, "lb"),
  24484. name: "Front",
  24485. image: {
  24486. source: "./media/characters/pixil/front.svg",
  24487. extra: 2000 / 1618,
  24488. bottom: 12.3 / 2011
  24489. }
  24490. },
  24491. },
  24492. [
  24493. {
  24494. name: "Normal",
  24495. height: math.unit(5, "feet"),
  24496. default: true
  24497. },
  24498. {
  24499. name: "Megamacro",
  24500. height: math.unit(10, "miles"),
  24501. },
  24502. ]
  24503. ))
  24504. characterMakers.push(() => makeCharacter(
  24505. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24506. {
  24507. front: {
  24508. height: math.unit(7 + 2 / 12, "feet"),
  24509. weight: math.unit(200, "lb"),
  24510. name: "Front",
  24511. image: {
  24512. source: "./media/characters/angel/front.svg",
  24513. extra: 1830 / 1737,
  24514. bottom: 22.6 / 1854,
  24515. }
  24516. },
  24517. },
  24518. [
  24519. {
  24520. name: "Normal",
  24521. height: math.unit(7 + 2 / 12, "feet"),
  24522. default: true
  24523. },
  24524. {
  24525. name: "Macro",
  24526. height: math.unit(1000, "feet")
  24527. },
  24528. {
  24529. name: "Megamacro",
  24530. height: math.unit(2, "miles")
  24531. },
  24532. {
  24533. name: "Gigamacro",
  24534. height: math.unit(20, "earths")
  24535. },
  24536. ]
  24537. ))
  24538. characterMakers.push(() => makeCharacter(
  24539. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24540. {
  24541. front: {
  24542. height: math.unit(5, "feet"),
  24543. weight: math.unit(180, "lb"),
  24544. name: "Front",
  24545. image: {
  24546. source: "./media/characters/mekana/front.svg",
  24547. extra: 1671 / 1605,
  24548. bottom: 3.5 / 1691
  24549. }
  24550. },
  24551. side: {
  24552. height: math.unit(5, "feet"),
  24553. weight: math.unit(180, "lb"),
  24554. name: "Side",
  24555. image: {
  24556. source: "./media/characters/mekana/side.svg",
  24557. extra: 1671 / 1605,
  24558. bottom: 3.5 / 1691
  24559. }
  24560. },
  24561. back: {
  24562. height: math.unit(5, "feet"),
  24563. weight: math.unit(180, "lb"),
  24564. name: "Back",
  24565. image: {
  24566. source: "./media/characters/mekana/back.svg",
  24567. extra: 1671 / 1605,
  24568. bottom: 3.5 / 1691
  24569. }
  24570. },
  24571. },
  24572. [
  24573. {
  24574. name: "Normal",
  24575. height: math.unit(5, "feet"),
  24576. default: true
  24577. },
  24578. ]
  24579. ))
  24580. characterMakers.push(() => makeCharacter(
  24581. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24582. {
  24583. front: {
  24584. height: math.unit(4 + 6 / 12, "feet"),
  24585. weight: math.unit(80, "lb"),
  24586. name: "Front",
  24587. image: {
  24588. source: "./media/characters/pixie/front.svg",
  24589. extra: 1924 / 1825,
  24590. bottom: 22.4 / 1946
  24591. }
  24592. },
  24593. },
  24594. [
  24595. {
  24596. name: "Normal",
  24597. height: math.unit(4 + 6 / 12, "feet"),
  24598. default: true
  24599. },
  24600. {
  24601. name: "Macro",
  24602. height: math.unit(40, "feet")
  24603. },
  24604. ]
  24605. ))
  24606. characterMakers.push(() => makeCharacter(
  24607. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24608. {
  24609. front: {
  24610. height: math.unit(2.1, "meters"),
  24611. weight: math.unit(200, "lb"),
  24612. name: "Front",
  24613. image: {
  24614. source: "./media/characters/the-lascivious/front.svg",
  24615. extra: 1 / 0.893,
  24616. bottom: 3.5 / 573.7
  24617. }
  24618. },
  24619. },
  24620. [
  24621. {
  24622. name: "Human Scale",
  24623. height: math.unit(2.1, "meters")
  24624. },
  24625. {
  24626. name: "Wolxi Scale",
  24627. height: math.unit(46.2, "m"),
  24628. default: true
  24629. },
  24630. {
  24631. name: "Boinker of Buildings",
  24632. height: math.unit(10, "km")
  24633. },
  24634. {
  24635. name: "Shagger of Skyscrapers",
  24636. height: math.unit(40, "km")
  24637. },
  24638. {
  24639. name: "Banger of Boroughs",
  24640. height: math.unit(4000, "km")
  24641. },
  24642. {
  24643. name: "Screwer of States",
  24644. height: math.unit(100000, "km")
  24645. },
  24646. {
  24647. name: "Pounder of Planets",
  24648. height: math.unit(2000000, "km")
  24649. },
  24650. ]
  24651. ))
  24652. characterMakers.push(() => makeCharacter(
  24653. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24654. {
  24655. front: {
  24656. height: math.unit(6, "feet"),
  24657. weight: math.unit(150, "lb"),
  24658. name: "Front",
  24659. image: {
  24660. source: "./media/characters/aj/front.svg",
  24661. extra: 2039 / 1562,
  24662. bottom: 40 / 2079
  24663. }
  24664. },
  24665. },
  24666. [
  24667. {
  24668. name: "Normal",
  24669. height: math.unit(11 + 6 / 12, "feet"),
  24670. default: true
  24671. },
  24672. {
  24673. name: "Megamacro",
  24674. height: math.unit(60, "megameters")
  24675. },
  24676. ]
  24677. ))
  24678. characterMakers.push(() => makeCharacter(
  24679. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24680. {
  24681. side: {
  24682. height: math.unit(31 + 8 / 12, "feet"),
  24683. weight: math.unit(75000, "kg"),
  24684. name: "Side",
  24685. image: {
  24686. source: "./media/characters/koros/side.svg",
  24687. extra: 1442 / 1297,
  24688. bottom: 122.7 / 1562
  24689. }
  24690. },
  24691. dicksKingsCrown: {
  24692. height: math.unit(6, "feet"),
  24693. name: "Dicks (King's Crown)",
  24694. image: {
  24695. source: "./media/characters/koros/dicks-kings-crown.svg"
  24696. }
  24697. },
  24698. dicksTailSet: {
  24699. height: math.unit(3, "feet"),
  24700. name: "Dicks (Tail Set)",
  24701. image: {
  24702. source: "./media/characters/koros/dicks-tail-set.svg"
  24703. }
  24704. },
  24705. dickCumming: {
  24706. height: math.unit(7.98, "feet"),
  24707. name: "Dick (Cumming)",
  24708. image: {
  24709. source: "./media/characters/koros/dick-cumming.svg"
  24710. }
  24711. },
  24712. dicksBack: {
  24713. height: math.unit(5.9, "feet"),
  24714. name: "Dicks (Back)",
  24715. image: {
  24716. source: "./media/characters/koros/dicks-back.svg"
  24717. }
  24718. },
  24719. dicksFront: {
  24720. height: math.unit(3.72, "feet"),
  24721. name: "Dicks (Front)",
  24722. image: {
  24723. source: "./media/characters/koros/dicks-front.svg"
  24724. }
  24725. },
  24726. dicksPeeking: {
  24727. height: math.unit(3.0, "feet"),
  24728. name: "Dicks (Peeking)",
  24729. image: {
  24730. source: "./media/characters/koros/dicks-peeking.svg"
  24731. }
  24732. },
  24733. eye: {
  24734. height: math.unit(1.7, "feet"),
  24735. name: "Eye",
  24736. image: {
  24737. source: "./media/characters/koros/eye.svg"
  24738. }
  24739. },
  24740. headFront: {
  24741. height: math.unit(11.69, "feet"),
  24742. name: "Head (Front)",
  24743. image: {
  24744. source: "./media/characters/koros/head-front.svg"
  24745. }
  24746. },
  24747. headSide: {
  24748. height: math.unit(14, "feet"),
  24749. name: "Head (Side)",
  24750. image: {
  24751. source: "./media/characters/koros/head-side.svg"
  24752. }
  24753. },
  24754. leg: {
  24755. height: math.unit(17, "feet"),
  24756. name: "Leg",
  24757. image: {
  24758. source: "./media/characters/koros/leg.svg"
  24759. }
  24760. },
  24761. mawSide: {
  24762. height: math.unit(12.8, "feet"),
  24763. name: "Maw (Side)",
  24764. image: {
  24765. source: "./media/characters/koros/maw-side.svg"
  24766. }
  24767. },
  24768. mawSpitting: {
  24769. height: math.unit(17, "feet"),
  24770. name: "Maw (Spitting)",
  24771. image: {
  24772. source: "./media/characters/koros/maw-spitting.svg"
  24773. }
  24774. },
  24775. slit: {
  24776. height: math.unit(2.8, "feet"),
  24777. name: "Slit",
  24778. image: {
  24779. source: "./media/characters/koros/slit.svg"
  24780. }
  24781. },
  24782. stomach: {
  24783. height: math.unit(6.8, "feet"),
  24784. capacity: math.unit(20, "people"),
  24785. name: "Stomach",
  24786. image: {
  24787. source: "./media/characters/koros/stomach.svg"
  24788. }
  24789. },
  24790. wingspanBottom: {
  24791. height: math.unit(114, "feet"),
  24792. name: "Wingspan (Bottom)",
  24793. image: {
  24794. source: "./media/characters/koros/wingspan-bottom.svg"
  24795. }
  24796. },
  24797. wingspanTop: {
  24798. height: math.unit(104, "feet"),
  24799. name: "Wingspan (Top)",
  24800. image: {
  24801. source: "./media/characters/koros/wingspan-top.svg"
  24802. }
  24803. },
  24804. },
  24805. [
  24806. {
  24807. name: "Normal",
  24808. height: math.unit(31 + 8 / 12, "feet"),
  24809. default: true
  24810. },
  24811. ]
  24812. ))
  24813. characterMakers.push(() => makeCharacter(
  24814. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24815. {
  24816. front: {
  24817. height: math.unit(18 + 5 / 12, "feet"),
  24818. weight: math.unit(3750, "kg"),
  24819. name: "Front",
  24820. image: {
  24821. source: "./media/characters/vexx/front.svg",
  24822. extra: 426 / 396,
  24823. bottom: 31.5 / 458
  24824. }
  24825. },
  24826. maw: {
  24827. height: math.unit(6, "feet"),
  24828. name: "Maw",
  24829. image: {
  24830. source: "./media/characters/vexx/maw.svg"
  24831. }
  24832. },
  24833. },
  24834. [
  24835. {
  24836. name: "Normal",
  24837. height: math.unit(18 + 5 / 12, "feet"),
  24838. default: true
  24839. },
  24840. ]
  24841. ))
  24842. characterMakers.push(() => makeCharacter(
  24843. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24844. {
  24845. front: {
  24846. height: math.unit(17 + 6 / 12, "feet"),
  24847. weight: math.unit(150, "lb"),
  24848. name: "Front",
  24849. image: {
  24850. source: "./media/characters/baadra/front.svg",
  24851. extra: 3137 / 2890,
  24852. bottom: 168.4 / 3305
  24853. }
  24854. },
  24855. back: {
  24856. height: math.unit(17 + 6 / 12, "feet"),
  24857. weight: math.unit(150, "lb"),
  24858. name: "Back",
  24859. image: {
  24860. source: "./media/characters/baadra/back.svg",
  24861. extra: 3142 / 2890,
  24862. bottom: 220 / 3371
  24863. }
  24864. },
  24865. head: {
  24866. height: math.unit(5.45, "feet"),
  24867. name: "Head",
  24868. image: {
  24869. source: "./media/characters/baadra/head.svg"
  24870. }
  24871. },
  24872. headAngry: {
  24873. height: math.unit(4.95, "feet"),
  24874. name: "Head (Angry)",
  24875. image: {
  24876. source: "./media/characters/baadra/head-angry.svg"
  24877. }
  24878. },
  24879. headOpen: {
  24880. height: math.unit(6, "feet"),
  24881. name: "Head (Open)",
  24882. image: {
  24883. source: "./media/characters/baadra/head-open.svg"
  24884. }
  24885. },
  24886. },
  24887. [
  24888. {
  24889. name: "Normal",
  24890. height: math.unit(17 + 6 / 12, "feet"),
  24891. default: true
  24892. },
  24893. ]
  24894. ))
  24895. characterMakers.push(() => makeCharacter(
  24896. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24897. {
  24898. front: {
  24899. height: math.unit(7 + 3 / 12, "feet"),
  24900. weight: math.unit(180, "lb"),
  24901. name: "Front",
  24902. image: {
  24903. source: "./media/characters/juri/front.svg",
  24904. extra: 1401 / 1237,
  24905. bottom: 18.5 / 1418
  24906. }
  24907. },
  24908. side: {
  24909. height: math.unit(7 + 3 / 12, "feet"),
  24910. weight: math.unit(180, "lb"),
  24911. name: "Side",
  24912. image: {
  24913. source: "./media/characters/juri/side.svg",
  24914. extra: 1424 / 1242,
  24915. bottom: 18.5 / 1447
  24916. }
  24917. },
  24918. sitting: {
  24919. height: math.unit(6, "feet"),
  24920. weight: math.unit(180, "lb"),
  24921. name: "Sitting",
  24922. image: {
  24923. source: "./media/characters/juri/sitting.svg",
  24924. extra: 1270 / 1143,
  24925. bottom: 100 / 1343
  24926. }
  24927. },
  24928. back: {
  24929. height: math.unit(7 + 3 / 12, "feet"),
  24930. weight: math.unit(180, "lb"),
  24931. name: "Back",
  24932. image: {
  24933. source: "./media/characters/juri/back.svg",
  24934. extra: 1377 / 1240,
  24935. bottom: 23.7 / 1405
  24936. }
  24937. },
  24938. maw: {
  24939. height: math.unit(2.8, "feet"),
  24940. name: "Maw",
  24941. image: {
  24942. source: "./media/characters/juri/maw.svg"
  24943. }
  24944. },
  24945. stomach: {
  24946. height: math.unit(0.89, "feet"),
  24947. capacity: math.unit(4, "liters"),
  24948. name: "Stomach",
  24949. image: {
  24950. source: "./media/characters/juri/stomach.svg"
  24951. }
  24952. },
  24953. },
  24954. [
  24955. {
  24956. name: "Normal",
  24957. height: math.unit(7 + 3 / 12, "feet"),
  24958. default: true
  24959. },
  24960. ]
  24961. ))
  24962. characterMakers.push(() => makeCharacter(
  24963. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  24964. {
  24965. fox: {
  24966. height: math.unit(5 + 6 / 12, "feet"),
  24967. weight: math.unit(140, "lb"),
  24968. name: "Fox",
  24969. image: {
  24970. source: "./media/characters/maxene-sita/fox.svg",
  24971. extra: 146 / 138,
  24972. bottom: 2.1 / 148.19
  24973. }
  24974. },
  24975. foxLaying: {
  24976. height: math.unit(1.70, "feet"),
  24977. weight: math.unit(140, "lb"),
  24978. name: "Fox (Laying)",
  24979. image: {
  24980. source: "./media/characters/maxene-sita/fox-laying.svg",
  24981. extra: 910 / 572,
  24982. bottom: 71 / 981
  24983. }
  24984. },
  24985. kitsune: {
  24986. height: math.unit(10, "feet"),
  24987. weight: math.unit(800, "lb"),
  24988. name: "Kitsune",
  24989. image: {
  24990. source: "./media/characters/maxene-sita/kitsune.svg",
  24991. extra: 185 / 176,
  24992. bottom: 4.7 / 189.9
  24993. }
  24994. },
  24995. hellhound: {
  24996. height: math.unit(10, "feet"),
  24997. weight: math.unit(700, "lb"),
  24998. name: "Hellhound",
  24999. image: {
  25000. source: "./media/characters/maxene-sita/hellhound.svg",
  25001. extra: 1600 / 1545,
  25002. bottom: 81 / 1681
  25003. }
  25004. },
  25005. },
  25006. [
  25007. {
  25008. name: "Normal",
  25009. height: math.unit(5 + 6 / 12, "feet"),
  25010. default: true
  25011. },
  25012. ]
  25013. ))
  25014. characterMakers.push(() => makeCharacter(
  25015. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25016. {
  25017. front: {
  25018. height: math.unit(3 + 4 / 12, "feet"),
  25019. weight: math.unit(70, "lb"),
  25020. name: "Front",
  25021. image: {
  25022. source: "./media/characters/maia/front.svg",
  25023. extra: 227 / 219.5,
  25024. bottom: 40 / 267
  25025. }
  25026. },
  25027. back: {
  25028. height: math.unit(3 + 4 / 12, "feet"),
  25029. weight: math.unit(70, "lb"),
  25030. name: "Back",
  25031. image: {
  25032. source: "./media/characters/maia/back.svg",
  25033. extra: 237 / 225
  25034. }
  25035. },
  25036. },
  25037. [
  25038. {
  25039. name: "Normal",
  25040. height: math.unit(3 + 4 / 12, "feet"),
  25041. default: true
  25042. },
  25043. ]
  25044. ))
  25045. characterMakers.push(() => makeCharacter(
  25046. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25047. {
  25048. front: {
  25049. height: math.unit(5 + 10 / 12, "feet"),
  25050. weight: math.unit(197, "lb"),
  25051. name: "Front",
  25052. image: {
  25053. source: "./media/characters/jabaro/front.svg",
  25054. extra: 225 / 216,
  25055. bottom: 5.06 / 230
  25056. }
  25057. },
  25058. back: {
  25059. height: math.unit(5 + 10 / 12, "feet"),
  25060. weight: math.unit(197, "lb"),
  25061. name: "Back",
  25062. image: {
  25063. source: "./media/characters/jabaro/back.svg",
  25064. extra: 225 / 219,
  25065. bottom: 1.9 / 227
  25066. }
  25067. },
  25068. },
  25069. [
  25070. {
  25071. name: "Normal",
  25072. height: math.unit(5 + 10 / 12, "feet"),
  25073. default: true
  25074. },
  25075. ]
  25076. ))
  25077. characterMakers.push(() => makeCharacter(
  25078. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25079. {
  25080. front: {
  25081. height: math.unit(5 + 8 / 12, "feet"),
  25082. weight: math.unit(139, "lb"),
  25083. name: "Front",
  25084. image: {
  25085. source: "./media/characters/risa/front.svg",
  25086. extra: 270 / 260,
  25087. bottom: 11.2 / 282
  25088. }
  25089. },
  25090. back: {
  25091. height: math.unit(5 + 8 / 12, "feet"),
  25092. weight: math.unit(139, "lb"),
  25093. name: "Back",
  25094. image: {
  25095. source: "./media/characters/risa/back.svg",
  25096. extra: 264 / 255,
  25097. bottom: 4 / 268
  25098. }
  25099. },
  25100. },
  25101. [
  25102. {
  25103. name: "Normal",
  25104. height: math.unit(5 + 8 / 12, "feet"),
  25105. default: true
  25106. },
  25107. ]
  25108. ))
  25109. characterMakers.push(() => makeCharacter(
  25110. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25111. {
  25112. front: {
  25113. height: math.unit(2 + 11 / 12, "feet"),
  25114. weight: math.unit(30, "lb"),
  25115. name: "Front",
  25116. image: {
  25117. source: "./media/characters/weatley/front.svg",
  25118. bottom: 10.7 / 414,
  25119. extra: 403.5 / 362
  25120. }
  25121. },
  25122. back: {
  25123. height: math.unit(2 + 11 / 12, "feet"),
  25124. weight: math.unit(30, "lb"),
  25125. name: "Back",
  25126. image: {
  25127. source: "./media/characters/weatley/back.svg",
  25128. bottom: 10.7 / 414,
  25129. extra: 403.5 / 362
  25130. }
  25131. },
  25132. },
  25133. [
  25134. {
  25135. name: "Normal",
  25136. height: math.unit(2 + 11 / 12, "feet"),
  25137. default: true
  25138. },
  25139. ]
  25140. ))
  25141. characterMakers.push(() => makeCharacter(
  25142. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25143. {
  25144. front: {
  25145. height: math.unit(5 + 2 / 12, "feet"),
  25146. weight: math.unit(50, "kg"),
  25147. name: "Front",
  25148. image: {
  25149. source: "./media/characters/mercury-crescent/front.svg",
  25150. extra: 1088 / 1033,
  25151. bottom: 18.9 / 1109
  25152. }
  25153. },
  25154. },
  25155. [
  25156. {
  25157. name: "Normal",
  25158. height: math.unit(5 + 2 / 12, "feet"),
  25159. default: true
  25160. },
  25161. ]
  25162. ))
  25163. characterMakers.push(() => makeCharacter(
  25164. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25165. {
  25166. front: {
  25167. height: math.unit(2, "feet"),
  25168. weight: math.unit(15, "kg"),
  25169. name: "Front",
  25170. image: {
  25171. source: "./media/characters/diamond-jones/front.svg",
  25172. bottom: 16 / 568
  25173. }
  25174. },
  25175. },
  25176. [
  25177. {
  25178. name: "Normal",
  25179. height: math.unit(2, "feet"),
  25180. default: true
  25181. },
  25182. ]
  25183. ))
  25184. characterMakers.push(() => makeCharacter(
  25185. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25186. {
  25187. front: {
  25188. height: math.unit(3, "feet"),
  25189. weight: math.unit(30, "kg"),
  25190. name: "Front",
  25191. image: {
  25192. source: "./media/characters/sweet-bit/front.svg",
  25193. extra: 675 / 567,
  25194. bottom: 27.7 / 703
  25195. }
  25196. },
  25197. },
  25198. [
  25199. {
  25200. name: "Normal",
  25201. height: math.unit(3, "feet"),
  25202. default: true
  25203. },
  25204. ]
  25205. ))
  25206. characterMakers.push(() => makeCharacter(
  25207. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25208. {
  25209. side: {
  25210. height: math.unit(9.178, "feet"),
  25211. weight: math.unit(500, "lb"),
  25212. name: "Side",
  25213. image: {
  25214. source: "./media/characters/umbrazen/side.svg",
  25215. extra: 1730 / 1473,
  25216. bottom: 34.6 / 1765
  25217. }
  25218. },
  25219. },
  25220. [
  25221. {
  25222. name: "Normal",
  25223. height: math.unit(9.178, "feet"),
  25224. default: true
  25225. },
  25226. ]
  25227. ))
  25228. characterMakers.push(() => makeCharacter(
  25229. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25230. {
  25231. front: {
  25232. height: math.unit(10, "feet"),
  25233. weight: math.unit(750, "lb"),
  25234. name: "Front",
  25235. image: {
  25236. source: "./media/characters/arlist/front.svg",
  25237. extra: 961 / 778,
  25238. bottom: 6.2 / 986
  25239. }
  25240. },
  25241. },
  25242. [
  25243. {
  25244. name: "Normal",
  25245. height: math.unit(10, "feet"),
  25246. default: true
  25247. },
  25248. ]
  25249. ))
  25250. characterMakers.push(() => makeCharacter(
  25251. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25252. {
  25253. front: {
  25254. height: math.unit(5 + 1 / 12, "feet"),
  25255. weight: math.unit(110, "lb"),
  25256. name: "Front",
  25257. image: {
  25258. source: "./media/characters/aradel/front.svg",
  25259. extra: 324 / 303,
  25260. bottom: 3.6 / 329.4
  25261. }
  25262. },
  25263. },
  25264. [
  25265. {
  25266. name: "Normal",
  25267. height: math.unit(5 + 1 / 12, "feet"),
  25268. default: true
  25269. },
  25270. ]
  25271. ))
  25272. characterMakers.push(() => makeCharacter(
  25273. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25274. {
  25275. front: {
  25276. height: math.unit(3 + 8 / 12, "feet"),
  25277. weight: math.unit(50, "lb"),
  25278. name: "Front",
  25279. image: {
  25280. source: "./media/characters/serryn/front.svg",
  25281. extra: 1792 / 1656,
  25282. bottom: 43.5 / 1840
  25283. }
  25284. },
  25285. },
  25286. [
  25287. {
  25288. name: "Normal",
  25289. height: math.unit(3 + 8 / 12, "feet"),
  25290. default: true
  25291. },
  25292. ]
  25293. ))
  25294. characterMakers.push(() => makeCharacter(
  25295. { name: "Xavier Thyme" },
  25296. {
  25297. front: {
  25298. height: math.unit(7 + 10 / 12, "feet"),
  25299. weight: math.unit(255, "lb"),
  25300. name: "Front",
  25301. image: {
  25302. source: "./media/characters/xavier-thyme/front.svg",
  25303. extra: 3733 / 3642,
  25304. bottom: 131 / 3869
  25305. }
  25306. },
  25307. frontRaven: {
  25308. height: math.unit(7 + 10 / 12, "feet"),
  25309. weight: math.unit(255, "lb"),
  25310. name: "Front (Raven)",
  25311. image: {
  25312. source: "./media/characters/xavier-thyme/front-raven.svg",
  25313. extra: 4385 / 3642,
  25314. bottom: 131 / 4517
  25315. }
  25316. },
  25317. },
  25318. [
  25319. {
  25320. name: "Normal",
  25321. height: math.unit(7 + 10 / 12, "feet"),
  25322. default: true
  25323. },
  25324. ]
  25325. ))
  25326. characterMakers.push(() => makeCharacter(
  25327. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25328. {
  25329. front: {
  25330. height: math.unit(1.6, "m"),
  25331. weight: math.unit(50, "kg"),
  25332. name: "Front",
  25333. image: {
  25334. source: "./media/characters/kiki/front.svg",
  25335. extra: 4682 / 3610,
  25336. bottom: 115 / 4777
  25337. }
  25338. },
  25339. },
  25340. [
  25341. {
  25342. name: "Normal",
  25343. height: math.unit(1.6, "meters"),
  25344. default: true
  25345. },
  25346. ]
  25347. ))
  25348. characterMakers.push(() => makeCharacter(
  25349. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25350. {
  25351. front: {
  25352. height: math.unit(50, "m"),
  25353. weight: math.unit(500, "tonnes"),
  25354. name: "Front",
  25355. image: {
  25356. source: "./media/characters/ryoko/front.svg",
  25357. extra: 4632 / 3926,
  25358. bottom: 193 / 4823
  25359. }
  25360. },
  25361. },
  25362. [
  25363. {
  25364. name: "Normal",
  25365. height: math.unit(50, "meters"),
  25366. default: true
  25367. },
  25368. ]
  25369. ))
  25370. characterMakers.push(() => makeCharacter(
  25371. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25372. {
  25373. front: {
  25374. height: math.unit(30, "m"),
  25375. weight: math.unit(22, "tonnes"),
  25376. name: "Front",
  25377. image: {
  25378. source: "./media/characters/elio/front.svg",
  25379. extra: 4582 / 3720,
  25380. bottom: 236 / 4828
  25381. }
  25382. },
  25383. },
  25384. [
  25385. {
  25386. name: "Normal",
  25387. height: math.unit(30, "meters"),
  25388. default: true
  25389. },
  25390. ]
  25391. ))
  25392. characterMakers.push(() => makeCharacter(
  25393. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25394. {
  25395. front: {
  25396. height: math.unit(6 + 3 / 12, "feet"),
  25397. weight: math.unit(120, "lb"),
  25398. name: "Front",
  25399. image: {
  25400. source: "./media/characters/azura/front.svg",
  25401. extra: 1149 / 1135,
  25402. bottom: 45 / 1194
  25403. }
  25404. },
  25405. frontClothed: {
  25406. height: math.unit(6 + 3 / 12, "feet"),
  25407. weight: math.unit(120, "lb"),
  25408. name: "Front (Clothed)",
  25409. image: {
  25410. source: "./media/characters/azura/front-clothed.svg",
  25411. extra: 1149 / 1135,
  25412. bottom: 45 / 1194
  25413. }
  25414. },
  25415. },
  25416. [
  25417. {
  25418. name: "Normal",
  25419. height: math.unit(6 + 3 / 12, "feet"),
  25420. default: true
  25421. },
  25422. {
  25423. name: "Macro",
  25424. height: math.unit(20 + 6 / 12, "feet")
  25425. },
  25426. {
  25427. name: "Megamacro",
  25428. height: math.unit(12, "miles")
  25429. },
  25430. {
  25431. name: "Gigamacro",
  25432. height: math.unit(10000, "miles")
  25433. },
  25434. {
  25435. name: "Teramacro",
  25436. height: math.unit(900000, "miles")
  25437. },
  25438. ]
  25439. ))
  25440. characterMakers.push(() => makeCharacter(
  25441. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25442. {
  25443. front: {
  25444. height: math.unit(12, "feet"),
  25445. weight: math.unit(1, "ton"),
  25446. capacity: math.unit(660000, "gallons"),
  25447. name: "Front",
  25448. image: {
  25449. source: "./media/characters/zeus/front.svg",
  25450. extra: 5005 / 4717,
  25451. bottom: 363 / 5388
  25452. }
  25453. },
  25454. },
  25455. [
  25456. {
  25457. name: "Normal",
  25458. height: math.unit(12, "feet")
  25459. },
  25460. {
  25461. name: "Preferred Size",
  25462. height: math.unit(0.5, "miles"),
  25463. default: true
  25464. },
  25465. {
  25466. name: "Giga Horse",
  25467. height: math.unit(300, "miles")
  25468. },
  25469. {
  25470. name: "Riding Planets",
  25471. height: math.unit(30, "megameters")
  25472. },
  25473. {
  25474. name: "Cosmic Giant",
  25475. height: math.unit(3, "zettameters")
  25476. },
  25477. {
  25478. name: "Breeding God",
  25479. height: math.unit(9.92e22, "yottameters")
  25480. },
  25481. ]
  25482. ))
  25483. characterMakers.push(() => makeCharacter(
  25484. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25485. {
  25486. side: {
  25487. height: math.unit(9, "feet"),
  25488. weight: math.unit(1500, "kg"),
  25489. name: "Side",
  25490. image: {
  25491. source: "./media/characters/fang/side.svg",
  25492. extra: 924 / 866,
  25493. bottom: 47.5 / 972.3
  25494. }
  25495. },
  25496. },
  25497. [
  25498. {
  25499. name: "Normal",
  25500. height: math.unit(9, "feet"),
  25501. default: true
  25502. },
  25503. {
  25504. name: "Macro",
  25505. height: math.unit(75 + 6 / 12, "feet")
  25506. },
  25507. {
  25508. name: "Teramacro",
  25509. height: math.unit(50000, "miles")
  25510. },
  25511. ]
  25512. ))
  25513. characterMakers.push(() => makeCharacter(
  25514. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25515. {
  25516. front: {
  25517. height: math.unit(10, "feet"),
  25518. weight: math.unit(2, "tons"),
  25519. name: "Front",
  25520. image: {
  25521. source: "./media/characters/rekhit/front.svg",
  25522. extra: 2796 / 2590,
  25523. bottom: 225 / 3022
  25524. }
  25525. },
  25526. },
  25527. [
  25528. {
  25529. name: "Normal",
  25530. height: math.unit(10, "feet"),
  25531. default: true
  25532. },
  25533. {
  25534. name: "Macro",
  25535. height: math.unit(500, "feet")
  25536. },
  25537. ]
  25538. ))
  25539. characterMakers.push(() => makeCharacter(
  25540. { name: "Dahlia Verrick" },
  25541. {
  25542. front: {
  25543. height: math.unit(7 + 6.451 / 12, "feet"),
  25544. weight: math.unit(310, "lb"),
  25545. name: "Front",
  25546. image: {
  25547. source: "./media/characters/dahlia-verrick/front.svg",
  25548. extra: 1488 / 1365,
  25549. bottom: 6.2 / 1495
  25550. }
  25551. },
  25552. back: {
  25553. height: math.unit(7 + 6.451 / 12, "feet"),
  25554. weight: math.unit(310, "lb"),
  25555. name: "Back",
  25556. image: {
  25557. source: "./media/characters/dahlia-verrick/back.svg",
  25558. extra: 1472 / 1351,
  25559. bottom: 5.28 / 1477
  25560. }
  25561. },
  25562. frontBusiness: {
  25563. height: math.unit(7 + 6.451 / 12, "feet"),
  25564. weight: math.unit(200, "lb"),
  25565. name: "Front (Business)",
  25566. image: {
  25567. source: "./media/characters/dahlia-verrick/front-business.svg",
  25568. extra: 1478 / 1381,
  25569. bottom: 5.5 / 1484
  25570. }
  25571. },
  25572. frontCasual: {
  25573. height: math.unit(7 + 6.451 / 12, "feet"),
  25574. weight: math.unit(200, "lb"),
  25575. name: "Front (Casual)",
  25576. image: {
  25577. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25578. extra: 1478 / 1381,
  25579. bottom: 5.5 / 1484
  25580. }
  25581. },
  25582. },
  25583. [
  25584. {
  25585. name: "Travel-Sized",
  25586. height: math.unit(7.45, "inches")
  25587. },
  25588. {
  25589. name: "Normal",
  25590. height: math.unit(7 + 6.451 / 12, "feet"),
  25591. default: true
  25592. },
  25593. {
  25594. name: "Hitting the Town",
  25595. height: math.unit(37 + 8 / 12, "feet")
  25596. },
  25597. {
  25598. name: "Stomp in the Suburbs",
  25599. height: math.unit(964 + 9.728 / 12, "feet")
  25600. },
  25601. {
  25602. name: "Sit on the City",
  25603. height: math.unit(61747 + 10.592 / 12, "feet")
  25604. },
  25605. {
  25606. name: "Glomp the Globe",
  25607. height: math.unit(252919327 + 4.832 / 12, "feet")
  25608. },
  25609. ]
  25610. ))
  25611. characterMakers.push(() => makeCharacter(
  25612. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25613. {
  25614. front: {
  25615. height: math.unit(6 + 4 / 12, "feet"),
  25616. weight: math.unit(320, "lb"),
  25617. name: "Front",
  25618. image: {
  25619. source: "./media/characters/balina-mahigan/front.svg",
  25620. extra: 447 / 428,
  25621. bottom: 18 / 466
  25622. }
  25623. },
  25624. back: {
  25625. height: math.unit(6 + 4 / 12, "feet"),
  25626. weight: math.unit(320, "lb"),
  25627. name: "Back",
  25628. image: {
  25629. source: "./media/characters/balina-mahigan/back.svg",
  25630. extra: 445 / 428,
  25631. bottom: 4.07 / 448
  25632. }
  25633. },
  25634. arm: {
  25635. height: math.unit(1.88, "feet"),
  25636. name: "Arm",
  25637. image: {
  25638. source: "./media/characters/balina-mahigan/arm.svg"
  25639. }
  25640. },
  25641. backPort: {
  25642. height: math.unit(0.685, "feet"),
  25643. name: "Back Port",
  25644. image: {
  25645. source: "./media/characters/balina-mahigan/back-port.svg"
  25646. }
  25647. },
  25648. hoofpaw: {
  25649. height: math.unit(1.41, "feet"),
  25650. name: "Hoofpaw",
  25651. image: {
  25652. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25653. }
  25654. },
  25655. leftHandBack: {
  25656. height: math.unit(0.938, "feet"),
  25657. name: "Left Hand (Back)",
  25658. image: {
  25659. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25660. }
  25661. },
  25662. leftHandFront: {
  25663. height: math.unit(0.938, "feet"),
  25664. name: "Left Hand (Front)",
  25665. image: {
  25666. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25667. }
  25668. },
  25669. rightHandBack: {
  25670. height: math.unit(0.95, "feet"),
  25671. name: "Right Hand (Back)",
  25672. image: {
  25673. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25674. }
  25675. },
  25676. rightHandFront: {
  25677. height: math.unit(0.95, "feet"),
  25678. name: "Right Hand (Front)",
  25679. image: {
  25680. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25681. }
  25682. },
  25683. },
  25684. [
  25685. {
  25686. name: "Normal",
  25687. height: math.unit(6 + 4 / 12, "feet"),
  25688. default: true
  25689. },
  25690. ]
  25691. ))
  25692. characterMakers.push(() => makeCharacter(
  25693. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25694. {
  25695. front: {
  25696. height: math.unit(6, "feet"),
  25697. weight: math.unit(320, "lb"),
  25698. name: "Front",
  25699. image: {
  25700. source: "./media/characters/balina-mejeri/front.svg",
  25701. extra: 517 / 488,
  25702. bottom: 44.2 / 561
  25703. }
  25704. },
  25705. },
  25706. [
  25707. {
  25708. name: "Normal",
  25709. height: math.unit(6 + 4 / 12, "feet")
  25710. },
  25711. {
  25712. name: "Business",
  25713. height: math.unit(155, "feet"),
  25714. default: true
  25715. },
  25716. ]
  25717. ))
  25718. characterMakers.push(() => makeCharacter(
  25719. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25720. {
  25721. kneeling: {
  25722. height: math.unit(6 + 4 / 12, "feet"),
  25723. weight: math.unit(300 * 20, "lb"),
  25724. name: "Kneeling",
  25725. image: {
  25726. source: "./media/characters/balbarian/kneeling.svg",
  25727. extra: 922 / 862,
  25728. bottom: 42.4 / 965
  25729. }
  25730. },
  25731. },
  25732. [
  25733. {
  25734. name: "Normal",
  25735. height: math.unit(6 + 4 / 12, "feet")
  25736. },
  25737. {
  25738. name: "Treasured",
  25739. height: math.unit(18 + 9 / 12, "feet"),
  25740. default: true
  25741. },
  25742. {
  25743. name: "Macro",
  25744. height: math.unit(900, "feet")
  25745. },
  25746. ]
  25747. ))
  25748. characterMakers.push(() => makeCharacter(
  25749. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25750. {
  25751. front: {
  25752. height: math.unit(6 + 4 / 12, "feet"),
  25753. weight: math.unit(325, "lb"),
  25754. name: "Front",
  25755. image: {
  25756. source: "./media/characters/balina-amarini/front.svg",
  25757. extra: 415 / 403,
  25758. bottom: 19 / 433.4
  25759. }
  25760. },
  25761. back: {
  25762. height: math.unit(6 + 4 / 12, "feet"),
  25763. weight: math.unit(325, "lb"),
  25764. name: "Back",
  25765. image: {
  25766. source: "./media/characters/balina-amarini/back.svg",
  25767. extra: 415 / 403,
  25768. bottom: 13.5 / 432
  25769. }
  25770. },
  25771. overdrive: {
  25772. height: math.unit(6 + 4 / 12, "feet"),
  25773. weight: math.unit(400, "lb"),
  25774. name: "Overdrive",
  25775. image: {
  25776. source: "./media/characters/balina-amarini/overdrive.svg",
  25777. extra: 269 / 259,
  25778. bottom: 12 / 282
  25779. }
  25780. },
  25781. },
  25782. [
  25783. {
  25784. name: "Boom",
  25785. height: math.unit(9 + 10 / 12, "feet"),
  25786. default: true
  25787. },
  25788. {
  25789. name: "Macro",
  25790. height: math.unit(280, "feet")
  25791. },
  25792. ]
  25793. ))
  25794. characterMakers.push(() => makeCharacter(
  25795. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25796. {
  25797. goddess: {
  25798. height: math.unit(600, "feet"),
  25799. weight: math.unit(2000000, "tons"),
  25800. name: "Goddess",
  25801. image: {
  25802. source: "./media/characters/lady-kubwa/goddess.svg",
  25803. extra: 1240.5 / 1223,
  25804. bottom: 22 / 1263
  25805. }
  25806. },
  25807. goddesser: {
  25808. height: math.unit(900, "feet"),
  25809. weight: math.unit(20000000, "lb"),
  25810. name: "Goddess-er",
  25811. image: {
  25812. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25813. extra: 899 / 888,
  25814. bottom: 12.6 / 912
  25815. }
  25816. },
  25817. },
  25818. [
  25819. {
  25820. name: "Macro",
  25821. height: math.unit(600, "feet"),
  25822. default: true
  25823. },
  25824. {
  25825. name: "Megamacro",
  25826. height: math.unit(250, "miles")
  25827. },
  25828. ]
  25829. ))
  25830. characterMakers.push(() => makeCharacter(
  25831. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25832. {
  25833. front: {
  25834. height: math.unit(7 + 7 / 12, "feet"),
  25835. weight: math.unit(250, "lb"),
  25836. name: "Front",
  25837. image: {
  25838. source: "./media/characters/tala-grovehorn/front.svg",
  25839. extra: 2636 / 2525,
  25840. bottom: 147 / 2781
  25841. }
  25842. },
  25843. back: {
  25844. height: math.unit(7 + 7 / 12, "feet"),
  25845. weight: math.unit(250, "lb"),
  25846. name: "Back",
  25847. image: {
  25848. source: "./media/characters/tala-grovehorn/back.svg",
  25849. extra: 2635 / 2539,
  25850. bottom: 100 / 2732.8
  25851. }
  25852. },
  25853. mouth: {
  25854. height: math.unit(1.15, "feet"),
  25855. name: "Mouth",
  25856. image: {
  25857. source: "./media/characters/tala-grovehorn/mouth.svg"
  25858. }
  25859. },
  25860. dick: {
  25861. height: math.unit(2.36, "feet"),
  25862. name: "Dick",
  25863. image: {
  25864. source: "./media/characters/tala-grovehorn/dick.svg"
  25865. }
  25866. },
  25867. slit: {
  25868. height: math.unit(0.61, "feet"),
  25869. name: "Slit",
  25870. image: {
  25871. source: "./media/characters/tala-grovehorn/slit.svg"
  25872. }
  25873. },
  25874. },
  25875. [
  25876. ]
  25877. ))
  25878. characterMakers.push(() => makeCharacter(
  25879. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25880. {
  25881. front: {
  25882. height: math.unit(7 + 7 / 12, "feet"),
  25883. weight: math.unit(225, "lb"),
  25884. name: "Front",
  25885. image: {
  25886. source: "./media/characters/epona/front.svg",
  25887. extra: 2445 / 2290,
  25888. bottom: 251 / 2696
  25889. }
  25890. },
  25891. back: {
  25892. height: math.unit(7 + 7 / 12, "feet"),
  25893. weight: math.unit(225, "lb"),
  25894. name: "Back",
  25895. image: {
  25896. source: "./media/characters/epona/back.svg",
  25897. extra: 2546 / 2408,
  25898. bottom: 44 / 2589
  25899. }
  25900. },
  25901. genitals: {
  25902. height: math.unit(1.5, "feet"),
  25903. name: "Genitals",
  25904. image: {
  25905. source: "./media/characters/epona/genitals.svg"
  25906. }
  25907. },
  25908. },
  25909. [
  25910. {
  25911. name: "Normal",
  25912. height: math.unit(7 + 7 / 12, "feet"),
  25913. default: true
  25914. },
  25915. ]
  25916. ))
  25917. characterMakers.push(() => makeCharacter(
  25918. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25919. {
  25920. front: {
  25921. height: math.unit(7, "feet"),
  25922. weight: math.unit(518, "lb"),
  25923. name: "Front",
  25924. image: {
  25925. source: "./media/characters/avia-bloodbourn/front.svg",
  25926. extra: 1466 / 1350,
  25927. bottom: 65 / 1527
  25928. }
  25929. },
  25930. },
  25931. [
  25932. ]
  25933. ))
  25934. characterMakers.push(() => makeCharacter(
  25935. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25936. {
  25937. front: {
  25938. height: math.unit(9.35, "feet"),
  25939. weight: math.unit(600, "lb"),
  25940. name: "Front",
  25941. image: {
  25942. source: "./media/characters/amera/front.svg",
  25943. extra: 891 / 818,
  25944. bottom: 30 / 922.7
  25945. }
  25946. },
  25947. back: {
  25948. height: math.unit(9.35, "feet"),
  25949. weight: math.unit(600, "lb"),
  25950. name: "Back",
  25951. image: {
  25952. source: "./media/characters/amera/back.svg",
  25953. extra: 876 / 824,
  25954. bottom: 6.8 / 884
  25955. }
  25956. },
  25957. dick: {
  25958. height: math.unit(2.14, "feet"),
  25959. name: "Dick",
  25960. image: {
  25961. source: "./media/characters/amera/dick.svg"
  25962. }
  25963. },
  25964. },
  25965. [
  25966. {
  25967. name: "Normal",
  25968. height: math.unit(9.35, "feet"),
  25969. default: true
  25970. },
  25971. ]
  25972. ))
  25973. characterMakers.push(() => makeCharacter(
  25974. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25975. {
  25976. kneeling: {
  25977. height: math.unit(3 + 4 / 12, "feet"),
  25978. weight: math.unit(90, "lb"),
  25979. name: "Kneeling",
  25980. image: {
  25981. source: "./media/characters/rosewen/kneeling.svg",
  25982. extra: 1835 / 1571,
  25983. bottom: 27.7 / 1862
  25984. }
  25985. },
  25986. },
  25987. [
  25988. {
  25989. name: "Normal",
  25990. height: math.unit(3 + 4 / 12, "feet"),
  25991. default: true
  25992. },
  25993. ]
  25994. ))
  25995. characterMakers.push(() => makeCharacter(
  25996. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  25997. {
  25998. front: {
  25999. height: math.unit(5 + 10 / 12, "feet"),
  26000. weight: math.unit(200, "lb"),
  26001. name: "Front",
  26002. image: {
  26003. source: "./media/characters/sabah/front.svg",
  26004. extra: 849 / 763,
  26005. bottom: 33.9 / 881
  26006. }
  26007. },
  26008. },
  26009. [
  26010. {
  26011. name: "Normal",
  26012. height: math.unit(5 + 10 / 12, "feet"),
  26013. default: true
  26014. },
  26015. ]
  26016. ))
  26017. characterMakers.push(() => makeCharacter(
  26018. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26019. {
  26020. front: {
  26021. height: math.unit(3 + 5 / 12, "feet"),
  26022. weight: math.unit(40, "kg"),
  26023. name: "Front",
  26024. image: {
  26025. source: "./media/characters/purple-flame/front.svg",
  26026. extra: 1577 / 1412,
  26027. bottom: 97 / 1694
  26028. }
  26029. },
  26030. frontDressed: {
  26031. height: math.unit(3 + 5 / 12, "feet"),
  26032. weight: math.unit(40, "kg"),
  26033. name: "Front (Dressed)",
  26034. image: {
  26035. source: "./media/characters/purple-flame/front-dressed.svg",
  26036. extra: 1577 / 1412,
  26037. bottom: 97 / 1694
  26038. }
  26039. },
  26040. headphones: {
  26041. height: math.unit(0.85, "feet"),
  26042. name: "Headphones",
  26043. image: {
  26044. source: "./media/characters/purple-flame/headphones.svg"
  26045. }
  26046. },
  26047. },
  26048. [
  26049. {
  26050. name: "Really Small",
  26051. height: math.unit(5, "cm")
  26052. },
  26053. {
  26054. name: "Micro",
  26055. height: math.unit(1 + 5 / 12, "feet")
  26056. },
  26057. {
  26058. name: "Normal",
  26059. height: math.unit(3 + 5 / 12, "feet"),
  26060. default: true
  26061. },
  26062. {
  26063. name: "Minimacro",
  26064. height: math.unit(125, "feet")
  26065. },
  26066. {
  26067. name: "Macro",
  26068. height: math.unit(0.5, "miles")
  26069. },
  26070. {
  26071. name: "Megamacro",
  26072. height: math.unit(50, "miles")
  26073. },
  26074. {
  26075. name: "Gigantic",
  26076. height: math.unit(750, "miles")
  26077. },
  26078. {
  26079. name: "Planetary",
  26080. height: math.unit(15000, "miles")
  26081. },
  26082. ]
  26083. ))
  26084. characterMakers.push(() => makeCharacter(
  26085. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26086. {
  26087. front: {
  26088. height: math.unit(14, "feet"),
  26089. weight: math.unit(959, "lb"),
  26090. name: "Front",
  26091. image: {
  26092. source: "./media/characters/arsenal/front.svg",
  26093. extra: 2357 / 2157,
  26094. bottom: 93 / 2458
  26095. }
  26096. },
  26097. },
  26098. [
  26099. {
  26100. name: "Normal",
  26101. height: math.unit(14, "feet"),
  26102. default: true
  26103. },
  26104. ]
  26105. ))
  26106. characterMakers.push(() => makeCharacter(
  26107. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26108. {
  26109. front: {
  26110. height: math.unit(6, "feet"),
  26111. weight: math.unit(150, "lb"),
  26112. name: "Front",
  26113. image: {
  26114. source: "./media/characters/adira/front.svg",
  26115. extra: 1078 / 1029,
  26116. bottom: 87 / 1166
  26117. }
  26118. },
  26119. },
  26120. [
  26121. {
  26122. name: "Micro",
  26123. height: math.unit(4, "inches"),
  26124. default: true
  26125. },
  26126. {
  26127. name: "Macro",
  26128. height: math.unit(50, "feet")
  26129. },
  26130. ]
  26131. ))
  26132. characterMakers.push(() => makeCharacter(
  26133. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26134. {
  26135. front: {
  26136. height: math.unit(16, "feet"),
  26137. weight: math.unit(1000, "lb"),
  26138. name: "Front",
  26139. image: {
  26140. source: "./media/characters/grim/front.svg",
  26141. extra: 622 / 614,
  26142. bottom: 18.1 / 642
  26143. }
  26144. },
  26145. back: {
  26146. height: math.unit(16, "feet"),
  26147. weight: math.unit(1000, "lb"),
  26148. name: "Back",
  26149. image: {
  26150. source: "./media/characters/grim/back.svg",
  26151. extra: 610.6 / 602,
  26152. bottom: 40.8 / 652
  26153. }
  26154. },
  26155. hunched: {
  26156. height: math.unit(9.75, "feet"),
  26157. weight: math.unit(1000, "lb"),
  26158. name: "Hunched",
  26159. image: {
  26160. source: "./media/characters/grim/hunched.svg",
  26161. extra: 304 / 297,
  26162. bottom: 35.4 / 394
  26163. }
  26164. },
  26165. },
  26166. [
  26167. {
  26168. name: "Normal",
  26169. height: math.unit(16, "feet"),
  26170. default: true
  26171. },
  26172. ]
  26173. ))
  26174. characterMakers.push(() => makeCharacter(
  26175. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26176. {
  26177. front: {
  26178. height: math.unit(2.3, "meters"),
  26179. weight: math.unit(300, "lb"),
  26180. name: "Front",
  26181. image: {
  26182. source: "./media/characters/sinja/front-sfw.svg",
  26183. extra: 1393 / 1294,
  26184. bottom: 70 / 1463
  26185. }
  26186. },
  26187. frontNsfw: {
  26188. height: math.unit(2.3, "meters"),
  26189. weight: math.unit(300, "lb"),
  26190. name: "Front (NSFW)",
  26191. image: {
  26192. source: "./media/characters/sinja/front-nsfw.svg",
  26193. extra: 1393 / 1294,
  26194. bottom: 70 / 1463
  26195. }
  26196. },
  26197. back: {
  26198. height: math.unit(2.3, "meters"),
  26199. weight: math.unit(300, "lb"),
  26200. name: "Back",
  26201. image: {
  26202. source: "./media/characters/sinja/back.svg",
  26203. extra: 1393 / 1294,
  26204. bottom: 70 / 1463
  26205. }
  26206. },
  26207. head: {
  26208. height: math.unit(1.771, "feet"),
  26209. name: "Head",
  26210. image: {
  26211. source: "./media/characters/sinja/head.svg"
  26212. }
  26213. },
  26214. slit: {
  26215. height: math.unit(0.8, "feet"),
  26216. name: "Slit",
  26217. image: {
  26218. source: "./media/characters/sinja/slit.svg"
  26219. }
  26220. },
  26221. },
  26222. [
  26223. {
  26224. name: "Normal",
  26225. height: math.unit(2.3, "meters")
  26226. },
  26227. {
  26228. name: "Macro",
  26229. height: math.unit(91, "meters"),
  26230. default: true
  26231. },
  26232. {
  26233. name: "Megamacro",
  26234. height: math.unit(91440, "meters")
  26235. },
  26236. {
  26237. name: "Gigamacro",
  26238. height: math.unit(60960000, "meters")
  26239. },
  26240. {
  26241. name: "Teramacro",
  26242. height: math.unit(9144000000, "meters")
  26243. },
  26244. ]
  26245. ))
  26246. characterMakers.push(() => makeCharacter(
  26247. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26248. {
  26249. front: {
  26250. height: math.unit(1.7, "meters"),
  26251. weight: math.unit(130, "lb"),
  26252. name: "Front",
  26253. image: {
  26254. source: "./media/characters/kyu/front.svg",
  26255. extra: 415 / 395,
  26256. bottom: 5 / 420
  26257. }
  26258. },
  26259. head: {
  26260. height: math.unit(1.75, "feet"),
  26261. name: "Head",
  26262. image: {
  26263. source: "./media/characters/kyu/head.svg"
  26264. }
  26265. },
  26266. foot: {
  26267. height: math.unit(0.81, "feet"),
  26268. name: "Foot",
  26269. image: {
  26270. source: "./media/characters/kyu/foot.svg"
  26271. }
  26272. },
  26273. },
  26274. [
  26275. {
  26276. name: "Normal",
  26277. height: math.unit(1.7, "meters")
  26278. },
  26279. {
  26280. name: "Macro",
  26281. height: math.unit(131, "feet"),
  26282. default: true
  26283. },
  26284. {
  26285. name: "Megamacro",
  26286. height: math.unit(91440, "meters")
  26287. },
  26288. {
  26289. name: "Gigamacro",
  26290. height: math.unit(60960000, "meters")
  26291. },
  26292. {
  26293. name: "Teramacro",
  26294. height: math.unit(9144000000, "meters")
  26295. },
  26296. ]
  26297. ))
  26298. characterMakers.push(() => makeCharacter(
  26299. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26300. {
  26301. front: {
  26302. height: math.unit(7 + 1 / 12, "feet"),
  26303. weight: math.unit(250, "lb"),
  26304. name: "Front",
  26305. image: {
  26306. source: "./media/characters/joey/front.svg",
  26307. extra: 1791 / 1537,
  26308. bottom: 28 / 1816
  26309. }
  26310. },
  26311. },
  26312. [
  26313. {
  26314. name: "Micro",
  26315. height: math.unit(3, "inches")
  26316. },
  26317. {
  26318. name: "Normal",
  26319. height: math.unit(7 + 1 / 12, "feet"),
  26320. default: true
  26321. },
  26322. ]
  26323. ))
  26324. characterMakers.push(() => makeCharacter(
  26325. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26326. {
  26327. front: {
  26328. height: math.unit(165, "cm"),
  26329. weight: math.unit(140, "lb"),
  26330. name: "Front",
  26331. image: {
  26332. source: "./media/characters/sam-evans/front.svg",
  26333. extra: 3417 / 3230,
  26334. bottom: 41.3 / 3417
  26335. }
  26336. },
  26337. frontSixTails: {
  26338. height: math.unit(165, "cm"),
  26339. weight: math.unit(140, "lb"),
  26340. name: "Front-six-tails",
  26341. image: {
  26342. source: "./media/characters/sam-evans/front-six-tails.svg",
  26343. extra: 3417 / 3230,
  26344. bottom: 41.3 / 3417
  26345. }
  26346. },
  26347. back: {
  26348. height: math.unit(165, "cm"),
  26349. weight: math.unit(140, "lb"),
  26350. name: "Back",
  26351. image: {
  26352. source: "./media/characters/sam-evans/back.svg",
  26353. extra: 3227 / 3032,
  26354. bottom: 6.8 / 3234
  26355. }
  26356. },
  26357. face: {
  26358. height: math.unit(0.68, "feet"),
  26359. name: "Face",
  26360. image: {
  26361. source: "./media/characters/sam-evans/face.svg"
  26362. }
  26363. },
  26364. },
  26365. [
  26366. {
  26367. name: "Normal",
  26368. height: math.unit(165, "cm"),
  26369. default: true
  26370. },
  26371. {
  26372. name: "Macro",
  26373. height: math.unit(100, "meters")
  26374. },
  26375. {
  26376. name: "Macro+",
  26377. height: math.unit(800, "meters")
  26378. },
  26379. {
  26380. name: "Macro++",
  26381. height: math.unit(3, "km")
  26382. },
  26383. {
  26384. name: "Macro+++",
  26385. height: math.unit(30, "km")
  26386. },
  26387. ]
  26388. ))
  26389. characterMakers.push(() => makeCharacter(
  26390. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26391. {
  26392. front: {
  26393. height: math.unit(10, "feet"),
  26394. weight: math.unit(750, "lb"),
  26395. name: "Front",
  26396. image: {
  26397. source: "./media/characters/juliet-a/front.svg",
  26398. extra: 1766 / 1720,
  26399. bottom: 43 / 1809
  26400. }
  26401. },
  26402. back: {
  26403. height: math.unit(10, "feet"),
  26404. weight: math.unit(750, "lb"),
  26405. name: "Back",
  26406. image: {
  26407. source: "./media/characters/juliet-a/back.svg",
  26408. extra: 1781 / 1734,
  26409. bottom: 35 / 1810,
  26410. }
  26411. },
  26412. },
  26413. [
  26414. {
  26415. name: "Normal",
  26416. height: math.unit(10, "feet"),
  26417. default: true
  26418. },
  26419. {
  26420. name: "Dragon Form",
  26421. height: math.unit(250, "feet")
  26422. },
  26423. {
  26424. name: "Macro",
  26425. height: math.unit(1000, "feet")
  26426. },
  26427. {
  26428. name: "Megamacro",
  26429. height: math.unit(10000, "feet")
  26430. }
  26431. ]
  26432. ))
  26433. characterMakers.push(() => makeCharacter(
  26434. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26435. {
  26436. regular: {
  26437. height: math.unit(7 + 3 / 12, "feet"),
  26438. weight: math.unit(260, "lb"),
  26439. name: "Regular",
  26440. image: {
  26441. source: "./media/characters/wild/regular.svg",
  26442. extra: 97.45 / 92,
  26443. bottom: 6.8 / 104.3
  26444. }
  26445. },
  26446. biggums: {
  26447. height: math.unit(8 + 6 / 12, "feet"),
  26448. weight: math.unit(425, "lb"),
  26449. name: "Biggums",
  26450. image: {
  26451. source: "./media/characters/wild/biggums.svg",
  26452. extra: 97.45 / 92,
  26453. bottom: 7.5 / 132.34
  26454. }
  26455. },
  26456. mawRegular: {
  26457. height: math.unit(1.24, "feet"),
  26458. name: "Maw (Regular)",
  26459. image: {
  26460. source: "./media/characters/wild/maw.svg"
  26461. }
  26462. },
  26463. mawBiggums: {
  26464. height: math.unit(1.47, "feet"),
  26465. name: "Maw (Biggums)",
  26466. image: {
  26467. source: "./media/characters/wild/maw.svg"
  26468. }
  26469. },
  26470. },
  26471. [
  26472. {
  26473. name: "Normal",
  26474. height: math.unit(7 + 3 / 12, "feet"),
  26475. default: true
  26476. },
  26477. ]
  26478. ))
  26479. characterMakers.push(() => makeCharacter(
  26480. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26481. {
  26482. front: {
  26483. height: math.unit(2.5, "meters"),
  26484. weight: math.unit(200, "kg"),
  26485. name: "Front",
  26486. image: {
  26487. source: "./media/characters/vidar/front.svg",
  26488. extra: 2994 / 2795,
  26489. bottom: 56 / 3061
  26490. }
  26491. },
  26492. back: {
  26493. height: math.unit(2.5, "meters"),
  26494. weight: math.unit(200, "kg"),
  26495. name: "Back",
  26496. image: {
  26497. source: "./media/characters/vidar/back.svg",
  26498. extra: 3131 / 2928,
  26499. bottom: 13.5 / 3141.5
  26500. }
  26501. },
  26502. feral: {
  26503. height: math.unit(2.5, "meters"),
  26504. weight: math.unit(2000, "kg"),
  26505. name: "Feral",
  26506. image: {
  26507. source: "./media/characters/vidar/feral.svg",
  26508. extra: 2790 / 1765,
  26509. bottom: 6 / 2796
  26510. }
  26511. },
  26512. },
  26513. [
  26514. {
  26515. name: "Normal",
  26516. height: math.unit(2.5, "meters"),
  26517. default: true
  26518. },
  26519. {
  26520. name: "Macro",
  26521. height: math.unit(100, "meters")
  26522. },
  26523. ]
  26524. ))
  26525. characterMakers.push(() => makeCharacter(
  26526. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26527. {
  26528. front: {
  26529. height: math.unit(5 + 9 / 12, "feet"),
  26530. weight: math.unit(120, "lb"),
  26531. name: "Front",
  26532. image: {
  26533. source: "./media/characters/ash/front.svg",
  26534. extra: 2189 / 1961,
  26535. bottom: 5.2 / 2194
  26536. }
  26537. },
  26538. },
  26539. [
  26540. {
  26541. name: "Normal",
  26542. height: math.unit(5 + 9 / 12, "feet"),
  26543. default: true
  26544. },
  26545. ]
  26546. ))
  26547. characterMakers.push(() => makeCharacter(
  26548. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26549. {
  26550. front: {
  26551. height: math.unit(9, "feet"),
  26552. weight: math.unit(10000, "lb"),
  26553. name: "Front",
  26554. image: {
  26555. source: "./media/characters/gygabite/front.svg",
  26556. bottom: 31.7 / 537.8,
  26557. extra: 505 / 370
  26558. }
  26559. },
  26560. },
  26561. [
  26562. {
  26563. name: "Normal",
  26564. height: math.unit(9, "feet"),
  26565. default: true
  26566. },
  26567. ]
  26568. ))
  26569. characterMakers.push(() => makeCharacter(
  26570. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26571. {
  26572. front: {
  26573. height: math.unit(12, "feet"),
  26574. weight: math.unit(35000, "lb"),
  26575. name: "Front",
  26576. image: {
  26577. source: "./media/characters/p0tat0/front.svg",
  26578. extra: 1065 / 921,
  26579. bottom: 55.7 / 1121.25
  26580. }
  26581. },
  26582. },
  26583. [
  26584. {
  26585. name: "Normal",
  26586. height: math.unit(12, "feet"),
  26587. default: true
  26588. },
  26589. ]
  26590. ))
  26591. characterMakers.push(() => makeCharacter(
  26592. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26593. {
  26594. side: {
  26595. height: math.unit(6.5, "feet"),
  26596. weight: math.unit(800, "lb"),
  26597. name: "Side",
  26598. image: {
  26599. source: "./media/characters/dusk/side.svg",
  26600. extra: 615 / 373,
  26601. bottom: 53 / 664
  26602. }
  26603. },
  26604. sitting: {
  26605. height: math.unit(7, "feet"),
  26606. weight: math.unit(800, "lb"),
  26607. name: "Sitting",
  26608. image: {
  26609. source: "./media/characters/dusk/sitting.svg",
  26610. extra: 753 / 425,
  26611. bottom: 33 / 774
  26612. }
  26613. },
  26614. head: {
  26615. height: math.unit(6.1, "feet"),
  26616. name: "Head",
  26617. image: {
  26618. source: "./media/characters/dusk/head.svg"
  26619. }
  26620. },
  26621. },
  26622. [
  26623. {
  26624. name: "Normal",
  26625. height: math.unit(7, "feet"),
  26626. default: true
  26627. },
  26628. ]
  26629. ))
  26630. characterMakers.push(() => makeCharacter(
  26631. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26632. {
  26633. front: {
  26634. height: math.unit(15, "feet"),
  26635. weight: math.unit(7000, "lb"),
  26636. name: "Front",
  26637. image: {
  26638. source: "./media/characters/jay-direwolf/front.svg",
  26639. extra: 1810 / 1732,
  26640. bottom: 66 / 1892
  26641. }
  26642. },
  26643. },
  26644. [
  26645. {
  26646. name: "Normal",
  26647. height: math.unit(15, "feet"),
  26648. default: true
  26649. },
  26650. ]
  26651. ))
  26652. characterMakers.push(() => makeCharacter(
  26653. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26654. {
  26655. front: {
  26656. height: math.unit(4 + 9 / 12, "feet"),
  26657. weight: math.unit(130, "lb"),
  26658. name: "Front",
  26659. image: {
  26660. source: "./media/characters/anchovie/front.svg",
  26661. extra: 382 / 350,
  26662. bottom: 25 / 409
  26663. }
  26664. },
  26665. back: {
  26666. height: math.unit(4 + 9 / 12, "feet"),
  26667. weight: math.unit(130, "lb"),
  26668. name: "Back",
  26669. image: {
  26670. source: "./media/characters/anchovie/back.svg",
  26671. extra: 385 / 352,
  26672. bottom: 16.6 / 402
  26673. }
  26674. },
  26675. frontDressed: {
  26676. height: math.unit(4 + 9 / 12, "feet"),
  26677. weight: math.unit(130, "lb"),
  26678. name: "Front (Dressed)",
  26679. image: {
  26680. source: "./media/characters/anchovie/front-dressed.svg",
  26681. extra: 382 / 350,
  26682. bottom: 25 / 409
  26683. }
  26684. },
  26685. backDressed: {
  26686. height: math.unit(4 + 9 / 12, "feet"),
  26687. weight: math.unit(130, "lb"),
  26688. name: "Back (Dressed)",
  26689. image: {
  26690. source: "./media/characters/anchovie/back-dressed.svg",
  26691. extra: 385 / 352,
  26692. bottom: 16.6 / 402
  26693. }
  26694. },
  26695. },
  26696. [
  26697. {
  26698. name: "Micro",
  26699. height: math.unit(6.4, "inches")
  26700. },
  26701. {
  26702. name: "Normal",
  26703. height: math.unit(4 + 9 / 12, "feet"),
  26704. default: true
  26705. },
  26706. ]
  26707. ))
  26708. characterMakers.push(() => makeCharacter(
  26709. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26710. {
  26711. front: {
  26712. height: math.unit(2, "meters"),
  26713. weight: math.unit(180, "lb"),
  26714. name: "Front",
  26715. image: {
  26716. source: "./media/characters/acidrenamon/front.svg",
  26717. extra: 987 / 890,
  26718. bottom: 22.8 / 1009
  26719. }
  26720. },
  26721. back: {
  26722. height: math.unit(2, "meters"),
  26723. weight: math.unit(180, "lb"),
  26724. name: "Back",
  26725. image: {
  26726. source: "./media/characters/acidrenamon/back.svg",
  26727. extra: 983 / 891,
  26728. bottom: 8.4 / 992
  26729. }
  26730. },
  26731. head: {
  26732. height: math.unit(1.92, "feet"),
  26733. name: "Head",
  26734. image: {
  26735. source: "./media/characters/acidrenamon/head.svg"
  26736. }
  26737. },
  26738. rump: {
  26739. height: math.unit(1.72, "feet"),
  26740. name: "Rump",
  26741. image: {
  26742. source: "./media/characters/acidrenamon/rump.svg"
  26743. }
  26744. },
  26745. tail: {
  26746. height: math.unit(4.2, "feet"),
  26747. name: "Tail",
  26748. image: {
  26749. source: "./media/characters/acidrenamon/tail.svg"
  26750. }
  26751. },
  26752. },
  26753. [
  26754. {
  26755. name: "Normal",
  26756. height: math.unit(2, "meters"),
  26757. default: true
  26758. },
  26759. {
  26760. name: "Minimacro",
  26761. height: math.unit(7, "meters")
  26762. },
  26763. {
  26764. name: "Macro",
  26765. height: math.unit(200, "meters")
  26766. },
  26767. {
  26768. name: "Gigamacro",
  26769. height: math.unit(0.2, "earths")
  26770. },
  26771. ]
  26772. ))
  26773. characterMakers.push(() => makeCharacter(
  26774. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26775. {
  26776. front: {
  26777. height: math.unit(6, "feet"),
  26778. weight: math.unit(150, "lb"),
  26779. name: "Front",
  26780. image: {
  26781. source: "./media/characters/kenzie-lee/front.svg",
  26782. extra: 1525 / 1465,
  26783. bottom: 45 / 1570
  26784. }
  26785. },
  26786. side: {
  26787. height: math.unit(6, "feet"),
  26788. weight: math.unit(150, "lb"),
  26789. name: "Side",
  26790. image: {
  26791. source: "./media/characters/kenzie-lee/side.svg",
  26792. extra: 5505 / 5383,
  26793. bottom: 60 / 5573
  26794. }
  26795. },
  26796. paw: {
  26797. height: math.unit(6, "feet"),
  26798. name: "Paw",
  26799. image: {
  26800. source: "./media/characters/kenzie-lee/paw.svg"
  26801. }
  26802. },
  26803. },
  26804. [
  26805. {
  26806. name: "Normal",
  26807. height: math.unit(152, "feet"),
  26808. default: true
  26809. },
  26810. {
  26811. name: "Megamacro",
  26812. height: math.unit(7, "miles")
  26813. },
  26814. {
  26815. name: "Gigamacro",
  26816. height: math.unit(8000, "miles")
  26817. },
  26818. ]
  26819. ))
  26820. characterMakers.push(() => makeCharacter(
  26821. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26822. {
  26823. side: {
  26824. height: math.unit(6, "feet"),
  26825. weight: math.unit(150, "lb"),
  26826. name: "Side",
  26827. image: {
  26828. source: "./media/characters/withers/side.svg",
  26829. extra: 1830 / 1728,
  26830. bottom: 96 / 1927
  26831. }
  26832. },
  26833. front: {
  26834. height: math.unit(6, "feet"),
  26835. weight: math.unit(150, "lb"),
  26836. name: "Front",
  26837. image: {
  26838. source: "./media/characters/withers/front.svg",
  26839. extra: 1514 / 1438,
  26840. bottom: 118 / 1632
  26841. }
  26842. },
  26843. },
  26844. [
  26845. {
  26846. name: "Macro",
  26847. height: math.unit(168, "feet"),
  26848. default: true
  26849. },
  26850. {
  26851. name: "Megamacro",
  26852. height: math.unit(15, "miles")
  26853. }
  26854. ]
  26855. ))
  26856. characterMakers.push(() => makeCharacter(
  26857. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26858. {
  26859. front: {
  26860. height: math.unit(6 + 7 / 12, "feet"),
  26861. weight: math.unit(250, "lb"),
  26862. name: "Front",
  26863. image: {
  26864. source: "./media/characters/nemoskii/front.svg",
  26865. extra: 2270 / 1734,
  26866. bottom: 86 / 2354
  26867. }
  26868. },
  26869. back: {
  26870. height: math.unit(6 + 7 / 12, "feet"),
  26871. weight: math.unit(250, "lb"),
  26872. name: "Back",
  26873. image: {
  26874. source: "./media/characters/nemoskii/back.svg",
  26875. extra: 1845 / 1788,
  26876. bottom: 10.5 / 1852
  26877. }
  26878. },
  26879. head: {
  26880. height: math.unit(1.31, "feet"),
  26881. name: "Head",
  26882. image: {
  26883. source: "./media/characters/nemoskii/head.svg"
  26884. }
  26885. },
  26886. },
  26887. [
  26888. {
  26889. name: "Normal",
  26890. height: math.unit(6 + 7 / 12, "feet"),
  26891. default: true
  26892. },
  26893. ]
  26894. ))
  26895. characterMakers.push(() => makeCharacter(
  26896. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  26897. {
  26898. front: {
  26899. height: math.unit(1, "mile"),
  26900. weight: math.unit(265261.9, "lb"),
  26901. name: "Front",
  26902. image: {
  26903. source: "./media/characters/shui/front.svg",
  26904. extra: 1633 / 1564,
  26905. bottom: 91.5 / 1726
  26906. }
  26907. },
  26908. },
  26909. [
  26910. {
  26911. name: "Macro",
  26912. height: math.unit(1, "mile"),
  26913. default: true
  26914. },
  26915. ]
  26916. ))
  26917. characterMakers.push(() => makeCharacter(
  26918. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  26919. {
  26920. front: {
  26921. height: math.unit(12 + 6 / 12, "feet"),
  26922. weight: math.unit(1342, "lb"),
  26923. name: "Front",
  26924. image: {
  26925. source: "./media/characters/arokh-takakura/front.svg",
  26926. extra: 1089 / 1043,
  26927. bottom: 77.4 / 1176.7
  26928. }
  26929. },
  26930. back: {
  26931. height: math.unit(12 + 6 / 12, "feet"),
  26932. weight: math.unit(1342, "lb"),
  26933. name: "Back",
  26934. image: {
  26935. source: "./media/characters/arokh-takakura/back.svg",
  26936. extra: 1046 / 1019,
  26937. bottom: 102 / 1150
  26938. }
  26939. },
  26940. },
  26941. [
  26942. {
  26943. name: "Big",
  26944. height: math.unit(12 + 6 / 12, "feet"),
  26945. default: true
  26946. },
  26947. ]
  26948. ))
  26949. characterMakers.push(() => makeCharacter(
  26950. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  26951. {
  26952. front: {
  26953. height: math.unit(5 + 6 / 12, "feet"),
  26954. weight: math.unit(150, "lb"),
  26955. name: "Front",
  26956. image: {
  26957. source: "./media/characters/theo/front.svg",
  26958. extra: 1184 / 1131,
  26959. bottom: 7.4 / 1191
  26960. }
  26961. },
  26962. },
  26963. [
  26964. {
  26965. name: "Micro",
  26966. height: math.unit(5, "inches")
  26967. },
  26968. {
  26969. name: "Normal",
  26970. height: math.unit(5 + 6 / 12, "feet"),
  26971. default: true
  26972. },
  26973. ]
  26974. ))
  26975. characterMakers.push(() => makeCharacter(
  26976. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  26977. {
  26978. front: {
  26979. height: math.unit(5 + 9 / 12, "feet"),
  26980. weight: math.unit(130, "lb"),
  26981. name: "Front",
  26982. image: {
  26983. source: "./media/characters/cecelia-swift/front.svg",
  26984. extra: 502 / 484,
  26985. bottom: 23 / 523
  26986. }
  26987. },
  26988. back: {
  26989. height: math.unit(5 + 9 / 12, "feet"),
  26990. weight: math.unit(130, "lb"),
  26991. name: "Back",
  26992. image: {
  26993. source: "./media/characters/cecelia-swift/back.svg",
  26994. extra: 499 / 485,
  26995. bottom: 12 / 511
  26996. }
  26997. },
  26998. head: {
  26999. height: math.unit(0.90, "feet"),
  27000. name: "Head",
  27001. image: {
  27002. source: "./media/characters/cecelia-swift/head.svg"
  27003. }
  27004. },
  27005. rump: {
  27006. height: math.unit(1.75, "feet"),
  27007. name: "Rump",
  27008. image: {
  27009. source: "./media/characters/cecelia-swift/rump.svg"
  27010. }
  27011. },
  27012. },
  27013. [
  27014. {
  27015. name: "Normal",
  27016. height: math.unit(5 + 9 / 12, "feet"),
  27017. default: true
  27018. },
  27019. {
  27020. name: "Big",
  27021. height: math.unit(50, "feet")
  27022. },
  27023. {
  27024. name: "Macro",
  27025. height: math.unit(100, "feet")
  27026. },
  27027. {
  27028. name: "Macro+",
  27029. height: math.unit(500, "feet")
  27030. },
  27031. {
  27032. name: "Macro++",
  27033. height: math.unit(1000, "feet")
  27034. },
  27035. ]
  27036. ))
  27037. characterMakers.push(() => makeCharacter(
  27038. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27039. {
  27040. front: {
  27041. height: math.unit(6, "feet"),
  27042. weight: math.unit(150, "lb"),
  27043. name: "Front",
  27044. image: {
  27045. source: "./media/characters/kaunan/front.svg",
  27046. extra: 2890 / 2523,
  27047. bottom: 49 / 2939
  27048. }
  27049. },
  27050. },
  27051. [
  27052. {
  27053. name: "Macro",
  27054. height: math.unit(150, "feet"),
  27055. default: true
  27056. },
  27057. ]
  27058. ))
  27059. characterMakers.push(() => makeCharacter(
  27060. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27061. {
  27062. front: {
  27063. height: math.unit(175, "cm"),
  27064. weight: math.unit(60, "kg"),
  27065. name: "Front",
  27066. image: {
  27067. source: "./media/characters/fei/front.svg",
  27068. extra: 2581 / 2400,
  27069. bottom: 82.2 / 2663
  27070. }
  27071. },
  27072. },
  27073. [
  27074. {
  27075. name: "Mortal",
  27076. height: math.unit(175, "cm")
  27077. },
  27078. {
  27079. name: "Normal",
  27080. height: math.unit(3500, "m"),
  27081. default: true
  27082. },
  27083. {
  27084. name: "Stroll",
  27085. height: math.unit(17.5, "km")
  27086. },
  27087. {
  27088. name: "Showoff",
  27089. height: math.unit(175, "km")
  27090. },
  27091. ]
  27092. ))
  27093. characterMakers.push(() => makeCharacter(
  27094. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27095. {
  27096. front: {
  27097. height: math.unit(7, "feet"),
  27098. weight: math.unit(1000, "kg"),
  27099. name: "Front",
  27100. image: {
  27101. source: "./media/characters/edrax/front.svg",
  27102. extra: 2838 / 2550,
  27103. bottom: 130 / 2968
  27104. }
  27105. },
  27106. },
  27107. [
  27108. {
  27109. name: "Small",
  27110. height: math.unit(7, "feet")
  27111. },
  27112. {
  27113. name: "Normal",
  27114. height: math.unit(1500, "meters")
  27115. },
  27116. {
  27117. name: "Mega",
  27118. height: math.unit(12000000, "km"),
  27119. default: true
  27120. },
  27121. {
  27122. name: "Megamacro",
  27123. height: math.unit(10600000, "lightyears")
  27124. },
  27125. {
  27126. name: "Hypermacro",
  27127. height: math.unit(256, "yottameters")
  27128. },
  27129. ]
  27130. ))
  27131. characterMakers.push(() => makeCharacter(
  27132. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27133. {
  27134. front: {
  27135. height: math.unit(10, "feet"),
  27136. weight: math.unit(750, "lb"),
  27137. name: "Front",
  27138. image: {
  27139. source: "./media/characters/clove/front.svg",
  27140. extra: 2031 / 1860,
  27141. bottom: 47.8 / 2080
  27142. }
  27143. },
  27144. back: {
  27145. height: math.unit(10, "feet"),
  27146. weight: math.unit(750, "lb"),
  27147. name: "Back",
  27148. image: {
  27149. source: "./media/characters/clove/back.svg",
  27150. extra: 2025 / 1859,
  27151. bottom: 46 / 2071
  27152. }
  27153. },
  27154. },
  27155. [
  27156. {
  27157. name: "Normal",
  27158. height: math.unit(10, "feet"),
  27159. default: true
  27160. },
  27161. ]
  27162. ))
  27163. characterMakers.push(() => makeCharacter(
  27164. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27165. {
  27166. front: {
  27167. height: math.unit(4, "feet"),
  27168. weight: math.unit(50, "lb"),
  27169. name: "Front",
  27170. image: {
  27171. source: "./media/characters/alex-rabbit/front.svg",
  27172. extra: 507 / 458,
  27173. bottom: 18.5 / 527
  27174. }
  27175. },
  27176. back: {
  27177. height: math.unit(4, "feet"),
  27178. weight: math.unit(50, "lb"),
  27179. name: "Back",
  27180. image: {
  27181. source: "./media/characters/alex-rabbit/back.svg",
  27182. extra: 502 / 460,
  27183. bottom: 18.9 / 521
  27184. }
  27185. },
  27186. },
  27187. [
  27188. {
  27189. name: "Normal",
  27190. height: math.unit(4, "feet"),
  27191. default: true
  27192. },
  27193. ]
  27194. ))
  27195. characterMakers.push(() => makeCharacter(
  27196. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27197. {
  27198. front: {
  27199. height: math.unit(1 + 3 / 12, "feet"),
  27200. weight: math.unit(80, "lb"),
  27201. name: "Front",
  27202. image: {
  27203. source: "./media/characters/zander-rose/front.svg",
  27204. extra: 916 / 797,
  27205. bottom: 17 / 933
  27206. }
  27207. },
  27208. back: {
  27209. height: math.unit(1 + 3 / 12, "feet"),
  27210. weight: math.unit(80, "lb"),
  27211. name: "Back",
  27212. image: {
  27213. source: "./media/characters/zander-rose/back.svg",
  27214. extra: 903 / 779,
  27215. bottom: 31 / 934
  27216. }
  27217. },
  27218. },
  27219. [
  27220. {
  27221. name: "Normal",
  27222. height: math.unit(1 + 3 / 12, "feet"),
  27223. default: true
  27224. },
  27225. ]
  27226. ))
  27227. characterMakers.push(() => makeCharacter(
  27228. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27229. {
  27230. anthro: {
  27231. height: math.unit(6, "feet"),
  27232. weight: math.unit(150, "lb"),
  27233. name: "Anthro",
  27234. image: {
  27235. source: "./media/characters/razz/anthro.svg",
  27236. extra: 1437 / 1343,
  27237. bottom: 48 / 1485
  27238. }
  27239. },
  27240. feral: {
  27241. height: math.unit(6, "feet"),
  27242. weight: math.unit(150, "lb"),
  27243. name: "Feral",
  27244. image: {
  27245. source: "./media/characters/razz/feral.svg",
  27246. extra: 2569 / 1385,
  27247. bottom: 95 / 2664
  27248. }
  27249. },
  27250. },
  27251. [
  27252. {
  27253. name: "Normal",
  27254. height: math.unit(6, "feet"),
  27255. default: true
  27256. },
  27257. ]
  27258. ))
  27259. characterMakers.push(() => makeCharacter(
  27260. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27261. {
  27262. front: {
  27263. height: math.unit(9 + 4 / 12, "feet"),
  27264. weight: math.unit(500, "lb"),
  27265. name: "Front",
  27266. image: {
  27267. source: "./media/characters/morrigan/front.svg",
  27268. extra: 2707 / 2579,
  27269. bottom: 156 / 2863
  27270. }
  27271. },
  27272. },
  27273. [
  27274. {
  27275. name: "Normal",
  27276. height: math.unit(9 + 4 / 12, "feet"),
  27277. default: true
  27278. },
  27279. ]
  27280. ))
  27281. characterMakers.push(() => makeCharacter(
  27282. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27283. {
  27284. front: {
  27285. height: math.unit(5, "stories"),
  27286. weight: math.unit(4000, "lb"),
  27287. name: "Front",
  27288. image: {
  27289. source: "./media/characters/jenene/front.svg",
  27290. extra: 1780 / 1710,
  27291. bottom: 57 / 1837
  27292. }
  27293. },
  27294. },
  27295. [
  27296. {
  27297. name: "Normal",
  27298. height: math.unit(5, "stories"),
  27299. default: true
  27300. },
  27301. ]
  27302. ))
  27303. characterMakers.push(() => makeCharacter(
  27304. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27305. {
  27306. front: {
  27307. height: math.unit(6, "feet"),
  27308. weight: math.unit(150, "lb"),
  27309. name: "Front",
  27310. image: {
  27311. source: "./media/characters/vix-archaser/front.svg",
  27312. extra: 2767 / 2562,
  27313. bottom: 36 / 2803
  27314. }
  27315. },
  27316. },
  27317. [
  27318. {
  27319. name: "Micro",
  27320. height: math.unit(1, "foot")
  27321. },
  27322. {
  27323. name: "Normal",
  27324. height: math.unit(6 + 5 / 12, "feet")
  27325. },
  27326. {
  27327. name: "Minimacro",
  27328. height: math.unit(500, "feet")
  27329. },
  27330. {
  27331. name: "Macro",
  27332. height: math.unit(4, "miles")
  27333. },
  27334. {
  27335. name: "Megamacro",
  27336. height: math.unit(250, "miles"),
  27337. default: true
  27338. },
  27339. {
  27340. name: "Gigamacro",
  27341. height: math.unit(1, "universe")
  27342. },
  27343. {
  27344. name: "Endgame",
  27345. height: math.unit(100, "multiverses")
  27346. }
  27347. ]
  27348. ))
  27349. characterMakers.push(() => makeCharacter(
  27350. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27351. {
  27352. taurSfw: {
  27353. height: math.unit(10, "meters"),
  27354. weight: math.unit(17500, "kg"),
  27355. name: "Taur",
  27356. image: {
  27357. source: "./media/characters/faey/taur-sfw.svg",
  27358. extra: 1200 / 968,
  27359. bottom: 41 / 1241
  27360. }
  27361. },
  27362. chestmaw: {
  27363. height: math.unit(2.01, "meters"),
  27364. name: "Chestmaw",
  27365. image: {
  27366. source: "./media/characters/faey/chestmaw.svg"
  27367. }
  27368. },
  27369. foot: {
  27370. height: math.unit(2.43, "meters"),
  27371. name: "Foot",
  27372. image: {
  27373. source: "./media/characters/faey/foot.svg"
  27374. }
  27375. },
  27376. jaws: {
  27377. height: math.unit(1.66, "meters"),
  27378. name: "Jaws",
  27379. image: {
  27380. source: "./media/characters/faey/jaws.svg"
  27381. }
  27382. },
  27383. tongues: {
  27384. height: math.unit(2.01, "meters"),
  27385. name: "Tongues",
  27386. image: {
  27387. source: "./media/characters/faey/tongues.svg"
  27388. }
  27389. },
  27390. },
  27391. [
  27392. {
  27393. name: "Small",
  27394. height: math.unit(10, "meters"),
  27395. default: true
  27396. },
  27397. {
  27398. name: "Big",
  27399. height: math.unit(500000, "km")
  27400. },
  27401. ]
  27402. ))
  27403. characterMakers.push(() => makeCharacter(
  27404. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27405. {
  27406. front: {
  27407. height: math.unit(7, "feet"),
  27408. weight: math.unit(275, "lb"),
  27409. name: "Front",
  27410. image: {
  27411. source: "./media/characters/roku/front.svg",
  27412. extra: 903 / 878,
  27413. bottom: 37 / 940
  27414. }
  27415. },
  27416. },
  27417. [
  27418. {
  27419. name: "Normal",
  27420. height: math.unit(7, "feet"),
  27421. default: true
  27422. },
  27423. {
  27424. name: "Macro",
  27425. height: math.unit(500, "feet")
  27426. },
  27427. {
  27428. name: "Megamacro",
  27429. height: math.unit(200, "miles")
  27430. },
  27431. ]
  27432. ))
  27433. characterMakers.push(() => makeCharacter(
  27434. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27435. {
  27436. front: {
  27437. height: math.unit(6 + 2 / 12, "feet"),
  27438. weight: math.unit(150, "lb"),
  27439. name: "Front",
  27440. image: {
  27441. source: "./media/characters/lira/front.svg",
  27442. extra: 1727 / 1605,
  27443. bottom: 26 / 1753
  27444. }
  27445. },
  27446. back: {
  27447. height: math.unit(6 + 2 / 12, "feet"),
  27448. weight: math.unit(150, "lb"),
  27449. name: "Back",
  27450. image: {
  27451. source: "./media/characters/lira/back.svg",
  27452. extra: 1713 / 159,
  27453. bottom: 20 / 1733
  27454. }
  27455. },
  27456. hand: {
  27457. height: math.unit(0.75, "feet"),
  27458. name: "Hand",
  27459. image: {
  27460. source: "./media/characters/lira/hand.svg"
  27461. }
  27462. },
  27463. maw: {
  27464. height: math.unit(0.65, "feet"),
  27465. name: "Maw",
  27466. image: {
  27467. source: "./media/characters/lira/maw.svg"
  27468. }
  27469. },
  27470. pawDigi: {
  27471. height: math.unit(1.6, "feet"),
  27472. name: "Paw Digi",
  27473. image: {
  27474. source: "./media/characters/lira/paw-digi.svg"
  27475. }
  27476. },
  27477. pawPlanti: {
  27478. height: math.unit(1.4, "feet"),
  27479. name: "Paw Planti",
  27480. image: {
  27481. source: "./media/characters/lira/paw-planti.svg"
  27482. }
  27483. },
  27484. },
  27485. [
  27486. {
  27487. name: "Normal",
  27488. height: math.unit(6 + 2 / 12, "feet"),
  27489. default: true
  27490. },
  27491. {
  27492. name: "Macro",
  27493. height: math.unit(100, "feet")
  27494. },
  27495. {
  27496. name: "Macro²",
  27497. height: math.unit(1600, "feet")
  27498. },
  27499. {
  27500. name: "Planetary",
  27501. height: math.unit(20, "earths")
  27502. },
  27503. ]
  27504. ))
  27505. characterMakers.push(() => makeCharacter(
  27506. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27507. {
  27508. front: {
  27509. height: math.unit(6, "feet"),
  27510. weight: math.unit(150, "lb"),
  27511. name: "Front",
  27512. image: {
  27513. source: "./media/characters/hadjet/front.svg",
  27514. extra: 1480 / 1346,
  27515. bottom: 26 / 1506
  27516. }
  27517. },
  27518. frontNsfw: {
  27519. height: math.unit(6, "feet"),
  27520. weight: math.unit(150, "lb"),
  27521. name: "Front (NSFW)",
  27522. image: {
  27523. source: "./media/characters/hadjet/front-nsfw.svg",
  27524. extra: 1440 / 1358,
  27525. bottom: 52 / 1492
  27526. }
  27527. },
  27528. },
  27529. [
  27530. {
  27531. name: "Macro",
  27532. height: math.unit(10, "stories"),
  27533. default: true
  27534. },
  27535. {
  27536. name: "Megamacro",
  27537. height: math.unit(1.5, "miles")
  27538. },
  27539. {
  27540. name: "Megamacro+",
  27541. height: math.unit(5, "miles")
  27542. },
  27543. ]
  27544. ))
  27545. characterMakers.push(() => makeCharacter(
  27546. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27547. {
  27548. side: {
  27549. height: math.unit(106, "feet"),
  27550. weight: math.unit(500, "tonnes"),
  27551. name: "Side",
  27552. image: {
  27553. source: "./media/characters/kodran/side.svg",
  27554. extra: 553 / 480,
  27555. bottom: 33 / 586
  27556. }
  27557. },
  27558. front: {
  27559. height: math.unit(132, "feet"),
  27560. weight: math.unit(500, "tonnes"),
  27561. name: "Front",
  27562. image: {
  27563. source: "./media/characters/kodran/front.svg",
  27564. extra: 667 / 643,
  27565. bottom: 42 / 709
  27566. }
  27567. },
  27568. flying: {
  27569. height: math.unit(350, "feet"),
  27570. weight: math.unit(500, "tonnes"),
  27571. name: "Flying",
  27572. image: {
  27573. source: "./media/characters/kodran/flying.svg"
  27574. }
  27575. },
  27576. foot: {
  27577. height: math.unit(33, "feet"),
  27578. name: "Foot",
  27579. image: {
  27580. source: "./media/characters/kodran/foot.svg"
  27581. }
  27582. },
  27583. footFront: {
  27584. height: math.unit(19, "feet"),
  27585. name: "Foot (Front)",
  27586. image: {
  27587. source: "./media/characters/kodran/foot-front.svg",
  27588. extra: 261 / 261,
  27589. bottom: 91 / 352
  27590. }
  27591. },
  27592. headFront: {
  27593. height: math.unit(53, "feet"),
  27594. name: "Head (Front)",
  27595. image: {
  27596. source: "./media/characters/kodran/head-front.svg"
  27597. }
  27598. },
  27599. headSide: {
  27600. height: math.unit(65, "feet"),
  27601. name: "Head (Side)",
  27602. image: {
  27603. source: "./media/characters/kodran/head-side.svg"
  27604. }
  27605. },
  27606. throat: {
  27607. height: math.unit(79, "feet"),
  27608. name: "Throat",
  27609. image: {
  27610. source: "./media/characters/kodran/throat.svg"
  27611. }
  27612. },
  27613. },
  27614. [
  27615. {
  27616. name: "Large",
  27617. height: math.unit(106, "feet"),
  27618. default: true
  27619. },
  27620. ]
  27621. ))
  27622. characterMakers.push(() => makeCharacter(
  27623. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27624. {
  27625. side: {
  27626. height: math.unit(11, "feet"),
  27627. weight: math.unit(150, "lb"),
  27628. name: "Side",
  27629. image: {
  27630. source: "./media/characters/pyxaron/side.svg",
  27631. extra: 305 / 195,
  27632. bottom: 17 / 322
  27633. }
  27634. },
  27635. },
  27636. [
  27637. {
  27638. name: "Normal",
  27639. height: math.unit(11, "feet"),
  27640. default: true
  27641. },
  27642. ]
  27643. ))
  27644. characterMakers.push(() => makeCharacter(
  27645. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27646. {
  27647. front: {
  27648. height: math.unit(6, "feet"),
  27649. weight: math.unit(150, "lb"),
  27650. name: "Front",
  27651. image: {
  27652. source: "./media/characters/meep/front.svg",
  27653. extra: 88 / 80,
  27654. bottom: 6 / 94
  27655. }
  27656. },
  27657. },
  27658. [
  27659. {
  27660. name: "Fun Sized",
  27661. height: math.unit(2, "inches"),
  27662. default: true
  27663. },
  27664. {
  27665. name: "Friend Sized",
  27666. height: math.unit(8, "inches")
  27667. },
  27668. ]
  27669. ))
  27670. characterMakers.push(() => makeCharacter(
  27671. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27672. {
  27673. front: {
  27674. height: math.unit(15, "feet"),
  27675. weight: math.unit(2500, "lb"),
  27676. name: "Front",
  27677. image: {
  27678. source: "./media/characters/holly-rabbit/front.svg",
  27679. extra: 1433 / 1233,
  27680. bottom: 125 / 1558
  27681. }
  27682. },
  27683. dick: {
  27684. height: math.unit(4.6, "feet"),
  27685. name: "Dick",
  27686. image: {
  27687. source: "./media/characters/holly-rabbit/dick.svg"
  27688. }
  27689. },
  27690. },
  27691. [
  27692. {
  27693. name: "Normal",
  27694. height: math.unit(15, "feet"),
  27695. default: true
  27696. },
  27697. {
  27698. name: "Macro",
  27699. height: math.unit(250, "feet")
  27700. },
  27701. {
  27702. name: "Macro+",
  27703. height: math.unit(2500, "feet")
  27704. },
  27705. ]
  27706. ))
  27707. characterMakers.push(() => makeCharacter(
  27708. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27709. {
  27710. front: {
  27711. height: math.unit(3.02, "meters"),
  27712. weight: math.unit(500, "kg"),
  27713. name: "Front",
  27714. image: {
  27715. source: "./media/characters/drena/front.svg",
  27716. extra: 282 / 243,
  27717. bottom: 8 / 290
  27718. }
  27719. },
  27720. side: {
  27721. height: math.unit(3.02, "meters"),
  27722. weight: math.unit(500, "kg"),
  27723. name: "Side",
  27724. image: {
  27725. source: "./media/characters/drena/side.svg",
  27726. extra: 280 / 245,
  27727. bottom: 10 / 290
  27728. }
  27729. },
  27730. back: {
  27731. height: math.unit(3.02, "meters"),
  27732. weight: math.unit(500, "kg"),
  27733. name: "Back",
  27734. image: {
  27735. source: "./media/characters/drena/back.svg",
  27736. extra: 278 / 243,
  27737. bottom: 2 / 280
  27738. }
  27739. },
  27740. foot: {
  27741. height: math.unit(0.75, "meters"),
  27742. name: "Foot",
  27743. image: {
  27744. source: "./media/characters/drena/foot.svg"
  27745. }
  27746. },
  27747. maw: {
  27748. height: math.unit(0.82, "meters"),
  27749. name: "Maw",
  27750. image: {
  27751. source: "./media/characters/drena/maw.svg"
  27752. }
  27753. },
  27754. rump: {
  27755. height: math.unit(0.93, "meters"),
  27756. name: "Rump",
  27757. image: {
  27758. source: "./media/characters/drena/rump.svg"
  27759. }
  27760. },
  27761. },
  27762. [
  27763. {
  27764. name: "Normal",
  27765. height: math.unit(3.02, "meters"),
  27766. default: true
  27767. },
  27768. ]
  27769. ))
  27770. characterMakers.push(() => makeCharacter(
  27771. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27772. {
  27773. front: {
  27774. height: math.unit(6 + 4 / 12, "feet"),
  27775. weight: math.unit(250, "lb"),
  27776. name: "Front",
  27777. image: {
  27778. source: "./media/characters/remmyzilla/front.svg",
  27779. extra: 4033 / 3588,
  27780. bottom: 123 / 4156
  27781. }
  27782. },
  27783. back: {
  27784. height: math.unit(6 + 4 / 12, "feet"),
  27785. weight: math.unit(250, "lb"),
  27786. name: "Back",
  27787. image: {
  27788. source: "./media/characters/remmyzilla/back.svg",
  27789. extra: 2687 / 2555,
  27790. bottom: 48 / 2735
  27791. }
  27792. },
  27793. frontFancy: {
  27794. height: math.unit(6 + 4 / 12, "feet"),
  27795. weight: math.unit(250, "lb"),
  27796. name: "Front (Fancy)",
  27797. image: {
  27798. source: "./media/characters/remmyzilla/front-fancy.svg",
  27799. extra: 4119 / 3419,
  27800. bottom: 237 / 4356
  27801. }
  27802. },
  27803. paw: {
  27804. height: math.unit(1.73, "feet"),
  27805. name: "Paw",
  27806. image: {
  27807. source: "./media/characters/remmyzilla/paw.svg"
  27808. }
  27809. },
  27810. maw: {
  27811. height: math.unit(1.73, "feet"),
  27812. name: "Maw",
  27813. image: {
  27814. source: "./media/characters/remmyzilla/maw.svg"
  27815. }
  27816. },
  27817. },
  27818. [
  27819. {
  27820. name: "Normal",
  27821. height: math.unit(6 + 4 / 12, "feet")
  27822. },
  27823. {
  27824. name: "Minimacro",
  27825. height: math.unit(12 + 8 / 12, "feet")
  27826. },
  27827. {
  27828. name: "Normal",
  27829. height: math.unit(640, "feet"),
  27830. default: true
  27831. },
  27832. {
  27833. name: "Megamacro",
  27834. height: math.unit(6400, "feet")
  27835. },
  27836. {
  27837. name: "Gigamacro",
  27838. height: math.unit(64000, "miles")
  27839. },
  27840. ]
  27841. ))
  27842. characterMakers.push(() => makeCharacter(
  27843. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  27844. {
  27845. front: {
  27846. height: math.unit(2.5, "meters"),
  27847. weight: math.unit(300, "lb"),
  27848. name: "Front",
  27849. image: {
  27850. source: "./media/characters/lawrence/front.svg",
  27851. extra: 357 / 335,
  27852. bottom: 30 / 387
  27853. }
  27854. },
  27855. back: {
  27856. height: math.unit(2.5, "meters"),
  27857. weight: math.unit(300, "lb"),
  27858. name: "Back",
  27859. image: {
  27860. source: "./media/characters/lawrence/back.svg",
  27861. extra: 357 / 338,
  27862. bottom: 16 / 373
  27863. }
  27864. },
  27865. head: {
  27866. height: math.unit(0.9, "meter"),
  27867. name: "Head",
  27868. image: {
  27869. source: "./media/characters/lawrence/head.svg"
  27870. }
  27871. },
  27872. maw: {
  27873. height: math.unit(0.7, "meter"),
  27874. name: "Maw",
  27875. image: {
  27876. source: "./media/characters/lawrence/maw.svg"
  27877. }
  27878. },
  27879. footBottom: {
  27880. height: math.unit(0.5, "meter"),
  27881. name: "Foot (Bottom)",
  27882. image: {
  27883. source: "./media/characters/lawrence/foot-bottom.svg"
  27884. }
  27885. },
  27886. footTop: {
  27887. height: math.unit(0.5, "meter"),
  27888. name: "Foot (Top)",
  27889. image: {
  27890. source: "./media/characters/lawrence/foot-top.svg"
  27891. }
  27892. },
  27893. },
  27894. [
  27895. {
  27896. name: "Normal",
  27897. height: math.unit(2.5, "meters"),
  27898. default: true
  27899. },
  27900. {
  27901. name: "Macro",
  27902. height: math.unit(95, "meters")
  27903. },
  27904. {
  27905. name: "Megamacro",
  27906. height: math.unit(150, "km")
  27907. },
  27908. ]
  27909. ))
  27910. characterMakers.push(() => makeCharacter(
  27911. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  27912. {
  27913. front: {
  27914. height: math.unit(4.2, "meters"),
  27915. name: "Front",
  27916. image: {
  27917. source: "./media/characters/sydney/front.svg",
  27918. extra: 1323 / 1277,
  27919. bottom: 111 / 1434
  27920. }
  27921. },
  27922. },
  27923. [
  27924. {
  27925. name: "Normal",
  27926. height: math.unit(4.2, "meters"),
  27927. default: true
  27928. },
  27929. ]
  27930. ))
  27931. characterMakers.push(() => makeCharacter(
  27932. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  27933. {
  27934. back: {
  27935. height: math.unit(201, "feet"),
  27936. name: "Back",
  27937. image: {
  27938. source: "./media/characters/jessica/back.svg",
  27939. extra: 273 / 259,
  27940. bottom: 7 / 280
  27941. }
  27942. },
  27943. },
  27944. [
  27945. {
  27946. name: "Normal",
  27947. height: math.unit(201, "feet"),
  27948. default: true
  27949. },
  27950. {
  27951. name: "Megamacro",
  27952. height: math.unit(8, "miles")
  27953. },
  27954. ]
  27955. ))
  27956. characterMakers.push(() => makeCharacter(
  27957. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  27958. {
  27959. side: {
  27960. height: math.unit(320, "cm"),
  27961. name: "Side",
  27962. image: {
  27963. source: "./media/characters/victoria/side.svg",
  27964. extra: 778 / 346,
  27965. bottom: 56 / 834
  27966. }
  27967. },
  27968. maw: {
  27969. height: math.unit(5.9, "feet"),
  27970. name: "Maw",
  27971. image: {
  27972. source: "./media/characters/victoria/maw.svg"
  27973. }
  27974. },
  27975. },
  27976. [
  27977. {
  27978. name: "Normal",
  27979. height: math.unit(320, "cm"),
  27980. default: true
  27981. },
  27982. ]
  27983. ))
  27984. characterMakers.push(() => makeCharacter(
  27985. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  27986. {
  27987. front: {
  27988. height: math.unit(5 + 6 / 12, "feet"),
  27989. name: "Front",
  27990. image: {
  27991. source: "./media/characters/cat/front.svg",
  27992. extra: 1374 / 1257,
  27993. bottom: 59 / 1433
  27994. }
  27995. },
  27996. back: {
  27997. height: math.unit(5 + 6 / 12, "feet"),
  27998. name: "Back",
  27999. image: {
  28000. source: "./media/characters/cat/back.svg",
  28001. extra: 1337 / 1226,
  28002. bottom: 34 / 1371
  28003. }
  28004. },
  28005. taur: {
  28006. height: math.unit(7, "feet"),
  28007. name: "Taur",
  28008. image: {
  28009. source: "./media/characters/cat/taur.svg",
  28010. extra: 1345 / 1231,
  28011. bottom: 66 / 1411
  28012. }
  28013. },
  28014. lucario: {
  28015. height: math.unit(4, "feet"),
  28016. name: "Lucario",
  28017. image: {
  28018. source: "./media/characters/cat/lucario.svg",
  28019. extra: 1470 / 1318,
  28020. bottom: 65 / 1535
  28021. }
  28022. },
  28023. megaLucario: {
  28024. height: math.unit(4, "feet"),
  28025. name: "Mega Lucario",
  28026. image: {
  28027. source: "./media/characters/cat/mega-lucario.svg",
  28028. extra: 1515 / 1319,
  28029. bottom: 63 / 1578
  28030. }
  28031. },
  28032. nickit: {
  28033. height: math.unit(2, "feet"),
  28034. name: "Nickit",
  28035. image: {
  28036. source: "./media/characters/cat/nickit.svg",
  28037. extra: 1980 / 1585,
  28038. bottom: 102 / 2082
  28039. }
  28040. },
  28041. lopunnyFront: {
  28042. height: math.unit(5, "feet"),
  28043. name: "Lopunny (Front)",
  28044. image: {
  28045. source: "./media/characters/cat/lopunny-front.svg",
  28046. extra: 1782 / 1469,
  28047. bottom: 38 / 1820
  28048. }
  28049. },
  28050. lopunnyBack: {
  28051. height: math.unit(5, "feet"),
  28052. name: "Lopunny (Back)",
  28053. image: {
  28054. source: "./media/characters/cat/lopunny-back.svg",
  28055. extra: 1660 / 1490,
  28056. bottom: 25 / 1685
  28057. }
  28058. },
  28059. },
  28060. [
  28061. {
  28062. name: "Really small",
  28063. height: math.unit(1, "nm")
  28064. },
  28065. {
  28066. name: "Micro",
  28067. height: math.unit(5, "inches")
  28068. },
  28069. {
  28070. name: "Normal",
  28071. height: math.unit(5 + 6 / 12, "feet"),
  28072. default: true
  28073. },
  28074. {
  28075. name: "Macro",
  28076. height: math.unit(50, "feet")
  28077. },
  28078. {
  28079. name: "Macro+",
  28080. height: math.unit(150, "feet")
  28081. },
  28082. {
  28083. name: "Megamacro",
  28084. height: math.unit(100, "miles")
  28085. },
  28086. ]
  28087. ))
  28088. characterMakers.push(() => makeCharacter(
  28089. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28090. {
  28091. front: {
  28092. height: math.unit(63.4, "meters"),
  28093. weight: math.unit(3.28349e+6, "kilograms"),
  28094. name: "Front",
  28095. image: {
  28096. source: "./media/characters/kirina-violet/front.svg",
  28097. extra: 2812 / 2725,
  28098. bottom: 0 / 2812
  28099. }
  28100. },
  28101. back: {
  28102. height: math.unit(63.4, "meters"),
  28103. weight: math.unit(3.28349e+6, "kilograms"),
  28104. name: "Back",
  28105. image: {
  28106. source: "./media/characters/kirina-violet/back.svg",
  28107. extra: 2812 / 2725,
  28108. bottom: 0 / 2812
  28109. }
  28110. },
  28111. mouth: {
  28112. height: math.unit(4.35, "meters"),
  28113. name: "Mouth",
  28114. image: {
  28115. source: "./media/characters/kirina-violet/mouth.svg"
  28116. }
  28117. },
  28118. paw: {
  28119. height: math.unit(5.6, "meters"),
  28120. name: "Paw",
  28121. image: {
  28122. source: "./media/characters/kirina-violet/paw.svg"
  28123. }
  28124. },
  28125. tail: {
  28126. height: math.unit(18, "meters"),
  28127. name: "Tail",
  28128. image: {
  28129. source: "./media/characters/kirina-violet/tail.svg"
  28130. }
  28131. },
  28132. },
  28133. [
  28134. {
  28135. name: "Macro",
  28136. height: math.unit(63.4, "meters"),
  28137. default: true
  28138. },
  28139. ]
  28140. ))
  28141. characterMakers.push(() => makeCharacter(
  28142. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28143. {
  28144. front: {
  28145. height: math.unit(60, "feet"),
  28146. name: "Front",
  28147. image: {
  28148. source: "./media/characters/cat-gigachu/front.svg",
  28149. extra: 1024 / 780,
  28150. bottom: 23 / 1047
  28151. }
  28152. },
  28153. back: {
  28154. height: math.unit(60, "feet"),
  28155. name: "Back",
  28156. image: {
  28157. source: "./media/characters/cat-gigachu/back.svg",
  28158. extra: 1024 / 780,
  28159. bottom: 23 / 1047
  28160. }
  28161. },
  28162. },
  28163. [
  28164. {
  28165. name: "Dynamax",
  28166. height: math.unit(60, "feet"),
  28167. default: true
  28168. },
  28169. ]
  28170. ))
  28171. characterMakers.push(() => makeCharacter(
  28172. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28173. {
  28174. front: {
  28175. height: math.unit(6, "feet"),
  28176. weight: math.unit(150, "lb"),
  28177. name: "Front",
  28178. image: {
  28179. source: "./media/characters/sfaiyan/front.svg",
  28180. extra: 999 / 978,
  28181. bottom: 5 / 1004
  28182. }
  28183. },
  28184. },
  28185. [
  28186. {
  28187. name: "Normal",
  28188. height: math.unit(1.82, "meters")
  28189. },
  28190. {
  28191. name: "Giant",
  28192. height: math.unit(2.27, "km"),
  28193. default: true
  28194. },
  28195. ]
  28196. ))
  28197. characterMakers.push(() => makeCharacter(
  28198. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28199. {
  28200. front: {
  28201. height: math.unit(179, "cm"),
  28202. weight: math.unit(100, "kg"),
  28203. name: "Front",
  28204. image: {
  28205. source: "./media/characters/raunehkeli/front.svg",
  28206. extra: 1934 / 1926,
  28207. bottom: 0 / 1934
  28208. }
  28209. },
  28210. },
  28211. [
  28212. {
  28213. name: "Normal",
  28214. height: math.unit(179, "cm")
  28215. },
  28216. {
  28217. name: "Maximum",
  28218. height: math.unit(575, "meters"),
  28219. default: true
  28220. },
  28221. ]
  28222. ))
  28223. characterMakers.push(() => makeCharacter(
  28224. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28225. {
  28226. front: {
  28227. height: math.unit(6, "feet"),
  28228. weight: math.unit(150, "lb"),
  28229. name: "Front",
  28230. image: {
  28231. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28232. extra: 2625 / 2518,
  28233. bottom: 60 / 2685
  28234. }
  28235. },
  28236. },
  28237. [
  28238. {
  28239. name: "Normal",
  28240. height: math.unit(6 + 2 / 12, "feet"),
  28241. default: true
  28242. },
  28243. {
  28244. name: "Macro",
  28245. height: math.unit(1180, "feet")
  28246. },
  28247. ]
  28248. ))
  28249. characterMakers.push(() => makeCharacter(
  28250. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28251. {
  28252. front: {
  28253. height: math.unit(5 + 6 / 12, "feet"),
  28254. weight: math.unit(108, "lb"),
  28255. name: "Front",
  28256. image: {
  28257. source: "./media/characters/lilith-zott/front.svg",
  28258. extra: 2510 / 2238,
  28259. bottom: 100 / 2610
  28260. }
  28261. },
  28262. frontDressed: {
  28263. height: math.unit(5 + 6 / 12, "feet"),
  28264. weight: math.unit(108, "lb"),
  28265. name: "Front (Dressed)",
  28266. image: {
  28267. source: "./media/characters/lilith-zott/front-dressed.svg",
  28268. extra: 2510 / 2238,
  28269. bottom: 100 / 2610
  28270. }
  28271. },
  28272. },
  28273. [
  28274. {
  28275. name: "Normal",
  28276. height: math.unit(5 + 6 / 12, "feet")
  28277. },
  28278. {
  28279. name: "Macro",
  28280. height: math.unit(200, "feet"),
  28281. default: true
  28282. },
  28283. {
  28284. name: "Macro+",
  28285. height: math.unit(1030, "feet")
  28286. },
  28287. ]
  28288. ))
  28289. characterMakers.push(() => makeCharacter(
  28290. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28291. {
  28292. front: {
  28293. height: math.unit(6, "feet"),
  28294. weight: math.unit(150, "lb"),
  28295. name: "Front",
  28296. image: {
  28297. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28298. extra: 2567 / 2435,
  28299. bottom: 39 / 2606
  28300. }
  28301. },
  28302. frontSuper: {
  28303. height: math.unit(6, "feet"),
  28304. name: "Front (Super)",
  28305. image: {
  28306. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28307. extra: 2567 / 2435,
  28308. bottom: 39 / 2606
  28309. }
  28310. },
  28311. },
  28312. [
  28313. {
  28314. name: "Normal",
  28315. height: math.unit(5 + 10 / 12, "feet")
  28316. },
  28317. {
  28318. name: "Macro",
  28319. height: math.unit(220, "feet"),
  28320. default: true
  28321. },
  28322. {
  28323. name: "Macro+",
  28324. height: math.unit(1100, "feet")
  28325. },
  28326. ]
  28327. ))
  28328. characterMakers.push(() => makeCharacter(
  28329. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28330. {
  28331. front: {
  28332. height: math.unit(100, "miles"),
  28333. name: "Front",
  28334. image: {
  28335. source: "./media/characters/sona/front.svg",
  28336. extra: 2433 / 2201,
  28337. bottom: 53 / 2486
  28338. }
  28339. },
  28340. foot: {
  28341. height: math.unit(16.1, "miles"),
  28342. name: "Foot",
  28343. image: {
  28344. source: "./media/characters/sona/foot.svg"
  28345. }
  28346. },
  28347. },
  28348. [
  28349. {
  28350. name: "Macro",
  28351. height: math.unit(100, "miles"),
  28352. default: true
  28353. },
  28354. ]
  28355. ))
  28356. characterMakers.push(() => makeCharacter(
  28357. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28358. {
  28359. front: {
  28360. height: math.unit(6, "feet"),
  28361. weight: math.unit(150, "lb"),
  28362. name: "Front",
  28363. image: {
  28364. source: "./media/characters/bailey/front.svg",
  28365. extra: 1778 / 1724,
  28366. bottom: 30 / 1808
  28367. }
  28368. },
  28369. },
  28370. [
  28371. {
  28372. name: "Micro",
  28373. height: math.unit(4, "inches")
  28374. },
  28375. {
  28376. name: "Normal",
  28377. height: math.unit(5 + 5 / 12, "feet"),
  28378. default: true
  28379. },
  28380. {
  28381. name: "Macro",
  28382. height: math.unit(250, "feet")
  28383. },
  28384. {
  28385. name: "Megamacro",
  28386. height: math.unit(100, "miles")
  28387. },
  28388. ]
  28389. ))
  28390. characterMakers.push(() => makeCharacter(
  28391. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28392. {
  28393. front: {
  28394. height: math.unit(5 + 2 / 12, "feet"),
  28395. weight: math.unit(120, "lb"),
  28396. name: "Front",
  28397. image: {
  28398. source: "./media/characters/snaps/front.svg",
  28399. extra: 2370 / 2177,
  28400. bottom: 48 / 2418
  28401. }
  28402. },
  28403. back: {
  28404. height: math.unit(5 + 2 / 12, "feet"),
  28405. weight: math.unit(120, "lb"),
  28406. name: "Back",
  28407. image: {
  28408. source: "./media/characters/snaps/back.svg",
  28409. extra: 2408 / 2258,
  28410. bottom: 15 / 2423
  28411. }
  28412. },
  28413. },
  28414. [
  28415. {
  28416. name: "Micro",
  28417. height: math.unit(9, "inches")
  28418. },
  28419. {
  28420. name: "Normal",
  28421. height: math.unit(5 + 2 / 12, "feet"),
  28422. default: true
  28423. },
  28424. {
  28425. name: "Mini Macro",
  28426. height: math.unit(10, "feet")
  28427. },
  28428. ]
  28429. ))
  28430. characterMakers.push(() => makeCharacter(
  28431. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28432. {
  28433. front: {
  28434. height: math.unit(1.8, "meters"),
  28435. weight: math.unit(85, "kg"),
  28436. name: "Front",
  28437. image: {
  28438. source: "./media/characters/azteck/front.svg",
  28439. extra: 2815 / 2625,
  28440. bottom: 89 / 2904
  28441. }
  28442. },
  28443. back: {
  28444. height: math.unit(1.8, "meters"),
  28445. weight: math.unit(85, "kg"),
  28446. name: "Back",
  28447. image: {
  28448. source: "./media/characters/azteck/back.svg",
  28449. extra: 2856 / 2648,
  28450. bottom: 85 / 2941
  28451. }
  28452. },
  28453. frontDressed: {
  28454. height: math.unit(1.8, "meters"),
  28455. weight: math.unit(85, "kg"),
  28456. name: "Front (Dressed)",
  28457. image: {
  28458. source: "./media/characters/azteck/front-dressed.svg",
  28459. extra: 2147 / 2003,
  28460. bottom: 68 / 2215
  28461. }
  28462. },
  28463. head: {
  28464. height: math.unit(0.47, "meters"),
  28465. weight: math.unit(85, "kg"),
  28466. name: "Head",
  28467. image: {
  28468. source: "./media/characters/azteck/head.svg"
  28469. }
  28470. },
  28471. },
  28472. [
  28473. {
  28474. name: "Bite sized",
  28475. height: math.unit(16, "cm")
  28476. },
  28477. {
  28478. name: "Normal",
  28479. height: math.unit(1.8, "meters"),
  28480. default: true
  28481. },
  28482. ]
  28483. ))
  28484. characterMakers.push(() => makeCharacter(
  28485. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28486. {
  28487. front: {
  28488. height: math.unit(6, "feet"),
  28489. weight: math.unit(150, "lb"),
  28490. name: "Front",
  28491. image: {
  28492. source: "./media/characters/pidge/front.svg",
  28493. extra: 620 / 588,
  28494. bottom: 9 / 629
  28495. }
  28496. },
  28497. back: {
  28498. height: math.unit(6, "feet"),
  28499. weight: math.unit(150, "lb"),
  28500. name: "Back",
  28501. image: {
  28502. source: "./media/characters/pidge/back.svg",
  28503. extra: 620 / 588,
  28504. bottom: 9 / 629
  28505. }
  28506. },
  28507. },
  28508. [
  28509. {
  28510. name: "Macro",
  28511. height: math.unit(1, "mile"),
  28512. default: true
  28513. },
  28514. ]
  28515. ))
  28516. characterMakers.push(() => makeCharacter(
  28517. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28518. {
  28519. front: {
  28520. height: math.unit(6, "feet"),
  28521. weight: math.unit(150, "lb"),
  28522. name: "Front",
  28523. image: {
  28524. source: "./media/characters/en/front.svg",
  28525. extra: 1697 / 1563,
  28526. bottom: 103 / 1800
  28527. }
  28528. },
  28529. back: {
  28530. height: math.unit(6, "feet"),
  28531. weight: math.unit(150, "lb"),
  28532. name: "Back",
  28533. image: {
  28534. source: "./media/characters/en/back.svg",
  28535. extra: 1700 / 1570,
  28536. bottom: 51 / 1751
  28537. }
  28538. },
  28539. frontDressed: {
  28540. height: math.unit(6, "feet"),
  28541. weight: math.unit(150, "lb"),
  28542. name: "Front (Dressed)",
  28543. image: {
  28544. source: "./media/characters/en/front-dressed.svg",
  28545. extra: 1697 / 1563,
  28546. bottom: 103 / 1800
  28547. }
  28548. },
  28549. backDressed: {
  28550. height: math.unit(6, "feet"),
  28551. weight: math.unit(150, "lb"),
  28552. name: "Back (Dressed)",
  28553. image: {
  28554. source: "./media/characters/en/back-dressed.svg",
  28555. extra: 1700 / 1570,
  28556. bottom: 51 / 1751
  28557. }
  28558. },
  28559. },
  28560. [
  28561. {
  28562. name: "Macro",
  28563. height: math.unit(210, "feet"),
  28564. default: true
  28565. },
  28566. ]
  28567. ))
  28568. characterMakers.push(() => makeCharacter(
  28569. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28570. {
  28571. front: {
  28572. height: math.unit(6, "feet"),
  28573. weight: math.unit(150, "lb"),
  28574. name: "Front",
  28575. image: {
  28576. source: "./media/characters/haze-orris/front.svg",
  28577. extra: 3975 / 3525,
  28578. bottom: 137 / 4112
  28579. }
  28580. },
  28581. },
  28582. [
  28583. {
  28584. name: "Micro",
  28585. height: math.unit(150, "mm"),
  28586. default: true
  28587. },
  28588. ]
  28589. ))
  28590. characterMakers.push(() => makeCharacter(
  28591. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28592. {
  28593. front: {
  28594. height: math.unit(6, "feet"),
  28595. weight: math.unit(150, "lb"),
  28596. name: "Front",
  28597. image: {
  28598. source: "./media/characters/casselene-yaro/front.svg",
  28599. extra: 4721 / 4541,
  28600. bottom: 82 / 4803
  28601. }
  28602. },
  28603. back: {
  28604. height: math.unit(6, "feet"),
  28605. weight: math.unit(150, "lb"),
  28606. name: "Back",
  28607. image: {
  28608. source: "./media/characters/casselene-yaro/back.svg",
  28609. extra: 4569 / 4377,
  28610. bottom: 69 / 4638
  28611. }
  28612. },
  28613. frontDressed: {
  28614. height: math.unit(6, "feet"),
  28615. weight: math.unit(150, "lb"),
  28616. name: "Front-dressed",
  28617. image: {
  28618. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28619. extra: 4721 / 4541,
  28620. bottom: 82 / 4803
  28621. }
  28622. },
  28623. },
  28624. [
  28625. {
  28626. name: "Macro",
  28627. height: math.unit(190, "feet"),
  28628. default: true
  28629. },
  28630. ]
  28631. ))
  28632. characterMakers.push(() => makeCharacter(
  28633. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28634. {
  28635. front: {
  28636. height: math.unit(6, "feet"),
  28637. weight: math.unit(150, "lb"),
  28638. name: "Front",
  28639. image: {
  28640. source: "./media/characters/myra-rue-delore/front.svg",
  28641. extra: 1340 / 1308,
  28642. bottom: 67 / 1407
  28643. }
  28644. },
  28645. back: {
  28646. height: math.unit(6, "feet"),
  28647. weight: math.unit(150, "lb"),
  28648. name: "Back",
  28649. image: {
  28650. source: "./media/characters/myra-rue-delore/back.svg",
  28651. extra: 1341 / 1310,
  28652. bottom: 40 / 1381
  28653. }
  28654. },
  28655. frontDressed: {
  28656. height: math.unit(6, "feet"),
  28657. weight: math.unit(150, "lb"),
  28658. name: "Front (Dressed)",
  28659. image: {
  28660. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28661. extra: 1340 / 1308,
  28662. bottom: 67 / 1407
  28663. }
  28664. },
  28665. },
  28666. [
  28667. {
  28668. name: "Macro",
  28669. height: math.unit(150, "feet"),
  28670. default: true
  28671. },
  28672. ]
  28673. ))
  28674. characterMakers.push(() => makeCharacter(
  28675. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28676. {
  28677. front: {
  28678. height: math.unit(10, "feet"),
  28679. weight: math.unit(15015, "lb"),
  28680. name: "Front",
  28681. image: {
  28682. source: "./media/characters/fem!plat/front.svg",
  28683. extra: 2799 / 2604,
  28684. bottom: 149 / 2948
  28685. }
  28686. },
  28687. },
  28688. [
  28689. {
  28690. name: "Normal",
  28691. height: math.unit(10, "feet"),
  28692. default: true
  28693. },
  28694. {
  28695. name: "Macro",
  28696. height: math.unit(100, "feet")
  28697. },
  28698. {
  28699. name: "Megamacro",
  28700. height: math.unit(1000, "feet")
  28701. },
  28702. ]
  28703. ))
  28704. characterMakers.push(() => makeCharacter(
  28705. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28706. {
  28707. front: {
  28708. height: math.unit(15 + 5 / 12, "feet"),
  28709. weight: math.unit(4600, "lb"),
  28710. name: "Front",
  28711. image: {
  28712. source: "./media/characters/neapolitan-ananassa/front.svg",
  28713. extra: 2903 / 2736,
  28714. bottom: 0 / 2903
  28715. }
  28716. },
  28717. side: {
  28718. height: math.unit(15 + 5 / 12, "feet"),
  28719. weight: math.unit(4600, "lb"),
  28720. name: "Side",
  28721. image: {
  28722. source: "./media/characters/neapolitan-ananassa/side.svg",
  28723. extra: 2925 / 2719,
  28724. bottom: 0 / 2925
  28725. }
  28726. },
  28727. back: {
  28728. height: math.unit(15 + 5 / 12, "feet"),
  28729. weight: math.unit(4600, "lb"),
  28730. name: "Back",
  28731. image: {
  28732. source: "./media/characters/neapolitan-ananassa/back.svg",
  28733. extra: 2903 / 2736,
  28734. bottom: 0 / 2903
  28735. }
  28736. },
  28737. },
  28738. [
  28739. {
  28740. name: "Normal",
  28741. height: math.unit(15 + 5 / 12, "feet"),
  28742. default: true
  28743. },
  28744. {
  28745. name: "Post-Millenium",
  28746. height: math.unit(35 + 5 / 12, "feet")
  28747. },
  28748. {
  28749. name: "Post-Era",
  28750. height: math.unit(450 + 5 / 12, "feet")
  28751. },
  28752. ]
  28753. ))
  28754. characterMakers.push(() => makeCharacter(
  28755. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28756. {
  28757. front: {
  28758. height: math.unit(300, "meters"),
  28759. weight: math.unit(125000, "tonnes"),
  28760. name: "Front",
  28761. image: {
  28762. source: "./media/characters/pazuzu/front.svg",
  28763. extra: 877 / 794,
  28764. bottom: 47 / 924
  28765. }
  28766. },
  28767. },
  28768. [
  28769. {
  28770. name: "Macro",
  28771. height: math.unit(300, "meters"),
  28772. default: true
  28773. },
  28774. ]
  28775. ))
  28776. characterMakers.push(() => makeCharacter(
  28777. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28778. {
  28779. side: {
  28780. height: math.unit(10 + 7 / 12, "feet"),
  28781. weight: math.unit(2.5, "tons"),
  28782. name: "Side",
  28783. image: {
  28784. source: "./media/characters/aasha/side.svg",
  28785. extra: 1345 / 1245,
  28786. bottom: 111 / 1456
  28787. }
  28788. },
  28789. back: {
  28790. height: math.unit(10 + 7 / 12, "feet"),
  28791. weight: math.unit(2.5, "tons"),
  28792. name: "Back",
  28793. image: {
  28794. source: "./media/characters/aasha/back.svg",
  28795. extra: 1133 / 1057,
  28796. bottom: 257 / 1390
  28797. }
  28798. },
  28799. },
  28800. [
  28801. {
  28802. name: "Normal",
  28803. height: math.unit(10 + 7 / 12, "feet"),
  28804. default: true
  28805. },
  28806. ]
  28807. ))
  28808. characterMakers.push(() => makeCharacter(
  28809. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  28810. {
  28811. front: {
  28812. height: math.unit(6 + 3 / 12, "feet"),
  28813. name: "Front",
  28814. image: {
  28815. source: "./media/characters/nevan/front.svg",
  28816. extra: 704 / 704,
  28817. bottom: 28 / 732
  28818. }
  28819. },
  28820. back: {
  28821. height: math.unit(6 + 3 / 12, "feet"),
  28822. name: "Back",
  28823. image: {
  28824. source: "./media/characters/nevan/back.svg",
  28825. extra: 714 / 714,
  28826. bottom: 21 / 735
  28827. }
  28828. },
  28829. frontFlaccid: {
  28830. height: math.unit(6 + 3 / 12, "feet"),
  28831. name: "Front (Flaccid)",
  28832. image: {
  28833. source: "./media/characters/nevan/front-flaccid.svg",
  28834. extra: 704 / 704,
  28835. bottom: 28 / 732
  28836. }
  28837. },
  28838. frontErect: {
  28839. height: math.unit(6 + 3 / 12, "feet"),
  28840. name: "Front (Erect)",
  28841. image: {
  28842. source: "./media/characters/nevan/front-erect.svg",
  28843. extra: 704 / 704,
  28844. bottom: 28 / 732
  28845. }
  28846. },
  28847. backFlaccid: {
  28848. height: math.unit(6 + 3 / 12, "feet"),
  28849. name: "Back (Flaccid)",
  28850. image: {
  28851. source: "./media/characters/nevan/back-flaccid.svg",
  28852. extra: 714 / 714,
  28853. bottom: 21 / 735
  28854. }
  28855. },
  28856. },
  28857. [
  28858. {
  28859. name: "Normal",
  28860. height: math.unit(6 + 3 / 12, "feet"),
  28861. default: true
  28862. },
  28863. ]
  28864. ))
  28865. characterMakers.push(() => makeCharacter(
  28866. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  28867. {
  28868. front: {
  28869. height: math.unit(4, "feet"),
  28870. name: "Front",
  28871. image: {
  28872. source: "./media/characters/arhan/front.svg",
  28873. extra: 3368 / 3133,
  28874. bottom: 0 / 3368
  28875. }
  28876. },
  28877. side: {
  28878. height: math.unit(4, "feet"),
  28879. name: "Side",
  28880. image: {
  28881. source: "./media/characters/arhan/side.svg",
  28882. extra: 3347 / 3105,
  28883. bottom: 0 / 3347
  28884. }
  28885. },
  28886. tongue: {
  28887. height: math.unit(1.42, "feet"),
  28888. name: "Tongue",
  28889. image: {
  28890. source: "./media/characters/arhan/tongue.svg"
  28891. }
  28892. },
  28893. head: {
  28894. height: math.unit(0.85, "feet"),
  28895. name: "Head",
  28896. image: {
  28897. source: "./media/characters/arhan/head.svg"
  28898. }
  28899. },
  28900. },
  28901. [
  28902. {
  28903. name: "Normal",
  28904. height: math.unit(4, "feet"),
  28905. default: true
  28906. },
  28907. ]
  28908. ))
  28909. characterMakers.push(() => makeCharacter(
  28910. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  28911. {
  28912. front: {
  28913. height: math.unit(5 + 7.5 / 12, "feet"),
  28914. weight: math.unit(120, "lb"),
  28915. name: "Front",
  28916. image: {
  28917. source: "./media/characters/digi-duncan/front.svg",
  28918. extra: 330 / 326,
  28919. bottom: 16 / 346
  28920. }
  28921. },
  28922. side: {
  28923. height: math.unit(5 + 7.5 / 12, "feet"),
  28924. weight: math.unit(120, "lb"),
  28925. name: "Side",
  28926. image: {
  28927. source: "./media/characters/digi-duncan/side.svg",
  28928. extra: 341 / 337,
  28929. bottom: 1 / 342
  28930. }
  28931. },
  28932. back: {
  28933. height: math.unit(5 + 7.5 / 12, "feet"),
  28934. weight: math.unit(120, "lb"),
  28935. name: "Back",
  28936. image: {
  28937. source: "./media/characters/digi-duncan/back.svg",
  28938. extra: 330 / 326,
  28939. bottom: 12 / 342
  28940. }
  28941. },
  28942. },
  28943. [
  28944. {
  28945. name: "Speck",
  28946. height: math.unit(0.25, "mm")
  28947. },
  28948. {
  28949. name: "Micro",
  28950. height: math.unit(5, "mm")
  28951. },
  28952. {
  28953. name: "Tiny",
  28954. height: math.unit(0.5, "inches"),
  28955. default: true
  28956. },
  28957. {
  28958. name: "Human",
  28959. height: math.unit(5 + 7.5 / 12, "feet")
  28960. },
  28961. {
  28962. name: "Minigiant",
  28963. height: math.unit(8 + 5.25, "feet")
  28964. },
  28965. {
  28966. name: "Giant",
  28967. height: math.unit(2000, "feet")
  28968. },
  28969. {
  28970. name: "Mega",
  28971. height: math.unit(371.1, "miles")
  28972. },
  28973. ]
  28974. ))
  28975. characterMakers.push(() => makeCharacter(
  28976. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  28977. {
  28978. front: {
  28979. height: math.unit(2, "meters"),
  28980. weight: math.unit(350, "kg"),
  28981. name: "Front",
  28982. image: {
  28983. source: "./media/characters/jagaz-soulbreaker/front.svg",
  28984. extra: 898 / 838,
  28985. bottom: 9 / 907
  28986. }
  28987. },
  28988. },
  28989. [
  28990. {
  28991. name: "Micro",
  28992. height: math.unit(8, "meters")
  28993. },
  28994. {
  28995. name: "Normal",
  28996. height: math.unit(50, "meters"),
  28997. default: true
  28998. },
  28999. {
  29000. name: "Macro",
  29001. height: math.unit(500, "meters")
  29002. },
  29003. ]
  29004. ))
  29005. characterMakers.push(() => makeCharacter(
  29006. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29007. {
  29008. front: {
  29009. height: math.unit(6 + 6 / 12, "feet"),
  29010. name: "Front",
  29011. image: {
  29012. source: "./media/characters/khardesh/front.svg",
  29013. extra: 888 / 797,
  29014. bottom: 25 / 913
  29015. }
  29016. },
  29017. },
  29018. [
  29019. {
  29020. name: "Normal",
  29021. height: math.unit(6 + 6 / 12, "feet"),
  29022. default: true
  29023. },
  29024. {
  29025. name: "Normal+",
  29026. height: math.unit(4, "meters")
  29027. },
  29028. {
  29029. name: "Macro",
  29030. height: math.unit(50, "meters")
  29031. },
  29032. {
  29033. name: "Macro+",
  29034. height: math.unit(100, "meters")
  29035. },
  29036. {
  29037. name: "Megamacro",
  29038. height: math.unit(20, "km")
  29039. },
  29040. ]
  29041. ))
  29042. characterMakers.push(() => makeCharacter(
  29043. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29044. {
  29045. front: {
  29046. height: math.unit(6, "feet"),
  29047. weight: math.unit(150, "lb"),
  29048. name: "Front",
  29049. image: {
  29050. source: "./media/characters/kosho/front.svg",
  29051. extra: 1847 / 1847,
  29052. bottom: 86 / 1933
  29053. }
  29054. },
  29055. },
  29056. [
  29057. {
  29058. name: "Second-stage micro",
  29059. height: math.unit(0.5, "inches")
  29060. },
  29061. {
  29062. name: "First-stage micro",
  29063. height: math.unit(6, "inches")
  29064. },
  29065. {
  29066. name: "Normal",
  29067. height: math.unit(6, "feet"),
  29068. default: true
  29069. },
  29070. {
  29071. name: "First-stage macro",
  29072. height: math.unit(72, "feet")
  29073. },
  29074. {
  29075. name: "Second-stage macro",
  29076. height: math.unit(864, "feet")
  29077. },
  29078. ]
  29079. ))
  29080. characterMakers.push(() => makeCharacter(
  29081. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29082. {
  29083. normal: {
  29084. height: math.unit(4 + 6 / 12, "feet"),
  29085. name: "Normal",
  29086. image: {
  29087. source: "./media/characters/hydra/normal.svg",
  29088. extra: 2833 / 2634,
  29089. bottom: 68 / 2901
  29090. }
  29091. },
  29092. smol: {
  29093. height: math.unit(0.705, "inches"),
  29094. name: "Smol",
  29095. image: {
  29096. source: "./media/characters/hydra/smol.svg",
  29097. extra: 2715 / 2540,
  29098. bottom: 0 / 2715
  29099. }
  29100. },
  29101. },
  29102. [
  29103. {
  29104. name: "Normal",
  29105. height: math.unit(4 + 6 / 12, "feet"),
  29106. default: true
  29107. }
  29108. ]
  29109. ))
  29110. characterMakers.push(() => makeCharacter(
  29111. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29112. {
  29113. front: {
  29114. height: math.unit(0.6, "cm"),
  29115. name: "Front",
  29116. image: {
  29117. source: "./media/characters/daz/front.svg",
  29118. extra: 1682 / 1164,
  29119. bottom: 42 / 1724
  29120. }
  29121. },
  29122. },
  29123. [
  29124. {
  29125. name: "Normal",
  29126. height: math.unit(0.6, "cm"),
  29127. default: true
  29128. },
  29129. ]
  29130. ))
  29131. characterMakers.push(() => makeCharacter(
  29132. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29133. {
  29134. front: {
  29135. height: math.unit(6, "feet"),
  29136. weight: math.unit(235, "lb"),
  29137. name: "Front",
  29138. image: {
  29139. source: "./media/characters/theo-pangolin/front.svg",
  29140. extra: 1996 / 1969,
  29141. bottom: 115 / 2111
  29142. }
  29143. },
  29144. back: {
  29145. height: math.unit(6, "feet"),
  29146. weight: math.unit(235, "lb"),
  29147. name: "Back",
  29148. image: {
  29149. source: "./media/characters/theo-pangolin/back.svg",
  29150. extra: 1979 / 1979,
  29151. bottom: 40 / 2019
  29152. }
  29153. },
  29154. feral: {
  29155. height: math.unit(2, "feet"),
  29156. weight: math.unit(30, "lb"),
  29157. name: "Feral",
  29158. image: {
  29159. source: "./media/characters/theo-pangolin/feral.svg",
  29160. extra: 803 / 791,
  29161. bottom: 181 / 984
  29162. }
  29163. },
  29164. footFive: {
  29165. height: math.unit(1.43, "feet"),
  29166. name: "Foot (Five Toes)",
  29167. image: {
  29168. source: "./media/characters/theo-pangolin/foot-five.svg"
  29169. }
  29170. },
  29171. footFour: {
  29172. height: math.unit(1.43, "feet"),
  29173. name: "Foot (Four Toes)",
  29174. image: {
  29175. source: "./media/characters/theo-pangolin/foot-four.svg"
  29176. }
  29177. },
  29178. handFour: {
  29179. height: math.unit(0.81, "feet"),
  29180. name: "Hand (Four Fingers)",
  29181. image: {
  29182. source: "./media/characters/theo-pangolin/hand-four.svg"
  29183. }
  29184. },
  29185. handThree: {
  29186. height: math.unit(0.81, "feet"),
  29187. name: "Hand (Three Fingers)",
  29188. image: {
  29189. source: "./media/characters/theo-pangolin/hand-three.svg"
  29190. }
  29191. },
  29192. headFront: {
  29193. height: math.unit(1.37, "feet"),
  29194. name: "Head (Front)",
  29195. image: {
  29196. source: "./media/characters/theo-pangolin/head-front.svg"
  29197. }
  29198. },
  29199. headSide: {
  29200. height: math.unit(1.43, "feet"),
  29201. name: "Head (Side)",
  29202. image: {
  29203. source: "./media/characters/theo-pangolin/head-side.svg"
  29204. }
  29205. },
  29206. tongue: {
  29207. height: math.unit(2.29, "feet"),
  29208. name: "Tongue",
  29209. image: {
  29210. source: "./media/characters/theo-pangolin/tongue.svg"
  29211. }
  29212. },
  29213. },
  29214. [
  29215. {
  29216. name: "Normal",
  29217. height: math.unit(6, "feet")
  29218. },
  29219. {
  29220. name: "Macro",
  29221. height: math.unit(400, "feet"),
  29222. default: true
  29223. },
  29224. ]
  29225. ))
  29226. characterMakers.push(() => makeCharacter(
  29227. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29228. {
  29229. front: {
  29230. height: math.unit(6, "inches"),
  29231. weight: math.unit(0.036, "kg"),
  29232. name: "Front",
  29233. image: {
  29234. source: "./media/characters/renée/front.svg",
  29235. extra: 900 / 886,
  29236. bottom: 8 / 908
  29237. }
  29238. },
  29239. },
  29240. [
  29241. {
  29242. name: "Nano",
  29243. height: math.unit(1, "nm")
  29244. },
  29245. {
  29246. name: "Micro",
  29247. height: math.unit(1, "mm")
  29248. },
  29249. {
  29250. name: "Normal",
  29251. height: math.unit(6, "inches")
  29252. },
  29253. {
  29254. name: "Macro",
  29255. height: math.unit(2000, "feet"),
  29256. default: true
  29257. },
  29258. {
  29259. name: "Megamacro",
  29260. height: math.unit(2, "km")
  29261. },
  29262. {
  29263. name: "Gigamacro",
  29264. height: math.unit(2000, "km")
  29265. },
  29266. {
  29267. name: "Teramacro",
  29268. height: math.unit(250000, "km")
  29269. },
  29270. ]
  29271. ))
  29272. characterMakers.push(() => makeCharacter(
  29273. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29274. {
  29275. front: {
  29276. height: math.unit(4, "meters"),
  29277. weight: math.unit(150, "kg"),
  29278. name: "Front",
  29279. image: {
  29280. source: "./media/characters/caledvwlch/front.svg",
  29281. extra: 1760 / 1551,
  29282. bottom: 28 / 1788
  29283. }
  29284. },
  29285. side: {
  29286. height: math.unit(4, "meters"),
  29287. weight: math.unit(150, "kg"),
  29288. name: "Side",
  29289. image: {
  29290. source: "./media/characters/caledvwlch/side.svg",
  29291. extra: 1605 / 1536,
  29292. bottom: 31 / 1636
  29293. }
  29294. },
  29295. back: {
  29296. height: math.unit(4, "meters"),
  29297. weight: math.unit(150, "kg"),
  29298. name: "Back",
  29299. image: {
  29300. source: "./media/characters/caledvwlch/back.svg",
  29301. extra: 1635 / 1565,
  29302. bottom: 27 / 1662
  29303. }
  29304. },
  29305. },
  29306. [
  29307. {
  29308. name: "\"Incognito\"",
  29309. height: math.unit(4, "meters")
  29310. },
  29311. {
  29312. name: "Small rampage",
  29313. height: math.unit(600, "meters")
  29314. },
  29315. {
  29316. name: "Mega",
  29317. height: math.unit(30, "km")
  29318. },
  29319. {
  29320. name: "Home-size",
  29321. height: math.unit(50, "km"),
  29322. default: true
  29323. },
  29324. {
  29325. name: "Giga",
  29326. height: math.unit(300, "km")
  29327. },
  29328. {
  29329. name: "Lounging",
  29330. height: math.unit(11000, "km")
  29331. },
  29332. {
  29333. name: "Planet snacking",
  29334. height: math.unit(2000000, "km")
  29335. },
  29336. ]
  29337. ))
  29338. characterMakers.push(() => makeCharacter(
  29339. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29340. {
  29341. front: {
  29342. height: math.unit(6, "feet"),
  29343. weight: math.unit(215, "lb"),
  29344. name: "Front",
  29345. image: {
  29346. source: "./media/characters/sapphire-svell/front.svg",
  29347. extra: 495 / 455,
  29348. bottom: 20 / 515
  29349. }
  29350. },
  29351. back: {
  29352. height: math.unit(6, "feet"),
  29353. weight: math.unit(216, "lb"),
  29354. name: "Back",
  29355. image: {
  29356. source: "./media/characters/sapphire-svell/back.svg",
  29357. extra: 497 / 477,
  29358. bottom: 7 / 504
  29359. }
  29360. },
  29361. maw: {
  29362. height: math.unit(1.57, "feet"),
  29363. name: "Maw",
  29364. image: {
  29365. source: "./media/characters/sapphire-svell/maw.svg"
  29366. }
  29367. },
  29368. foot: {
  29369. height: math.unit(1.07, "feet"),
  29370. name: "Foot",
  29371. image: {
  29372. source: "./media/characters/sapphire-svell/foot.svg"
  29373. }
  29374. },
  29375. toering: {
  29376. height: math.unit(1.7, "inch"),
  29377. name: "Toering",
  29378. image: {
  29379. source: "./media/characters/sapphire-svell/toering.svg"
  29380. }
  29381. },
  29382. },
  29383. [
  29384. {
  29385. name: "Normal",
  29386. height: math.unit(300, "feet"),
  29387. default: true
  29388. },
  29389. {
  29390. name: "Augmented",
  29391. height: math.unit(1250, "feet")
  29392. },
  29393. {
  29394. name: "Unleashed",
  29395. height: math.unit(3000, "feet")
  29396. },
  29397. ]
  29398. ))
  29399. characterMakers.push(() => makeCharacter(
  29400. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29401. {
  29402. side: {
  29403. height: math.unit(2 + 3 / 12, "feet"),
  29404. weight: math.unit(110, "lb"),
  29405. name: "Side",
  29406. image: {
  29407. source: "./media/characters/glitch-flux/side.svg",
  29408. extra: 997 / 805,
  29409. bottom: 20 / 1017
  29410. }
  29411. },
  29412. },
  29413. [
  29414. {
  29415. name: "Normal",
  29416. height: math.unit(2 + 3 / 12, "feet"),
  29417. default: true
  29418. },
  29419. ]
  29420. ))
  29421. characterMakers.push(() => makeCharacter(
  29422. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29423. {
  29424. front: {
  29425. height: math.unit(4, "meters"),
  29426. name: "Front",
  29427. image: {
  29428. source: "./media/characters/mid/front.svg",
  29429. extra: 507 / 476,
  29430. bottom: 17 / 524
  29431. }
  29432. },
  29433. back: {
  29434. height: math.unit(4, "meters"),
  29435. name: "Back",
  29436. image: {
  29437. source: "./media/characters/mid/back.svg",
  29438. extra: 519 / 487,
  29439. bottom: 7 / 526
  29440. }
  29441. },
  29442. stuck: {
  29443. height: math.unit(2.2, "meters"),
  29444. name: "Stuck",
  29445. image: {
  29446. source: "./media/characters/mid/stuck.svg",
  29447. extra: 1951 / 1869,
  29448. bottom: 88 / 2039
  29449. }
  29450. }
  29451. },
  29452. [
  29453. {
  29454. name: "Normal",
  29455. height: math.unit(4, "meters"),
  29456. default: true
  29457. },
  29458. {
  29459. name: "Big",
  29460. height: math.unit(10, "meters")
  29461. },
  29462. {
  29463. name: "Macro",
  29464. height: math.unit(800, "meters")
  29465. },
  29466. {
  29467. name: "Megamacro",
  29468. height: math.unit(100, "km")
  29469. },
  29470. {
  29471. name: "Overgrown",
  29472. height: math.unit(1, "parsec")
  29473. },
  29474. ]
  29475. ))
  29476. characterMakers.push(() => makeCharacter(
  29477. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29478. {
  29479. front: {
  29480. height: math.unit(2.5, "meters"),
  29481. weight: math.unit(225, "kg"),
  29482. name: "Front",
  29483. image: {
  29484. source: "./media/characters/iris/front.svg",
  29485. extra: 3348 / 3251,
  29486. bottom: 205 / 3553
  29487. }
  29488. },
  29489. maw: {
  29490. height: math.unit(0.56, "meter"),
  29491. name: "Maw",
  29492. image: {
  29493. source: "./media/characters/iris/maw.svg"
  29494. }
  29495. },
  29496. },
  29497. [
  29498. {
  29499. name: "Mewter cat",
  29500. height: math.unit(1.2, "meters")
  29501. },
  29502. {
  29503. name: "Minimacro",
  29504. height: math.unit(2.5, "meters"),
  29505. default: true
  29506. },
  29507. {
  29508. name: "Macro",
  29509. height: math.unit(180, "meters")
  29510. },
  29511. {
  29512. name: "Megamacro",
  29513. height: math.unit(2746, "meters")
  29514. },
  29515. ]
  29516. ))
  29517. characterMakers.push(() => makeCharacter(
  29518. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29519. {
  29520. front: {
  29521. height: math.unit(6, "feet"),
  29522. weight: math.unit(135, "lb"),
  29523. name: "Front",
  29524. image: {
  29525. source: "./media/characters/axel/front.svg",
  29526. extra: 908 / 908,
  29527. bottom: 58 / 966
  29528. }
  29529. },
  29530. side: {
  29531. height: math.unit(6, "feet"),
  29532. weight: math.unit(135, "lb"),
  29533. name: "Side",
  29534. image: {
  29535. source: "./media/characters/axel/side.svg",
  29536. extra: 958 / 958,
  29537. bottom: 11 / 969
  29538. }
  29539. },
  29540. back: {
  29541. height: math.unit(6, "feet"),
  29542. weight: math.unit(135, "lb"),
  29543. name: "Back",
  29544. image: {
  29545. source: "./media/characters/axel/back.svg",
  29546. extra: 887 / 887,
  29547. bottom: 34 / 921
  29548. }
  29549. },
  29550. head: {
  29551. height: math.unit(1.07, "feet"),
  29552. name: "Head",
  29553. image: {
  29554. source: "./media/characters/axel/head.svg"
  29555. }
  29556. },
  29557. beak: {
  29558. height: math.unit(1.4, "feet"),
  29559. name: "Beak",
  29560. image: {
  29561. source: "./media/characters/axel/beak.svg"
  29562. }
  29563. },
  29564. beakSide: {
  29565. height: math.unit(1.4, "feet"),
  29566. name: "Beak Side",
  29567. image: {
  29568. source: "./media/characters/axel/beak-side.svg"
  29569. }
  29570. },
  29571. sheath: {
  29572. height: math.unit(0.5, "feet"),
  29573. name: "Sheath",
  29574. image: {
  29575. source: "./media/characters/axel/sheath.svg"
  29576. }
  29577. },
  29578. dick: {
  29579. height: math.unit(0.98, "feet"),
  29580. name: "Dick",
  29581. image: {
  29582. source: "./media/characters/axel/dick.svg"
  29583. }
  29584. },
  29585. },
  29586. [
  29587. {
  29588. name: "Macro",
  29589. height: math.unit(68, "meters"),
  29590. default: true
  29591. },
  29592. ]
  29593. ))
  29594. characterMakers.push(() => makeCharacter(
  29595. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29596. {
  29597. front: {
  29598. height: math.unit(3.5, "meters"),
  29599. weight: math.unit(1200, "kg"),
  29600. name: "Front",
  29601. image: {
  29602. source: "./media/characters/joanna/front.svg",
  29603. extra: 1596 / 1488,
  29604. bottom: 29 / 1625
  29605. }
  29606. },
  29607. back: {
  29608. height: math.unit(3.5, "meters"),
  29609. weight: math.unit(1200, "kg"),
  29610. name: "Back",
  29611. image: {
  29612. source: "./media/characters/joanna/back.svg",
  29613. extra: 1594 / 1495,
  29614. bottom: 26 / 1620
  29615. }
  29616. },
  29617. frontShorts: {
  29618. height: math.unit(3.5, "meters"),
  29619. weight: math.unit(1200, "kg"),
  29620. name: "Front (Shorts)",
  29621. image: {
  29622. source: "./media/characters/joanna/front-shorts.svg",
  29623. extra: 1596 / 1488,
  29624. bottom: 29 / 1625
  29625. }
  29626. },
  29627. frontBiker: {
  29628. height: math.unit(3.5, "meters"),
  29629. weight: math.unit(1200, "kg"),
  29630. name: "Front (Biker)",
  29631. image: {
  29632. source: "./media/characters/joanna/front-biker.svg",
  29633. extra: 1596 / 1488,
  29634. bottom: 29 / 1625
  29635. }
  29636. },
  29637. backBiker: {
  29638. height: math.unit(3.5, "meters"),
  29639. weight: math.unit(1200, "kg"),
  29640. name: "Back (Biker)",
  29641. image: {
  29642. source: "./media/characters/joanna/back-biker.svg",
  29643. extra: 1594 / 1495,
  29644. bottom: 88 / 1682
  29645. }
  29646. },
  29647. bikeLeft: {
  29648. height: math.unit(2.4, "meters"),
  29649. weight: math.unit(1600, "kg"),
  29650. name: "Bike (Left)",
  29651. image: {
  29652. source: "./media/characters/joanna/bike-left.svg",
  29653. extra: 720 / 720,
  29654. bottom: 8 / 728
  29655. }
  29656. },
  29657. bikeRight: {
  29658. height: math.unit(2.4, "meters"),
  29659. weight: math.unit(1600, "kg"),
  29660. name: "Bike (Right)",
  29661. image: {
  29662. source: "./media/characters/joanna/bike-right.svg",
  29663. extra: 720 / 720,
  29664. bottom: 8 / 728
  29665. }
  29666. },
  29667. },
  29668. [
  29669. {
  29670. name: "Incognito",
  29671. height: math.unit(3.5, "meters")
  29672. },
  29673. {
  29674. name: "Casual Big",
  29675. height: math.unit(200, "meters")
  29676. },
  29677. {
  29678. name: "Macro",
  29679. height: math.unit(600, "meters")
  29680. },
  29681. {
  29682. name: "Original",
  29683. height: math.unit(20, "km"),
  29684. default: true
  29685. },
  29686. {
  29687. name: "Giga",
  29688. height: math.unit(400, "km")
  29689. },
  29690. {
  29691. name: "Lounging",
  29692. height: math.unit(1500, "km")
  29693. },
  29694. {
  29695. name: "Planetary",
  29696. height: math.unit(200000, "km")
  29697. },
  29698. ]
  29699. ))
  29700. characterMakers.push(() => makeCharacter(
  29701. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29702. {
  29703. front: {
  29704. height: math.unit(6, "feet"),
  29705. weight: math.unit(150, "lb"),
  29706. name: "Front",
  29707. image: {
  29708. source: "./media/characters/hugo-sigil/front.svg",
  29709. extra: 522 / 500,
  29710. bottom: 2 / 524
  29711. }
  29712. },
  29713. back: {
  29714. height: math.unit(6, "feet"),
  29715. weight: math.unit(150, "lb"),
  29716. name: "Back",
  29717. image: {
  29718. source: "./media/characters/hugo-sigil/back.svg",
  29719. extra: 519 / 495,
  29720. bottom: 5 / 524
  29721. }
  29722. },
  29723. maw: {
  29724. height: math.unit(1.4, "feet"),
  29725. weight: math.unit(150, "lb"),
  29726. name: "Maw",
  29727. image: {
  29728. source: "./media/characters/hugo-sigil/maw.svg"
  29729. }
  29730. },
  29731. feet: {
  29732. height: math.unit(1.56, "feet"),
  29733. weight: math.unit(150, "lb"),
  29734. name: "Feet",
  29735. image: {
  29736. source: "./media/characters/hugo-sigil/feet.svg",
  29737. extra: 177 / 177,
  29738. bottom: 12 / 189
  29739. }
  29740. },
  29741. },
  29742. [
  29743. {
  29744. name: "Normal",
  29745. height: math.unit(6, "feet")
  29746. },
  29747. {
  29748. name: "Macro",
  29749. height: math.unit(200, "feet"),
  29750. default: true
  29751. },
  29752. ]
  29753. ))
  29754. characterMakers.push(() => makeCharacter(
  29755. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  29756. {
  29757. front: {
  29758. height: math.unit(6, "feet"),
  29759. weight: math.unit(150, "lb"),
  29760. name: "Front",
  29761. image: {
  29762. source: "./media/characters/peri/front.svg",
  29763. extra: 2354 / 2233,
  29764. bottom: 49 / 2403
  29765. }
  29766. },
  29767. },
  29768. [
  29769. {
  29770. name: "Really Small",
  29771. height: math.unit(1, "nm")
  29772. },
  29773. {
  29774. name: "Micro",
  29775. height: math.unit(4, "inches")
  29776. },
  29777. {
  29778. name: "Normal",
  29779. height: math.unit(7, "inches"),
  29780. default: true
  29781. },
  29782. {
  29783. name: "Macro",
  29784. height: math.unit(400, "feet")
  29785. },
  29786. {
  29787. name: "Megamacro",
  29788. height: math.unit(100, "miles")
  29789. },
  29790. ]
  29791. ))
  29792. characterMakers.push(() => makeCharacter(
  29793. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  29794. {
  29795. frontSlim: {
  29796. height: math.unit(7, "feet"),
  29797. name: "Front (Slim)",
  29798. image: {
  29799. source: "./media/characters/issilora/front-slim.svg",
  29800. extra: 529 / 449,
  29801. bottom: 53 / 582
  29802. }
  29803. },
  29804. sideSlim: {
  29805. height: math.unit(7, "feet"),
  29806. name: "Side (Slim)",
  29807. image: {
  29808. source: "./media/characters/issilora/side-slim.svg",
  29809. extra: 570 / 480,
  29810. bottom: 30 / 600
  29811. }
  29812. },
  29813. backSlim: {
  29814. height: math.unit(7, "feet"),
  29815. name: "Back (Slim)",
  29816. image: {
  29817. source: "./media/characters/issilora/back-slim.svg",
  29818. extra: 537 / 455,
  29819. bottom: 46 / 583
  29820. }
  29821. },
  29822. frontBuff: {
  29823. height: math.unit(7, "feet"),
  29824. name: "Front (Buff)",
  29825. image: {
  29826. source: "./media/characters/issilora/front-buff.svg",
  29827. extra: 2310 / 2035,
  29828. bottom: 335 / 2645
  29829. }
  29830. },
  29831. head: {
  29832. height: math.unit(1.94, "feet"),
  29833. name: "Head",
  29834. image: {
  29835. source: "./media/characters/issilora/head.svg"
  29836. }
  29837. },
  29838. },
  29839. [
  29840. {
  29841. name: "Minimum",
  29842. height: math.unit(7, "feet")
  29843. },
  29844. {
  29845. name: "Comfortable",
  29846. height: math.unit(17, "feet")
  29847. },
  29848. {
  29849. name: "Fun Size",
  29850. height: math.unit(47, "feet")
  29851. },
  29852. {
  29853. name: "Natural Macro",
  29854. height: math.unit(137, "feet"),
  29855. default: true
  29856. },
  29857. {
  29858. name: "Maximum Kaiju",
  29859. height: math.unit(397, "feet")
  29860. },
  29861. ]
  29862. ))
  29863. characterMakers.push(() => makeCharacter(
  29864. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  29865. {
  29866. front: {
  29867. height: math.unit(50 + 9/12, "feet"),
  29868. weight: math.unit(32.8, "tons"),
  29869. name: "Front",
  29870. image: {
  29871. source: "./media/characters/irb'iiritaahn/front.svg",
  29872. extra: 1878/1826,
  29873. bottom: 326/2204
  29874. }
  29875. },
  29876. back: {
  29877. height: math.unit(50 + 9/12, "feet"),
  29878. weight: math.unit(32.8, "tons"),
  29879. name: "Back",
  29880. image: {
  29881. source: "./media/characters/irb'iiritaahn/back.svg",
  29882. extra: 2052/2018,
  29883. bottom: 152/2204
  29884. }
  29885. },
  29886. head: {
  29887. height: math.unit(12.86, "feet"),
  29888. name: "Head",
  29889. image: {
  29890. source: "./media/characters/irb'iiritaahn/head.svg"
  29891. }
  29892. },
  29893. maw: {
  29894. height: math.unit(9.66, "feet"),
  29895. name: "Maw",
  29896. image: {
  29897. source: "./media/characters/irb'iiritaahn/maw.svg"
  29898. }
  29899. },
  29900. frontDick: {
  29901. height: math.unit(8.78461, "feet"),
  29902. name: "Front Dick",
  29903. image: {
  29904. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  29905. }
  29906. },
  29907. rearDick: {
  29908. height: math.unit(8.78461, "feet"),
  29909. name: "Rear Dick",
  29910. image: {
  29911. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  29912. }
  29913. },
  29914. rearDickUnfolded: {
  29915. height: math.unit(8.78, "feet"),
  29916. name: "Rear Dick (Unfolded)",
  29917. image: {
  29918. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  29919. }
  29920. },
  29921. wings: {
  29922. height: math.unit(43, "feet"),
  29923. name: "Wings",
  29924. image: {
  29925. source: "./media/characters/irb'iiritaahn/wings.svg"
  29926. }
  29927. },
  29928. },
  29929. [
  29930. {
  29931. name: "Macro",
  29932. height: math.unit(50 + 9/12, "feet"),
  29933. default: true
  29934. },
  29935. ]
  29936. ))
  29937. characterMakers.push(() => makeCharacter(
  29938. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  29939. {
  29940. front: {
  29941. height: math.unit(205, "cm"),
  29942. weight: math.unit(102, "kg"),
  29943. name: "Front",
  29944. image: {
  29945. source: "./media/characters/irbisgreif/front.svg",
  29946. extra: 785/706,
  29947. bottom: 13/798
  29948. }
  29949. },
  29950. back: {
  29951. height: math.unit(205, "cm"),
  29952. weight: math.unit(102, "kg"),
  29953. name: "Back",
  29954. image: {
  29955. source: "./media/characters/irbisgreif/back.svg",
  29956. extra: 713/701,
  29957. bottom: 26/739
  29958. }
  29959. },
  29960. frontDressed: {
  29961. height: math.unit(216, "cm"),
  29962. weight: math.unit(102, "kg"),
  29963. name: "Front-dressed",
  29964. image: {
  29965. source: "./media/characters/irbisgreif/front-dressed.svg",
  29966. extra: 902/776,
  29967. bottom: 14/916
  29968. }
  29969. },
  29970. sideDressed: {
  29971. height: math.unit(195, "cm"),
  29972. weight: math.unit(102, "kg"),
  29973. name: "Side-dressed",
  29974. image: {
  29975. source: "./media/characters/irbisgreif/side-dressed.svg",
  29976. extra: 788/688,
  29977. bottom: 21/809
  29978. }
  29979. },
  29980. backDressed: {
  29981. height: math.unit(216, "cm"),
  29982. weight: math.unit(102, "kg"),
  29983. name: "Back-dressed",
  29984. image: {
  29985. source: "./media/characters/irbisgreif/back-dressed.svg",
  29986. extra: 901/783,
  29987. bottom: 10/911
  29988. }
  29989. },
  29990. dick: {
  29991. height: math.unit(0.49, "feet"),
  29992. name: "Dick",
  29993. image: {
  29994. source: "./media/characters/irbisgreif/dick.svg"
  29995. }
  29996. },
  29997. wingTop: {
  29998. height: math.unit(1.93 , "feet"),
  29999. name: "Wing-top",
  30000. image: {
  30001. source: "./media/characters/irbisgreif/wing-top.svg"
  30002. }
  30003. },
  30004. wingBottom: {
  30005. height: math.unit(1.93 , "feet"),
  30006. name: "Wing-bottom",
  30007. image: {
  30008. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30009. }
  30010. },
  30011. },
  30012. [
  30013. {
  30014. name: "Normal",
  30015. height: math.unit(216, "cm"),
  30016. default: true
  30017. },
  30018. ]
  30019. ))
  30020. characterMakers.push(() => makeCharacter(
  30021. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30022. {
  30023. front: {
  30024. height: math.unit(6, "feet"),
  30025. weight: math.unit(150, "lb"),
  30026. name: "Front",
  30027. image: {
  30028. source: "./media/characters/pride/front.svg",
  30029. extra: 1299/1230,
  30030. bottom: 18/1317
  30031. }
  30032. },
  30033. },
  30034. [
  30035. {
  30036. name: "Normal",
  30037. height: math.unit(7, "feet")
  30038. },
  30039. {
  30040. name: "Mini-macro",
  30041. height: math.unit(11, "feet")
  30042. },
  30043. {
  30044. name: "Macro",
  30045. height: math.unit(15, "meters"),
  30046. default: true
  30047. },
  30048. {
  30049. name: "Macro+",
  30050. height: math.unit(40, "meters")
  30051. },
  30052. ]
  30053. ))
  30054. characterMakers.push(() => makeCharacter(
  30055. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30056. {
  30057. front: {
  30058. height: math.unit(4 + 2 / 12, "feet"),
  30059. weight: math.unit(95, "lb"),
  30060. name: "Front",
  30061. image: {
  30062. source: "./media/characters/vaelophis-nyx/front.svg",
  30063. extra: 2532/2330,
  30064. bottom: 0/2532
  30065. }
  30066. },
  30067. back: {
  30068. height: math.unit(4 + 2 / 12, "feet"),
  30069. weight: math.unit(95, "lb"),
  30070. name: "Back",
  30071. image: {
  30072. source: "./media/characters/vaelophis-nyx/back.svg",
  30073. extra: 2484/2361,
  30074. bottom: 0/2484
  30075. }
  30076. },
  30077. feralSide: {
  30078. height: math.unit(2 + 1/12, "feet"),
  30079. weight: math.unit(20, "lb"),
  30080. name: "Feral (Side)",
  30081. image: {
  30082. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30083. extra: 1721/1581,
  30084. bottom: 70/1791
  30085. }
  30086. },
  30087. feralLazing: {
  30088. height: math.unit(1.08, "feet"),
  30089. weight: math.unit(20, "lb"),
  30090. name: "Feral (Lazing)",
  30091. image: {
  30092. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30093. extra: 822/822,
  30094. bottom: 248/1070
  30095. }
  30096. },
  30097. ear: {
  30098. height: math.unit(0.416, "feet"),
  30099. name: "Ear",
  30100. image: {
  30101. source: "./media/characters/vaelophis-nyx/ear.svg"
  30102. }
  30103. },
  30104. eye: {
  30105. height: math.unit(0.0748, "feet"),
  30106. name: "Eye",
  30107. image: {
  30108. source: "./media/characters/vaelophis-nyx/eye.svg"
  30109. }
  30110. },
  30111. mouth: {
  30112. height: math.unit(0.378, "feet"),
  30113. name: "Mouth",
  30114. image: {
  30115. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30116. }
  30117. },
  30118. spade: {
  30119. height: math.unit(0.55, "feet"),
  30120. name: "Spade",
  30121. image: {
  30122. source: "./media/characters/vaelophis-nyx/spade.svg"
  30123. }
  30124. },
  30125. },
  30126. [
  30127. {
  30128. name: "Normal",
  30129. height: math.unit(4 + 2/12, "feet"),
  30130. default: true
  30131. },
  30132. ]
  30133. ))
  30134. characterMakers.push(() => makeCharacter(
  30135. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30136. {
  30137. front: {
  30138. height: math.unit(7, "feet"),
  30139. weight: math.unit(231, "lb"),
  30140. name: "Front",
  30141. image: {
  30142. source: "./media/characters/flux/front.svg",
  30143. extra: 919/871,
  30144. bottom: 0/919
  30145. }
  30146. },
  30147. back: {
  30148. height: math.unit(7, "feet"),
  30149. weight: math.unit(231, "lb"),
  30150. name: "Back",
  30151. image: {
  30152. source: "./media/characters/flux/back.svg",
  30153. extra: 1040/992,
  30154. bottom: 0/1040
  30155. }
  30156. },
  30157. frontDressed: {
  30158. height: math.unit(7, "feet"),
  30159. weight: math.unit(231, "lb"),
  30160. name: "Front (Dressed)",
  30161. image: {
  30162. source: "./media/characters/flux/front-dressed.svg",
  30163. extra: 919/871,
  30164. bottom: 0/919
  30165. }
  30166. },
  30167. feralSide: {
  30168. height: math.unit(5, "feet"),
  30169. weight: math.unit(150, "lb"),
  30170. name: "Feral (Side)",
  30171. image: {
  30172. source: "./media/characters/flux/feral-side.svg",
  30173. extra: 598/528,
  30174. bottom: 28/626
  30175. }
  30176. },
  30177. head: {
  30178. height: math.unit(1.585, "feet"),
  30179. name: "Head",
  30180. image: {
  30181. source: "./media/characters/flux/head.svg"
  30182. }
  30183. },
  30184. headSide: {
  30185. height: math.unit(1.74, "feet"),
  30186. name: "Head (Side)",
  30187. image: {
  30188. source: "./media/characters/flux/head-side.svg"
  30189. }
  30190. },
  30191. headSideFire: {
  30192. height: math.unit(1.76, "feet"),
  30193. name: "Head (Side, Fire)",
  30194. image: {
  30195. source: "./media/characters/flux/head-side-fire.svg"
  30196. }
  30197. },
  30198. },
  30199. [
  30200. {
  30201. name: "Normal",
  30202. height: math.unit(7, "feet"),
  30203. default: true
  30204. },
  30205. ]
  30206. ))
  30207. characterMakers.push(() => makeCharacter(
  30208. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30209. {
  30210. front: {
  30211. height: math.unit(9, "feet"),
  30212. weight: math.unit(1012, "lb"),
  30213. name: "Front",
  30214. image: {
  30215. source: "./media/characters/ulfra-lupae/front.svg",
  30216. extra: 1083/1011,
  30217. bottom: 67/1150
  30218. }
  30219. },
  30220. },
  30221. [
  30222. {
  30223. name: "Micro",
  30224. height: math.unit(6, "inches")
  30225. },
  30226. {
  30227. name: "Socializing",
  30228. height: math.unit(6 + 5/12, "feet")
  30229. },
  30230. {
  30231. name: "Normal",
  30232. height: math.unit(9, "feet"),
  30233. default: true
  30234. },
  30235. {
  30236. name: "Macro",
  30237. height: math.unit(150, "feet")
  30238. },
  30239. ]
  30240. ))
  30241. characterMakers.push(() => makeCharacter(
  30242. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30243. {
  30244. front: {
  30245. height: math.unit(5 + 2/12, "feet"),
  30246. weight: math.unit(120, "lb"),
  30247. name: "Front",
  30248. image: {
  30249. source: "./media/characters/timber/front.svg",
  30250. extra: 2814/2705,
  30251. bottom: 181/2995
  30252. }
  30253. },
  30254. },
  30255. [
  30256. {
  30257. name: "Normal",
  30258. height: math.unit(5 + 2/12, "feet"),
  30259. default: true
  30260. },
  30261. ]
  30262. ))
  30263. characterMakers.push(() => makeCharacter(
  30264. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30265. {
  30266. front: {
  30267. height: math.unit(5 + 7/12, "feet"),
  30268. weight: math.unit(220, "lb"),
  30269. name: "Front",
  30270. image: {
  30271. source: "./media/characters/nicki/front.svg",
  30272. extra: 453/419,
  30273. bottom: 7/460
  30274. }
  30275. },
  30276. frontAlt: {
  30277. height: math.unit(5 + 7/12, "feet"),
  30278. weight: math.unit(220, "lb"),
  30279. name: "Front-alt",
  30280. image: {
  30281. source: "./media/characters/nicki/front-alt.svg",
  30282. extra: 435/411,
  30283. bottom: 12/447
  30284. }
  30285. },
  30286. back: {
  30287. height: math.unit(5 + 7/12, "feet"),
  30288. weight: math.unit(220, "lb"),
  30289. name: "Back",
  30290. image: {
  30291. source: "./media/characters/nicki/back.svg",
  30292. extra: 440/413,
  30293. bottom: 19/459
  30294. }
  30295. },
  30296. taur: {
  30297. height: math.unit(7 + 6/12, "feet"),
  30298. weight: math.unit(700, "lb"),
  30299. name: "Taur",
  30300. image: {
  30301. source: "./media/characters/nicki/taur.svg",
  30302. extra: 975/773,
  30303. bottom: 0/975
  30304. }
  30305. },
  30306. frontNsfw: {
  30307. height: math.unit(5 + 7/12, "feet"),
  30308. weight: math.unit(220, "lb"),
  30309. name: "Front (NSFW)",
  30310. image: {
  30311. source: "./media/characters/nicki/front-nsfw.svg",
  30312. extra: 453/419,
  30313. bottom: 7/460
  30314. }
  30315. },
  30316. frontNsfwAlt: {
  30317. height: math.unit(5 + 7/12, "feet"),
  30318. weight: math.unit(220, "lb"),
  30319. name: "Front (Alt, NSFW)",
  30320. image: {
  30321. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30322. extra: 435/411,
  30323. bottom: 12/447
  30324. }
  30325. },
  30326. backNsfw: {
  30327. height: math.unit(5 + 7/12, "feet"),
  30328. weight: math.unit(220, "lb"),
  30329. name: "Back (NSFW)",
  30330. image: {
  30331. source: "./media/characters/nicki/back-nsfw.svg",
  30332. extra: 440/413,
  30333. bottom: 19/459
  30334. }
  30335. },
  30336. head: {
  30337. height: math.unit(2.1, "feet"),
  30338. name: "Head",
  30339. image: {
  30340. source: "./media/characters/nicki/head.svg"
  30341. }
  30342. },
  30343. paw: {
  30344. height: math.unit(1.88, "feet"),
  30345. name: "Paw",
  30346. image: {
  30347. source: "./media/characters/nicki/paw.svg"
  30348. }
  30349. },
  30350. },
  30351. [
  30352. {
  30353. name: "Normal",
  30354. height: math.unit(5 + 7/12, "feet"),
  30355. default: true
  30356. },
  30357. ]
  30358. ))
  30359. characterMakers.push(() => makeCharacter(
  30360. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30361. {
  30362. front: {
  30363. height: math.unit(7 + 10/12, "feet"),
  30364. weight: math.unit(3.5, "tons"),
  30365. name: "Front",
  30366. image: {
  30367. source: "./media/characters/lee/front.svg",
  30368. extra: 1773/1615,
  30369. bottom: 86/1859
  30370. }
  30371. },
  30372. hand: {
  30373. height: math.unit(1.78, "feet"),
  30374. name: "Hand",
  30375. image: {
  30376. source: "./media/characters/lee/hand.svg"
  30377. }
  30378. },
  30379. maw: {
  30380. height: math.unit(1.18, "feet"),
  30381. name: "Maw",
  30382. image: {
  30383. source: "./media/characters/lee/maw.svg"
  30384. }
  30385. },
  30386. },
  30387. [
  30388. {
  30389. name: "Normal",
  30390. height: math.unit(7 + 10/12, "feet"),
  30391. default: true
  30392. },
  30393. ]
  30394. ))
  30395. characterMakers.push(() => makeCharacter(
  30396. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30397. {
  30398. front: {
  30399. height: math.unit(9, "feet"),
  30400. name: "Front",
  30401. image: {
  30402. source: "./media/characters/guti/front.svg",
  30403. extra: 4551/4355,
  30404. bottom: 123/4674
  30405. }
  30406. },
  30407. tongue: {
  30408. height: math.unit(1, "feet"),
  30409. name: "Tongue",
  30410. image: {
  30411. source: "./media/characters/guti/tongue.svg"
  30412. }
  30413. },
  30414. paw: {
  30415. height: math.unit(1.18, "feet"),
  30416. name: "Paw",
  30417. image: {
  30418. source: "./media/characters/guti/paw.svg"
  30419. }
  30420. },
  30421. },
  30422. [
  30423. {
  30424. name: "Normal",
  30425. height: math.unit(9, "feet"),
  30426. default: true
  30427. },
  30428. ]
  30429. ))
  30430. characterMakers.push(() => makeCharacter(
  30431. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30432. {
  30433. side: {
  30434. height: math.unit(5, "meters"),
  30435. name: "Side",
  30436. image: {
  30437. source: "./media/characters/vesper/side.svg",
  30438. extra: 1605/1518,
  30439. bottom: 0/1605
  30440. }
  30441. },
  30442. },
  30443. [
  30444. {
  30445. name: "Small",
  30446. height: math.unit(5, "meters")
  30447. },
  30448. {
  30449. name: "Sage",
  30450. height: math.unit(100, "meters"),
  30451. default: true
  30452. },
  30453. {
  30454. name: "Fun Size",
  30455. height: math.unit(600, "meters")
  30456. },
  30457. {
  30458. name: "Goddess",
  30459. height: math.unit(20000, "km")
  30460. },
  30461. {
  30462. name: "Maximum",
  30463. height: math.unit(5, "galaxies")
  30464. },
  30465. ]
  30466. ))
  30467. characterMakers.push(() => makeCharacter(
  30468. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30469. {
  30470. front: {
  30471. height: math.unit(6 + 3/12, "feet"),
  30472. weight: math.unit(190, "lb"),
  30473. name: "Front",
  30474. image: {
  30475. source: "./media/characters/gawain/front.svg",
  30476. extra: 2222/2139,
  30477. bottom: 90/2312
  30478. }
  30479. },
  30480. back: {
  30481. height: math.unit(6 + 3/12, "feet"),
  30482. weight: math.unit(190, "lb"),
  30483. name: "Back",
  30484. image: {
  30485. source: "./media/characters/gawain/back.svg",
  30486. extra: 2199/2111,
  30487. bottom: 73/2272
  30488. }
  30489. },
  30490. },
  30491. [
  30492. {
  30493. name: "Normal",
  30494. height: math.unit(6 + 3/12, "feet"),
  30495. default: true
  30496. },
  30497. ]
  30498. ))
  30499. characterMakers.push(() => makeCharacter(
  30500. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30501. {
  30502. side: {
  30503. height: math.unit(3.5, "meters"),
  30504. weight: math.unit(16000, "lb"),
  30505. name: "Side",
  30506. image: {
  30507. source: "./media/characters/dascalti/side.svg",
  30508. extra: 392/273,
  30509. bottom: 47/439
  30510. }
  30511. },
  30512. breath: {
  30513. height: math.unit(7.4, "feet"),
  30514. name: "Breath",
  30515. image: {
  30516. source: "./media/characters/dascalti/breath.svg"
  30517. }
  30518. },
  30519. fed: {
  30520. height: math.unit(3.6, "meters"),
  30521. weight: math.unit(16000, "lb"),
  30522. name: "Fed",
  30523. image: {
  30524. source: "./media/characters/dascalti/fed.svg",
  30525. extra: 1419/820,
  30526. bottom: 95/1514
  30527. }
  30528. },
  30529. },
  30530. [
  30531. {
  30532. name: "Normal",
  30533. height: math.unit(3.5, "meters"),
  30534. default: true
  30535. },
  30536. ]
  30537. ))
  30538. characterMakers.push(() => makeCharacter(
  30539. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30540. {
  30541. front: {
  30542. height: math.unit(3 + 5/12, "feet"),
  30543. name: "Front",
  30544. image: {
  30545. source: "./media/characters/mauve/front.svg",
  30546. extra: 1126/1033,
  30547. bottom: 65/1191
  30548. }
  30549. },
  30550. side: {
  30551. height: math.unit(3 + 5/12, "feet"),
  30552. name: "Side",
  30553. image: {
  30554. source: "./media/characters/mauve/side.svg",
  30555. extra: 1089/1001,
  30556. bottom: 29/1118
  30557. }
  30558. },
  30559. back: {
  30560. height: math.unit(3 + 5/12, "feet"),
  30561. name: "Back",
  30562. image: {
  30563. source: "./media/characters/mauve/back.svg",
  30564. extra: 1173/1053,
  30565. bottom: 109/1282
  30566. }
  30567. },
  30568. },
  30569. [
  30570. {
  30571. name: "Normal",
  30572. height: math.unit(3 + 5/12, "feet"),
  30573. default: true
  30574. },
  30575. ]
  30576. ))
  30577. characterMakers.push(() => makeCharacter(
  30578. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30579. {
  30580. front: {
  30581. height: math.unit(6 + 3/12, "feet"),
  30582. weight: math.unit(430, "lb"),
  30583. name: "Front",
  30584. image: {
  30585. source: "./media/characters/carlos/front.svg",
  30586. extra: 1964/1913,
  30587. bottom: 70/2034
  30588. }
  30589. },
  30590. },
  30591. [
  30592. {
  30593. name: "Normal",
  30594. height: math.unit(6 + 3/12, "feet"),
  30595. default: true
  30596. },
  30597. ]
  30598. ))
  30599. characterMakers.push(() => makeCharacter(
  30600. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30601. {
  30602. back: {
  30603. height: math.unit(5 + 10/12, "feet"),
  30604. weight: math.unit(200, "lb"),
  30605. name: "Back",
  30606. image: {
  30607. source: "./media/characters/jax/back.svg",
  30608. extra: 764/739,
  30609. bottom: 25/789
  30610. }
  30611. },
  30612. },
  30613. [
  30614. {
  30615. name: "Normal",
  30616. height: math.unit(5 + 10/12, "feet"),
  30617. default: true
  30618. },
  30619. ]
  30620. ))
  30621. characterMakers.push(() => makeCharacter(
  30622. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30623. {
  30624. front: {
  30625. height: math.unit(8, "feet"),
  30626. weight: math.unit(250, "lb"),
  30627. name: "Front",
  30628. image: {
  30629. source: "./media/characters/eikthynir/front.svg",
  30630. extra: 1332/1166,
  30631. bottom: 82/1414
  30632. }
  30633. },
  30634. back: {
  30635. height: math.unit(8, "feet"),
  30636. weight: math.unit(250, "lb"),
  30637. name: "Back",
  30638. image: {
  30639. source: "./media/characters/eikthynir/back.svg",
  30640. extra: 1342/1190,
  30641. bottom: 19/1361
  30642. }
  30643. },
  30644. dick: {
  30645. height: math.unit(2.35, "feet"),
  30646. name: "Dick",
  30647. image: {
  30648. source: "./media/characters/eikthynir/dick.svg"
  30649. }
  30650. },
  30651. },
  30652. [
  30653. {
  30654. name: "Normal",
  30655. height: math.unit(8, "feet"),
  30656. default: true
  30657. },
  30658. ]
  30659. ))
  30660. characterMakers.push(() => makeCharacter(
  30661. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30662. {
  30663. front: {
  30664. height: math.unit(99, "meters"),
  30665. weight: math.unit(13000, "tons"),
  30666. name: "Front",
  30667. image: {
  30668. source: "./media/characters/zlmos/front.svg",
  30669. extra: 2202/1992,
  30670. bottom: 315/2517
  30671. }
  30672. },
  30673. },
  30674. [
  30675. {
  30676. name: "Macro",
  30677. height: math.unit(99, "meters"),
  30678. default: true
  30679. },
  30680. ]
  30681. ))
  30682. characterMakers.push(() => makeCharacter(
  30683. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30684. {
  30685. front: {
  30686. height: math.unit(6 + 5/12, "feet"),
  30687. name: "Front",
  30688. image: {
  30689. source: "./media/characters/purri/front.svg",
  30690. extra: 1698/1610,
  30691. bottom: 32/1730
  30692. }
  30693. },
  30694. frontAlt: {
  30695. height: math.unit(6 + 5/12, "feet"),
  30696. name: "Front (Alt)",
  30697. image: {
  30698. source: "./media/characters/purri/front-alt.svg",
  30699. extra: 450/420,
  30700. bottom: 26/476
  30701. }
  30702. },
  30703. boots: {
  30704. height: math.unit(5.5, "feet"),
  30705. name: "Boots",
  30706. image: {
  30707. source: "./media/characters/purri/boots.svg",
  30708. extra: 905/853,
  30709. bottom: 18/923
  30710. }
  30711. },
  30712. lying: {
  30713. height: math.unit(2, "feet"),
  30714. name: "Lying",
  30715. image: {
  30716. source: "./media/characters/purri/lying.svg",
  30717. extra: 940/843,
  30718. bottom: 146/1086
  30719. }
  30720. },
  30721. devious: {
  30722. height: math.unit(1.77, "feet"),
  30723. name: "Devious",
  30724. image: {
  30725. source: "./media/characters/purri/devious.svg",
  30726. extra: 1440/1155,
  30727. bottom: 147/1587
  30728. }
  30729. },
  30730. bean: {
  30731. height: math.unit(1.94, "feet"),
  30732. name: "Bean",
  30733. image: {
  30734. source: "./media/characters/purri/bean.svg"
  30735. }
  30736. },
  30737. },
  30738. [
  30739. {
  30740. name: "Micro",
  30741. height: math.unit(1, "mm")
  30742. },
  30743. {
  30744. name: "Normal",
  30745. height: math.unit(6 + 5/12, "feet"),
  30746. default: true
  30747. },
  30748. {
  30749. name: "Macro :3c",
  30750. height: math.unit(2, "miles")
  30751. },
  30752. ]
  30753. ))
  30754. characterMakers.push(() => makeCharacter(
  30755. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  30756. {
  30757. front: {
  30758. height: math.unit(6 + 2/12, "feet"),
  30759. weight: math.unit(250, "lb"),
  30760. name: "Front",
  30761. image: {
  30762. source: "./media/characters/moonlight/front.svg",
  30763. extra: 1044/908,
  30764. bottom: 56/1100
  30765. }
  30766. },
  30767. paw: {
  30768. height: math.unit(1, "feet"),
  30769. name: "Paw",
  30770. image: {
  30771. source: "./media/characters/moonlight/paw.svg"
  30772. }
  30773. },
  30774. paws: {
  30775. height: math.unit(0.98, "feet"),
  30776. name: "Paws",
  30777. image: {
  30778. source: "./media/characters/moonlight/paws.svg",
  30779. extra: 939/939,
  30780. bottom: 50/989
  30781. }
  30782. },
  30783. mouth: {
  30784. height: math.unit(0.48, "feet"),
  30785. name: "Mouth",
  30786. image: {
  30787. source: "./media/characters/moonlight/mouth.svg"
  30788. }
  30789. },
  30790. dick: {
  30791. height: math.unit(1.46, "feet"),
  30792. name: "Dick",
  30793. image: {
  30794. source: "./media/characters/moonlight/dick.svg"
  30795. }
  30796. },
  30797. },
  30798. [
  30799. {
  30800. name: "Normal",
  30801. height: math.unit(6 + 2/12, "feet"),
  30802. default: true
  30803. },
  30804. {
  30805. name: "Macro",
  30806. height: math.unit(300, "feet")
  30807. },
  30808. {
  30809. name: "Macro+",
  30810. height: math.unit(1, "mile")
  30811. },
  30812. {
  30813. name: "Mt. Moon",
  30814. height: math.unit(5, "miles")
  30815. },
  30816. {
  30817. name: "Megamacro",
  30818. height: math.unit(15, "miles")
  30819. },
  30820. ]
  30821. ))
  30822. characterMakers.push(() => makeCharacter(
  30823. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  30824. {
  30825. back: {
  30826. height: math.unit(6, "feet"),
  30827. weight: math.unit(150, "lb"),
  30828. name: "Back",
  30829. image: {
  30830. source: "./media/characters/sylen/back.svg",
  30831. extra: 1335/1273,
  30832. bottom: 107/1442
  30833. }
  30834. },
  30835. },
  30836. [
  30837. {
  30838. name: "Normal",
  30839. height: math.unit(5 + 5/12, "feet")
  30840. },
  30841. {
  30842. name: "Megamacro",
  30843. height: math.unit(3, "miles"),
  30844. default: true
  30845. },
  30846. ]
  30847. ))
  30848. characterMakers.push(() => makeCharacter(
  30849. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  30850. {
  30851. front: {
  30852. height: math.unit(6, "feet"),
  30853. weight: math.unit(190, "lb"),
  30854. name: "Front",
  30855. image: {
  30856. source: "./media/characters/huttser/front.svg",
  30857. extra: 1152/1058,
  30858. bottom: 23/1175
  30859. }
  30860. },
  30861. side: {
  30862. height: math.unit(6, "feet"),
  30863. weight: math.unit(190, "lb"),
  30864. name: "Side",
  30865. image: {
  30866. source: "./media/characters/huttser/side.svg",
  30867. extra: 1174/1065,
  30868. bottom: 18/1192
  30869. }
  30870. },
  30871. back: {
  30872. height: math.unit(6, "feet"),
  30873. weight: math.unit(190, "lb"),
  30874. name: "Back",
  30875. image: {
  30876. source: "./media/characters/huttser/back.svg",
  30877. extra: 1158/1056,
  30878. bottom: 12/1170
  30879. }
  30880. },
  30881. },
  30882. [
  30883. ]
  30884. ))
  30885. characterMakers.push(() => makeCharacter(
  30886. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  30887. {
  30888. side: {
  30889. height: math.unit(12 + 9/12, "feet"),
  30890. weight: math.unit(15000, "lb"),
  30891. name: "Side",
  30892. image: {
  30893. source: "./media/characters/faan/side.svg",
  30894. extra: 2747/2697,
  30895. bottom: 0/2747
  30896. }
  30897. },
  30898. front: {
  30899. height: math.unit(12 + 9/12, "feet"),
  30900. weight: math.unit(15000, "lb"),
  30901. name: "Front",
  30902. image: {
  30903. source: "./media/characters/faan/front.svg",
  30904. extra: 607/571,
  30905. bottom: 24/631
  30906. }
  30907. },
  30908. head: {
  30909. height: math.unit(2.85, "feet"),
  30910. name: "Head",
  30911. image: {
  30912. source: "./media/characters/faan/head.svg"
  30913. }
  30914. },
  30915. headAlt: {
  30916. height: math.unit(3.13, "feet"),
  30917. name: "Head-alt",
  30918. image: {
  30919. source: "./media/characters/faan/head-alt.svg"
  30920. }
  30921. },
  30922. },
  30923. [
  30924. {
  30925. name: "Normal",
  30926. height: math.unit(12 + 9/12, "feet"),
  30927. default: true
  30928. },
  30929. ]
  30930. ))
  30931. characterMakers.push(() => makeCharacter(
  30932. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  30933. {
  30934. front: {
  30935. height: math.unit(6, "feet"),
  30936. weight: math.unit(300, "lb"),
  30937. name: "Front",
  30938. image: {
  30939. source: "./media/characters/tanio/front.svg",
  30940. extra: 711/673,
  30941. bottom: 25/736
  30942. }
  30943. },
  30944. },
  30945. [
  30946. {
  30947. name: "Normal",
  30948. height: math.unit(6, "feet"),
  30949. default: true
  30950. },
  30951. ]
  30952. ))
  30953. characterMakers.push(() => makeCharacter(
  30954. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  30955. {
  30956. front: {
  30957. height: math.unit(3, "inches"),
  30958. name: "Front",
  30959. image: {
  30960. source: "./media/characters/noboru/front.svg",
  30961. extra: 1039/932,
  30962. bottom: 18/1057
  30963. }
  30964. },
  30965. },
  30966. [
  30967. {
  30968. name: "Micro",
  30969. height: math.unit(3, "inches"),
  30970. default: true
  30971. },
  30972. ]
  30973. ))
  30974. characterMakers.push(() => makeCharacter(
  30975. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  30976. {
  30977. front: {
  30978. height: math.unit(1.85, "meters"),
  30979. weight: math.unit(80, "kg"),
  30980. name: "Front",
  30981. image: {
  30982. source: "./media/characters/daniel-barrett/front.svg",
  30983. extra: 355/337,
  30984. bottom: 9/364
  30985. }
  30986. },
  30987. },
  30988. [
  30989. {
  30990. name: "Pico",
  30991. height: math.unit(0.0433, "mm")
  30992. },
  30993. {
  30994. name: "Nano",
  30995. height: math.unit(1.5, "mm")
  30996. },
  30997. {
  30998. name: "Micro",
  30999. height: math.unit(5.3, "cm"),
  31000. default: true
  31001. },
  31002. {
  31003. name: "Normal",
  31004. height: math.unit(1.85, "meters")
  31005. },
  31006. {
  31007. name: "Macro",
  31008. height: math.unit(64.7, "meters")
  31009. },
  31010. {
  31011. name: "Megamacro",
  31012. height: math.unit(2.26, "km")
  31013. },
  31014. {
  31015. name: "Gigamacro",
  31016. height: math.unit(79, "km")
  31017. },
  31018. {
  31019. name: "Teramacro",
  31020. height: math.unit(2765, "km")
  31021. },
  31022. {
  31023. name: "Petamacro",
  31024. height: math.unit(96678, "km")
  31025. },
  31026. ]
  31027. ))
  31028. characterMakers.push(() => makeCharacter(
  31029. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31030. {
  31031. front: {
  31032. height: math.unit(30, "meters"),
  31033. weight: math.unit(400, "tons"),
  31034. name: "Front",
  31035. image: {
  31036. source: "./media/characters/zeel/front.svg",
  31037. extra: 2599/2599,
  31038. bottom: 226/2825
  31039. }
  31040. },
  31041. },
  31042. [
  31043. {
  31044. name: "Macro",
  31045. height: math.unit(30, "meters"),
  31046. default: true
  31047. },
  31048. ]
  31049. ))
  31050. characterMakers.push(() => makeCharacter(
  31051. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31052. {
  31053. front: {
  31054. height: math.unit(6 + 7/12, "feet"),
  31055. weight: math.unit(210, "lb"),
  31056. name: "Front",
  31057. image: {
  31058. source: "./media/characters/tarn/front.svg",
  31059. extra: 3517/3220,
  31060. bottom: 91/3608
  31061. }
  31062. },
  31063. back: {
  31064. height: math.unit(6 + 7/12, "feet"),
  31065. weight: math.unit(210, "lb"),
  31066. name: "Back",
  31067. image: {
  31068. source: "./media/characters/tarn/back.svg",
  31069. extra: 3566/3241,
  31070. bottom: 34/3600
  31071. }
  31072. },
  31073. dick: {
  31074. height: math.unit(1.65, "feet"),
  31075. name: "Dick",
  31076. image: {
  31077. source: "./media/characters/tarn/dick.svg"
  31078. }
  31079. },
  31080. paw: {
  31081. height: math.unit(1.80, "feet"),
  31082. name: "Paw",
  31083. image: {
  31084. source: "./media/characters/tarn/paw.svg"
  31085. }
  31086. },
  31087. tongue: {
  31088. height: math.unit(0.97, "feet"),
  31089. name: "Tongue",
  31090. image: {
  31091. source: "./media/characters/tarn/tongue.svg"
  31092. }
  31093. },
  31094. },
  31095. [
  31096. {
  31097. name: "Micro",
  31098. height: math.unit(4, "inches")
  31099. },
  31100. {
  31101. name: "Normal",
  31102. height: math.unit(6 + 7/12, "feet"),
  31103. default: true
  31104. },
  31105. {
  31106. name: "Macro",
  31107. height: math.unit(300, "feet")
  31108. },
  31109. ]
  31110. ))
  31111. characterMakers.push(() => makeCharacter(
  31112. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31113. {
  31114. front: {
  31115. height: math.unit(5 + 7/12, "feet"),
  31116. weight: math.unit(80, "kg"),
  31117. name: "Front",
  31118. image: {
  31119. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31120. extra: 3023/2865,
  31121. bottom: 33/3056
  31122. }
  31123. },
  31124. back: {
  31125. height: math.unit(5 + 7/12, "feet"),
  31126. weight: math.unit(80, "kg"),
  31127. name: "Back",
  31128. image: {
  31129. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31130. extra: 3020/2886,
  31131. bottom: 30/3050
  31132. }
  31133. },
  31134. dick: {
  31135. height: math.unit(0.98, "feet"),
  31136. name: "Dick",
  31137. image: {
  31138. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31139. }
  31140. },
  31141. anatomy: {
  31142. height: math.unit(2.86, "feet"),
  31143. name: "Anatomy",
  31144. image: {
  31145. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31146. }
  31147. },
  31148. },
  31149. [
  31150. {
  31151. name: "Really Small",
  31152. height: math.unit(2, "inches")
  31153. },
  31154. {
  31155. name: "Micro",
  31156. height: math.unit(5.583, "inches")
  31157. },
  31158. {
  31159. name: "Normal",
  31160. height: math.unit(5 + 7/12, "feet"),
  31161. default: true
  31162. },
  31163. {
  31164. name: "Macro",
  31165. height: math.unit(67, "feet")
  31166. },
  31167. {
  31168. name: "Megamacro",
  31169. height: math.unit(134, "feet")
  31170. },
  31171. ]
  31172. ))
  31173. characterMakers.push(() => makeCharacter(
  31174. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31175. {
  31176. front: {
  31177. height: math.unit(9, "feet"),
  31178. weight: math.unit(120, "lb"),
  31179. name: "Front",
  31180. image: {
  31181. source: "./media/characters/sally/front.svg",
  31182. extra: 1506/1349,
  31183. bottom: 66/1572
  31184. }
  31185. },
  31186. },
  31187. [
  31188. {
  31189. name: "Normal",
  31190. height: math.unit(9, "feet"),
  31191. default: true
  31192. },
  31193. ]
  31194. ))
  31195. characterMakers.push(() => makeCharacter(
  31196. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31197. {
  31198. front: {
  31199. height: math.unit(8, "feet"),
  31200. weight: math.unit(900, "lb"),
  31201. name: "Front",
  31202. image: {
  31203. source: "./media/characters/owen/front.svg",
  31204. extra: 1761/1657,
  31205. bottom: 74/1835
  31206. }
  31207. },
  31208. side: {
  31209. height: math.unit(8, "feet"),
  31210. weight: math.unit(900, "lb"),
  31211. name: "Side",
  31212. image: {
  31213. source: "./media/characters/owen/side.svg",
  31214. extra: 1797/1734,
  31215. bottom: 30/1827
  31216. }
  31217. },
  31218. back: {
  31219. height: math.unit(8, "feet"),
  31220. weight: math.unit(900, "lb"),
  31221. name: "Back",
  31222. image: {
  31223. source: "./media/characters/owen/back.svg",
  31224. extra: 1796/1706,
  31225. bottom: 59/1855
  31226. }
  31227. },
  31228. maw: {
  31229. height: math.unit(1.76, "feet"),
  31230. name: "Maw",
  31231. image: {
  31232. source: "./media/characters/owen/maw.svg"
  31233. }
  31234. },
  31235. },
  31236. [
  31237. {
  31238. name: "Normal",
  31239. height: math.unit(8, "feet"),
  31240. default: true
  31241. },
  31242. ]
  31243. ))
  31244. characterMakers.push(() => makeCharacter(
  31245. { name: "Ryth", species: ["gremlin"], tags: ["anthro"] },
  31246. {
  31247. front: {
  31248. height: math.unit(4, "feet"),
  31249. weight: math.unit(400, "lb"),
  31250. name: "Front",
  31251. image: {
  31252. source: "./media/characters/ryth/front.svg",
  31253. extra: 876/691,
  31254. bottom: 25/901
  31255. }
  31256. },
  31257. },
  31258. [
  31259. {
  31260. name: "Normal",
  31261. height: math.unit(4, "feet"),
  31262. default: true
  31263. },
  31264. ]
  31265. ))
  31266. characterMakers.push(() => makeCharacter(
  31267. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31268. {
  31269. front: {
  31270. height: math.unit(7, "feet"),
  31271. weight: math.unit(180, "lb"),
  31272. name: "Front",
  31273. image: {
  31274. source: "./media/characters/necrolance/front.svg",
  31275. extra: 1062/947,
  31276. bottom: 41/1103
  31277. }
  31278. },
  31279. back: {
  31280. height: math.unit(7, "feet"),
  31281. weight: math.unit(180, "lb"),
  31282. name: "Back",
  31283. image: {
  31284. source: "./media/characters/necrolance/back.svg",
  31285. extra: 1045/984,
  31286. bottom: 14/1059
  31287. }
  31288. },
  31289. wing: {
  31290. height: math.unit(2.67, "feet"),
  31291. name: "Wing",
  31292. image: {
  31293. source: "./media/characters/necrolance/wing.svg"
  31294. }
  31295. },
  31296. },
  31297. [
  31298. {
  31299. name: "Normal",
  31300. height: math.unit(7, "feet"),
  31301. default: true
  31302. },
  31303. ]
  31304. ))
  31305. characterMakers.push(() => makeCharacter(
  31306. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31307. {
  31308. front: {
  31309. height: math.unit(76, "meters"),
  31310. weight: math.unit(30000, "tons"),
  31311. name: "Front",
  31312. image: {
  31313. source: "./media/characters/tyler/front.svg",
  31314. extra: 1640/1640,
  31315. bottom: 114/1754
  31316. }
  31317. },
  31318. },
  31319. [
  31320. {
  31321. name: "Macro",
  31322. height: math.unit(76, "meters"),
  31323. default: true
  31324. },
  31325. ]
  31326. ))
  31327. characterMakers.push(() => makeCharacter(
  31328. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31329. {
  31330. front: {
  31331. height: math.unit(4 + 11/12, "feet"),
  31332. weight: math.unit(132, "lb"),
  31333. name: "Front",
  31334. image: {
  31335. source: "./media/characters/icey/front.svg",
  31336. extra: 2750/2550,
  31337. bottom: 33/2783
  31338. }
  31339. },
  31340. back: {
  31341. height: math.unit(4 + 11/12, "feet"),
  31342. weight: math.unit(132, "lb"),
  31343. name: "Back",
  31344. image: {
  31345. source: "./media/characters/icey/back.svg",
  31346. extra: 2624/2481,
  31347. bottom: 35/2659
  31348. }
  31349. },
  31350. },
  31351. [
  31352. {
  31353. name: "Normal",
  31354. height: math.unit(4 + 11/12, "feet"),
  31355. default: true
  31356. },
  31357. ]
  31358. ))
  31359. characterMakers.push(() => makeCharacter(
  31360. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31361. {
  31362. front: {
  31363. height: math.unit(100, "feet"),
  31364. weight: math.unit(0, "lb"),
  31365. name: "Front",
  31366. image: {
  31367. source: "./media/characters/smile/front.svg",
  31368. extra: 2983/2912,
  31369. bottom: 162/3145
  31370. }
  31371. },
  31372. back: {
  31373. height: math.unit(100, "feet"),
  31374. weight: math.unit(0, "lb"),
  31375. name: "Back",
  31376. image: {
  31377. source: "./media/characters/smile/back.svg",
  31378. extra: 3143/3031,
  31379. bottom: 91/3234
  31380. }
  31381. },
  31382. head: {
  31383. height: math.unit(26.3, "feet"),
  31384. weight: math.unit(0, "lb"),
  31385. name: "Head",
  31386. image: {
  31387. source: "./media/characters/smile/head.svg"
  31388. }
  31389. },
  31390. collar: {
  31391. height: math.unit(5.3, "feet"),
  31392. weight: math.unit(0, "lb"),
  31393. name: "Collar",
  31394. image: {
  31395. source: "./media/characters/smile/collar.svg"
  31396. }
  31397. },
  31398. },
  31399. [
  31400. {
  31401. name: "Macro",
  31402. height: math.unit(100, "feet"),
  31403. default: true
  31404. },
  31405. ]
  31406. ))
  31407. characterMakers.push(() => makeCharacter(
  31408. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31409. {
  31410. dragon: {
  31411. height: math.unit(26, "feet"),
  31412. weight: math.unit(36, "tons"),
  31413. name: "Dragon",
  31414. image: {
  31415. source: "./media/characters/arimphae/dragon.svg",
  31416. extra: 1574/983,
  31417. bottom: 357/1931
  31418. }
  31419. },
  31420. drake: {
  31421. height: math.unit(9, "feet"),
  31422. weight: math.unit(1.5, "tons"),
  31423. name: "Drake",
  31424. image: {
  31425. source: "./media/characters/arimphae/drake.svg",
  31426. extra: 1120/925,
  31427. bottom: 435/1555
  31428. }
  31429. },
  31430. },
  31431. [
  31432. {
  31433. name: "Small",
  31434. height: math.unit(26*5/9, "feet")
  31435. },
  31436. {
  31437. name: "Normal",
  31438. height: math.unit(26, "feet"),
  31439. default: true
  31440. },
  31441. ]
  31442. ))
  31443. characterMakers.push(() => makeCharacter(
  31444. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31445. {
  31446. front: {
  31447. height: math.unit(8 + 9/12, "feet"),
  31448. name: "Front",
  31449. image: {
  31450. source: "./media/characters/xander/front.svg",
  31451. extra: 848/673,
  31452. bottom: 62/910
  31453. }
  31454. },
  31455. },
  31456. [
  31457. {
  31458. name: "Normal",
  31459. height: math.unit(8 + 9/12, "feet"),
  31460. default: true
  31461. },
  31462. {
  31463. name: "Gaze Grabber",
  31464. height: math.unit(13 + 8/12, "feet")
  31465. },
  31466. {
  31467. name: "Jaw Dropper",
  31468. height: math.unit(27, "feet")
  31469. },
  31470. {
  31471. name: "Show Stopper",
  31472. height: math.unit(136, "feet")
  31473. },
  31474. {
  31475. name: "Superstar",
  31476. height: math.unit(1.9e6, "miles")
  31477. },
  31478. ]
  31479. ))
  31480. characterMakers.push(() => makeCharacter(
  31481. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31482. {
  31483. side: {
  31484. height: math.unit(2100, "feet"),
  31485. name: "Side",
  31486. image: {
  31487. source: "./media/characters/osiris/side.svg",
  31488. extra: 1105/939,
  31489. bottom: 167/1272
  31490. }
  31491. },
  31492. },
  31493. [
  31494. {
  31495. name: "Macro",
  31496. height: math.unit(2100, "feet"),
  31497. default: true
  31498. },
  31499. ]
  31500. ))
  31501. characterMakers.push(() => makeCharacter(
  31502. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31503. {
  31504. front: {
  31505. height: math.unit(6 + 8/12, "feet"),
  31506. weight: math.unit(225, "lb"),
  31507. name: "Front",
  31508. image: {
  31509. source: "./media/characters/rhys-londe/front.svg",
  31510. extra: 2258/2141,
  31511. bottom: 188/2446
  31512. }
  31513. },
  31514. back: {
  31515. height: math.unit(6 + 8/12, "feet"),
  31516. weight: math.unit(225, "lb"),
  31517. name: "Back",
  31518. image: {
  31519. source: "./media/characters/rhys-londe/back.svg",
  31520. extra: 2237/2137,
  31521. bottom: 63/2300
  31522. }
  31523. },
  31524. frontNsfw: {
  31525. height: math.unit(6 + 8/12, "feet"),
  31526. weight: math.unit(225, "lb"),
  31527. name: "Front (NSFW)",
  31528. image: {
  31529. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31530. extra: 2258/2141,
  31531. bottom: 188/2446
  31532. }
  31533. },
  31534. backNsfw: {
  31535. height: math.unit(6 + 8/12, "feet"),
  31536. weight: math.unit(225, "lb"),
  31537. name: "Back (NSFW)",
  31538. image: {
  31539. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31540. extra: 2237/2137,
  31541. bottom: 63/2300
  31542. }
  31543. },
  31544. dick: {
  31545. height: math.unit(30, "inches"),
  31546. name: "Dick",
  31547. image: {
  31548. source: "./media/characters/rhys-londe/dick.svg"
  31549. }
  31550. },
  31551. maw: {
  31552. height: math.unit(1.6, "feet"),
  31553. name: "Maw",
  31554. image: {
  31555. source: "./media/characters/rhys-londe/maw.svg"
  31556. }
  31557. },
  31558. },
  31559. [
  31560. {
  31561. name: "Normal",
  31562. height: math.unit(6 + 8/12, "feet"),
  31563. default: true
  31564. },
  31565. ]
  31566. ))
  31567. characterMakers.push(() => makeCharacter(
  31568. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31569. {
  31570. front: {
  31571. height: math.unit(3 + 10/12, "feet"),
  31572. weight: math.unit(90, "lb"),
  31573. name: "Front",
  31574. image: {
  31575. source: "./media/characters/taivas-ensim/front.svg",
  31576. extra: 1327/1216,
  31577. bottom: 96/1423
  31578. }
  31579. },
  31580. back: {
  31581. height: math.unit(3 + 10/12, "feet"),
  31582. weight: math.unit(90, "lb"),
  31583. name: "Back",
  31584. image: {
  31585. source: "./media/characters/taivas-ensim/back.svg",
  31586. extra: 1355/1247,
  31587. bottom: 11/1366
  31588. }
  31589. },
  31590. frontNsfw: {
  31591. height: math.unit(3 + 10/12, "feet"),
  31592. weight: math.unit(90, "lb"),
  31593. name: "Front (NSFW)",
  31594. image: {
  31595. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  31596. extra: 1327/1216,
  31597. bottom: 96/1423
  31598. }
  31599. },
  31600. backNsfw: {
  31601. height: math.unit(3 + 10/12, "feet"),
  31602. weight: math.unit(90, "lb"),
  31603. name: "Back (NSFW)",
  31604. image: {
  31605. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  31606. extra: 1355/1247,
  31607. bottom: 11/1366
  31608. }
  31609. },
  31610. },
  31611. [
  31612. {
  31613. name: "Normal",
  31614. height: math.unit(3 + 10/12, "feet"),
  31615. default: true
  31616. },
  31617. ]
  31618. ))
  31619. characterMakers.push(() => makeCharacter(
  31620. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  31621. {
  31622. front: {
  31623. height: math.unit(9 + 6/12, "feet"),
  31624. weight: math.unit(940, "lb"),
  31625. name: "Front",
  31626. image: {
  31627. source: "./media/characters/byliss/front.svg",
  31628. extra: 1327/1290,
  31629. bottom: 82/1409
  31630. }
  31631. },
  31632. back: {
  31633. height: math.unit(9 + 6/12, "feet"),
  31634. weight: math.unit(940, "lb"),
  31635. name: "Back",
  31636. image: {
  31637. source: "./media/characters/byliss/back.svg",
  31638. extra: 1376/1349,
  31639. bottom: 9/1385
  31640. }
  31641. },
  31642. frontNsfw: {
  31643. height: math.unit(9 + 6/12, "feet"),
  31644. weight: math.unit(940, "lb"),
  31645. name: "Front (NSFW)",
  31646. image: {
  31647. source: "./media/characters/byliss/front-nsfw.svg",
  31648. extra: 1327/1290,
  31649. bottom: 82/1409
  31650. }
  31651. },
  31652. backNsfw: {
  31653. height: math.unit(9 + 6/12, "feet"),
  31654. weight: math.unit(940, "lb"),
  31655. name: "Back (NSFW)",
  31656. image: {
  31657. source: "./media/characters/byliss/back-nsfw.svg",
  31658. extra: 1376/1349,
  31659. bottom: 9/1385
  31660. }
  31661. },
  31662. },
  31663. [
  31664. {
  31665. name: "Normal",
  31666. height: math.unit(9 + 6/12, "feet"),
  31667. default: true
  31668. },
  31669. ]
  31670. ))
  31671. characterMakers.push(() => makeCharacter(
  31672. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  31673. {
  31674. full: {
  31675. height: math.unit(5 + 2/12, "feet"),
  31676. weight: math.unit(164, "lb"),
  31677. name: "Full",
  31678. image: {
  31679. source: "./media/characters/noraly/full.svg",
  31680. extra: 1114/1059,
  31681. bottom: 35/1149
  31682. }
  31683. },
  31684. fuller: {
  31685. height: math.unit(5 + 2/12, "feet"),
  31686. weight: math.unit(230, "lb"),
  31687. name: "Fuller",
  31688. image: {
  31689. source: "./media/characters/noraly/fuller.svg",
  31690. extra: 1114/1059,
  31691. bottom: 35/1149
  31692. }
  31693. },
  31694. fullest: {
  31695. height: math.unit(5 + 2/12, "feet"),
  31696. weight: math.unit(300, "lb"),
  31697. name: "Fullest",
  31698. image: {
  31699. source: "./media/characters/noraly/fullest.svg",
  31700. extra: 1114/1059,
  31701. bottom: 35/1149
  31702. }
  31703. },
  31704. },
  31705. [
  31706. {
  31707. name: "Normal",
  31708. height: math.unit(5 + 2/12, "feet"),
  31709. default: true
  31710. },
  31711. ]
  31712. ))
  31713. characterMakers.push(() => makeCharacter(
  31714. { name: "Pera", species: ["snake"], tags: ["naga"] },
  31715. {
  31716. front: {
  31717. height: math.unit(5 + 2/12, "feet"),
  31718. weight: math.unit(210, "lb"),
  31719. name: "Front",
  31720. image: {
  31721. source: "./media/characters/pera/front.svg",
  31722. extra: 1560/1531,
  31723. bottom: 165/1725
  31724. }
  31725. },
  31726. back: {
  31727. height: math.unit(5 + 2/12, "feet"),
  31728. weight: math.unit(210, "lb"),
  31729. name: "Back",
  31730. image: {
  31731. source: "./media/characters/pera/back.svg",
  31732. extra: 1523/1493,
  31733. bottom: 152/1675
  31734. }
  31735. },
  31736. dick: {
  31737. height: math.unit(2.4, "feet"),
  31738. name: "Dick",
  31739. image: {
  31740. source: "./media/characters/pera/dick.svg"
  31741. }
  31742. },
  31743. },
  31744. [
  31745. {
  31746. name: "Normal",
  31747. height: math.unit(5 + 2/12, "feet"),
  31748. default: true
  31749. },
  31750. ]
  31751. ))
  31752. characterMakers.push(() => makeCharacter(
  31753. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  31754. {
  31755. front: {
  31756. height: math.unit(12, "feet"),
  31757. weight: math.unit(3200, "lb"),
  31758. name: "Front",
  31759. image: {
  31760. source: "./media/characters/julian/front.svg",
  31761. extra: 2962/2701,
  31762. bottom: 184/3146
  31763. }
  31764. },
  31765. maw: {
  31766. height: math.unit(5.35, "feet"),
  31767. name: "Maw",
  31768. image: {
  31769. source: "./media/characters/julian/maw.svg"
  31770. }
  31771. },
  31772. paw: {
  31773. height: math.unit(3.07, "feet"),
  31774. name: "Paw",
  31775. image: {
  31776. source: "./media/characters/julian/paw.svg"
  31777. }
  31778. },
  31779. },
  31780. [
  31781. {
  31782. name: "Default",
  31783. height: math.unit(12, "feet"),
  31784. default: true
  31785. },
  31786. {
  31787. name: "Big",
  31788. height: math.unit(50, "feet")
  31789. },
  31790. {
  31791. name: "Really Big",
  31792. height: math.unit(1, "mile")
  31793. },
  31794. {
  31795. name: "Extremely Big",
  31796. height: math.unit(100, "miles")
  31797. },
  31798. {
  31799. name: "Planet Hugger",
  31800. height: math.unit(200, "megameters")
  31801. },
  31802. {
  31803. name: "Unreasonably Big",
  31804. height: math.unit(1e300, "meters")
  31805. },
  31806. ]
  31807. ))
  31808. //characters
  31809. function makeCharacters() {
  31810. const results = [];
  31811. characterMakers.forEach(character => {
  31812. results.push(character());
  31813. });
  31814. return results;
  31815. }