less copy protection, more size visualization
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 

31669 строки
794 KiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.capacity) {
  29. views[key].attributes.capacity = {
  30. name: "Capacity",
  31. power: 3,
  32. type: "volume",
  33. base: value.capacity
  34. }
  35. }
  36. });
  37. return createEntityMaker(info, views, defaultSizes);
  38. }
  39. const speciesData = {
  40. animal: {
  41. name: "Animal"
  42. },
  43. dog: {
  44. name: "Dog",
  45. parents: [
  46. "canine"
  47. ]
  48. },
  49. canine: {
  50. name: "Canine",
  51. parents: [
  52. "mammal"
  53. ]
  54. },
  55. crux: {
  56. name: "Crux",
  57. parents: [
  58. "mammal"
  59. ]
  60. },
  61. mammal: {
  62. name: "Mammal",
  63. parents: [
  64. "animal"
  65. ]
  66. },
  67. "rough-collie": {
  68. name: "Rough Collie",
  69. parents: [
  70. "dog"
  71. ]
  72. },
  73. dragon: {
  74. name: "Dragon",
  75. parents: [
  76. "reptile"
  77. ]
  78. },
  79. reptile: {
  80. name: "Reptile",
  81. parents: [
  82. "animal"
  83. ]
  84. },
  85. woodpecker: {
  86. name: "Woodpecker",
  87. parents: [
  88. "avian"
  89. ]
  90. },
  91. avian: {
  92. name: "Avian",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. kitsune: {
  98. name: "Kitsune",
  99. parents: [
  100. "fox"
  101. ]
  102. },
  103. fox: {
  104. name: "Fox",
  105. parents: [
  106. "mammal"
  107. ]
  108. },
  109. pokemon: {
  110. name: "Pokemon"
  111. },
  112. tiger: {
  113. name: "Tiger",
  114. parents: [
  115. "cat"
  116. ]
  117. },
  118. cat: {
  119. name: "Cat",
  120. parents: [
  121. "mammal"
  122. ]
  123. },
  124. "blue-jay": {
  125. name: "Blue Jay",
  126. parents: [
  127. "avian"
  128. ]
  129. },
  130. wolf: {
  131. name: "Wolf",
  132. parents: [
  133. "mammal"
  134. ]
  135. },
  136. coyote: {
  137. name: "Coyote",
  138. parents: [
  139. "mammal"
  140. ]
  141. },
  142. raccoon: {
  143. name: "Raccoon",
  144. parents: [
  145. "mammal"
  146. ]
  147. },
  148. weasel: {
  149. name: "Weasel",
  150. parents: [
  151. "mammal"
  152. ]
  153. },
  154. "red-panda": {
  155. name: "Red Panda",
  156. parents: [
  157. "mammal"
  158. ]
  159. },
  160. dolphin: {
  161. name: "Dolphin",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. "african-wild-dog": {
  167. name: "African Wild Dog",
  168. parents: [
  169. "canine"
  170. ]
  171. },
  172. "hyena": {
  173. name: "Hyena",
  174. parents: [
  175. "canine"
  176. ]
  177. },
  178. "carbuncle": {
  179. name: "Carbuncle",
  180. parents: [
  181. "animal"
  182. ]
  183. },
  184. bat: {
  185. name: "Bat",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. "leaf-nosed-bat": {
  191. name: "Leaf-Nosed Bat",
  192. parents: [
  193. "bat"
  194. ]
  195. },
  196. "fish": {
  197. name: "Fish",
  198. parents: [
  199. "animal"
  200. ]
  201. },
  202. "ram": {
  203. name: "Ram",
  204. parents: [
  205. "mammal"
  206. ]
  207. },
  208. "demon": {
  209. name: "Demon"
  210. },
  211. "cougar": {
  212. name: "Cougar",
  213. parents: [
  214. "cat"
  215. ]
  216. },
  217. "goat": {
  218. name: "Goat",
  219. parents: [
  220. "mammal"
  221. ]
  222. },
  223. "lion": {
  224. name: "Lion",
  225. parents: [
  226. "cat"
  227. ]
  228. },
  229. "harpy-eager": {
  230. name: "Harpy Eagle",
  231. parents: [
  232. "avian"
  233. ]
  234. },
  235. "deer": {
  236. name: "Deer",
  237. parents: [
  238. "mammal"
  239. ]
  240. },
  241. "phoenix": {
  242. name: "Phoenix",
  243. parents: [
  244. "avian"
  245. ]
  246. },
  247. "aeromorph": {
  248. name: "Aeromorph",
  249. parents: [
  250. "machine"
  251. ]
  252. },
  253. "machine": {
  254. name: "Machine",
  255. },
  256. "android": {
  257. name: "Android",
  258. parents: [
  259. "machine"
  260. ]
  261. },
  262. "jackal": {
  263. name: "Jackal",
  264. parents: [
  265. "canine"
  266. ]
  267. },
  268. "corvid": {
  269. name: "Corvid",
  270. parents: [
  271. "avian"
  272. ]
  273. },
  274. "pharaoh-hound": {
  275. name: "Pharaoh Hound",
  276. parents: [
  277. "dog"
  278. ]
  279. },
  280. "skunk": {
  281. name: "Skunk",
  282. parents: [
  283. "mammal"
  284. ]
  285. },
  286. "shark": {
  287. name: "Shark",
  288. parents: [
  289. "fish"
  290. ]
  291. },
  292. "black-panther": {
  293. name: "Black Panther",
  294. parents: [
  295. "cat"
  296. ]
  297. },
  298. "umbra": {
  299. name: "Umbra",
  300. parents: [
  301. "animal"
  302. ]
  303. },
  304. "raven": {
  305. name: "Raven",
  306. parents: [
  307. "corvid"
  308. ]
  309. },
  310. "snow-leopard": {
  311. name: "Snow Leopard",
  312. parents: [
  313. "cat"
  314. ]
  315. },
  316. "barbary-lion": {
  317. name: "Barbary Lion",
  318. parents: [
  319. "lion"
  320. ]
  321. },
  322. "dra'gal": {
  323. name: "Dra'Gal",
  324. parents: [
  325. "mammal"
  326. ]
  327. },
  328. "german-shepherd": {
  329. name: "German Shepherd",
  330. parents: [
  331. "dog"
  332. ]
  333. },
  334. "bayleef": {
  335. name: "Bayleef",
  336. parents: [
  337. "pokemon"
  338. ]
  339. },
  340. "mouse": {
  341. name: "Mouse",
  342. parents: [
  343. "rodent"
  344. ]
  345. },
  346. "rat": {
  347. name: "Rat",
  348. parents: [
  349. "mammal"
  350. ]
  351. },
  352. "hoshiko-beast": {
  353. name: "Hoshiko Beast",
  354. parents: ["animal"]
  355. },
  356. "snow-jugani": {
  357. name: "Snow Jugani",
  358. parents: ["cat"]
  359. },
  360. "patamon": {
  361. name: "Patamon",
  362. parents: ["digimon"]
  363. },
  364. "digimon": {
  365. name: "Digimon",
  366. },
  367. "jugani": {
  368. name: "Jugani",
  369. parents: ["cat"]
  370. },
  371. "luxray": {
  372. name: "Luxray",
  373. parents: ["pokemon"]
  374. },
  375. "mech": {
  376. name: "Mech",
  377. parents: ["machine"]
  378. },
  379. "zoid": {
  380. name: "Zoid",
  381. parents: ["mech"]
  382. },
  383. "monster": {
  384. name: "Monster",
  385. parents: ["animal"]
  386. },
  387. "foo-dog": {
  388. name: "Foo Dog",
  389. parents: ["mammal"]
  390. },
  391. "elephant": {
  392. name: "Elephant",
  393. parents: ["mammal"]
  394. },
  395. "eagle": {
  396. name: "Eagle",
  397. parents: ["avian"]
  398. },
  399. "cow": {
  400. name: "Cow",
  401. parents: ["mammal"]
  402. },
  403. "crocodile": {
  404. name: "Crocodile",
  405. parents: ["reptile"]
  406. },
  407. "borzoi": {
  408. name: "Borzoi",
  409. parents: ["dog"]
  410. },
  411. "snake": {
  412. name: "Snake",
  413. parents: ["reptile"]
  414. },
  415. "horned-bush-viper": {
  416. name: "Horned Bush Viper",
  417. parents: ["snake"]
  418. },
  419. "cobra": {
  420. name: "Cobra",
  421. parents: ["snake"]
  422. },
  423. "harpy-eagle": {
  424. name: "Harpy Eagle",
  425. parents: ["eagle"]
  426. },
  427. "raptor": {
  428. name: "Raptor",
  429. parents: ["dinosaur"]
  430. },
  431. "dinosaur": {
  432. name: "Dinosaur",
  433. parents: ["reptile"]
  434. },
  435. "veilhound": {
  436. name: "Veilhound",
  437. parents: ["hellhound", "demon"]
  438. },
  439. "hellhound": {
  440. name: "Hellhound",
  441. parents: ["canine"]
  442. },
  443. "insect": {
  444. name: "Insect",
  445. parents: ["animal"]
  446. },
  447. "beetle": {
  448. name: "Beetle",
  449. parents: ["insect"]
  450. },
  451. "moth": {
  452. name: "Moth",
  453. parents: ["insect"]
  454. },
  455. "eastern-dragon": {
  456. name: "Eastern Dragon",
  457. parents: ["dragon"]
  458. },
  459. "jaguar": {
  460. name: "Jaguar",
  461. parents: ["cat"]
  462. },
  463. "horse": {
  464. name: "Horse",
  465. parents: ["mammal"]
  466. },
  467. "sergal": {
  468. name: "Sergal",
  469. parents: ["mammal"]
  470. },
  471. "gryphon": {
  472. name: "Gryphon",
  473. parents: ["lion", "eagle"]
  474. },
  475. "robot": {
  476. name: "Robot",
  477. parents: ["machine"]
  478. },
  479. "medihound": {
  480. name: "Medihound",
  481. parents: ["robot", "dog"]
  482. },
  483. "sylveon": {
  484. name: "Sylveon",
  485. parents: ["pokemon"]
  486. },
  487. "catgirl": {
  488. name: "Catgirl",
  489. parents: ["mammal"]
  490. },
  491. "cowgirl": {
  492. name: "Cowgirl",
  493. parents: ["mammal"]
  494. },
  495. "pony": {
  496. name: "Pony",
  497. parents: ["horse"]
  498. },
  499. "rabbit": {
  500. name: "Rabbit",
  501. parents: ["mammal"]
  502. },
  503. "fennec-fox": {
  504. name: "Fennec Fox",
  505. parents: ["fox"]
  506. },
  507. "azodian": {
  508. name: "Azodian",
  509. parents: ["mouse"]
  510. },
  511. "shiba-inu": {
  512. name: "Shiba Inu",
  513. parents: ["dog"]
  514. },
  515. "changeling": {
  516. name: "Changeling",
  517. parents: ["insect"]
  518. },
  519. "cheetah": {
  520. name: "Cheetah",
  521. parents: ["cat"]
  522. },
  523. "golden-jackal": {
  524. name: "Golden Jackal",
  525. parents: ["jackal"]
  526. },
  527. "manectric": {
  528. name: "Manectric",
  529. parents: ["pokemon"]
  530. },
  531. "rat": {
  532. name: "Rat",
  533. parents: ["rodent"]
  534. },
  535. "rodent": {
  536. name: "Rodent",
  537. parents: ["mammal"]
  538. },
  539. "octocoon": {
  540. name: "Octocoon",
  541. parents: ["raccoon", "octopus"]
  542. },
  543. "octopus": {
  544. name: "Octopus",
  545. parents: ["fish"]
  546. },
  547. "werewolf": {
  548. name: "Werewolf",
  549. parents: ["wolf"]
  550. },
  551. "meerkat": {
  552. name: "Meerkat",
  553. parents: ["mammal"]
  554. },
  555. "human": {
  556. name: "Human",
  557. parents: ["mammal"]
  558. },
  559. "geth": {
  560. name: "Geth",
  561. parents: ["android"]
  562. },
  563. "husky": {
  564. name: "Husky",
  565. parents: ["dog"]
  566. },
  567. "long-eared-bat": {
  568. name: "Long Eared Bat",
  569. parents: ["bat"]
  570. },
  571. "lizard": {
  572. name: "Lizard",
  573. parents: ["reptile"]
  574. },
  575. "salamander": {
  576. name: "Salamander",
  577. parents: ["lizard"]
  578. },
  579. "chameleon": {
  580. name: "Chameleon",
  581. parents: ["lizard"]
  582. },
  583. "gecko": {
  584. name: "Gecko",
  585. parents: ["lizard"]
  586. },
  587. "kobold": {
  588. name: "Kobold",
  589. parents: ["reptile"]
  590. },
  591. "charizard": {
  592. name: "Charizard",
  593. parents: ["pokemon"]
  594. },
  595. "lugia": {
  596. name: "Lugia",
  597. parents: ["pokemon"]
  598. },
  599. "cerberus": {
  600. name: "Cerberus",
  601. parents: ["dog"]
  602. },
  603. "tyrantrum": {
  604. name: "Tyrantrum",
  605. parents: ["pokemon"]
  606. },
  607. "lemur": {
  608. name: "Lemur",
  609. parents: ["mammal"]
  610. },
  611. "kelpie": {
  612. name: "Kelpie",
  613. parents: ["horse", "monster"]
  614. },
  615. "labrador": {
  616. name: "Labrador",
  617. parents: ["dog"]
  618. },
  619. "sylveon": {
  620. name: "Sylveon",
  621. parents: ["eeveelution"]
  622. },
  623. "eeveelution": {
  624. name: "Eeveelution",
  625. parents: ["pokemon"]
  626. },
  627. "polar-bear": {
  628. name: "Polar Bear",
  629. parents: ["bear"]
  630. },
  631. "bear": {
  632. name: "Bear",
  633. parents: ["mammal"]
  634. },
  635. "absol": {
  636. name: "Absol",
  637. parents: ["pokemon"]
  638. },
  639. "wolver": {
  640. name: "Wolver",
  641. parents: ["mammal"]
  642. },
  643. "rottweiler": {
  644. name: "Rottweiler",
  645. parents: ["dog"]
  646. },
  647. "zebra": {
  648. name: "Zebra",
  649. parents: ["horse"]
  650. },
  651. "yoshi": {
  652. name: "Yoshi",
  653. parents: ["lizard"]
  654. },
  655. "lynx": {
  656. name: "Lynx",
  657. parents: ["cat"]
  658. },
  659. "unknown": {
  660. name: "Unknown",
  661. parents: []
  662. },
  663. "thylacine": {
  664. name: "Thylacine",
  665. parents: ["mammal"]
  666. },
  667. "gabumon": {
  668. name: "Gabumon",
  669. parents: ["digimon"]
  670. },
  671. "border-collie": {
  672. name: "Border Collie",
  673. parents: ["dog"]
  674. },
  675. "imp": {
  676. name: "Imp",
  677. parents: ["demon"]
  678. },
  679. "kangaroo": {
  680. name: "Kangaroo",
  681. parents: ["mammal"]
  682. },
  683. "renamon": {
  684. name: "Renamon",
  685. parents: ["digimon"]
  686. },
  687. "candy-orca-dragon": {
  688. name: "Candy Orca Dragon",
  689. parents: ["fish", "dragon", "candy"]
  690. },
  691. "sabertooth-tiger": {
  692. name: "Sabertooth Tiger",
  693. parents: ["cat"]
  694. },
  695. "espurr": {
  696. name: "Espurr",
  697. parents: ["pokemon"]
  698. },
  699. "otter": {
  700. name: "Otter",
  701. parents: ["mammal"]
  702. },
  703. "elemental": {
  704. name: "Elemental",
  705. parents: ["mammal"]
  706. },
  707. "mew": {
  708. name: "Mew",
  709. parents: ["pokemon"]
  710. },
  711. "goodra": {
  712. name: "Goodra",
  713. parents: ["pokemon"]
  714. },
  715. "fairy": {
  716. name: "Fairy",
  717. parents: ["magical"]
  718. },
  719. "typhlosion": {
  720. name: "Typhlosion",
  721. parents: ["pokemon"]
  722. },
  723. "magical": {
  724. name: "Magical",
  725. parents: []
  726. },
  727. "xenomorph": {
  728. name: "Xenomorph",
  729. parents: ["monster", "alien"]
  730. },
  731. "charr": {
  732. name: "Charr",
  733. parents: ["cat"]
  734. },
  735. "siberian-husky": {
  736. name: "Siberian Husky",
  737. parents: ["husky"]
  738. },
  739. "alligator": {
  740. name: "Alligator",
  741. parents: ["reptile"]
  742. },
  743. "bernese-mountain-dog": {
  744. name: "Bernese Mountain Dog",
  745. parents: ["dog"]
  746. },
  747. "reshiram": {
  748. name: "Reshiram",
  749. parents: ["pokemon"]
  750. },
  751. "grizzly-bear": {
  752. name: "Grizzly Bear",
  753. parents: ["bear"]
  754. },
  755. "water-monitor": {
  756. name: "Water Monitor",
  757. parents: ["lizard"]
  758. },
  759. "banchofossa": {
  760. name: "Banchofossa",
  761. parents: ["mammal"]
  762. },
  763. "kirin": {
  764. name: "Kirin",
  765. parents: ["monster"]
  766. },
  767. "quilava": {
  768. name: "Quilava",
  769. parents: ["pokemon"]
  770. },
  771. "seviper": {
  772. name: "Seviper",
  773. parents: ["pokemon"]
  774. },
  775. "flying-fox": {
  776. name: "Flying Fox",
  777. parents: ["bat"]
  778. },
  779. "keynain": {
  780. name: "Keynain",
  781. parents: ["avian"]
  782. },
  783. "lucario": {
  784. name: "Lucario",
  785. parents: ["pokemon"]
  786. },
  787. "siamese-cat": {
  788. name: "Siamese Cat",
  789. parents: ["cat"]
  790. },
  791. "spider": {
  792. name: "Spider",
  793. parents: ["insect"]
  794. },
  795. "samurott": {
  796. name: "Samurott",
  797. parents: ["pokemon"]
  798. },
  799. "megalodon": {
  800. name: "Megalodon",
  801. parents: ["shark"]
  802. },
  803. "unicorn": {
  804. name: "Unicorn",
  805. parents: ["horse"]
  806. },
  807. "greninja": {
  808. name: "Greninja",
  809. parents: ["pokemon"]
  810. },
  811. "water-dragon": {
  812. name: "Water Dragon",
  813. parents: ["dragon"]
  814. },
  815. "cross-fox": {
  816. name: "Cross Fox",
  817. parents: ["fox"]
  818. },
  819. "synth": {
  820. name: "Synth",
  821. parents: ["machine"]
  822. },
  823. "construct": {
  824. name: "Construct",
  825. parents: []
  826. },
  827. "mexican-wolf": {
  828. name: "Mexican Wolf",
  829. parents: ["wolf"]
  830. },
  831. "leopard": {
  832. name: "Leopard",
  833. parents: ["cat"]
  834. },
  835. "pig": {
  836. name: "Pig",
  837. parents: ["mammal"]
  838. },
  839. "ampharos": {
  840. name: "Ampharos",
  841. parents: ["pokemon"]
  842. },
  843. "orca": {
  844. name: "Orca",
  845. parents: ["fish"]
  846. },
  847. "lycanroc": {
  848. name: "Lycanroc",
  849. parents: ["pokemon"]
  850. },
  851. "surkanu": {
  852. name: "Surkanu",
  853. parents: ["monster"]
  854. },
  855. "seal": {
  856. name: "Seal",
  857. parents: ["mammal"]
  858. },
  859. "keldeo": {
  860. name: "Keldeo",
  861. parents: ["pokemon"]
  862. },
  863. "great-dane": {
  864. name: "Great Dane",
  865. parents: ["dog"]
  866. },
  867. "black-backed-jackal": {
  868. name: "Black Backed Jackal",
  869. parents: ["jackal"]
  870. },
  871. "sheep": {
  872. name: "Sheep",
  873. parents: ["mammal"]
  874. },
  875. "leopard-seal": {
  876. name: "Leopard Seal",
  877. parents: ["seal"]
  878. },
  879. "zoroark": {
  880. name: "Zoroark",
  881. parents: ["pokemon"]
  882. },
  883. "maned-wolf": {
  884. name: "Maned Wolf",
  885. parents: ["canine"]
  886. },
  887. "dracha": {
  888. name: "Dracha",
  889. parents: ["dragon"]
  890. },
  891. "wolxi": {
  892. name: "Wolxi",
  893. parents: ["mammal", "alien"]
  894. },
  895. "dratini": {
  896. name: "Dratini",
  897. parents: ["pokemon", "dragon"]
  898. },
  899. "skaven": {
  900. name: "Skaven",
  901. parents: ["rat"]
  902. },
  903. "mongoose": {
  904. name: "Mongoose",
  905. parents: ["mammal"]
  906. },
  907. "lopunny": {
  908. name: "Lopunny",
  909. parents: ["pokemon", "rabbit"]
  910. },
  911. "feraligatr": {
  912. name: "Feraligatr",
  913. parents: ["pokemon", "alligator"]
  914. },
  915. "houndoom": {
  916. name: "Houndoom",
  917. parents: ["pokemon", "dog"]
  918. },
  919. "protogen": {
  920. name: "Protogen",
  921. parents: ["machine"]
  922. },
  923. "saint-bernard": {
  924. name: "Saint Bernard",
  925. parents: ["dog"]
  926. },
  927. "crow": {
  928. name: "Crow",
  929. parents: ["corvid"]
  930. },
  931. "delphox": {
  932. name: "Delphox",
  933. parents: ["pokemon", "fox"]
  934. },
  935. "moose": {
  936. name: "Moose",
  937. parents: ["mammal"]
  938. },
  939. "joraxian": {
  940. name: "Joraxian",
  941. parents: ["monster", "canine", "demon"]
  942. },
  943. "nimbat": {
  944. name: "Nimbat",
  945. parents: ["mammal"]
  946. },
  947. "aardwolf": {
  948. name: "Aardwolf",
  949. parents: ["canine"]
  950. },
  951. "fluudrani": {
  952. name: "Fluudrani",
  953. parents: ["animal"]
  954. },
  955. "arcanine": {
  956. name: "Arcanine",
  957. parents: ["pokemon", "dog"]
  958. },
  959. "inteleon": {
  960. name: "Inteleon",
  961. parents: ["pokemon", "fish"]
  962. },
  963. "ninetales": {
  964. name: "Ninetales",
  965. parents: ["pokemon", "kitsune"]
  966. },
  967. "tigrex": {
  968. name: "Tigrex",
  969. parents: ["tiger"]
  970. },
  971. "zorua": {
  972. name: "Zorua",
  973. parents: ["pokemon", "fox"]
  974. },
  975. "vulpix": {
  976. name: "Vulpix",
  977. parents: ["pokemon", "fox"]
  978. },
  979. "barghest": {
  980. name: "Barghest",
  981. parents: ["monster"]
  982. },
  983. "gray-wolf": {
  984. name: "Gray Wolf",
  985. parents: ["wolf"]
  986. },
  987. "ruppells-fox": {
  988. name: "Rüppell's Fox",
  989. parents: ["fox"]
  990. },
  991. "bull-terrier": {
  992. name: "Bull Terrier",
  993. parents: ["dog"]
  994. },
  995. "european-honey-buzzard": {
  996. name: "European Honey Buzzard",
  997. parents: ["avian"]
  998. },
  999. "t-rex": {
  1000. name: "T Rex",
  1001. parents: ["dinosaur"]
  1002. },
  1003. "mactarian": {
  1004. name: "Mactarian",
  1005. parents: ["shark", "monster"]
  1006. },
  1007. "mewtwo-y": {
  1008. name: "Mewtwo Y",
  1009. parents: ["mewtwo"]
  1010. },
  1011. "mewtwo": {
  1012. name: "Mewtwo",
  1013. parents: ["pokemon"]
  1014. },
  1015. "mew": {
  1016. name: "Mew",
  1017. parents: ["pokemon"]
  1018. },
  1019. "eevee": {
  1020. name: "Eevee",
  1021. parents: ["eeveelution"]
  1022. },
  1023. "mienshao": {
  1024. name: "Mienshao",
  1025. parents: ["pokemon"]
  1026. },
  1027. "sugar-glider": {
  1028. name: "Sugar Glider",
  1029. parents: ["opossum"]
  1030. },
  1031. "spectral-bat": {
  1032. name: "Spectral Bat",
  1033. parents: ["bat"]
  1034. },
  1035. "scolipede": {
  1036. name: "Scolipede",
  1037. parents: ["pokemon", "insect"]
  1038. },
  1039. "jackalope": {
  1040. name: "Jackalope",
  1041. parents: ["rabbit", "antelope"]
  1042. },
  1043. "caracal": {
  1044. name: "Caracal",
  1045. parents: ["cat"]
  1046. },
  1047. "stoat": {
  1048. name: "Stoat",
  1049. parents: ["mammal"]
  1050. },
  1051. "african-golden-cat": {
  1052. name: "African Golden Cat",
  1053. parents: ["cat"]
  1054. },
  1055. "gigantosaurus": {
  1056. name: "Gigantosaurus",
  1057. parents: ["dinosaur"]
  1058. },
  1059. "zorgoia": {
  1060. name: "Zorgoia",
  1061. parents: ["mammal"]
  1062. },
  1063. "monitor-lizard": {
  1064. name: "Monitor Lizard",
  1065. parents: ["lizard"]
  1066. },
  1067. "ziralkia": {
  1068. name: "Ziralkia",
  1069. parents: ["mammal"]
  1070. },
  1071. "kiiasi": {
  1072. name: "Kiiasi",
  1073. parents: ["animal"]
  1074. },
  1075. "synx": {
  1076. name: "Synx",
  1077. parents: ["monster"]
  1078. },
  1079. "panther": {
  1080. name: "Panther",
  1081. parents: ["cat"]
  1082. },
  1083. "azumarill": {
  1084. name: "Azumarill",
  1085. parents: ["pokemon"]
  1086. },
  1087. "river-snaptail": {
  1088. name: "River Snaptail",
  1089. parents: ["otter", "crocodile"]
  1090. },
  1091. "great-blue-heron": {
  1092. name: "Great Blue Heron",
  1093. parents: ["avian"]
  1094. },
  1095. "smeargle": {
  1096. name: "Smeargle",
  1097. parents: ["pokemon"]
  1098. },
  1099. "vendeilen": {
  1100. name: "Vendeilen",
  1101. parents: ["monster"]
  1102. },
  1103. "ventura": {
  1104. name: "Ventura",
  1105. parents: ["canine"]
  1106. },
  1107. "clouded-leopard": {
  1108. name: "Clouded Leopard",
  1109. parents: ["leopard"]
  1110. },
  1111. "argonian": {
  1112. name: "Argonian",
  1113. parents: ["lizard"]
  1114. },
  1115. "salazzle": {
  1116. name: "Salazzle",
  1117. parents: ["pokemon", "lizard"]
  1118. },
  1119. "je-stoff-drachen": {
  1120. name: "Je-Stoff Drachen",
  1121. parents: ["dragon"]
  1122. },
  1123. "finnish-spitz-dog": {
  1124. name: "Finnish Spitz Dog",
  1125. parents: ["dog"]
  1126. },
  1127. "gray-fox": {
  1128. name: "Gray Fox",
  1129. parents: ["fox"]
  1130. },
  1131. "opossum": {
  1132. name: "opossum",
  1133. parents: ["mammal"]
  1134. },
  1135. "antelope": {
  1136. name: "Antelope",
  1137. parents: ["mammal"]
  1138. },
  1139. "weavile": {
  1140. name: "Weavile",
  1141. parents: ["pokemon"]
  1142. },
  1143. "pikachu": {
  1144. name: "Pikachu",
  1145. parents: ["pokemon", "mouse"]
  1146. },
  1147. "grovyle": {
  1148. name: "Grovyle",
  1149. parents: ["pokemon", "plant"]
  1150. },
  1151. "sthara": {
  1152. name: "Sthara",
  1153. parents: ["snow-leopard", "reptile"]
  1154. },
  1155. "star-warrior": {
  1156. name: "Star Warrior",
  1157. parents: ["magical"]
  1158. },
  1159. "dragonoid": {
  1160. name: "Dragonoid",
  1161. parents: ["dragon"]
  1162. },
  1163. "suicune": {
  1164. name: "Suicune",
  1165. parents: ["pokemon"]
  1166. },
  1167. "vole": {
  1168. name: "Vole",
  1169. parents: ["mammal"]
  1170. },
  1171. "blaziken": {
  1172. name: "Blaziken",
  1173. parents: ["pokemon", "avian"]
  1174. },
  1175. "buizel": {
  1176. name: "Buizel",
  1177. parents: ["pokemon", "fish"]
  1178. },
  1179. "floatzel": {
  1180. name: "Floatzel",
  1181. parents: ["pokemon", "fish"]
  1182. },
  1183. "umok": {
  1184. name: "Umok",
  1185. parents: ["avian"]
  1186. },
  1187. "sea-monster": {
  1188. name: "Sea Monster",
  1189. parents: ["monster", "fish"]
  1190. },
  1191. "egyptian-vulture": {
  1192. name: "Egyptian Vulture",
  1193. parents: ["avian"]
  1194. },
  1195. "doberman": {
  1196. name: "Doberman",
  1197. parents: ["dog"]
  1198. },
  1199. "zangoose": {
  1200. name: "Zangoose",
  1201. parents: ["pokemon", "mongoose"]
  1202. },
  1203. "mongoose": {
  1204. name: "Mongoose",
  1205. parents: ["mammal"]
  1206. },
  1207. "wickerbeast": {
  1208. name: "Wickerbeast",
  1209. parents: ["monster"]
  1210. },
  1211. "zenari": {
  1212. name: "Zenari",
  1213. parents: ["lizard"]
  1214. },
  1215. "plant": {
  1216. name: "Plant",
  1217. parents: []
  1218. },
  1219. "raskatox": {
  1220. name: "Raskatox",
  1221. parents: ["raccoon", "skunk", "cat", "fox"]
  1222. },
  1223. "mikromare": {
  1224. name: "mikromare",
  1225. parents: ["alien"]
  1226. },
  1227. "alien": {
  1228. name: "Alien",
  1229. parents: ["animal"]
  1230. },
  1231. "deity": {
  1232. name: "Deity",
  1233. parents: []
  1234. },
  1235. "skarlan": {
  1236. name: "Skarlan",
  1237. parents: ["slug", "dragon"]
  1238. },
  1239. "slug": {
  1240. name: "Slug",
  1241. parents: ["mollusk"]
  1242. },
  1243. "mollusk": {
  1244. name: "Mollusk",
  1245. parents: ["animal"]
  1246. },
  1247. "chimera": {
  1248. name: "Chimera",
  1249. parents: ["monster"]
  1250. },
  1251. "gestalt": {
  1252. name: "Gestalt",
  1253. parents: ["construct"]
  1254. },
  1255. "mimic": {
  1256. name: "Mimic",
  1257. parents: ["monster"]
  1258. },
  1259. "calico-rat": {
  1260. name: "Calico Rat",
  1261. parents: ["rat"]
  1262. },
  1263. "panda": {
  1264. name: "Panda",
  1265. parents: ["mammal"]
  1266. },
  1267. "oni": {
  1268. name: "Oni",
  1269. parents: ["monster"]
  1270. },
  1271. "pegasus": {
  1272. name: "Pegasus",
  1273. parents: ["horse"]
  1274. },
  1275. "vulpera": {
  1276. name: "Vulpera",
  1277. parents: ["fennec-fox"]
  1278. },
  1279. "ceratosaurus": {
  1280. name: "Ceratosaurus",
  1281. parents: ["dinosaur"]
  1282. },
  1283. "nykur": {
  1284. name: "Nykur",
  1285. parents: ["horse", "monster"]
  1286. },
  1287. "giraffe": {
  1288. name: "Giraffe",
  1289. parents: ["mammal"]
  1290. },
  1291. "tauren": {
  1292. name: "Tauren",
  1293. parents: ["cow"]
  1294. },
  1295. "draconi": {
  1296. name: "Draconi",
  1297. parents: ["alien", "cat", "cyborg"]
  1298. },
  1299. "dire-wolf": {
  1300. name: "Dire Wolf",
  1301. parents: ["wolf"]
  1302. },
  1303. "ferromorph": {
  1304. name: "Ferromorph",
  1305. parents: ["construct"]
  1306. },
  1307. "meowth": {
  1308. name: "Meowth",
  1309. parents: ["cat", "pokemon"]
  1310. },
  1311. "pavodragon": {
  1312. name: "Pavodragon",
  1313. parents: ["dragon"]
  1314. },
  1315. "aaltranae": {
  1316. name: "Aaltranae",
  1317. parents: ["dragon"]
  1318. },
  1319. "cyborg": {
  1320. name: "Cyborg",
  1321. parents: ["machine"]
  1322. },
  1323. "draptor": {
  1324. name: "Draptor",
  1325. parents: ["dragon"]
  1326. },
  1327. "candy": {
  1328. name: "Candy",
  1329. parents: []
  1330. },
  1331. "drenath": {
  1332. name: "Drenath",
  1333. parents: ["dragon", "snake", "rabbit"]
  1334. },
  1335. "coyju": {
  1336. name: "Coyju",
  1337. parents: ["coyote", "kaiju"]
  1338. },
  1339. "kaiju": {
  1340. name: "Kaiju",
  1341. parents: ["monster"]
  1342. },
  1343. "nickit": {
  1344. name: "Nickit",
  1345. parents: ["pokemon", "cat"]
  1346. },
  1347. "lopunny": {
  1348. name: "Lopunny",
  1349. parents: ["pokemon", "rabbit"]
  1350. },
  1351. "korean-jindo-dog": {
  1352. name: "Korean Jindo Dog",
  1353. parents: ["dog"]
  1354. },
  1355. "naga": {
  1356. name: "Naga",
  1357. parents: ["snake", "monster"]
  1358. },
  1359. "undead": {
  1360. name: "Undead",
  1361. parents: ["monster"]
  1362. },
  1363. "whale": {
  1364. name: "Whale",
  1365. parents: ["fish"]
  1366. },
  1367. "gelato-bee": {
  1368. name: "Gelato Bee",
  1369. parents: ["bee"]
  1370. },
  1371. "bee": {
  1372. name: "Bee",
  1373. parents: ["insect"]
  1374. },
  1375. "gardevoir": {
  1376. name: "Gardevoir",
  1377. parents: ["pokemon"]
  1378. },
  1379. "ant": {
  1380. name: "Ant",
  1381. parents: ["insect"]
  1382. },
  1383. "frog": {
  1384. name: "Frog",
  1385. parents: ["amphibian"]
  1386. },
  1387. "amphibian": {
  1388. name: "Amphibian",
  1389. parents: ["animal"]
  1390. },
  1391. "pangolin": {
  1392. name: "Pangolin",
  1393. parents: ["mammal"]
  1394. },
  1395. "uragi'viidorn": {
  1396. name: "Uragi'viidorn",
  1397. parents: ["avian", "bear"]
  1398. },
  1399. "gryphdelphais": {
  1400. name: "Gryphdelphais",
  1401. parents: ["dolphin", "gryphon"]
  1402. },
  1403. "plush": {
  1404. name: "Plush",
  1405. parents: ["construct"]
  1406. },
  1407. "draiger": {
  1408. name: "Draiger",
  1409. parents: ["dragon","tiger"]
  1410. },
  1411. "foxsky": {
  1412. name: "Foxsky",
  1413. parents: ["fox", "husky"]
  1414. },
  1415. "umbreon": {
  1416. name: "Umbreon",
  1417. parents: ["eeveelution"]
  1418. },
  1419. }
  1420. //species
  1421. function getSpeciesInfo(speciesList) {
  1422. let result = new Set();
  1423. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1424. result.add(entry)
  1425. });
  1426. return Array.from(result);
  1427. };
  1428. function getSpeciesInfoHelper(species) {
  1429. if (!speciesData[species]) {
  1430. console.warn(species + " doesn't exist");
  1431. return [];
  1432. }
  1433. if (speciesData[species].parents) {
  1434. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1435. } else {
  1436. return [species];
  1437. }
  1438. }
  1439. characterMakers.push(() => makeCharacter(
  1440. {
  1441. name: "Fen",
  1442. species: ["crux"],
  1443. description: {
  1444. title: "Bio",
  1445. text: "Very furry. Sheds on everything."
  1446. },
  1447. tags: [
  1448. "anthro",
  1449. "goo"
  1450. ]
  1451. },
  1452. {
  1453. back: {
  1454. height: math.unit(2.2428, "meter"),
  1455. weight: math.unit(124.738, "kg"),
  1456. name: "Back",
  1457. image: {
  1458. source: "./media/characters/fen/back.svg",
  1459. extra: 2024 / 1867,
  1460. bottom: 13 / 2037
  1461. },
  1462. info: {
  1463. description: {
  1464. mode: "append",
  1465. text: "\n\nHe is not currently looking at you."
  1466. }
  1467. }
  1468. },
  1469. full: {
  1470. height: math.unit(1.34, "meter"),
  1471. weight: math.unit(225, "kg"),
  1472. name: "Full",
  1473. image: {
  1474. source: "./media/characters/fen/full.svg"
  1475. },
  1476. info: {
  1477. description: {
  1478. mode: "append",
  1479. text: "\n\nMunch."
  1480. }
  1481. }
  1482. },
  1483. kneeling: {
  1484. height: math.unit(5.4, "feet"),
  1485. weight: math.unit(124.738, "kg"),
  1486. name: "Kneeling",
  1487. image: {
  1488. source: "./media/characters/fen/kneeling.svg",
  1489. extra: 563 / 507
  1490. }
  1491. },
  1492. goo: {
  1493. height: math.unit(2.8, "feet"),
  1494. weight: math.unit(125, "kg"),
  1495. capacity: math.unit(1, "people"),
  1496. name: "Goo",
  1497. image: {
  1498. source: "./media/characters/fen/goo.svg",
  1499. bottom: 116 / 613
  1500. }
  1501. },
  1502. lounging: {
  1503. height: math.unit(6.5, "feet"),
  1504. weight: math.unit(125, "kg"),
  1505. name: "Lounging",
  1506. image: {
  1507. source: "./media/characters/fen/lounging.svg"
  1508. }
  1509. },
  1510. },
  1511. [
  1512. {
  1513. name: "Normal",
  1514. height: math.unit(2.2428, "meter")
  1515. },
  1516. {
  1517. name: "Big",
  1518. height: math.unit(12, "feet")
  1519. },
  1520. {
  1521. name: "Minimacro",
  1522. height: math.unit(40, "feet"),
  1523. default: true,
  1524. info: {
  1525. description: {
  1526. mode: "append",
  1527. text: "\n\nTOO DAMN BIG"
  1528. }
  1529. }
  1530. },
  1531. {
  1532. name: "Macro",
  1533. height: math.unit(100, "feet"),
  1534. info: {
  1535. description: {
  1536. mode: "append",
  1537. text: "\n\nTOO DAMN BIG"
  1538. }
  1539. }
  1540. },
  1541. {
  1542. name: "Macro+",
  1543. height: math.unit(300, "feet")
  1544. },
  1545. {
  1546. name: "Megamacro",
  1547. height: math.unit(2, "miles")
  1548. }
  1549. ]
  1550. ))
  1551. characterMakers.push(() => makeCharacter(
  1552. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1553. {
  1554. front: {
  1555. height: math.unit(183, "cm"),
  1556. weight: math.unit(80, "kg"),
  1557. name: "Front",
  1558. image: {
  1559. source: "./media/characters/sofia-fluttertail/front.svg",
  1560. bottom: 0.01,
  1561. extra: 2154 / 2081
  1562. }
  1563. },
  1564. frontAlt: {
  1565. height: math.unit(183, "cm"),
  1566. weight: math.unit(80, "kg"),
  1567. name: "Front (alt)",
  1568. image: {
  1569. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1570. }
  1571. },
  1572. back: {
  1573. height: math.unit(183, "cm"),
  1574. weight: math.unit(80, "kg"),
  1575. name: "Back",
  1576. image: {
  1577. source: "./media/characters/sofia-fluttertail/back.svg"
  1578. }
  1579. },
  1580. kneeling: {
  1581. height: math.unit(125, "cm"),
  1582. weight: math.unit(80, "kg"),
  1583. name: "Kneeling",
  1584. image: {
  1585. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1586. extra: 1033 / 977,
  1587. bottom: 23.7 / 1057
  1588. }
  1589. },
  1590. maw: {
  1591. height: math.unit(183 / 5, "cm"),
  1592. name: "Maw",
  1593. image: {
  1594. source: "./media/characters/sofia-fluttertail/maw.svg"
  1595. }
  1596. },
  1597. mawcloseup: {
  1598. height: math.unit(183 / 5 * 0.41, "cm"),
  1599. name: "Maw (Closeup)",
  1600. image: {
  1601. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1602. }
  1603. },
  1604. paws: {
  1605. height: math.unit(1.17, "feet"),
  1606. name: "Paws",
  1607. image: {
  1608. source: "./media/characters/sofia-fluttertail/paws.svg",
  1609. extra: 851 / 851,
  1610. bottom: 17 / 868
  1611. }
  1612. },
  1613. },
  1614. [
  1615. {
  1616. name: "Normal",
  1617. height: math.unit(1.83, "meter")
  1618. },
  1619. {
  1620. name: "Size Thief",
  1621. height: math.unit(18, "feet")
  1622. },
  1623. {
  1624. name: "50 Foot Collie",
  1625. height: math.unit(50, "feet")
  1626. },
  1627. {
  1628. name: "Macro",
  1629. height: math.unit(96, "feet"),
  1630. default: true
  1631. },
  1632. {
  1633. name: "Megamerger",
  1634. height: math.unit(650, "feet")
  1635. },
  1636. ]
  1637. ))
  1638. characterMakers.push(() => makeCharacter(
  1639. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1640. {
  1641. front: {
  1642. height: math.unit(7, "feet"),
  1643. weight: math.unit(100, "kg"),
  1644. name: "Front",
  1645. image: {
  1646. source: "./media/characters/march/front.svg",
  1647. extra: 1,
  1648. bottom: 0.015
  1649. }
  1650. },
  1651. foot: {
  1652. height: math.unit(0.9, "feet"),
  1653. name: "Foot",
  1654. image: {
  1655. source: "./media/characters/march/foot.svg"
  1656. }
  1657. },
  1658. },
  1659. [
  1660. {
  1661. name: "Normal",
  1662. height: math.unit(7.9, "feet")
  1663. },
  1664. {
  1665. name: "Macro",
  1666. height: math.unit(220, "meters")
  1667. },
  1668. {
  1669. name: "Megamacro",
  1670. height: math.unit(2.98, "km"),
  1671. default: true
  1672. },
  1673. {
  1674. name: "Gigamacro",
  1675. height: math.unit(15963, "km")
  1676. },
  1677. {
  1678. name: "Teramacro",
  1679. height: math.unit(2980000000, "km")
  1680. },
  1681. {
  1682. name: "Examacro",
  1683. height: math.unit(250, "parsecs")
  1684. },
  1685. ]
  1686. ))
  1687. characterMakers.push(() => makeCharacter(
  1688. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1689. {
  1690. front: {
  1691. height: math.unit(6, "feet"),
  1692. weight: math.unit(60, "kg"),
  1693. name: "Front",
  1694. image: {
  1695. source: "./media/characters/noir/front.svg",
  1696. extra: 1,
  1697. bottom: 0.032
  1698. }
  1699. },
  1700. },
  1701. [
  1702. {
  1703. name: "Normal",
  1704. height: math.unit(6.6, "feet")
  1705. },
  1706. {
  1707. name: "Macro",
  1708. height: math.unit(500, "feet")
  1709. },
  1710. {
  1711. name: "Megamacro",
  1712. height: math.unit(2.5, "km"),
  1713. default: true
  1714. },
  1715. {
  1716. name: "Gigamacro",
  1717. height: math.unit(22500, "km")
  1718. },
  1719. {
  1720. name: "Teramacro",
  1721. height: math.unit(2500000000, "km")
  1722. },
  1723. {
  1724. name: "Examacro",
  1725. height: math.unit(200, "parsecs")
  1726. },
  1727. ]
  1728. ))
  1729. characterMakers.push(() => makeCharacter(
  1730. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1731. {
  1732. front: {
  1733. height: math.unit(7, "feet"),
  1734. weight: math.unit(100, "kg"),
  1735. name: "Front",
  1736. image: {
  1737. source: "./media/characters/okuri/front.svg",
  1738. extra: 1,
  1739. bottom: 0.037
  1740. }
  1741. },
  1742. back: {
  1743. height: math.unit(7, "feet"),
  1744. weight: math.unit(100, "kg"),
  1745. name: "Back",
  1746. image: {
  1747. source: "./media/characters/okuri/back.svg",
  1748. extra: 1,
  1749. bottom: 0.007
  1750. }
  1751. },
  1752. },
  1753. [
  1754. {
  1755. name: "Megamacro",
  1756. height: math.unit(100, "miles"),
  1757. default: true
  1758. },
  1759. ]
  1760. ))
  1761. characterMakers.push(() => makeCharacter(
  1762. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1763. {
  1764. front: {
  1765. height: math.unit(7, "feet"),
  1766. weight: math.unit(100, "kg"),
  1767. name: "Front",
  1768. image: {
  1769. source: "./media/characters/manny/front.svg",
  1770. extra: 1,
  1771. bottom: 0.06
  1772. }
  1773. },
  1774. back: {
  1775. height: math.unit(7, "feet"),
  1776. weight: math.unit(100, "kg"),
  1777. name: "Back",
  1778. image: {
  1779. source: "./media/characters/manny/back.svg",
  1780. extra: 1,
  1781. bottom: 0.014
  1782. }
  1783. },
  1784. },
  1785. [
  1786. {
  1787. name: "Normal",
  1788. height: math.unit(7, "feet"),
  1789. },
  1790. {
  1791. name: "Macro",
  1792. height: math.unit(78, "feet"),
  1793. default: true
  1794. },
  1795. {
  1796. name: "Macro+",
  1797. height: math.unit(300, "meters")
  1798. },
  1799. {
  1800. name: "Macro++",
  1801. height: math.unit(2400, "meters")
  1802. },
  1803. {
  1804. name: "Megamacro",
  1805. height: math.unit(5167, "meters")
  1806. },
  1807. {
  1808. name: "Gigamacro",
  1809. height: math.unit(41769, "miles")
  1810. },
  1811. ]
  1812. ))
  1813. characterMakers.push(() => makeCharacter(
  1814. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1815. {
  1816. front: {
  1817. height: math.unit(7, "feet"),
  1818. weight: math.unit(100, "kg"),
  1819. name: "Front",
  1820. image: {
  1821. source: "./media/characters/adake/front-1.svg"
  1822. }
  1823. },
  1824. frontAlt: {
  1825. height: math.unit(7, "feet"),
  1826. weight: math.unit(100, "kg"),
  1827. name: "Front (Alt)",
  1828. image: {
  1829. source: "./media/characters/adake/front-2.svg",
  1830. extra: 1,
  1831. bottom: 0.01
  1832. }
  1833. },
  1834. back: {
  1835. height: math.unit(7, "feet"),
  1836. weight: math.unit(100, "kg"),
  1837. name: "Back",
  1838. image: {
  1839. source: "./media/characters/adake/back.svg",
  1840. }
  1841. },
  1842. kneel: {
  1843. height: math.unit(5.385, "feet"),
  1844. weight: math.unit(100, "kg"),
  1845. name: "Kneeling",
  1846. image: {
  1847. source: "./media/characters/adake/kneel.svg",
  1848. bottom: 0.052
  1849. }
  1850. },
  1851. },
  1852. [
  1853. {
  1854. name: "Normal",
  1855. height: math.unit(7, "feet"),
  1856. },
  1857. {
  1858. name: "Macro",
  1859. height: math.unit(78, "feet"),
  1860. default: true
  1861. },
  1862. {
  1863. name: "Macro+",
  1864. height: math.unit(300, "meters")
  1865. },
  1866. {
  1867. name: "Macro++",
  1868. height: math.unit(2400, "meters")
  1869. },
  1870. {
  1871. name: "Megamacro",
  1872. height: math.unit(5167, "meters")
  1873. },
  1874. {
  1875. name: "Gigamacro",
  1876. height: math.unit(41769, "miles")
  1877. },
  1878. ]
  1879. ))
  1880. characterMakers.push(() => makeCharacter(
  1881. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1882. {
  1883. front: {
  1884. height: math.unit(1.65, "meters"),
  1885. weight: math.unit(50, "kg"),
  1886. name: "Front",
  1887. image: {
  1888. source: "./media/characters/elijah/front.svg",
  1889. extra: 858 / 830,
  1890. bottom: 95.5 / 953.8559
  1891. }
  1892. },
  1893. back: {
  1894. height: math.unit(1.65, "meters"),
  1895. weight: math.unit(50, "kg"),
  1896. name: "Back",
  1897. image: {
  1898. source: "./media/characters/elijah/back.svg",
  1899. extra: 895 / 850,
  1900. bottom: 5.3 / 897.956
  1901. }
  1902. },
  1903. frontNsfw: {
  1904. height: math.unit(1.65, "meters"),
  1905. weight: math.unit(50, "kg"),
  1906. name: "Front (NSFW)",
  1907. image: {
  1908. source: "./media/characters/elijah/front-nsfw.svg",
  1909. extra: 858 / 830,
  1910. bottom: 95.5 / 953.8559
  1911. }
  1912. },
  1913. backNsfw: {
  1914. height: math.unit(1.65, "meters"),
  1915. weight: math.unit(50, "kg"),
  1916. name: "Back (NSFW)",
  1917. image: {
  1918. source: "./media/characters/elijah/back-nsfw.svg",
  1919. extra: 895 / 850,
  1920. bottom: 5.3 / 897.956
  1921. }
  1922. },
  1923. dick: {
  1924. height: math.unit(1, "feet"),
  1925. name: "Dick",
  1926. image: {
  1927. source: "./media/characters/elijah/dick.svg"
  1928. }
  1929. },
  1930. beakOpen: {
  1931. height: math.unit(1.25, "feet"),
  1932. name: "Beak (Open)",
  1933. image: {
  1934. source: "./media/characters/elijah/beak-open.svg"
  1935. }
  1936. },
  1937. beakShut: {
  1938. height: math.unit(1.25, "feet"),
  1939. name: "Beak (Shut)",
  1940. image: {
  1941. source: "./media/characters/elijah/beak-shut.svg"
  1942. }
  1943. },
  1944. footFlexing: {
  1945. height: math.unit(1.61, "feet"),
  1946. name: "Foot (Flexing)",
  1947. image: {
  1948. source: "./media/characters/elijah/foot-flexing.svg"
  1949. }
  1950. },
  1951. footStepping: {
  1952. height: math.unit(1.44, "feet"),
  1953. name: "Foot (Stepping)",
  1954. image: {
  1955. source: "./media/characters/elijah/foot-stepping.svg"
  1956. }
  1957. },
  1958. plantigradeLeg: {
  1959. height: math.unit(2.34, "feet"),
  1960. name: "Plantigrade Leg",
  1961. image: {
  1962. source: "./media/characters/elijah/plantigrade-leg.svg"
  1963. }
  1964. },
  1965. plantigradeFootLeft: {
  1966. height: math.unit(0.9, "feet"),
  1967. name: "Plantigrade Foot (Left)",
  1968. image: {
  1969. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1970. }
  1971. },
  1972. plantigradeFootRight: {
  1973. height: math.unit(0.9, "feet"),
  1974. name: "Plantigrade Foot (Right)",
  1975. image: {
  1976. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1977. }
  1978. },
  1979. },
  1980. [
  1981. {
  1982. name: "Normal",
  1983. height: math.unit(1.65, "meters")
  1984. },
  1985. {
  1986. name: "Macro",
  1987. height: math.unit(55, "meters"),
  1988. default: true
  1989. },
  1990. {
  1991. name: "Macro+",
  1992. height: math.unit(105, "meters")
  1993. },
  1994. ]
  1995. ))
  1996. characterMakers.push(() => makeCharacter(
  1997. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1998. {
  1999. front: {
  2000. height: math.unit(11, "feet"),
  2001. weight: math.unit(80, "kg"),
  2002. name: "Front",
  2003. image: {
  2004. source: "./media/characters/rai/front.svg",
  2005. extra: 1,
  2006. bottom: 0.03
  2007. }
  2008. },
  2009. side: {
  2010. height: math.unit(11, "feet"),
  2011. weight: math.unit(80, "kg"),
  2012. name: "Side",
  2013. image: {
  2014. source: "./media/characters/rai/side.svg"
  2015. }
  2016. },
  2017. back: {
  2018. height: math.unit(11, "feet"),
  2019. weight: math.unit(80, "lb"),
  2020. name: "Back",
  2021. image: {
  2022. source: "./media/characters/rai/back.svg",
  2023. extra: 1,
  2024. bottom: 0.01
  2025. }
  2026. },
  2027. feral: {
  2028. height: math.unit(11, "feet"),
  2029. weight: math.unit(800, "lb"),
  2030. name: "Feral",
  2031. image: {
  2032. source: "./media/characters/rai/feral.svg",
  2033. extra: 1050 / 659,
  2034. bottom: 0.07
  2035. }
  2036. },
  2037. dragon: {
  2038. height: math.unit(23, "feet"),
  2039. weight: math.unit(50000, "lb"),
  2040. name: "Dragon",
  2041. image: {
  2042. source: "./media/characters/rai/dragon.svg",
  2043. extra: 2498 / 2030,
  2044. bottom: 85.2 / 2584
  2045. }
  2046. },
  2047. maw: {
  2048. height: math.unit(6 / 3.81416, "feet"),
  2049. name: "Maw",
  2050. image: {
  2051. source: "./media/characters/rai/maw.svg"
  2052. }
  2053. },
  2054. },
  2055. [
  2056. {
  2057. name: "Normal",
  2058. height: math.unit(11, "feet")
  2059. },
  2060. {
  2061. name: "Macro",
  2062. height: math.unit(302, "feet"),
  2063. default: true
  2064. },
  2065. ]
  2066. ))
  2067. characterMakers.push(() => makeCharacter(
  2068. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2069. {
  2070. frontDressed: {
  2071. height: math.unit(216, "feet"),
  2072. weight: math.unit(7000000, "lb"),
  2073. name: "Front (Dressed)",
  2074. image: {
  2075. source: "./media/characters/jazzy/front-dressed.svg",
  2076. extra: 2738 / 2651,
  2077. bottom: 41.8 / 2786
  2078. }
  2079. },
  2080. backDressed: {
  2081. height: math.unit(216, "feet"),
  2082. weight: math.unit(7000000, "lb"),
  2083. name: "Back (Dressed)",
  2084. image: {
  2085. source: "./media/characters/jazzy/back-dressed.svg",
  2086. extra: 2775 / 2673,
  2087. bottom: 36.8 / 2817
  2088. }
  2089. },
  2090. front: {
  2091. height: math.unit(216, "feet"),
  2092. weight: math.unit(7000000, "lb"),
  2093. name: "Front",
  2094. image: {
  2095. source: "./media/characters/jazzy/front.svg",
  2096. extra: 2738 / 2651,
  2097. bottom: 41.8 / 2786
  2098. }
  2099. },
  2100. back: {
  2101. height: math.unit(216, "feet"),
  2102. weight: math.unit(7000000, "lb"),
  2103. name: "Back",
  2104. image: {
  2105. source: "./media/characters/jazzy/back.svg",
  2106. extra: 2775 / 2673,
  2107. bottom: 36.8 / 2817
  2108. }
  2109. },
  2110. maw: {
  2111. height: math.unit(20, "feet"),
  2112. name: "Maw",
  2113. image: {
  2114. source: "./media/characters/jazzy/maw.svg"
  2115. }
  2116. },
  2117. paws: {
  2118. height: math.unit(27.5, "feet"),
  2119. name: "Paws",
  2120. image: {
  2121. source: "./media/characters/jazzy/paws.svg"
  2122. }
  2123. },
  2124. eye: {
  2125. height: math.unit(4.4, "feet"),
  2126. name: "Eye",
  2127. image: {
  2128. source: "./media/characters/jazzy/eye.svg"
  2129. }
  2130. },
  2131. droneOffense: {
  2132. height: math.unit(9.5, "inches"),
  2133. name: "Drone (Offense)",
  2134. image: {
  2135. source: "./media/characters/jazzy/drone-offense.svg"
  2136. }
  2137. },
  2138. droneRecon: {
  2139. height: math.unit(9.5, "inches"),
  2140. name: "Drone (Recon)",
  2141. image: {
  2142. source: "./media/characters/jazzy/drone-recon.svg"
  2143. }
  2144. },
  2145. droneDefense: {
  2146. height: math.unit(9.5, "inches"),
  2147. name: "Drone (Defense)",
  2148. image: {
  2149. source: "./media/characters/jazzy/drone-defense.svg"
  2150. }
  2151. },
  2152. },
  2153. [
  2154. {
  2155. name: "Macro",
  2156. height: math.unit(216, "feet"),
  2157. default: true
  2158. },
  2159. ]
  2160. ))
  2161. characterMakers.push(() => makeCharacter(
  2162. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2163. {
  2164. front: {
  2165. height: math.unit(7, "feet"),
  2166. weight: math.unit(80, "kg"),
  2167. name: "Front",
  2168. image: {
  2169. source: "./media/characters/flamm/front.svg",
  2170. extra: 1794 / 1677,
  2171. bottom: 31.7 / 1828.5
  2172. }
  2173. },
  2174. },
  2175. [
  2176. {
  2177. name: "Normal",
  2178. height: math.unit(9.5, "feet")
  2179. },
  2180. {
  2181. name: "Macro",
  2182. height: math.unit(200, "feet"),
  2183. default: true
  2184. },
  2185. ]
  2186. ))
  2187. characterMakers.push(() => makeCharacter(
  2188. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2189. {
  2190. front: {
  2191. height: math.unit(7, "feet"),
  2192. weight: math.unit(80, "kg"),
  2193. name: "Front",
  2194. image: {
  2195. source: "./media/characters/zephiro/front.svg",
  2196. extra: 2309 / 2162,
  2197. bottom: 0.069
  2198. }
  2199. },
  2200. side: {
  2201. height: math.unit(7, "feet"),
  2202. weight: math.unit(80, "kg"),
  2203. name: "Side",
  2204. image: {
  2205. source: "./media/characters/zephiro/side.svg",
  2206. extra: 2403 / 2279,
  2207. bottom: 0.015
  2208. }
  2209. },
  2210. back: {
  2211. height: math.unit(7, "feet"),
  2212. weight: math.unit(80, "kg"),
  2213. name: "Back",
  2214. image: {
  2215. source: "./media/characters/zephiro/back.svg",
  2216. extra: 2373 / 2244,
  2217. bottom: 0.013
  2218. }
  2219. },
  2220. },
  2221. [
  2222. {
  2223. name: "Micro",
  2224. height: math.unit(3, "inches")
  2225. },
  2226. {
  2227. name: "Normal",
  2228. height: math.unit(5 + 3 / 12, "feet"),
  2229. default: true
  2230. },
  2231. {
  2232. name: "Macro",
  2233. height: math.unit(118, "feet")
  2234. },
  2235. ]
  2236. ))
  2237. characterMakers.push(() => makeCharacter(
  2238. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2239. {
  2240. front: {
  2241. height: math.unit(5, "feet"),
  2242. weight: math.unit(90, "kg"),
  2243. name: "Front",
  2244. image: {
  2245. source: "./media/characters/fory/front.svg",
  2246. extra: 2862 / 2674,
  2247. bottom: 180 / 3043.8
  2248. }
  2249. },
  2250. back: {
  2251. height: math.unit(5, "feet"),
  2252. weight: math.unit(90, "kg"),
  2253. name: "Back",
  2254. image: {
  2255. source: "./media/characters/fory/back.svg",
  2256. extra: 2962 / 2791,
  2257. bottom: 106 / 3071.8
  2258. }
  2259. },
  2260. foot: {
  2261. height: math.unit(2.14, "feet"),
  2262. name: "Foot",
  2263. image: {
  2264. source: "./media/characters/fory/foot.svg"
  2265. }
  2266. },
  2267. },
  2268. [
  2269. {
  2270. name: "Normal",
  2271. height: math.unit(5, "feet")
  2272. },
  2273. {
  2274. name: "Macro",
  2275. height: math.unit(50, "feet"),
  2276. default: true
  2277. },
  2278. {
  2279. name: "Megamacro",
  2280. height: math.unit(10, "miles")
  2281. },
  2282. {
  2283. name: "Gigamacro",
  2284. height: math.unit(5, "earths")
  2285. },
  2286. ]
  2287. ))
  2288. characterMakers.push(() => makeCharacter(
  2289. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2290. {
  2291. front: {
  2292. height: math.unit(7, "feet"),
  2293. weight: math.unit(90, "kg"),
  2294. name: "Front",
  2295. image: {
  2296. source: "./media/characters/kurrikage/front.svg",
  2297. extra: 1,
  2298. bottom: 0.035
  2299. }
  2300. },
  2301. back: {
  2302. height: math.unit(7, "feet"),
  2303. weight: math.unit(90, "lb"),
  2304. name: "Back",
  2305. image: {
  2306. source: "./media/characters/kurrikage/back.svg"
  2307. }
  2308. },
  2309. paw: {
  2310. height: math.unit(1.5, "feet"),
  2311. name: "Paw",
  2312. image: {
  2313. source: "./media/characters/kurrikage/paw.svg"
  2314. }
  2315. },
  2316. staff: {
  2317. height: math.unit(6.7, "feet"),
  2318. name: "Staff",
  2319. image: {
  2320. source: "./media/characters/kurrikage/staff.svg"
  2321. }
  2322. },
  2323. peek: {
  2324. height: math.unit(1.05, "feet"),
  2325. name: "Peeking",
  2326. image: {
  2327. source: "./media/characters/kurrikage/peek.svg",
  2328. bottom: 0.08
  2329. }
  2330. },
  2331. },
  2332. [
  2333. {
  2334. name: "Normal",
  2335. height: math.unit(12, "feet"),
  2336. default: true
  2337. },
  2338. {
  2339. name: "Big",
  2340. height: math.unit(20, "feet")
  2341. },
  2342. {
  2343. name: "Macro",
  2344. height: math.unit(500, "feet")
  2345. },
  2346. {
  2347. name: "Megamacro",
  2348. height: math.unit(20, "miles")
  2349. },
  2350. ]
  2351. ))
  2352. characterMakers.push(() => makeCharacter(
  2353. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2354. {
  2355. front: {
  2356. height: math.unit(6, "feet"),
  2357. weight: math.unit(75, "kg"),
  2358. name: "Front",
  2359. image: {
  2360. source: "./media/characters/shingo/front.svg",
  2361. extra: 3511 / 3338,
  2362. bottom: 0.005
  2363. }
  2364. },
  2365. paw: {
  2366. height: math.unit(1, "feet"),
  2367. name: "Paw",
  2368. image: {
  2369. source: "./media/characters/shingo/paw.svg"
  2370. }
  2371. },
  2372. },
  2373. [
  2374. {
  2375. name: "Micro",
  2376. height: math.unit(4, "inches")
  2377. },
  2378. {
  2379. name: "Normal",
  2380. height: math.unit(6, "feet"),
  2381. default: true
  2382. },
  2383. {
  2384. name: "Macro",
  2385. height: math.unit(108, "feet")
  2386. }
  2387. ]
  2388. ))
  2389. characterMakers.push(() => makeCharacter(
  2390. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2391. {
  2392. side: {
  2393. height: math.unit(6, "feet"),
  2394. weight: math.unit(75, "kg"),
  2395. name: "Side",
  2396. image: {
  2397. source: "./media/characters/aigey/side.svg"
  2398. }
  2399. },
  2400. },
  2401. [
  2402. {
  2403. name: "Macro",
  2404. height: math.unit(200, "feet"),
  2405. default: true
  2406. },
  2407. {
  2408. name: "Megamacro",
  2409. height: math.unit(100, "miles")
  2410. },
  2411. ]
  2412. )
  2413. )
  2414. characterMakers.push(() => makeCharacter(
  2415. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2416. {
  2417. front: {
  2418. height: math.unit(5 + 5 / 12, "feet"),
  2419. weight: math.unit(75, "kg"),
  2420. name: "Front",
  2421. image: {
  2422. source: "./media/characters/natasha/front.svg",
  2423. extra: 859 / 824,
  2424. bottom: 23 / 879.6
  2425. }
  2426. },
  2427. frontNsfw: {
  2428. height: math.unit(5 + 5 / 12, "feet"),
  2429. weight: math.unit(75, "kg"),
  2430. name: "Front (NSFW)",
  2431. image: {
  2432. source: "./media/characters/natasha/front-nsfw.svg",
  2433. extra: 859 / 824,
  2434. bottom: 23 / 879.6
  2435. }
  2436. },
  2437. frontErect: {
  2438. height: math.unit(5 + 5 / 12, "feet"),
  2439. weight: math.unit(75, "kg"),
  2440. name: "Front (Erect)",
  2441. image: {
  2442. source: "./media/characters/natasha/front-erect.svg",
  2443. extra: 859 / 824,
  2444. bottom: 23 / 879.6
  2445. }
  2446. },
  2447. back: {
  2448. height: math.unit(5 + 5 / 12, "feet"),
  2449. weight: math.unit(75, "kg"),
  2450. name: "Back",
  2451. image: {
  2452. source: "./media/characters/natasha/back.svg",
  2453. extra: 887.9 / 852.6,
  2454. bottom: 9.7 / 896.4
  2455. }
  2456. },
  2457. backAlt: {
  2458. height: math.unit(5 + 5 / 12, "feet"),
  2459. weight: math.unit(75, "kg"),
  2460. name: "Back (Alt)",
  2461. image: {
  2462. source: "./media/characters/natasha/back-alt.svg",
  2463. extra: 1236.7 / 1192,
  2464. bottom: 22.3 / 1258.2
  2465. }
  2466. },
  2467. dick: {
  2468. height: math.unit(1.772, "feet"),
  2469. name: "Dick",
  2470. image: {
  2471. source: "./media/characters/natasha/dick.svg"
  2472. }
  2473. },
  2474. paw: {
  2475. height: math.unit(0.250, "meters"),
  2476. name: "Paw",
  2477. image: {
  2478. source: "./media/characters/natasha/paw.svg"
  2479. }
  2480. },
  2481. },
  2482. [
  2483. {
  2484. name: "Normal",
  2485. height: math.unit(5 + 5 / 12, "feet")
  2486. },
  2487. {
  2488. name: "Large",
  2489. height: math.unit(12, "feet")
  2490. },
  2491. {
  2492. name: "Macro",
  2493. height: math.unit(100, "feet"),
  2494. default: true
  2495. },
  2496. {
  2497. name: "Macro+",
  2498. height: math.unit(260, "feet")
  2499. },
  2500. {
  2501. name: "Macro++",
  2502. height: math.unit(1, "mile")
  2503. },
  2504. ]
  2505. ))
  2506. characterMakers.push(() => makeCharacter(
  2507. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2508. {
  2509. front: {
  2510. height: math.unit(6, "feet"),
  2511. weight: math.unit(75, "kg"),
  2512. name: "Front",
  2513. image: {
  2514. source: "./media/characters/malik/front.svg"
  2515. }
  2516. },
  2517. side: {
  2518. height: math.unit(6, "feet"),
  2519. weight: math.unit(75, "kg"),
  2520. name: "Side",
  2521. image: {
  2522. source: "./media/characters/malik/side.svg",
  2523. extra: 1.1539
  2524. }
  2525. },
  2526. back: {
  2527. height: math.unit(6, "feet"),
  2528. weight: math.unit(75, "kg"),
  2529. name: "Back",
  2530. image: {
  2531. source: "./media/characters/malik/back.svg"
  2532. }
  2533. },
  2534. },
  2535. [
  2536. {
  2537. name: "Macro",
  2538. height: math.unit(156, "feet"),
  2539. default: true
  2540. },
  2541. {
  2542. name: "Macro+",
  2543. height: math.unit(1188, "feet")
  2544. },
  2545. ]
  2546. ))
  2547. characterMakers.push(() => makeCharacter(
  2548. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2549. {
  2550. front: {
  2551. height: math.unit(6, "feet"),
  2552. weight: math.unit(75, "kg"),
  2553. name: "Front",
  2554. image: {
  2555. source: "./media/characters/sefer/front.svg",
  2556. extra: 848 / 659,
  2557. bottom: 28.3 / 876.442
  2558. }
  2559. },
  2560. back: {
  2561. height: math.unit(6, "feet"),
  2562. weight: math.unit(75, "kg"),
  2563. name: "Back",
  2564. image: {
  2565. source: "./media/characters/sefer/back.svg",
  2566. extra: 864 / 695,
  2567. bottom: 10 / 871
  2568. }
  2569. },
  2570. frontDressed: {
  2571. height: math.unit(6, "feet"),
  2572. weight: math.unit(75, "kg"),
  2573. name: "Front (Dressed)",
  2574. image: {
  2575. source: "./media/characters/sefer/front-dressed.svg",
  2576. extra: 839 / 653,
  2577. bottom: 37.6 / 878
  2578. }
  2579. },
  2580. },
  2581. [
  2582. {
  2583. name: "Normal",
  2584. height: math.unit(6, "feet"),
  2585. default: true
  2586. },
  2587. ]
  2588. ))
  2589. characterMakers.push(() => makeCharacter(
  2590. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2591. {
  2592. body: {
  2593. height: math.unit(2.2428, "meter"),
  2594. weight: math.unit(124.738, "kg"),
  2595. name: "Body",
  2596. image: {
  2597. extra: 1225 / 1050,
  2598. source: "./media/characters/north/front.svg"
  2599. }
  2600. }
  2601. },
  2602. [
  2603. {
  2604. name: "Micro",
  2605. height: math.unit(4, "inches")
  2606. },
  2607. {
  2608. name: "Macro",
  2609. height: math.unit(63, "meters")
  2610. },
  2611. {
  2612. name: "Megamacro",
  2613. height: math.unit(101, "miles"),
  2614. default: true
  2615. }
  2616. ]
  2617. ))
  2618. characterMakers.push(() => makeCharacter(
  2619. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2620. {
  2621. angled: {
  2622. height: math.unit(4, "meter"),
  2623. weight: math.unit(150, "kg"),
  2624. name: "Angled",
  2625. image: {
  2626. source: "./media/characters/talan/angled-sfw.svg",
  2627. bottom: 29 / 3734
  2628. }
  2629. },
  2630. angledNsfw: {
  2631. height: math.unit(4, "meter"),
  2632. weight: math.unit(150, "kg"),
  2633. name: "Angled (NSFW)",
  2634. image: {
  2635. source: "./media/characters/talan/angled-nsfw.svg",
  2636. bottom: 29 / 3734
  2637. }
  2638. },
  2639. frontNsfw: {
  2640. height: math.unit(4, "meter"),
  2641. weight: math.unit(150, "kg"),
  2642. name: "Front (NSFW)",
  2643. image: {
  2644. source: "./media/characters/talan/front-nsfw.svg",
  2645. bottom: 29 / 3734
  2646. }
  2647. },
  2648. sideNsfw: {
  2649. height: math.unit(4, "meter"),
  2650. weight: math.unit(150, "kg"),
  2651. name: "Side (NSFW)",
  2652. image: {
  2653. source: "./media/characters/talan/side-nsfw.svg",
  2654. bottom: 29 / 3734
  2655. }
  2656. },
  2657. back: {
  2658. height: math.unit(4, "meter"),
  2659. weight: math.unit(150, "kg"),
  2660. name: "Back",
  2661. image: {
  2662. source: "./media/characters/talan/back.svg"
  2663. }
  2664. },
  2665. dickBottom: {
  2666. height: math.unit(0.621, "meter"),
  2667. name: "Dick (Bottom)",
  2668. image: {
  2669. source: "./media/characters/talan/dick-bottom.svg"
  2670. }
  2671. },
  2672. dickTop: {
  2673. height: math.unit(0.621, "meter"),
  2674. name: "Dick (Top)",
  2675. image: {
  2676. source: "./media/characters/talan/dick-top.svg"
  2677. }
  2678. },
  2679. dickSide: {
  2680. height: math.unit(0.305, "meter"),
  2681. name: "Dick (Side)",
  2682. image: {
  2683. source: "./media/characters/talan/dick-side.svg"
  2684. }
  2685. },
  2686. dickFront: {
  2687. height: math.unit(0.305, "meter"),
  2688. name: "Dick (Front)",
  2689. image: {
  2690. source: "./media/characters/talan/dick-front.svg"
  2691. }
  2692. },
  2693. },
  2694. [
  2695. {
  2696. name: "Normal",
  2697. height: math.unit(4, "meters")
  2698. },
  2699. {
  2700. name: "Macro",
  2701. height: math.unit(100, "meters")
  2702. },
  2703. {
  2704. name: "Megamacro",
  2705. height: math.unit(2, "miles"),
  2706. default: true
  2707. },
  2708. {
  2709. name: "Gigamacro",
  2710. height: math.unit(5000, "miles")
  2711. },
  2712. {
  2713. name: "Teramacro",
  2714. height: math.unit(100, "parsecs")
  2715. }
  2716. ]
  2717. ))
  2718. characterMakers.push(() => makeCharacter(
  2719. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2720. {
  2721. front: {
  2722. height: math.unit(2, "meter"),
  2723. weight: math.unit(90, "kg"),
  2724. name: "Front",
  2725. image: {
  2726. source: "./media/characters/gael'rathus/front.svg"
  2727. }
  2728. },
  2729. frontAlt: {
  2730. height: math.unit(2, "meter"),
  2731. weight: math.unit(90, "kg"),
  2732. name: "Front (alt)",
  2733. image: {
  2734. source: "./media/characters/gael'rathus/front-alt.svg"
  2735. }
  2736. },
  2737. frontAlt2: {
  2738. height: math.unit(2, "meter"),
  2739. weight: math.unit(90, "kg"),
  2740. name: "Front (alt 2)",
  2741. image: {
  2742. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2743. }
  2744. }
  2745. },
  2746. [
  2747. {
  2748. name: "Normal",
  2749. height: math.unit(9, "feet"),
  2750. default: true
  2751. },
  2752. {
  2753. name: "Large",
  2754. height: math.unit(25, "feet")
  2755. },
  2756. {
  2757. name: "Macro",
  2758. height: math.unit(0.25, "miles")
  2759. },
  2760. {
  2761. name: "Megamacro",
  2762. height: math.unit(10, "miles")
  2763. }
  2764. ]
  2765. ))
  2766. characterMakers.push(() => makeCharacter(
  2767. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2768. {
  2769. side: {
  2770. height: math.unit(2, "meter"),
  2771. weight: math.unit(140, "kg"),
  2772. name: "Side",
  2773. image: {
  2774. source: "./media/characters/sosha/side.svg",
  2775. bottom: 0.042
  2776. }
  2777. },
  2778. },
  2779. [
  2780. {
  2781. name: "Normal",
  2782. height: math.unit(12, "feet"),
  2783. default: true
  2784. }
  2785. ]
  2786. ))
  2787. characterMakers.push(() => makeCharacter(
  2788. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2789. {
  2790. side: {
  2791. height: math.unit(5 + 5 / 12, "feet"),
  2792. weight: math.unit(170, "kg"),
  2793. name: "Side",
  2794. image: {
  2795. source: "./media/characters/runnola/side.svg",
  2796. extra: 741 / 448,
  2797. bottom: 0.05
  2798. }
  2799. },
  2800. },
  2801. [
  2802. {
  2803. name: "Small",
  2804. height: math.unit(3, "feet")
  2805. },
  2806. {
  2807. name: "Normal",
  2808. height: math.unit(5 + 5 / 12, "feet"),
  2809. default: true
  2810. },
  2811. {
  2812. name: "Big",
  2813. height: math.unit(10, "feet")
  2814. },
  2815. ]
  2816. ))
  2817. characterMakers.push(() => makeCharacter(
  2818. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2819. {
  2820. front: {
  2821. height: math.unit(2, "meter"),
  2822. weight: math.unit(50, "kg"),
  2823. name: "Front",
  2824. image: {
  2825. source: "./media/characters/kurribird/front.svg",
  2826. bottom: 0.015
  2827. }
  2828. },
  2829. frontAlt: {
  2830. height: math.unit(1.5, "meter"),
  2831. weight: math.unit(50, "kg"),
  2832. name: "Front (Alt)",
  2833. image: {
  2834. source: "./media/characters/kurribird/front-alt.svg",
  2835. extra: 1.45
  2836. }
  2837. },
  2838. },
  2839. [
  2840. {
  2841. name: "Normal",
  2842. height: math.unit(7, "feet")
  2843. },
  2844. {
  2845. name: "Big",
  2846. height: math.unit(12, "feet"),
  2847. default: true
  2848. },
  2849. {
  2850. name: "Macro",
  2851. height: math.unit(1500, "feet")
  2852. },
  2853. {
  2854. name: "Megamacro",
  2855. height: math.unit(2, "miles")
  2856. }
  2857. ]
  2858. ))
  2859. characterMakers.push(() => makeCharacter(
  2860. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2861. {
  2862. front: {
  2863. height: math.unit(2, "meter"),
  2864. weight: math.unit(80, "kg"),
  2865. name: "Front",
  2866. image: {
  2867. source: "./media/characters/elbial/front.svg",
  2868. extra: 1643 / 1556,
  2869. bottom: 60.2 / 1696
  2870. }
  2871. },
  2872. side: {
  2873. height: math.unit(2, "meter"),
  2874. weight: math.unit(80, "kg"),
  2875. name: "Side",
  2876. image: {
  2877. source: "./media/characters/elbial/side.svg",
  2878. extra: 1630 / 1565,
  2879. bottom: 71.5 / 1697
  2880. }
  2881. },
  2882. back: {
  2883. height: math.unit(2, "meter"),
  2884. weight: math.unit(80, "kg"),
  2885. name: "Back",
  2886. image: {
  2887. source: "./media/characters/elbial/back.svg",
  2888. extra: 1668 / 1595,
  2889. bottom: 5.6 / 1672
  2890. }
  2891. },
  2892. frontDressed: {
  2893. height: math.unit(2, "meter"),
  2894. weight: math.unit(80, "kg"),
  2895. name: "Front (Dressed)",
  2896. image: {
  2897. source: "./media/characters/elbial/front-dressed.svg",
  2898. extra: 1653 / 1584,
  2899. bottom: 57 / 1708
  2900. }
  2901. },
  2902. genitals: {
  2903. height: math.unit(2 / 3.367, "meter"),
  2904. name: "Genitals",
  2905. image: {
  2906. source: "./media/characters/elbial/genitals.svg"
  2907. }
  2908. },
  2909. },
  2910. [
  2911. {
  2912. name: "Large",
  2913. height: math.unit(100, "feet")
  2914. },
  2915. {
  2916. name: "Macro",
  2917. height: math.unit(500, "feet"),
  2918. default: true
  2919. },
  2920. {
  2921. name: "Megamacro",
  2922. height: math.unit(10, "miles")
  2923. },
  2924. {
  2925. name: "Gigamacro",
  2926. height: math.unit(25000, "miles")
  2927. },
  2928. {
  2929. name: "Full-Size",
  2930. height: math.unit(8000000, "gigaparsecs")
  2931. }
  2932. ]
  2933. ))
  2934. characterMakers.push(() => makeCharacter(
  2935. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2936. {
  2937. front: {
  2938. height: math.unit(2, "meter"),
  2939. weight: math.unit(60, "kg"),
  2940. name: "Front",
  2941. image: {
  2942. source: "./media/characters/noah/front.svg"
  2943. }
  2944. },
  2945. talons: {
  2946. height: math.unit(0.315, "meter"),
  2947. name: "Talons",
  2948. image: {
  2949. source: "./media/characters/noah/talons.svg"
  2950. }
  2951. }
  2952. },
  2953. [
  2954. {
  2955. name: "Large",
  2956. height: math.unit(50, "feet")
  2957. },
  2958. {
  2959. name: "Macro",
  2960. height: math.unit(750, "feet"),
  2961. default: true
  2962. },
  2963. {
  2964. name: "Megamacro",
  2965. height: math.unit(50, "miles")
  2966. },
  2967. {
  2968. name: "Gigamacro",
  2969. height: math.unit(100000, "miles")
  2970. },
  2971. {
  2972. name: "Full-Size",
  2973. height: math.unit(3000000000, "miles")
  2974. }
  2975. ]
  2976. ))
  2977. characterMakers.push(() => makeCharacter(
  2978. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2979. {
  2980. front: {
  2981. height: math.unit(2, "meter"),
  2982. weight: math.unit(80, "kg"),
  2983. name: "Front",
  2984. image: {
  2985. source: "./media/characters/natalya/front.svg"
  2986. }
  2987. },
  2988. back: {
  2989. height: math.unit(2, "meter"),
  2990. weight: math.unit(80, "kg"),
  2991. name: "Back",
  2992. image: {
  2993. source: "./media/characters/natalya/back.svg"
  2994. }
  2995. }
  2996. },
  2997. [
  2998. {
  2999. name: "Normal",
  3000. height: math.unit(150, "feet"),
  3001. default: true
  3002. },
  3003. {
  3004. name: "Megamacro",
  3005. height: math.unit(5, "miles")
  3006. },
  3007. {
  3008. name: "Full-Size",
  3009. height: math.unit(600, "kiloparsecs")
  3010. }
  3011. ]
  3012. ))
  3013. characterMakers.push(() => makeCharacter(
  3014. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3015. {
  3016. front: {
  3017. height: math.unit(2, "meter"),
  3018. weight: math.unit(50, "kg"),
  3019. name: "Front",
  3020. image: {
  3021. source: "./media/characters/erestrebah/front.svg",
  3022. extra: 208 / 193,
  3023. bottom: 0.055
  3024. }
  3025. },
  3026. back: {
  3027. height: math.unit(2, "meter"),
  3028. weight: math.unit(50, "kg"),
  3029. name: "Back",
  3030. image: {
  3031. source: "./media/characters/erestrebah/back.svg",
  3032. extra: 1.3
  3033. }
  3034. }
  3035. },
  3036. [
  3037. {
  3038. name: "Normal",
  3039. height: math.unit(10, "feet")
  3040. },
  3041. {
  3042. name: "Large",
  3043. height: math.unit(50, "feet"),
  3044. default: true
  3045. },
  3046. {
  3047. name: "Macro",
  3048. height: math.unit(300, "feet")
  3049. },
  3050. {
  3051. name: "Macro+",
  3052. height: math.unit(750, "feet")
  3053. },
  3054. {
  3055. name: "Megamacro",
  3056. height: math.unit(3, "miles")
  3057. }
  3058. ]
  3059. ))
  3060. characterMakers.push(() => makeCharacter(
  3061. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3062. {
  3063. front: {
  3064. height: math.unit(2, "meter"),
  3065. weight: math.unit(80, "kg"),
  3066. name: "Front",
  3067. image: {
  3068. source: "./media/characters/jennifer/front.svg",
  3069. bottom: 0.11,
  3070. extra: 1.16
  3071. }
  3072. },
  3073. frontAlt: {
  3074. height: math.unit(2, "meter"),
  3075. weight: math.unit(80, "kg"),
  3076. name: "Front (Alt)",
  3077. image: {
  3078. source: "./media/characters/jennifer/front-alt.svg"
  3079. }
  3080. }
  3081. },
  3082. [
  3083. {
  3084. name: "Canon Height",
  3085. height: math.unit(120, "feet"),
  3086. default: true
  3087. },
  3088. {
  3089. name: "Macro+",
  3090. height: math.unit(300, "feet")
  3091. },
  3092. {
  3093. name: "Megamacro",
  3094. height: math.unit(20000, "feet")
  3095. }
  3096. ]
  3097. ))
  3098. characterMakers.push(() => makeCharacter(
  3099. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3100. {
  3101. front: {
  3102. height: math.unit(2, "meter"),
  3103. weight: math.unit(50, "kg"),
  3104. name: "Front",
  3105. image: {
  3106. source: "./media/characters/kalista/front.svg",
  3107. extra: 1947 / 1700,
  3108. bottom: 76.6 / 1412.98
  3109. }
  3110. },
  3111. back: {
  3112. height: math.unit(2, "meter"),
  3113. weight: math.unit(50, "kg"),
  3114. name: "Back",
  3115. image: {
  3116. source: "./media/characters/kalista/back.svg",
  3117. extra: 1366 / 1156,
  3118. bottom: 33.9 / 1362.78
  3119. }
  3120. }
  3121. },
  3122. [
  3123. {
  3124. name: "Uncomfortably Small",
  3125. height: math.unit(10, "feet")
  3126. },
  3127. {
  3128. name: "Small",
  3129. height: math.unit(30, "feet")
  3130. },
  3131. {
  3132. name: "Macro",
  3133. height: math.unit(100, "feet"),
  3134. default: true
  3135. },
  3136. {
  3137. name: "Macro+",
  3138. height: math.unit(2000, "feet")
  3139. },
  3140. {
  3141. name: "True Form",
  3142. height: math.unit(8924, "miles")
  3143. }
  3144. ]
  3145. ))
  3146. characterMakers.push(() => makeCharacter(
  3147. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3148. {
  3149. front: {
  3150. height: math.unit(2, "meter"),
  3151. weight: math.unit(120, "kg"),
  3152. name: "Front",
  3153. image: {
  3154. source: "./media/characters/ggv/front.svg"
  3155. }
  3156. },
  3157. side: {
  3158. height: math.unit(2, "meter"),
  3159. weight: math.unit(120, "kg"),
  3160. name: "Side",
  3161. image: {
  3162. source: "./media/characters/ggv/side.svg"
  3163. }
  3164. }
  3165. },
  3166. [
  3167. {
  3168. name: "Extremely Puny",
  3169. height: math.unit(9 + 5 / 12, "feet")
  3170. },
  3171. {
  3172. name: "Horribly Small",
  3173. height: math.unit(47.7, "miles"),
  3174. default: true
  3175. },
  3176. {
  3177. name: "Reasonably Sized",
  3178. height: math.unit(25000, "parsecs")
  3179. },
  3180. {
  3181. name: "Slightly Uncompressed",
  3182. height: math.unit(7.77e31, "parsecs")
  3183. },
  3184. {
  3185. name: "Omniversal",
  3186. height: math.unit(1e300, "meters")
  3187. },
  3188. ]
  3189. ))
  3190. characterMakers.push(() => makeCharacter(
  3191. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3192. {
  3193. front: {
  3194. height: math.unit(2, "meter"),
  3195. weight: math.unit(75, "lb"),
  3196. name: "Front",
  3197. image: {
  3198. source: "./media/characters/napalm/front.svg"
  3199. }
  3200. },
  3201. back: {
  3202. height: math.unit(2, "meter"),
  3203. weight: math.unit(75, "lb"),
  3204. name: "Back",
  3205. image: {
  3206. source: "./media/characters/napalm/back.svg"
  3207. }
  3208. }
  3209. },
  3210. [
  3211. {
  3212. name: "Standard",
  3213. height: math.unit(55, "feet"),
  3214. default: true
  3215. }
  3216. ]
  3217. ))
  3218. characterMakers.push(() => makeCharacter(
  3219. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3220. {
  3221. front: {
  3222. height: math.unit(7 + 5 / 6, "feet"),
  3223. weight: math.unit(325, "lb"),
  3224. name: "Front",
  3225. image: {
  3226. source: "./media/characters/asana/front.svg",
  3227. extra: 1133 / 1060,
  3228. bottom: 15.2 / 1148.6
  3229. }
  3230. },
  3231. back: {
  3232. height: math.unit(7 + 5 / 6, "feet"),
  3233. weight: math.unit(325, "lb"),
  3234. name: "Back",
  3235. image: {
  3236. source: "./media/characters/asana/back.svg",
  3237. extra: 1114 / 1043,
  3238. bottom: 5 / 1120
  3239. }
  3240. },
  3241. dressedDark: {
  3242. height: math.unit(7 + 5 / 6, "feet"),
  3243. weight: math.unit(325, "lb"),
  3244. name: "Dressed (Dark)",
  3245. image: {
  3246. source: "./media/characters/asana/dressed-dark.svg",
  3247. extra: 1133 / 1060,
  3248. bottom: 15.2 / 1148.6
  3249. }
  3250. },
  3251. dressedLight: {
  3252. height: math.unit(7 + 5 / 6, "feet"),
  3253. weight: math.unit(325, "lb"),
  3254. name: "Dressed (Light)",
  3255. image: {
  3256. source: "./media/characters/asana/dressed-light.svg",
  3257. extra: 1133 / 1060,
  3258. bottom: 15.2 / 1148.6
  3259. }
  3260. },
  3261. },
  3262. [
  3263. {
  3264. name: "Standard",
  3265. height: math.unit(7 + 5 / 6, "feet"),
  3266. default: true
  3267. },
  3268. {
  3269. name: "Large",
  3270. height: math.unit(10, "meters")
  3271. },
  3272. {
  3273. name: "Macro",
  3274. height: math.unit(2500, "meters")
  3275. },
  3276. {
  3277. name: "Megamacro",
  3278. height: math.unit(5e6, "meters")
  3279. },
  3280. {
  3281. name: "Examacro",
  3282. height: math.unit(5e12, "lightyears")
  3283. },
  3284. {
  3285. name: "Max Size",
  3286. height: math.unit(1e31, "lightyears")
  3287. }
  3288. ]
  3289. ))
  3290. characterMakers.push(() => makeCharacter(
  3291. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3292. {
  3293. front: {
  3294. height: math.unit(2, "meter"),
  3295. weight: math.unit(60, "kg"),
  3296. name: "Front",
  3297. image: {
  3298. source: "./media/characters/ebony/front.svg",
  3299. bottom: 0.03,
  3300. extra: 1045 / 810 + 0.03
  3301. }
  3302. },
  3303. side: {
  3304. height: math.unit(2, "meter"),
  3305. weight: math.unit(60, "kg"),
  3306. name: "Side",
  3307. image: {
  3308. source: "./media/characters/ebony/side.svg",
  3309. bottom: 0.03,
  3310. extra: 1045 / 810 + 0.03
  3311. }
  3312. },
  3313. back: {
  3314. height: math.unit(2, "meter"),
  3315. weight: math.unit(60, "kg"),
  3316. name: "Back",
  3317. image: {
  3318. source: "./media/characters/ebony/back.svg",
  3319. bottom: 0.01,
  3320. extra: 1045 / 810 + 0.01
  3321. }
  3322. },
  3323. },
  3324. [
  3325. // TODO check why I did this lol
  3326. {
  3327. name: "Standard",
  3328. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3329. default: true
  3330. },
  3331. {
  3332. name: "Macro",
  3333. height: math.unit(200, "feet")
  3334. },
  3335. {
  3336. name: "Gigamacro",
  3337. height: math.unit(13000, "km")
  3338. }
  3339. ]
  3340. ))
  3341. characterMakers.push(() => makeCharacter(
  3342. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3343. {
  3344. front: {
  3345. height: math.unit(6, "feet"),
  3346. weight: math.unit(175, "lb"),
  3347. name: "Front",
  3348. image: {
  3349. source: "./media/characters/mountain/front.svg",
  3350. extra: 972 / 955,
  3351. bottom: 64 / 1036.6
  3352. }
  3353. },
  3354. back: {
  3355. height: math.unit(6, "feet"),
  3356. weight: math.unit(175, "lb"),
  3357. name: "Back",
  3358. image: {
  3359. source: "./media/characters/mountain/back.svg",
  3360. extra: 970 / 950,
  3361. bottom: 28.25 / 999
  3362. }
  3363. },
  3364. },
  3365. [
  3366. {
  3367. name: "Large",
  3368. height: math.unit(20, "meters")
  3369. },
  3370. {
  3371. name: "Macro",
  3372. height: math.unit(300, "meters")
  3373. },
  3374. {
  3375. name: "Gigamacro",
  3376. height: math.unit(10000, "km"),
  3377. default: true
  3378. },
  3379. {
  3380. name: "Examacro",
  3381. height: math.unit(10e9, "lightyears")
  3382. }
  3383. ]
  3384. ))
  3385. characterMakers.push(() => makeCharacter(
  3386. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3387. {
  3388. front: {
  3389. height: math.unit(8, "feet"),
  3390. weight: math.unit(500, "lb"),
  3391. name: "Front",
  3392. image: {
  3393. source: "./media/characters/rick/front.svg"
  3394. }
  3395. }
  3396. },
  3397. [
  3398. {
  3399. name: "Normal",
  3400. height: math.unit(8, "feet"),
  3401. default: true
  3402. },
  3403. {
  3404. name: "Macro",
  3405. height: math.unit(5, "km")
  3406. }
  3407. ]
  3408. ))
  3409. characterMakers.push(() => makeCharacter(
  3410. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3411. {
  3412. front: {
  3413. height: math.unit(8, "feet"),
  3414. weight: math.unit(120, "lb"),
  3415. name: "Front",
  3416. image: {
  3417. source: "./media/characters/ona/front.svg"
  3418. }
  3419. },
  3420. frontAlt: {
  3421. height: math.unit(8, "feet"),
  3422. weight: math.unit(120, "lb"),
  3423. name: "Front (Alt)",
  3424. image: {
  3425. source: "./media/characters/ona/front-alt.svg"
  3426. }
  3427. },
  3428. back: {
  3429. height: math.unit(8, "feet"),
  3430. weight: math.unit(120, "lb"),
  3431. name: "Back",
  3432. image: {
  3433. source: "./media/characters/ona/back.svg"
  3434. }
  3435. },
  3436. foot: {
  3437. height: math.unit(1.1, "feet"),
  3438. name: "Foot",
  3439. image: {
  3440. source: "./media/characters/ona/foot.svg"
  3441. }
  3442. }
  3443. },
  3444. [
  3445. {
  3446. name: "Megamacro",
  3447. height: math.unit(70, "km"),
  3448. default: true
  3449. },
  3450. {
  3451. name: "Gigamacro",
  3452. height: math.unit(681818, "miles")
  3453. },
  3454. {
  3455. name: "Examacro",
  3456. height: math.unit(3800000, "lightyears")
  3457. },
  3458. ]
  3459. ))
  3460. characterMakers.push(() => makeCharacter(
  3461. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3462. {
  3463. front: {
  3464. height: math.unit(12, "feet"),
  3465. weight: math.unit(3000, "lb"),
  3466. name: "Front",
  3467. image: {
  3468. source: "./media/characters/mech/front.svg",
  3469. extra: 2900 / 2770,
  3470. bottom: 110 / 3010
  3471. }
  3472. },
  3473. back: {
  3474. height: math.unit(12, "feet"),
  3475. weight: math.unit(3000, "lb"),
  3476. name: "Back",
  3477. image: {
  3478. source: "./media/characters/mech/back.svg",
  3479. extra: 3011 / 2890,
  3480. bottom: 94 / 3105
  3481. }
  3482. },
  3483. maw: {
  3484. height: math.unit(3.07, "feet"),
  3485. name: "Maw",
  3486. image: {
  3487. source: "./media/characters/mech/maw.svg"
  3488. }
  3489. },
  3490. head: {
  3491. height: math.unit(2.82, "feet"),
  3492. name: "Head",
  3493. image: {
  3494. source: "./media/characters/mech/head.svg"
  3495. }
  3496. },
  3497. dick: {
  3498. height: math.unit(1.43, "feet"),
  3499. name: "Dick",
  3500. image: {
  3501. source: "./media/characters/mech/dick.svg"
  3502. }
  3503. },
  3504. },
  3505. [
  3506. {
  3507. name: "Normal",
  3508. height: math.unit(12, "feet")
  3509. },
  3510. {
  3511. name: "Macro",
  3512. height: math.unit(300, "feet"),
  3513. default: true
  3514. },
  3515. {
  3516. name: "Macro+",
  3517. height: math.unit(1500, "feet")
  3518. },
  3519. ]
  3520. ))
  3521. characterMakers.push(() => makeCharacter(
  3522. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3523. {
  3524. front: {
  3525. height: math.unit(1.3, "meter"),
  3526. weight: math.unit(30, "kg"),
  3527. name: "Front",
  3528. image: {
  3529. source: "./media/characters/gregory/front.svg",
  3530. }
  3531. }
  3532. },
  3533. [
  3534. {
  3535. name: "Normal",
  3536. height: math.unit(1.3, "meter"),
  3537. default: true
  3538. },
  3539. {
  3540. name: "Macro",
  3541. height: math.unit(20, "meter")
  3542. }
  3543. ]
  3544. ))
  3545. characterMakers.push(() => makeCharacter(
  3546. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3547. {
  3548. front: {
  3549. height: math.unit(2.8, "meter"),
  3550. weight: math.unit(200, "kg"),
  3551. name: "Front",
  3552. image: {
  3553. source: "./media/characters/elory/front.svg",
  3554. }
  3555. }
  3556. },
  3557. [
  3558. {
  3559. name: "Normal",
  3560. height: math.unit(2.8, "meter"),
  3561. default: true
  3562. },
  3563. {
  3564. name: "Macro",
  3565. height: math.unit(38, "meter")
  3566. }
  3567. ]
  3568. ))
  3569. characterMakers.push(() => makeCharacter(
  3570. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3571. {
  3572. front: {
  3573. height: math.unit(470, "feet"),
  3574. weight: math.unit(924, "tons"),
  3575. name: "Front",
  3576. image: {
  3577. source: "./media/characters/angelpatamon/front.svg",
  3578. }
  3579. }
  3580. },
  3581. [
  3582. {
  3583. name: "Normal",
  3584. height: math.unit(470, "feet"),
  3585. default: true
  3586. },
  3587. {
  3588. name: "Deity Size I",
  3589. height: math.unit(28651.2, "km")
  3590. },
  3591. {
  3592. name: "Deity Size II",
  3593. height: math.unit(171907.2, "km")
  3594. }
  3595. ]
  3596. ))
  3597. characterMakers.push(() => makeCharacter(
  3598. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3599. {
  3600. side: {
  3601. height: math.unit(7.2, "meter"),
  3602. weight: math.unit(8.2, "tons"),
  3603. name: "Side",
  3604. image: {
  3605. source: "./media/characters/cryae/side.svg",
  3606. extra: 3500 / 1500
  3607. }
  3608. }
  3609. },
  3610. [
  3611. {
  3612. name: "Normal",
  3613. height: math.unit(7.2, "meter"),
  3614. default: true
  3615. }
  3616. ]
  3617. ))
  3618. characterMakers.push(() => makeCharacter(
  3619. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3620. {
  3621. front: {
  3622. height: math.unit(6, "feet"),
  3623. weight: math.unit(175, "lb"),
  3624. name: "Front",
  3625. image: {
  3626. source: "./media/characters/xera/front.svg",
  3627. extra: 2377 / 1972,
  3628. bottom: 75.5 / 2452
  3629. }
  3630. },
  3631. side: {
  3632. height: math.unit(6, "feet"),
  3633. weight: math.unit(175, "lb"),
  3634. name: "Side",
  3635. image: {
  3636. source: "./media/characters/xera/side.svg",
  3637. extra: 2345 / 2019,
  3638. bottom: 39.7 / 2384
  3639. }
  3640. },
  3641. back: {
  3642. height: math.unit(6, "feet"),
  3643. weight: math.unit(175, "lb"),
  3644. name: "Back",
  3645. image: {
  3646. source: "./media/characters/xera/back.svg",
  3647. extra: 2095 / 1984,
  3648. bottom: 67 / 2166
  3649. }
  3650. },
  3651. },
  3652. [
  3653. {
  3654. name: "Small",
  3655. height: math.unit(10, "feet")
  3656. },
  3657. {
  3658. name: "Macro",
  3659. height: math.unit(500, "meters"),
  3660. default: true
  3661. },
  3662. {
  3663. name: "Macro+",
  3664. height: math.unit(10, "km")
  3665. },
  3666. {
  3667. name: "Gigamacro",
  3668. height: math.unit(25000, "km")
  3669. },
  3670. {
  3671. name: "Teramacro",
  3672. height: math.unit(3e6, "km")
  3673. }
  3674. ]
  3675. ))
  3676. characterMakers.push(() => makeCharacter(
  3677. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3678. {
  3679. front: {
  3680. height: math.unit(6, "feet"),
  3681. weight: math.unit(175, "lb"),
  3682. name: "Front",
  3683. image: {
  3684. source: "./media/characters/nebula/front.svg",
  3685. extra: 2566 / 2362,
  3686. bottom: 81 / 2644
  3687. }
  3688. }
  3689. },
  3690. [
  3691. {
  3692. name: "Small",
  3693. height: math.unit(4.5, "meters")
  3694. },
  3695. {
  3696. name: "Macro",
  3697. height: math.unit(1500, "meters"),
  3698. default: true
  3699. },
  3700. {
  3701. name: "Megamacro",
  3702. height: math.unit(150, "km")
  3703. },
  3704. {
  3705. name: "Gigamacro",
  3706. height: math.unit(27000, "km")
  3707. }
  3708. ]
  3709. ))
  3710. characterMakers.push(() => makeCharacter(
  3711. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3712. {
  3713. front: {
  3714. height: math.unit(6, "feet"),
  3715. weight: math.unit(225, "lb"),
  3716. name: "Front",
  3717. image: {
  3718. source: "./media/characters/abysgar/front.svg"
  3719. }
  3720. }
  3721. },
  3722. [
  3723. {
  3724. name: "Small",
  3725. height: math.unit(4.5, "meters")
  3726. },
  3727. {
  3728. name: "Macro",
  3729. height: math.unit(1250, "meters"),
  3730. default: true
  3731. },
  3732. {
  3733. name: "Megamacro",
  3734. height: math.unit(125, "km")
  3735. },
  3736. {
  3737. name: "Gigamacro",
  3738. height: math.unit(26000, "km")
  3739. }
  3740. ]
  3741. ))
  3742. characterMakers.push(() => makeCharacter(
  3743. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3744. {
  3745. front: {
  3746. height: math.unit(6, "feet"),
  3747. weight: math.unit(180, "lb"),
  3748. name: "Front",
  3749. image: {
  3750. source: "./media/characters/yakuz/front.svg"
  3751. }
  3752. }
  3753. },
  3754. [
  3755. {
  3756. name: "Small",
  3757. height: math.unit(5, "meters")
  3758. },
  3759. {
  3760. name: "Macro",
  3761. height: math.unit(1500, "meters"),
  3762. default: true
  3763. },
  3764. {
  3765. name: "Megamacro",
  3766. height: math.unit(200, "km")
  3767. },
  3768. {
  3769. name: "Gigamacro",
  3770. height: math.unit(100000, "km")
  3771. }
  3772. ]
  3773. ))
  3774. characterMakers.push(() => makeCharacter(
  3775. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3776. {
  3777. front: {
  3778. height: math.unit(6, "feet"),
  3779. weight: math.unit(175, "lb"),
  3780. name: "Front",
  3781. image: {
  3782. source: "./media/characters/mirova/front.svg",
  3783. extra: 3334 / 3071,
  3784. bottom: 42 / 3375.6
  3785. }
  3786. }
  3787. },
  3788. [
  3789. {
  3790. name: "Small",
  3791. height: math.unit(5, "meters")
  3792. },
  3793. {
  3794. name: "Macro",
  3795. height: math.unit(900, "meters"),
  3796. default: true
  3797. },
  3798. {
  3799. name: "Megamacro",
  3800. height: math.unit(135, "km")
  3801. },
  3802. {
  3803. name: "Gigamacro",
  3804. height: math.unit(20000, "km")
  3805. }
  3806. ]
  3807. ))
  3808. characterMakers.push(() => makeCharacter(
  3809. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3810. {
  3811. side: {
  3812. height: math.unit(28.35, "feet"),
  3813. weight: math.unit(99.75, "tons"),
  3814. name: "Side",
  3815. image: {
  3816. source: "./media/characters/asana-mech/side.svg",
  3817. extra: 923 / 699,
  3818. bottom: 50 / 975
  3819. }
  3820. },
  3821. chaingun: {
  3822. height: math.unit(7, "feet"),
  3823. weight: math.unit(2400, "lb"),
  3824. name: "Chaingun",
  3825. image: {
  3826. source: "./media/characters/asana-mech/chaingun.svg"
  3827. }
  3828. },
  3829. laser: {
  3830. height: math.unit(7.12, "feet"),
  3831. weight: math.unit(2000, "lb"),
  3832. name: "Laser",
  3833. image: {
  3834. source: "./media/characters/asana-mech/laser.svg"
  3835. }
  3836. },
  3837. },
  3838. [
  3839. {
  3840. name: "Normal",
  3841. height: math.unit(28.35, "feet"),
  3842. default: true
  3843. },
  3844. {
  3845. name: "Macro",
  3846. height: math.unit(2500, "feet")
  3847. },
  3848. {
  3849. name: "Megamacro",
  3850. height: math.unit(25, "miles")
  3851. },
  3852. {
  3853. name: "Examacro",
  3854. height: math.unit(6e8, "lightyears")
  3855. },
  3856. ]
  3857. ))
  3858. characterMakers.push(() => makeCharacter(
  3859. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3860. {
  3861. front: {
  3862. height: math.unit(5, "meters"),
  3863. weight: math.unit(1000, "kg"),
  3864. name: "Front",
  3865. image: {
  3866. source: "./media/characters/asche/front.svg",
  3867. extra: 1258 / 1190,
  3868. bottom: 47 / 1305
  3869. }
  3870. },
  3871. frontUnderwear: {
  3872. height: math.unit(5, "meters"),
  3873. weight: math.unit(1000, "kg"),
  3874. name: "Front (Underwear)",
  3875. image: {
  3876. source: "./media/characters/asche/front-underwear.svg",
  3877. extra: 1258 / 1190,
  3878. bottom: 47 / 1305
  3879. }
  3880. },
  3881. frontDressed: {
  3882. height: math.unit(5, "meters"),
  3883. weight: math.unit(1000, "kg"),
  3884. name: "Front (Dressed)",
  3885. image: {
  3886. source: "./media/characters/asche/front-dressed.svg",
  3887. extra: 1258 / 1190,
  3888. bottom: 47 / 1305
  3889. }
  3890. },
  3891. frontArmor: {
  3892. height: math.unit(5, "meters"),
  3893. weight: math.unit(1000, "kg"),
  3894. name: "Front (Armored)",
  3895. image: {
  3896. source: "./media/characters/asche/front-armored.svg",
  3897. extra: 1374 / 1308,
  3898. bottom: 23 / 1397
  3899. }
  3900. },
  3901. mp724: {
  3902. height: math.unit(0.96, "meters"),
  3903. weight: math.unit(38, "kg"),
  3904. name: "H&K MP724",
  3905. image: {
  3906. source: "./media/characters/asche/h&k-mp724.svg"
  3907. }
  3908. },
  3909. side: {
  3910. height: math.unit(5, "meters"),
  3911. weight: math.unit(1000, "kg"),
  3912. name: "Side",
  3913. image: {
  3914. source: "./media/characters/asche/side.svg",
  3915. extra: 1717 / 1609,
  3916. bottom: 0.005
  3917. }
  3918. },
  3919. back: {
  3920. height: math.unit(5, "meters"),
  3921. weight: math.unit(1000, "kg"),
  3922. name: "Back",
  3923. image: {
  3924. source: "./media/characters/asche/back.svg",
  3925. extra: 1570 / 1501
  3926. }
  3927. },
  3928. },
  3929. [
  3930. {
  3931. name: "DEFCON 5",
  3932. height: math.unit(5, "meters")
  3933. },
  3934. {
  3935. name: "DEFCON 4",
  3936. height: math.unit(500, "meters"),
  3937. default: true
  3938. },
  3939. {
  3940. name: "DEFCON 3",
  3941. height: math.unit(5, "km")
  3942. },
  3943. {
  3944. name: "DEFCON 2",
  3945. height: math.unit(500, "km")
  3946. },
  3947. {
  3948. name: "DEFCON 1",
  3949. height: math.unit(500000, "km")
  3950. },
  3951. {
  3952. name: "DEFCON 0",
  3953. height: math.unit(3, "gigaparsecs")
  3954. },
  3955. ]
  3956. ))
  3957. characterMakers.push(() => makeCharacter(
  3958. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3959. {
  3960. front: {
  3961. height: math.unit(2, "meters"),
  3962. weight: math.unit(76, "kg"),
  3963. name: "Front",
  3964. image: {
  3965. source: "./media/characters/gale/front.svg"
  3966. }
  3967. },
  3968. frontAlt1: {
  3969. height: math.unit(2, "meters"),
  3970. weight: math.unit(76, "kg"),
  3971. name: "Front (Alt 1)",
  3972. image: {
  3973. source: "./media/characters/gale/front-alt-1.svg"
  3974. }
  3975. },
  3976. frontAlt2: {
  3977. height: math.unit(2, "meters"),
  3978. weight: math.unit(76, "kg"),
  3979. name: "Front (Alt 2)",
  3980. image: {
  3981. source: "./media/characters/gale/front-alt-2.svg"
  3982. }
  3983. },
  3984. },
  3985. [
  3986. {
  3987. name: "Normal",
  3988. height: math.unit(7, "feet")
  3989. },
  3990. {
  3991. name: "Macro",
  3992. height: math.unit(150, "feet"),
  3993. default: true
  3994. },
  3995. {
  3996. name: "Macro+",
  3997. height: math.unit(300, "feet")
  3998. },
  3999. ]
  4000. ))
  4001. characterMakers.push(() => makeCharacter(
  4002. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4003. {
  4004. front: {
  4005. height: math.unit(2, "meters"),
  4006. weight: math.unit(76, "kg"),
  4007. name: "Front",
  4008. image: {
  4009. source: "./media/characters/draylen/front.svg"
  4010. }
  4011. }
  4012. },
  4013. [
  4014. {
  4015. name: "Macro",
  4016. height: math.unit(150, "feet"),
  4017. default: true
  4018. }
  4019. ]
  4020. ))
  4021. characterMakers.push(() => makeCharacter(
  4022. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4023. {
  4024. front: {
  4025. height: math.unit(7 + 9 / 12, "feet"),
  4026. weight: math.unit(379, "lbs"),
  4027. name: "Front",
  4028. image: {
  4029. source: "./media/characters/chez/front.svg"
  4030. }
  4031. },
  4032. side: {
  4033. height: math.unit(7 + 9 / 12, "feet"),
  4034. weight: math.unit(379, "lbs"),
  4035. name: "Side",
  4036. image: {
  4037. source: "./media/characters/chez/side.svg"
  4038. }
  4039. }
  4040. },
  4041. [
  4042. {
  4043. name: "Normal",
  4044. height: math.unit(7 + 9 / 12, "feet"),
  4045. default: true
  4046. },
  4047. {
  4048. name: "God King",
  4049. height: math.unit(9750000, "meters")
  4050. }
  4051. ]
  4052. ))
  4053. characterMakers.push(() => makeCharacter(
  4054. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4055. {
  4056. front: {
  4057. height: math.unit(6, "feet"),
  4058. weight: math.unit(275, "lbs"),
  4059. name: "Front",
  4060. image: {
  4061. source: "./media/characters/kaylum/front.svg",
  4062. bottom: 0.01,
  4063. extra: 1166 / 1031
  4064. }
  4065. },
  4066. frontWingless: {
  4067. height: math.unit(6, "feet"),
  4068. weight: math.unit(275, "lbs"),
  4069. name: "Front (Wingless)",
  4070. image: {
  4071. source: "./media/characters/kaylum/front-wingless.svg",
  4072. bottom: 0.01,
  4073. extra: 1117 / 1031
  4074. }
  4075. }
  4076. },
  4077. [
  4078. {
  4079. name: "Normal",
  4080. height: math.unit(3.05, "meters")
  4081. },
  4082. {
  4083. name: "Master",
  4084. height: math.unit(5.5, "meters")
  4085. },
  4086. {
  4087. name: "Rampage",
  4088. height: math.unit(19, "meters")
  4089. },
  4090. {
  4091. name: "Macro Lite",
  4092. height: math.unit(37, "meters")
  4093. },
  4094. {
  4095. name: "Hyper Predator",
  4096. height: math.unit(61, "meters")
  4097. },
  4098. {
  4099. name: "Macro",
  4100. height: math.unit(138, "meters"),
  4101. default: true
  4102. }
  4103. ]
  4104. ))
  4105. characterMakers.push(() => makeCharacter(
  4106. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4107. {
  4108. front: {
  4109. height: math.unit(6, "feet"),
  4110. weight: math.unit(150, "lbs"),
  4111. name: "Front",
  4112. image: {
  4113. source: "./media/characters/geta/front.svg"
  4114. }
  4115. }
  4116. },
  4117. [
  4118. {
  4119. name: "Micro",
  4120. height: math.unit(3, "inches"),
  4121. default: true
  4122. },
  4123. {
  4124. name: "Normal",
  4125. height: math.unit(5 + 5 / 12, "feet")
  4126. }
  4127. ]
  4128. ))
  4129. characterMakers.push(() => makeCharacter(
  4130. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4131. {
  4132. front: {
  4133. height: math.unit(6, "feet"),
  4134. weight: math.unit(300, "lbs"),
  4135. name: "Front",
  4136. image: {
  4137. source: "./media/characters/tyrnn/front.svg"
  4138. }
  4139. }
  4140. },
  4141. [
  4142. {
  4143. name: "Main Height",
  4144. height: math.unit(355, "feet"),
  4145. default: true
  4146. },
  4147. {
  4148. name: "Fave. Height",
  4149. height: math.unit(2400, "feet")
  4150. }
  4151. ]
  4152. ))
  4153. characterMakers.push(() => makeCharacter(
  4154. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4155. {
  4156. front: {
  4157. height: math.unit(6, "feet"),
  4158. weight: math.unit(300, "lbs"),
  4159. name: "Front",
  4160. image: {
  4161. source: "./media/characters/appledectomy/front.svg"
  4162. }
  4163. }
  4164. },
  4165. [
  4166. {
  4167. name: "Macro",
  4168. height: math.unit(2500, "feet")
  4169. },
  4170. {
  4171. name: "Megamacro",
  4172. height: math.unit(50, "miles"),
  4173. default: true
  4174. },
  4175. {
  4176. name: "Gigamacro",
  4177. height: math.unit(5000, "miles")
  4178. },
  4179. {
  4180. name: "Teramacro",
  4181. height: math.unit(250000, "miles")
  4182. },
  4183. ]
  4184. ))
  4185. characterMakers.push(() => makeCharacter(
  4186. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4187. {
  4188. front: {
  4189. height: math.unit(6, "feet"),
  4190. weight: math.unit(200, "lbs"),
  4191. name: "Front",
  4192. image: {
  4193. source: "./media/characters/vulpes/front.svg",
  4194. extra: 573 / 543,
  4195. bottom: 0.033
  4196. }
  4197. },
  4198. side: {
  4199. height: math.unit(6, "feet"),
  4200. weight: math.unit(200, "lbs"),
  4201. name: "Side",
  4202. image: {
  4203. source: "./media/characters/vulpes/side.svg",
  4204. extra: 577 / 549,
  4205. bottom: 11 / 588
  4206. }
  4207. },
  4208. back: {
  4209. height: math.unit(6, "feet"),
  4210. weight: math.unit(200, "lbs"),
  4211. name: "Back",
  4212. image: {
  4213. source: "./media/characters/vulpes/back.svg",
  4214. extra: 573 / 549,
  4215. bottom: 20 / 593
  4216. }
  4217. },
  4218. feet: {
  4219. height: math.unit(1.276, "feet"),
  4220. name: "Feet",
  4221. image: {
  4222. source: "./media/characters/vulpes/feet.svg"
  4223. }
  4224. },
  4225. maw: {
  4226. height: math.unit(1.18, "feet"),
  4227. name: "Maw",
  4228. image: {
  4229. source: "./media/characters/vulpes/maw.svg"
  4230. }
  4231. },
  4232. },
  4233. [
  4234. {
  4235. name: "Micro",
  4236. height: math.unit(2, "inches")
  4237. },
  4238. {
  4239. name: "Normal",
  4240. height: math.unit(6.3, "feet")
  4241. },
  4242. {
  4243. name: "Macro",
  4244. height: math.unit(850, "feet")
  4245. },
  4246. {
  4247. name: "Megamacro",
  4248. height: math.unit(7500, "feet"),
  4249. default: true
  4250. },
  4251. {
  4252. name: "Gigamacro",
  4253. height: math.unit(570000, "miles")
  4254. }
  4255. ]
  4256. ))
  4257. characterMakers.push(() => makeCharacter(
  4258. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4259. {
  4260. front: {
  4261. height: math.unit(6, "feet"),
  4262. weight: math.unit(210, "lbs"),
  4263. name: "Front",
  4264. image: {
  4265. source: "./media/characters/rain-fallen/front.svg"
  4266. }
  4267. },
  4268. side: {
  4269. height: math.unit(6, "feet"),
  4270. weight: math.unit(210, "lbs"),
  4271. name: "Side",
  4272. image: {
  4273. source: "./media/characters/rain-fallen/side.svg"
  4274. }
  4275. },
  4276. back: {
  4277. height: math.unit(6, "feet"),
  4278. weight: math.unit(210, "lbs"),
  4279. name: "Back",
  4280. image: {
  4281. source: "./media/characters/rain-fallen/back.svg"
  4282. }
  4283. },
  4284. feral: {
  4285. height: math.unit(9, "feet"),
  4286. weight: math.unit(700, "lbs"),
  4287. name: "Feral",
  4288. image: {
  4289. source: "./media/characters/rain-fallen/feral.svg"
  4290. }
  4291. },
  4292. },
  4293. [
  4294. {
  4295. name: "Normal",
  4296. height: math.unit(5, "meter")
  4297. },
  4298. {
  4299. name: "Macro",
  4300. height: math.unit(150, "meter"),
  4301. default: true
  4302. },
  4303. {
  4304. name: "Megamacro",
  4305. height: math.unit(278e6, "meter")
  4306. },
  4307. {
  4308. name: "Gigamacro",
  4309. height: math.unit(2e9, "meter")
  4310. },
  4311. {
  4312. name: "Teramacro",
  4313. height: math.unit(8e12, "meter")
  4314. },
  4315. {
  4316. name: "Devourer",
  4317. height: math.unit(14, "zettameters")
  4318. },
  4319. {
  4320. name: "Scarlet King",
  4321. height: math.unit(18, "yottameters")
  4322. },
  4323. {
  4324. name: "Void",
  4325. height: math.unit(6.66e66, "yottameters")
  4326. }
  4327. ]
  4328. ))
  4329. characterMakers.push(() => makeCharacter(
  4330. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4331. {
  4332. standing: {
  4333. height: math.unit(6, "feet"),
  4334. weight: math.unit(180, "lbs"),
  4335. name: "Standing",
  4336. image: {
  4337. source: "./media/characters/zaakira/standing.svg"
  4338. }
  4339. },
  4340. laying: {
  4341. height: math.unit(3, "feet"),
  4342. weight: math.unit(180, "lbs"),
  4343. name: "Laying",
  4344. image: {
  4345. source: "./media/characters/zaakira/laying.svg"
  4346. }
  4347. },
  4348. },
  4349. [
  4350. {
  4351. name: "Normal",
  4352. height: math.unit(12, "feet")
  4353. },
  4354. {
  4355. name: "Macro",
  4356. height: math.unit(279, "feet"),
  4357. default: true
  4358. }
  4359. ]
  4360. ))
  4361. characterMakers.push(() => makeCharacter(
  4362. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4363. {
  4364. femSfw: {
  4365. height: math.unit(8, "feet"),
  4366. weight: math.unit(350, "lb"),
  4367. name: "Fem",
  4368. image: {
  4369. source: "./media/characters/sigvald/fem-sfw.svg",
  4370. extra: 182 / 164,
  4371. bottom: 8.7 / 190.5
  4372. }
  4373. },
  4374. femNsfw: {
  4375. height: math.unit(8, "feet"),
  4376. weight: math.unit(350, "lb"),
  4377. name: "Fem (NSFW)",
  4378. image: {
  4379. source: "./media/characters/sigvald/fem-nsfw.svg",
  4380. extra: 182 / 164,
  4381. bottom: 8.7 / 190.5
  4382. }
  4383. },
  4384. maleNsfw: {
  4385. height: math.unit(8, "feet"),
  4386. weight: math.unit(350, "lb"),
  4387. name: "Male (NSFW)",
  4388. image: {
  4389. source: "./media/characters/sigvald/male-nsfw.svg",
  4390. extra: 182 / 164,
  4391. bottom: 8.7 / 190.5
  4392. }
  4393. },
  4394. hermNsfw: {
  4395. height: math.unit(8, "feet"),
  4396. weight: math.unit(350, "lb"),
  4397. name: "Herm (NSFW)",
  4398. image: {
  4399. source: "./media/characters/sigvald/herm-nsfw.svg",
  4400. extra: 182 / 164,
  4401. bottom: 8.7 / 190.5
  4402. }
  4403. },
  4404. dick: {
  4405. height: math.unit(2.36, "feet"),
  4406. name: "Dick",
  4407. image: {
  4408. source: "./media/characters/sigvald/dick.svg"
  4409. }
  4410. },
  4411. eye: {
  4412. height: math.unit(0.31, "feet"),
  4413. name: "Eye",
  4414. image: {
  4415. source: "./media/characters/sigvald/eye.svg"
  4416. }
  4417. },
  4418. mouth: {
  4419. height: math.unit(0.92, "feet"),
  4420. name: "Mouth",
  4421. image: {
  4422. source: "./media/characters/sigvald/mouth.svg"
  4423. }
  4424. },
  4425. paws: {
  4426. height: math.unit(2.2, "feet"),
  4427. name: "Paws",
  4428. image: {
  4429. source: "./media/characters/sigvald/paws.svg"
  4430. }
  4431. }
  4432. },
  4433. [
  4434. {
  4435. name: "Normal",
  4436. height: math.unit(8, "feet")
  4437. },
  4438. {
  4439. name: "Large",
  4440. height: math.unit(12, "feet")
  4441. },
  4442. {
  4443. name: "Larger",
  4444. height: math.unit(20, "feet")
  4445. },
  4446. {
  4447. name: "Macro",
  4448. height: math.unit(150, "feet")
  4449. },
  4450. {
  4451. name: "Macro+",
  4452. height: math.unit(200, "feet"),
  4453. default: true
  4454. },
  4455. ]
  4456. ))
  4457. characterMakers.push(() => makeCharacter(
  4458. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4459. {
  4460. side: {
  4461. height: math.unit(12, "feet"),
  4462. weight: math.unit(2000, "kg"),
  4463. name: "Side",
  4464. image: {
  4465. source: "./media/characters/scott/side.svg",
  4466. extra: 754 / 724,
  4467. bottom: 0.069
  4468. }
  4469. },
  4470. upright: {
  4471. height: math.unit(12, "feet"),
  4472. weight: math.unit(2000, "kg"),
  4473. name: "Upright",
  4474. image: {
  4475. source: "./media/characters/scott/upright.svg",
  4476. extra: 3881 / 3722,
  4477. bottom: 0.05
  4478. }
  4479. },
  4480. },
  4481. [
  4482. {
  4483. name: "Normal",
  4484. height: math.unit(12, "feet"),
  4485. default: true
  4486. },
  4487. ]
  4488. ))
  4489. characterMakers.push(() => makeCharacter(
  4490. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4491. {
  4492. side: {
  4493. height: math.unit(8, "meters"),
  4494. weight: math.unit(84755, "lbs"),
  4495. name: "Side",
  4496. image: {
  4497. source: "./media/characters/tobias/side.svg",
  4498. extra: 1474 / 1096,
  4499. bottom: 38.9 / 1513.1235
  4500. }
  4501. },
  4502. },
  4503. [
  4504. {
  4505. name: "Normal",
  4506. height: math.unit(8, "meters"),
  4507. default: true
  4508. },
  4509. ]
  4510. ))
  4511. characterMakers.push(() => makeCharacter(
  4512. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4513. {
  4514. front: {
  4515. height: math.unit(5.5, "feet"),
  4516. weight: math.unit(400, "lbs"),
  4517. name: "Front",
  4518. image: {
  4519. source: "./media/characters/kieran/front.svg",
  4520. extra: 2694 / 2364,
  4521. bottom: 217 / 2908
  4522. }
  4523. },
  4524. side: {
  4525. height: math.unit(5.5, "feet"),
  4526. weight: math.unit(400, "lbs"),
  4527. name: "Side",
  4528. image: {
  4529. source: "./media/characters/kieran/side.svg",
  4530. extra: 875 / 777,
  4531. bottom: 84.6 / 959
  4532. }
  4533. },
  4534. },
  4535. [
  4536. {
  4537. name: "Normal",
  4538. height: math.unit(5.5, "feet"),
  4539. default: true
  4540. },
  4541. ]
  4542. ))
  4543. characterMakers.push(() => makeCharacter(
  4544. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4545. {
  4546. side: {
  4547. height: math.unit(2, "meters"),
  4548. weight: math.unit(70, "kg"),
  4549. name: "Side",
  4550. image: {
  4551. source: "./media/characters/sanya/side.svg",
  4552. bottom: 0.02,
  4553. extra: 1.02
  4554. }
  4555. },
  4556. },
  4557. [
  4558. {
  4559. name: "Small",
  4560. height: math.unit(2, "meters")
  4561. },
  4562. {
  4563. name: "Normal",
  4564. height: math.unit(3, "meters")
  4565. },
  4566. {
  4567. name: "Macro",
  4568. height: math.unit(16, "meters"),
  4569. default: true
  4570. },
  4571. ]
  4572. ))
  4573. characterMakers.push(() => makeCharacter(
  4574. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4575. {
  4576. front: {
  4577. height: math.unit(2, "meters"),
  4578. weight: math.unit(120, "kg"),
  4579. name: "Front",
  4580. image: {
  4581. source: "./media/characters/miranda/front.svg",
  4582. extra: 195 / 185,
  4583. bottom: 10.9 / 206.5
  4584. }
  4585. },
  4586. back: {
  4587. height: math.unit(2, "meters"),
  4588. weight: math.unit(120, "kg"),
  4589. name: "Back",
  4590. image: {
  4591. source: "./media/characters/miranda/back.svg",
  4592. extra: 201 / 193,
  4593. bottom: 2.3 / 203.7
  4594. }
  4595. },
  4596. },
  4597. [
  4598. {
  4599. name: "Normal",
  4600. height: math.unit(10, "feet"),
  4601. default: true
  4602. }
  4603. ]
  4604. ))
  4605. characterMakers.push(() => makeCharacter(
  4606. { name: "James", species: ["deer"], tags: ["anthro"] },
  4607. {
  4608. side: {
  4609. height: math.unit(2, "meters"),
  4610. weight: math.unit(100, "kg"),
  4611. name: "Front",
  4612. image: {
  4613. source: "./media/characters/james/front.svg",
  4614. extra: 10 / 8.5
  4615. }
  4616. },
  4617. },
  4618. [
  4619. {
  4620. name: "Normal",
  4621. height: math.unit(8.5, "feet"),
  4622. default: true
  4623. }
  4624. ]
  4625. ))
  4626. characterMakers.push(() => makeCharacter(
  4627. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4628. {
  4629. side: {
  4630. height: math.unit(9.5, "feet"),
  4631. weight: math.unit(2500, "lbs"),
  4632. name: "Side",
  4633. image: {
  4634. source: "./media/characters/heather/side.svg"
  4635. }
  4636. },
  4637. },
  4638. [
  4639. {
  4640. name: "Normal",
  4641. height: math.unit(9.5, "feet"),
  4642. default: true
  4643. }
  4644. ]
  4645. ))
  4646. characterMakers.push(() => makeCharacter(
  4647. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4648. {
  4649. side: {
  4650. height: math.unit(6.5, "feet"),
  4651. weight: math.unit(400, "lbs"),
  4652. name: "Side",
  4653. image: {
  4654. source: "./media/characters/lukas/side.svg",
  4655. extra: 7.25 / 6.5
  4656. }
  4657. },
  4658. },
  4659. [
  4660. {
  4661. name: "Normal",
  4662. height: math.unit(6.5, "feet"),
  4663. default: true
  4664. }
  4665. ]
  4666. ))
  4667. characterMakers.push(() => makeCharacter(
  4668. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4669. {
  4670. side: {
  4671. height: math.unit(5, "feet"),
  4672. weight: math.unit(3000, "lbs"),
  4673. name: "Side",
  4674. image: {
  4675. source: "./media/characters/louise/side.svg"
  4676. }
  4677. },
  4678. },
  4679. [
  4680. {
  4681. name: "Normal",
  4682. height: math.unit(5, "feet"),
  4683. default: true
  4684. }
  4685. ]
  4686. ))
  4687. characterMakers.push(() => makeCharacter(
  4688. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4689. {
  4690. side: {
  4691. height: math.unit(6, "feet"),
  4692. weight: math.unit(150, "lbs"),
  4693. name: "Side",
  4694. image: {
  4695. source: "./media/characters/ramona/side.svg"
  4696. }
  4697. },
  4698. },
  4699. [
  4700. {
  4701. name: "Normal",
  4702. height: math.unit(5.3, "meters"),
  4703. default: true
  4704. },
  4705. {
  4706. name: "Macro",
  4707. height: math.unit(20, "stories")
  4708. },
  4709. {
  4710. name: "Macro+",
  4711. height: math.unit(50, "stories")
  4712. },
  4713. ]
  4714. ))
  4715. characterMakers.push(() => makeCharacter(
  4716. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4717. {
  4718. standing: {
  4719. height: math.unit(5.75, "feet"),
  4720. weight: math.unit(160, "lbs"),
  4721. name: "Standing",
  4722. image: {
  4723. source: "./media/characters/deerpuff/standing.svg",
  4724. extra: 682 / 624
  4725. }
  4726. },
  4727. sitting: {
  4728. height: math.unit(5.75 / 1.79, "feet"),
  4729. weight: math.unit(160, "lbs"),
  4730. name: "Sitting",
  4731. image: {
  4732. source: "./media/characters/deerpuff/sitting.svg",
  4733. bottom: 44 / 400,
  4734. extra: 1
  4735. }
  4736. },
  4737. taurLaying: {
  4738. height: math.unit(6, "feet"),
  4739. weight: math.unit(400, "lbs"),
  4740. name: "Taur (Laying)",
  4741. image: {
  4742. source: "./media/characters/deerpuff/taur-laying.svg"
  4743. }
  4744. },
  4745. },
  4746. [
  4747. {
  4748. name: "Puffball",
  4749. height: math.unit(6, "inches")
  4750. },
  4751. {
  4752. name: "Normalpuff",
  4753. height: math.unit(5.75, "feet")
  4754. },
  4755. {
  4756. name: "Macropuff",
  4757. height: math.unit(1500, "feet"),
  4758. default: true
  4759. },
  4760. {
  4761. name: "Megapuff",
  4762. height: math.unit(500, "miles")
  4763. },
  4764. {
  4765. name: "Gigapuff",
  4766. height: math.unit(250000, "miles")
  4767. },
  4768. {
  4769. name: "Omegapuff",
  4770. height: math.unit(1000, "lightyears")
  4771. },
  4772. ]
  4773. ))
  4774. characterMakers.push(() => makeCharacter(
  4775. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4776. {
  4777. stomping: {
  4778. height: math.unit(6, "feet"),
  4779. weight: math.unit(170, "lbs"),
  4780. name: "Stomping",
  4781. image: {
  4782. source: "./media/characters/vivian/stomping.svg"
  4783. }
  4784. },
  4785. sitting: {
  4786. height: math.unit(6 / 1.75, "feet"),
  4787. weight: math.unit(170, "lbs"),
  4788. name: "Sitting",
  4789. image: {
  4790. source: "./media/characters/vivian/sitting.svg",
  4791. bottom: 1 / 6.4,
  4792. extra: 1,
  4793. }
  4794. },
  4795. },
  4796. [
  4797. {
  4798. name: "Normal",
  4799. height: math.unit(7, "feet"),
  4800. default: true
  4801. },
  4802. {
  4803. name: "Macro",
  4804. height: math.unit(10, "stories")
  4805. },
  4806. {
  4807. name: "Macro+",
  4808. height: math.unit(30, "stories")
  4809. },
  4810. {
  4811. name: "Megamacro",
  4812. height: math.unit(10, "miles")
  4813. },
  4814. {
  4815. name: "Megamacro+",
  4816. height: math.unit(2750000, "meters")
  4817. },
  4818. ]
  4819. ))
  4820. characterMakers.push(() => makeCharacter(
  4821. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4822. {
  4823. front: {
  4824. height: math.unit(6, "feet"),
  4825. weight: math.unit(160, "lbs"),
  4826. name: "Front",
  4827. image: {
  4828. source: "./media/characters/prince/front.svg",
  4829. extra: 3400 / 3000
  4830. }
  4831. },
  4832. jumping: {
  4833. height: math.unit(6, "feet"),
  4834. weight: math.unit(160, "lbs"),
  4835. name: "Jumping",
  4836. image: {
  4837. source: "./media/characters/prince/jump.svg",
  4838. extra: 2555 / 2134
  4839. }
  4840. },
  4841. },
  4842. [
  4843. {
  4844. name: "Normal",
  4845. height: math.unit(7.75, "feet"),
  4846. default: true
  4847. },
  4848. {
  4849. name: "Not cute",
  4850. height: math.unit(17, "feet")
  4851. },
  4852. {
  4853. name: "I said NOT",
  4854. height: math.unit(91, "feet")
  4855. },
  4856. {
  4857. name: "Please stop",
  4858. height: math.unit(560, "feet")
  4859. },
  4860. {
  4861. name: "What have you done",
  4862. height: math.unit(2200, "feet")
  4863. },
  4864. {
  4865. name: "Deer God",
  4866. height: math.unit(3.6, "miles")
  4867. },
  4868. ]
  4869. ))
  4870. characterMakers.push(() => makeCharacter(
  4871. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4872. {
  4873. standing: {
  4874. height: math.unit(6, "feet"),
  4875. weight: math.unit(300, "lbs"),
  4876. name: "Standing",
  4877. image: {
  4878. source: "./media/characters/psymon/standing.svg",
  4879. extra: 1888 / 1810,
  4880. bottom: 0.05
  4881. }
  4882. },
  4883. slithering: {
  4884. height: math.unit(6, "feet"),
  4885. weight: math.unit(300, "lbs"),
  4886. name: "Slithering",
  4887. image: {
  4888. source: "./media/characters/psymon/slithering.svg",
  4889. extra: 1330 / 1224
  4890. }
  4891. },
  4892. slitheringAlt: {
  4893. height: math.unit(6, "feet"),
  4894. weight: math.unit(300, "lbs"),
  4895. name: "Slithering (Alt)",
  4896. image: {
  4897. source: "./media/characters/psymon/slithering-alt.svg",
  4898. extra: 1330 / 1224
  4899. }
  4900. },
  4901. },
  4902. [
  4903. {
  4904. name: "Normal",
  4905. height: math.unit(11.25, "feet"),
  4906. default: true
  4907. },
  4908. {
  4909. name: "Large",
  4910. height: math.unit(27, "feet")
  4911. },
  4912. {
  4913. name: "Giant",
  4914. height: math.unit(87, "feet")
  4915. },
  4916. {
  4917. name: "Macro",
  4918. height: math.unit(365, "feet")
  4919. },
  4920. {
  4921. name: "Megamacro",
  4922. height: math.unit(3, "miles")
  4923. },
  4924. {
  4925. name: "World Serpent",
  4926. height: math.unit(8000, "miles")
  4927. },
  4928. ]
  4929. ))
  4930. characterMakers.push(() => makeCharacter(
  4931. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4932. {
  4933. front: {
  4934. height: math.unit(6, "feet"),
  4935. weight: math.unit(180, "lbs"),
  4936. name: "Front",
  4937. image: {
  4938. source: "./media/characters/daimos/front.svg",
  4939. extra: 4160 / 3897,
  4940. bottom: 0.021
  4941. }
  4942. }
  4943. },
  4944. [
  4945. {
  4946. name: "Normal",
  4947. height: math.unit(8, "feet"),
  4948. default: true
  4949. },
  4950. {
  4951. name: "Big Dog",
  4952. height: math.unit(22, "feet")
  4953. },
  4954. {
  4955. name: "Macro",
  4956. height: math.unit(127, "feet")
  4957. },
  4958. {
  4959. name: "Megamacro",
  4960. height: math.unit(3600, "feet")
  4961. },
  4962. ]
  4963. ))
  4964. characterMakers.push(() => makeCharacter(
  4965. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4966. {
  4967. side: {
  4968. height: math.unit(6, "feet"),
  4969. weight: math.unit(180, "lbs"),
  4970. name: "Side",
  4971. image: {
  4972. source: "./media/characters/blake/side.svg",
  4973. extra: 1212 / 1120,
  4974. bottom: 0.05
  4975. }
  4976. },
  4977. crouched: {
  4978. height: math.unit(6 * 0.57, "feet"),
  4979. weight: math.unit(180, "lbs"),
  4980. name: "Crouched",
  4981. image: {
  4982. source: "./media/characters/blake/crouched.svg",
  4983. extra: 840 / 587,
  4984. bottom: 0.04
  4985. }
  4986. },
  4987. bent: {
  4988. height: math.unit(6 * 0.75, "feet"),
  4989. weight: math.unit(180, "lbs"),
  4990. name: "Bent",
  4991. image: {
  4992. source: "./media/characters/blake/bent.svg",
  4993. extra: 592 / 544,
  4994. bottom: 0.035
  4995. }
  4996. },
  4997. },
  4998. [
  4999. {
  5000. name: "Normal",
  5001. height: math.unit(8 + 1 / 6, "feet"),
  5002. default: true
  5003. },
  5004. {
  5005. name: "Big Backside",
  5006. height: math.unit(37, "feet")
  5007. },
  5008. {
  5009. name: "Subway Shredder",
  5010. height: math.unit(72, "feet")
  5011. },
  5012. {
  5013. name: "City Carver",
  5014. height: math.unit(1675, "feet")
  5015. },
  5016. {
  5017. name: "Tectonic Tweaker",
  5018. height: math.unit(2300, "miles")
  5019. },
  5020. ]
  5021. ))
  5022. characterMakers.push(() => makeCharacter(
  5023. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5024. {
  5025. front: {
  5026. height: math.unit(6, "feet"),
  5027. weight: math.unit(180, "lbs"),
  5028. name: "Front",
  5029. image: {
  5030. source: "./media/characters/guisetto/front.svg",
  5031. extra: 856 / 817,
  5032. bottom: 0.06
  5033. }
  5034. },
  5035. airborne: {
  5036. height: math.unit(6, "feet"),
  5037. weight: math.unit(180, "lbs"),
  5038. name: "Airborne",
  5039. image: {
  5040. source: "./media/characters/guisetto/airborne.svg",
  5041. extra: 584 / 525
  5042. }
  5043. },
  5044. },
  5045. [
  5046. {
  5047. name: "Normal",
  5048. height: math.unit(10 + 11 / 12, "feet"),
  5049. default: true
  5050. },
  5051. {
  5052. name: "Large",
  5053. height: math.unit(35, "feet")
  5054. },
  5055. {
  5056. name: "Macro",
  5057. height: math.unit(475, "feet")
  5058. },
  5059. ]
  5060. ))
  5061. characterMakers.push(() => makeCharacter(
  5062. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5063. {
  5064. front: {
  5065. height: math.unit(6, "feet"),
  5066. weight: math.unit(180, "lbs"),
  5067. name: "Front",
  5068. image: {
  5069. source: "./media/characters/luxor/front.svg",
  5070. extra: 2940 / 2152
  5071. }
  5072. },
  5073. back: {
  5074. height: math.unit(6, "feet"),
  5075. weight: math.unit(180, "lbs"),
  5076. name: "Back",
  5077. image: {
  5078. source: "./media/characters/luxor/back.svg",
  5079. extra: 1083 / 960
  5080. }
  5081. },
  5082. },
  5083. [
  5084. {
  5085. name: "Normal",
  5086. height: math.unit(5 + 5 / 6, "feet"),
  5087. default: true
  5088. },
  5089. {
  5090. name: "Lamp",
  5091. height: math.unit(50, "feet")
  5092. },
  5093. {
  5094. name: "Lämp",
  5095. height: math.unit(300, "feet")
  5096. },
  5097. {
  5098. name: "The sun is a lamp",
  5099. height: math.unit(250000, "miles")
  5100. },
  5101. ]
  5102. ))
  5103. characterMakers.push(() => makeCharacter(
  5104. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5105. {
  5106. front: {
  5107. height: math.unit(6, "feet"),
  5108. weight: math.unit(50, "lbs"),
  5109. name: "Front",
  5110. image: {
  5111. source: "./media/characters/huoyan/front.svg"
  5112. }
  5113. },
  5114. side: {
  5115. height: math.unit(6, "feet"),
  5116. weight: math.unit(180, "lbs"),
  5117. name: "Side",
  5118. image: {
  5119. source: "./media/characters/huoyan/side.svg"
  5120. }
  5121. },
  5122. },
  5123. [
  5124. {
  5125. name: "Chef",
  5126. height: math.unit(9, "feet")
  5127. },
  5128. {
  5129. name: "Normal",
  5130. height: math.unit(65, "feet"),
  5131. default: true
  5132. },
  5133. {
  5134. name: "Macro",
  5135. height: math.unit(780, "feet")
  5136. },
  5137. {
  5138. name: "Flaming Mountain",
  5139. height: math.unit(4.8, "miles")
  5140. },
  5141. {
  5142. name: "Celestial",
  5143. height: math.unit(765000, "miles")
  5144. },
  5145. ]
  5146. ))
  5147. characterMakers.push(() => makeCharacter(
  5148. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5149. {
  5150. front: {
  5151. height: math.unit(5 + 3 / 4, "feet"),
  5152. weight: math.unit(120, "lbs"),
  5153. name: "Front",
  5154. image: {
  5155. source: "./media/characters/tails/front.svg"
  5156. }
  5157. }
  5158. },
  5159. [
  5160. {
  5161. name: "Normal",
  5162. height: math.unit(5 + 3 / 4, "feet"),
  5163. default: true
  5164. }
  5165. ]
  5166. ))
  5167. characterMakers.push(() => makeCharacter(
  5168. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5169. {
  5170. front: {
  5171. height: math.unit(4, "feet"),
  5172. weight: math.unit(50, "lbs"),
  5173. name: "Front",
  5174. image: {
  5175. source: "./media/characters/rainy/front.svg"
  5176. }
  5177. }
  5178. },
  5179. [
  5180. {
  5181. name: "Macro",
  5182. height: math.unit(800, "feet"),
  5183. default: true
  5184. }
  5185. ]
  5186. ))
  5187. characterMakers.push(() => makeCharacter(
  5188. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5189. {
  5190. front: {
  5191. height: math.unit(6, "feet"),
  5192. weight: math.unit(150, "lbs"),
  5193. name: "Front",
  5194. image: {
  5195. source: "./media/characters/rainier/front.svg"
  5196. }
  5197. }
  5198. },
  5199. [
  5200. {
  5201. name: "Micro",
  5202. height: math.unit(2, "mm"),
  5203. default: true
  5204. }
  5205. ]
  5206. ))
  5207. characterMakers.push(() => makeCharacter(
  5208. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5209. {
  5210. front: {
  5211. height: math.unit(6, "feet"),
  5212. weight: math.unit(180, "lbs"),
  5213. name: "Front",
  5214. image: {
  5215. source: "./media/characters/andy/front.svg"
  5216. }
  5217. }
  5218. },
  5219. [
  5220. {
  5221. name: "Normal",
  5222. height: math.unit(8, "feet"),
  5223. default: true
  5224. },
  5225. {
  5226. name: "Macro",
  5227. height: math.unit(1000, "feet")
  5228. },
  5229. {
  5230. name: "Megamacro",
  5231. height: math.unit(5, "miles")
  5232. },
  5233. {
  5234. name: "Gigamacro",
  5235. height: math.unit(5000, "miles")
  5236. },
  5237. ]
  5238. ))
  5239. characterMakers.push(() => makeCharacter(
  5240. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5241. {
  5242. front: {
  5243. height: math.unit(6, "feet"),
  5244. weight: math.unit(210, "lbs"),
  5245. name: "Front",
  5246. image: {
  5247. source: "./media/characters/cimmaron/front-sfw.svg",
  5248. extra: 701 / 676,
  5249. bottom: 0.046
  5250. }
  5251. },
  5252. back: {
  5253. height: math.unit(6, "feet"),
  5254. weight: math.unit(210, "lbs"),
  5255. name: "Back",
  5256. image: {
  5257. source: "./media/characters/cimmaron/back-sfw.svg",
  5258. extra: 701 / 676,
  5259. bottom: 0.046
  5260. }
  5261. },
  5262. frontNsfw: {
  5263. height: math.unit(6, "feet"),
  5264. weight: math.unit(210, "lbs"),
  5265. name: "Front (NSFW)",
  5266. image: {
  5267. source: "./media/characters/cimmaron/front-nsfw.svg",
  5268. extra: 701 / 676,
  5269. bottom: 0.046
  5270. }
  5271. },
  5272. backNsfw: {
  5273. height: math.unit(6, "feet"),
  5274. weight: math.unit(210, "lbs"),
  5275. name: "Back (NSFW)",
  5276. image: {
  5277. source: "./media/characters/cimmaron/back-nsfw.svg",
  5278. extra: 701 / 676,
  5279. bottom: 0.046
  5280. }
  5281. },
  5282. dick: {
  5283. height: math.unit(1.714, "feet"),
  5284. name: "Dick",
  5285. image: {
  5286. source: "./media/characters/cimmaron/dick.svg"
  5287. }
  5288. },
  5289. },
  5290. [
  5291. {
  5292. name: "Normal",
  5293. height: math.unit(6, "feet"),
  5294. default: true
  5295. },
  5296. {
  5297. name: "Macro Mayor",
  5298. height: math.unit(350, "meters")
  5299. },
  5300. ]
  5301. ))
  5302. characterMakers.push(() => makeCharacter(
  5303. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5304. {
  5305. front: {
  5306. height: math.unit(6, "feet"),
  5307. weight: math.unit(200, "lbs"),
  5308. name: "Front",
  5309. image: {
  5310. source: "./media/characters/akari/front.svg",
  5311. extra: 962 / 901,
  5312. bottom: 0.04
  5313. }
  5314. }
  5315. },
  5316. [
  5317. {
  5318. name: "Micro",
  5319. height: math.unit(5, "inches"),
  5320. default: true
  5321. },
  5322. {
  5323. name: "Normal",
  5324. height: math.unit(7, "feet")
  5325. },
  5326. ]
  5327. ))
  5328. characterMakers.push(() => makeCharacter(
  5329. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5330. {
  5331. front: {
  5332. height: math.unit(6, "feet"),
  5333. weight: math.unit(140, "lbs"),
  5334. name: "Front",
  5335. image: {
  5336. source: "./media/characters/cynosura/front.svg",
  5337. extra: 896 / 847
  5338. }
  5339. },
  5340. back: {
  5341. height: math.unit(6, "feet"),
  5342. weight: math.unit(140, "lbs"),
  5343. name: "Back",
  5344. image: {
  5345. source: "./media/characters/cynosura/back.svg",
  5346. extra: 1365 / 1250
  5347. }
  5348. },
  5349. },
  5350. [
  5351. {
  5352. name: "Micro",
  5353. height: math.unit(4, "inches")
  5354. },
  5355. {
  5356. name: "Normal",
  5357. height: math.unit(5.75, "feet"),
  5358. default: true
  5359. },
  5360. {
  5361. name: "Tall",
  5362. height: math.unit(10, "feet")
  5363. },
  5364. {
  5365. name: "Big",
  5366. height: math.unit(20, "feet")
  5367. },
  5368. {
  5369. name: "Macro",
  5370. height: math.unit(50, "feet")
  5371. },
  5372. ]
  5373. ))
  5374. characterMakers.push(() => makeCharacter(
  5375. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5376. {
  5377. front: {
  5378. height: math.unit(6, "feet"),
  5379. weight: math.unit(170, "lbs"),
  5380. name: "Front",
  5381. image: {
  5382. source: "./media/characters/gin/front.svg",
  5383. extra: 1.053,
  5384. bottom: 0.025
  5385. }
  5386. },
  5387. foot: {
  5388. height: math.unit(6 / 4.25, "feet"),
  5389. name: "Foot",
  5390. image: {
  5391. source: "./media/characters/gin/foot.svg"
  5392. }
  5393. },
  5394. sole: {
  5395. height: math.unit(6 / 4.40, "feet"),
  5396. name: "Sole",
  5397. image: {
  5398. source: "./media/characters/gin/sole.svg"
  5399. }
  5400. },
  5401. },
  5402. [
  5403. {
  5404. name: "Normal",
  5405. height: math.unit(13 + 2 / 12, "feet")
  5406. },
  5407. {
  5408. name: "Macro",
  5409. height: math.unit(1500, "feet")
  5410. },
  5411. {
  5412. name: "Megamacro",
  5413. height: math.unit(200, "miles"),
  5414. default: true
  5415. },
  5416. {
  5417. name: "Gigamacro",
  5418. height: math.unit(500, "megameters")
  5419. },
  5420. {
  5421. name: "Teramacro",
  5422. height: math.unit(15, "lightyears")
  5423. }
  5424. ]
  5425. ))
  5426. characterMakers.push(() => makeCharacter(
  5427. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5428. {
  5429. front: {
  5430. height: math.unit(6 + 1 / 6, "feet"),
  5431. weight: math.unit(178, "lbs"),
  5432. name: "Front",
  5433. image: {
  5434. source: "./media/characters/guy/front.svg"
  5435. }
  5436. }
  5437. },
  5438. [
  5439. {
  5440. name: "Normal",
  5441. height: math.unit(6 + 1 / 6, "feet"),
  5442. default: true
  5443. },
  5444. {
  5445. name: "Large",
  5446. height: math.unit(25 + 7 / 12, "feet")
  5447. },
  5448. {
  5449. name: "Macro",
  5450. height: math.unit(60 + 9 / 12, "feet")
  5451. },
  5452. {
  5453. name: "Macro+",
  5454. height: math.unit(246, "feet")
  5455. },
  5456. {
  5457. name: "Macro++",
  5458. height: math.unit(878, "feet")
  5459. }
  5460. ]
  5461. ))
  5462. characterMakers.push(() => makeCharacter(
  5463. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5464. {
  5465. front: {
  5466. height: math.unit(9, "feet"),
  5467. weight: math.unit(800, "lbs"),
  5468. name: "Front",
  5469. image: {
  5470. source: "./media/characters/tiberius/front.svg",
  5471. extra: 2295 / 2071
  5472. }
  5473. },
  5474. back: {
  5475. height: math.unit(9, "feet"),
  5476. weight: math.unit(800, "lbs"),
  5477. name: "Back",
  5478. image: {
  5479. source: "./media/characters/tiberius/back.svg",
  5480. extra: 2373 / 2160
  5481. }
  5482. },
  5483. },
  5484. [
  5485. {
  5486. name: "Normal",
  5487. height: math.unit(9, "feet"),
  5488. default: true
  5489. }
  5490. ]
  5491. ))
  5492. characterMakers.push(() => makeCharacter(
  5493. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5494. {
  5495. front: {
  5496. height: math.unit(6, "feet"),
  5497. weight: math.unit(600, "lbs"),
  5498. name: "Front",
  5499. image: {
  5500. source: "./media/characters/surgo/front.svg",
  5501. extra: 3591 / 2227
  5502. }
  5503. },
  5504. back: {
  5505. height: math.unit(6, "feet"),
  5506. weight: math.unit(600, "lbs"),
  5507. name: "Back",
  5508. image: {
  5509. source: "./media/characters/surgo/back.svg",
  5510. extra: 3557 / 2228
  5511. }
  5512. },
  5513. laying: {
  5514. height: math.unit(6 * 0.85, "feet"),
  5515. weight: math.unit(600, "lbs"),
  5516. name: "Laying",
  5517. image: {
  5518. source: "./media/characters/surgo/laying.svg"
  5519. }
  5520. },
  5521. },
  5522. [
  5523. {
  5524. name: "Normal",
  5525. height: math.unit(6, "feet"),
  5526. default: true
  5527. }
  5528. ]
  5529. ))
  5530. characterMakers.push(() => makeCharacter(
  5531. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5532. {
  5533. side: {
  5534. height: math.unit(6, "feet"),
  5535. weight: math.unit(150, "lbs"),
  5536. name: "Side",
  5537. image: {
  5538. source: "./media/characters/cibus/side.svg",
  5539. extra: 800 / 400
  5540. }
  5541. },
  5542. },
  5543. [
  5544. {
  5545. name: "Normal",
  5546. height: math.unit(6, "feet"),
  5547. default: true
  5548. }
  5549. ]
  5550. ))
  5551. characterMakers.push(() => makeCharacter(
  5552. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5553. {
  5554. front: {
  5555. height: math.unit(6, "feet"),
  5556. weight: math.unit(240, "lbs"),
  5557. name: "Front",
  5558. image: {
  5559. source: "./media/characters/nibbles/front.svg"
  5560. }
  5561. },
  5562. side: {
  5563. height: math.unit(6, "feet"),
  5564. weight: math.unit(240, "lbs"),
  5565. name: "Side",
  5566. image: {
  5567. source: "./media/characters/nibbles/side.svg"
  5568. }
  5569. },
  5570. },
  5571. [
  5572. {
  5573. name: "Normal",
  5574. height: math.unit(9, "feet"),
  5575. default: true
  5576. }
  5577. ]
  5578. ))
  5579. characterMakers.push(() => makeCharacter(
  5580. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5581. {
  5582. side: {
  5583. height: math.unit(5 + 1 / 6, "feet"),
  5584. weight: math.unit(130, "lbs"),
  5585. name: "Side",
  5586. image: {
  5587. source: "./media/characters/rikky/side.svg",
  5588. extra: 851 / 801
  5589. }
  5590. },
  5591. },
  5592. [
  5593. {
  5594. name: "Normal",
  5595. height: math.unit(5 + 1 / 6, "feet")
  5596. },
  5597. {
  5598. name: "Macro",
  5599. height: math.unit(152, "feet"),
  5600. default: true
  5601. },
  5602. {
  5603. name: "Megamacro",
  5604. height: math.unit(7, "miles")
  5605. }
  5606. ]
  5607. ))
  5608. characterMakers.push(() => makeCharacter(
  5609. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5610. {
  5611. side: {
  5612. height: math.unit(370, "cm"),
  5613. weight: math.unit(350, "lbs"),
  5614. name: "Side",
  5615. image: {
  5616. source: "./media/characters/malfressa/side.svg"
  5617. }
  5618. },
  5619. walking: {
  5620. height: math.unit(370, "cm"),
  5621. weight: math.unit(350, "lbs"),
  5622. name: "Walking",
  5623. image: {
  5624. source: "./media/characters/malfressa/walking.svg"
  5625. }
  5626. },
  5627. feral: {
  5628. height: math.unit(2500, "cm"),
  5629. weight: math.unit(100000, "lbs"),
  5630. name: "Feral",
  5631. image: {
  5632. source: "./media/characters/malfressa/feral.svg",
  5633. extra: 2108 / 837,
  5634. bottom: 0.02
  5635. }
  5636. },
  5637. },
  5638. [
  5639. {
  5640. name: "Normal",
  5641. height: math.unit(370, "cm")
  5642. },
  5643. {
  5644. name: "Macro",
  5645. height: math.unit(300, "meters"),
  5646. default: true
  5647. }
  5648. ]
  5649. ))
  5650. characterMakers.push(() => makeCharacter(
  5651. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5652. {
  5653. front: {
  5654. height: math.unit(6, "feet"),
  5655. weight: math.unit(60, "kg"),
  5656. name: "Front",
  5657. image: {
  5658. source: "./media/characters/jaro/front.svg"
  5659. }
  5660. },
  5661. back: {
  5662. height: math.unit(6, "feet"),
  5663. weight: math.unit(60, "kg"),
  5664. name: "Back",
  5665. image: {
  5666. source: "./media/characters/jaro/back.svg"
  5667. }
  5668. },
  5669. },
  5670. [
  5671. {
  5672. name: "Micro",
  5673. height: math.unit(7, "inches")
  5674. },
  5675. {
  5676. name: "Normal",
  5677. height: math.unit(5.5, "feet"),
  5678. default: true
  5679. },
  5680. {
  5681. name: "Minimacro",
  5682. height: math.unit(20, "feet")
  5683. },
  5684. {
  5685. name: "Macro",
  5686. height: math.unit(200, "meters")
  5687. }
  5688. ]
  5689. ))
  5690. characterMakers.push(() => makeCharacter(
  5691. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5692. {
  5693. front: {
  5694. height: math.unit(6, "feet"),
  5695. weight: math.unit(195, "lb"),
  5696. name: "Front",
  5697. image: {
  5698. source: "./media/characters/rogue/front.svg"
  5699. }
  5700. },
  5701. },
  5702. [
  5703. {
  5704. name: "Macro",
  5705. height: math.unit(90, "feet"),
  5706. default: true
  5707. },
  5708. ]
  5709. ))
  5710. characterMakers.push(() => makeCharacter(
  5711. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5712. {
  5713. front: {
  5714. height: math.unit(5 + 8 / 12, "feet"),
  5715. weight: math.unit(140, "lb"),
  5716. name: "Front",
  5717. image: {
  5718. source: "./media/characters/piper/front.svg",
  5719. extra: 3928 / 3681
  5720. }
  5721. },
  5722. },
  5723. [
  5724. {
  5725. name: "Micro",
  5726. height: math.unit(2, "inches")
  5727. },
  5728. {
  5729. name: "Normal",
  5730. height: math.unit(5 + 8 / 12, "feet")
  5731. },
  5732. {
  5733. name: "Macro",
  5734. height: math.unit(250, "feet"),
  5735. default: true
  5736. },
  5737. {
  5738. name: "Megamacro",
  5739. height: math.unit(7, "miles")
  5740. },
  5741. ]
  5742. ))
  5743. characterMakers.push(() => makeCharacter(
  5744. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5745. {
  5746. front: {
  5747. height: math.unit(6, "feet"),
  5748. weight: math.unit(220, "lb"),
  5749. name: "Front",
  5750. image: {
  5751. source: "./media/characters/gemini/front.svg"
  5752. }
  5753. },
  5754. back: {
  5755. height: math.unit(6, "feet"),
  5756. weight: math.unit(220, "lb"),
  5757. name: "Back",
  5758. image: {
  5759. source: "./media/characters/gemini/back.svg"
  5760. }
  5761. },
  5762. kneeling: {
  5763. height: math.unit(6 / 1.5, "feet"),
  5764. weight: math.unit(220, "lb"),
  5765. name: "Kneeling",
  5766. image: {
  5767. source: "./media/characters/gemini/kneeling.svg",
  5768. bottom: 0.02
  5769. }
  5770. },
  5771. },
  5772. [
  5773. {
  5774. name: "Macro",
  5775. height: math.unit(300, "meters"),
  5776. default: true
  5777. },
  5778. {
  5779. name: "Megamacro",
  5780. height: math.unit(6900, "meters")
  5781. },
  5782. ]
  5783. ))
  5784. characterMakers.push(() => makeCharacter(
  5785. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5786. {
  5787. anthro: {
  5788. height: math.unit(2.35, "meters"),
  5789. weight: math.unit(73, "kg"),
  5790. name: "Anthro",
  5791. image: {
  5792. source: "./media/characters/alicia/anthro.svg",
  5793. extra: 2571 / 2385,
  5794. bottom: 75 / 2648
  5795. }
  5796. },
  5797. paw: {
  5798. height: math.unit(1.32, "feet"),
  5799. name: "Paw",
  5800. image: {
  5801. source: "./media/characters/alicia/paw.svg"
  5802. }
  5803. },
  5804. feral: {
  5805. height: math.unit(1.69, "meters"),
  5806. weight: math.unit(73, "kg"),
  5807. name: "Feral",
  5808. image: {
  5809. source: "./media/characters/alicia/feral.svg",
  5810. extra: 2123 / 1715,
  5811. bottom: 222 / 2349
  5812. }
  5813. },
  5814. },
  5815. [
  5816. {
  5817. name: "Normal",
  5818. height: math.unit(2.35, "meters")
  5819. },
  5820. {
  5821. name: "Macro",
  5822. height: math.unit(60, "meters"),
  5823. default: true
  5824. },
  5825. {
  5826. name: "Megamacro",
  5827. height: math.unit(10000, "kilometers")
  5828. },
  5829. ]
  5830. ))
  5831. characterMakers.push(() => makeCharacter(
  5832. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5833. {
  5834. front: {
  5835. height: math.unit(7, "feet"),
  5836. weight: math.unit(250, "lbs"),
  5837. name: "Front",
  5838. image: {
  5839. source: "./media/characters/archy/front.svg"
  5840. }
  5841. }
  5842. },
  5843. [
  5844. {
  5845. name: "Micro",
  5846. height: math.unit(1, "inch")
  5847. },
  5848. {
  5849. name: "Shorty",
  5850. height: math.unit(5, "feet")
  5851. },
  5852. {
  5853. name: "Normal",
  5854. height: math.unit(7, "feet")
  5855. },
  5856. {
  5857. name: "Macro",
  5858. height: math.unit(600, "meters"),
  5859. default: true
  5860. },
  5861. {
  5862. name: "Megamacro",
  5863. height: math.unit(1, "mile")
  5864. },
  5865. ]
  5866. ))
  5867. characterMakers.push(() => makeCharacter(
  5868. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5869. {
  5870. front: {
  5871. height: math.unit(1.65, "meters"),
  5872. weight: math.unit(74, "kg"),
  5873. name: "Front",
  5874. image: {
  5875. source: "./media/characters/berri/front.svg",
  5876. extra: 857 / 837,
  5877. bottom: 18 / 877
  5878. }
  5879. },
  5880. bum: {
  5881. height: math.unit(1.46, "feet"),
  5882. name: "Bum",
  5883. image: {
  5884. source: "./media/characters/berri/bum.svg"
  5885. }
  5886. },
  5887. mouth: {
  5888. height: math.unit(0.44, "feet"),
  5889. name: "Mouth",
  5890. image: {
  5891. source: "./media/characters/berri/mouth.svg"
  5892. }
  5893. },
  5894. paw: {
  5895. height: math.unit(0.826, "feet"),
  5896. name: "Paw",
  5897. image: {
  5898. source: "./media/characters/berri/paw.svg"
  5899. }
  5900. },
  5901. },
  5902. [
  5903. {
  5904. name: "Normal",
  5905. height: math.unit(1.65, "meters")
  5906. },
  5907. {
  5908. name: "Macro",
  5909. height: math.unit(60, "m"),
  5910. default: true
  5911. },
  5912. {
  5913. name: "Megamacro",
  5914. height: math.unit(9.213, "km")
  5915. },
  5916. {
  5917. name: "Planet Eater",
  5918. height: math.unit(489, "megameters")
  5919. },
  5920. {
  5921. name: "Teramacro",
  5922. height: math.unit(2471635000000, "meters")
  5923. },
  5924. {
  5925. name: "Examacro",
  5926. height: math.unit(8.0624e+26, "meters")
  5927. }
  5928. ]
  5929. ))
  5930. characterMakers.push(() => makeCharacter(
  5931. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5932. {
  5933. front: {
  5934. height: math.unit(1.72, "meters"),
  5935. weight: math.unit(68, "kg"),
  5936. name: "Front",
  5937. image: {
  5938. source: "./media/characters/lexi/front.svg"
  5939. }
  5940. }
  5941. },
  5942. [
  5943. {
  5944. name: "Very Smol",
  5945. height: math.unit(10, "mm")
  5946. },
  5947. {
  5948. name: "Micro",
  5949. height: math.unit(6.8, "cm"),
  5950. default: true
  5951. },
  5952. {
  5953. name: "Normal",
  5954. height: math.unit(1.72, "m")
  5955. }
  5956. ]
  5957. ))
  5958. characterMakers.push(() => makeCharacter(
  5959. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5960. {
  5961. front: {
  5962. height: math.unit(1.69, "meters"),
  5963. weight: math.unit(68, "kg"),
  5964. name: "Front",
  5965. image: {
  5966. source: "./media/characters/martin/front.svg",
  5967. extra: 596 / 581
  5968. }
  5969. }
  5970. },
  5971. [
  5972. {
  5973. name: "Micro",
  5974. height: math.unit(6.85, "cm"),
  5975. default: true
  5976. },
  5977. {
  5978. name: "Normal",
  5979. height: math.unit(1.69, "m")
  5980. }
  5981. ]
  5982. ))
  5983. characterMakers.push(() => makeCharacter(
  5984. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  5985. {
  5986. front: {
  5987. height: math.unit(1.69, "meters"),
  5988. weight: math.unit(68, "kg"),
  5989. name: "Front",
  5990. image: {
  5991. source: "./media/characters/juno/front.svg"
  5992. }
  5993. }
  5994. },
  5995. [
  5996. {
  5997. name: "Micro",
  5998. height: math.unit(7, "cm")
  5999. },
  6000. {
  6001. name: "Normal",
  6002. height: math.unit(1.89, "m")
  6003. },
  6004. {
  6005. name: "Macro",
  6006. height: math.unit(353, "meters"),
  6007. default: true
  6008. }
  6009. ]
  6010. ))
  6011. characterMakers.push(() => makeCharacter(
  6012. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6013. {
  6014. front: {
  6015. height: math.unit(1.93, "meters"),
  6016. weight: math.unit(83, "kg"),
  6017. name: "Front",
  6018. image: {
  6019. source: "./media/characters/samantha/front.svg"
  6020. }
  6021. },
  6022. frontClothed: {
  6023. height: math.unit(1.93, "meters"),
  6024. weight: math.unit(83, "kg"),
  6025. name: "Front (Clothed)",
  6026. image: {
  6027. source: "./media/characters/samantha/front-clothed.svg"
  6028. }
  6029. },
  6030. back: {
  6031. height: math.unit(1.93, "meters"),
  6032. weight: math.unit(83, "kg"),
  6033. name: "Back",
  6034. image: {
  6035. source: "./media/characters/samantha/back.svg"
  6036. }
  6037. },
  6038. },
  6039. [
  6040. {
  6041. name: "Normal",
  6042. height: math.unit(1.93, "m")
  6043. },
  6044. {
  6045. name: "Macro",
  6046. height: math.unit(74, "meters"),
  6047. default: true
  6048. },
  6049. {
  6050. name: "Macro+",
  6051. height: math.unit(223, "meters"),
  6052. },
  6053. {
  6054. name: "Megamacro",
  6055. height: math.unit(8381, "meters"),
  6056. },
  6057. {
  6058. name: "Megamacro+",
  6059. height: math.unit(12000, "kilometers")
  6060. },
  6061. ]
  6062. ))
  6063. characterMakers.push(() => makeCharacter(
  6064. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6065. {
  6066. front: {
  6067. height: math.unit(1.92, "meters"),
  6068. weight: math.unit(80, "kg"),
  6069. name: "Front",
  6070. image: {
  6071. source: "./media/characters/dr-clay/front.svg"
  6072. }
  6073. },
  6074. frontClothed: {
  6075. height: math.unit(1.92, "meters"),
  6076. weight: math.unit(80, "kg"),
  6077. name: "Front (Clothed)",
  6078. image: {
  6079. source: "./media/characters/dr-clay/front-clothed.svg"
  6080. }
  6081. }
  6082. },
  6083. [
  6084. {
  6085. name: "Normal",
  6086. height: math.unit(1.92, "m")
  6087. },
  6088. {
  6089. name: "Macro",
  6090. height: math.unit(214, "meters"),
  6091. default: true
  6092. },
  6093. {
  6094. name: "Macro+",
  6095. height: math.unit(12.237, "meters"),
  6096. },
  6097. {
  6098. name: "Megamacro",
  6099. height: math.unit(557, "megameters"),
  6100. },
  6101. {
  6102. name: "Unimaginable",
  6103. height: math.unit(120e9, "lightyears")
  6104. },
  6105. ]
  6106. ))
  6107. characterMakers.push(() => makeCharacter(
  6108. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6109. {
  6110. front: {
  6111. height: math.unit(2, "meters"),
  6112. weight: math.unit(80, "kg"),
  6113. name: "Front",
  6114. image: {
  6115. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6116. }
  6117. }
  6118. },
  6119. [
  6120. {
  6121. name: "Teramacro",
  6122. height: math.unit(500000, "lightyears"),
  6123. default: true
  6124. },
  6125. ]
  6126. ))
  6127. characterMakers.push(() => makeCharacter(
  6128. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6129. {
  6130. front: {
  6131. height: math.unit(2, "meters"),
  6132. weight: math.unit(150, "kg"),
  6133. name: "Front",
  6134. image: {
  6135. source: "./media/characters/vemus/front.svg",
  6136. extra: 2384 / 2084,
  6137. bottom: 0.0123
  6138. }
  6139. }
  6140. },
  6141. [
  6142. {
  6143. name: "Normal",
  6144. height: math.unit(3.75, "meters"),
  6145. default: true
  6146. },
  6147. {
  6148. name: "Big",
  6149. height: math.unit(8, "meters")
  6150. },
  6151. {
  6152. name: "Macro",
  6153. height: math.unit(100, "meters")
  6154. },
  6155. {
  6156. name: "Macro+",
  6157. height: math.unit(1500, "meters")
  6158. },
  6159. {
  6160. name: "Stellar",
  6161. height: math.unit(14e8, "meters")
  6162. },
  6163. ]
  6164. ))
  6165. characterMakers.push(() => makeCharacter(
  6166. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6167. {
  6168. front: {
  6169. height: math.unit(2, "meters"),
  6170. weight: math.unit(70, "kg"),
  6171. name: "Front",
  6172. image: {
  6173. source: "./media/characters/beherit/front.svg",
  6174. extra: 1408 / 1242
  6175. }
  6176. }
  6177. },
  6178. [
  6179. {
  6180. name: "Normal",
  6181. height: math.unit(6, "feet")
  6182. },
  6183. {
  6184. name: "Lorg",
  6185. height: math.unit(25, "feet"),
  6186. default: true
  6187. },
  6188. {
  6189. name: "Lorger",
  6190. height: math.unit(75, "feet")
  6191. },
  6192. {
  6193. name: "Macro",
  6194. height: math.unit(200, "meters")
  6195. },
  6196. ]
  6197. ))
  6198. characterMakers.push(() => makeCharacter(
  6199. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6200. {
  6201. front: {
  6202. height: math.unit(2, "meters"),
  6203. weight: math.unit(150, "kg"),
  6204. name: "Front",
  6205. image: {
  6206. source: "./media/characters/everett/front.svg",
  6207. extra: 2038 / 1737,
  6208. bottom: 0.03
  6209. }
  6210. },
  6211. paw: {
  6212. height: math.unit(2 / 3.6, "meters"),
  6213. name: "Paw",
  6214. image: {
  6215. source: "./media/characters/everett/paw.svg"
  6216. }
  6217. },
  6218. },
  6219. [
  6220. {
  6221. name: "Normal",
  6222. height: math.unit(15, "feet"),
  6223. default: true
  6224. },
  6225. {
  6226. name: "Lorg",
  6227. height: math.unit(70, "feet"),
  6228. default: true
  6229. },
  6230. {
  6231. name: "Lorger",
  6232. height: math.unit(250, "feet")
  6233. },
  6234. {
  6235. name: "Macro",
  6236. height: math.unit(500, "meters")
  6237. },
  6238. ]
  6239. ))
  6240. characterMakers.push(() => makeCharacter(
  6241. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6242. {
  6243. front: {
  6244. height: math.unit(2, "meters"),
  6245. weight: math.unit(86, "kg"),
  6246. name: "Front",
  6247. image: {
  6248. source: "./media/characters/rose/front.svg",
  6249. extra: 350/335,
  6250. bottom: 10/360
  6251. }
  6252. },
  6253. frontAlt: {
  6254. height: math.unit(1.6, "meters"),
  6255. weight: math.unit(86, "kg"),
  6256. name: "Front (Alt)",
  6257. image: {
  6258. source: "./media/characters/rose/front-alt.svg",
  6259. extra: 299/283,
  6260. bottom: 3/302
  6261. }
  6262. },
  6263. plush: {
  6264. height: math.unit(2, "meters"),
  6265. weight: math.unit(86/3, "kg"),
  6266. name: "Plush",
  6267. image: {
  6268. source: "./media/characters/rose/plush.svg",
  6269. extra: 361/337,
  6270. bottom: 11/372
  6271. }
  6272. },
  6273. },
  6274. [
  6275. {
  6276. name: "Mini-Micro",
  6277. height: math.unit(1, "cm")
  6278. },
  6279. {
  6280. name: "Micro",
  6281. height: math.unit(3.5, "inches"),
  6282. default: true
  6283. },
  6284. {
  6285. name: "Normal",
  6286. height: math.unit(6 + 1 / 6, "feet")
  6287. },
  6288. {
  6289. name: "Mini-Macro",
  6290. height: math.unit(9 + 10 / 12, "feet")
  6291. },
  6292. ]
  6293. ))
  6294. characterMakers.push(() => makeCharacter(
  6295. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6296. {
  6297. front: {
  6298. height: math.unit(2, "meters"),
  6299. weight: math.unit(350, "lbs"),
  6300. name: "Front",
  6301. image: {
  6302. source: "./media/characters/regal/front.svg"
  6303. }
  6304. },
  6305. back: {
  6306. height: math.unit(2, "meters"),
  6307. weight: math.unit(350, "lbs"),
  6308. name: "Back",
  6309. image: {
  6310. source: "./media/characters/regal/back.svg"
  6311. }
  6312. },
  6313. },
  6314. [
  6315. {
  6316. name: "Macro",
  6317. height: math.unit(350, "feet"),
  6318. default: true
  6319. }
  6320. ]
  6321. ))
  6322. characterMakers.push(() => makeCharacter(
  6323. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6324. {
  6325. front: {
  6326. height: math.unit(4 + 11 / 12, "feet"),
  6327. weight: math.unit(100, "lbs"),
  6328. name: "Front",
  6329. image: {
  6330. source: "./media/characters/opal/front.svg"
  6331. }
  6332. },
  6333. frontAlt: {
  6334. height: math.unit(4 + 11 / 12, "feet"),
  6335. weight: math.unit(100, "lbs"),
  6336. name: "Front (Alt)",
  6337. image: {
  6338. source: "./media/characters/opal/front-alt.svg"
  6339. }
  6340. },
  6341. },
  6342. [
  6343. {
  6344. name: "Small",
  6345. height: math.unit(4 + 11 / 12, "feet")
  6346. },
  6347. {
  6348. name: "Normal",
  6349. height: math.unit(20, "feet"),
  6350. default: true
  6351. },
  6352. {
  6353. name: "Macro",
  6354. height: math.unit(120, "feet")
  6355. },
  6356. {
  6357. name: "Megamacro",
  6358. height: math.unit(80, "miles")
  6359. },
  6360. {
  6361. name: "True Size",
  6362. height: math.unit(100000, "lightyears")
  6363. },
  6364. ]
  6365. ))
  6366. characterMakers.push(() => makeCharacter(
  6367. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6368. {
  6369. front: {
  6370. height: math.unit(6, "feet"),
  6371. weight: math.unit(200, "lbs"),
  6372. name: "Front",
  6373. image: {
  6374. source: "./media/characters/vector-wuff/front.svg"
  6375. }
  6376. }
  6377. },
  6378. [
  6379. {
  6380. name: "Normal",
  6381. height: math.unit(2.8, "meters")
  6382. },
  6383. {
  6384. name: "Macro",
  6385. height: math.unit(450, "meters"),
  6386. default: true
  6387. },
  6388. {
  6389. name: "Megamacro",
  6390. height: math.unit(15, "kilometers")
  6391. }
  6392. ]
  6393. ))
  6394. characterMakers.push(() => makeCharacter(
  6395. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6396. {
  6397. front: {
  6398. height: math.unit(6, "feet"),
  6399. weight: math.unit(256, "lbs"),
  6400. name: "Front",
  6401. image: {
  6402. source: "./media/characters/dannik/front.svg"
  6403. }
  6404. }
  6405. },
  6406. [
  6407. {
  6408. name: "Macro",
  6409. height: math.unit(69.57, "meters"),
  6410. default: true
  6411. },
  6412. ]
  6413. ))
  6414. characterMakers.push(() => makeCharacter(
  6415. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6416. {
  6417. front: {
  6418. height: math.unit(6, "feet"),
  6419. weight: math.unit(120, "lbs"),
  6420. name: "Front",
  6421. image: {
  6422. source: "./media/characters/azura-saharah/front.svg"
  6423. }
  6424. },
  6425. back: {
  6426. height: math.unit(6, "feet"),
  6427. weight: math.unit(120, "lbs"),
  6428. name: "Back",
  6429. image: {
  6430. source: "./media/characters/azura-saharah/back.svg"
  6431. }
  6432. },
  6433. },
  6434. [
  6435. {
  6436. name: "Macro",
  6437. height: math.unit(100, "feet"),
  6438. default: true
  6439. },
  6440. ]
  6441. ))
  6442. characterMakers.push(() => makeCharacter(
  6443. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6444. {
  6445. side: {
  6446. height: math.unit(5 + 4 / 12, "feet"),
  6447. weight: math.unit(163, "lbs"),
  6448. name: "Side",
  6449. image: {
  6450. source: "./media/characters/kennedy/side.svg"
  6451. }
  6452. }
  6453. },
  6454. [
  6455. {
  6456. name: "Standard Doggo",
  6457. height: math.unit(5 + 4 / 12, "feet")
  6458. },
  6459. {
  6460. name: "Big Doggo",
  6461. height: math.unit(25 + 3 / 12, "feet"),
  6462. default: true
  6463. },
  6464. ]
  6465. ))
  6466. characterMakers.push(() => makeCharacter(
  6467. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6468. {
  6469. front: {
  6470. height: math.unit(6, "feet"),
  6471. weight: math.unit(90, "lbs"),
  6472. name: "Front",
  6473. image: {
  6474. source: "./media/characters/odi-lunar/front.svg"
  6475. }
  6476. }
  6477. },
  6478. [
  6479. {
  6480. name: "Micro",
  6481. height: math.unit(3, "inches"),
  6482. default: true
  6483. },
  6484. {
  6485. name: "Normal",
  6486. height: math.unit(5.5, "feet")
  6487. }
  6488. ]
  6489. ))
  6490. characterMakers.push(() => makeCharacter(
  6491. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6492. {
  6493. back: {
  6494. height: math.unit(6, "feet"),
  6495. weight: math.unit(220, "lbs"),
  6496. name: "Back",
  6497. image: {
  6498. source: "./media/characters/mandake/back.svg"
  6499. }
  6500. }
  6501. },
  6502. [
  6503. {
  6504. name: "Normal",
  6505. height: math.unit(7, "feet"),
  6506. default: true
  6507. },
  6508. {
  6509. name: "Macro",
  6510. height: math.unit(78, "feet")
  6511. },
  6512. {
  6513. name: "Macro+",
  6514. height: math.unit(300, "meters")
  6515. },
  6516. {
  6517. name: "Macro++",
  6518. height: math.unit(2400, "feet")
  6519. },
  6520. {
  6521. name: "Megamacro",
  6522. height: math.unit(5167, "meters")
  6523. },
  6524. {
  6525. name: "Gigamacro",
  6526. height: math.unit(41769, "miles")
  6527. },
  6528. ]
  6529. ))
  6530. characterMakers.push(() => makeCharacter(
  6531. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6532. {
  6533. front: {
  6534. height: math.unit(6, "feet"),
  6535. weight: math.unit(120, "lbs"),
  6536. name: "Front",
  6537. image: {
  6538. source: "./media/characters/yozey/front.svg"
  6539. }
  6540. },
  6541. frontAlt: {
  6542. height: math.unit(6, "feet"),
  6543. weight: math.unit(120, "lbs"),
  6544. name: "Front (Alt)",
  6545. image: {
  6546. source: "./media/characters/yozey/front-alt.svg"
  6547. }
  6548. },
  6549. side: {
  6550. height: math.unit(6, "feet"),
  6551. weight: math.unit(120, "lbs"),
  6552. name: "Side",
  6553. image: {
  6554. source: "./media/characters/yozey/side.svg"
  6555. }
  6556. },
  6557. },
  6558. [
  6559. {
  6560. name: "Micro",
  6561. height: math.unit(3, "inches"),
  6562. default: true
  6563. },
  6564. {
  6565. name: "Normal",
  6566. height: math.unit(6, "feet")
  6567. }
  6568. ]
  6569. ))
  6570. characterMakers.push(() => makeCharacter(
  6571. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6572. {
  6573. front: {
  6574. height: math.unit(6, "feet"),
  6575. weight: math.unit(103, "lbs"),
  6576. name: "Front",
  6577. image: {
  6578. source: "./media/characters/valeska-voss/front.svg"
  6579. }
  6580. }
  6581. },
  6582. [
  6583. {
  6584. name: "Mini-Sized Sub",
  6585. height: math.unit(3.1, "inches")
  6586. },
  6587. {
  6588. name: "Mid-Sized Sub",
  6589. height: math.unit(6.2, "inches")
  6590. },
  6591. {
  6592. name: "Full-Sized Sub",
  6593. height: math.unit(9.3, "inches")
  6594. },
  6595. {
  6596. name: "Normal",
  6597. height: math.unit(5 + 2 / 12, "foot"),
  6598. default: true
  6599. },
  6600. ]
  6601. ))
  6602. characterMakers.push(() => makeCharacter(
  6603. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6604. {
  6605. front: {
  6606. height: math.unit(6, "feet"),
  6607. weight: math.unit(160, "lbs"),
  6608. name: "Front",
  6609. image: {
  6610. source: "./media/characters/gene-zeta/front.svg",
  6611. extra: 3006 / 2826,
  6612. bottom: 182 / 3188
  6613. }
  6614. }
  6615. },
  6616. [
  6617. {
  6618. name: "Micro",
  6619. height: math.unit(6, "inches")
  6620. },
  6621. {
  6622. name: "Normal",
  6623. height: math.unit(5 + 11 / 12, "foot"),
  6624. default: true
  6625. },
  6626. {
  6627. name: "Macro",
  6628. height: math.unit(140, "feet")
  6629. },
  6630. {
  6631. name: "Supercharged",
  6632. height: math.unit(2500, "feet")
  6633. },
  6634. ]
  6635. ))
  6636. characterMakers.push(() => makeCharacter(
  6637. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6638. {
  6639. front: {
  6640. height: math.unit(6, "feet"),
  6641. weight: math.unit(350, "lbs"),
  6642. name: "Front",
  6643. image: {
  6644. source: "./media/characters/razinox/front.svg",
  6645. extra: 1686 / 1548,
  6646. bottom: 28.2 / 1868
  6647. }
  6648. },
  6649. back: {
  6650. height: math.unit(6, "feet"),
  6651. weight: math.unit(350, "lbs"),
  6652. name: "Back",
  6653. image: {
  6654. source: "./media/characters/razinox/back.svg",
  6655. extra: 1660 / 1590,
  6656. bottom: 15 / 1665
  6657. }
  6658. },
  6659. },
  6660. [
  6661. {
  6662. name: "Normal",
  6663. height: math.unit(10 + 8 / 12, "foot")
  6664. },
  6665. {
  6666. name: "Minimacro",
  6667. height: math.unit(15, "foot")
  6668. },
  6669. {
  6670. name: "Macro",
  6671. height: math.unit(60, "foot"),
  6672. default: true
  6673. },
  6674. {
  6675. name: "Megamacro",
  6676. height: math.unit(5, "miles")
  6677. },
  6678. {
  6679. name: "Gigamacro",
  6680. height: math.unit(6000, "miles")
  6681. },
  6682. ]
  6683. ))
  6684. characterMakers.push(() => makeCharacter(
  6685. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6686. {
  6687. front: {
  6688. height: math.unit(6, "feet"),
  6689. weight: math.unit(150, "lbs"),
  6690. name: "Front",
  6691. image: {
  6692. source: "./media/characters/cobalt/front.svg"
  6693. }
  6694. }
  6695. },
  6696. [
  6697. {
  6698. name: "Normal",
  6699. height: math.unit(8 + 1 / 12, "foot")
  6700. },
  6701. {
  6702. name: "Macro",
  6703. height: math.unit(111, "foot"),
  6704. default: true
  6705. },
  6706. {
  6707. name: "Supracosmic",
  6708. height: math.unit(1e42, "feet")
  6709. },
  6710. ]
  6711. ))
  6712. characterMakers.push(() => makeCharacter(
  6713. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6714. {
  6715. front: {
  6716. height: math.unit(6, "feet"),
  6717. weight: math.unit(140, "lbs"),
  6718. name: "Front",
  6719. image: {
  6720. source: "./media/characters/amanda/front.svg"
  6721. }
  6722. }
  6723. },
  6724. [
  6725. {
  6726. name: "Micro",
  6727. height: math.unit(5, "inches"),
  6728. default: true
  6729. },
  6730. ]
  6731. ))
  6732. characterMakers.push(() => makeCharacter(
  6733. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6734. {
  6735. front: {
  6736. height: math.unit(2.75, "meters"),
  6737. weight: math.unit(1200, "lb"),
  6738. name: "Front",
  6739. image: {
  6740. source: "./media/characters/teal/front.svg",
  6741. extra: 2463 / 2320,
  6742. bottom: 166 / 2629
  6743. }
  6744. },
  6745. back: {
  6746. height: math.unit(2.75, "meters"),
  6747. weight: math.unit(1200, "lb"),
  6748. name: "Back",
  6749. image: {
  6750. source: "./media/characters/teal/back.svg",
  6751. extra: 2580 / 2489,
  6752. bottom: 151 / 2731
  6753. }
  6754. },
  6755. sitting: {
  6756. height: math.unit(1.9, "meters"),
  6757. weight: math.unit(1200, "lb"),
  6758. name: "Sitting",
  6759. image: {
  6760. source: "./media/characters/teal/sitting.svg",
  6761. extra: 623 / 590,
  6762. bottom: 121 / 744
  6763. }
  6764. },
  6765. standing: {
  6766. height: math.unit(2.75, "meters"),
  6767. weight: math.unit(1200, "lb"),
  6768. name: "Standing",
  6769. image: {
  6770. source: "./media/characters/teal/standing.svg",
  6771. extra: 923 / 893,
  6772. bottom: 60 / 983
  6773. }
  6774. },
  6775. stretching: {
  6776. height: math.unit(3.65, "meters"),
  6777. weight: math.unit(1200, "lb"),
  6778. name: "Stretching",
  6779. image: {
  6780. source: "./media/characters/teal/stretching.svg",
  6781. extra: 1276 / 1244,
  6782. bottom: 0 / 1276
  6783. }
  6784. },
  6785. legged: {
  6786. height: math.unit(1.3, "meters"),
  6787. weight: math.unit(100, "lb"),
  6788. name: "Legged",
  6789. image: {
  6790. source: "./media/characters/teal/legged.svg",
  6791. extra: 462 / 437,
  6792. bottom: 24 / 486
  6793. }
  6794. },
  6795. naga: {
  6796. height: math.unit(5.4, "meters"),
  6797. weight: math.unit(4000, "lb"),
  6798. name: "Naga",
  6799. image: {
  6800. source: "./media/characters/teal/naga.svg",
  6801. extra: 1902 / 1858,
  6802. bottom: 0 / 1902
  6803. }
  6804. },
  6805. hand: {
  6806. height: math.unit(0.52, "meters"),
  6807. name: "Hand",
  6808. image: {
  6809. source: "./media/characters/teal/hand.svg"
  6810. }
  6811. },
  6812. maw: {
  6813. height: math.unit(0.43, "meters"),
  6814. name: "Maw",
  6815. image: {
  6816. source: "./media/characters/teal/maw.svg"
  6817. }
  6818. },
  6819. slit: {
  6820. height: math.unit(0.25, "meters"),
  6821. name: "Slit",
  6822. image: {
  6823. source: "./media/characters/teal/slit.svg"
  6824. }
  6825. },
  6826. },
  6827. [
  6828. {
  6829. name: "Normal",
  6830. height: math.unit(2.75, "meters"),
  6831. default: true
  6832. },
  6833. {
  6834. name: "Macro",
  6835. height: math.unit(300, "feet")
  6836. },
  6837. {
  6838. name: "Macro+",
  6839. height: math.unit(2000, "feet")
  6840. },
  6841. ]
  6842. ))
  6843. characterMakers.push(() => makeCharacter(
  6844. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6845. {
  6846. frontCat: {
  6847. height: math.unit(6, "feet"),
  6848. weight: math.unit(180, "lbs"),
  6849. name: "Front (Cat)",
  6850. image: {
  6851. source: "./media/characters/ravin-amulet/front-cat.svg"
  6852. }
  6853. },
  6854. frontCatAlt: {
  6855. height: math.unit(6, "feet"),
  6856. weight: math.unit(180, "lbs"),
  6857. name: "Front (Alt, Cat)",
  6858. image: {
  6859. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6860. }
  6861. },
  6862. frontWerewolf: {
  6863. height: math.unit(6 * 1.2, "feet"),
  6864. weight: math.unit(225, "lbs"),
  6865. name: "Front (Werewolf)",
  6866. image: {
  6867. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6868. }
  6869. },
  6870. backWerewolf: {
  6871. height: math.unit(6 * 1.2, "feet"),
  6872. weight: math.unit(225, "lbs"),
  6873. name: "Back (Werewolf)",
  6874. image: {
  6875. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6876. }
  6877. },
  6878. },
  6879. [
  6880. {
  6881. name: "Nano",
  6882. height: math.unit(1, "micrometer")
  6883. },
  6884. {
  6885. name: "Micro",
  6886. height: math.unit(1, "inch")
  6887. },
  6888. {
  6889. name: "Normal",
  6890. height: math.unit(6, "feet"),
  6891. default: true
  6892. },
  6893. {
  6894. name: "Macro",
  6895. height: math.unit(60, "feet")
  6896. }
  6897. ]
  6898. ))
  6899. characterMakers.push(() => makeCharacter(
  6900. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6901. {
  6902. front: {
  6903. height: math.unit(6, "feet"),
  6904. weight: math.unit(165, "lbs"),
  6905. name: "Front",
  6906. image: {
  6907. source: "./media/characters/fluoresce/front.svg"
  6908. }
  6909. }
  6910. },
  6911. [
  6912. {
  6913. name: "Micro",
  6914. height: math.unit(6, "cm")
  6915. },
  6916. {
  6917. name: "Normal",
  6918. height: math.unit(5 + 7 / 12, "feet"),
  6919. default: true
  6920. },
  6921. {
  6922. name: "Macro",
  6923. height: math.unit(56, "feet")
  6924. },
  6925. {
  6926. name: "Megamacro",
  6927. height: math.unit(1.9, "miles")
  6928. },
  6929. ]
  6930. ))
  6931. characterMakers.push(() => makeCharacter(
  6932. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6933. {
  6934. front: {
  6935. height: math.unit(9 + 6 / 12, "feet"),
  6936. weight: math.unit(523, "lbs"),
  6937. name: "Side",
  6938. image: {
  6939. source: "./media/characters/aurora/side.svg"
  6940. }
  6941. }
  6942. },
  6943. [
  6944. {
  6945. name: "Normal",
  6946. height: math.unit(9 + 6 / 12, "feet")
  6947. },
  6948. {
  6949. name: "Macro",
  6950. height: math.unit(96, "feet"),
  6951. default: true
  6952. },
  6953. {
  6954. name: "Macro+",
  6955. height: math.unit(243, "feet")
  6956. },
  6957. ]
  6958. ))
  6959. characterMakers.push(() => makeCharacter(
  6960. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6961. {
  6962. front: {
  6963. height: math.unit(194, "cm"),
  6964. weight: math.unit(90, "kg"),
  6965. name: "Front",
  6966. image: {
  6967. source: "./media/characters/ranek/front.svg"
  6968. }
  6969. },
  6970. side: {
  6971. height: math.unit(194, "cm"),
  6972. weight: math.unit(90, "kg"),
  6973. name: "Side",
  6974. image: {
  6975. source: "./media/characters/ranek/side.svg"
  6976. }
  6977. },
  6978. back: {
  6979. height: math.unit(194, "cm"),
  6980. weight: math.unit(90, "kg"),
  6981. name: "Back",
  6982. image: {
  6983. source: "./media/characters/ranek/back.svg"
  6984. }
  6985. },
  6986. feral: {
  6987. height: math.unit(30, "cm"),
  6988. weight: math.unit(1.6, "lbs"),
  6989. name: "Feral",
  6990. image: {
  6991. source: "./media/characters/ranek/feral.svg"
  6992. }
  6993. },
  6994. },
  6995. [
  6996. {
  6997. name: "Normal",
  6998. height: math.unit(194, "cm"),
  6999. default: true
  7000. },
  7001. {
  7002. name: "Macro",
  7003. height: math.unit(100, "meters")
  7004. },
  7005. ]
  7006. ))
  7007. characterMakers.push(() => makeCharacter(
  7008. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7009. {
  7010. front: {
  7011. height: math.unit(5 + 6 / 12, "feet"),
  7012. weight: math.unit(153, "lbs"),
  7013. name: "Front",
  7014. image: {
  7015. source: "./media/characters/andrew-cooper/front.svg"
  7016. }
  7017. },
  7018. },
  7019. [
  7020. {
  7021. name: "Nano",
  7022. height: math.unit(1, "mm")
  7023. },
  7024. {
  7025. name: "Micro",
  7026. height: math.unit(2, "inches")
  7027. },
  7028. {
  7029. name: "Normal",
  7030. height: math.unit(5 + 6 / 12, "feet"),
  7031. default: true
  7032. }
  7033. ]
  7034. ))
  7035. characterMakers.push(() => makeCharacter(
  7036. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7037. {
  7038. front: {
  7039. height: math.unit(6, "feet"),
  7040. weight: math.unit(180, "lbs"),
  7041. name: "Front",
  7042. image: {
  7043. source: "./media/characters/akane-sato/front.svg",
  7044. extra: 1219 / 1140
  7045. }
  7046. },
  7047. back: {
  7048. height: math.unit(6, "feet"),
  7049. weight: math.unit(180, "lbs"),
  7050. name: "Back",
  7051. image: {
  7052. source: "./media/characters/akane-sato/back.svg",
  7053. extra: 1219 / 1170
  7054. }
  7055. },
  7056. },
  7057. [
  7058. {
  7059. name: "Normal",
  7060. height: math.unit(2.5, "meters")
  7061. },
  7062. {
  7063. name: "Macro",
  7064. height: math.unit(250, "meters"),
  7065. default: true
  7066. },
  7067. {
  7068. name: "Megamacro",
  7069. height: math.unit(25, "km")
  7070. },
  7071. ]
  7072. ))
  7073. characterMakers.push(() => makeCharacter(
  7074. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7075. {
  7076. front: {
  7077. height: math.unit(6, "feet"),
  7078. weight: math.unit(65, "kg"),
  7079. name: "Front",
  7080. image: {
  7081. source: "./media/characters/rook/front.svg",
  7082. extra: 960 / 950
  7083. }
  7084. }
  7085. },
  7086. [
  7087. {
  7088. name: "Normal",
  7089. height: math.unit(8.8, "feet")
  7090. },
  7091. {
  7092. name: "Macro",
  7093. height: math.unit(88, "feet"),
  7094. default: true
  7095. },
  7096. {
  7097. name: "Megamacro",
  7098. height: math.unit(8, "miles")
  7099. },
  7100. ]
  7101. ))
  7102. characterMakers.push(() => makeCharacter(
  7103. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7104. {
  7105. front: {
  7106. height: math.unit(12 + 2 / 12, "feet"),
  7107. weight: math.unit(808, "lbs"),
  7108. name: "Front",
  7109. image: {
  7110. source: "./media/characters/prodigy/front.svg"
  7111. }
  7112. }
  7113. },
  7114. [
  7115. {
  7116. name: "Normal",
  7117. height: math.unit(12 + 2 / 12, "feet"),
  7118. default: true
  7119. },
  7120. {
  7121. name: "Macro",
  7122. height: math.unit(143, "feet")
  7123. },
  7124. {
  7125. name: "Macro+",
  7126. height: math.unit(400, "feet")
  7127. },
  7128. ]
  7129. ))
  7130. characterMakers.push(() => makeCharacter(
  7131. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7132. {
  7133. front: {
  7134. height: math.unit(6, "feet"),
  7135. weight: math.unit(225, "lbs"),
  7136. name: "Front",
  7137. image: {
  7138. source: "./media/characters/daniel/front.svg"
  7139. }
  7140. },
  7141. leaning: {
  7142. height: math.unit(6, "feet"),
  7143. weight: math.unit(225, "lbs"),
  7144. name: "Leaning",
  7145. image: {
  7146. source: "./media/characters/daniel/leaning.svg"
  7147. }
  7148. },
  7149. },
  7150. [
  7151. {
  7152. name: "Macro",
  7153. height: math.unit(1000, "feet"),
  7154. default: true
  7155. },
  7156. ]
  7157. ))
  7158. characterMakers.push(() => makeCharacter(
  7159. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7160. {
  7161. front: {
  7162. height: math.unit(6, "feet"),
  7163. weight: math.unit(88, "lbs"),
  7164. name: "Front",
  7165. image: {
  7166. source: "./media/characters/chiros/front.svg",
  7167. extra: 306 / 226
  7168. }
  7169. },
  7170. side: {
  7171. height: math.unit(6, "feet"),
  7172. weight: math.unit(88, "lbs"),
  7173. name: "Side",
  7174. image: {
  7175. source: "./media/characters/chiros/side.svg",
  7176. extra: 306 / 226
  7177. }
  7178. },
  7179. },
  7180. [
  7181. {
  7182. name: "Normal",
  7183. height: math.unit(6, "cm"),
  7184. default: true
  7185. },
  7186. ]
  7187. ))
  7188. characterMakers.push(() => makeCharacter(
  7189. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7190. {
  7191. front: {
  7192. height: math.unit(6, "feet"),
  7193. weight: math.unit(100, "lbs"),
  7194. name: "Front",
  7195. image: {
  7196. source: "./media/characters/selka/front.svg",
  7197. extra: 947 / 887
  7198. }
  7199. }
  7200. },
  7201. [
  7202. {
  7203. name: "Normal",
  7204. height: math.unit(5, "cm"),
  7205. default: true
  7206. },
  7207. ]
  7208. ))
  7209. characterMakers.push(() => makeCharacter(
  7210. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7211. {
  7212. front: {
  7213. height: math.unit(8 + 3 / 12, "feet"),
  7214. weight: math.unit(424, "lbs"),
  7215. name: "Front",
  7216. image: {
  7217. source: "./media/characters/verin/front.svg",
  7218. extra: 1845 / 1550
  7219. }
  7220. },
  7221. frontArmored: {
  7222. height: math.unit(8 + 3 / 12, "feet"),
  7223. weight: math.unit(424, "lbs"),
  7224. name: "Front (Armored)",
  7225. image: {
  7226. source: "./media/characters/verin/front-armor.svg",
  7227. extra: 1845 / 1550,
  7228. bottom: 0.01
  7229. }
  7230. },
  7231. back: {
  7232. height: math.unit(8 + 3 / 12, "feet"),
  7233. weight: math.unit(424, "lbs"),
  7234. name: "Back",
  7235. image: {
  7236. source: "./media/characters/verin/back.svg",
  7237. bottom: 0.1,
  7238. extra: 1
  7239. }
  7240. },
  7241. foot: {
  7242. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7243. name: "Foot",
  7244. image: {
  7245. source: "./media/characters/verin/foot.svg"
  7246. }
  7247. },
  7248. },
  7249. [
  7250. {
  7251. name: "Normal",
  7252. height: math.unit(8 + 3 / 12, "feet")
  7253. },
  7254. {
  7255. name: "Minimacro",
  7256. height: math.unit(21, "feet"),
  7257. default: true
  7258. },
  7259. {
  7260. name: "Macro",
  7261. height: math.unit(626, "feet")
  7262. },
  7263. ]
  7264. ))
  7265. characterMakers.push(() => makeCharacter(
  7266. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7267. {
  7268. front: {
  7269. height: math.unit(2.718, "meters"),
  7270. weight: math.unit(150, "lbs"),
  7271. name: "Front",
  7272. image: {
  7273. source: "./media/characters/sovrim-terraquian/front.svg"
  7274. }
  7275. },
  7276. back: {
  7277. height: math.unit(2.718, "meters"),
  7278. weight: math.unit(150, "lbs"),
  7279. name: "Back",
  7280. image: {
  7281. source: "./media/characters/sovrim-terraquian/back.svg"
  7282. }
  7283. }
  7284. },
  7285. [
  7286. {
  7287. name: "Micro",
  7288. height: math.unit(2, "inches")
  7289. },
  7290. {
  7291. name: "Small",
  7292. height: math.unit(1, "meter")
  7293. },
  7294. {
  7295. name: "Normal",
  7296. height: math.unit(Math.E, "meters"),
  7297. default: true
  7298. },
  7299. {
  7300. name: "Macro",
  7301. height: math.unit(20, "meters")
  7302. },
  7303. {
  7304. name: "Macro+",
  7305. height: math.unit(400, "meters")
  7306. },
  7307. ]
  7308. ))
  7309. characterMakers.push(() => makeCharacter(
  7310. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7311. {
  7312. front: {
  7313. height: math.unit(7, "feet"),
  7314. weight: math.unit(489, "lbs"),
  7315. name: "Front",
  7316. image: {
  7317. source: "./media/characters/reece-silvermane/front.svg",
  7318. bottom: 0.02,
  7319. extra: 1
  7320. }
  7321. },
  7322. },
  7323. [
  7324. {
  7325. name: "Macro",
  7326. height: math.unit(1.5, "miles"),
  7327. default: true
  7328. },
  7329. ]
  7330. ))
  7331. characterMakers.push(() => makeCharacter(
  7332. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7333. {
  7334. front: {
  7335. height: math.unit(6, "feet"),
  7336. weight: math.unit(78, "kg"),
  7337. name: "Front",
  7338. image: {
  7339. source: "./media/characters/kane/front.svg",
  7340. extra: 978 / 899
  7341. }
  7342. },
  7343. },
  7344. [
  7345. {
  7346. name: "Normal",
  7347. height: math.unit(2.1, "m"),
  7348. },
  7349. {
  7350. name: "Macro",
  7351. height: math.unit(1, "km"),
  7352. default: true
  7353. },
  7354. ]
  7355. ))
  7356. characterMakers.push(() => makeCharacter(
  7357. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7358. {
  7359. front: {
  7360. height: math.unit(6, "feet"),
  7361. weight: math.unit(200, "kg"),
  7362. name: "Front",
  7363. image: {
  7364. source: "./media/characters/tegon/front.svg",
  7365. bottom: 0.01,
  7366. extra: 1
  7367. }
  7368. },
  7369. },
  7370. [
  7371. {
  7372. name: "Micro",
  7373. height: math.unit(1, "inch")
  7374. },
  7375. {
  7376. name: "Normal",
  7377. height: math.unit(6 + 3 / 12, "feet"),
  7378. default: true
  7379. },
  7380. {
  7381. name: "Macro",
  7382. height: math.unit(300, "feet")
  7383. },
  7384. {
  7385. name: "Megamacro",
  7386. height: math.unit(69, "miles")
  7387. },
  7388. ]
  7389. ))
  7390. characterMakers.push(() => makeCharacter(
  7391. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7392. {
  7393. side: {
  7394. height: math.unit(6, "feet"),
  7395. weight: math.unit(2304, "lbs"),
  7396. name: "Side",
  7397. image: {
  7398. source: "./media/characters/arcturax/side.svg",
  7399. extra: 790 / 376,
  7400. bottom: 0.01
  7401. }
  7402. },
  7403. },
  7404. [
  7405. {
  7406. name: "Micro",
  7407. height: math.unit(2, "inch")
  7408. },
  7409. {
  7410. name: "Normal",
  7411. height: math.unit(6, "feet")
  7412. },
  7413. {
  7414. name: "Macro",
  7415. height: math.unit(39, "feet"),
  7416. default: true
  7417. },
  7418. {
  7419. name: "Megamacro",
  7420. height: math.unit(7, "miles")
  7421. },
  7422. ]
  7423. ))
  7424. characterMakers.push(() => makeCharacter(
  7425. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7426. {
  7427. front: {
  7428. height: math.unit(6, "feet"),
  7429. weight: math.unit(50, "lbs"),
  7430. name: "Front",
  7431. image: {
  7432. source: "./media/characters/sentri/front.svg",
  7433. extra: 1750 / 1570,
  7434. bottom: 0.025
  7435. }
  7436. },
  7437. frontAlt: {
  7438. height: math.unit(6, "feet"),
  7439. weight: math.unit(50, "lbs"),
  7440. name: "Front (Alt)",
  7441. image: {
  7442. source: "./media/characters/sentri/front-alt.svg",
  7443. extra: 1750 / 1570,
  7444. bottom: 0.025
  7445. }
  7446. },
  7447. },
  7448. [
  7449. {
  7450. name: "Normal",
  7451. height: math.unit(15, "feet"),
  7452. default: true
  7453. },
  7454. {
  7455. name: "Macro",
  7456. height: math.unit(2500, "feet")
  7457. }
  7458. ]
  7459. ))
  7460. characterMakers.push(() => makeCharacter(
  7461. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7462. {
  7463. front: {
  7464. height: math.unit(5 + 8 / 12, "feet"),
  7465. weight: math.unit(130, "lbs"),
  7466. name: "Front",
  7467. image: {
  7468. source: "./media/characters/corvin/front.svg",
  7469. extra: 1803 / 1629
  7470. }
  7471. },
  7472. frontShirt: {
  7473. height: math.unit(5 + 8 / 12, "feet"),
  7474. weight: math.unit(130, "lbs"),
  7475. name: "Front (Shirt)",
  7476. image: {
  7477. source: "./media/characters/corvin/front-shirt.svg",
  7478. extra: 1803 / 1629
  7479. }
  7480. },
  7481. frontPoncho: {
  7482. height: math.unit(5 + 8 / 12, "feet"),
  7483. weight: math.unit(130, "lbs"),
  7484. name: "Front (Poncho)",
  7485. image: {
  7486. source: "./media/characters/corvin/front-poncho.svg",
  7487. extra: 1803 / 1629
  7488. }
  7489. },
  7490. side: {
  7491. height: math.unit(5 + 8 / 12, "feet"),
  7492. weight: math.unit(130, "lbs"),
  7493. name: "Side",
  7494. image: {
  7495. source: "./media/characters/corvin/side.svg",
  7496. extra: 1012 / 945
  7497. }
  7498. },
  7499. back: {
  7500. height: math.unit(5 + 8 / 12, "feet"),
  7501. weight: math.unit(130, "lbs"),
  7502. name: "Back",
  7503. image: {
  7504. source: "./media/characters/corvin/back.svg",
  7505. extra: 1803 / 1629
  7506. }
  7507. },
  7508. },
  7509. [
  7510. {
  7511. name: "Micro",
  7512. height: math.unit(3, "inches")
  7513. },
  7514. {
  7515. name: "Normal",
  7516. height: math.unit(5 + 8 / 12, "feet")
  7517. },
  7518. {
  7519. name: "Macro",
  7520. height: math.unit(300, "feet"),
  7521. default: true
  7522. },
  7523. {
  7524. name: "Megamacro",
  7525. height: math.unit(500, "miles")
  7526. }
  7527. ]
  7528. ))
  7529. characterMakers.push(() => makeCharacter(
  7530. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7531. {
  7532. front: {
  7533. height: math.unit(6, "feet"),
  7534. weight: math.unit(135, "lbs"),
  7535. name: "Front",
  7536. image: {
  7537. source: "./media/characters/q/front.svg",
  7538. extra: 854 / 752,
  7539. bottom: 0.005
  7540. }
  7541. },
  7542. back: {
  7543. height: math.unit(6, "feet"),
  7544. weight: math.unit(130, "lbs"),
  7545. name: "Back",
  7546. image: {
  7547. source: "./media/characters/q/back.svg",
  7548. extra: 854 / 752
  7549. }
  7550. },
  7551. },
  7552. [
  7553. {
  7554. name: "Macro",
  7555. height: math.unit(90, "feet"),
  7556. default: true
  7557. },
  7558. {
  7559. name: "Extra Macro",
  7560. height: math.unit(300, "feet"),
  7561. },
  7562. {
  7563. name: "BIG WALF",
  7564. height: math.unit(750, "feet"),
  7565. },
  7566. ]
  7567. ))
  7568. characterMakers.push(() => makeCharacter(
  7569. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7570. {
  7571. front: {
  7572. height: math.unit(6, "feet"),
  7573. weight: math.unit(150, "lbs"),
  7574. name: "Front",
  7575. image: {
  7576. source: "./media/characters/carley/front.svg",
  7577. extra: 3927 / 3540,
  7578. bottom: 29.2 / 735
  7579. }
  7580. }
  7581. },
  7582. [
  7583. {
  7584. name: "Normal",
  7585. height: math.unit(6 + 3 / 12, "feet")
  7586. },
  7587. {
  7588. name: "Macro",
  7589. height: math.unit(185, "feet"),
  7590. default: true
  7591. },
  7592. {
  7593. name: "Megamacro",
  7594. height: math.unit(8, "miles"),
  7595. },
  7596. ]
  7597. ))
  7598. characterMakers.push(() => makeCharacter(
  7599. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7600. {
  7601. front: {
  7602. height: math.unit(3, "feet"),
  7603. weight: math.unit(28, "lbs"),
  7604. name: "Front",
  7605. image: {
  7606. source: "./media/characters/citrine/front.svg"
  7607. }
  7608. }
  7609. },
  7610. [
  7611. {
  7612. name: "Normal",
  7613. height: math.unit(3, "feet"),
  7614. default: true
  7615. }
  7616. ]
  7617. ))
  7618. characterMakers.push(() => makeCharacter(
  7619. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7620. {
  7621. front: {
  7622. height: math.unit(14, "feet"),
  7623. weight: math.unit(1450, "kg"),
  7624. capacity: math.unit(15, "people"),
  7625. name: "Front",
  7626. image: {
  7627. source: "./media/characters/aura-starwind/front.svg",
  7628. extra: 1455 / 1335
  7629. }
  7630. },
  7631. side: {
  7632. height: math.unit(14, "feet"),
  7633. weight: math.unit(1450, "kg"),
  7634. capacity: math.unit(15, "people"),
  7635. name: "Side",
  7636. image: {
  7637. source: "./media/characters/aura-starwind/side.svg",
  7638. extra: 1654 / 1497
  7639. }
  7640. },
  7641. taur: {
  7642. height: math.unit(18, "feet"),
  7643. weight: math.unit(5500, "kg"),
  7644. capacity: math.unit(50, "people"),
  7645. name: "Taur",
  7646. image: {
  7647. source: "./media/characters/aura-starwind/taur.svg",
  7648. extra: 1760 / 1650
  7649. }
  7650. },
  7651. feral: {
  7652. height: math.unit(46, "feet"),
  7653. weight: math.unit(25000, "kg"),
  7654. capacity: math.unit(120, "people"),
  7655. name: "Feral",
  7656. image: {
  7657. source: "./media/characters/aura-starwind/feral.svg"
  7658. }
  7659. },
  7660. },
  7661. [
  7662. {
  7663. name: "Normal",
  7664. height: math.unit(14, "feet"),
  7665. default: true
  7666. },
  7667. {
  7668. name: "Macro",
  7669. height: math.unit(50, "meters")
  7670. },
  7671. {
  7672. name: "Megamacro",
  7673. height: math.unit(5000, "meters")
  7674. },
  7675. {
  7676. name: "Gigamacro",
  7677. height: math.unit(100000, "kilometers")
  7678. },
  7679. ]
  7680. ))
  7681. characterMakers.push(() => makeCharacter(
  7682. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7683. {
  7684. front: {
  7685. height: math.unit(2 + 7 / 12, "feet"),
  7686. weight: math.unit(32, "lbs"),
  7687. name: "Front",
  7688. image: {
  7689. source: "./media/characters/rivet/front.svg",
  7690. extra: 1716 / 1658,
  7691. bottom: 0.03
  7692. }
  7693. },
  7694. foot: {
  7695. height: math.unit(0.551, "feet"),
  7696. name: "Rivet's Foot",
  7697. image: {
  7698. source: "./media/characters/rivet/foot.svg"
  7699. },
  7700. rename: true
  7701. }
  7702. },
  7703. [
  7704. {
  7705. name: "Micro",
  7706. height: math.unit(1.5, "inches"),
  7707. },
  7708. {
  7709. name: "Normal",
  7710. height: math.unit(2 + 7 / 12, "feet"),
  7711. default: true
  7712. },
  7713. {
  7714. name: "Macro",
  7715. height: math.unit(85, "feet")
  7716. },
  7717. {
  7718. name: "Megamacro",
  7719. height: math.unit(2.2, "km")
  7720. }
  7721. ]
  7722. ))
  7723. characterMakers.push(() => makeCharacter(
  7724. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7725. {
  7726. front: {
  7727. height: math.unit(5 + 9 / 12, "feet"),
  7728. weight: math.unit(150, "lbs"),
  7729. name: "Front",
  7730. image: {
  7731. source: "./media/characters/coffee/front.svg",
  7732. extra: 3666 / 3032,
  7733. bottom: 0.04
  7734. }
  7735. },
  7736. foot: {
  7737. height: math.unit(1.29, "feet"),
  7738. name: "Foot",
  7739. image: {
  7740. source: "./media/characters/coffee/foot.svg"
  7741. }
  7742. },
  7743. },
  7744. [
  7745. {
  7746. name: "Micro",
  7747. height: math.unit(2, "inches"),
  7748. },
  7749. {
  7750. name: "Normal",
  7751. height: math.unit(5 + 9 / 12, "feet"),
  7752. default: true
  7753. },
  7754. {
  7755. name: "Macro",
  7756. height: math.unit(800, "feet")
  7757. },
  7758. {
  7759. name: "Megamacro",
  7760. height: math.unit(25, "miles")
  7761. }
  7762. ]
  7763. ))
  7764. characterMakers.push(() => makeCharacter(
  7765. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7766. {
  7767. front: {
  7768. height: math.unit(6, "feet"),
  7769. weight: math.unit(200, "lbs"),
  7770. name: "Front",
  7771. image: {
  7772. source: "./media/characters/chari-gal/front.svg",
  7773. extra: 1568 / 1385,
  7774. bottom: 0.047
  7775. }
  7776. },
  7777. gigantamax: {
  7778. height: math.unit(6 * 16, "feet"),
  7779. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7780. name: "Gigantamax",
  7781. image: {
  7782. source: "./media/characters/chari-gal/gigantamax.svg",
  7783. extra: 1124 / 888,
  7784. bottom: 0.03
  7785. }
  7786. },
  7787. },
  7788. [
  7789. {
  7790. name: "Normal",
  7791. height: math.unit(5 + 7 / 12, "feet")
  7792. },
  7793. {
  7794. name: "Macro",
  7795. height: math.unit(200, "feet"),
  7796. default: true
  7797. }
  7798. ]
  7799. ))
  7800. characterMakers.push(() => makeCharacter(
  7801. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7802. {
  7803. front: {
  7804. height: math.unit(6, "feet"),
  7805. weight: math.unit(150, "lbs"),
  7806. name: "Front",
  7807. image: {
  7808. source: "./media/characters/nova/front.svg",
  7809. extra: 5000 / 4722,
  7810. bottom: 0.02
  7811. }
  7812. }
  7813. },
  7814. [
  7815. {
  7816. name: "Micro-",
  7817. height: math.unit(0.8, "inches")
  7818. },
  7819. {
  7820. name: "Micro",
  7821. height: math.unit(2, "inches"),
  7822. default: true
  7823. },
  7824. ]
  7825. ))
  7826. characterMakers.push(() => makeCharacter(
  7827. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7828. {
  7829. front: {
  7830. height: math.unit(3 + 1 / 12, "feet"),
  7831. weight: math.unit(21.7, "lbs"),
  7832. name: "Front",
  7833. image: {
  7834. source: "./media/characters/argent/front.svg",
  7835. extra: 1471 / 1331,
  7836. bottom: 100.8 / 1575.5
  7837. }
  7838. }
  7839. },
  7840. [
  7841. {
  7842. name: "Micro",
  7843. height: math.unit(2, "inches")
  7844. },
  7845. {
  7846. name: "Normal",
  7847. height: math.unit(3 + 1 / 12, "feet"),
  7848. default: true
  7849. },
  7850. {
  7851. name: "Macro",
  7852. height: math.unit(120, "feet")
  7853. },
  7854. ]
  7855. ))
  7856. characterMakers.push(() => makeCharacter(
  7857. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7858. {
  7859. lamp: {
  7860. height: math.unit(7 * 1559 / 989, "feet"),
  7861. name: "Magic Lamp",
  7862. image: {
  7863. source: "./media/characters/mira-al-cul/lamp.svg",
  7864. extra: 1617 / 1559
  7865. }
  7866. },
  7867. front: {
  7868. height: math.unit(7, "feet"),
  7869. name: "Front",
  7870. image: {
  7871. source: "./media/characters/mira-al-cul/front.svg",
  7872. extra: 1044 / 990
  7873. }
  7874. },
  7875. },
  7876. [
  7877. {
  7878. name: "Heavily Restricted",
  7879. height: math.unit(7 * 1559 / 989, "feet")
  7880. },
  7881. {
  7882. name: "Freshly Freed",
  7883. height: math.unit(50 * 1559 / 989, "feet")
  7884. },
  7885. {
  7886. name: "World Encompassing",
  7887. height: math.unit(10000 * 1559 / 989, "miles")
  7888. },
  7889. {
  7890. name: "Galactic",
  7891. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7892. },
  7893. {
  7894. name: "Palmed Universe",
  7895. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7896. default: true
  7897. },
  7898. {
  7899. name: "Multiversal Matriarch",
  7900. height: math.unit(8.87e10, "yottameters")
  7901. },
  7902. {
  7903. name: "Void Mother",
  7904. height: math.unit(3.14e110, "yottaparsecs")
  7905. },
  7906. {
  7907. name: "Toying with Transcendence",
  7908. height: math.unit(1e307, "meters")
  7909. },
  7910. ]
  7911. ))
  7912. characterMakers.push(() => makeCharacter(
  7913. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7914. {
  7915. front: {
  7916. height: math.unit(17 + 1 / 12, "feet"),
  7917. weight: math.unit(476.2 * 5, "lbs"),
  7918. name: "Front",
  7919. image: {
  7920. source: "./media/characters/kuro-shi-uchū/front.svg",
  7921. extra: 2329 / 1835,
  7922. bottom: 0.02
  7923. }
  7924. },
  7925. },
  7926. [
  7927. {
  7928. name: "Micro",
  7929. height: math.unit(2, "inches")
  7930. },
  7931. {
  7932. name: "Normal",
  7933. height: math.unit(12, "meters")
  7934. },
  7935. {
  7936. name: "Planetary",
  7937. height: math.unit(0.00929, "AU"),
  7938. default: true
  7939. },
  7940. {
  7941. name: "Universal",
  7942. height: math.unit(20, "gigaparsecs")
  7943. },
  7944. ]
  7945. ))
  7946. characterMakers.push(() => makeCharacter(
  7947. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7948. {
  7949. front: {
  7950. height: math.unit(5 + 2 / 12, "feet"),
  7951. weight: math.unit(120, "lbs"),
  7952. name: "Front",
  7953. image: {
  7954. source: "./media/characters/katherine/front.svg",
  7955. extra: 2075 / 1969
  7956. }
  7957. },
  7958. dress: {
  7959. height: math.unit(5 + 2 / 12, "feet"),
  7960. weight: math.unit(120, "lbs"),
  7961. name: "Dress",
  7962. image: {
  7963. source: "./media/characters/katherine/dress.svg",
  7964. extra: 2258 / 2064
  7965. }
  7966. },
  7967. },
  7968. [
  7969. {
  7970. name: "Micro",
  7971. height: math.unit(1, "inches"),
  7972. default: true
  7973. },
  7974. {
  7975. name: "Normal",
  7976. height: math.unit(5 + 2 / 12, "feet")
  7977. },
  7978. {
  7979. name: "Macro",
  7980. height: math.unit(100, "meters")
  7981. },
  7982. {
  7983. name: "Megamacro",
  7984. height: math.unit(80, "miles")
  7985. },
  7986. ]
  7987. ))
  7988. characterMakers.push(() => makeCharacter(
  7989. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7990. {
  7991. front: {
  7992. height: math.unit(7 + 8 / 12, "feet"),
  7993. weight: math.unit(250, "lbs"),
  7994. name: "Front",
  7995. image: {
  7996. source: "./media/characters/yevis/front.svg",
  7997. extra: 1938 / 1755
  7998. }
  7999. }
  8000. },
  8001. [
  8002. {
  8003. name: "Mortal",
  8004. height: math.unit(7 + 8 / 12, "feet")
  8005. },
  8006. {
  8007. name: "Battle",
  8008. height: math.unit(25 + 11 / 12, "feet")
  8009. },
  8010. {
  8011. name: "Wrath",
  8012. height: math.unit(1654 + 11 / 12, "feet")
  8013. },
  8014. {
  8015. name: "Planet Destroyer",
  8016. height: math.unit(12000, "miles")
  8017. },
  8018. {
  8019. name: "Galaxy Conqueror",
  8020. height: math.unit(1.45, "zettameters"),
  8021. default: true
  8022. },
  8023. {
  8024. name: "Universal War",
  8025. height: math.unit(184, "gigaparsecs")
  8026. },
  8027. {
  8028. name: "Eternity War",
  8029. height: math.unit(1.98e55, "yottaparsecs")
  8030. },
  8031. ]
  8032. ))
  8033. characterMakers.push(() => makeCharacter(
  8034. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8035. {
  8036. front: {
  8037. height: math.unit(5 + 8 / 12, "feet"),
  8038. weight: math.unit(63, "kg"),
  8039. name: "Front",
  8040. image: {
  8041. source: "./media/characters/xavier/front.svg",
  8042. extra: 944 / 883
  8043. }
  8044. },
  8045. frontStretch: {
  8046. height: math.unit(5 + 8 / 12, "feet"),
  8047. weight: math.unit(63, "kg"),
  8048. name: "Stretching",
  8049. image: {
  8050. source: "./media/characters/xavier/front-stretch.svg",
  8051. extra: 962 / 820
  8052. }
  8053. },
  8054. },
  8055. [
  8056. {
  8057. name: "Normal",
  8058. height: math.unit(5 + 8 / 12, "feet")
  8059. },
  8060. {
  8061. name: "Macro",
  8062. height: math.unit(100, "meters"),
  8063. default: true
  8064. },
  8065. {
  8066. name: "McLargeHuge",
  8067. height: math.unit(10, "miles")
  8068. },
  8069. ]
  8070. ))
  8071. characterMakers.push(() => makeCharacter(
  8072. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8073. {
  8074. front: {
  8075. height: math.unit(5 + 5 / 12, "feet"),
  8076. weight: math.unit(150, "lb"),
  8077. name: "Front",
  8078. image: {
  8079. source: "./media/characters/joshii/front.svg",
  8080. extra: 765 / 653,
  8081. bottom: 51 / 816
  8082. }
  8083. },
  8084. foot: {
  8085. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8086. name: "Foot",
  8087. image: {
  8088. source: "./media/characters/joshii/foot.svg"
  8089. }
  8090. },
  8091. },
  8092. [
  8093. {
  8094. name: "Micro",
  8095. height: math.unit(2, "inches"),
  8096. default: true
  8097. },
  8098. {
  8099. name: "Normal",
  8100. height: math.unit(5 + 5 / 12, "feet")
  8101. },
  8102. {
  8103. name: "Macro",
  8104. height: math.unit(785, "feet")
  8105. },
  8106. {
  8107. name: "Megamacro",
  8108. height: math.unit(24.5, "miles")
  8109. },
  8110. ]
  8111. ))
  8112. characterMakers.push(() => makeCharacter(
  8113. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8114. {
  8115. front: {
  8116. height: math.unit(6, "feet"),
  8117. weight: math.unit(150, "lb"),
  8118. name: "Front",
  8119. image: {
  8120. source: "./media/characters/goddess-elizabeth/front.svg",
  8121. extra: 1800 / 1525,
  8122. bottom: 0.005
  8123. }
  8124. },
  8125. foot: {
  8126. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8127. name: "Foot",
  8128. image: {
  8129. source: "./media/characters/goddess-elizabeth/foot.svg"
  8130. }
  8131. },
  8132. mouth: {
  8133. height: math.unit(6, "feet"),
  8134. name: "Mouth",
  8135. image: {
  8136. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8137. }
  8138. },
  8139. },
  8140. [
  8141. {
  8142. name: "Micro",
  8143. height: math.unit(12, "feet")
  8144. },
  8145. {
  8146. name: "Normal",
  8147. height: math.unit(80, "miles"),
  8148. default: true
  8149. },
  8150. {
  8151. name: "Macro",
  8152. height: math.unit(15000, "parsecs")
  8153. },
  8154. ]
  8155. ))
  8156. characterMakers.push(() => makeCharacter(
  8157. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8158. {
  8159. front: {
  8160. height: math.unit(5 + 9 / 12, "feet"),
  8161. weight: math.unit(144, "lb"),
  8162. name: "Front",
  8163. image: {
  8164. source: "./media/characters/kara/front.svg"
  8165. }
  8166. },
  8167. feet: {
  8168. height: math.unit(6 / 6.765, "feet"),
  8169. name: "Kara's Feet",
  8170. rename: true,
  8171. image: {
  8172. source: "./media/characters/kara/feet.svg"
  8173. }
  8174. },
  8175. },
  8176. [
  8177. {
  8178. name: "Normal",
  8179. height: math.unit(5 + 9 / 12, "feet")
  8180. },
  8181. {
  8182. name: "Macro",
  8183. height: math.unit(174, "feet"),
  8184. default: true
  8185. },
  8186. ]
  8187. ))
  8188. characterMakers.push(() => makeCharacter(
  8189. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8190. {
  8191. front: {
  8192. height: math.unit(18, "feet"),
  8193. weight: math.unit(4050, "lb"),
  8194. name: "Front",
  8195. image: {
  8196. source: "./media/characters/tyrone/front.svg",
  8197. extra: 2405 / 2270,
  8198. bottom: 182 / 2587
  8199. }
  8200. },
  8201. },
  8202. [
  8203. {
  8204. name: "Normal",
  8205. height: math.unit(18, "feet"),
  8206. default: true
  8207. },
  8208. {
  8209. name: "Macro",
  8210. height: math.unit(300, "feet")
  8211. },
  8212. {
  8213. name: "Megamacro",
  8214. height: math.unit(15, "km")
  8215. },
  8216. {
  8217. name: "Gigamacro",
  8218. height: math.unit(500, "km")
  8219. },
  8220. {
  8221. name: "Teramacro",
  8222. height: math.unit(0.5, "gigameters")
  8223. },
  8224. {
  8225. name: "Omnimacro",
  8226. height: math.unit(1e252, "yottauniverse")
  8227. },
  8228. ]
  8229. ))
  8230. characterMakers.push(() => makeCharacter(
  8231. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8232. {
  8233. front: {
  8234. height: math.unit(7 + 8 / 12, "feet"),
  8235. weight: math.unit(120, "lb"),
  8236. name: "Front",
  8237. image: {
  8238. source: "./media/characters/danny/front.svg",
  8239. extra: 1490 / 1350
  8240. }
  8241. },
  8242. back: {
  8243. height: math.unit(7 + 8 / 12, "feet"),
  8244. weight: math.unit(120, "lb"),
  8245. name: "Back",
  8246. image: {
  8247. source: "./media/characters/danny/back.svg",
  8248. extra: 1490 / 1350
  8249. }
  8250. },
  8251. },
  8252. [
  8253. {
  8254. name: "Normal",
  8255. height: math.unit(7 + 8 / 12, "feet"),
  8256. default: true
  8257. },
  8258. ]
  8259. ))
  8260. characterMakers.push(() => makeCharacter(
  8261. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8262. {
  8263. front: {
  8264. height: math.unit(3.5, "inches"),
  8265. weight: math.unit(19, "grams"),
  8266. name: "Front",
  8267. image: {
  8268. source: "./media/characters/mallow/front.svg",
  8269. extra: 471 / 431
  8270. }
  8271. },
  8272. back: {
  8273. height: math.unit(3.5, "inches"),
  8274. weight: math.unit(19, "grams"),
  8275. name: "Back",
  8276. image: {
  8277. source: "./media/characters/mallow/back.svg",
  8278. extra: 471 / 431
  8279. }
  8280. },
  8281. },
  8282. [
  8283. {
  8284. name: "Normal",
  8285. height: math.unit(3.5, "inches"),
  8286. default: true
  8287. },
  8288. ]
  8289. ))
  8290. characterMakers.push(() => makeCharacter(
  8291. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8292. {
  8293. front: {
  8294. height: math.unit(9, "feet"),
  8295. weight: math.unit(230, "kg"),
  8296. name: "Front",
  8297. image: {
  8298. source: "./media/characters/starry-aqua/front.svg"
  8299. }
  8300. },
  8301. back: {
  8302. height: math.unit(9, "feet"),
  8303. weight: math.unit(230, "kg"),
  8304. name: "Back",
  8305. image: {
  8306. source: "./media/characters/starry-aqua/back.svg"
  8307. }
  8308. },
  8309. hand: {
  8310. height: math.unit(9 * 0.1168, "feet"),
  8311. name: "Hand",
  8312. image: {
  8313. source: "./media/characters/starry-aqua/hand.svg"
  8314. }
  8315. },
  8316. foot: {
  8317. height: math.unit(9 * 0.18, "feet"),
  8318. name: "Foot",
  8319. image: {
  8320. source: "./media/characters/starry-aqua/foot.svg"
  8321. }
  8322. }
  8323. },
  8324. [
  8325. {
  8326. name: "Micro",
  8327. height: math.unit(3, "inches")
  8328. },
  8329. {
  8330. name: "Normal",
  8331. height: math.unit(9, "feet")
  8332. },
  8333. {
  8334. name: "Macro",
  8335. height: math.unit(300, "feet"),
  8336. default: true
  8337. },
  8338. {
  8339. name: "Megamacro",
  8340. height: math.unit(3200, "feet")
  8341. }
  8342. ]
  8343. ))
  8344. characterMakers.push(() => makeCharacter(
  8345. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8346. {
  8347. front: {
  8348. height: math.unit(6, "feet"),
  8349. weight: math.unit(230, "lb"),
  8350. name: "Front",
  8351. image: {
  8352. source: "./media/characters/luka/front.svg",
  8353. extra: 1,
  8354. bottom: 0.025
  8355. }
  8356. },
  8357. },
  8358. [
  8359. {
  8360. name: "Normal",
  8361. height: math.unit(12 + 8 / 12, "feet"),
  8362. default: true
  8363. },
  8364. {
  8365. name: "Minimacro",
  8366. height: math.unit(20, "feet")
  8367. },
  8368. {
  8369. name: "Macro",
  8370. height: math.unit(250, "feet")
  8371. },
  8372. {
  8373. name: "Megamacro",
  8374. height: math.unit(5, "miles")
  8375. },
  8376. {
  8377. name: "Gigamacro",
  8378. height: math.unit(8000, "miles")
  8379. },
  8380. ]
  8381. ))
  8382. characterMakers.push(() => makeCharacter(
  8383. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8384. {
  8385. front: {
  8386. height: math.unit(6, "feet"),
  8387. weight: math.unit(150, "lb"),
  8388. name: "Front",
  8389. image: {
  8390. source: "./media/characters/natalie-nightring/front.svg",
  8391. extra: 1,
  8392. bottom: 0.06
  8393. }
  8394. },
  8395. },
  8396. [
  8397. {
  8398. name: "Uh Oh",
  8399. height: math.unit(0.1, "mm")
  8400. },
  8401. {
  8402. name: "Small",
  8403. height: math.unit(3, "inches")
  8404. },
  8405. {
  8406. name: "Human Scale",
  8407. height: math.unit(6, "feet")
  8408. },
  8409. {
  8410. name: "Librarian",
  8411. height: math.unit(50, "feet"),
  8412. default: true
  8413. },
  8414. {
  8415. name: "Immense",
  8416. height: math.unit(200, "miles")
  8417. },
  8418. ]
  8419. ))
  8420. characterMakers.push(() => makeCharacter(
  8421. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8422. {
  8423. front: {
  8424. height: math.unit(6, "feet"),
  8425. weight: math.unit(180, "lbs"),
  8426. name: "Front",
  8427. image: {
  8428. source: "./media/characters/danni-rosie/front.svg",
  8429. extra: 1260 / 1128,
  8430. bottom: 0.022
  8431. }
  8432. },
  8433. },
  8434. [
  8435. {
  8436. name: "Micro",
  8437. height: math.unit(2, "inches"),
  8438. default: true
  8439. },
  8440. ]
  8441. ))
  8442. characterMakers.push(() => makeCharacter(
  8443. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8444. {
  8445. front: {
  8446. height: math.unit(5 + 9 / 12, "feet"),
  8447. weight: math.unit(220, "lb"),
  8448. name: "Front",
  8449. image: {
  8450. source: "./media/characters/samantha-kruse/front.svg",
  8451. extra: (985 / 935),
  8452. bottom: 0.03
  8453. }
  8454. },
  8455. frontUndressed: {
  8456. height: math.unit(5 + 9 / 12, "feet"),
  8457. weight: math.unit(220, "lb"),
  8458. name: "Front (Undressed)",
  8459. image: {
  8460. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8461. extra: (973 / 923),
  8462. bottom: 0.025
  8463. }
  8464. },
  8465. fat: {
  8466. height: math.unit(5 + 9 / 12, "feet"),
  8467. weight: math.unit(900, "lb"),
  8468. name: "Front (Fat)",
  8469. image: {
  8470. source: "./media/characters/samantha-kruse/fat.svg",
  8471. extra: 2688 / 2561
  8472. }
  8473. },
  8474. },
  8475. [
  8476. {
  8477. name: "Normal",
  8478. height: math.unit(5 + 9 / 12, "feet"),
  8479. default: true
  8480. }
  8481. ]
  8482. ))
  8483. characterMakers.push(() => makeCharacter(
  8484. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8485. {
  8486. back: {
  8487. height: math.unit(5 + 4 / 12, "feet"),
  8488. weight: math.unit(4963, "lb"),
  8489. name: "Back",
  8490. image: {
  8491. source: "./media/characters/amelia-rosie/back.svg",
  8492. extra: 1113 / 963,
  8493. bottom: 0.01
  8494. }
  8495. },
  8496. },
  8497. [
  8498. {
  8499. name: "Level 0",
  8500. height: math.unit(5 + 4 / 12, "feet")
  8501. },
  8502. {
  8503. name: "Level 1",
  8504. height: math.unit(164597, "feet"),
  8505. default: true
  8506. },
  8507. {
  8508. name: "Level 2",
  8509. height: math.unit(956243, "miles")
  8510. },
  8511. {
  8512. name: "Level 3",
  8513. height: math.unit(29421709423, "miles")
  8514. },
  8515. {
  8516. name: "Level 4",
  8517. height: math.unit(154, "lightyears")
  8518. },
  8519. {
  8520. name: "Level 5",
  8521. height: math.unit(4738272, "lightyears")
  8522. },
  8523. {
  8524. name: "Level 6",
  8525. height: math.unit(145787152896, "lightyears")
  8526. },
  8527. ]
  8528. ))
  8529. characterMakers.push(() => makeCharacter(
  8530. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8531. {
  8532. front: {
  8533. height: math.unit(5 + 11 / 12, "feet"),
  8534. weight: math.unit(65, "kg"),
  8535. name: "Front",
  8536. image: {
  8537. source: "./media/characters/rook-kitara/front.svg",
  8538. extra: 1347 / 1274,
  8539. bottom: 0.005
  8540. }
  8541. },
  8542. },
  8543. [
  8544. {
  8545. name: "Totally Unfair",
  8546. height: math.unit(1.8, "mm")
  8547. },
  8548. {
  8549. name: "Lap Rookie",
  8550. height: math.unit(1.4, "feet")
  8551. },
  8552. {
  8553. name: "Normal",
  8554. height: math.unit(5 + 11 / 12, "feet"),
  8555. default: true
  8556. },
  8557. {
  8558. name: "How Did This Happen",
  8559. height: math.unit(80, "miles")
  8560. }
  8561. ]
  8562. ))
  8563. characterMakers.push(() => makeCharacter(
  8564. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8565. {
  8566. front: {
  8567. height: math.unit(7, "feet"),
  8568. weight: math.unit(300, "lb"),
  8569. name: "Front",
  8570. image: {
  8571. source: "./media/characters/pisces/front.svg",
  8572. extra: 2255 / 2115,
  8573. bottom: 0.03
  8574. }
  8575. },
  8576. back: {
  8577. height: math.unit(7, "feet"),
  8578. weight: math.unit(300, "lb"),
  8579. name: "Back",
  8580. image: {
  8581. source: "./media/characters/pisces/back.svg",
  8582. extra: 2146 / 2055,
  8583. bottom: 0.04
  8584. }
  8585. },
  8586. },
  8587. [
  8588. {
  8589. name: "Normal",
  8590. height: math.unit(7, "feet"),
  8591. default: true
  8592. },
  8593. {
  8594. name: "Swimming Pool",
  8595. height: math.unit(12.2, "meters")
  8596. },
  8597. {
  8598. name: "Olympic Swimming Pool",
  8599. height: math.unit(56.3, "meters")
  8600. },
  8601. {
  8602. name: "Lake Superior",
  8603. height: math.unit(93900, "meters")
  8604. },
  8605. {
  8606. name: "Mediterranean Sea",
  8607. height: math.unit(644457, "meters")
  8608. },
  8609. {
  8610. name: "World's Oceans",
  8611. height: math.unit(4567491, "meters")
  8612. },
  8613. ]
  8614. ))
  8615. characterMakers.push(() => makeCharacter(
  8616. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8617. {
  8618. front: {
  8619. height: math.unit(2.3, "meters"),
  8620. weight: math.unit(120, "kg"),
  8621. name: "Front",
  8622. image: {
  8623. source: "./media/characters/zelas/front.svg"
  8624. }
  8625. },
  8626. side: {
  8627. height: math.unit(2.3, "meters"),
  8628. weight: math.unit(120, "kg"),
  8629. name: "Side",
  8630. image: {
  8631. source: "./media/characters/zelas/side.svg"
  8632. }
  8633. },
  8634. back: {
  8635. height: math.unit(2.3, "meters"),
  8636. weight: math.unit(120, "kg"),
  8637. name: "Back",
  8638. image: {
  8639. source: "./media/characters/zelas/back.svg"
  8640. }
  8641. },
  8642. foot: {
  8643. height: math.unit(1.116, "feet"),
  8644. name: "Foot",
  8645. image: {
  8646. source: "./media/characters/zelas/foot.svg"
  8647. }
  8648. },
  8649. },
  8650. [
  8651. {
  8652. name: "Normal",
  8653. height: math.unit(2.3, "meters")
  8654. },
  8655. {
  8656. name: "Macro",
  8657. height: math.unit(30, "meters"),
  8658. default: true
  8659. },
  8660. ]
  8661. ))
  8662. characterMakers.push(() => makeCharacter(
  8663. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8664. {
  8665. front: {
  8666. height: math.unit(1, "inch"),
  8667. weight: math.unit(0.21, "grams"),
  8668. name: "Front",
  8669. image: {
  8670. source: "./media/characters/talbot/front.svg",
  8671. extra: 594 / 544
  8672. }
  8673. },
  8674. },
  8675. [
  8676. {
  8677. name: "Micro",
  8678. height: math.unit(1, "inch"),
  8679. default: true
  8680. },
  8681. ]
  8682. ))
  8683. characterMakers.push(() => makeCharacter(
  8684. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8685. {
  8686. front: {
  8687. height: math.unit(3 + 3 / 12, "feet"),
  8688. weight: math.unit(51.8, "lb"),
  8689. name: "Front",
  8690. image: {
  8691. source: "./media/characters/fliss/front.svg",
  8692. extra: 840 / 640
  8693. }
  8694. },
  8695. },
  8696. [
  8697. {
  8698. name: "Teeny Tiny",
  8699. height: math.unit(1, "mm")
  8700. },
  8701. {
  8702. name: "Small",
  8703. height: math.unit(1, "inch"),
  8704. default: true
  8705. },
  8706. {
  8707. name: "Standard Sylveon",
  8708. height: math.unit(3 + 3 / 12, "feet")
  8709. },
  8710. {
  8711. name: "Large Nuisance",
  8712. height: math.unit(33, "feet")
  8713. },
  8714. {
  8715. name: "City Filler",
  8716. height: math.unit(3000, "feet")
  8717. },
  8718. {
  8719. name: "New Horizon",
  8720. height: math.unit(6000, "miles")
  8721. },
  8722. ]
  8723. ))
  8724. characterMakers.push(() => makeCharacter(
  8725. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8726. {
  8727. front: {
  8728. height: math.unit(5, "cm"),
  8729. weight: math.unit(1.94, "g"),
  8730. name: "Front",
  8731. image: {
  8732. source: "./media/characters/fleta/front.svg",
  8733. extra: 835 / 803
  8734. }
  8735. },
  8736. back: {
  8737. height: math.unit(5, "cm"),
  8738. weight: math.unit(1.94, "g"),
  8739. name: "Back",
  8740. image: {
  8741. source: "./media/characters/fleta/back.svg",
  8742. extra: 835 / 803
  8743. }
  8744. },
  8745. },
  8746. [
  8747. {
  8748. name: "Micro",
  8749. height: math.unit(5, "cm"),
  8750. default: true
  8751. },
  8752. ]
  8753. ))
  8754. characterMakers.push(() => makeCharacter(
  8755. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8756. {
  8757. front: {
  8758. height: math.unit(6, "feet"),
  8759. weight: math.unit(225, "lb"),
  8760. name: "Front",
  8761. image: {
  8762. source: "./media/characters/dominic/front.svg",
  8763. extra: 1770 / 1620,
  8764. bottom: 0.025
  8765. }
  8766. },
  8767. back: {
  8768. height: math.unit(6, "feet"),
  8769. weight: math.unit(225, "lb"),
  8770. name: "Back",
  8771. image: {
  8772. source: "./media/characters/dominic/back.svg",
  8773. extra: 1745 / 1620,
  8774. bottom: 0.065
  8775. }
  8776. },
  8777. },
  8778. [
  8779. {
  8780. name: "Nano",
  8781. height: math.unit(0.1, "mm")
  8782. },
  8783. {
  8784. name: "Micro-",
  8785. height: math.unit(1, "mm")
  8786. },
  8787. {
  8788. name: "Micro",
  8789. height: math.unit(4, "inches")
  8790. },
  8791. {
  8792. name: "Normal",
  8793. height: math.unit(6 + 4 / 12, "feet"),
  8794. default: true
  8795. },
  8796. {
  8797. name: "Macro",
  8798. height: math.unit(115, "feet")
  8799. },
  8800. {
  8801. name: "Macro+",
  8802. height: math.unit(955, "feet")
  8803. },
  8804. {
  8805. name: "Megamacro",
  8806. height: math.unit(8990, "feet")
  8807. },
  8808. {
  8809. name: "Gigmacro",
  8810. height: math.unit(9310, "miles")
  8811. },
  8812. {
  8813. name: "Teramacro",
  8814. height: math.unit(1567005010, "miles")
  8815. },
  8816. {
  8817. name: "Examacro",
  8818. height: math.unit(1425, "parsecs")
  8819. },
  8820. ]
  8821. ))
  8822. characterMakers.push(() => makeCharacter(
  8823. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8824. {
  8825. front: {
  8826. height: math.unit(400, "feet"),
  8827. weight: math.unit(44444444, "lb"),
  8828. name: "Front",
  8829. image: {
  8830. source: "./media/characters/major-colonel/front.svg"
  8831. }
  8832. },
  8833. back: {
  8834. height: math.unit(400, "feet"),
  8835. weight: math.unit(44444444, "lb"),
  8836. name: "Back",
  8837. image: {
  8838. source: "./media/characters/major-colonel/back.svg"
  8839. }
  8840. },
  8841. },
  8842. [
  8843. {
  8844. name: "Macro",
  8845. height: math.unit(400, "feet"),
  8846. default: true
  8847. },
  8848. ]
  8849. ))
  8850. characterMakers.push(() => makeCharacter(
  8851. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8852. {
  8853. catFront: {
  8854. height: math.unit(6, "feet"),
  8855. weight: math.unit(120, "lb"),
  8856. name: "Front (Cat Side)",
  8857. image: {
  8858. source: "./media/characters/axel-lycan/cat-front.svg",
  8859. extra: 430 / 402,
  8860. bottom: 43 / 472.35
  8861. }
  8862. },
  8863. catBack: {
  8864. height: math.unit(6, "feet"),
  8865. weight: math.unit(120, "lb"),
  8866. name: "Back (Cat Side)",
  8867. image: {
  8868. source: "./media/characters/axel-lycan/cat-back.svg",
  8869. extra: 447 / 419,
  8870. bottom: 23.3 / 469
  8871. }
  8872. },
  8873. wolfFront: {
  8874. height: math.unit(6, "feet"),
  8875. weight: math.unit(120, "lb"),
  8876. name: "Front (Wolf Side)",
  8877. image: {
  8878. source: "./media/characters/axel-lycan/wolf-front.svg",
  8879. extra: 485 / 456,
  8880. bottom: 19 / 504
  8881. }
  8882. },
  8883. wolfBack: {
  8884. height: math.unit(6, "feet"),
  8885. weight: math.unit(120, "lb"),
  8886. name: "Back (Wolf Side)",
  8887. image: {
  8888. source: "./media/characters/axel-lycan/wolf-back.svg",
  8889. extra: 475 / 438,
  8890. bottom: 39.2 / 514
  8891. }
  8892. },
  8893. },
  8894. [
  8895. {
  8896. name: "Macro",
  8897. height: math.unit(1, "km"),
  8898. default: true
  8899. },
  8900. ]
  8901. ))
  8902. characterMakers.push(() => makeCharacter(
  8903. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8904. {
  8905. front: {
  8906. height: math.unit(5 + 9 / 12, "feet"),
  8907. weight: math.unit(175, "lb"),
  8908. name: "Front",
  8909. image: {
  8910. source: "./media/characters/vanrel-hyena/front.svg",
  8911. extra: 1086 / 1010,
  8912. bottom: 0.04
  8913. }
  8914. },
  8915. },
  8916. [
  8917. {
  8918. name: "Normal",
  8919. height: math.unit(5 + 9 / 12, "feet"),
  8920. default: true
  8921. },
  8922. ]
  8923. ))
  8924. characterMakers.push(() => makeCharacter(
  8925. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8926. {
  8927. front: {
  8928. height: math.unit(6, "feet"),
  8929. weight: math.unit(103, "lb"),
  8930. name: "Front",
  8931. image: {
  8932. source: "./media/characters/abbott-absol/front.svg",
  8933. extra: 2010 / 1842
  8934. }
  8935. },
  8936. },
  8937. [
  8938. {
  8939. name: "Megamicro",
  8940. height: math.unit(0.1, "mm")
  8941. },
  8942. {
  8943. name: "Micro",
  8944. height: math.unit(1, "inch")
  8945. },
  8946. {
  8947. name: "Normal",
  8948. height: math.unit(6, "feet"),
  8949. default: true
  8950. },
  8951. ]
  8952. ))
  8953. characterMakers.push(() => makeCharacter(
  8954. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8955. {
  8956. front: {
  8957. height: math.unit(6, "feet"),
  8958. weight: math.unit(264, "lb"),
  8959. name: "Front",
  8960. image: {
  8961. source: "./media/characters/hector/front.svg",
  8962. extra: 2280 / 2130,
  8963. bottom: 0.07
  8964. }
  8965. },
  8966. },
  8967. [
  8968. {
  8969. name: "Normal",
  8970. height: math.unit(12.25, "foot"),
  8971. default: true
  8972. },
  8973. {
  8974. name: "Macro",
  8975. height: math.unit(160, "feet")
  8976. },
  8977. ]
  8978. ))
  8979. characterMakers.push(() => makeCharacter(
  8980. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8981. {
  8982. front: {
  8983. height: math.unit(6, "feet"),
  8984. weight: math.unit(150, "lb"),
  8985. name: "Front",
  8986. image: {
  8987. source: "./media/characters/sal/front.svg",
  8988. extra: 1846 / 1699,
  8989. bottom: 0.04
  8990. }
  8991. },
  8992. },
  8993. [
  8994. {
  8995. name: "Megamacro",
  8996. height: math.unit(10, "miles"),
  8997. default: true
  8998. },
  8999. ]
  9000. ))
  9001. characterMakers.push(() => makeCharacter(
  9002. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9003. {
  9004. front: {
  9005. height: math.unit(3, "meters"),
  9006. weight: math.unit(450, "kg"),
  9007. name: "front",
  9008. image: {
  9009. source: "./media/characters/ranger/front.svg",
  9010. extra: 2401 / 2243,
  9011. bottom: 0.05
  9012. }
  9013. },
  9014. },
  9015. [
  9016. {
  9017. name: "Normal",
  9018. height: math.unit(3, "meters"),
  9019. default: true
  9020. },
  9021. ]
  9022. ))
  9023. characterMakers.push(() => makeCharacter(
  9024. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9025. {
  9026. front: {
  9027. height: math.unit(14, "feet"),
  9028. weight: math.unit(800, "kg"),
  9029. name: "Front",
  9030. image: {
  9031. source: "./media/characters/theresa/front.svg",
  9032. extra: 3575 / 3346,
  9033. bottom: 0.03
  9034. }
  9035. },
  9036. },
  9037. [
  9038. {
  9039. name: "Normal",
  9040. height: math.unit(14, "feet"),
  9041. default: true
  9042. },
  9043. ]
  9044. ))
  9045. characterMakers.push(() => makeCharacter(
  9046. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9047. {
  9048. front: {
  9049. height: math.unit(6, "feet"),
  9050. weight: math.unit(3, "kg"),
  9051. name: "Front",
  9052. image: {
  9053. source: "./media/characters/ine/front.svg",
  9054. extra: 678 / 539,
  9055. bottom: 0.023
  9056. }
  9057. },
  9058. },
  9059. [
  9060. {
  9061. name: "Normal",
  9062. height: math.unit(2.265, "feet"),
  9063. default: true
  9064. },
  9065. ]
  9066. ))
  9067. characterMakers.push(() => makeCharacter(
  9068. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9069. {
  9070. front: {
  9071. height: math.unit(5, "feet"),
  9072. weight: math.unit(30, "kg"),
  9073. name: "Front",
  9074. image: {
  9075. source: "./media/characters/vial/front.svg",
  9076. extra: 1365 / 1277,
  9077. bottom: 0.04
  9078. }
  9079. },
  9080. },
  9081. [
  9082. {
  9083. name: "Normal",
  9084. height: math.unit(5, "feet"),
  9085. default: true
  9086. },
  9087. ]
  9088. ))
  9089. characterMakers.push(() => makeCharacter(
  9090. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9091. {
  9092. side: {
  9093. height: math.unit(3.4, "meters"),
  9094. weight: math.unit(1000, "lb"),
  9095. name: "Side",
  9096. image: {
  9097. source: "./media/characters/rovoska/side.svg",
  9098. extra: 4403 / 1515
  9099. }
  9100. },
  9101. },
  9102. [
  9103. {
  9104. name: "Normal",
  9105. height: math.unit(3.4, "meters"),
  9106. default: true
  9107. },
  9108. ]
  9109. ))
  9110. characterMakers.push(() => makeCharacter(
  9111. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9112. {
  9113. front: {
  9114. height: math.unit(8, "feet"),
  9115. weight: math.unit(315, "lb"),
  9116. name: "Front",
  9117. image: {
  9118. source: "./media/characters/gunner-rotthbauer/front.svg"
  9119. }
  9120. },
  9121. back: {
  9122. height: math.unit(8, "feet"),
  9123. weight: math.unit(315, "lb"),
  9124. name: "Back",
  9125. image: {
  9126. source: "./media/characters/gunner-rotthbauer/back.svg"
  9127. }
  9128. },
  9129. },
  9130. [
  9131. {
  9132. name: "Micro",
  9133. height: math.unit(3.5, "inches")
  9134. },
  9135. {
  9136. name: "Normal",
  9137. height: math.unit(8, "feet"),
  9138. default: true
  9139. },
  9140. {
  9141. name: "Macro",
  9142. height: math.unit(250, "feet")
  9143. },
  9144. {
  9145. name: "Megamacro",
  9146. height: math.unit(1, "AU")
  9147. },
  9148. ]
  9149. ))
  9150. characterMakers.push(() => makeCharacter(
  9151. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9152. {
  9153. front: {
  9154. height: math.unit(5 + 5 / 12, "feet"),
  9155. weight: math.unit(140, "lb"),
  9156. name: "Front",
  9157. image: {
  9158. source: "./media/characters/allatia/front.svg",
  9159. extra: 1227 / 1180,
  9160. bottom: 0.027
  9161. }
  9162. },
  9163. },
  9164. [
  9165. {
  9166. name: "Normal",
  9167. height: math.unit(5 + 5 / 12, "feet")
  9168. },
  9169. {
  9170. name: "Macro",
  9171. height: math.unit(250, "feet"),
  9172. default: true
  9173. },
  9174. {
  9175. name: "Megamacro",
  9176. height: math.unit(8, "miles")
  9177. }
  9178. ]
  9179. ))
  9180. characterMakers.push(() => makeCharacter(
  9181. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9182. {
  9183. front: {
  9184. height: math.unit(6, "feet"),
  9185. weight: math.unit(120, "lb"),
  9186. name: "Front",
  9187. image: {
  9188. source: "./media/characters/tene/front.svg",
  9189. extra: 1728 / 1578,
  9190. bottom: 0.022
  9191. }
  9192. },
  9193. stomping: {
  9194. height: math.unit(2.025, "meters"),
  9195. weight: math.unit(120, "lb"),
  9196. name: "Stomping",
  9197. image: {
  9198. source: "./media/characters/tene/stomping.svg",
  9199. extra: 938 / 873,
  9200. bottom: 0.01
  9201. }
  9202. },
  9203. sitting: {
  9204. height: math.unit(1, "meter"),
  9205. weight: math.unit(120, "lb"),
  9206. name: "Sitting",
  9207. image: {
  9208. source: "./media/characters/tene/sitting.svg",
  9209. extra: 437 / 415,
  9210. bottom: 0.1
  9211. }
  9212. },
  9213. feral: {
  9214. height: math.unit(3.9, "feet"),
  9215. weight: math.unit(250, "lb"),
  9216. name: "Feral",
  9217. image: {
  9218. source: "./media/characters/tene/feral.svg",
  9219. extra: 717 / 458,
  9220. bottom: 0.179
  9221. }
  9222. },
  9223. },
  9224. [
  9225. {
  9226. name: "Normal",
  9227. height: math.unit(6, "feet")
  9228. },
  9229. {
  9230. name: "Macro",
  9231. height: math.unit(300, "feet"),
  9232. default: true
  9233. },
  9234. {
  9235. name: "Megamacro",
  9236. height: math.unit(5, "miles")
  9237. },
  9238. ]
  9239. ))
  9240. characterMakers.push(() => makeCharacter(
  9241. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9242. {
  9243. side: {
  9244. height: math.unit(6, "feet"),
  9245. name: "Side",
  9246. image: {
  9247. source: "./media/characters/evander/side.svg",
  9248. extra: 877 / 477
  9249. }
  9250. },
  9251. },
  9252. [
  9253. {
  9254. name: "Normal",
  9255. height: math.unit(0.83, "meters"),
  9256. default: true
  9257. },
  9258. ]
  9259. ))
  9260. characterMakers.push(() => makeCharacter(
  9261. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9262. {
  9263. front: {
  9264. height: math.unit(12, "feet"),
  9265. weight: math.unit(1000, "lb"),
  9266. name: "Front",
  9267. image: {
  9268. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9269. extra: 1762 / 1611
  9270. }
  9271. },
  9272. back: {
  9273. height: math.unit(12, "feet"),
  9274. weight: math.unit(1000, "lb"),
  9275. name: "Back",
  9276. image: {
  9277. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9278. extra: 1762 / 1611
  9279. }
  9280. },
  9281. },
  9282. [
  9283. {
  9284. name: "Normal",
  9285. height: math.unit(12, "feet"),
  9286. default: true
  9287. },
  9288. {
  9289. name: "Kaiju",
  9290. height: math.unit(150, "feet")
  9291. },
  9292. ]
  9293. ))
  9294. characterMakers.push(() => makeCharacter(
  9295. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9296. {
  9297. front: {
  9298. height: math.unit(6, "feet"),
  9299. weight: math.unit(150, "lb"),
  9300. name: "Front",
  9301. image: {
  9302. source: "./media/characters/zero-alurus/front.svg"
  9303. }
  9304. },
  9305. back: {
  9306. height: math.unit(6, "feet"),
  9307. weight: math.unit(150, "lb"),
  9308. name: "Back",
  9309. image: {
  9310. source: "./media/characters/zero-alurus/back.svg"
  9311. }
  9312. },
  9313. },
  9314. [
  9315. {
  9316. name: "Normal",
  9317. height: math.unit(5 + 10 / 12, "feet")
  9318. },
  9319. {
  9320. name: "Macro",
  9321. height: math.unit(60, "feet"),
  9322. default: true
  9323. },
  9324. {
  9325. name: "Macro+",
  9326. height: math.unit(450, "feet")
  9327. },
  9328. ]
  9329. ))
  9330. characterMakers.push(() => makeCharacter(
  9331. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9332. {
  9333. front: {
  9334. height: math.unit(6, "feet"),
  9335. weight: math.unit(200, "lb"),
  9336. name: "Front",
  9337. image: {
  9338. source: "./media/characters/mega-shi/front.svg",
  9339. extra: 1279 / 1250,
  9340. bottom: 0.02
  9341. }
  9342. },
  9343. back: {
  9344. height: math.unit(6, "feet"),
  9345. weight: math.unit(200, "lb"),
  9346. name: "Back",
  9347. image: {
  9348. source: "./media/characters/mega-shi/back.svg",
  9349. extra: 1279 / 1250,
  9350. bottom: 0.02
  9351. }
  9352. },
  9353. },
  9354. [
  9355. {
  9356. name: "Micro",
  9357. height: math.unit(16 + 6 / 12, "feet")
  9358. },
  9359. {
  9360. name: "Third Dimension",
  9361. height: math.unit(40, "meters")
  9362. },
  9363. {
  9364. name: "Normal",
  9365. height: math.unit(660, "feet"),
  9366. default: true
  9367. },
  9368. {
  9369. name: "Megamacro",
  9370. height: math.unit(10, "miles")
  9371. },
  9372. {
  9373. name: "Planetary Launch",
  9374. height: math.unit(500, "miles")
  9375. },
  9376. {
  9377. name: "Interstellar",
  9378. height: math.unit(1e9, "miles")
  9379. },
  9380. {
  9381. name: "Leaving the Universe",
  9382. height: math.unit(1, "gigaparsec")
  9383. },
  9384. {
  9385. name: "Travelling Universes",
  9386. height: math.unit(30e15, "parsecs")
  9387. },
  9388. ]
  9389. ))
  9390. characterMakers.push(() => makeCharacter(
  9391. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9392. {
  9393. front: {
  9394. height: math.unit(6, "feet"),
  9395. weight: math.unit(150, "lb"),
  9396. name: "Front",
  9397. image: {
  9398. source: "./media/characters/odyssey/front.svg",
  9399. extra: 1782 / 1582,
  9400. bottom: 0.01
  9401. }
  9402. },
  9403. side: {
  9404. height: math.unit(5.7, "feet"),
  9405. weight: math.unit(140, "lb"),
  9406. name: "Side",
  9407. image: {
  9408. source: "./media/characters/odyssey/side.svg",
  9409. extra: 6462 / 5700
  9410. }
  9411. },
  9412. },
  9413. [
  9414. {
  9415. name: "Normal",
  9416. height: math.unit(5 + 4 / 12, "feet")
  9417. },
  9418. {
  9419. name: "Macro",
  9420. height: math.unit(1, "km")
  9421. },
  9422. {
  9423. name: "Megamacro",
  9424. height: math.unit(3000, "km")
  9425. },
  9426. {
  9427. name: "Gigamacro",
  9428. height: math.unit(1, "AU"),
  9429. default: true
  9430. },
  9431. {
  9432. name: "Omniversal",
  9433. height: math.unit(100e14, "lightyears")
  9434. },
  9435. ]
  9436. ))
  9437. characterMakers.push(() => makeCharacter(
  9438. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9439. {
  9440. front: {
  9441. height: math.unit(6, "feet"),
  9442. weight: math.unit(300, "lb"),
  9443. name: "Front",
  9444. image: {
  9445. source: "./media/characters/mekuto/front.svg",
  9446. extra: 921 / 832,
  9447. bottom: 0.03
  9448. }
  9449. },
  9450. hand: {
  9451. height: math.unit(6 / 10.24, "feet"),
  9452. name: "Hand",
  9453. image: {
  9454. source: "./media/characters/mekuto/hand.svg"
  9455. }
  9456. },
  9457. foot: {
  9458. height: math.unit(6 / 5.05, "feet"),
  9459. name: "Foot",
  9460. image: {
  9461. source: "./media/characters/mekuto/foot.svg"
  9462. }
  9463. },
  9464. },
  9465. [
  9466. {
  9467. name: "Minimicro",
  9468. height: math.unit(0.2, "inches")
  9469. },
  9470. {
  9471. name: "Micro",
  9472. height: math.unit(1.5, "inches")
  9473. },
  9474. {
  9475. name: "Normal",
  9476. height: math.unit(5 + 11 / 12, "feet"),
  9477. default: true
  9478. },
  9479. {
  9480. name: "Minimacro",
  9481. height: math.unit(17 + 9 / 12, "feet")
  9482. },
  9483. {
  9484. name: "Macro",
  9485. height: math.unit(177.5, "feet")
  9486. },
  9487. {
  9488. name: "Megamacro",
  9489. height: math.unit(152, "miles")
  9490. },
  9491. ]
  9492. ))
  9493. characterMakers.push(() => makeCharacter(
  9494. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9495. {
  9496. front: {
  9497. height: math.unit(6.5, "inches"),
  9498. weight: math.unit(13, "oz"),
  9499. name: "Front",
  9500. image: {
  9501. source: "./media/characters/dafydd-tomos/front.svg",
  9502. extra: 2990 / 2603,
  9503. bottom: 0.03
  9504. }
  9505. },
  9506. },
  9507. [
  9508. {
  9509. name: "Micro",
  9510. height: math.unit(6.5, "inches"),
  9511. default: true
  9512. },
  9513. ]
  9514. ))
  9515. characterMakers.push(() => makeCharacter(
  9516. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9517. {
  9518. front: {
  9519. height: math.unit(6, "feet"),
  9520. weight: math.unit(150, "lb"),
  9521. name: "Front",
  9522. image: {
  9523. source: "./media/characters/splinter/front.svg",
  9524. extra: 2990 / 2882,
  9525. bottom: 0.04
  9526. }
  9527. },
  9528. back: {
  9529. height: math.unit(6, "feet"),
  9530. weight: math.unit(150, "lb"),
  9531. name: "Back",
  9532. image: {
  9533. source: "./media/characters/splinter/back.svg",
  9534. extra: 2990 / 2882,
  9535. bottom: 0.04
  9536. }
  9537. },
  9538. },
  9539. [
  9540. {
  9541. name: "Normal",
  9542. height: math.unit(6, "feet")
  9543. },
  9544. {
  9545. name: "Macro",
  9546. height: math.unit(230, "meters"),
  9547. default: true
  9548. },
  9549. ]
  9550. ))
  9551. characterMakers.push(() => makeCharacter(
  9552. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9553. {
  9554. front: {
  9555. height: math.unit(4 + 10 / 12, "feet"),
  9556. weight: math.unit(480, "lb"),
  9557. name: "Front",
  9558. image: {
  9559. source: "./media/characters/snow-gabumon/front.svg",
  9560. extra: 1140 / 963,
  9561. bottom: 0.058
  9562. }
  9563. },
  9564. back: {
  9565. height: math.unit(4 + 10 / 12, "feet"),
  9566. weight: math.unit(480, "lb"),
  9567. name: "Back",
  9568. image: {
  9569. source: "./media/characters/snow-gabumon/back.svg",
  9570. extra: 1115 / 962,
  9571. bottom: 0.041
  9572. }
  9573. },
  9574. frontUndresed: {
  9575. height: math.unit(4 + 10 / 12, "feet"),
  9576. weight: math.unit(480, "lb"),
  9577. name: "Front (Undressed)",
  9578. image: {
  9579. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9580. extra: 1061 / 960,
  9581. bottom: 0.045
  9582. }
  9583. },
  9584. },
  9585. [
  9586. {
  9587. name: "Micro",
  9588. height: math.unit(1, "inch")
  9589. },
  9590. {
  9591. name: "Normal",
  9592. height: math.unit(4 + 10 / 12, "feet"),
  9593. default: true
  9594. },
  9595. {
  9596. name: "Macro",
  9597. height: math.unit(200, "feet")
  9598. },
  9599. {
  9600. name: "Megamacro",
  9601. height: math.unit(120, "miles")
  9602. },
  9603. {
  9604. name: "Gigamacro",
  9605. height: math.unit(9800, "miles")
  9606. },
  9607. ]
  9608. ))
  9609. characterMakers.push(() => makeCharacter(
  9610. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9611. {
  9612. front: {
  9613. height: math.unit(1.7, "meters"),
  9614. weight: math.unit(140, "lb"),
  9615. name: "Front",
  9616. image: {
  9617. source: "./media/characters/moody/front.svg",
  9618. extra: 3226 / 3007,
  9619. bottom: 0.087
  9620. }
  9621. },
  9622. },
  9623. [
  9624. {
  9625. name: "Micro",
  9626. height: math.unit(1, "mm")
  9627. },
  9628. {
  9629. name: "Normal",
  9630. height: math.unit(1.7, "meters"),
  9631. default: true
  9632. },
  9633. {
  9634. name: "Macro",
  9635. height: math.unit(80, "meters")
  9636. },
  9637. {
  9638. name: "Macro+",
  9639. height: math.unit(500, "meters")
  9640. },
  9641. ]
  9642. ))
  9643. characterMakers.push(() => makeCharacter(
  9644. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9645. {
  9646. front: {
  9647. height: math.unit(6, "feet"),
  9648. weight: math.unit(150, "lb"),
  9649. name: "Front",
  9650. image: {
  9651. source: "./media/characters/zyas/front.svg",
  9652. extra: 1180 / 1120,
  9653. bottom: 0.045
  9654. }
  9655. },
  9656. },
  9657. [
  9658. {
  9659. name: "Normal",
  9660. height: math.unit(10, "feet"),
  9661. default: true
  9662. },
  9663. {
  9664. name: "Macro",
  9665. height: math.unit(500, "feet")
  9666. },
  9667. {
  9668. name: "Megamacro",
  9669. height: math.unit(5, "miles")
  9670. },
  9671. {
  9672. name: "Teramacro",
  9673. height: math.unit(150000, "miles")
  9674. },
  9675. ]
  9676. ))
  9677. characterMakers.push(() => makeCharacter(
  9678. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9679. {
  9680. front: {
  9681. height: math.unit(6, "feet"),
  9682. weight: math.unit(150, "lb"),
  9683. name: "Front",
  9684. image: {
  9685. source: "./media/characters/cuon/front.svg",
  9686. extra: 1390 / 1320,
  9687. bottom: 0.008
  9688. }
  9689. },
  9690. },
  9691. [
  9692. {
  9693. name: "Micro",
  9694. height: math.unit(3, "inches")
  9695. },
  9696. {
  9697. name: "Normal",
  9698. height: math.unit(18 + 9 / 12, "feet"),
  9699. default: true
  9700. },
  9701. {
  9702. name: "Macro",
  9703. height: math.unit(360, "feet")
  9704. },
  9705. {
  9706. name: "Megamacro",
  9707. height: math.unit(360, "miles")
  9708. },
  9709. ]
  9710. ))
  9711. characterMakers.push(() => makeCharacter(
  9712. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9713. {
  9714. front: {
  9715. height: math.unit(2.4, "meters"),
  9716. weight: math.unit(70, "kg"),
  9717. name: "Front",
  9718. image: {
  9719. source: "./media/characters/nyanuxk/front.svg",
  9720. extra: 1172 / 1084,
  9721. bottom: 0.065
  9722. }
  9723. },
  9724. side: {
  9725. height: math.unit(2.4, "meters"),
  9726. weight: math.unit(70, "kg"),
  9727. name: "Side",
  9728. image: {
  9729. source: "./media/characters/nyanuxk/side.svg",
  9730. extra: 1190 / 1132,
  9731. bottom: 0.007
  9732. }
  9733. },
  9734. back: {
  9735. height: math.unit(2.4, "meters"),
  9736. weight: math.unit(70, "kg"),
  9737. name: "Back",
  9738. image: {
  9739. source: "./media/characters/nyanuxk/back.svg",
  9740. extra: 1200 / 1141,
  9741. bottom: 0.015
  9742. }
  9743. },
  9744. foot: {
  9745. height: math.unit(0.52, "meters"),
  9746. name: "Foot",
  9747. image: {
  9748. source: "./media/characters/nyanuxk/foot.svg"
  9749. }
  9750. },
  9751. },
  9752. [
  9753. {
  9754. name: "Micro",
  9755. height: math.unit(2, "cm")
  9756. },
  9757. {
  9758. name: "Normal",
  9759. height: math.unit(2.4, "meters"),
  9760. default: true
  9761. },
  9762. {
  9763. name: "Smaller Macro",
  9764. height: math.unit(120, "meters")
  9765. },
  9766. {
  9767. name: "Bigger Macro",
  9768. height: math.unit(1.2, "km")
  9769. },
  9770. {
  9771. name: "Megamacro",
  9772. height: math.unit(15, "kilometers")
  9773. },
  9774. {
  9775. name: "Gigamacro",
  9776. height: math.unit(2000, "km")
  9777. },
  9778. {
  9779. name: "Teramacro",
  9780. height: math.unit(500000, "km")
  9781. },
  9782. ]
  9783. ))
  9784. characterMakers.push(() => makeCharacter(
  9785. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9786. {
  9787. side: {
  9788. height: math.unit(6, "feet"),
  9789. name: "Side",
  9790. image: {
  9791. source: "./media/characters/ailbhe/side.svg",
  9792. extra: 757 / 464,
  9793. bottom: 0.041
  9794. }
  9795. },
  9796. },
  9797. [
  9798. {
  9799. name: "Normal",
  9800. height: math.unit(1.07, "meters"),
  9801. default: true
  9802. },
  9803. ]
  9804. ))
  9805. characterMakers.push(() => makeCharacter(
  9806. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9807. {
  9808. front: {
  9809. height: math.unit(6, "feet"),
  9810. weight: math.unit(120, "kg"),
  9811. name: "Front",
  9812. image: {
  9813. source: "./media/characters/zevulfius/front.svg",
  9814. extra: 965 / 903
  9815. }
  9816. },
  9817. side: {
  9818. height: math.unit(6, "feet"),
  9819. weight: math.unit(120, "kg"),
  9820. name: "Side",
  9821. image: {
  9822. source: "./media/characters/zevulfius/side.svg",
  9823. extra: 939 / 900
  9824. }
  9825. },
  9826. back: {
  9827. height: math.unit(6, "feet"),
  9828. weight: math.unit(120, "kg"),
  9829. name: "Back",
  9830. image: {
  9831. source: "./media/characters/zevulfius/back.svg",
  9832. extra: 918 / 854,
  9833. bottom: 0.005
  9834. }
  9835. },
  9836. foot: {
  9837. height: math.unit(6 / 3.72, "feet"),
  9838. name: "Foot",
  9839. image: {
  9840. source: "./media/characters/zevulfius/foot.svg"
  9841. }
  9842. },
  9843. },
  9844. [
  9845. {
  9846. name: "Macro",
  9847. height: math.unit(750, "meters")
  9848. },
  9849. {
  9850. name: "Megamacro",
  9851. height: math.unit(20, "km"),
  9852. default: true
  9853. },
  9854. {
  9855. name: "Gigamacro",
  9856. height: math.unit(2000, "km")
  9857. },
  9858. {
  9859. name: "Teramacro",
  9860. height: math.unit(250000, "km")
  9861. },
  9862. ]
  9863. ))
  9864. characterMakers.push(() => makeCharacter(
  9865. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9866. {
  9867. front: {
  9868. height: math.unit(100, "feet"),
  9869. weight: math.unit(350, "kg"),
  9870. name: "Front",
  9871. image: {
  9872. source: "./media/characters/rikes/front.svg",
  9873. extra: 1565 / 1483,
  9874. bottom: 0.017
  9875. }
  9876. },
  9877. },
  9878. [
  9879. {
  9880. name: "Macro",
  9881. height: math.unit(100, "feet"),
  9882. default: true
  9883. },
  9884. ]
  9885. ))
  9886. characterMakers.push(() => makeCharacter(
  9887. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9888. {
  9889. anthro: {
  9890. height: math.unit(8, "feet"),
  9891. weight: math.unit(120, "kg"),
  9892. name: "Anthro",
  9893. image: {
  9894. source: "./media/characters/adam-silver-mane/anthro.svg",
  9895. extra: 5743 / 5339,
  9896. bottom: 0.07
  9897. }
  9898. },
  9899. taur: {
  9900. height: math.unit(16, "feet"),
  9901. weight: math.unit(1500, "kg"),
  9902. name: "Taur",
  9903. image: {
  9904. source: "./media/characters/adam-silver-mane/taur.svg",
  9905. extra: 1713 / 1571,
  9906. bottom: 0.01
  9907. }
  9908. },
  9909. },
  9910. [
  9911. {
  9912. name: "Normal",
  9913. height: math.unit(8, "feet")
  9914. },
  9915. {
  9916. name: "Minimacro",
  9917. height: math.unit(80, "feet")
  9918. },
  9919. {
  9920. name: "Macro",
  9921. height: math.unit(800, "feet"),
  9922. default: true
  9923. },
  9924. {
  9925. name: "Megamacro",
  9926. height: math.unit(8000, "feet")
  9927. },
  9928. {
  9929. name: "Gigamacro",
  9930. height: math.unit(800, "miles")
  9931. },
  9932. {
  9933. name: "Teramacro",
  9934. height: math.unit(80000, "miles")
  9935. },
  9936. {
  9937. name: "Celestial",
  9938. height: math.unit(8e6, "miles")
  9939. },
  9940. {
  9941. name: "Star Dragon",
  9942. height: math.unit(800000, "parsecs")
  9943. },
  9944. {
  9945. name: "Godly",
  9946. height: math.unit(800, "teraparsecs")
  9947. },
  9948. ]
  9949. ))
  9950. characterMakers.push(() => makeCharacter(
  9951. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9952. {
  9953. front: {
  9954. height: math.unit(6, "feet"),
  9955. weight: math.unit(150, "lb"),
  9956. name: "Front",
  9957. image: {
  9958. source: "./media/characters/ky'owin/front.svg",
  9959. extra: 3888 / 3068,
  9960. bottom: 0.015
  9961. }
  9962. },
  9963. },
  9964. [
  9965. {
  9966. name: "Normal",
  9967. height: math.unit(6 + 8 / 12, "feet")
  9968. },
  9969. {
  9970. name: "Large",
  9971. height: math.unit(68, "feet")
  9972. },
  9973. {
  9974. name: "Macro",
  9975. height: math.unit(132, "feet")
  9976. },
  9977. {
  9978. name: "Macro+",
  9979. height: math.unit(340, "feet")
  9980. },
  9981. {
  9982. name: "Macro++",
  9983. height: math.unit(680, "feet"),
  9984. default: true
  9985. },
  9986. {
  9987. name: "Megamacro",
  9988. height: math.unit(1, "mile")
  9989. },
  9990. {
  9991. name: "Megamacro+",
  9992. height: math.unit(10, "miles")
  9993. },
  9994. ]
  9995. ))
  9996. characterMakers.push(() => makeCharacter(
  9997. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9998. {
  9999. front: {
  10000. height: math.unit(4, "feet"),
  10001. weight: math.unit(50, "lb"),
  10002. name: "Front",
  10003. image: {
  10004. source: "./media/characters/mal/front.svg",
  10005. extra: 785 / 724,
  10006. bottom: 0.07
  10007. }
  10008. },
  10009. },
  10010. [
  10011. {
  10012. name: "Micro",
  10013. height: math.unit(4, "inches")
  10014. },
  10015. {
  10016. name: "Normal",
  10017. height: math.unit(4, "feet"),
  10018. default: true
  10019. },
  10020. {
  10021. name: "Macro",
  10022. height: math.unit(200, "feet")
  10023. },
  10024. ]
  10025. ))
  10026. characterMakers.push(() => makeCharacter(
  10027. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10028. {
  10029. front: {
  10030. height: math.unit(6, "feet"),
  10031. weight: math.unit(150, "lb"),
  10032. name: "Front",
  10033. image: {
  10034. source: "./media/characters/jordan-deware/front.svg",
  10035. extra: 1191 / 1012
  10036. }
  10037. },
  10038. },
  10039. [
  10040. {
  10041. name: "Nano",
  10042. height: math.unit(0.01, "mm")
  10043. },
  10044. {
  10045. name: "Minimicro",
  10046. height: math.unit(1, "mm")
  10047. },
  10048. {
  10049. name: "Micro",
  10050. height: math.unit(0.5, "inches")
  10051. },
  10052. {
  10053. name: "Normal",
  10054. height: math.unit(4, "feet"),
  10055. default: true
  10056. },
  10057. {
  10058. name: "Minimacro",
  10059. height: math.unit(40, "meters")
  10060. },
  10061. {
  10062. name: "Small Macro",
  10063. height: math.unit(400, "meters")
  10064. },
  10065. {
  10066. name: "Macro",
  10067. height: math.unit(4, "miles")
  10068. },
  10069. {
  10070. name: "Megamacro",
  10071. height: math.unit(40, "miles")
  10072. },
  10073. {
  10074. name: "Megamacro+",
  10075. height: math.unit(400, "miles")
  10076. },
  10077. {
  10078. name: "Gigamacro",
  10079. height: math.unit(400000, "miles")
  10080. },
  10081. ]
  10082. ))
  10083. characterMakers.push(() => makeCharacter(
  10084. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10085. {
  10086. side: {
  10087. height: math.unit(6, "feet"),
  10088. weight: math.unit(150, "lb"),
  10089. name: "Side",
  10090. image: {
  10091. source: "./media/characters/kimiko/side.svg",
  10092. extra: 600 / 358
  10093. }
  10094. },
  10095. },
  10096. [
  10097. {
  10098. name: "Normal",
  10099. height: math.unit(15, "feet"),
  10100. default: true
  10101. },
  10102. {
  10103. name: "Macro",
  10104. height: math.unit(220, "feet")
  10105. },
  10106. {
  10107. name: "Macro+",
  10108. height: math.unit(1450, "feet")
  10109. },
  10110. {
  10111. name: "Megamacro",
  10112. height: math.unit(11500, "feet")
  10113. },
  10114. {
  10115. name: "Gigamacro",
  10116. height: math.unit(9500, "miles")
  10117. },
  10118. {
  10119. name: "Teramacro",
  10120. height: math.unit(2208005005, "miles")
  10121. },
  10122. {
  10123. name: "Examacro",
  10124. height: math.unit(2750, "parsecs")
  10125. },
  10126. {
  10127. name: "Zettamacro",
  10128. height: math.unit(101500, "parsecs")
  10129. },
  10130. ]
  10131. ))
  10132. characterMakers.push(() => makeCharacter(
  10133. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10134. {
  10135. front: {
  10136. height: math.unit(6, "feet"),
  10137. weight: math.unit(70, "kg"),
  10138. name: "Front",
  10139. image: {
  10140. source: "./media/characters/andrew-sleepy/front.svg"
  10141. }
  10142. },
  10143. side: {
  10144. height: math.unit(6, "feet"),
  10145. weight: math.unit(70, "kg"),
  10146. name: "Side",
  10147. image: {
  10148. source: "./media/characters/andrew-sleepy/side.svg"
  10149. }
  10150. },
  10151. },
  10152. [
  10153. {
  10154. name: "Micro",
  10155. height: math.unit(1, "mm"),
  10156. default: true
  10157. },
  10158. ]
  10159. ))
  10160. characterMakers.push(() => makeCharacter(
  10161. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10162. {
  10163. front: {
  10164. height: math.unit(6, "feet"),
  10165. weight: math.unit(150, "lb"),
  10166. name: "Front",
  10167. image: {
  10168. source: "./media/characters/judio/front.svg",
  10169. extra: 1258 / 1110
  10170. }
  10171. },
  10172. },
  10173. [
  10174. {
  10175. name: "Normal",
  10176. height: math.unit(5 + 6 / 12, "feet")
  10177. },
  10178. {
  10179. name: "Macro",
  10180. height: math.unit(1000, "feet"),
  10181. default: true
  10182. },
  10183. {
  10184. name: "Megamacro",
  10185. height: math.unit(10, "miles")
  10186. },
  10187. ]
  10188. ))
  10189. characterMakers.push(() => makeCharacter(
  10190. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10191. {
  10192. front: {
  10193. height: math.unit(6, "feet"),
  10194. weight: math.unit(68, "kg"),
  10195. name: "Front",
  10196. image: {
  10197. source: "./media/characters/nomaxice/front.svg",
  10198. extra: 1498 / 1073,
  10199. bottom: 0.075
  10200. }
  10201. },
  10202. foot: {
  10203. height: math.unit(1.1, "feet"),
  10204. name: "Foot",
  10205. image: {
  10206. source: "./media/characters/nomaxice/foot.svg"
  10207. }
  10208. },
  10209. },
  10210. [
  10211. {
  10212. name: "Micro",
  10213. height: math.unit(8, "cm")
  10214. },
  10215. {
  10216. name: "Norm",
  10217. height: math.unit(1.82, "m")
  10218. },
  10219. {
  10220. name: "Norm+",
  10221. height: math.unit(8.8, "feet")
  10222. },
  10223. {
  10224. name: "Big",
  10225. height: math.unit(8, "meters"),
  10226. default: true
  10227. },
  10228. {
  10229. name: "Macro",
  10230. height: math.unit(18, "meters")
  10231. },
  10232. {
  10233. name: "Macro+",
  10234. height: math.unit(88, "meters")
  10235. },
  10236. ]
  10237. ))
  10238. characterMakers.push(() => makeCharacter(
  10239. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10240. {
  10241. front: {
  10242. height: math.unit(12, "feet"),
  10243. weight: math.unit(1.5, "tons"),
  10244. name: "Front",
  10245. image: {
  10246. source: "./media/characters/dydros/front.svg",
  10247. extra: 863 / 800,
  10248. bottom: 0.015
  10249. }
  10250. },
  10251. back: {
  10252. height: math.unit(12, "feet"),
  10253. weight: math.unit(1.5, "tons"),
  10254. name: "Back",
  10255. image: {
  10256. source: "./media/characters/dydros/back.svg",
  10257. extra: 900 / 843,
  10258. bottom: 0.005
  10259. }
  10260. },
  10261. },
  10262. [
  10263. {
  10264. name: "Normal",
  10265. height: math.unit(12, "feet"),
  10266. default: true
  10267. },
  10268. ]
  10269. ))
  10270. characterMakers.push(() => makeCharacter(
  10271. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10272. {
  10273. front: {
  10274. height: math.unit(6, "feet"),
  10275. weight: math.unit(100, "kg"),
  10276. name: "Front",
  10277. image: {
  10278. source: "./media/characters/riggi/front.svg",
  10279. extra: 5787 / 5303
  10280. }
  10281. },
  10282. hyper: {
  10283. height: math.unit(6 * 5 / 3, "feet"),
  10284. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10285. name: "Hyper",
  10286. image: {
  10287. source: "./media/characters/riggi/hyper.svg",
  10288. extra: 3595 / 3485
  10289. }
  10290. },
  10291. },
  10292. [
  10293. {
  10294. name: "Small Macro",
  10295. height: math.unit(50, "feet")
  10296. },
  10297. {
  10298. name: "Default",
  10299. height: math.unit(200, "feet"),
  10300. default: true
  10301. },
  10302. {
  10303. name: "Loom",
  10304. height: math.unit(10000, "feet")
  10305. },
  10306. {
  10307. name: "Cruising Altitude",
  10308. height: math.unit(30000, "feet")
  10309. },
  10310. {
  10311. name: "Megamacro",
  10312. height: math.unit(100, "miles")
  10313. },
  10314. {
  10315. name: "Continent Sized",
  10316. height: math.unit(2800, "miles")
  10317. },
  10318. {
  10319. name: "Earth Sized",
  10320. height: math.unit(8000, "miles")
  10321. },
  10322. ]
  10323. ))
  10324. characterMakers.push(() => makeCharacter(
  10325. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10326. {
  10327. front: {
  10328. height: math.unit(6, "feet"),
  10329. weight: math.unit(250, "lb"),
  10330. name: "Front",
  10331. image: {
  10332. source: "./media/characters/alexi/front.svg",
  10333. extra: 3483 / 3291,
  10334. bottom: 0.04
  10335. }
  10336. },
  10337. back: {
  10338. height: math.unit(6, "feet"),
  10339. weight: math.unit(250, "lb"),
  10340. name: "Back",
  10341. image: {
  10342. source: "./media/characters/alexi/back.svg",
  10343. extra: 3533 / 3356,
  10344. bottom: 0.021
  10345. }
  10346. },
  10347. frontTransforming: {
  10348. height: math.unit(8.58, "feet"),
  10349. weight: math.unit(1300, "lb"),
  10350. name: "Transforming",
  10351. image: {
  10352. source: "./media/characters/alexi/front-transforming.svg",
  10353. extra: 437 / 409,
  10354. bottom: 19 / 458.66
  10355. }
  10356. },
  10357. frontTransformed: {
  10358. height: math.unit(12.5, "feet"),
  10359. weight: math.unit(4000, "lb"),
  10360. name: "Transformed",
  10361. image: {
  10362. source: "./media/characters/alexi/front-transformed.svg",
  10363. extra: 639 / 614,
  10364. bottom: 30.55 / 671
  10365. }
  10366. },
  10367. },
  10368. [
  10369. {
  10370. name: "Normal",
  10371. height: math.unit(14, "feet"),
  10372. default: true
  10373. },
  10374. {
  10375. name: "Minimacro",
  10376. height: math.unit(30, "meters")
  10377. },
  10378. {
  10379. name: "Macro",
  10380. height: math.unit(500, "meters")
  10381. },
  10382. {
  10383. name: "Megamacro",
  10384. height: math.unit(9000, "km")
  10385. },
  10386. {
  10387. name: "Teramacro",
  10388. height: math.unit(384000, "km")
  10389. },
  10390. ]
  10391. ))
  10392. characterMakers.push(() => makeCharacter(
  10393. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10394. {
  10395. front: {
  10396. height: math.unit(6, "feet"),
  10397. weight: math.unit(150, "lb"),
  10398. name: "Front",
  10399. image: {
  10400. source: "./media/characters/kayroo/front.svg",
  10401. extra: 1153 / 1038,
  10402. bottom: 0.06
  10403. }
  10404. },
  10405. foot: {
  10406. height: math.unit(6, "feet"),
  10407. weight: math.unit(150, "lb"),
  10408. name: "Foot",
  10409. image: {
  10410. source: "./media/characters/kayroo/foot.svg"
  10411. }
  10412. },
  10413. },
  10414. [
  10415. {
  10416. name: "Normal",
  10417. height: math.unit(8, "feet"),
  10418. default: true
  10419. },
  10420. {
  10421. name: "Minimacro",
  10422. height: math.unit(250, "feet")
  10423. },
  10424. {
  10425. name: "Macro",
  10426. height: math.unit(2800, "feet")
  10427. },
  10428. {
  10429. name: "Megamacro",
  10430. height: math.unit(5200, "feet")
  10431. },
  10432. {
  10433. name: "Gigamacro",
  10434. height: math.unit(27000, "feet")
  10435. },
  10436. {
  10437. name: "Omega",
  10438. height: math.unit(45000, "feet")
  10439. },
  10440. ]
  10441. ))
  10442. characterMakers.push(() => makeCharacter(
  10443. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10444. {
  10445. front: {
  10446. height: math.unit(18, "feet"),
  10447. weight: math.unit(5800, "lb"),
  10448. name: "Front",
  10449. image: {
  10450. source: "./media/characters/rhys/front.svg",
  10451. extra: 3386 / 3090,
  10452. bottom: 0.07
  10453. }
  10454. },
  10455. },
  10456. [
  10457. {
  10458. name: "Normal",
  10459. height: math.unit(18, "feet"),
  10460. default: true
  10461. },
  10462. {
  10463. name: "Working Size",
  10464. height: math.unit(200, "feet")
  10465. },
  10466. {
  10467. name: "Demolition Size",
  10468. height: math.unit(2000, "feet")
  10469. },
  10470. {
  10471. name: "Maximum Licensed Size",
  10472. height: math.unit(5, "miles")
  10473. },
  10474. {
  10475. name: "Maximum Observed Size",
  10476. height: math.unit(10, "yottameters")
  10477. },
  10478. ]
  10479. ))
  10480. characterMakers.push(() => makeCharacter(
  10481. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10482. {
  10483. front: {
  10484. height: math.unit(6, "feet"),
  10485. weight: math.unit(250, "lb"),
  10486. name: "Front",
  10487. image: {
  10488. source: "./media/characters/toto/front.svg",
  10489. extra: 527 / 479,
  10490. bottom: 0.05
  10491. }
  10492. },
  10493. },
  10494. [
  10495. {
  10496. name: "Micro",
  10497. height: math.unit(3, "feet")
  10498. },
  10499. {
  10500. name: "Normal",
  10501. height: math.unit(10, "feet")
  10502. },
  10503. {
  10504. name: "Macro",
  10505. height: math.unit(150, "feet"),
  10506. default: true
  10507. },
  10508. {
  10509. name: "Megamacro",
  10510. height: math.unit(1200, "feet")
  10511. },
  10512. ]
  10513. ))
  10514. characterMakers.push(() => makeCharacter(
  10515. { name: "King", species: ["lion"], tags: ["anthro"] },
  10516. {
  10517. back: {
  10518. height: math.unit(6, "feet"),
  10519. weight: math.unit(150, "lb"),
  10520. name: "Back",
  10521. image: {
  10522. source: "./media/characters/king/back.svg"
  10523. }
  10524. },
  10525. },
  10526. [
  10527. {
  10528. name: "Micro",
  10529. height: math.unit(2, "inches")
  10530. },
  10531. {
  10532. name: "Normal",
  10533. height: math.unit(8, "feet")
  10534. },
  10535. {
  10536. name: "Macro",
  10537. height: math.unit(200, "feet"),
  10538. default: true
  10539. },
  10540. {
  10541. name: "Megamacro",
  10542. height: math.unit(50, "miles")
  10543. },
  10544. ]
  10545. ))
  10546. characterMakers.push(() => makeCharacter(
  10547. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10548. {
  10549. anthro: {
  10550. height: math.unit(6 + 5 / 12, "feet"),
  10551. weight: math.unit(280, "lb"),
  10552. name: "Anthro",
  10553. image: {
  10554. source: "./media/characters/cordite/anthro.svg",
  10555. extra: 1986 / 1905,
  10556. bottom: 0.025
  10557. }
  10558. },
  10559. feral: {
  10560. height: math.unit(2, "feet"),
  10561. weight: math.unit(90, "lb"),
  10562. name: "Feral",
  10563. image: {
  10564. source: "./media/characters/cordite/feral.svg",
  10565. extra: 1260 / 755,
  10566. bottom: 0.05
  10567. }
  10568. },
  10569. },
  10570. [
  10571. {
  10572. name: "Normal",
  10573. height: math.unit(6 + 5 / 12, "feet"),
  10574. default: true
  10575. },
  10576. ]
  10577. ))
  10578. characterMakers.push(() => makeCharacter(
  10579. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10580. {
  10581. front: {
  10582. height: math.unit(6, "feet"),
  10583. weight: math.unit(150, "lb"),
  10584. name: "Front",
  10585. image: {
  10586. source: "./media/characters/pianostrong/front.svg",
  10587. extra: 6577 / 6254,
  10588. bottom: 0.02
  10589. }
  10590. },
  10591. side: {
  10592. height: math.unit(6, "feet"),
  10593. weight: math.unit(150, "lb"),
  10594. name: "Side",
  10595. image: {
  10596. source: "./media/characters/pianostrong/side.svg",
  10597. extra: 6106 / 5730
  10598. }
  10599. },
  10600. back: {
  10601. height: math.unit(6, "feet"),
  10602. weight: math.unit(150, "lb"),
  10603. name: "Back",
  10604. image: {
  10605. source: "./media/characters/pianostrong/back.svg",
  10606. extra: 6085 / 5733,
  10607. bottom: 0.01
  10608. }
  10609. },
  10610. },
  10611. [
  10612. {
  10613. name: "Macro",
  10614. height: math.unit(100, "feet")
  10615. },
  10616. {
  10617. name: "Macro+",
  10618. height: math.unit(300, "feet"),
  10619. default: true
  10620. },
  10621. {
  10622. name: "Macro++",
  10623. height: math.unit(1000, "feet")
  10624. },
  10625. ]
  10626. ))
  10627. characterMakers.push(() => makeCharacter(
  10628. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10629. {
  10630. front: {
  10631. height: math.unit(6, "feet"),
  10632. weight: math.unit(150, "lb"),
  10633. name: "Front",
  10634. image: {
  10635. source: "./media/characters/kona/front.svg",
  10636. extra: 2960 / 2629,
  10637. bottom: 0.005
  10638. }
  10639. },
  10640. },
  10641. [
  10642. {
  10643. name: "Normal",
  10644. height: math.unit(11 + 8 / 12, "feet")
  10645. },
  10646. {
  10647. name: "Macro",
  10648. height: math.unit(850, "feet"),
  10649. default: true
  10650. },
  10651. {
  10652. name: "Macro+",
  10653. height: math.unit(1.5, "km"),
  10654. default: true
  10655. },
  10656. {
  10657. name: "Megamacro",
  10658. height: math.unit(80, "miles")
  10659. },
  10660. {
  10661. name: "Gigamacro",
  10662. height: math.unit(3500, "miles")
  10663. },
  10664. ]
  10665. ))
  10666. characterMakers.push(() => makeCharacter(
  10667. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10668. {
  10669. side: {
  10670. height: math.unit(1.9, "meters"),
  10671. weight: math.unit(326, "kg"),
  10672. name: "Side",
  10673. image: {
  10674. source: "./media/characters/levi/side.svg",
  10675. extra: 1704 / 1334,
  10676. bottom: 0.02
  10677. }
  10678. },
  10679. },
  10680. [
  10681. {
  10682. name: "Normal",
  10683. height: math.unit(1.9, "meters"),
  10684. default: true
  10685. },
  10686. {
  10687. name: "Macro",
  10688. height: math.unit(20, "meters")
  10689. },
  10690. {
  10691. name: "Macro+",
  10692. height: math.unit(200, "meters")
  10693. },
  10694. {
  10695. name: "Megamacro",
  10696. height: math.unit(2, "km")
  10697. },
  10698. {
  10699. name: "Megamacro+",
  10700. height: math.unit(20, "km")
  10701. },
  10702. {
  10703. name: "Gigamacro",
  10704. height: math.unit(2500, "km")
  10705. },
  10706. {
  10707. name: "Gigamacro+",
  10708. height: math.unit(120000, "km")
  10709. },
  10710. {
  10711. name: "Teramacro",
  10712. height: math.unit(7.77e6, "km")
  10713. },
  10714. ]
  10715. ))
  10716. characterMakers.push(() => makeCharacter(
  10717. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10718. {
  10719. front: {
  10720. height: math.unit(6 + 4 / 12, "feet"),
  10721. weight: math.unit(188, "lb"),
  10722. name: "Front",
  10723. image: {
  10724. source: "./media/characters/bmc/front.svg",
  10725. extra: 1067 / 1022,
  10726. bottom: 0.047
  10727. }
  10728. },
  10729. },
  10730. [
  10731. {
  10732. name: "Human-sized",
  10733. height: math.unit(6 + 4 / 12, "feet")
  10734. },
  10735. {
  10736. name: "Small",
  10737. height: math.unit(250, "feet")
  10738. },
  10739. {
  10740. name: "Normal",
  10741. height: math.unit(1250, "feet"),
  10742. default: true
  10743. },
  10744. {
  10745. name: "Good Day",
  10746. height: math.unit(88, "miles")
  10747. },
  10748. {
  10749. name: "Largest Measured Size",
  10750. height: math.unit(11.2e6, "lightyears")
  10751. },
  10752. ]
  10753. ))
  10754. characterMakers.push(() => makeCharacter(
  10755. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10756. {
  10757. front: {
  10758. height: math.unit(20, "feet"),
  10759. weight: math.unit(2016, "kg"),
  10760. name: "Front",
  10761. image: {
  10762. source: "./media/characters/sven-the-kaiju/front.svg",
  10763. extra: 1479 / 1449,
  10764. bottom: 0.05
  10765. }
  10766. },
  10767. },
  10768. [
  10769. {
  10770. name: "Fairy",
  10771. height: math.unit(6, "inches")
  10772. },
  10773. {
  10774. name: "Normal",
  10775. height: math.unit(20, "feet"),
  10776. default: true
  10777. },
  10778. {
  10779. name: "Rampage",
  10780. height: math.unit(200, "feet")
  10781. },
  10782. {
  10783. name: "Archfey Forest Guardian",
  10784. height: math.unit(1, "mile")
  10785. },
  10786. ]
  10787. ))
  10788. characterMakers.push(() => makeCharacter(
  10789. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10790. {
  10791. front: {
  10792. height: math.unit(4, "meters"),
  10793. weight: math.unit(2, "tons"),
  10794. name: "Front",
  10795. image: {
  10796. source: "./media/characters/marik/front.svg",
  10797. extra: 1057 / 1003,
  10798. bottom: 0.08
  10799. }
  10800. },
  10801. },
  10802. [
  10803. {
  10804. name: "Normal",
  10805. height: math.unit(4, "meters"),
  10806. default: true
  10807. },
  10808. {
  10809. name: "Macro",
  10810. height: math.unit(20, "meters")
  10811. },
  10812. {
  10813. name: "Megamacro",
  10814. height: math.unit(50, "km")
  10815. },
  10816. {
  10817. name: "Gigamacro",
  10818. height: math.unit(100, "km")
  10819. },
  10820. {
  10821. name: "Alpha Macro",
  10822. height: math.unit(7.88e7, "yottameters")
  10823. },
  10824. ]
  10825. ))
  10826. characterMakers.push(() => makeCharacter(
  10827. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10828. {
  10829. front: {
  10830. height: math.unit(6, "feet"),
  10831. weight: math.unit(110, "lb"),
  10832. name: "Front",
  10833. image: {
  10834. source: "./media/characters/mel/front.svg",
  10835. extra: 736 / 617,
  10836. bottom: 0.017
  10837. }
  10838. },
  10839. },
  10840. [
  10841. {
  10842. name: "Pico",
  10843. height: math.unit(3, "pm")
  10844. },
  10845. {
  10846. name: "Nano",
  10847. height: math.unit(3, "nm")
  10848. },
  10849. {
  10850. name: "Micro",
  10851. height: math.unit(0.3, "mm"),
  10852. default: true
  10853. },
  10854. {
  10855. name: "Micro+",
  10856. height: math.unit(3, "mm")
  10857. },
  10858. {
  10859. name: "Normal",
  10860. height: math.unit(5 + 10.5 / 12, "feet")
  10861. },
  10862. ]
  10863. ))
  10864. characterMakers.push(() => makeCharacter(
  10865. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10866. {
  10867. kaiju: {
  10868. height: math.unit(1.75, "meters"),
  10869. weight: math.unit(55, "kg"),
  10870. name: "Kaiju",
  10871. image: {
  10872. source: "./media/characters/lykonous/kaiju.svg",
  10873. extra: 1055 / 946,
  10874. bottom: 0.135
  10875. }
  10876. },
  10877. },
  10878. [
  10879. {
  10880. name: "Normal",
  10881. height: math.unit(2.5, "meters"),
  10882. default: true
  10883. },
  10884. {
  10885. name: "Kaiju Dragon",
  10886. height: math.unit(60, "meters")
  10887. },
  10888. {
  10889. name: "Mega Kaiju",
  10890. height: math.unit(120, "km")
  10891. },
  10892. {
  10893. name: "Giga Kaiju",
  10894. height: math.unit(200, "megameters")
  10895. },
  10896. {
  10897. name: "Terra Kaiju",
  10898. height: math.unit(400, "gigameters")
  10899. },
  10900. {
  10901. name: "Kaiju Dragon God",
  10902. height: math.unit(13000, "exaparsecs")
  10903. },
  10904. ]
  10905. ))
  10906. characterMakers.push(() => makeCharacter(
  10907. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10908. {
  10909. front: {
  10910. height: math.unit(6, "feet"),
  10911. weight: math.unit(150, "lb"),
  10912. name: "Front",
  10913. image: {
  10914. source: "./media/characters/blü/front.svg",
  10915. extra: 1883 / 1564,
  10916. bottom: 0.031
  10917. }
  10918. },
  10919. },
  10920. [
  10921. {
  10922. name: "Normal",
  10923. height: math.unit(13, "feet"),
  10924. default: true
  10925. },
  10926. {
  10927. name: "Big Boi",
  10928. height: math.unit(150, "meters")
  10929. },
  10930. {
  10931. name: "Mini Stomper",
  10932. height: math.unit(300, "meters")
  10933. },
  10934. {
  10935. name: "Macro",
  10936. height: math.unit(1000, "meters")
  10937. },
  10938. {
  10939. name: "Megamacro",
  10940. height: math.unit(11000, "meters")
  10941. },
  10942. {
  10943. name: "Gigamacro",
  10944. height: math.unit(11000, "km")
  10945. },
  10946. {
  10947. name: "Teramacro",
  10948. height: math.unit(420000, "km")
  10949. },
  10950. {
  10951. name: "Examacro",
  10952. height: math.unit(120, "parsecs")
  10953. },
  10954. {
  10955. name: "God Tho",
  10956. height: math.unit(98000000000, "parsecs")
  10957. },
  10958. ]
  10959. ))
  10960. characterMakers.push(() => makeCharacter(
  10961. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10962. {
  10963. taurFront: {
  10964. height: math.unit(6, "feet"),
  10965. weight: math.unit(200, "lb"),
  10966. name: "Taur (Front)",
  10967. image: {
  10968. source: "./media/characters/scales/taur-front.svg",
  10969. extra: 1,
  10970. bottom: 0.05
  10971. }
  10972. },
  10973. taurBack: {
  10974. height: math.unit(6, "feet"),
  10975. weight: math.unit(200, "lb"),
  10976. name: "Taur (Back)",
  10977. image: {
  10978. source: "./media/characters/scales/taur-back.svg",
  10979. extra: 1,
  10980. bottom: 0.08
  10981. }
  10982. },
  10983. anthro: {
  10984. height: math.unit(6 * 7 / 12, "feet"),
  10985. weight: math.unit(100, "lb"),
  10986. name: "Anthro",
  10987. image: {
  10988. source: "./media/characters/scales/anthro.svg",
  10989. extra: 1,
  10990. bottom: 0.06
  10991. }
  10992. },
  10993. },
  10994. [
  10995. {
  10996. name: "Normal",
  10997. height: math.unit(12, "feet"),
  10998. default: true
  10999. },
  11000. ]
  11001. ))
  11002. characterMakers.push(() => makeCharacter(
  11003. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11004. {
  11005. front: {
  11006. height: math.unit(6, "feet"),
  11007. weight: math.unit(150, "lb"),
  11008. name: "Front",
  11009. image: {
  11010. source: "./media/characters/koragos/front.svg",
  11011. extra: 841 / 794,
  11012. bottom: 0.035
  11013. }
  11014. },
  11015. back: {
  11016. height: math.unit(6, "feet"),
  11017. weight: math.unit(150, "lb"),
  11018. name: "Back",
  11019. image: {
  11020. source: "./media/characters/koragos/back.svg",
  11021. extra: 841 / 810,
  11022. bottom: 0.022
  11023. }
  11024. },
  11025. },
  11026. [
  11027. {
  11028. name: "Normal",
  11029. height: math.unit(6 + 11 / 12, "feet"),
  11030. default: true
  11031. },
  11032. {
  11033. name: "Macro",
  11034. height: math.unit(490, "feet")
  11035. },
  11036. {
  11037. name: "Megamacro",
  11038. height: math.unit(10, "miles")
  11039. },
  11040. {
  11041. name: "Gigamacro",
  11042. height: math.unit(50, "miles")
  11043. },
  11044. ]
  11045. ))
  11046. characterMakers.push(() => makeCharacter(
  11047. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11048. {
  11049. front: {
  11050. height: math.unit(6, "feet"),
  11051. weight: math.unit(250, "lb"),
  11052. name: "Front",
  11053. image: {
  11054. source: "./media/characters/xylrem/front.svg",
  11055. extra: 3323 / 3050,
  11056. bottom: 0.065
  11057. }
  11058. },
  11059. },
  11060. [
  11061. {
  11062. name: "Micro",
  11063. height: math.unit(4, "feet")
  11064. },
  11065. {
  11066. name: "Normal",
  11067. height: math.unit(16, "feet"),
  11068. default: true
  11069. },
  11070. {
  11071. name: "Macro",
  11072. height: math.unit(2720, "feet")
  11073. },
  11074. {
  11075. name: "Megamacro",
  11076. height: math.unit(25000, "miles")
  11077. },
  11078. ]
  11079. ))
  11080. characterMakers.push(() => makeCharacter(
  11081. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11082. {
  11083. front: {
  11084. height: math.unit(8, "feet"),
  11085. weight: math.unit(250, "kg"),
  11086. name: "Front",
  11087. image: {
  11088. source: "./media/characters/ikideru/front.svg",
  11089. extra: 930 / 870,
  11090. bottom: 0.087
  11091. }
  11092. },
  11093. back: {
  11094. height: math.unit(8, "feet"),
  11095. weight: math.unit(250, "kg"),
  11096. name: "Back",
  11097. image: {
  11098. source: "./media/characters/ikideru/back.svg",
  11099. extra: 919 / 852,
  11100. bottom: 0.055
  11101. }
  11102. },
  11103. },
  11104. [
  11105. {
  11106. name: "Rare",
  11107. height: math.unit(8, "feet"),
  11108. default: true
  11109. },
  11110. {
  11111. name: "Playful Loom",
  11112. height: math.unit(80, "feet")
  11113. },
  11114. {
  11115. name: "City Leaner",
  11116. height: math.unit(230, "feet")
  11117. },
  11118. {
  11119. name: "Megamacro",
  11120. height: math.unit(2500, "feet")
  11121. },
  11122. {
  11123. name: "Gigamacro",
  11124. height: math.unit(26400, "feet")
  11125. },
  11126. {
  11127. name: "Tectonic Shifter",
  11128. height: math.unit(1.7, "megameters")
  11129. },
  11130. {
  11131. name: "Planet Carer",
  11132. height: math.unit(21, "megameters")
  11133. },
  11134. {
  11135. name: "God",
  11136. height: math.unit(11157.22, "parsecs")
  11137. },
  11138. ]
  11139. ))
  11140. characterMakers.push(() => makeCharacter(
  11141. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11142. {
  11143. front: {
  11144. height: math.unit(6, "feet"),
  11145. weight: math.unit(120, "lb"),
  11146. name: "Front",
  11147. image: {
  11148. source: "./media/characters/neo/front.svg"
  11149. }
  11150. },
  11151. },
  11152. [
  11153. {
  11154. name: "Micro",
  11155. height: math.unit(2, "inches"),
  11156. default: true
  11157. },
  11158. {
  11159. name: "Human Size",
  11160. height: math.unit(5 + 8 / 12, "feet")
  11161. },
  11162. ]
  11163. ))
  11164. characterMakers.push(() => makeCharacter(
  11165. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11166. {
  11167. front: {
  11168. height: math.unit(13 + 10 / 12, "feet"),
  11169. weight: math.unit(5320, "lb"),
  11170. name: "Front",
  11171. image: {
  11172. source: "./media/characters/chauncey-chantz/front.svg",
  11173. extra: 1587 / 1435,
  11174. bottom: 0.02
  11175. }
  11176. },
  11177. },
  11178. [
  11179. {
  11180. name: "Normal",
  11181. height: math.unit(13 + 10 / 12, "feet"),
  11182. default: true
  11183. },
  11184. {
  11185. name: "Macro",
  11186. height: math.unit(45, "feet")
  11187. },
  11188. {
  11189. name: "Megamacro",
  11190. height: math.unit(250, "miles")
  11191. },
  11192. {
  11193. name: "Planetary",
  11194. height: math.unit(10000, "miles")
  11195. },
  11196. {
  11197. name: "Galactic",
  11198. height: math.unit(40000, "parsecs")
  11199. },
  11200. {
  11201. name: "Universal",
  11202. height: math.unit(1, "yottameter")
  11203. },
  11204. ]
  11205. ))
  11206. characterMakers.push(() => makeCharacter(
  11207. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11208. {
  11209. front: {
  11210. height: math.unit(6, "feet"),
  11211. weight: math.unit(150, "lb"),
  11212. name: "Front",
  11213. image: {
  11214. source: "./media/characters/epifox/front.svg",
  11215. extra: 1,
  11216. bottom: 0.075
  11217. }
  11218. },
  11219. },
  11220. [
  11221. {
  11222. name: "Micro",
  11223. height: math.unit(6, "inches")
  11224. },
  11225. {
  11226. name: "Normal",
  11227. height: math.unit(12, "feet"),
  11228. default: true
  11229. },
  11230. {
  11231. name: "Macro",
  11232. height: math.unit(3810, "feet")
  11233. },
  11234. {
  11235. name: "Megamacro",
  11236. height: math.unit(500, "miles")
  11237. },
  11238. ]
  11239. ))
  11240. characterMakers.push(() => makeCharacter(
  11241. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11242. {
  11243. front: {
  11244. height: math.unit(1.8796, "m"),
  11245. weight: math.unit(230, "lb"),
  11246. name: "Front",
  11247. image: {
  11248. source: "./media/characters/colin-t/front.svg",
  11249. extra: 1272 / 1193,
  11250. bottom: 0.07
  11251. }
  11252. },
  11253. },
  11254. [
  11255. {
  11256. name: "Micro",
  11257. height: math.unit(0.571, "meters")
  11258. },
  11259. {
  11260. name: "Normal",
  11261. height: math.unit(1.8796, "meters"),
  11262. default: true
  11263. },
  11264. {
  11265. name: "Tall",
  11266. height: math.unit(4, "meters")
  11267. },
  11268. {
  11269. name: "Macro",
  11270. height: math.unit(67.241, "meters")
  11271. },
  11272. {
  11273. name: "Megamacro",
  11274. height: math.unit(371.856, "meters")
  11275. },
  11276. {
  11277. name: "Planetary",
  11278. height: math.unit(12631.5689, "km")
  11279. },
  11280. ]
  11281. ))
  11282. characterMakers.push(() => makeCharacter(
  11283. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11284. {
  11285. front: {
  11286. height: math.unit(1.85, "meters"),
  11287. weight: math.unit(80, "kg"),
  11288. name: "Front",
  11289. image: {
  11290. source: "./media/characters/matvei/front.svg",
  11291. extra: 614 / 594,
  11292. bottom: 0.01
  11293. }
  11294. },
  11295. },
  11296. [
  11297. {
  11298. name: "Normal",
  11299. height: math.unit(1.85, "meters"),
  11300. default: true
  11301. },
  11302. ]
  11303. ))
  11304. characterMakers.push(() => makeCharacter(
  11305. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11306. {
  11307. front: {
  11308. height: math.unit(5 + 9 / 12, "feet"),
  11309. weight: math.unit(70, "lb"),
  11310. name: "Front",
  11311. image: {
  11312. source: "./media/characters/quincy/front.svg",
  11313. extra: 3041 / 2751
  11314. }
  11315. },
  11316. back: {
  11317. height: math.unit(5 + 9 / 12, "feet"),
  11318. weight: math.unit(70, "lb"),
  11319. name: "Back",
  11320. image: {
  11321. source: "./media/characters/quincy/back.svg",
  11322. extra: 3041 / 2751
  11323. }
  11324. },
  11325. flying: {
  11326. height: math.unit(5 + 4 / 12, "feet"),
  11327. weight: math.unit(70, "lb"),
  11328. name: "Flying",
  11329. image: {
  11330. source: "./media/characters/quincy/flying.svg",
  11331. extra: 1044 / 930
  11332. }
  11333. },
  11334. },
  11335. [
  11336. {
  11337. name: "Micro",
  11338. height: math.unit(3, "cm")
  11339. },
  11340. {
  11341. name: "Normal",
  11342. height: math.unit(5 + 9 / 12, "feet")
  11343. },
  11344. {
  11345. name: "Macro",
  11346. height: math.unit(200, "meters"),
  11347. default: true
  11348. },
  11349. {
  11350. name: "Megamacro",
  11351. height: math.unit(1000, "meters")
  11352. },
  11353. ]
  11354. ))
  11355. characterMakers.push(() => makeCharacter(
  11356. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11357. {
  11358. front: {
  11359. height: math.unit(4 + 7 / 12, "feet"),
  11360. weight: math.unit(50, "lb"),
  11361. name: "Front",
  11362. image: {
  11363. source: "./media/characters/vanrel/front.svg",
  11364. extra: 1,
  11365. bottom: 0.02
  11366. }
  11367. },
  11368. frontAlt: {
  11369. height: math.unit(4 + 7 / 12, "feet"),
  11370. weight: math.unit(50, "lb"),
  11371. name: "Front-alt",
  11372. image: {
  11373. source: "./media/characters/vanrel/front-alt.svg",
  11374. extra: 1,
  11375. bottom: 15 / 1511
  11376. }
  11377. },
  11378. elemental: {
  11379. height: math.unit(3, "feet"),
  11380. weight: math.unit(50, "lb"),
  11381. name: "Elemental",
  11382. image: {
  11383. source: "./media/characters/vanrel/elemental.svg",
  11384. extra: 192.3 / 162.8,
  11385. bottom: 1.79 / 194.17
  11386. }
  11387. },
  11388. side: {
  11389. height: math.unit(4 + 7 / 12, "feet"),
  11390. weight: math.unit(50, "lb"),
  11391. name: "Side",
  11392. image: {
  11393. source: "./media/characters/vanrel/side.svg",
  11394. extra: 1,
  11395. bottom: 0.025
  11396. }
  11397. },
  11398. tome: {
  11399. height: math.unit(1.35, "feet"),
  11400. weight: math.unit(10, "lb"),
  11401. name: "Vanrel's Tome",
  11402. rename: true,
  11403. image: {
  11404. source: "./media/characters/vanrel/tome.svg"
  11405. }
  11406. },
  11407. beans: {
  11408. height: math.unit(0.89, "feet"),
  11409. name: "Beans",
  11410. image: {
  11411. source: "./media/characters/vanrel/beans.svg"
  11412. }
  11413. },
  11414. },
  11415. [
  11416. {
  11417. name: "Normal",
  11418. height: math.unit(4 + 7 / 12, "feet"),
  11419. default: true
  11420. },
  11421. ]
  11422. ))
  11423. characterMakers.push(() => makeCharacter(
  11424. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11425. {
  11426. front: {
  11427. height: math.unit(7 + 5 / 12, "feet"),
  11428. weight: math.unit(150, "lb"),
  11429. name: "Front",
  11430. image: {
  11431. source: "./media/characters/kuiper-vanrel/front.svg",
  11432. extra: 1118 / 1068,
  11433. bottom: 0.09
  11434. }
  11435. },
  11436. foot: {
  11437. height: math.unit(0.55, "meters"),
  11438. name: "Foot",
  11439. image: {
  11440. source: "./media/characters/kuiper-vanrel/foot.svg",
  11441. }
  11442. },
  11443. battle: {
  11444. height: math.unit(6.824, "feet"),
  11445. weight: math.unit(150, "lb"),
  11446. name: "Battle",
  11447. image: {
  11448. source: "./media/characters/kuiper-vanrel/battle.svg",
  11449. extra: 1466 / 1327,
  11450. bottom: 29 / 1492.5
  11451. }
  11452. },
  11453. battleAlt: {
  11454. height: math.unit(6.824, "feet"),
  11455. weight: math.unit(150, "lb"),
  11456. name: "Battle (Alt)",
  11457. image: {
  11458. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11459. extra: 2081 / 1965,
  11460. bottom: 40 / 2121
  11461. }
  11462. },
  11463. },
  11464. [
  11465. {
  11466. name: "Normal",
  11467. height: math.unit(7 + 5 / 12, "feet"),
  11468. default: true
  11469. },
  11470. ]
  11471. ))
  11472. characterMakers.push(() => makeCharacter(
  11473. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11474. {
  11475. front: {
  11476. height: math.unit(8 + 5 / 12, "feet"),
  11477. weight: math.unit(150, "lb"),
  11478. name: "Front",
  11479. image: {
  11480. source: "./media/characters/keset-vanrel/front.svg",
  11481. extra: 1150 / 1084,
  11482. bottom: 0.05
  11483. }
  11484. },
  11485. hand: {
  11486. height: math.unit(0.6, "meters"),
  11487. name: "Hand",
  11488. image: {
  11489. source: "./media/characters/keset-vanrel/hand.svg"
  11490. }
  11491. },
  11492. foot: {
  11493. height: math.unit(0.94978, "meters"),
  11494. name: "Foot",
  11495. image: {
  11496. source: "./media/characters/keset-vanrel/foot.svg"
  11497. }
  11498. },
  11499. battle: {
  11500. height: math.unit(7.408, "feet"),
  11501. weight: math.unit(150, "lb"),
  11502. name: "Battle",
  11503. image: {
  11504. source: "./media/characters/keset-vanrel/battle.svg",
  11505. extra: 1890 / 1386,
  11506. bottom: 73.28 / 1970
  11507. }
  11508. },
  11509. },
  11510. [
  11511. {
  11512. name: "Normal",
  11513. height: math.unit(8 + 5 / 12, "feet"),
  11514. default: true
  11515. },
  11516. ]
  11517. ))
  11518. characterMakers.push(() => makeCharacter(
  11519. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11520. {
  11521. front: {
  11522. height: math.unit(6, "feet"),
  11523. weight: math.unit(150, "lb"),
  11524. name: "Front",
  11525. image: {
  11526. source: "./media/characters/neos/front.svg",
  11527. extra: 1696 / 992,
  11528. bottom: 0.14
  11529. }
  11530. },
  11531. },
  11532. [
  11533. {
  11534. name: "Normal",
  11535. height: math.unit(54, "cm"),
  11536. default: true
  11537. },
  11538. {
  11539. name: "Macro",
  11540. height: math.unit(100, "m")
  11541. },
  11542. {
  11543. name: "Megamacro",
  11544. height: math.unit(10, "km")
  11545. },
  11546. {
  11547. name: "Megamacro+",
  11548. height: math.unit(100, "km")
  11549. },
  11550. {
  11551. name: "Gigamacro",
  11552. height: math.unit(100, "Mm")
  11553. },
  11554. {
  11555. name: "Teramacro",
  11556. height: math.unit(100, "Gm")
  11557. },
  11558. {
  11559. name: "Examacro",
  11560. height: math.unit(100, "Em")
  11561. },
  11562. {
  11563. name: "Godly",
  11564. height: math.unit(10000, "Ym")
  11565. },
  11566. {
  11567. name: "Beyond Godly",
  11568. height: math.unit(25, "multiverses")
  11569. },
  11570. ]
  11571. ))
  11572. characterMakers.push(() => makeCharacter(
  11573. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11574. {
  11575. feminine: {
  11576. height: math.unit(5, "feet"),
  11577. weight: math.unit(100, "lb"),
  11578. name: "Feminine",
  11579. image: {
  11580. source: "./media/characters/sammy-mouse/feminine.svg",
  11581. extra: 2526 / 2425,
  11582. bottom: 0.123
  11583. }
  11584. },
  11585. masculine: {
  11586. height: math.unit(5, "feet"),
  11587. weight: math.unit(100, "lb"),
  11588. name: "Masculine",
  11589. image: {
  11590. source: "./media/characters/sammy-mouse/masculine.svg",
  11591. extra: 2526 / 2425,
  11592. bottom: 0.123
  11593. }
  11594. },
  11595. },
  11596. [
  11597. {
  11598. name: "Micro",
  11599. height: math.unit(5, "inches")
  11600. },
  11601. {
  11602. name: "Normal",
  11603. height: math.unit(5, "feet"),
  11604. default: true
  11605. },
  11606. {
  11607. name: "Macro",
  11608. height: math.unit(60, "feet")
  11609. },
  11610. ]
  11611. ))
  11612. characterMakers.push(() => makeCharacter(
  11613. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11614. {
  11615. front: {
  11616. height: math.unit(4, "feet"),
  11617. weight: math.unit(50, "lb"),
  11618. name: "Front",
  11619. image: {
  11620. source: "./media/characters/kole/front.svg",
  11621. extra: 1423 / 1303,
  11622. bottom: 0.025
  11623. }
  11624. },
  11625. back: {
  11626. height: math.unit(4, "feet"),
  11627. weight: math.unit(50, "lb"),
  11628. name: "Back",
  11629. image: {
  11630. source: "./media/characters/kole/back.svg",
  11631. extra: 1426 / 1280,
  11632. bottom: 0.02
  11633. }
  11634. },
  11635. },
  11636. [
  11637. {
  11638. name: "Normal",
  11639. height: math.unit(4, "feet"),
  11640. default: true
  11641. },
  11642. ]
  11643. ))
  11644. characterMakers.push(() => makeCharacter(
  11645. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11646. {
  11647. front: {
  11648. height: math.unit(2 + 6 / 12, "feet"),
  11649. weight: math.unit(20, "lb"),
  11650. name: "Front",
  11651. image: {
  11652. source: "./media/characters/rufran/front.svg",
  11653. extra: 2041 / 1839,
  11654. bottom: 0.055
  11655. }
  11656. },
  11657. back: {
  11658. height: math.unit(2 + 6 / 12, "feet"),
  11659. weight: math.unit(20, "lb"),
  11660. name: "Back",
  11661. image: {
  11662. source: "./media/characters/rufran/back.svg",
  11663. extra: 2054 / 1839,
  11664. bottom: 0.01
  11665. }
  11666. },
  11667. hand: {
  11668. height: math.unit(0.2166, "meters"),
  11669. name: "Hand",
  11670. image: {
  11671. source: "./media/characters/rufran/hand.svg"
  11672. }
  11673. },
  11674. foot: {
  11675. height: math.unit(0.185, "meters"),
  11676. name: "Foot",
  11677. image: {
  11678. source: "./media/characters/rufran/foot.svg"
  11679. }
  11680. },
  11681. },
  11682. [
  11683. {
  11684. name: "Micro",
  11685. height: math.unit(1, "inch")
  11686. },
  11687. {
  11688. name: "Normal",
  11689. height: math.unit(2 + 6 / 12, "feet"),
  11690. default: true
  11691. },
  11692. {
  11693. name: "Big",
  11694. height: math.unit(60, "feet")
  11695. },
  11696. {
  11697. name: "Macro",
  11698. height: math.unit(325, "feet")
  11699. },
  11700. ]
  11701. ))
  11702. characterMakers.push(() => makeCharacter(
  11703. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11704. {
  11705. front: {
  11706. height: math.unit(0.3, "meters"),
  11707. weight: math.unit(3.5, "kg"),
  11708. name: "Front",
  11709. image: {
  11710. source: "./media/characters/chip/front.svg",
  11711. extra: 748 / 674
  11712. }
  11713. },
  11714. },
  11715. [
  11716. {
  11717. name: "Micro",
  11718. height: math.unit(1, "inch"),
  11719. default: true
  11720. },
  11721. ]
  11722. ))
  11723. characterMakers.push(() => makeCharacter(
  11724. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11725. {
  11726. side: {
  11727. height: math.unit(2.3, "meters"),
  11728. weight: math.unit(3500, "lb"),
  11729. name: "Side",
  11730. image: {
  11731. source: "./media/characters/torvid/side.svg",
  11732. extra: 1972 / 722,
  11733. bottom: 0.035
  11734. }
  11735. },
  11736. },
  11737. [
  11738. {
  11739. name: "Normal",
  11740. height: math.unit(2.3, "meters"),
  11741. default: true
  11742. },
  11743. ]
  11744. ))
  11745. characterMakers.push(() => makeCharacter(
  11746. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11747. {
  11748. front: {
  11749. height: math.unit(2, "meters"),
  11750. weight: math.unit(150.5, "kg"),
  11751. name: "Front",
  11752. image: {
  11753. source: "./media/characters/susan/front.svg",
  11754. extra: 693 / 635,
  11755. bottom: 0.05
  11756. }
  11757. },
  11758. },
  11759. [
  11760. {
  11761. name: "Megamacro",
  11762. height: math.unit(505, "miles"),
  11763. default: true
  11764. },
  11765. ]
  11766. ))
  11767. characterMakers.push(() => makeCharacter(
  11768. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11769. {
  11770. front: {
  11771. height: math.unit(6, "feet"),
  11772. weight: math.unit(150, "lb"),
  11773. name: "Front",
  11774. image: {
  11775. source: "./media/characters/raindrops/front.svg",
  11776. extra: 2655 / 2461,
  11777. bottom: 49 / 2705
  11778. }
  11779. },
  11780. back: {
  11781. height: math.unit(6, "feet"),
  11782. weight: math.unit(150, "lb"),
  11783. name: "Back",
  11784. image: {
  11785. source: "./media/characters/raindrops/back.svg",
  11786. extra: 2574 / 2400,
  11787. bottom: 65 / 2634
  11788. }
  11789. },
  11790. },
  11791. [
  11792. {
  11793. name: "Micro",
  11794. height: math.unit(6, "inches")
  11795. },
  11796. {
  11797. name: "Normal",
  11798. height: math.unit(6 + 2 / 12, "feet")
  11799. },
  11800. {
  11801. name: "Macro",
  11802. height: math.unit(131, "feet"),
  11803. default: true
  11804. },
  11805. {
  11806. name: "Megamacro",
  11807. height: math.unit(15, "miles")
  11808. },
  11809. {
  11810. name: "Gigamacro",
  11811. height: math.unit(4000, "miles")
  11812. },
  11813. {
  11814. name: "Teramacro",
  11815. height: math.unit(315000, "miles")
  11816. },
  11817. ]
  11818. ))
  11819. characterMakers.push(() => makeCharacter(
  11820. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11821. {
  11822. front: {
  11823. height: math.unit(2.794, "meters"),
  11824. weight: math.unit(325, "kg"),
  11825. name: "Front",
  11826. image: {
  11827. source: "./media/characters/tezwa/front.svg",
  11828. extra: 2083 / 1906,
  11829. bottom: 0.031
  11830. }
  11831. },
  11832. foot: {
  11833. height: math.unit(0.687, "meters"),
  11834. name: "Foot",
  11835. image: {
  11836. source: "./media/characters/tezwa/foot.svg"
  11837. }
  11838. },
  11839. },
  11840. [
  11841. {
  11842. name: "Normal",
  11843. height: math.unit(9 + 2 / 12, "feet"),
  11844. default: true
  11845. },
  11846. ]
  11847. ))
  11848. characterMakers.push(() => makeCharacter(
  11849. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11850. {
  11851. front: {
  11852. height: math.unit(58, "feet"),
  11853. weight: math.unit(89000, "lb"),
  11854. name: "Front",
  11855. image: {
  11856. source: "./media/characters/typhus/front.svg",
  11857. extra: 816 / 800,
  11858. bottom: 0.065
  11859. }
  11860. },
  11861. },
  11862. [
  11863. {
  11864. name: "Macro",
  11865. height: math.unit(58, "feet"),
  11866. default: true
  11867. },
  11868. ]
  11869. ))
  11870. characterMakers.push(() => makeCharacter(
  11871. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11872. {
  11873. front: {
  11874. height: math.unit(12, "feet"),
  11875. weight: math.unit(6, "tonnes"),
  11876. name: "Front",
  11877. image: {
  11878. source: "./media/characters/lyra-von-wulf/front.svg",
  11879. extra: 1,
  11880. bottom: 0.10
  11881. }
  11882. },
  11883. frontMecha: {
  11884. height: math.unit(12, "feet"),
  11885. weight: math.unit(12, "tonnes"),
  11886. name: "Front (Mecha)",
  11887. image: {
  11888. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11889. extra: 1,
  11890. bottom: 0.042
  11891. }
  11892. },
  11893. maw: {
  11894. height: math.unit(2.2, "feet"),
  11895. name: "Maw",
  11896. image: {
  11897. source: "./media/characters/lyra-von-wulf/maw.svg"
  11898. }
  11899. },
  11900. },
  11901. [
  11902. {
  11903. name: "Normal",
  11904. height: math.unit(12, "feet"),
  11905. default: true
  11906. },
  11907. {
  11908. name: "Classic",
  11909. height: math.unit(50, "feet")
  11910. },
  11911. {
  11912. name: "Macro",
  11913. height: math.unit(500, "feet")
  11914. },
  11915. {
  11916. name: "Megamacro",
  11917. height: math.unit(1, "mile")
  11918. },
  11919. {
  11920. name: "Gigamacro",
  11921. height: math.unit(400, "miles")
  11922. },
  11923. {
  11924. name: "Teramacro",
  11925. height: math.unit(22000, "miles")
  11926. },
  11927. {
  11928. name: "Solarmacro",
  11929. height: math.unit(8600000, "miles")
  11930. },
  11931. {
  11932. name: "Galactic",
  11933. height: math.unit(1057000, "lightyears")
  11934. },
  11935. ]
  11936. ))
  11937. characterMakers.push(() => makeCharacter(
  11938. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11939. {
  11940. front: {
  11941. height: math.unit(6 + 10 / 12, "feet"),
  11942. weight: math.unit(150, "lb"),
  11943. name: "Front",
  11944. image: {
  11945. source: "./media/characters/dixon/front.svg",
  11946. extra: 3361 / 3209,
  11947. bottom: 0.01
  11948. }
  11949. },
  11950. },
  11951. [
  11952. {
  11953. name: "Normal",
  11954. height: math.unit(6 + 10 / 12, "feet"),
  11955. default: true
  11956. },
  11957. {
  11958. name: "Big",
  11959. height: math.unit(12, "meters")
  11960. },
  11961. {
  11962. name: "Macro",
  11963. height: math.unit(500, "meters")
  11964. },
  11965. {
  11966. name: "Megamacro",
  11967. height: math.unit(2, "km")
  11968. },
  11969. ]
  11970. ))
  11971. characterMakers.push(() => makeCharacter(
  11972. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11973. {
  11974. front: {
  11975. height: math.unit(185, "cm"),
  11976. weight: math.unit(68, "kg"),
  11977. name: "Front",
  11978. image: {
  11979. source: "./media/characters/kauko/front.svg",
  11980. extra: 1455 / 1421,
  11981. bottom: 0.03
  11982. }
  11983. },
  11984. back: {
  11985. height: math.unit(185, "cm"),
  11986. weight: math.unit(68, "kg"),
  11987. name: "Back",
  11988. image: {
  11989. source: "./media/characters/kauko/back.svg",
  11990. extra: 1455 / 1421,
  11991. bottom: 0.004
  11992. }
  11993. },
  11994. },
  11995. [
  11996. {
  11997. name: "Normal",
  11998. height: math.unit(185, "cm"),
  11999. default: true
  12000. },
  12001. ]
  12002. ))
  12003. characterMakers.push(() => makeCharacter(
  12004. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12005. {
  12006. front: {
  12007. height: math.unit(6, "feet"),
  12008. weight: math.unit(150, "kg"),
  12009. name: "Front",
  12010. image: {
  12011. source: "./media/characters/varg/front.svg",
  12012. extra: 1108 / 1018,
  12013. bottom: 0.0375
  12014. }
  12015. },
  12016. },
  12017. [
  12018. {
  12019. name: "Normal",
  12020. height: math.unit(5, "meters")
  12021. },
  12022. {
  12023. name: "Macro",
  12024. height: math.unit(200, "meters")
  12025. },
  12026. {
  12027. name: "Megamacro",
  12028. height: math.unit(20, "kilometers")
  12029. },
  12030. {
  12031. name: "True Size",
  12032. height: math.unit(211, "km"),
  12033. default: true
  12034. },
  12035. {
  12036. name: "Gigamacro",
  12037. height: math.unit(1000, "km")
  12038. },
  12039. {
  12040. name: "Gigamacro+",
  12041. height: math.unit(8000, "km")
  12042. },
  12043. {
  12044. name: "Teramacro",
  12045. height: math.unit(1000000, "km")
  12046. },
  12047. ]
  12048. ))
  12049. characterMakers.push(() => makeCharacter(
  12050. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12051. {
  12052. front: {
  12053. height: math.unit(7 + 7 / 12, "feet"),
  12054. weight: math.unit(267, "lb"),
  12055. name: "Front",
  12056. image: {
  12057. source: "./media/characters/dayza/front.svg",
  12058. extra: 1262 / 1200,
  12059. bottom: 0.035
  12060. }
  12061. },
  12062. side: {
  12063. height: math.unit(7 + 7 / 12, "feet"),
  12064. weight: math.unit(267, "lb"),
  12065. name: "Side",
  12066. image: {
  12067. source: "./media/characters/dayza/side.svg",
  12068. extra: 1295 / 1245,
  12069. bottom: 0.05
  12070. }
  12071. },
  12072. back: {
  12073. height: math.unit(7 + 7 / 12, "feet"),
  12074. weight: math.unit(267, "lb"),
  12075. name: "Back",
  12076. image: {
  12077. source: "./media/characters/dayza/back.svg",
  12078. extra: 1241 / 1170
  12079. }
  12080. },
  12081. },
  12082. [
  12083. {
  12084. name: "Normal",
  12085. height: math.unit(7 + 7 / 12, "feet"),
  12086. default: true
  12087. },
  12088. {
  12089. name: "Macro",
  12090. height: math.unit(155, "feet")
  12091. },
  12092. ]
  12093. ))
  12094. characterMakers.push(() => makeCharacter(
  12095. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12096. {
  12097. front: {
  12098. height: math.unit(6 + 5 / 12, "feet"),
  12099. weight: math.unit(160, "lb"),
  12100. name: "Front",
  12101. image: {
  12102. source: "./media/characters/xanthos/front.svg",
  12103. extra: 1,
  12104. bottom: 0.04
  12105. }
  12106. },
  12107. back: {
  12108. height: math.unit(6 + 5 / 12, "feet"),
  12109. weight: math.unit(160, "lb"),
  12110. name: "Back",
  12111. image: {
  12112. source: "./media/characters/xanthos/back.svg",
  12113. extra: 1,
  12114. bottom: 0.03
  12115. }
  12116. },
  12117. hand: {
  12118. height: math.unit(0.928, "feet"),
  12119. name: "Hand",
  12120. image: {
  12121. source: "./media/characters/xanthos/hand.svg"
  12122. }
  12123. },
  12124. foot: {
  12125. height: math.unit(1.286, "feet"),
  12126. name: "Foot",
  12127. image: {
  12128. source: "./media/characters/xanthos/foot.svg"
  12129. }
  12130. },
  12131. },
  12132. [
  12133. {
  12134. name: "Normal",
  12135. height: math.unit(6 + 5 / 12, "feet"),
  12136. default: true
  12137. },
  12138. {
  12139. name: "Normal+",
  12140. height: math.unit(6, "meters")
  12141. },
  12142. {
  12143. name: "Macro",
  12144. height: math.unit(40, "feet")
  12145. },
  12146. {
  12147. name: "Macro+",
  12148. height: math.unit(200, "meters")
  12149. },
  12150. {
  12151. name: "Megamacro",
  12152. height: math.unit(20, "km")
  12153. },
  12154. {
  12155. name: "Megamacro+",
  12156. height: math.unit(100, "km")
  12157. },
  12158. ]
  12159. ))
  12160. characterMakers.push(() => makeCharacter(
  12161. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12162. {
  12163. front: {
  12164. height: math.unit(6 + 3 / 12, "feet"),
  12165. weight: math.unit(215, "lb"),
  12166. name: "Front",
  12167. image: {
  12168. source: "./media/characters/grynn/front.svg",
  12169. extra: 4627 / 4209,
  12170. bottom: 0.047
  12171. }
  12172. },
  12173. },
  12174. [
  12175. {
  12176. name: "Micro",
  12177. height: math.unit(6, "inches")
  12178. },
  12179. {
  12180. name: "Normal",
  12181. height: math.unit(6 + 3 / 12, "feet"),
  12182. default: true
  12183. },
  12184. {
  12185. name: "Big",
  12186. height: math.unit(104, "feet")
  12187. },
  12188. {
  12189. name: "Macro",
  12190. height: math.unit(944, "feet")
  12191. },
  12192. {
  12193. name: "Macro+",
  12194. height: math.unit(9480, "feet")
  12195. },
  12196. {
  12197. name: "Megamacro",
  12198. height: math.unit(78752, "feet")
  12199. },
  12200. {
  12201. name: "Megamacro+",
  12202. height: math.unit(630128, "feet")
  12203. },
  12204. {
  12205. name: "Megamacro++",
  12206. height: math.unit(3150695, "feet")
  12207. },
  12208. ]
  12209. ))
  12210. characterMakers.push(() => makeCharacter(
  12211. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12212. {
  12213. front: {
  12214. height: math.unit(7 + 5 / 12, "feet"),
  12215. weight: math.unit(450, "lb"),
  12216. name: "Front",
  12217. image: {
  12218. source: "./media/characters/mocha-aura/front.svg",
  12219. extra: 1907 / 1817,
  12220. bottom: 0.04
  12221. }
  12222. },
  12223. back: {
  12224. height: math.unit(7 + 5 / 12, "feet"),
  12225. weight: math.unit(450, "lb"),
  12226. name: "Back",
  12227. image: {
  12228. source: "./media/characters/mocha-aura/back.svg",
  12229. extra: 1900 / 1825,
  12230. bottom: 0.045
  12231. }
  12232. },
  12233. },
  12234. [
  12235. {
  12236. name: "Nano",
  12237. height: math.unit(1, "nm")
  12238. },
  12239. {
  12240. name: "Megamicro",
  12241. height: math.unit(1, "mm")
  12242. },
  12243. {
  12244. name: "Micro",
  12245. height: math.unit(3, "inches")
  12246. },
  12247. {
  12248. name: "Normal",
  12249. height: math.unit(7 + 5 / 12, "feet"),
  12250. default: true
  12251. },
  12252. {
  12253. name: "Macro",
  12254. height: math.unit(30, "feet")
  12255. },
  12256. {
  12257. name: "Megamacro",
  12258. height: math.unit(3500, "feet")
  12259. },
  12260. {
  12261. name: "Teramacro",
  12262. height: math.unit(500000, "miles")
  12263. },
  12264. {
  12265. name: "Petamacro",
  12266. height: math.unit(50000000000000000, "parsecs")
  12267. },
  12268. ]
  12269. ))
  12270. characterMakers.push(() => makeCharacter(
  12271. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12272. {
  12273. front: {
  12274. height: math.unit(6, "feet"),
  12275. weight: math.unit(150, "lb"),
  12276. name: "Front",
  12277. image: {
  12278. source: "./media/characters/ilisha-devya/front.svg",
  12279. extra: 1,
  12280. bottom: 0.175
  12281. }
  12282. },
  12283. back: {
  12284. height: math.unit(6, "feet"),
  12285. weight: math.unit(150, "lb"),
  12286. name: "Back",
  12287. image: {
  12288. source: "./media/characters/ilisha-devya/back.svg",
  12289. extra: 1,
  12290. bottom: 0.015
  12291. }
  12292. },
  12293. },
  12294. [
  12295. {
  12296. name: "Macro",
  12297. height: math.unit(500, "feet"),
  12298. default: true
  12299. },
  12300. {
  12301. name: "Megamacro",
  12302. height: math.unit(10, "miles")
  12303. },
  12304. {
  12305. name: "Gigamacro",
  12306. height: math.unit(100000, "miles")
  12307. },
  12308. {
  12309. name: "Examacro",
  12310. height: math.unit(1e9, "lightyears")
  12311. },
  12312. {
  12313. name: "Omniversal",
  12314. height: math.unit(1e33, "lightyears")
  12315. },
  12316. {
  12317. name: "Beyond Infinite",
  12318. height: math.unit(1e100, "lightyears")
  12319. },
  12320. ]
  12321. ))
  12322. characterMakers.push(() => makeCharacter(
  12323. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12324. {
  12325. Side: {
  12326. height: math.unit(6, "feet"),
  12327. weight: math.unit(150, "lb"),
  12328. name: "Side",
  12329. image: {
  12330. source: "./media/characters/mira/side.svg",
  12331. extra: 900 / 799,
  12332. bottom: 0.02
  12333. }
  12334. },
  12335. },
  12336. [
  12337. {
  12338. name: "Human Size",
  12339. height: math.unit(6, "feet")
  12340. },
  12341. {
  12342. name: "Macro",
  12343. height: math.unit(100, "feet"),
  12344. default: true
  12345. },
  12346. {
  12347. name: "Megamacro",
  12348. height: math.unit(10, "miles")
  12349. },
  12350. {
  12351. name: "Gigamacro",
  12352. height: math.unit(25000, "miles")
  12353. },
  12354. {
  12355. name: "Teramacro",
  12356. height: math.unit(300, "AU")
  12357. },
  12358. {
  12359. name: "Full Size",
  12360. height: math.unit(4.5e10, "lightyears")
  12361. },
  12362. ]
  12363. ))
  12364. characterMakers.push(() => makeCharacter(
  12365. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12366. {
  12367. front: {
  12368. height: math.unit(6, "feet"),
  12369. weight: math.unit(150, "lb"),
  12370. name: "Front",
  12371. image: {
  12372. source: "./media/characters/holly/front.svg",
  12373. extra: 639 / 606
  12374. }
  12375. },
  12376. back: {
  12377. height: math.unit(6, "feet"),
  12378. weight: math.unit(150, "lb"),
  12379. name: "Back",
  12380. image: {
  12381. source: "./media/characters/holly/back.svg",
  12382. extra: 623 / 598
  12383. }
  12384. },
  12385. frontWorking: {
  12386. height: math.unit(6, "feet"),
  12387. weight: math.unit(150, "lb"),
  12388. name: "Front (Working)",
  12389. image: {
  12390. source: "./media/characters/holly/front-working.svg",
  12391. extra: 607 / 577,
  12392. bottom: 0.048
  12393. }
  12394. },
  12395. },
  12396. [
  12397. {
  12398. name: "Normal",
  12399. height: math.unit(12 + 3 / 12, "feet"),
  12400. default: true
  12401. },
  12402. ]
  12403. ))
  12404. characterMakers.push(() => makeCharacter(
  12405. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12406. {
  12407. front: {
  12408. height: math.unit(6, "feet"),
  12409. weight: math.unit(150, "lb"),
  12410. name: "Front",
  12411. image: {
  12412. source: "./media/characters/porter/front.svg",
  12413. extra: 1,
  12414. bottom: 0.01
  12415. }
  12416. },
  12417. frontRobes: {
  12418. height: math.unit(6, "feet"),
  12419. weight: math.unit(150, "lb"),
  12420. name: "Front (Robes)",
  12421. image: {
  12422. source: "./media/characters/porter/front-robes.svg",
  12423. extra: 1.01,
  12424. bottom: 0.01
  12425. }
  12426. },
  12427. },
  12428. [
  12429. {
  12430. name: "Normal",
  12431. height: math.unit(11 + 9 / 12, "feet"),
  12432. default: true
  12433. },
  12434. ]
  12435. ))
  12436. characterMakers.push(() => makeCharacter(
  12437. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12438. {
  12439. legendary: {
  12440. height: math.unit(6, "feet"),
  12441. weight: math.unit(150, "lb"),
  12442. name: "Legendary",
  12443. image: {
  12444. source: "./media/characters/lucy/legendary.svg",
  12445. extra: 1355 / 1100,
  12446. bottom: 0.045
  12447. }
  12448. },
  12449. },
  12450. [
  12451. {
  12452. name: "Legendary",
  12453. height: math.unit(86882 * 2, "miles"),
  12454. default: true
  12455. },
  12456. ]
  12457. ))
  12458. characterMakers.push(() => makeCharacter(
  12459. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12460. {
  12461. front: {
  12462. height: math.unit(6, "feet"),
  12463. weight: math.unit(150, "lb"),
  12464. name: "Front",
  12465. image: {
  12466. source: "./media/characters/drusilla/front.svg",
  12467. extra: 678 / 635,
  12468. bottom: 0.03
  12469. }
  12470. },
  12471. back: {
  12472. height: math.unit(6, "feet"),
  12473. weight: math.unit(150, "lb"),
  12474. name: "Back",
  12475. image: {
  12476. source: "./media/characters/drusilla/back.svg",
  12477. extra: 678 / 635,
  12478. bottom: 0.005
  12479. }
  12480. },
  12481. },
  12482. [
  12483. {
  12484. name: "Macro",
  12485. height: math.unit(100, "feet")
  12486. },
  12487. {
  12488. name: "Canon Height",
  12489. height: math.unit(2000, "feet"),
  12490. default: true
  12491. },
  12492. ]
  12493. ))
  12494. characterMakers.push(() => makeCharacter(
  12495. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12496. {
  12497. front: {
  12498. height: math.unit(6, "feet"),
  12499. weight: math.unit(180, "lb"),
  12500. name: "Front",
  12501. image: {
  12502. source: "./media/characters/renard-thatch/front.svg",
  12503. extra: 2411 / 2275,
  12504. bottom: 0.01
  12505. }
  12506. },
  12507. frontPosing: {
  12508. height: math.unit(6, "feet"),
  12509. weight: math.unit(180, "lb"),
  12510. name: "Front (Posing)",
  12511. image: {
  12512. source: "./media/characters/renard-thatch/front-posing.svg",
  12513. extra: 2381 / 2261,
  12514. bottom: 0.01
  12515. }
  12516. },
  12517. back: {
  12518. height: math.unit(6, "feet"),
  12519. weight: math.unit(180, "lb"),
  12520. name: "Back",
  12521. image: {
  12522. source: "./media/characters/renard-thatch/back.svg",
  12523. extra: 2428 / 2288
  12524. }
  12525. },
  12526. },
  12527. [
  12528. {
  12529. name: "Micro",
  12530. height: math.unit(3, "inches")
  12531. },
  12532. {
  12533. name: "Default",
  12534. height: math.unit(6, "feet"),
  12535. default: true
  12536. },
  12537. {
  12538. name: "Macro",
  12539. height: math.unit(75, "feet")
  12540. },
  12541. ]
  12542. ))
  12543. characterMakers.push(() => makeCharacter(
  12544. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12545. {
  12546. front: {
  12547. height: math.unit(1450, "feet"),
  12548. weight: math.unit(1.21e6, "tons"),
  12549. name: "Front",
  12550. image: {
  12551. source: "./media/characters/sekvra/front.svg",
  12552. extra: 1,
  12553. bottom: 0.03
  12554. }
  12555. },
  12556. frontClothed: {
  12557. height: math.unit(1450, "feet"),
  12558. weight: math.unit(1.21e6, "tons"),
  12559. name: "Front (Clothed)",
  12560. image: {
  12561. source: "./media/characters/sekvra/front-clothed.svg",
  12562. extra: 1,
  12563. bottom: 0.03
  12564. }
  12565. },
  12566. side: {
  12567. height: math.unit(1450, "feet"),
  12568. weight: math.unit(1.21e6, "tons"),
  12569. name: "Side",
  12570. image: {
  12571. source: "./media/characters/sekvra/side.svg",
  12572. extra: 1,
  12573. bottom: 0.025
  12574. }
  12575. },
  12576. back: {
  12577. height: math.unit(1450, "feet"),
  12578. weight: math.unit(1.21e6, "tons"),
  12579. name: "Back",
  12580. image: {
  12581. source: "./media/characters/sekvra/back.svg",
  12582. extra: 1,
  12583. bottom: 0.005
  12584. }
  12585. },
  12586. },
  12587. [
  12588. {
  12589. name: "Macro",
  12590. height: math.unit(1450, "feet"),
  12591. default: true
  12592. },
  12593. {
  12594. name: "Megamacro",
  12595. height: math.unit(15000, "feet")
  12596. },
  12597. ]
  12598. ))
  12599. characterMakers.push(() => makeCharacter(
  12600. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12601. {
  12602. front: {
  12603. height: math.unit(6, "feet"),
  12604. weight: math.unit(150, "lb"),
  12605. name: "Front",
  12606. image: {
  12607. source: "./media/characters/carmine/front.svg",
  12608. extra: 1,
  12609. bottom: 0.035
  12610. }
  12611. },
  12612. frontArmor: {
  12613. height: math.unit(6, "feet"),
  12614. weight: math.unit(150, "lb"),
  12615. name: "Front (Armor)",
  12616. image: {
  12617. source: "./media/characters/carmine/front-armor.svg",
  12618. extra: 1,
  12619. bottom: 0.035
  12620. }
  12621. },
  12622. },
  12623. [
  12624. {
  12625. name: "Large",
  12626. height: math.unit(1, "mile")
  12627. },
  12628. {
  12629. name: "Huge",
  12630. height: math.unit(40, "miles"),
  12631. default: true
  12632. },
  12633. {
  12634. name: "Colossal",
  12635. height: math.unit(2500, "miles")
  12636. },
  12637. ]
  12638. ))
  12639. characterMakers.push(() => makeCharacter(
  12640. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12641. {
  12642. front: {
  12643. height: math.unit(6, "feet"),
  12644. weight: math.unit(150, "lb"),
  12645. name: "Front",
  12646. image: {
  12647. source: "./media/characters/elyssia/front.svg",
  12648. extra: 2201 / 2035,
  12649. bottom: 0.05
  12650. }
  12651. },
  12652. frontClothed: {
  12653. height: math.unit(6, "feet"),
  12654. weight: math.unit(150, "lb"),
  12655. name: "Front (Clothed)",
  12656. image: {
  12657. source: "./media/characters/elyssia/front-clothed.svg",
  12658. extra: 2201 / 2035,
  12659. bottom: 0.05
  12660. }
  12661. },
  12662. back: {
  12663. height: math.unit(6, "feet"),
  12664. weight: math.unit(150, "lb"),
  12665. name: "Back",
  12666. image: {
  12667. source: "./media/characters/elyssia/back.svg",
  12668. extra: 2201 / 2035,
  12669. bottom: 0.013
  12670. }
  12671. },
  12672. },
  12673. [
  12674. {
  12675. name: "Smaller",
  12676. height: math.unit(150, "feet")
  12677. },
  12678. {
  12679. name: "Standard",
  12680. height: math.unit(1400, "feet"),
  12681. default: true
  12682. },
  12683. {
  12684. name: "Distracted",
  12685. height: math.unit(15000, "feet")
  12686. },
  12687. ]
  12688. ))
  12689. characterMakers.push(() => makeCharacter(
  12690. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12691. {
  12692. front: {
  12693. height: math.unit(7 + 4 / 12, "feet"),
  12694. weight: math.unit(500, "lb"),
  12695. name: "Front",
  12696. image: {
  12697. source: "./media/characters/geno-maxwell/front.svg",
  12698. extra: 2207 / 2040,
  12699. bottom: 0.015
  12700. }
  12701. },
  12702. },
  12703. [
  12704. {
  12705. name: "Micro",
  12706. height: math.unit(3, "inches")
  12707. },
  12708. {
  12709. name: "Normal",
  12710. height: math.unit(7 + 4 / 12, "feet"),
  12711. default: true
  12712. },
  12713. {
  12714. name: "Macro",
  12715. height: math.unit(220, "feet")
  12716. },
  12717. {
  12718. name: "Megamacro",
  12719. height: math.unit(11, "miles")
  12720. },
  12721. ]
  12722. ))
  12723. characterMakers.push(() => makeCharacter(
  12724. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12725. {
  12726. front: {
  12727. height: math.unit(7 + 4 / 12, "feet"),
  12728. weight: math.unit(500, "lb"),
  12729. name: "Front",
  12730. image: {
  12731. source: "./media/characters/regena-maxwell/front.svg",
  12732. extra: 3115 / 2770,
  12733. bottom: 0.02
  12734. }
  12735. },
  12736. },
  12737. [
  12738. {
  12739. name: "Normal",
  12740. height: math.unit(7 + 4 / 12, "feet"),
  12741. default: true
  12742. },
  12743. {
  12744. name: "Macro",
  12745. height: math.unit(220, "feet")
  12746. },
  12747. {
  12748. name: "Megamacro",
  12749. height: math.unit(11, "miles")
  12750. },
  12751. ]
  12752. ))
  12753. characterMakers.push(() => makeCharacter(
  12754. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12755. {
  12756. front: {
  12757. height: math.unit(6, "feet"),
  12758. weight: math.unit(150, "lb"),
  12759. name: "Front",
  12760. image: {
  12761. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12762. extra: 860 / 690,
  12763. bottom: 0.03
  12764. }
  12765. },
  12766. },
  12767. [
  12768. {
  12769. name: "Normal",
  12770. height: math.unit(1.7, "meters"),
  12771. default: true
  12772. },
  12773. ]
  12774. ))
  12775. characterMakers.push(() => makeCharacter(
  12776. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12777. {
  12778. front: {
  12779. height: math.unit(6, "feet"),
  12780. weight: math.unit(150, "lb"),
  12781. name: "Front",
  12782. image: {
  12783. source: "./media/characters/quilly/front.svg",
  12784. extra: 890 / 776
  12785. }
  12786. },
  12787. },
  12788. [
  12789. {
  12790. name: "Gigamacro",
  12791. height: math.unit(404090, "miles"),
  12792. default: true
  12793. },
  12794. ]
  12795. ))
  12796. characterMakers.push(() => makeCharacter(
  12797. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12798. {
  12799. front: {
  12800. height: math.unit(7 + 8 / 12, "feet"),
  12801. weight: math.unit(350, "lb"),
  12802. name: "Front",
  12803. image: {
  12804. source: "./media/characters/tempest/front.svg",
  12805. extra: 1175 / 1086,
  12806. bottom: 0.02
  12807. }
  12808. },
  12809. },
  12810. [
  12811. {
  12812. name: "Normal",
  12813. height: math.unit(7 + 8 / 12, "feet"),
  12814. default: true
  12815. },
  12816. ]
  12817. ))
  12818. characterMakers.push(() => makeCharacter(
  12819. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12820. {
  12821. side: {
  12822. height: math.unit(4 + 5 / 12, "feet"),
  12823. weight: math.unit(80, "lb"),
  12824. name: "Side",
  12825. image: {
  12826. source: "./media/characters/rodger/side.svg",
  12827. extra: 1235 / 1118
  12828. }
  12829. },
  12830. },
  12831. [
  12832. {
  12833. name: "Micro",
  12834. height: math.unit(1, "inch")
  12835. },
  12836. {
  12837. name: "Normal",
  12838. height: math.unit(4 + 5 / 12, "feet"),
  12839. default: true
  12840. },
  12841. {
  12842. name: "Macro",
  12843. height: math.unit(120, "feet")
  12844. },
  12845. ]
  12846. ))
  12847. characterMakers.push(() => makeCharacter(
  12848. { name: "Danyel", species: ["dragon"], 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/danyel/front.svg",
  12856. extra: 1185 / 1123,
  12857. bottom: 0.05
  12858. }
  12859. },
  12860. },
  12861. [
  12862. {
  12863. name: "Shrunken",
  12864. height: math.unit(0.5, "mm")
  12865. },
  12866. {
  12867. name: "Micro",
  12868. height: math.unit(1, "mm"),
  12869. default: true
  12870. },
  12871. {
  12872. name: "Upsized",
  12873. height: math.unit(5 + 5 / 12, "feet")
  12874. },
  12875. ]
  12876. ))
  12877. characterMakers.push(() => makeCharacter(
  12878. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12879. {
  12880. front: {
  12881. height: math.unit(5 + 6 / 12, "feet"),
  12882. weight: math.unit(200, "lb"),
  12883. name: "Front",
  12884. image: {
  12885. source: "./media/characters/vivian-bijoux/front.svg",
  12886. extra: 1,
  12887. bottom: 0.072
  12888. }
  12889. },
  12890. },
  12891. [
  12892. {
  12893. name: "Normal",
  12894. height: math.unit(5 + 6 / 12, "feet"),
  12895. default: true
  12896. },
  12897. {
  12898. name: "Bad Dream",
  12899. height: math.unit(500, "feet")
  12900. },
  12901. {
  12902. name: "Nightmare",
  12903. height: math.unit(500, "miles")
  12904. },
  12905. ]
  12906. ))
  12907. characterMakers.push(() => makeCharacter(
  12908. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12909. {
  12910. front: {
  12911. height: math.unit(6 + 1 / 12, "feet"),
  12912. weight: math.unit(260, "lb"),
  12913. name: "Front",
  12914. image: {
  12915. source: "./media/characters/zeta/front.svg",
  12916. extra: 1968 / 1889,
  12917. bottom: 0.06
  12918. }
  12919. },
  12920. back: {
  12921. height: math.unit(6 + 1 / 12, "feet"),
  12922. weight: math.unit(260, "lb"),
  12923. name: "Back",
  12924. image: {
  12925. source: "./media/characters/zeta/back.svg",
  12926. extra: 1944 / 1858,
  12927. bottom: 0.03
  12928. }
  12929. },
  12930. hand: {
  12931. height: math.unit(1.112, "feet"),
  12932. name: "Hand",
  12933. image: {
  12934. source: "./media/characters/zeta/hand.svg"
  12935. }
  12936. },
  12937. foot: {
  12938. height: math.unit(1.48, "feet"),
  12939. name: "Foot",
  12940. image: {
  12941. source: "./media/characters/zeta/foot.svg"
  12942. }
  12943. },
  12944. },
  12945. [
  12946. {
  12947. name: "Micro",
  12948. height: math.unit(6, "inches")
  12949. },
  12950. {
  12951. name: "Normal",
  12952. height: math.unit(6 + 1 / 12, "feet"),
  12953. default: true
  12954. },
  12955. {
  12956. name: "Macro",
  12957. height: math.unit(20, "feet")
  12958. },
  12959. ]
  12960. ))
  12961. characterMakers.push(() => makeCharacter(
  12962. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12963. {
  12964. front: {
  12965. height: math.unit(6, "feet"),
  12966. weight: math.unit(150, "lb"),
  12967. name: "Front",
  12968. image: {
  12969. source: "./media/characters/jamie-larsen/front.svg",
  12970. extra: 962 / 933,
  12971. bottom: 0.02
  12972. }
  12973. },
  12974. back: {
  12975. height: math.unit(6, "feet"),
  12976. weight: math.unit(150, "lb"),
  12977. name: "Back",
  12978. image: {
  12979. source: "./media/characters/jamie-larsen/back.svg",
  12980. extra: 997 / 946
  12981. }
  12982. },
  12983. },
  12984. [
  12985. {
  12986. name: "Macro",
  12987. height: math.unit(28 + 7 / 12, "feet"),
  12988. default: true
  12989. },
  12990. {
  12991. name: "Macro+",
  12992. height: math.unit(180, "feet")
  12993. },
  12994. {
  12995. name: "Megamacro",
  12996. height: math.unit(10, "miles")
  12997. },
  12998. {
  12999. name: "Gigamacro",
  13000. height: math.unit(200000, "miles")
  13001. },
  13002. ]
  13003. ))
  13004. characterMakers.push(() => makeCharacter(
  13005. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13006. {
  13007. front: {
  13008. height: math.unit(6, "feet"),
  13009. weight: math.unit(120, "lb"),
  13010. name: "Front",
  13011. image: {
  13012. source: "./media/characters/vance/front.svg",
  13013. extra: 1980 / 1890,
  13014. bottom: 0.09
  13015. }
  13016. },
  13017. back: {
  13018. height: math.unit(6, "feet"),
  13019. weight: math.unit(120, "lb"),
  13020. name: "Back",
  13021. image: {
  13022. source: "./media/characters/vance/back.svg",
  13023. extra: 2081 / 1994,
  13024. bottom: 0.014
  13025. }
  13026. },
  13027. hand: {
  13028. height: math.unit(0.88, "feet"),
  13029. name: "Hand",
  13030. image: {
  13031. source: "./media/characters/vance/hand.svg"
  13032. }
  13033. },
  13034. foot: {
  13035. height: math.unit(0.64, "feet"),
  13036. name: "Foot",
  13037. image: {
  13038. source: "./media/characters/vance/foot.svg"
  13039. }
  13040. },
  13041. },
  13042. [
  13043. {
  13044. name: "Small",
  13045. height: math.unit(90, "feet"),
  13046. default: true
  13047. },
  13048. {
  13049. name: "Macro",
  13050. height: math.unit(100, "meters")
  13051. },
  13052. {
  13053. name: "Megamacro",
  13054. height: math.unit(15, "miles")
  13055. },
  13056. ]
  13057. ))
  13058. characterMakers.push(() => makeCharacter(
  13059. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13060. {
  13061. front: {
  13062. height: math.unit(6, "feet"),
  13063. weight: math.unit(180, "lb"),
  13064. name: "Front",
  13065. image: {
  13066. source: "./media/characters/xochitl/front.svg",
  13067. extra: 2297 / 2261,
  13068. bottom: 0.065
  13069. }
  13070. },
  13071. back: {
  13072. height: math.unit(6, "feet"),
  13073. weight: math.unit(180, "lb"),
  13074. name: "Back",
  13075. image: {
  13076. source: "./media/characters/xochitl/back.svg",
  13077. extra: 2386 / 2354,
  13078. bottom: 0.01
  13079. }
  13080. },
  13081. foot: {
  13082. height: math.unit(6 / 5 * 1.15, "feet"),
  13083. weight: math.unit(150, "lb"),
  13084. name: "Foot",
  13085. image: {
  13086. source: "./media/characters/xochitl/foot.svg"
  13087. }
  13088. },
  13089. },
  13090. [
  13091. {
  13092. name: "Macro",
  13093. height: math.unit(80, "feet")
  13094. },
  13095. {
  13096. name: "Macro+",
  13097. height: math.unit(400, "feet"),
  13098. default: true
  13099. },
  13100. {
  13101. name: "Gigamacro",
  13102. height: math.unit(80000, "miles")
  13103. },
  13104. {
  13105. name: "Gigamacro+",
  13106. height: math.unit(400000, "miles")
  13107. },
  13108. {
  13109. name: "Teramacro",
  13110. height: math.unit(300, "AU")
  13111. },
  13112. ]
  13113. ))
  13114. characterMakers.push(() => makeCharacter(
  13115. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13116. {
  13117. front: {
  13118. height: math.unit(6, "feet"),
  13119. weight: math.unit(150, "lb"),
  13120. name: "Front",
  13121. image: {
  13122. source: "./media/characters/vincent/front.svg",
  13123. extra: 1130 / 1080,
  13124. bottom: 0.055
  13125. }
  13126. },
  13127. beak: {
  13128. height: math.unit(6 * 0.1, "feet"),
  13129. name: "Beak",
  13130. image: {
  13131. source: "./media/characters/vincent/beak.svg"
  13132. }
  13133. },
  13134. hand: {
  13135. height: math.unit(6 * 0.85, "feet"),
  13136. weight: math.unit(150, "lb"),
  13137. name: "Hand",
  13138. image: {
  13139. source: "./media/characters/vincent/hand.svg"
  13140. }
  13141. },
  13142. foot: {
  13143. height: math.unit(6 * 0.19, "feet"),
  13144. weight: math.unit(150, "lb"),
  13145. name: "Foot",
  13146. image: {
  13147. source: "./media/characters/vincent/foot.svg"
  13148. }
  13149. },
  13150. },
  13151. [
  13152. {
  13153. name: "Base",
  13154. height: math.unit(6 + 5 / 12, "feet"),
  13155. default: true
  13156. },
  13157. {
  13158. name: "Macro",
  13159. height: math.unit(300, "feet")
  13160. },
  13161. {
  13162. name: "Megamacro",
  13163. height: math.unit(2, "miles")
  13164. },
  13165. {
  13166. name: "Gigamacro",
  13167. height: math.unit(1000, "miles")
  13168. },
  13169. ]
  13170. ))
  13171. characterMakers.push(() => makeCharacter(
  13172. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  13173. {
  13174. front: {
  13175. height: math.unit(6 + 2 / 12, "feet"),
  13176. weight: math.unit(265, "lb"),
  13177. name: "Front",
  13178. image: {
  13179. source: "./media/characters/jay/front.svg",
  13180. extra: 1510 / 1430,
  13181. bottom: 0.042
  13182. }
  13183. },
  13184. back: {
  13185. height: math.unit(6 + 2 / 12, "feet"),
  13186. weight: math.unit(265, "lb"),
  13187. name: "Back",
  13188. image: {
  13189. source: "./media/characters/jay/back.svg",
  13190. extra: 1510 / 1430,
  13191. bottom: 0.025
  13192. }
  13193. },
  13194. clothed: {
  13195. height: math.unit(6 + 2 / 12, "feet"),
  13196. weight: math.unit(265, "lb"),
  13197. name: "Front (Clothed)",
  13198. image: {
  13199. source: "./media/characters/jay/clothed.svg",
  13200. extra: 744 / 699,
  13201. bottom: 0.043
  13202. }
  13203. },
  13204. head: {
  13205. height: math.unit(1.772, "feet"),
  13206. name: "Head",
  13207. image: {
  13208. source: "./media/characters/jay/head.svg"
  13209. }
  13210. },
  13211. sizeRay: {
  13212. height: math.unit(1.331, "feet"),
  13213. name: "Size Ray",
  13214. image: {
  13215. source: "./media/characters/jay/size-ray.svg"
  13216. }
  13217. },
  13218. },
  13219. [
  13220. {
  13221. name: "Micro",
  13222. height: math.unit(1, "inch")
  13223. },
  13224. {
  13225. name: "Normal",
  13226. height: math.unit(6 + 2 / 12, "feet"),
  13227. default: true
  13228. },
  13229. {
  13230. name: "Macro",
  13231. height: math.unit(1, "mile")
  13232. },
  13233. {
  13234. name: "Megamacro",
  13235. height: math.unit(100, "miles")
  13236. },
  13237. ]
  13238. ))
  13239. characterMakers.push(() => makeCharacter(
  13240. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13241. {
  13242. front: {
  13243. height: math.unit(2, "meters"),
  13244. weight: math.unit(500, "kg"),
  13245. name: "Front",
  13246. image: {
  13247. source: "./media/characters/coatl/front.svg",
  13248. extra: 3948 / 3500,
  13249. bottom: 0.082
  13250. }
  13251. },
  13252. },
  13253. [
  13254. {
  13255. name: "Normal",
  13256. height: math.unit(4, "meters")
  13257. },
  13258. {
  13259. name: "Macro",
  13260. height: math.unit(100, "meters"),
  13261. default: true
  13262. },
  13263. {
  13264. name: "Macro+",
  13265. height: math.unit(300, "meters")
  13266. },
  13267. {
  13268. name: "Megamacro",
  13269. height: math.unit(3, "gigameters")
  13270. },
  13271. {
  13272. name: "Megamacro+",
  13273. height: math.unit(300, "terameters")
  13274. },
  13275. {
  13276. name: "Megamacro++",
  13277. height: math.unit(3, "lightyears")
  13278. },
  13279. ]
  13280. ))
  13281. characterMakers.push(() => makeCharacter(
  13282. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13283. {
  13284. front: {
  13285. height: math.unit(6, "feet"),
  13286. weight: math.unit(50, "kg"),
  13287. name: "front",
  13288. image: {
  13289. source: "./media/characters/shiroryu/front.svg",
  13290. extra: 1990 / 1935
  13291. }
  13292. },
  13293. },
  13294. [
  13295. {
  13296. name: "Mortal Mingling",
  13297. height: math.unit(3, "meters")
  13298. },
  13299. {
  13300. name: "Kaiju-ish",
  13301. height: math.unit(250, "meters")
  13302. },
  13303. {
  13304. name: "Somewhat Godly",
  13305. height: math.unit(400, "km"),
  13306. default: true
  13307. },
  13308. {
  13309. name: "Planetary",
  13310. height: math.unit(300, "megameters")
  13311. },
  13312. {
  13313. name: "Galaxy-dwarfing",
  13314. height: math.unit(450, "kiloparsecs")
  13315. },
  13316. {
  13317. name: "Universe Eater",
  13318. height: math.unit(150, "gigaparsecs")
  13319. },
  13320. {
  13321. name: "Almost Immeasurable",
  13322. height: math.unit(1.3e266, "yottaparsecs")
  13323. },
  13324. ]
  13325. ))
  13326. characterMakers.push(() => makeCharacter(
  13327. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13328. {
  13329. front: {
  13330. height: math.unit(6, "feet"),
  13331. weight: math.unit(150, "lb"),
  13332. name: "Front",
  13333. image: {
  13334. source: "./media/characters/umeko/front.svg",
  13335. extra: 1,
  13336. bottom: 0.019
  13337. }
  13338. },
  13339. frontArmored: {
  13340. height: math.unit(6, "feet"),
  13341. weight: math.unit(150, "lb"),
  13342. name: "Front (Armored)",
  13343. image: {
  13344. source: "./media/characters/umeko/front-armored.svg",
  13345. extra: 1,
  13346. bottom: 0.021
  13347. }
  13348. },
  13349. },
  13350. [
  13351. {
  13352. name: "Macro",
  13353. height: math.unit(220, "feet"),
  13354. default: true
  13355. },
  13356. {
  13357. name: "Guardian Dragon",
  13358. height: math.unit(50, "miles")
  13359. },
  13360. {
  13361. name: "Cosmic",
  13362. height: math.unit(800000, "miles")
  13363. },
  13364. ]
  13365. ))
  13366. characterMakers.push(() => makeCharacter(
  13367. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13368. {
  13369. front: {
  13370. height: math.unit(6, "feet"),
  13371. weight: math.unit(150, "lb"),
  13372. name: "Front",
  13373. image: {
  13374. source: "./media/characters/cassidy/front.svg",
  13375. extra: 1,
  13376. bottom: 0.043
  13377. }
  13378. },
  13379. },
  13380. [
  13381. {
  13382. name: "Canon Height",
  13383. height: math.unit(120, "feet"),
  13384. default: true
  13385. },
  13386. {
  13387. name: "Macro+",
  13388. height: math.unit(400, "feet")
  13389. },
  13390. {
  13391. name: "Macro++",
  13392. height: math.unit(4000, "feet")
  13393. },
  13394. {
  13395. name: "Megamacro",
  13396. height: math.unit(3, "miles")
  13397. },
  13398. ]
  13399. ))
  13400. characterMakers.push(() => makeCharacter(
  13401. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13402. {
  13403. front: {
  13404. height: math.unit(6, "feet"),
  13405. weight: math.unit(150, "lb"),
  13406. name: "Front",
  13407. image: {
  13408. source: "./media/characters/isaac/front.svg",
  13409. extra: 896 / 815,
  13410. bottom: 0.11
  13411. }
  13412. },
  13413. },
  13414. [
  13415. {
  13416. name: "Human Size",
  13417. height: math.unit(8, "feet"),
  13418. default: true
  13419. },
  13420. {
  13421. name: "Macro",
  13422. height: math.unit(400, "feet")
  13423. },
  13424. {
  13425. name: "Megamacro",
  13426. height: math.unit(50, "miles")
  13427. },
  13428. {
  13429. name: "Canon Height",
  13430. height: math.unit(200, "AU")
  13431. },
  13432. ]
  13433. ))
  13434. characterMakers.push(() => makeCharacter(
  13435. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13436. {
  13437. front: {
  13438. height: math.unit(6, "feet"),
  13439. weight: math.unit(72, "kg"),
  13440. name: "Front",
  13441. image: {
  13442. source: "./media/characters/sleekit/front.svg",
  13443. extra: 4693 / 4487,
  13444. bottom: 0.012
  13445. }
  13446. },
  13447. },
  13448. [
  13449. {
  13450. name: "Minimum Height",
  13451. height: math.unit(10, "meters")
  13452. },
  13453. {
  13454. name: "Smaller",
  13455. height: math.unit(25, "meters")
  13456. },
  13457. {
  13458. name: "Larger",
  13459. height: math.unit(38, "meters"),
  13460. default: true
  13461. },
  13462. {
  13463. name: "Maximum height",
  13464. height: math.unit(100, "meters")
  13465. },
  13466. ]
  13467. ))
  13468. characterMakers.push(() => makeCharacter(
  13469. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13470. {
  13471. front: {
  13472. height: math.unit(6, "feet"),
  13473. weight: math.unit(150, "lb"),
  13474. name: "Front",
  13475. image: {
  13476. source: "./media/characters/nillia/front.svg",
  13477. extra: 2195 / 2037,
  13478. bottom: 0.005
  13479. }
  13480. },
  13481. back: {
  13482. height: math.unit(6, "feet"),
  13483. weight: math.unit(150, "lb"),
  13484. name: "Back",
  13485. image: {
  13486. source: "./media/characters/nillia/back.svg",
  13487. extra: 2195 / 2037,
  13488. bottom: 0.005
  13489. }
  13490. },
  13491. },
  13492. [
  13493. {
  13494. name: "Canon Height",
  13495. height: math.unit(489, "feet"),
  13496. default: true
  13497. }
  13498. ]
  13499. ))
  13500. characterMakers.push(() => makeCharacter(
  13501. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13502. {
  13503. front: {
  13504. height: math.unit(6, "feet"),
  13505. weight: math.unit(150, "lb"),
  13506. name: "Front",
  13507. image: {
  13508. source: "./media/characters/mesmyriza/front.svg",
  13509. extra: 2067 / 1784,
  13510. bottom: 0.035
  13511. }
  13512. },
  13513. foot: {
  13514. height: math.unit(6 / (250 / 35), "feet"),
  13515. name: "Foot",
  13516. image: {
  13517. source: "./media/characters/mesmyriza/foot.svg"
  13518. }
  13519. },
  13520. },
  13521. [
  13522. {
  13523. name: "Macro",
  13524. height: math.unit(457, "meters"),
  13525. default: true
  13526. },
  13527. {
  13528. name: "Megamacro",
  13529. height: math.unit(8, "megameters")
  13530. },
  13531. ]
  13532. ))
  13533. characterMakers.push(() => makeCharacter(
  13534. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13535. {
  13536. front: {
  13537. height: math.unit(6, "feet"),
  13538. weight: math.unit(250, "lb"),
  13539. name: "Front",
  13540. image: {
  13541. source: "./media/characters/saudade/front.svg",
  13542. extra: 1172 / 1139,
  13543. bottom: 0.035
  13544. }
  13545. },
  13546. },
  13547. [
  13548. {
  13549. name: "Micro",
  13550. height: math.unit(3, "inches")
  13551. },
  13552. {
  13553. name: "Normal",
  13554. height: math.unit(6, "feet"),
  13555. default: true
  13556. },
  13557. {
  13558. name: "Macro",
  13559. height: math.unit(50, "feet")
  13560. },
  13561. {
  13562. name: "Megamacro",
  13563. height: math.unit(2800, "feet")
  13564. },
  13565. ]
  13566. ))
  13567. characterMakers.push(() => makeCharacter(
  13568. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13569. {
  13570. front: {
  13571. height: math.unit(5 + 4 / 12, "feet"),
  13572. weight: math.unit(100, "lb"),
  13573. name: "Front",
  13574. image: {
  13575. source: "./media/characters/keireer/front.svg",
  13576. extra: 716 / 666,
  13577. bottom: 0.05
  13578. }
  13579. },
  13580. },
  13581. [
  13582. {
  13583. name: "Normal",
  13584. height: math.unit(5 + 4 / 12, "feet"),
  13585. default: true
  13586. },
  13587. ]
  13588. ))
  13589. characterMakers.push(() => makeCharacter(
  13590. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13591. {
  13592. front: {
  13593. height: math.unit(6, "feet"),
  13594. weight: math.unit(90, "kg"),
  13595. name: "Front",
  13596. image: {
  13597. source: "./media/characters/mirja/front.svg",
  13598. extra: 1789 / 1683,
  13599. bottom: 0.05
  13600. }
  13601. },
  13602. frontDressed: {
  13603. height: math.unit(6, "feet"),
  13604. weight: math.unit(90, "lb"),
  13605. name: "Front (Dressed)",
  13606. image: {
  13607. source: "./media/characters/mirja/front-dressed.svg",
  13608. extra: 1789 / 1683,
  13609. bottom: 0.05
  13610. }
  13611. },
  13612. back: {
  13613. height: math.unit(6, "feet"),
  13614. weight: math.unit(90, "lb"),
  13615. name: "Back",
  13616. image: {
  13617. source: "./media/characters/mirja/back.svg",
  13618. extra: 953 / 917,
  13619. bottom: 0.017
  13620. }
  13621. },
  13622. },
  13623. [
  13624. {
  13625. name: "\"Incognito\"",
  13626. height: math.unit(3, "meters")
  13627. },
  13628. {
  13629. name: "Strolling Size",
  13630. height: math.unit(15, "km")
  13631. },
  13632. {
  13633. name: "Larger Strolling Size",
  13634. height: math.unit(400, "km")
  13635. },
  13636. {
  13637. name: "Preferred Size",
  13638. height: math.unit(5000, "km")
  13639. },
  13640. {
  13641. name: "True Size",
  13642. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13643. default: true
  13644. },
  13645. ]
  13646. ))
  13647. characterMakers.push(() => makeCharacter(
  13648. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13649. {
  13650. front: {
  13651. height: math.unit(15, "feet"),
  13652. weight: math.unit(880, "kg"),
  13653. name: "Front",
  13654. image: {
  13655. source: "./media/characters/nightraver/front.svg",
  13656. extra: 2444 / 2160,
  13657. bottom: 0.027
  13658. }
  13659. },
  13660. back: {
  13661. height: math.unit(15, "feet"),
  13662. weight: math.unit(880, "kg"),
  13663. name: "Back",
  13664. image: {
  13665. source: "./media/characters/nightraver/back.svg",
  13666. extra: 2309 / 2180,
  13667. bottom: 0.005
  13668. }
  13669. },
  13670. sole: {
  13671. height: math.unit(2.878, "feet"),
  13672. name: "Sole",
  13673. image: {
  13674. source: "./media/characters/nightraver/sole.svg"
  13675. }
  13676. },
  13677. foot: {
  13678. height: math.unit(2.285, "feet"),
  13679. name: "Foot",
  13680. image: {
  13681. source: "./media/characters/nightraver/foot.svg"
  13682. }
  13683. },
  13684. maw: {
  13685. height: math.unit(2.67, "feet"),
  13686. name: "Maw",
  13687. image: {
  13688. source: "./media/characters/nightraver/maw.svg"
  13689. }
  13690. },
  13691. },
  13692. [
  13693. {
  13694. name: "Micro",
  13695. height: math.unit(1, "cm")
  13696. },
  13697. {
  13698. name: "Normal",
  13699. height: math.unit(15, "feet"),
  13700. default: true
  13701. },
  13702. {
  13703. name: "Macro",
  13704. height: math.unit(300, "feet")
  13705. },
  13706. {
  13707. name: "Megamacro",
  13708. height: math.unit(300, "miles")
  13709. },
  13710. {
  13711. name: "Gigamacro",
  13712. height: math.unit(10000, "miles")
  13713. },
  13714. ]
  13715. ))
  13716. characterMakers.push(() => makeCharacter(
  13717. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13718. {
  13719. side: {
  13720. height: math.unit(2, "inches"),
  13721. weight: math.unit(5, "grams"),
  13722. name: "Side",
  13723. image: {
  13724. source: "./media/characters/arc/side.svg"
  13725. }
  13726. },
  13727. },
  13728. [
  13729. {
  13730. name: "Micro",
  13731. height: math.unit(2, "inches"),
  13732. default: true
  13733. },
  13734. ]
  13735. ))
  13736. characterMakers.push(() => makeCharacter(
  13737. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13738. {
  13739. front: {
  13740. height: math.unit(1.1938, "meters"),
  13741. weight: math.unit(54, "kg"),
  13742. name: "Front",
  13743. image: {
  13744. source: "./media/characters/nebula-shahar/front.svg",
  13745. extra: 1642 / 1436,
  13746. bottom: 0.06
  13747. }
  13748. },
  13749. },
  13750. [
  13751. {
  13752. name: "Megamicro",
  13753. height: math.unit(0.3, "mm")
  13754. },
  13755. {
  13756. name: "Micro",
  13757. height: math.unit(3, "cm")
  13758. },
  13759. {
  13760. name: "Normal",
  13761. height: math.unit(138, "cm"),
  13762. default: true
  13763. },
  13764. {
  13765. name: "Macro",
  13766. height: math.unit(30, "m")
  13767. },
  13768. ]
  13769. ))
  13770. characterMakers.push(() => makeCharacter(
  13771. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13772. {
  13773. front: {
  13774. height: math.unit(5.24, "feet"),
  13775. weight: math.unit(150, "lb"),
  13776. name: "Front",
  13777. image: {
  13778. source: "./media/characters/shayla/front.svg",
  13779. extra: 1512 / 1414,
  13780. bottom: 0.01
  13781. }
  13782. },
  13783. back: {
  13784. height: math.unit(5.24, "feet"),
  13785. weight: math.unit(150, "lb"),
  13786. name: "Back",
  13787. image: {
  13788. source: "./media/characters/shayla/back.svg",
  13789. extra: 1512 / 1414
  13790. }
  13791. },
  13792. hand: {
  13793. height: math.unit(0.7781496062992126, "feet"),
  13794. name: "Hand",
  13795. image: {
  13796. source: "./media/characters/shayla/hand.svg"
  13797. }
  13798. },
  13799. foot: {
  13800. height: math.unit(1.4206036745406823, "feet"),
  13801. name: "Foot",
  13802. image: {
  13803. source: "./media/characters/shayla/foot.svg"
  13804. }
  13805. },
  13806. },
  13807. [
  13808. {
  13809. name: "Micro",
  13810. height: math.unit(0.32, "feet")
  13811. },
  13812. {
  13813. name: "Normal",
  13814. height: math.unit(5.24, "feet"),
  13815. default: true
  13816. },
  13817. {
  13818. name: "Macro",
  13819. height: math.unit(492.12, "feet")
  13820. },
  13821. {
  13822. name: "Megamacro",
  13823. height: math.unit(186.41, "miles")
  13824. },
  13825. ]
  13826. ))
  13827. characterMakers.push(() => makeCharacter(
  13828. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13829. {
  13830. front: {
  13831. height: math.unit(2.2, "m"),
  13832. weight: math.unit(120, "kg"),
  13833. name: "Front",
  13834. image: {
  13835. source: "./media/characters/pia-jr/front.svg",
  13836. extra: 1000 / 970,
  13837. bottom: 0.035
  13838. }
  13839. },
  13840. hand: {
  13841. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13842. name: "Hand",
  13843. image: {
  13844. source: "./media/characters/pia-jr/hand.svg"
  13845. }
  13846. },
  13847. paw: {
  13848. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13849. name: "Paw",
  13850. image: {
  13851. source: "./media/characters/pia-jr/paw.svg"
  13852. }
  13853. },
  13854. },
  13855. [
  13856. {
  13857. name: "Micro",
  13858. height: math.unit(1.2, "cm")
  13859. },
  13860. {
  13861. name: "Normal",
  13862. height: math.unit(2.2, "m"),
  13863. default: true
  13864. },
  13865. {
  13866. name: "Macro",
  13867. height: math.unit(180, "m")
  13868. },
  13869. {
  13870. name: "Megamacro",
  13871. height: math.unit(420, "km")
  13872. },
  13873. ]
  13874. ))
  13875. characterMakers.push(() => makeCharacter(
  13876. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13877. {
  13878. front: {
  13879. height: math.unit(2, "m"),
  13880. weight: math.unit(115, "kg"),
  13881. name: "Front",
  13882. image: {
  13883. source: "./media/characters/pia-sr/front.svg",
  13884. extra: 760 / 730,
  13885. bottom: 0.015
  13886. }
  13887. },
  13888. back: {
  13889. height: math.unit(2, "m"),
  13890. weight: math.unit(115, "kg"),
  13891. name: "Back",
  13892. image: {
  13893. source: "./media/characters/pia-sr/back.svg",
  13894. extra: 760 / 730,
  13895. bottom: 0.01
  13896. }
  13897. },
  13898. hand: {
  13899. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13900. name: "Hand",
  13901. image: {
  13902. source: "./media/characters/pia-sr/hand.svg"
  13903. }
  13904. },
  13905. foot: {
  13906. height: math.unit(1.83, "feet"),
  13907. name: "Foot",
  13908. image: {
  13909. source: "./media/characters/pia-sr/foot.svg"
  13910. }
  13911. },
  13912. },
  13913. [
  13914. {
  13915. name: "Micro",
  13916. height: math.unit(88, "mm")
  13917. },
  13918. {
  13919. name: "Normal",
  13920. height: math.unit(2, "m"),
  13921. default: true
  13922. },
  13923. {
  13924. name: "Macro",
  13925. height: math.unit(200, "m")
  13926. },
  13927. {
  13928. name: "Megamacro",
  13929. height: math.unit(420, "km")
  13930. },
  13931. ]
  13932. ))
  13933. characterMakers.push(() => makeCharacter(
  13934. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13935. {
  13936. front: {
  13937. height: math.unit(8 + 2 / 12, "feet"),
  13938. weight: math.unit(300, "lb"),
  13939. name: "Front",
  13940. image: {
  13941. source: "./media/characters/kibibyte/front.svg",
  13942. extra: 2221 / 2098,
  13943. bottom: 0.04
  13944. }
  13945. },
  13946. },
  13947. [
  13948. {
  13949. name: "Normal",
  13950. height: math.unit(8 + 2 / 12, "feet"),
  13951. default: true
  13952. },
  13953. {
  13954. name: "Socialable Macro",
  13955. height: math.unit(50, "feet")
  13956. },
  13957. {
  13958. name: "Macro",
  13959. height: math.unit(300, "feet")
  13960. },
  13961. {
  13962. name: "Megamacro",
  13963. height: math.unit(500, "miles")
  13964. },
  13965. ]
  13966. ))
  13967. characterMakers.push(() => makeCharacter(
  13968. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13969. {
  13970. front: {
  13971. height: math.unit(6, "feet"),
  13972. weight: math.unit(150, "lb"),
  13973. name: "Front",
  13974. image: {
  13975. source: "./media/characters/felix/front.svg",
  13976. extra: 762 / 722,
  13977. bottom: 0.02
  13978. }
  13979. },
  13980. frontClothed: {
  13981. height: math.unit(6, "feet"),
  13982. weight: math.unit(150, "lb"),
  13983. name: "Front (Clothed)",
  13984. image: {
  13985. source: "./media/characters/felix/front-clothed.svg",
  13986. extra: 762 / 722,
  13987. bottom: 0.02
  13988. }
  13989. },
  13990. },
  13991. [
  13992. {
  13993. name: "Normal",
  13994. height: math.unit(6 + 8 / 12, "feet"),
  13995. default: true
  13996. },
  13997. {
  13998. name: "Macro",
  13999. height: math.unit(2600, "feet")
  14000. },
  14001. {
  14002. name: "Megamacro",
  14003. height: math.unit(450, "miles")
  14004. },
  14005. ]
  14006. ))
  14007. characterMakers.push(() => makeCharacter(
  14008. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14009. {
  14010. front: {
  14011. height: math.unit(6 + 1 / 12, "feet"),
  14012. weight: math.unit(250, "lb"),
  14013. name: "Front",
  14014. image: {
  14015. source: "./media/characters/tobo/front.svg",
  14016. extra: 608 / 586,
  14017. bottom: 0.023
  14018. }
  14019. },
  14020. back: {
  14021. height: math.unit(6 + 1 / 12, "feet"),
  14022. weight: math.unit(250, "lb"),
  14023. name: "Back",
  14024. image: {
  14025. source: "./media/characters/tobo/back.svg",
  14026. extra: 608 / 586
  14027. }
  14028. },
  14029. },
  14030. [
  14031. {
  14032. name: "Nano",
  14033. height: math.unit(2, "nm")
  14034. },
  14035. {
  14036. name: "Megamicro",
  14037. height: math.unit(0.1, "mm")
  14038. },
  14039. {
  14040. name: "Micro",
  14041. height: math.unit(1, "inch"),
  14042. default: true
  14043. },
  14044. {
  14045. name: "Human-sized",
  14046. height: math.unit(6 + 1 / 12, "feet")
  14047. },
  14048. {
  14049. name: "Macro",
  14050. height: math.unit(250, "feet")
  14051. },
  14052. {
  14053. name: "Megamacro",
  14054. height: math.unit(75, "miles")
  14055. },
  14056. {
  14057. name: "Texas-sized",
  14058. height: math.unit(750, "miles")
  14059. },
  14060. {
  14061. name: "Teramacro",
  14062. height: math.unit(50000, "miles")
  14063. },
  14064. ]
  14065. ))
  14066. characterMakers.push(() => makeCharacter(
  14067. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14068. {
  14069. front: {
  14070. height: math.unit(6, "feet"),
  14071. weight: math.unit(269, "lb"),
  14072. name: "Front",
  14073. image: {
  14074. source: "./media/characters/danny-kapowsky/front.svg",
  14075. extra: 766 / 736,
  14076. bottom: 0.044
  14077. }
  14078. },
  14079. back: {
  14080. height: math.unit(6, "feet"),
  14081. weight: math.unit(269, "lb"),
  14082. name: "Back",
  14083. image: {
  14084. source: "./media/characters/danny-kapowsky/back.svg",
  14085. extra: 797 / 760,
  14086. bottom: 0.025
  14087. }
  14088. },
  14089. },
  14090. [
  14091. {
  14092. name: "Macro",
  14093. height: math.unit(150, "feet"),
  14094. default: true
  14095. },
  14096. {
  14097. name: "Macro+",
  14098. height: math.unit(200, "feet")
  14099. },
  14100. {
  14101. name: "Macro++",
  14102. height: math.unit(300, "feet")
  14103. },
  14104. {
  14105. name: "Macro+++",
  14106. height: math.unit(400, "feet")
  14107. },
  14108. ]
  14109. ))
  14110. characterMakers.push(() => makeCharacter(
  14111. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14112. {
  14113. side: {
  14114. height: math.unit(6, "feet"),
  14115. weight: math.unit(170, "lb"),
  14116. name: "Side",
  14117. image: {
  14118. source: "./media/characters/finn/side.svg",
  14119. extra: 1953 / 1807,
  14120. bottom: 0.057
  14121. }
  14122. },
  14123. },
  14124. [
  14125. {
  14126. name: "Megamacro",
  14127. height: math.unit(14445, "feet"),
  14128. default: true
  14129. },
  14130. ]
  14131. ))
  14132. characterMakers.push(() => makeCharacter(
  14133. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14134. {
  14135. front: {
  14136. height: math.unit(5 + 6 / 12, "feet"),
  14137. weight: math.unit(125, "lb"),
  14138. name: "Front",
  14139. image: {
  14140. source: "./media/characters/roy/front.svg",
  14141. extra: 1,
  14142. bottom: 0.11
  14143. }
  14144. },
  14145. },
  14146. [
  14147. {
  14148. name: "Micro",
  14149. height: math.unit(3, "inches"),
  14150. default: true
  14151. },
  14152. {
  14153. name: "Normal",
  14154. height: math.unit(5 + 6 / 12, "feet")
  14155. },
  14156. {
  14157. name: "Lesser Macro",
  14158. height: math.unit(60, "feet")
  14159. },
  14160. {
  14161. name: "Greater Macro",
  14162. height: math.unit(120, "feet")
  14163. },
  14164. ]
  14165. ))
  14166. characterMakers.push(() => makeCharacter(
  14167. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14168. {
  14169. front: {
  14170. height: math.unit(6, "feet"),
  14171. weight: math.unit(100, "lb"),
  14172. name: "Front",
  14173. image: {
  14174. source: "./media/characters/aevsivs/front.svg",
  14175. extra: 1,
  14176. bottom: 0.03
  14177. }
  14178. },
  14179. back: {
  14180. height: math.unit(6, "feet"),
  14181. weight: math.unit(100, "lb"),
  14182. name: "Back",
  14183. image: {
  14184. source: "./media/characters/aevsivs/back.svg"
  14185. }
  14186. },
  14187. },
  14188. [
  14189. {
  14190. name: "Micro",
  14191. height: math.unit(2, "inches"),
  14192. default: true
  14193. },
  14194. {
  14195. name: "Normal",
  14196. height: math.unit(5, "feet")
  14197. },
  14198. ]
  14199. ))
  14200. characterMakers.push(() => makeCharacter(
  14201. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14202. {
  14203. front: {
  14204. height: math.unit(5 + 7 / 12, "feet"),
  14205. weight: math.unit(159, "lb"),
  14206. name: "Front",
  14207. image: {
  14208. source: "./media/characters/hildegard/front.svg",
  14209. extra: 289 / 269,
  14210. bottom: 7.63 / 297.8
  14211. }
  14212. },
  14213. back: {
  14214. height: math.unit(5 + 7 / 12, "feet"),
  14215. weight: math.unit(159, "lb"),
  14216. name: "Back",
  14217. image: {
  14218. source: "./media/characters/hildegard/back.svg",
  14219. extra: 280 / 260,
  14220. bottom: 2.3 / 282
  14221. }
  14222. },
  14223. },
  14224. [
  14225. {
  14226. name: "Normal",
  14227. height: math.unit(5 + 7 / 12, "feet"),
  14228. default: true
  14229. },
  14230. ]
  14231. ))
  14232. characterMakers.push(() => makeCharacter(
  14233. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14234. {
  14235. bernard: {
  14236. height: math.unit(2 + 7 / 12, "feet"),
  14237. weight: math.unit(66, "lb"),
  14238. name: "Bernard",
  14239. rename: true,
  14240. image: {
  14241. source: "./media/characters/bernard-wilder/bernard.svg",
  14242. extra: 192 / 128,
  14243. bottom: 0.05
  14244. }
  14245. },
  14246. wilder: {
  14247. height: math.unit(5 + 8 / 12, "feet"),
  14248. weight: math.unit(143, "lb"),
  14249. name: "Wilder",
  14250. rename: true,
  14251. image: {
  14252. source: "./media/characters/bernard-wilder/wilder.svg",
  14253. extra: 361 / 312,
  14254. bottom: 0.02
  14255. }
  14256. },
  14257. },
  14258. [
  14259. {
  14260. name: "Normal",
  14261. height: math.unit(2 + 7 / 12, "feet"),
  14262. default: true
  14263. },
  14264. ]
  14265. ))
  14266. characterMakers.push(() => makeCharacter(
  14267. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14268. {
  14269. anthro: {
  14270. height: math.unit(6 + 1 / 12, "feet"),
  14271. weight: math.unit(155, "lb"),
  14272. name: "Anthro",
  14273. image: {
  14274. source: "./media/characters/hearth/anthro.svg",
  14275. extra: 260 / 250,
  14276. bottom: 0.02
  14277. }
  14278. },
  14279. feral: {
  14280. height: math.unit(3.78, "feet"),
  14281. weight: math.unit(35, "kg"),
  14282. name: "Feral",
  14283. image: {
  14284. source: "./media/characters/hearth/feral.svg",
  14285. extra: 153 / 135,
  14286. bottom: 0.03
  14287. }
  14288. },
  14289. },
  14290. [
  14291. {
  14292. name: "Normal",
  14293. height: math.unit(6 + 1 / 12, "feet"),
  14294. default: true
  14295. },
  14296. ]
  14297. ))
  14298. characterMakers.push(() => makeCharacter(
  14299. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14300. {
  14301. front: {
  14302. height: math.unit(6, "feet"),
  14303. weight: math.unit(182, "lb"),
  14304. name: "Front",
  14305. image: {
  14306. source: "./media/characters/ingrid/front.svg",
  14307. extra: 294 / 268,
  14308. bottom: 0.027
  14309. }
  14310. },
  14311. },
  14312. [
  14313. {
  14314. name: "Normal",
  14315. height: math.unit(6, "feet"),
  14316. default: true
  14317. },
  14318. ]
  14319. ))
  14320. characterMakers.push(() => makeCharacter(
  14321. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14322. {
  14323. eevee: {
  14324. height: math.unit(2 + 10 / 12, "feet"),
  14325. weight: math.unit(86, "lb"),
  14326. name: "Malgam",
  14327. image: {
  14328. source: "./media/characters/malgam/eevee.svg",
  14329. extra: 218 / 180,
  14330. bottom: 0.2
  14331. }
  14332. },
  14333. sylveon: {
  14334. height: math.unit(4, "feet"),
  14335. weight: math.unit(101, "lb"),
  14336. name: "Future Malgam",
  14337. rename: true,
  14338. image: {
  14339. source: "./media/characters/malgam/sylveon.svg",
  14340. extra: 371 / 325,
  14341. bottom: 0.015
  14342. }
  14343. },
  14344. gigantamax: {
  14345. height: math.unit(50, "feet"),
  14346. name: "Gigantamax Malgam",
  14347. rename: true,
  14348. image: {
  14349. source: "./media/characters/malgam/gigantamax.svg"
  14350. }
  14351. },
  14352. },
  14353. [
  14354. {
  14355. name: "Normal",
  14356. height: math.unit(2 + 10 / 12, "feet"),
  14357. default: true
  14358. },
  14359. ]
  14360. ))
  14361. characterMakers.push(() => makeCharacter(
  14362. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14363. {
  14364. front: {
  14365. height: math.unit(5 + 11 / 12, "feet"),
  14366. weight: math.unit(188, "lb"),
  14367. name: "Front",
  14368. image: {
  14369. source: "./media/characters/fleur/front.svg",
  14370. extra: 309 / 283,
  14371. bottom: 0.007
  14372. }
  14373. },
  14374. },
  14375. [
  14376. {
  14377. name: "Normal",
  14378. height: math.unit(5 + 11 / 12, "feet"),
  14379. default: true
  14380. },
  14381. ]
  14382. ))
  14383. characterMakers.push(() => makeCharacter(
  14384. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14385. {
  14386. front: {
  14387. height: math.unit(5 + 4 / 12, "feet"),
  14388. weight: math.unit(122, "lb"),
  14389. name: "Front",
  14390. image: {
  14391. source: "./media/characters/jude/front.svg",
  14392. extra: 288 / 273,
  14393. bottom: 0.03
  14394. }
  14395. },
  14396. },
  14397. [
  14398. {
  14399. name: "Normal",
  14400. height: math.unit(5 + 4 / 12, "feet"),
  14401. default: true
  14402. },
  14403. ]
  14404. ))
  14405. characterMakers.push(() => makeCharacter(
  14406. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14407. {
  14408. front: {
  14409. height: math.unit(5 + 11 / 12, "feet"),
  14410. weight: math.unit(190, "lb"),
  14411. name: "Front",
  14412. image: {
  14413. source: "./media/characters/seara/front.svg",
  14414. extra: 1,
  14415. bottom: 0.05
  14416. }
  14417. },
  14418. },
  14419. [
  14420. {
  14421. name: "Normal",
  14422. height: math.unit(5 + 11 / 12, "feet"),
  14423. default: true
  14424. },
  14425. ]
  14426. ))
  14427. characterMakers.push(() => makeCharacter(
  14428. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14429. {
  14430. front: {
  14431. height: math.unit(16 + 5 / 12, "feet"),
  14432. weight: math.unit(524, "lb"),
  14433. name: "Front",
  14434. image: {
  14435. source: "./media/characters/caspian/front.svg",
  14436. extra: 1,
  14437. bottom: 0.04
  14438. }
  14439. },
  14440. },
  14441. [
  14442. {
  14443. name: "Normal",
  14444. height: math.unit(16 + 5 / 12, "feet"),
  14445. default: true
  14446. },
  14447. ]
  14448. ))
  14449. characterMakers.push(() => makeCharacter(
  14450. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14451. {
  14452. front: {
  14453. height: math.unit(5 + 7 / 12, "feet"),
  14454. weight: math.unit(170, "lb"),
  14455. name: "Front",
  14456. image: {
  14457. source: "./media/characters/mika/front.svg",
  14458. extra: 1,
  14459. bottom: 0.016
  14460. }
  14461. },
  14462. },
  14463. [
  14464. {
  14465. name: "Normal",
  14466. height: math.unit(5 + 7 / 12, "feet"),
  14467. default: true
  14468. },
  14469. ]
  14470. ))
  14471. characterMakers.push(() => makeCharacter(
  14472. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14473. {
  14474. front: {
  14475. height: math.unit(6 + 2 / 12, "feet"),
  14476. weight: math.unit(268, "lb"),
  14477. name: "Front",
  14478. image: {
  14479. source: "./media/characters/sol/front.svg",
  14480. extra: 247 / 231,
  14481. bottom: 0.05
  14482. }
  14483. },
  14484. },
  14485. [
  14486. {
  14487. name: "Normal",
  14488. height: math.unit(6 + 2 / 12, "feet"),
  14489. default: true
  14490. },
  14491. ]
  14492. ))
  14493. characterMakers.push(() => makeCharacter(
  14494. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14495. {
  14496. buizel: {
  14497. height: math.unit(2 + 5 / 12, "feet"),
  14498. weight: math.unit(87, "lb"),
  14499. name: "Buizel",
  14500. image: {
  14501. source: "./media/characters/umiko/buizel.svg",
  14502. extra: 172 / 157,
  14503. bottom: 0.01
  14504. }
  14505. },
  14506. floatzel: {
  14507. height: math.unit(5 + 9 / 12, "feet"),
  14508. weight: math.unit(250, "lb"),
  14509. name: "Floatzel",
  14510. image: {
  14511. source: "./media/characters/umiko/floatzel.svg",
  14512. extra: 262 / 248
  14513. }
  14514. },
  14515. },
  14516. [
  14517. {
  14518. name: "Normal",
  14519. height: math.unit(2 + 5 / 12, "feet"),
  14520. default: true
  14521. },
  14522. ]
  14523. ))
  14524. characterMakers.push(() => makeCharacter(
  14525. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14526. {
  14527. front: {
  14528. height: math.unit(6 + 2 / 12, "feet"),
  14529. weight: math.unit(146, "lb"),
  14530. name: "Front",
  14531. image: {
  14532. source: "./media/characters/iliac/front.svg",
  14533. extra: 389 / 365,
  14534. bottom: 0.035
  14535. }
  14536. },
  14537. },
  14538. [
  14539. {
  14540. name: "Normal",
  14541. height: math.unit(6 + 2 / 12, "feet"),
  14542. default: true
  14543. },
  14544. ]
  14545. ))
  14546. characterMakers.push(() => makeCharacter(
  14547. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14548. {
  14549. front: {
  14550. height: math.unit(6, "feet"),
  14551. weight: math.unit(170, "lb"),
  14552. name: "Front",
  14553. image: {
  14554. source: "./media/characters/topaz/front.svg",
  14555. extra: 317 / 303,
  14556. bottom: 0.055
  14557. }
  14558. },
  14559. },
  14560. [
  14561. {
  14562. name: "Normal",
  14563. height: math.unit(6, "feet"),
  14564. default: true
  14565. },
  14566. ]
  14567. ))
  14568. characterMakers.push(() => makeCharacter(
  14569. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14570. {
  14571. front: {
  14572. height: math.unit(5 + 11 / 12, "feet"),
  14573. weight: math.unit(144, "lb"),
  14574. name: "Front",
  14575. image: {
  14576. source: "./media/characters/gabriel/front.svg",
  14577. extra: 285 / 262,
  14578. bottom: 0.004
  14579. }
  14580. },
  14581. },
  14582. [
  14583. {
  14584. name: "Normal",
  14585. height: math.unit(5 + 11 / 12, "feet"),
  14586. default: true
  14587. },
  14588. ]
  14589. ))
  14590. characterMakers.push(() => makeCharacter(
  14591. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14592. {
  14593. side: {
  14594. height: math.unit(6 + 5 / 12, "feet"),
  14595. weight: math.unit(300, "lb"),
  14596. name: "Side",
  14597. image: {
  14598. source: "./media/characters/tempest-suicune/side.svg",
  14599. extra: 195 / 154,
  14600. bottom: 0.04
  14601. }
  14602. },
  14603. },
  14604. [
  14605. {
  14606. name: "Normal",
  14607. height: math.unit(6 + 5 / 12, "feet"),
  14608. default: true
  14609. },
  14610. ]
  14611. ))
  14612. characterMakers.push(() => makeCharacter(
  14613. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14614. {
  14615. front: {
  14616. height: math.unit(7 + 2 / 12, "feet"),
  14617. weight: math.unit(322, "lb"),
  14618. name: "Front",
  14619. image: {
  14620. source: "./media/characters/vulcan/front.svg",
  14621. extra: 154 / 147,
  14622. bottom: 0.04
  14623. }
  14624. },
  14625. },
  14626. [
  14627. {
  14628. name: "Normal",
  14629. height: math.unit(7 + 2 / 12, "feet"),
  14630. default: true
  14631. },
  14632. ]
  14633. ))
  14634. characterMakers.push(() => makeCharacter(
  14635. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14636. {
  14637. front: {
  14638. height: math.unit(5 + 10 / 12, "feet"),
  14639. weight: math.unit(264, "lb"),
  14640. name: "Front",
  14641. image: {
  14642. source: "./media/characters/gault/front.svg",
  14643. extra: 161 / 140,
  14644. bottom: 0.028
  14645. }
  14646. },
  14647. },
  14648. [
  14649. {
  14650. name: "Normal",
  14651. height: math.unit(5 + 10 / 12, "feet"),
  14652. default: true
  14653. },
  14654. ]
  14655. ))
  14656. characterMakers.push(() => makeCharacter(
  14657. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14658. {
  14659. front: {
  14660. height: math.unit(6, "feet"),
  14661. weight: math.unit(150, "lb"),
  14662. name: "Front",
  14663. image: {
  14664. source: "./media/characters/shard/front.svg",
  14665. extra: 273 / 238,
  14666. bottom: 0.02
  14667. }
  14668. },
  14669. },
  14670. [
  14671. {
  14672. name: "Normal",
  14673. height: math.unit(3 + 6 / 12, "feet"),
  14674. default: true
  14675. },
  14676. ]
  14677. ))
  14678. characterMakers.push(() => makeCharacter(
  14679. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14680. {
  14681. front: {
  14682. height: math.unit(5 + 11 / 12, "feet"),
  14683. weight: math.unit(146, "lb"),
  14684. name: "Front",
  14685. image: {
  14686. source: "./media/characters/ashe/front.svg",
  14687. extra: 400 / 373,
  14688. bottom: 0.01
  14689. }
  14690. },
  14691. },
  14692. [
  14693. {
  14694. name: "Normal",
  14695. height: math.unit(5 + 11 / 12, "feet"),
  14696. default: true
  14697. },
  14698. ]
  14699. ))
  14700. characterMakers.push(() => makeCharacter(
  14701. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14702. {
  14703. front: {
  14704. height: math.unit(5 + 5 / 12, "feet"),
  14705. weight: math.unit(135, "lb"),
  14706. name: "Front",
  14707. image: {
  14708. source: "./media/characters/beatrix/front.svg",
  14709. extra: 392 / 379,
  14710. bottom: 0.01
  14711. }
  14712. },
  14713. },
  14714. [
  14715. {
  14716. name: "Normal",
  14717. height: math.unit(6, "feet"),
  14718. default: true
  14719. },
  14720. ]
  14721. ))
  14722. characterMakers.push(() => makeCharacter(
  14723. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14724. {
  14725. front: {
  14726. height: math.unit(6, "feet"),
  14727. weight: math.unit(150, "lb"),
  14728. name: "Front",
  14729. image: {
  14730. source: "./media/characters/ignatius/front.svg",
  14731. extra: 245 / 222,
  14732. bottom: 0.01
  14733. }
  14734. },
  14735. },
  14736. [
  14737. {
  14738. name: "Normal",
  14739. height: math.unit(5 + 5 / 12, "feet"),
  14740. default: true
  14741. },
  14742. ]
  14743. ))
  14744. characterMakers.push(() => makeCharacter(
  14745. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14746. {
  14747. front: {
  14748. height: math.unit(6 + 2 / 12, "feet"),
  14749. weight: math.unit(138, "lb"),
  14750. name: "Front",
  14751. image: {
  14752. source: "./media/characters/mei-li/front.svg",
  14753. extra: 237 / 229,
  14754. bottom: 0.03
  14755. }
  14756. },
  14757. },
  14758. [
  14759. {
  14760. name: "Normal",
  14761. height: math.unit(6 + 2 / 12, "feet"),
  14762. default: true
  14763. },
  14764. ]
  14765. ))
  14766. characterMakers.push(() => makeCharacter(
  14767. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14768. {
  14769. front: {
  14770. height: math.unit(2 + 4 / 12, "feet"),
  14771. weight: math.unit(62, "lb"),
  14772. name: "Front",
  14773. image: {
  14774. source: "./media/characters/puru/front.svg",
  14775. extra: 206 / 149,
  14776. bottom: 0.06
  14777. }
  14778. },
  14779. },
  14780. [
  14781. {
  14782. name: "Normal",
  14783. height: math.unit(2 + 4 / 12, "feet"),
  14784. default: true
  14785. },
  14786. ]
  14787. ))
  14788. characterMakers.push(() => makeCharacter(
  14789. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14790. {
  14791. taur: {
  14792. height: math.unit(11, "feet"),
  14793. weight: math.unit(500, "lb"),
  14794. name: "Taur",
  14795. image: {
  14796. source: "./media/characters/kee/taur.svg",
  14797. extra: 1,
  14798. bottom: 0.04
  14799. }
  14800. },
  14801. },
  14802. [
  14803. {
  14804. name: "Normal",
  14805. height: math.unit(11, "feet"),
  14806. default: true
  14807. },
  14808. ]
  14809. ))
  14810. characterMakers.push(() => makeCharacter(
  14811. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14812. {
  14813. anthro: {
  14814. height: math.unit(7, "feet"),
  14815. weight: math.unit(190, "lb"),
  14816. name: "Anthro",
  14817. image: {
  14818. source: "./media/characters/cobalt-dracha/anthro.svg",
  14819. extra: 231 / 225,
  14820. bottom: 0.04
  14821. }
  14822. },
  14823. feral: {
  14824. height: math.unit(9 + 7 / 12, "feet"),
  14825. weight: math.unit(294, "lb"),
  14826. name: "Feral",
  14827. image: {
  14828. source: "./media/characters/cobalt-dracha/feral.svg",
  14829. extra: 692 / 633,
  14830. bottom: 0.05
  14831. }
  14832. },
  14833. },
  14834. [
  14835. {
  14836. name: "Normal",
  14837. height: math.unit(7, "feet"),
  14838. default: true
  14839. },
  14840. ]
  14841. ))
  14842. characterMakers.push(() => makeCharacter(
  14843. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14844. {
  14845. fallen: {
  14846. height: math.unit(11 + 8 / 12, "feet"),
  14847. weight: math.unit(485, "lb"),
  14848. name: "Java (Fallen)",
  14849. rename: true,
  14850. image: {
  14851. source: "./media/characters/java/fallen.svg",
  14852. extra: 226 / 208,
  14853. bottom: 0.005
  14854. }
  14855. },
  14856. godkin: {
  14857. height: math.unit(10 + 6 / 12, "feet"),
  14858. weight: math.unit(328, "lb"),
  14859. name: "Java (Godkin)",
  14860. rename: true,
  14861. image: {
  14862. source: "./media/characters/java/godkin.svg",
  14863. extra: 270 / 262,
  14864. bottom: 0.02
  14865. }
  14866. },
  14867. },
  14868. [
  14869. {
  14870. name: "Normal",
  14871. height: math.unit(11 + 8 / 12, "feet"),
  14872. default: true
  14873. },
  14874. ]
  14875. ))
  14876. characterMakers.push(() => makeCharacter(
  14877. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14878. {
  14879. front: {
  14880. height: math.unit(7 + 8 / 12, "feet"),
  14881. weight: math.unit(320, "lb"),
  14882. name: "Front",
  14883. image: {
  14884. source: "./media/characters/skoll/front.svg",
  14885. extra: 232 / 220,
  14886. bottom: 0.02
  14887. }
  14888. },
  14889. },
  14890. [
  14891. {
  14892. name: "Normal",
  14893. height: math.unit(7 + 8 / 12, "feet"),
  14894. default: true
  14895. },
  14896. ]
  14897. ))
  14898. characterMakers.push(() => makeCharacter(
  14899. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14900. {
  14901. front: {
  14902. height: math.unit(5 + 9 / 12, "feet"),
  14903. weight: math.unit(170, "lb"),
  14904. name: "Front",
  14905. image: {
  14906. source: "./media/characters/purna/front.svg",
  14907. extra: 239 / 229,
  14908. bottom: 0.01
  14909. }
  14910. },
  14911. },
  14912. [
  14913. {
  14914. name: "Normal",
  14915. height: math.unit(5 + 9 / 12, "feet"),
  14916. default: true
  14917. },
  14918. ]
  14919. ))
  14920. characterMakers.push(() => makeCharacter(
  14921. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14922. {
  14923. front: {
  14924. height: math.unit(5 + 9 / 12, "feet"),
  14925. weight: math.unit(142, "lb"),
  14926. name: "Front",
  14927. image: {
  14928. source: "./media/characters/kuva/front.svg",
  14929. extra: 281 / 271,
  14930. bottom: 0.006
  14931. }
  14932. },
  14933. },
  14934. [
  14935. {
  14936. name: "Normal",
  14937. height: math.unit(5 + 9 / 12, "feet"),
  14938. default: true
  14939. },
  14940. ]
  14941. ))
  14942. characterMakers.push(() => makeCharacter(
  14943. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14944. {
  14945. anthro: {
  14946. height: math.unit(9 + 2 / 12, "feet"),
  14947. weight: math.unit(270, "lb"),
  14948. name: "Anthro",
  14949. image: {
  14950. source: "./media/characters/embra/anthro.svg",
  14951. extra: 200 / 187,
  14952. bottom: 0.02
  14953. }
  14954. },
  14955. feral: {
  14956. height: math.unit(18 + 8 / 12, "feet"),
  14957. weight: math.unit(576, "lb"),
  14958. name: "Feral",
  14959. image: {
  14960. source: "./media/characters/embra/feral.svg",
  14961. extra: 152 / 137,
  14962. bottom: 0.037
  14963. }
  14964. },
  14965. },
  14966. [
  14967. {
  14968. name: "Normal",
  14969. height: math.unit(9 + 2 / 12, "feet"),
  14970. default: true
  14971. },
  14972. ]
  14973. ))
  14974. characterMakers.push(() => makeCharacter(
  14975. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14976. {
  14977. anthro: {
  14978. height: math.unit(10 + 9 / 12, "feet"),
  14979. weight: math.unit(224, "lb"),
  14980. name: "Anthro",
  14981. image: {
  14982. source: "./media/characters/grottos/anthro.svg",
  14983. extra: 350 / 332,
  14984. bottom: 0.045
  14985. }
  14986. },
  14987. feral: {
  14988. height: math.unit(20 + 7 / 12, "feet"),
  14989. weight: math.unit(629, "lb"),
  14990. name: "Feral",
  14991. image: {
  14992. source: "./media/characters/grottos/feral.svg",
  14993. extra: 207 / 190,
  14994. bottom: 0.05
  14995. }
  14996. },
  14997. },
  14998. [
  14999. {
  15000. name: "Normal",
  15001. height: math.unit(10 + 9 / 12, "feet"),
  15002. default: true
  15003. },
  15004. ]
  15005. ))
  15006. characterMakers.push(() => makeCharacter(
  15007. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15008. {
  15009. anthro: {
  15010. height: math.unit(9 + 6 / 12, "feet"),
  15011. weight: math.unit(298, "lb"),
  15012. name: "Anthro",
  15013. image: {
  15014. source: "./media/characters/frifna/anthro.svg",
  15015. extra: 282 / 269,
  15016. bottom: 0.015
  15017. }
  15018. },
  15019. feral: {
  15020. height: math.unit(16 + 2 / 12, "feet"),
  15021. weight: math.unit(624, "lb"),
  15022. name: "Feral",
  15023. image: {
  15024. source: "./media/characters/frifna/feral.svg"
  15025. }
  15026. },
  15027. },
  15028. [
  15029. {
  15030. name: "Normal",
  15031. height: math.unit(9 + 6 / 12, "feet"),
  15032. default: true
  15033. },
  15034. ]
  15035. ))
  15036. characterMakers.push(() => makeCharacter(
  15037. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15038. {
  15039. front: {
  15040. height: math.unit(6 + 2 / 12, "feet"),
  15041. weight: math.unit(168, "lb"),
  15042. name: "Front",
  15043. image: {
  15044. source: "./media/characters/elise/front.svg",
  15045. extra: 276 / 271
  15046. }
  15047. },
  15048. },
  15049. [
  15050. {
  15051. name: "Normal",
  15052. height: math.unit(6 + 2 / 12, "feet"),
  15053. default: true
  15054. },
  15055. ]
  15056. ))
  15057. characterMakers.push(() => makeCharacter(
  15058. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15059. {
  15060. front: {
  15061. height: math.unit(5 + 10 / 12, "feet"),
  15062. weight: math.unit(210, "lb"),
  15063. name: "Front",
  15064. image: {
  15065. source: "./media/characters/glade/front.svg",
  15066. extra: 258 / 247,
  15067. bottom: 0.008
  15068. }
  15069. },
  15070. },
  15071. [
  15072. {
  15073. name: "Normal",
  15074. height: math.unit(5 + 10 / 12, "feet"),
  15075. default: true
  15076. },
  15077. ]
  15078. ))
  15079. characterMakers.push(() => makeCharacter(
  15080. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15081. {
  15082. front: {
  15083. height: math.unit(5 + 10 / 12, "feet"),
  15084. weight: math.unit(129, "lb"),
  15085. name: "Front",
  15086. image: {
  15087. source: "./media/characters/rina/front.svg",
  15088. extra: 266 / 255,
  15089. bottom: 0.005
  15090. }
  15091. },
  15092. },
  15093. [
  15094. {
  15095. name: "Normal",
  15096. height: math.unit(5 + 10 / 12, "feet"),
  15097. default: true
  15098. },
  15099. ]
  15100. ))
  15101. characterMakers.push(() => makeCharacter(
  15102. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15103. {
  15104. front: {
  15105. height: math.unit(6 + 1 / 12, "feet"),
  15106. weight: math.unit(192, "lb"),
  15107. name: "Front",
  15108. image: {
  15109. source: "./media/characters/veronica/front.svg",
  15110. extra: 319 / 309,
  15111. bottom: 0.005
  15112. }
  15113. },
  15114. },
  15115. [
  15116. {
  15117. name: "Normal",
  15118. height: math.unit(6 + 1 / 12, "feet"),
  15119. default: true
  15120. },
  15121. ]
  15122. ))
  15123. characterMakers.push(() => makeCharacter(
  15124. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15125. {
  15126. front: {
  15127. height: math.unit(9 + 3 / 12, "feet"),
  15128. weight: math.unit(1100, "lb"),
  15129. name: "Front",
  15130. image: {
  15131. source: "./media/characters/braxton/front.svg",
  15132. extra: 1057 / 984,
  15133. bottom: 0.05
  15134. }
  15135. },
  15136. },
  15137. [
  15138. {
  15139. name: "Normal",
  15140. height: math.unit(9 + 3 / 12, "feet")
  15141. },
  15142. {
  15143. name: "Giant",
  15144. height: math.unit(300, "feet"),
  15145. default: true
  15146. },
  15147. {
  15148. name: "Macro",
  15149. height: math.unit(700, "feet")
  15150. },
  15151. {
  15152. name: "Megamacro",
  15153. height: math.unit(6000, "feet")
  15154. },
  15155. ]
  15156. ))
  15157. characterMakers.push(() => makeCharacter(
  15158. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15159. {
  15160. front: {
  15161. height: math.unit(6 + 7 / 12, "feet"),
  15162. weight: math.unit(150, "lb"),
  15163. name: "Front",
  15164. image: {
  15165. source: "./media/characters/blue-feyonics/front.svg",
  15166. extra: 1403 / 1306,
  15167. bottom: 0.047
  15168. }
  15169. },
  15170. },
  15171. [
  15172. {
  15173. name: "Normal",
  15174. height: math.unit(6 + 7 / 12, "feet"),
  15175. default: true
  15176. },
  15177. ]
  15178. ))
  15179. characterMakers.push(() => makeCharacter(
  15180. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15181. {
  15182. front: {
  15183. height: math.unit(1.8, "meters"),
  15184. weight: math.unit(60, "kg"),
  15185. name: "Front",
  15186. image: {
  15187. source: "./media/characters/maxwell/front.svg",
  15188. extra: 2060 / 1873
  15189. }
  15190. },
  15191. },
  15192. [
  15193. {
  15194. name: "Micro",
  15195. height: math.unit(1, "mm")
  15196. },
  15197. {
  15198. name: "Normal",
  15199. height: math.unit(1.8, "meter"),
  15200. default: true
  15201. },
  15202. {
  15203. name: "Macro",
  15204. height: math.unit(30, "meters")
  15205. },
  15206. {
  15207. name: "Megamacro",
  15208. height: math.unit(10, "km")
  15209. },
  15210. ]
  15211. ))
  15212. characterMakers.push(() => makeCharacter(
  15213. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15214. {
  15215. front: {
  15216. height: math.unit(6, "feet"),
  15217. weight: math.unit(150, "lb"),
  15218. name: "Front",
  15219. image: {
  15220. source: "./media/characters/jack/front.svg",
  15221. extra: 1754 / 1640,
  15222. bottom: 0.01
  15223. }
  15224. },
  15225. },
  15226. [
  15227. {
  15228. name: "Normal",
  15229. height: math.unit(80000, "feet"),
  15230. default: true
  15231. },
  15232. {
  15233. name: "Max size",
  15234. height: math.unit(10, "lightyears")
  15235. },
  15236. ]
  15237. ))
  15238. characterMakers.push(() => makeCharacter(
  15239. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15240. {
  15241. upright: {
  15242. height: math.unit(7, "feet"),
  15243. weight: math.unit(170, "lb"),
  15244. name: "Upright",
  15245. image: {
  15246. source: "./media/characters/cafat/upright.svg",
  15247. bottom: 0.01
  15248. }
  15249. },
  15250. uprightFull: {
  15251. height: math.unit(7, "feet"),
  15252. weight: math.unit(170, "lb"),
  15253. name: "Upright (Full)",
  15254. image: {
  15255. source: "./media/characters/cafat/upright-full.svg",
  15256. bottom: 0.01
  15257. }
  15258. },
  15259. side: {
  15260. height: math.unit(5, "feet"),
  15261. weight: math.unit(150, "lb"),
  15262. name: "Side",
  15263. image: {
  15264. source: "./media/characters/cafat/side.svg"
  15265. }
  15266. },
  15267. },
  15268. [
  15269. {
  15270. name: "Small",
  15271. height: math.unit(7, "feet"),
  15272. default: true
  15273. },
  15274. {
  15275. name: "Large",
  15276. height: math.unit(15.5, "feet")
  15277. },
  15278. ]
  15279. ))
  15280. characterMakers.push(() => makeCharacter(
  15281. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15282. {
  15283. front: {
  15284. height: math.unit(6, "feet"),
  15285. weight: math.unit(150, "lb"),
  15286. name: "Front",
  15287. image: {
  15288. source: "./media/characters/verin-raharra/front.svg",
  15289. extra: 5019 / 4835,
  15290. bottom: 0.023
  15291. }
  15292. },
  15293. },
  15294. [
  15295. {
  15296. name: "Normal",
  15297. height: math.unit(7 + 5 / 12, "feet"),
  15298. default: true
  15299. },
  15300. {
  15301. name: "Upsized",
  15302. height: math.unit(20, "feet")
  15303. },
  15304. ]
  15305. ))
  15306. characterMakers.push(() => makeCharacter(
  15307. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15308. {
  15309. front: {
  15310. height: math.unit(7, "feet"),
  15311. weight: math.unit(230, "lb"),
  15312. name: "Front",
  15313. image: {
  15314. source: "./media/characters/nakata/front.svg",
  15315. extra: 1.005,
  15316. bottom: 0.01
  15317. }
  15318. },
  15319. },
  15320. [
  15321. {
  15322. name: "Normal",
  15323. height: math.unit(7, "feet"),
  15324. default: true
  15325. },
  15326. {
  15327. name: "Big",
  15328. height: math.unit(14, "feet")
  15329. },
  15330. {
  15331. name: "Macro",
  15332. height: math.unit(400, "feet")
  15333. },
  15334. ]
  15335. ))
  15336. characterMakers.push(() => makeCharacter(
  15337. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15338. {
  15339. front: {
  15340. height: math.unit(4.91, "feet"),
  15341. weight: math.unit(100, "lb"),
  15342. name: "Front",
  15343. image: {
  15344. source: "./media/characters/lily/front.svg",
  15345. extra: 1585 / 1415,
  15346. bottom: 0.02
  15347. }
  15348. },
  15349. },
  15350. [
  15351. {
  15352. name: "Normal",
  15353. height: math.unit(4.91, "feet"),
  15354. default: true
  15355. },
  15356. ]
  15357. ))
  15358. characterMakers.push(() => makeCharacter(
  15359. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15360. {
  15361. laying: {
  15362. height: math.unit(4 + 4 / 12, "feet"),
  15363. weight: math.unit(600, "lb"),
  15364. name: "Laying",
  15365. image: {
  15366. source: "./media/characters/sheila/laying.svg",
  15367. extra: 1333 / 1265,
  15368. bottom: 0.16
  15369. }
  15370. },
  15371. },
  15372. [
  15373. {
  15374. name: "Normal",
  15375. height: math.unit(4 + 4 / 12, "feet"),
  15376. default: true
  15377. },
  15378. ]
  15379. ))
  15380. characterMakers.push(() => makeCharacter(
  15381. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15382. {
  15383. front: {
  15384. height: math.unit(6, "feet"),
  15385. weight: math.unit(190, "lb"),
  15386. name: "Front",
  15387. image: {
  15388. source: "./media/characters/sax/front.svg",
  15389. extra: 1187 / 973,
  15390. bottom: 0.042
  15391. }
  15392. },
  15393. },
  15394. [
  15395. {
  15396. name: "Micro",
  15397. height: math.unit(4, "inches"),
  15398. default: true
  15399. },
  15400. ]
  15401. ))
  15402. characterMakers.push(() => makeCharacter(
  15403. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15404. {
  15405. front: {
  15406. height: math.unit(6, "feet"),
  15407. weight: math.unit(150, "lb"),
  15408. name: "Front",
  15409. image: {
  15410. source: "./media/characters/pandora/front.svg",
  15411. extra: 2720 / 2556,
  15412. bottom: 0.015
  15413. }
  15414. },
  15415. back: {
  15416. height: math.unit(6, "feet"),
  15417. weight: math.unit(150, "lb"),
  15418. name: "Back",
  15419. image: {
  15420. source: "./media/characters/pandora/back.svg",
  15421. extra: 2720 / 2556,
  15422. bottom: 0.01
  15423. }
  15424. },
  15425. beans: {
  15426. height: math.unit(6 / 8, "feet"),
  15427. name: "Beans",
  15428. image: {
  15429. source: "./media/characters/pandora/beans.svg"
  15430. }
  15431. },
  15432. skirt: {
  15433. height: math.unit(6, "feet"),
  15434. weight: math.unit(150, "lb"),
  15435. name: "Skirt",
  15436. image: {
  15437. source: "./media/characters/pandora/skirt.svg",
  15438. extra: 1622 / 1525,
  15439. bottom: 0.015
  15440. }
  15441. },
  15442. hoodie: {
  15443. height: math.unit(6, "feet"),
  15444. weight: math.unit(150, "lb"),
  15445. name: "Hoodie",
  15446. image: {
  15447. source: "./media/characters/pandora/hoodie.svg",
  15448. extra: 1622 / 1525,
  15449. bottom: 0.015
  15450. }
  15451. },
  15452. casual: {
  15453. height: math.unit(6, "feet"),
  15454. weight: math.unit(150, "lb"),
  15455. name: "Casual",
  15456. image: {
  15457. source: "./media/characters/pandora/casual.svg",
  15458. extra: 1622 / 1525,
  15459. bottom: 0.015
  15460. }
  15461. },
  15462. },
  15463. [
  15464. {
  15465. name: "Normal",
  15466. height: math.unit(6, "feet")
  15467. },
  15468. {
  15469. name: "Big Steppy",
  15470. height: math.unit(1, "km"),
  15471. default: true
  15472. },
  15473. ]
  15474. ))
  15475. characterMakers.push(() => makeCharacter(
  15476. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15477. {
  15478. side: {
  15479. height: math.unit(10, "feet"),
  15480. weight: math.unit(800, "kg"),
  15481. name: "Side",
  15482. image: {
  15483. source: "./media/characters/venio-darcony/side.svg",
  15484. extra: 1373 / 1003,
  15485. bottom: 0.037
  15486. }
  15487. },
  15488. front: {
  15489. height: math.unit(19, "feet"),
  15490. weight: math.unit(800, "kg"),
  15491. name: "Front",
  15492. image: {
  15493. source: "./media/characters/venio-darcony/front.svg"
  15494. }
  15495. },
  15496. back: {
  15497. height: math.unit(19, "feet"),
  15498. weight: math.unit(800, "kg"),
  15499. name: "Back",
  15500. image: {
  15501. source: "./media/characters/venio-darcony/back.svg"
  15502. }
  15503. },
  15504. sideNsfw: {
  15505. height: math.unit(10, "feet"),
  15506. weight: math.unit(800, "kg"),
  15507. name: "Side (NSFW)",
  15508. image: {
  15509. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15510. extra: 1373 / 1003,
  15511. bottom: 0.037
  15512. }
  15513. },
  15514. frontNsfw: {
  15515. height: math.unit(19, "feet"),
  15516. weight: math.unit(800, "kg"),
  15517. name: "Front (NSFW)",
  15518. image: {
  15519. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15520. }
  15521. },
  15522. backNsfw: {
  15523. height: math.unit(19, "feet"),
  15524. weight: math.unit(800, "kg"),
  15525. name: "Back (NSFW)",
  15526. image: {
  15527. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15528. }
  15529. },
  15530. sideArmored: {
  15531. height: math.unit(10, "feet"),
  15532. weight: math.unit(800, "kg"),
  15533. name: "Side (Armored)",
  15534. image: {
  15535. source: "./media/characters/venio-darcony/side-armored.svg",
  15536. extra: 1373 / 1003,
  15537. bottom: 0.037
  15538. }
  15539. },
  15540. frontArmored: {
  15541. height: math.unit(19, "feet"),
  15542. weight: math.unit(900, "kg"),
  15543. name: "Front (Armored)",
  15544. image: {
  15545. source: "./media/characters/venio-darcony/front-armored.svg"
  15546. }
  15547. },
  15548. backArmored: {
  15549. height: math.unit(19, "feet"),
  15550. weight: math.unit(900, "kg"),
  15551. name: "Back (Armored)",
  15552. image: {
  15553. source: "./media/characters/venio-darcony/back-armored.svg"
  15554. }
  15555. },
  15556. sword: {
  15557. height: math.unit(10, "feet"),
  15558. weight: math.unit(50, "lb"),
  15559. name: "Sword",
  15560. image: {
  15561. source: "./media/characters/venio-darcony/sword.svg"
  15562. }
  15563. },
  15564. },
  15565. [
  15566. {
  15567. name: "Normal",
  15568. height: math.unit(10, "feet")
  15569. },
  15570. {
  15571. name: "Macro",
  15572. height: math.unit(130, "feet"),
  15573. default: true
  15574. },
  15575. {
  15576. name: "Macro+",
  15577. height: math.unit(240, "feet")
  15578. },
  15579. ]
  15580. ))
  15581. characterMakers.push(() => makeCharacter(
  15582. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15583. {
  15584. front: {
  15585. height: math.unit(6, "feet"),
  15586. weight: math.unit(150, "lb"),
  15587. name: "Front",
  15588. image: {
  15589. source: "./media/characters/veski/front.svg",
  15590. extra: 1299 / 1225,
  15591. bottom: 0.04
  15592. }
  15593. },
  15594. back: {
  15595. height: math.unit(6, "feet"),
  15596. weight: math.unit(150, "lb"),
  15597. name: "Back",
  15598. image: {
  15599. source: "./media/characters/veski/back.svg",
  15600. extra: 1299 / 1225,
  15601. bottom: 0.008
  15602. }
  15603. },
  15604. maw: {
  15605. height: math.unit(1.5 * 1.21, "feet"),
  15606. name: "Maw",
  15607. image: {
  15608. source: "./media/characters/veski/maw.svg"
  15609. }
  15610. },
  15611. },
  15612. [
  15613. {
  15614. name: "Macro",
  15615. height: math.unit(2, "km"),
  15616. default: true
  15617. },
  15618. ]
  15619. ))
  15620. characterMakers.push(() => makeCharacter(
  15621. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15622. {
  15623. front: {
  15624. height: math.unit(5 + 7 / 12, "feet"),
  15625. name: "Front",
  15626. image: {
  15627. source: "./media/characters/isabelle/front.svg",
  15628. extra: 2130 / 1976,
  15629. bottom: 0.05
  15630. }
  15631. },
  15632. },
  15633. [
  15634. {
  15635. name: "Supermicro",
  15636. height: math.unit(10, "micrometers")
  15637. },
  15638. {
  15639. name: "Micro",
  15640. height: math.unit(1, "inch")
  15641. },
  15642. {
  15643. name: "Tiny",
  15644. height: math.unit(5, "inches")
  15645. },
  15646. {
  15647. name: "Standard",
  15648. height: math.unit(5 + 7 / 12, "inches")
  15649. },
  15650. {
  15651. name: "Macro",
  15652. height: math.unit(80, "meters"),
  15653. default: true
  15654. },
  15655. {
  15656. name: "Megamacro",
  15657. height: math.unit(250, "meters")
  15658. },
  15659. {
  15660. name: "Gigamacro",
  15661. height: math.unit(5, "km")
  15662. },
  15663. {
  15664. name: "Cosmic",
  15665. height: math.unit(2.5e6, "miles")
  15666. },
  15667. ]
  15668. ))
  15669. characterMakers.push(() => makeCharacter(
  15670. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15671. {
  15672. front: {
  15673. height: math.unit(6, "feet"),
  15674. weight: math.unit(150, "lb"),
  15675. name: "Front",
  15676. image: {
  15677. source: "./media/characters/hanzo/front.svg",
  15678. extra: 374 / 344,
  15679. bottom: 0.02
  15680. }
  15681. },
  15682. },
  15683. [
  15684. {
  15685. name: "Normal",
  15686. height: math.unit(8, "feet"),
  15687. default: true
  15688. },
  15689. ]
  15690. ))
  15691. characterMakers.push(() => makeCharacter(
  15692. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15693. {
  15694. front: {
  15695. height: math.unit(7, "feet"),
  15696. weight: math.unit(130, "lb"),
  15697. name: "Front",
  15698. image: {
  15699. source: "./media/characters/anna/front.svg",
  15700. extra: 169 / 145,
  15701. bottom: 0.06
  15702. }
  15703. },
  15704. full: {
  15705. height: math.unit(4.96, "feet"),
  15706. weight: math.unit(220, "lb"),
  15707. name: "Full",
  15708. image: {
  15709. source: "./media/characters/anna/full.svg",
  15710. extra: 138 / 114,
  15711. bottom: 0.15
  15712. }
  15713. },
  15714. tongue: {
  15715. height: math.unit(2.53, "feet"),
  15716. name: "Tongue",
  15717. image: {
  15718. source: "./media/characters/anna/tongue.svg"
  15719. }
  15720. },
  15721. },
  15722. [
  15723. {
  15724. name: "Normal",
  15725. height: math.unit(7, "feet"),
  15726. default: true
  15727. },
  15728. ]
  15729. ))
  15730. characterMakers.push(() => makeCharacter(
  15731. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15732. {
  15733. front: {
  15734. height: math.unit(7, "feet"),
  15735. weight: math.unit(150, "lb"),
  15736. name: "Front",
  15737. image: {
  15738. source: "./media/characters/ian-corvid/front.svg",
  15739. extra: 150 / 142,
  15740. bottom: 0.02
  15741. }
  15742. },
  15743. back: {
  15744. height: math.unit(7, "feet"),
  15745. weight: math.unit(150, "lb"),
  15746. name: "Back",
  15747. image: {
  15748. source: "./media/characters/ian-corvid/back.svg",
  15749. extra: 150 / 143,
  15750. bottom: 0.01
  15751. }
  15752. },
  15753. stomping: {
  15754. height: math.unit(7, "feet"),
  15755. weight: math.unit(150, "lb"),
  15756. name: "Stomping",
  15757. image: {
  15758. source: "./media/characters/ian-corvid/stomping.svg",
  15759. extra: 76 / 72
  15760. }
  15761. },
  15762. sitting: {
  15763. height: math.unit(7 / 1.8, "feet"),
  15764. weight: math.unit(150, "lb"),
  15765. name: "Sitting",
  15766. image: {
  15767. source: "./media/characters/ian-corvid/sitting.svg",
  15768. extra: 1400 / 1269,
  15769. bottom: 0.15
  15770. }
  15771. },
  15772. },
  15773. [
  15774. {
  15775. name: "Tiny Microw",
  15776. height: math.unit(1, "inch")
  15777. },
  15778. {
  15779. name: "Microw",
  15780. height: math.unit(6, "inches")
  15781. },
  15782. {
  15783. name: "Crow",
  15784. height: math.unit(7 + 1 / 12, "feet"),
  15785. default: true
  15786. },
  15787. {
  15788. name: "Macrow",
  15789. height: math.unit(176, "feet")
  15790. },
  15791. ]
  15792. ))
  15793. characterMakers.push(() => makeCharacter(
  15794. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15795. {
  15796. front: {
  15797. height: math.unit(5 + 7 / 12, "feet"),
  15798. weight: math.unit(147, "lb"),
  15799. name: "Front",
  15800. image: {
  15801. source: "./media/characters/natalie-kellon/front.svg",
  15802. extra: 1214 / 1141,
  15803. bottom: 0.02
  15804. }
  15805. },
  15806. },
  15807. [
  15808. {
  15809. name: "Micro",
  15810. height: math.unit(1 / 16, "inch")
  15811. },
  15812. {
  15813. name: "Tiny",
  15814. height: math.unit(4, "inches")
  15815. },
  15816. {
  15817. name: "Normal",
  15818. height: math.unit(5 + 7 / 12, "feet"),
  15819. default: true
  15820. },
  15821. {
  15822. name: "Amazon",
  15823. height: math.unit(12, "feet")
  15824. },
  15825. {
  15826. name: "Giantess",
  15827. height: math.unit(160, "meters")
  15828. },
  15829. {
  15830. name: "Titaness",
  15831. height: math.unit(800, "meters")
  15832. },
  15833. ]
  15834. ))
  15835. characterMakers.push(() => makeCharacter(
  15836. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15837. {
  15838. front: {
  15839. height: math.unit(6, "feet"),
  15840. weight: math.unit(150, "lb"),
  15841. name: "Front",
  15842. image: {
  15843. source: "./media/characters/alluria/front.svg",
  15844. extra: 806 / 738,
  15845. bottom: 0.01
  15846. }
  15847. },
  15848. side: {
  15849. height: math.unit(6, "feet"),
  15850. weight: math.unit(150, "lb"),
  15851. name: "Side",
  15852. image: {
  15853. source: "./media/characters/alluria/side.svg",
  15854. extra: 800 / 750,
  15855. }
  15856. },
  15857. back: {
  15858. height: math.unit(6, "feet"),
  15859. weight: math.unit(150, "lb"),
  15860. name: "Back",
  15861. image: {
  15862. source: "./media/characters/alluria/back.svg",
  15863. extra: 806 / 738,
  15864. }
  15865. },
  15866. frontMaid: {
  15867. height: math.unit(6, "feet"),
  15868. weight: math.unit(150, "lb"),
  15869. name: "Front (Maid)",
  15870. image: {
  15871. source: "./media/characters/alluria/front-maid.svg",
  15872. extra: 806 / 738,
  15873. bottom: 0.01
  15874. }
  15875. },
  15876. sideMaid: {
  15877. height: math.unit(6, "feet"),
  15878. weight: math.unit(150, "lb"),
  15879. name: "Side (Maid)",
  15880. image: {
  15881. source: "./media/characters/alluria/side-maid.svg",
  15882. extra: 800 / 750,
  15883. bottom: 0.005
  15884. }
  15885. },
  15886. backMaid: {
  15887. height: math.unit(6, "feet"),
  15888. weight: math.unit(150, "lb"),
  15889. name: "Back (Maid)",
  15890. image: {
  15891. source: "./media/characters/alluria/back-maid.svg",
  15892. extra: 806 / 738,
  15893. }
  15894. },
  15895. },
  15896. [
  15897. {
  15898. name: "Micro",
  15899. height: math.unit(6, "inches"),
  15900. default: true
  15901. },
  15902. ]
  15903. ))
  15904. characterMakers.push(() => makeCharacter(
  15905. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15906. {
  15907. front: {
  15908. height: math.unit(6, "feet"),
  15909. weight: math.unit(150, "lb"),
  15910. name: "Front",
  15911. image: {
  15912. source: "./media/characters/kyle/front.svg",
  15913. extra: 1069 / 962,
  15914. bottom: 77.228 / 1727.45
  15915. }
  15916. },
  15917. },
  15918. [
  15919. {
  15920. name: "Macro",
  15921. height: math.unit(150, "feet"),
  15922. default: true
  15923. },
  15924. ]
  15925. ))
  15926. characterMakers.push(() => makeCharacter(
  15927. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15928. {
  15929. front: {
  15930. height: math.unit(6, "feet"),
  15931. weight: math.unit(300, "lb"),
  15932. name: "Front",
  15933. image: {
  15934. source: "./media/characters/duncan/front.svg",
  15935. extra: 1650 / 1482,
  15936. bottom: 0.05
  15937. }
  15938. },
  15939. },
  15940. [
  15941. {
  15942. name: "Macro",
  15943. height: math.unit(100, "feet"),
  15944. default: true
  15945. },
  15946. ]
  15947. ))
  15948. characterMakers.push(() => makeCharacter(
  15949. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15950. {
  15951. front: {
  15952. height: math.unit(5 + 4 / 12, "feet"),
  15953. weight: math.unit(220, "lb"),
  15954. name: "Front",
  15955. image: {
  15956. source: "./media/characters/memory/front.svg",
  15957. extra: 3641 / 3545,
  15958. bottom: 0.03
  15959. }
  15960. },
  15961. back: {
  15962. height: math.unit(5 + 4 / 12, "feet"),
  15963. weight: math.unit(220, "lb"),
  15964. name: "Back",
  15965. image: {
  15966. source: "./media/characters/memory/back.svg",
  15967. extra: 3641 / 3545,
  15968. bottom: 0.025
  15969. }
  15970. },
  15971. frontSkirt: {
  15972. height: math.unit(5 + 4 / 12, "feet"),
  15973. weight: math.unit(220, "lb"),
  15974. name: "Front (Skirt)",
  15975. image: {
  15976. source: "./media/characters/memory/front-skirt.svg",
  15977. extra: 3641 / 3545,
  15978. bottom: 0.03
  15979. }
  15980. },
  15981. frontDress: {
  15982. height: math.unit(5 + 4 / 12, "feet"),
  15983. weight: math.unit(220, "lb"),
  15984. name: "Front (Dress)",
  15985. image: {
  15986. source: "./media/characters/memory/front-dress.svg",
  15987. extra: 3641 / 3545,
  15988. bottom: 0.03
  15989. }
  15990. },
  15991. },
  15992. [
  15993. {
  15994. name: "Micro",
  15995. height: math.unit(6, "inches"),
  15996. default: true
  15997. },
  15998. {
  15999. name: "Normal",
  16000. height: math.unit(5 + 4 / 12, "feet")
  16001. },
  16002. ]
  16003. ))
  16004. characterMakers.push(() => makeCharacter(
  16005. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16006. {
  16007. front: {
  16008. height: math.unit(4 + 11 / 12, "feet"),
  16009. weight: math.unit(100, "lb"),
  16010. name: "Front",
  16011. image: {
  16012. source: "./media/characters/luno/front.svg",
  16013. extra: 1535 / 1487,
  16014. bottom: 0.03
  16015. }
  16016. },
  16017. },
  16018. [
  16019. {
  16020. name: "Micro",
  16021. height: math.unit(3, "inches")
  16022. },
  16023. {
  16024. name: "Normal",
  16025. height: math.unit(4 + 11 / 12, "feet"),
  16026. default: true
  16027. },
  16028. {
  16029. name: "Macro",
  16030. height: math.unit(300, "feet")
  16031. },
  16032. {
  16033. name: "Megamacro",
  16034. height: math.unit(700, "miles")
  16035. },
  16036. ]
  16037. ))
  16038. characterMakers.push(() => makeCharacter(
  16039. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16040. {
  16041. front: {
  16042. height: math.unit(6 + 2 / 12, "feet"),
  16043. weight: math.unit(170, "lb"),
  16044. name: "Front",
  16045. image: {
  16046. source: "./media/characters/jamesy/front.svg",
  16047. extra: 440 / 382,
  16048. bottom: 0.005
  16049. }
  16050. },
  16051. },
  16052. [
  16053. {
  16054. name: "Micro",
  16055. height: math.unit(3, "inches")
  16056. },
  16057. {
  16058. name: "Normal",
  16059. height: math.unit(6 + 2 / 12, "feet"),
  16060. default: true
  16061. },
  16062. {
  16063. name: "Macro",
  16064. height: math.unit(300, "feet")
  16065. },
  16066. {
  16067. name: "Megamacro",
  16068. height: math.unit(700, "miles")
  16069. },
  16070. ]
  16071. ))
  16072. characterMakers.push(() => makeCharacter(
  16073. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16074. {
  16075. front: {
  16076. height: math.unit(6, "feet"),
  16077. weight: math.unit(160, "lb"),
  16078. name: "Front",
  16079. image: {
  16080. source: "./media/characters/mark/front.svg",
  16081. extra: 3300 / 3100,
  16082. bottom: 136.42 / 3440.47
  16083. }
  16084. },
  16085. },
  16086. [
  16087. {
  16088. name: "Macro",
  16089. height: math.unit(120, "meters")
  16090. },
  16091. {
  16092. name: "Bigger Macro",
  16093. height: math.unit(350, "meters")
  16094. },
  16095. {
  16096. name: "Megamacro",
  16097. height: math.unit(8, "km"),
  16098. default: true
  16099. },
  16100. {
  16101. name: "Continental",
  16102. height: math.unit(4550, "km")
  16103. },
  16104. {
  16105. name: "Planetary",
  16106. height: math.unit(65000, "km")
  16107. },
  16108. ]
  16109. ))
  16110. characterMakers.push(() => makeCharacter(
  16111. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16112. {
  16113. front: {
  16114. height: math.unit(6, "feet"),
  16115. weight: math.unit(400, "lb"),
  16116. name: "Front",
  16117. image: {
  16118. source: "./media/characters/mac/front.svg",
  16119. extra: 1048 / 987.7,
  16120. bottom: 60 / 1107.6,
  16121. }
  16122. },
  16123. },
  16124. [
  16125. {
  16126. name: "Macro",
  16127. height: math.unit(500, "feet"),
  16128. default: true
  16129. },
  16130. ]
  16131. ))
  16132. characterMakers.push(() => makeCharacter(
  16133. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16134. {
  16135. front: {
  16136. height: math.unit(5 + 2 / 12, "feet"),
  16137. weight: math.unit(190, "lb"),
  16138. name: "Front",
  16139. image: {
  16140. source: "./media/characters/bari/front.svg",
  16141. extra: 3156 / 2880,
  16142. bottom: 0.03
  16143. }
  16144. },
  16145. back: {
  16146. height: math.unit(5 + 2 / 12, "feet"),
  16147. weight: math.unit(190, "lb"),
  16148. name: "Back",
  16149. image: {
  16150. source: "./media/characters/bari/back.svg",
  16151. extra: 3260 / 2834,
  16152. bottom: 0.025
  16153. }
  16154. },
  16155. frontPlush: {
  16156. height: math.unit(5 + 2 / 12, "feet"),
  16157. weight: math.unit(190, "lb"),
  16158. name: "Front (Plush)",
  16159. image: {
  16160. source: "./media/characters/bari/front-plush.svg",
  16161. extra: 1112 / 1061,
  16162. bottom: 0.002
  16163. }
  16164. },
  16165. },
  16166. [
  16167. {
  16168. name: "Micro",
  16169. height: math.unit(3, "inches")
  16170. },
  16171. {
  16172. name: "Normal",
  16173. height: math.unit(5 + 2 / 12, "feet"),
  16174. default: true
  16175. },
  16176. {
  16177. name: "Macro",
  16178. height: math.unit(20, "feet")
  16179. },
  16180. ]
  16181. ))
  16182. characterMakers.push(() => makeCharacter(
  16183. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16184. {
  16185. front: {
  16186. height: math.unit(6 + 1 / 12, "feet"),
  16187. weight: math.unit(275, "lb"),
  16188. name: "Front",
  16189. image: {
  16190. source: "./media/characters/hunter-misha-raven/front.svg"
  16191. }
  16192. },
  16193. },
  16194. [
  16195. {
  16196. name: "Mortal",
  16197. height: math.unit(6 + 1 / 12, "feet")
  16198. },
  16199. {
  16200. name: "Divine",
  16201. height: math.unit(1.12134e34, "parsecs"),
  16202. default: true
  16203. },
  16204. ]
  16205. ))
  16206. characterMakers.push(() => makeCharacter(
  16207. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16208. {
  16209. front: {
  16210. height: math.unit(6 + 3 / 12, "feet"),
  16211. weight: math.unit(220, "lb"),
  16212. name: "Front",
  16213. image: {
  16214. source: "./media/characters/max-calore/front.svg",
  16215. extra: 1700 / 1648,
  16216. bottom: 0.01
  16217. }
  16218. },
  16219. back: {
  16220. height: math.unit(6 + 3 / 12, "feet"),
  16221. weight: math.unit(220, "lb"),
  16222. name: "Back",
  16223. image: {
  16224. source: "./media/characters/max-calore/back.svg",
  16225. extra: 1700 / 1648,
  16226. bottom: 0.01
  16227. }
  16228. },
  16229. },
  16230. [
  16231. {
  16232. name: "Normal",
  16233. height: math.unit(6 + 3 / 12, "feet"),
  16234. default: true
  16235. },
  16236. ]
  16237. ))
  16238. characterMakers.push(() => makeCharacter(
  16239. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16240. {
  16241. side: {
  16242. height: math.unit(2 + 8 / 12, "feet"),
  16243. weight: math.unit(99, "lb"),
  16244. name: "Side",
  16245. image: {
  16246. source: "./media/characters/aspen/side.svg",
  16247. extra: 152 / 138,
  16248. bottom: 0.032
  16249. }
  16250. },
  16251. },
  16252. [
  16253. {
  16254. name: "Normal",
  16255. height: math.unit(2 + 8 / 12, "feet"),
  16256. default: true
  16257. },
  16258. ]
  16259. ))
  16260. characterMakers.push(() => makeCharacter(
  16261. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16262. {
  16263. side: {
  16264. height: math.unit(3 + 2 / 12, "feet"),
  16265. weight: math.unit(224, "lb"),
  16266. name: "Side",
  16267. image: {
  16268. source: "./media/characters/sheila-feral-wolf/side.svg",
  16269. extra: 179 / 166,
  16270. bottom: 0.03
  16271. }
  16272. },
  16273. },
  16274. [
  16275. {
  16276. name: "Normal",
  16277. height: math.unit(3 + 2 / 12, "feet"),
  16278. default: true
  16279. },
  16280. ]
  16281. ))
  16282. characterMakers.push(() => makeCharacter(
  16283. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16284. {
  16285. side: {
  16286. height: math.unit(1 + 9 / 12, "feet"),
  16287. weight: math.unit(38, "lb"),
  16288. name: "Side",
  16289. image: {
  16290. source: "./media/characters/michelle/side.svg",
  16291. extra: 147 / 136.7,
  16292. bottom: 0.03
  16293. }
  16294. },
  16295. },
  16296. [
  16297. {
  16298. name: "Normal",
  16299. height: math.unit(1 + 9 / 12, "feet"),
  16300. default: true
  16301. },
  16302. ]
  16303. ))
  16304. characterMakers.push(() => makeCharacter(
  16305. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16306. {
  16307. front: {
  16308. height: math.unit(1 + 1 / 12, "feet"),
  16309. weight: math.unit(18, "lb"),
  16310. name: "Front",
  16311. image: {
  16312. source: "./media/characters/nino/front.svg"
  16313. }
  16314. },
  16315. },
  16316. [
  16317. {
  16318. name: "Normal",
  16319. height: math.unit(1 + 1 / 12, "feet"),
  16320. default: true
  16321. },
  16322. ]
  16323. ))
  16324. characterMakers.push(() => makeCharacter(
  16325. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16326. {
  16327. front: {
  16328. height: math.unit(1, "feet"),
  16329. weight: math.unit(16, "lb"),
  16330. name: "Front",
  16331. image: {
  16332. source: "./media/characters/viola/front.svg"
  16333. }
  16334. },
  16335. },
  16336. [
  16337. {
  16338. name: "Normal",
  16339. height: math.unit(1, "feet"),
  16340. default: true
  16341. },
  16342. ]
  16343. ))
  16344. characterMakers.push(() => makeCharacter(
  16345. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16346. {
  16347. front: {
  16348. height: math.unit(6 + 5 / 12, "feet"),
  16349. weight: math.unit(580, "lb"),
  16350. name: "Front",
  16351. image: {
  16352. source: "./media/characters/atlas/front.svg",
  16353. extra: 298.5 / 290,
  16354. bottom: 0.015
  16355. }
  16356. },
  16357. },
  16358. [
  16359. {
  16360. name: "Normal",
  16361. height: math.unit(6 + 5 / 12, "feet"),
  16362. default: true
  16363. },
  16364. ]
  16365. ))
  16366. characterMakers.push(() => makeCharacter(
  16367. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16368. {
  16369. side: {
  16370. height: math.unit(1 + 10 / 12, "feet"),
  16371. weight: math.unit(25, "lb"),
  16372. name: "Side",
  16373. image: {
  16374. source: "./media/characters/davy/side.svg",
  16375. extra: 200 / 170,
  16376. bottom: 0.01
  16377. }
  16378. },
  16379. },
  16380. [
  16381. {
  16382. name: "Normal",
  16383. height: math.unit(1 + 10 / 12, "feet"),
  16384. default: true
  16385. },
  16386. ]
  16387. ))
  16388. characterMakers.push(() => makeCharacter(
  16389. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16390. {
  16391. side: {
  16392. height: math.unit(4 + 8 / 12, "feet"),
  16393. weight: math.unit(166, "lb"),
  16394. name: "Side",
  16395. image: {
  16396. source: "./media/characters/fiona/side.svg",
  16397. extra: 232 / 220,
  16398. bottom: 0.03
  16399. }
  16400. },
  16401. },
  16402. [
  16403. {
  16404. name: "Normal",
  16405. height: math.unit(4 + 8 / 12, "feet"),
  16406. default: true
  16407. },
  16408. ]
  16409. ))
  16410. characterMakers.push(() => makeCharacter(
  16411. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16412. {
  16413. front: {
  16414. height: math.unit(2, "feet"),
  16415. weight: math.unit(62, "lb"),
  16416. name: "Front",
  16417. image: {
  16418. source: "./media/characters/lyla/front.svg",
  16419. bottom: 0.1
  16420. }
  16421. },
  16422. },
  16423. [
  16424. {
  16425. name: "Normal",
  16426. height: math.unit(2, "feet"),
  16427. default: true
  16428. },
  16429. ]
  16430. ))
  16431. characterMakers.push(() => makeCharacter(
  16432. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16433. {
  16434. side: {
  16435. height: math.unit(1.8, "feet"),
  16436. weight: math.unit(44, "lb"),
  16437. name: "Side",
  16438. image: {
  16439. source: "./media/characters/perseus/side.svg",
  16440. bottom: 0.21
  16441. }
  16442. },
  16443. },
  16444. [
  16445. {
  16446. name: "Normal",
  16447. height: math.unit(1.8, "feet"),
  16448. default: true
  16449. },
  16450. ]
  16451. ))
  16452. characterMakers.push(() => makeCharacter(
  16453. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16454. {
  16455. side: {
  16456. height: math.unit(4 + 2 / 12, "feet"),
  16457. weight: math.unit(20, "lb"),
  16458. name: "Side",
  16459. image: {
  16460. source: "./media/characters/remus/side.svg"
  16461. }
  16462. },
  16463. },
  16464. [
  16465. {
  16466. name: "Normal",
  16467. height: math.unit(4 + 2 / 12, "feet"),
  16468. default: true
  16469. },
  16470. ]
  16471. ))
  16472. characterMakers.push(() => makeCharacter(
  16473. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16474. {
  16475. front: {
  16476. height: math.unit(4 + 11 / 12, "feet"),
  16477. weight: math.unit(114, "lb"),
  16478. name: "Front",
  16479. image: {
  16480. source: "./media/characters/raf/front.svg",
  16481. bottom: 20.5 / 1863
  16482. }
  16483. },
  16484. side: {
  16485. height: math.unit(4 + 11 / 12, "feet"),
  16486. weight: math.unit(114, "lb"),
  16487. name: "Side",
  16488. image: {
  16489. source: "./media/characters/raf/side.svg",
  16490. bottom: 22 / 1822
  16491. }
  16492. },
  16493. },
  16494. [
  16495. {
  16496. name: "Micro",
  16497. height: math.unit(2, "inches")
  16498. },
  16499. {
  16500. name: "Normal",
  16501. height: math.unit(4 + 11 / 12, "feet"),
  16502. default: true
  16503. },
  16504. {
  16505. name: "Macro",
  16506. height: math.unit(70, "feet")
  16507. },
  16508. ]
  16509. ))
  16510. characterMakers.push(() => makeCharacter(
  16511. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16512. {
  16513. front: {
  16514. height: math.unit(1.5, "meters"),
  16515. weight: math.unit(68, "kg"),
  16516. name: "Front",
  16517. image: {
  16518. source: "./media/characters/liam-einarr/front.svg",
  16519. extra: 2822 / 2666
  16520. }
  16521. },
  16522. back: {
  16523. height: math.unit(1.5, "meters"),
  16524. weight: math.unit(68, "kg"),
  16525. name: "Back",
  16526. image: {
  16527. source: "./media/characters/liam-einarr/back.svg",
  16528. extra: 2822 / 2666,
  16529. bottom: 0.015
  16530. }
  16531. },
  16532. },
  16533. [
  16534. {
  16535. name: "Normal",
  16536. height: math.unit(1.5, "meters"),
  16537. default: true
  16538. },
  16539. {
  16540. name: "Macro",
  16541. height: math.unit(150, "meters")
  16542. },
  16543. {
  16544. name: "Megamacro",
  16545. height: math.unit(35, "km")
  16546. },
  16547. ]
  16548. ))
  16549. characterMakers.push(() => makeCharacter(
  16550. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16551. {
  16552. front: {
  16553. height: math.unit(6, "feet"),
  16554. weight: math.unit(75, "kg"),
  16555. name: "Front",
  16556. image: {
  16557. source: "./media/characters/linda/front.svg",
  16558. extra: 930 / 874,
  16559. bottom: 0.004
  16560. }
  16561. },
  16562. },
  16563. [
  16564. {
  16565. name: "Normal",
  16566. height: math.unit(6, "feet"),
  16567. default: true
  16568. },
  16569. ]
  16570. ))
  16571. characterMakers.push(() => makeCharacter(
  16572. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16573. {
  16574. front: {
  16575. height: math.unit(6 + 8 / 12, "feet"),
  16576. weight: math.unit(220, "lb"),
  16577. name: "Front",
  16578. image: {
  16579. source: "./media/characters/caylex/front.svg",
  16580. extra: 821 / 772,
  16581. bottom: 0.07
  16582. }
  16583. },
  16584. back: {
  16585. height: math.unit(6 + 8 / 12, "feet"),
  16586. weight: math.unit(220, "lb"),
  16587. name: "Back",
  16588. image: {
  16589. source: "./media/characters/caylex/back.svg",
  16590. extra: 821 / 772,
  16591. bottom: 0.022
  16592. }
  16593. },
  16594. hand: {
  16595. height: math.unit(1.25, "feet"),
  16596. name: "Hand",
  16597. image: {
  16598. source: "./media/characters/caylex/hand.svg"
  16599. }
  16600. },
  16601. foot: {
  16602. height: math.unit(1.6, "feet"),
  16603. name: "Foot",
  16604. image: {
  16605. source: "./media/characters/caylex/foot.svg"
  16606. }
  16607. },
  16608. armored: {
  16609. height: math.unit(6 + 8 / 12, "feet"),
  16610. weight: math.unit(250, "lb"),
  16611. name: "Armored",
  16612. image: {
  16613. source: "./media/characters/caylex/armored.svg",
  16614. extra: 1420 / 1310,
  16615. bottom: 0.045
  16616. }
  16617. },
  16618. },
  16619. [
  16620. {
  16621. name: "Normal",
  16622. height: math.unit(6 + 8 / 12, "feet"),
  16623. default: true
  16624. },
  16625. {
  16626. name: "Normal+",
  16627. height: math.unit(12, "feet")
  16628. },
  16629. ]
  16630. ))
  16631. characterMakers.push(() => makeCharacter(
  16632. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16633. {
  16634. front: {
  16635. height: math.unit(7 + 6 / 12, "feet"),
  16636. weight: math.unit(288, "lb"),
  16637. name: "Front",
  16638. image: {
  16639. source: "./media/characters/alana/front.svg",
  16640. extra: 679 / 653,
  16641. bottom: 22.5 / 701
  16642. }
  16643. },
  16644. },
  16645. [
  16646. {
  16647. name: "Normal",
  16648. height: math.unit(7 + 6 / 12, "feet")
  16649. },
  16650. {
  16651. name: "Large",
  16652. height: math.unit(50, "feet")
  16653. },
  16654. {
  16655. name: "Macro",
  16656. height: math.unit(100, "feet"),
  16657. default: true
  16658. },
  16659. {
  16660. name: "Macro+",
  16661. height: math.unit(200, "feet")
  16662. },
  16663. ]
  16664. ))
  16665. characterMakers.push(() => makeCharacter(
  16666. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16667. {
  16668. front: {
  16669. height: math.unit(6 + 1 / 12, "feet"),
  16670. weight: math.unit(210, "lb"),
  16671. name: "Front",
  16672. image: {
  16673. source: "./media/characters/hasani/front.svg",
  16674. extra: 244 / 232,
  16675. bottom: 0.01
  16676. }
  16677. },
  16678. back: {
  16679. height: math.unit(6 + 1 / 12, "feet"),
  16680. weight: math.unit(210, "lb"),
  16681. name: "Back",
  16682. image: {
  16683. source: "./media/characters/hasani/back.svg",
  16684. extra: 244 / 232,
  16685. bottom: 0.01
  16686. }
  16687. },
  16688. },
  16689. [
  16690. {
  16691. name: "Normal",
  16692. height: math.unit(6 + 1 / 12, "feet")
  16693. },
  16694. {
  16695. name: "Macro",
  16696. height: math.unit(175, "feet"),
  16697. default: true
  16698. },
  16699. ]
  16700. ))
  16701. characterMakers.push(() => makeCharacter(
  16702. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16703. {
  16704. front: {
  16705. height: math.unit(1.82, "meters"),
  16706. weight: math.unit(140, "lb"),
  16707. name: "Front",
  16708. image: {
  16709. source: "./media/characters/nita/front.svg",
  16710. extra: 2473 / 2363,
  16711. bottom: 0.01
  16712. }
  16713. },
  16714. },
  16715. [
  16716. {
  16717. name: "Normal",
  16718. height: math.unit(1.82, "m")
  16719. },
  16720. {
  16721. name: "Macro",
  16722. height: math.unit(300, "m")
  16723. },
  16724. {
  16725. name: "Mistake Canon",
  16726. height: math.unit(0.5, "miles"),
  16727. default: true
  16728. },
  16729. {
  16730. name: "Big Mistake",
  16731. height: math.unit(13, "miles")
  16732. },
  16733. {
  16734. name: "Playing God",
  16735. height: math.unit(2450, "miles")
  16736. },
  16737. ]
  16738. ))
  16739. characterMakers.push(() => makeCharacter(
  16740. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16741. {
  16742. front: {
  16743. height: math.unit(4, "feet"),
  16744. weight: math.unit(120, "lb"),
  16745. name: "Front",
  16746. image: {
  16747. source: "./media/characters/shiriko/front.svg",
  16748. extra: 195 / 188
  16749. }
  16750. },
  16751. },
  16752. [
  16753. {
  16754. name: "Normal",
  16755. height: math.unit(4, "feet"),
  16756. default: true
  16757. },
  16758. ]
  16759. ))
  16760. characterMakers.push(() => makeCharacter(
  16761. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16762. {
  16763. front: {
  16764. height: math.unit(6, "feet"),
  16765. name: "front",
  16766. image: {
  16767. source: "./media/characters/deja/front.svg",
  16768. extra: 926 / 840,
  16769. bottom: 0.07
  16770. }
  16771. },
  16772. },
  16773. [
  16774. {
  16775. name: "Planck Length",
  16776. height: math.unit(1.6e-35, "meters")
  16777. },
  16778. {
  16779. name: "Normal",
  16780. height: math.unit(30.48, "meters"),
  16781. default: true
  16782. },
  16783. {
  16784. name: "Universal",
  16785. height: math.unit(8.8e26, "meters")
  16786. },
  16787. ]
  16788. ))
  16789. characterMakers.push(() => makeCharacter(
  16790. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16791. {
  16792. side: {
  16793. height: math.unit(8, "feet"),
  16794. weight: math.unit(6300, "lb"),
  16795. name: "Side",
  16796. image: {
  16797. source: "./media/characters/anima/side.svg",
  16798. bottom: 0.035
  16799. }
  16800. },
  16801. },
  16802. [
  16803. {
  16804. name: "Normal",
  16805. height: math.unit(8, "feet"),
  16806. default: true
  16807. },
  16808. ]
  16809. ))
  16810. characterMakers.push(() => makeCharacter(
  16811. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16812. {
  16813. front: {
  16814. height: math.unit(8, "feet"),
  16815. weight: math.unit(350, "lb"),
  16816. name: "Front",
  16817. image: {
  16818. source: "./media/characters/bianca/front.svg",
  16819. extra: 234 / 225,
  16820. bottom: 0.03
  16821. }
  16822. },
  16823. },
  16824. [
  16825. {
  16826. name: "Normal",
  16827. height: math.unit(8, "feet"),
  16828. default: true
  16829. },
  16830. ]
  16831. ))
  16832. characterMakers.push(() => makeCharacter(
  16833. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16834. {
  16835. front: {
  16836. height: math.unit(6, "feet"),
  16837. weight: math.unit(150, "lb"),
  16838. name: "Front",
  16839. image: {
  16840. source: "./media/characters/adinia/front.svg",
  16841. extra: 1845 / 1672,
  16842. bottom: 0.02
  16843. }
  16844. },
  16845. back: {
  16846. height: math.unit(6, "feet"),
  16847. weight: math.unit(150, "lb"),
  16848. name: "Back",
  16849. image: {
  16850. source: "./media/characters/adinia/back.svg",
  16851. extra: 1845 / 1672,
  16852. bottom: 0.002
  16853. }
  16854. },
  16855. },
  16856. [
  16857. {
  16858. name: "Normal",
  16859. height: math.unit(11 + 5 / 12, "feet"),
  16860. default: true
  16861. },
  16862. ]
  16863. ))
  16864. characterMakers.push(() => makeCharacter(
  16865. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16866. {
  16867. front: {
  16868. height: math.unit(3, "meters"),
  16869. weight: math.unit(200, "kg"),
  16870. name: "Front",
  16871. image: {
  16872. source: "./media/characters/lykasa/front.svg",
  16873. extra: 1076 / 976,
  16874. bottom: 0.06
  16875. }
  16876. },
  16877. },
  16878. [
  16879. {
  16880. name: "Normal",
  16881. height: math.unit(3, "meters")
  16882. },
  16883. {
  16884. name: "Kaiju",
  16885. height: math.unit(120, "meters"),
  16886. default: true
  16887. },
  16888. {
  16889. name: "Mega Kaiju",
  16890. height: math.unit(240, "km")
  16891. },
  16892. {
  16893. name: "Giga Kaiju",
  16894. height: math.unit(400, "megameters")
  16895. },
  16896. {
  16897. name: "Tera Kaiju",
  16898. height: math.unit(800, "gigameters")
  16899. },
  16900. {
  16901. name: "Kaiju Dragon Goddess",
  16902. height: math.unit(26, "zettaparsecs")
  16903. },
  16904. ]
  16905. ))
  16906. characterMakers.push(() => makeCharacter(
  16907. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16908. {
  16909. side: {
  16910. height: math.unit(283 / 124 * 6, "feet"),
  16911. weight: math.unit(35000, "lb"),
  16912. name: "Side",
  16913. image: {
  16914. source: "./media/characters/malfaren/side.svg",
  16915. extra: 2500 / 1010,
  16916. bottom: 0.01
  16917. }
  16918. },
  16919. front: {
  16920. height: math.unit(22.36, "feet"),
  16921. weight: math.unit(35000, "lb"),
  16922. name: "Front",
  16923. image: {
  16924. source: "./media/characters/malfaren/front.svg",
  16925. extra: 1631 / 1476,
  16926. bottom: 0.01
  16927. }
  16928. },
  16929. maw: {
  16930. height: math.unit(6.9, "feet"),
  16931. name: "Maw",
  16932. image: {
  16933. source: "./media/characters/malfaren/maw.svg"
  16934. }
  16935. },
  16936. },
  16937. [
  16938. {
  16939. name: "Big",
  16940. height: math.unit(283 / 162 * 6, "feet"),
  16941. },
  16942. {
  16943. name: "Bigger",
  16944. height: math.unit(283 / 124 * 6, "feet")
  16945. },
  16946. {
  16947. name: "Massive",
  16948. height: math.unit(283 / 92 * 6, "feet"),
  16949. default: true
  16950. },
  16951. {
  16952. name: "👀💦",
  16953. height: math.unit(283 / 73 * 6, "feet"),
  16954. },
  16955. ]
  16956. ))
  16957. characterMakers.push(() => makeCharacter(
  16958. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16959. {
  16960. front: {
  16961. height: math.unit(1.7, "m"),
  16962. weight: math.unit(70, "kg"),
  16963. name: "Front",
  16964. image: {
  16965. source: "./media/characters/kernel/front.svg",
  16966. extra: 222 / 210,
  16967. bottom: 0.007
  16968. }
  16969. },
  16970. },
  16971. [
  16972. {
  16973. name: "Nano",
  16974. height: math.unit(17, "micrometers")
  16975. },
  16976. {
  16977. name: "Micro",
  16978. height: math.unit(1.7, "mm")
  16979. },
  16980. {
  16981. name: "Small",
  16982. height: math.unit(1.7, "cm")
  16983. },
  16984. {
  16985. name: "Normal",
  16986. height: math.unit(1.7, "m"),
  16987. default: true
  16988. },
  16989. ]
  16990. ))
  16991. characterMakers.push(() => makeCharacter(
  16992. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16993. {
  16994. front: {
  16995. height: math.unit(1.75, "meters"),
  16996. weight: math.unit(65, "kg"),
  16997. name: "Front",
  16998. image: {
  16999. source: "./media/characters/jayne-folest/front.svg",
  17000. extra: 2115 / 2007,
  17001. bottom: 0.02
  17002. }
  17003. },
  17004. back: {
  17005. height: math.unit(1.75, "meters"),
  17006. weight: math.unit(65, "kg"),
  17007. name: "Back",
  17008. image: {
  17009. source: "./media/characters/jayne-folest/back.svg",
  17010. extra: 2115 / 2007,
  17011. bottom: 0.005
  17012. }
  17013. },
  17014. frontClothed: {
  17015. height: math.unit(1.75, "meters"),
  17016. weight: math.unit(65, "kg"),
  17017. name: "Front (Clothed)",
  17018. image: {
  17019. source: "./media/characters/jayne-folest/front-clothed.svg",
  17020. extra: 2115 / 2007,
  17021. bottom: 0.035
  17022. }
  17023. },
  17024. hand: {
  17025. height: math.unit(1 / 1.260, "feet"),
  17026. name: "Hand",
  17027. image: {
  17028. source: "./media/characters/jayne-folest/hand.svg"
  17029. }
  17030. },
  17031. foot: {
  17032. height: math.unit(1 / 0.918, "feet"),
  17033. name: "Foot",
  17034. image: {
  17035. source: "./media/characters/jayne-folest/foot.svg"
  17036. }
  17037. },
  17038. },
  17039. [
  17040. {
  17041. name: "Micro",
  17042. height: math.unit(4, "cm")
  17043. },
  17044. {
  17045. name: "Normal",
  17046. height: math.unit(1.75, "meters")
  17047. },
  17048. {
  17049. name: "Macro",
  17050. height: math.unit(47.5, "meters"),
  17051. default: true
  17052. },
  17053. ]
  17054. ))
  17055. characterMakers.push(() => makeCharacter(
  17056. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17057. {
  17058. front: {
  17059. height: math.unit(180, "cm"),
  17060. weight: math.unit(70, "kg"),
  17061. name: "Front",
  17062. image: {
  17063. source: "./media/characters/algier/front.svg",
  17064. extra: 596 / 572,
  17065. bottom: 0.04
  17066. }
  17067. },
  17068. back: {
  17069. height: math.unit(180, "cm"),
  17070. weight: math.unit(70, "kg"),
  17071. name: "Back",
  17072. image: {
  17073. source: "./media/characters/algier/back.svg",
  17074. extra: 596 / 572,
  17075. bottom: 0.025
  17076. }
  17077. },
  17078. frontdressed: {
  17079. height: math.unit(180, "cm"),
  17080. weight: math.unit(150, "kg"),
  17081. name: "Front-dressed",
  17082. image: {
  17083. source: "./media/characters/algier/front-dressed.svg",
  17084. extra: 596 / 572,
  17085. bottom: 0.038
  17086. }
  17087. },
  17088. },
  17089. [
  17090. {
  17091. name: "Micro",
  17092. height: math.unit(5, "cm")
  17093. },
  17094. {
  17095. name: "Normal",
  17096. height: math.unit(180, "cm"),
  17097. default: true
  17098. },
  17099. {
  17100. name: "Macro",
  17101. height: math.unit(64, "m")
  17102. },
  17103. ]
  17104. ))
  17105. characterMakers.push(() => makeCharacter(
  17106. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17107. {
  17108. upright: {
  17109. height: math.unit(7, "feet"),
  17110. weight: math.unit(300, "lb"),
  17111. name: "Upright",
  17112. image: {
  17113. source: "./media/characters/pretzel/upright.svg",
  17114. extra: 534 / 522,
  17115. bottom: 0.065
  17116. }
  17117. },
  17118. sprawling: {
  17119. height: math.unit(3.75, "feet"),
  17120. weight: math.unit(300, "lb"),
  17121. name: "Sprawling",
  17122. image: {
  17123. source: "./media/characters/pretzel/sprawling.svg",
  17124. extra: 314 / 281,
  17125. bottom: 0.1
  17126. }
  17127. },
  17128. tongue: {
  17129. height: math.unit(2, "feet"),
  17130. name: "Tongue",
  17131. image: {
  17132. source: "./media/characters/pretzel/tongue.svg"
  17133. }
  17134. },
  17135. },
  17136. [
  17137. {
  17138. name: "Normal",
  17139. height: math.unit(7, "feet"),
  17140. default: true
  17141. },
  17142. {
  17143. name: "Oversized",
  17144. height: math.unit(15, "feet")
  17145. },
  17146. {
  17147. name: "Huge",
  17148. height: math.unit(30, "feet")
  17149. },
  17150. {
  17151. name: "Macro",
  17152. height: math.unit(250, "feet")
  17153. },
  17154. ]
  17155. ))
  17156. characterMakers.push(() => makeCharacter(
  17157. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17158. {
  17159. sideFront: {
  17160. height: math.unit(5 + 2 / 12, "feet"),
  17161. weight: math.unit(120, "lb"),
  17162. name: "Front Side",
  17163. image: {
  17164. source: "./media/characters/roxi/side-front.svg",
  17165. extra: 2924 / 2717,
  17166. bottom: 0.08
  17167. }
  17168. },
  17169. sideBack: {
  17170. height: math.unit(5 + 2 / 12, "feet"),
  17171. weight: math.unit(120, "lb"),
  17172. name: "Back Side",
  17173. image: {
  17174. source: "./media/characters/roxi/side-back.svg",
  17175. extra: 2904 / 2693,
  17176. bottom: 0.06
  17177. }
  17178. },
  17179. front: {
  17180. height: math.unit(5 + 2 / 12, "feet"),
  17181. weight: math.unit(120, "lb"),
  17182. name: "Front",
  17183. image: {
  17184. source: "./media/characters/roxi/front.svg",
  17185. extra: 2028 / 1907,
  17186. bottom: 0.01
  17187. }
  17188. },
  17189. frontAlt: {
  17190. height: math.unit(5 + 2 / 12, "feet"),
  17191. weight: math.unit(120, "lb"),
  17192. name: "Front (Alt)",
  17193. image: {
  17194. source: "./media/characters/roxi/front-alt.svg",
  17195. extra: 1828 / 1798,
  17196. bottom: 0.01
  17197. }
  17198. },
  17199. sitting: {
  17200. height: math.unit(2.8, "feet"),
  17201. weight: math.unit(120, "lb"),
  17202. name: "Sitting",
  17203. image: {
  17204. source: "./media/characters/roxi/sitting.svg",
  17205. extra: 2660 / 2462,
  17206. bottom: 0.1
  17207. }
  17208. },
  17209. },
  17210. [
  17211. {
  17212. name: "Normal",
  17213. height: math.unit(5 + 2 / 12, "feet"),
  17214. default: true
  17215. },
  17216. ]
  17217. ))
  17218. characterMakers.push(() => makeCharacter(
  17219. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17220. {
  17221. side: {
  17222. height: math.unit(55, "feet"),
  17223. weight: math.unit(153, "tons"),
  17224. name: "Side",
  17225. image: {
  17226. source: "./media/characters/shadow/side.svg",
  17227. extra: 701 / 628,
  17228. bottom: 0.02
  17229. }
  17230. },
  17231. flying: {
  17232. height: math.unit(145, "feet"),
  17233. weight: math.unit(153, "tons"),
  17234. name: "Flying",
  17235. image: {
  17236. source: "./media/characters/shadow/flying.svg"
  17237. }
  17238. },
  17239. },
  17240. [
  17241. {
  17242. name: "Normal",
  17243. height: math.unit(55, "feet"),
  17244. default: true
  17245. },
  17246. ]
  17247. ))
  17248. characterMakers.push(() => makeCharacter(
  17249. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17250. {
  17251. front: {
  17252. height: math.unit(6, "feet"),
  17253. weight: math.unit(200, "lb"),
  17254. name: "Front",
  17255. image: {
  17256. source: "./media/characters/marcie/front.svg",
  17257. extra: 960 / 876,
  17258. bottom: 58 / 1017.87
  17259. }
  17260. },
  17261. },
  17262. [
  17263. {
  17264. name: "Macro",
  17265. height: math.unit(1, "mile"),
  17266. default: true
  17267. },
  17268. ]
  17269. ))
  17270. characterMakers.push(() => makeCharacter(
  17271. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17272. {
  17273. front: {
  17274. height: math.unit(7, "feet"),
  17275. weight: math.unit(200, "lb"),
  17276. name: "Front",
  17277. image: {
  17278. source: "./media/characters/kachina/front.svg",
  17279. extra: 1290.68 / 1119,
  17280. bottom: 36.5 / 1327.18
  17281. }
  17282. },
  17283. },
  17284. [
  17285. {
  17286. name: "Normal",
  17287. height: math.unit(7, "feet"),
  17288. default: true
  17289. },
  17290. ]
  17291. ))
  17292. characterMakers.push(() => makeCharacter(
  17293. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17294. {
  17295. looking: {
  17296. height: math.unit(2, "meters"),
  17297. weight: math.unit(300, "kg"),
  17298. name: "Looking",
  17299. image: {
  17300. source: "./media/characters/kash/looking.svg",
  17301. extra: 474 / 344,
  17302. bottom: 0.03
  17303. }
  17304. },
  17305. side: {
  17306. height: math.unit(2, "meters"),
  17307. weight: math.unit(300, "kg"),
  17308. name: "Side",
  17309. image: {
  17310. source: "./media/characters/kash/side.svg",
  17311. extra: 302 / 251,
  17312. bottom: 0.03
  17313. }
  17314. },
  17315. front: {
  17316. height: math.unit(2, "meters"),
  17317. weight: math.unit(300, "kg"),
  17318. name: "Front",
  17319. image: {
  17320. source: "./media/characters/kash/front.svg",
  17321. extra: 495 / 360,
  17322. bottom: 0.015
  17323. }
  17324. },
  17325. },
  17326. [
  17327. {
  17328. name: "Normal",
  17329. height: math.unit(2, "meters"),
  17330. default: true
  17331. },
  17332. {
  17333. name: "Big",
  17334. height: math.unit(3, "meters")
  17335. },
  17336. {
  17337. name: "Large",
  17338. height: math.unit(5, "meters")
  17339. },
  17340. ]
  17341. ))
  17342. characterMakers.push(() => makeCharacter(
  17343. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17344. {
  17345. feeding: {
  17346. height: math.unit(6.7, "feet"),
  17347. weight: math.unit(350, "lb"),
  17348. name: "Feeding",
  17349. image: {
  17350. source: "./media/characters/lalim/feeding.svg",
  17351. }
  17352. },
  17353. },
  17354. [
  17355. {
  17356. name: "Normal",
  17357. height: math.unit(6.7, "feet"),
  17358. default: true
  17359. },
  17360. ]
  17361. ))
  17362. characterMakers.push(() => makeCharacter(
  17363. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17364. {
  17365. front: {
  17366. height: math.unit(9.5, "feet"),
  17367. weight: math.unit(600, "lb"),
  17368. name: "Front",
  17369. image: {
  17370. source: "./media/characters/de'vout/front.svg",
  17371. extra: 1443 / 1328,
  17372. bottom: 0.025
  17373. }
  17374. },
  17375. back: {
  17376. height: math.unit(9.5, "feet"),
  17377. weight: math.unit(600, "lb"),
  17378. name: "Back",
  17379. image: {
  17380. source: "./media/characters/de'vout/back.svg",
  17381. extra: 1443 / 1328
  17382. }
  17383. },
  17384. frontDressed: {
  17385. height: math.unit(9.5, "feet"),
  17386. weight: math.unit(600, "lb"),
  17387. name: "Front (Dressed",
  17388. image: {
  17389. source: "./media/characters/de'vout/front-dressed.svg",
  17390. extra: 1443 / 1328,
  17391. bottom: 0.025
  17392. }
  17393. },
  17394. backDressed: {
  17395. height: math.unit(9.5, "feet"),
  17396. weight: math.unit(600, "lb"),
  17397. name: "Back (Dressed",
  17398. image: {
  17399. source: "./media/characters/de'vout/back-dressed.svg",
  17400. extra: 1443 / 1328
  17401. }
  17402. },
  17403. },
  17404. [
  17405. {
  17406. name: "Normal",
  17407. height: math.unit(9.5, "feet"),
  17408. default: true
  17409. },
  17410. ]
  17411. ))
  17412. characterMakers.push(() => makeCharacter(
  17413. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17414. {
  17415. front: {
  17416. height: math.unit(8, "feet"),
  17417. weight: math.unit(225, "lb"),
  17418. name: "Front",
  17419. image: {
  17420. source: "./media/characters/talana/front.svg",
  17421. extra: 1410 / 1300,
  17422. bottom: 0.015
  17423. }
  17424. },
  17425. frontDressed: {
  17426. height: math.unit(8, "feet"),
  17427. weight: math.unit(225, "lb"),
  17428. name: "Front (Dressed",
  17429. image: {
  17430. source: "./media/characters/talana/front-dressed.svg",
  17431. extra: 1410 / 1300,
  17432. bottom: 0.015
  17433. }
  17434. },
  17435. },
  17436. [
  17437. {
  17438. name: "Normal",
  17439. height: math.unit(8, "feet"),
  17440. default: true
  17441. },
  17442. ]
  17443. ))
  17444. characterMakers.push(() => makeCharacter(
  17445. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17446. {
  17447. side: {
  17448. height: math.unit(7.2, "feet"),
  17449. weight: math.unit(150, "lb"),
  17450. name: "Side",
  17451. image: {
  17452. source: "./media/characters/xeauvok/side.svg",
  17453. extra: 1975 / 1523,
  17454. bottom: 0.07
  17455. }
  17456. },
  17457. },
  17458. [
  17459. {
  17460. name: "Normal",
  17461. height: math.unit(7.2, "feet"),
  17462. default: true
  17463. },
  17464. ]
  17465. ))
  17466. characterMakers.push(() => makeCharacter(
  17467. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17468. {
  17469. side: {
  17470. height: math.unit(10, "feet"),
  17471. weight: math.unit(900, "kg"),
  17472. name: "Side",
  17473. image: {
  17474. source: "./media/characters/zara/side.svg",
  17475. extra: 504 / 498
  17476. }
  17477. },
  17478. },
  17479. [
  17480. {
  17481. name: "Normal",
  17482. height: math.unit(10, "feet"),
  17483. default: true
  17484. },
  17485. ]
  17486. ))
  17487. characterMakers.push(() => makeCharacter(
  17488. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17489. {
  17490. side: {
  17491. height: math.unit(6, "feet"),
  17492. weight: math.unit(150, "lb"),
  17493. name: "Side",
  17494. image: {
  17495. source: "./media/characters/richard-dragon/side.svg",
  17496. extra: 845 / 340,
  17497. bottom: 0.017
  17498. }
  17499. },
  17500. maw: {
  17501. height: math.unit(2.97, "feet"),
  17502. name: "Maw",
  17503. image: {
  17504. source: "./media/characters/richard-dragon/maw.svg"
  17505. }
  17506. },
  17507. },
  17508. [
  17509. ]
  17510. ))
  17511. characterMakers.push(() => makeCharacter(
  17512. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17513. {
  17514. front: {
  17515. height: math.unit(4, "feet"),
  17516. weight: math.unit(100, "lb"),
  17517. name: "Front",
  17518. image: {
  17519. source: "./media/characters/richard-smeargle/front.svg",
  17520. extra: 2952 / 2820,
  17521. bottom: 0.028
  17522. }
  17523. },
  17524. },
  17525. [
  17526. {
  17527. name: "Normal",
  17528. height: math.unit(4, "feet"),
  17529. default: true
  17530. },
  17531. {
  17532. name: "Dynamax",
  17533. height: math.unit(20, "meters")
  17534. },
  17535. ]
  17536. ))
  17537. characterMakers.push(() => makeCharacter(
  17538. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17539. {
  17540. front: {
  17541. height: math.unit(6, "feet"),
  17542. weight: math.unit(110, "lb"),
  17543. name: "Front",
  17544. image: {
  17545. source: "./media/characters/klay/front.svg",
  17546. extra: 962 / 883,
  17547. bottom: 0.04
  17548. }
  17549. },
  17550. back: {
  17551. height: math.unit(6, "feet"),
  17552. weight: math.unit(110, "lb"),
  17553. name: "Back",
  17554. image: {
  17555. source: "./media/characters/klay/back.svg",
  17556. extra: 962 / 883
  17557. }
  17558. },
  17559. beans: {
  17560. height: math.unit(1.15, "feet"),
  17561. name: "Beans",
  17562. image: {
  17563. source: "./media/characters/klay/beans.svg"
  17564. }
  17565. },
  17566. },
  17567. [
  17568. {
  17569. name: "Micro",
  17570. height: math.unit(6, "inches")
  17571. },
  17572. {
  17573. name: "Mini",
  17574. height: math.unit(3, "feet")
  17575. },
  17576. {
  17577. name: "Normal",
  17578. height: math.unit(6, "feet"),
  17579. default: true
  17580. },
  17581. {
  17582. name: "Big",
  17583. height: math.unit(25, "feet")
  17584. },
  17585. {
  17586. name: "Macro",
  17587. height: math.unit(100, "feet")
  17588. },
  17589. {
  17590. name: "Megamacro",
  17591. height: math.unit(400, "feet")
  17592. },
  17593. ]
  17594. ))
  17595. characterMakers.push(() => makeCharacter(
  17596. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17597. {
  17598. front: {
  17599. height: math.unit(6, "feet"),
  17600. weight: math.unit(160, "lb"),
  17601. name: "Front",
  17602. image: {
  17603. source: "./media/characters/marcus/front.svg",
  17604. extra: 734 / 676,
  17605. bottom: 0.03
  17606. }
  17607. },
  17608. },
  17609. [
  17610. {
  17611. name: "Little",
  17612. height: math.unit(6, "feet")
  17613. },
  17614. {
  17615. name: "Normal",
  17616. height: math.unit(110, "feet"),
  17617. default: true
  17618. },
  17619. {
  17620. name: "Macro",
  17621. height: math.unit(250, "feet")
  17622. },
  17623. {
  17624. name: "Megamacro",
  17625. height: math.unit(1000, "feet")
  17626. },
  17627. ]
  17628. ))
  17629. characterMakers.push(() => makeCharacter(
  17630. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17631. {
  17632. front: {
  17633. height: math.unit(7, "feet"),
  17634. weight: math.unit(275, "lb"),
  17635. name: "Front",
  17636. image: {
  17637. source: "./media/characters/claude-delroute/front.svg",
  17638. extra: 230 / 214,
  17639. bottom: 0.007
  17640. }
  17641. },
  17642. side: {
  17643. height: math.unit(7, "feet"),
  17644. weight: math.unit(275, "lb"),
  17645. name: "Side",
  17646. image: {
  17647. source: "./media/characters/claude-delroute/side.svg",
  17648. extra: 222 / 214,
  17649. bottom: 0.01
  17650. }
  17651. },
  17652. back: {
  17653. height: math.unit(7, "feet"),
  17654. weight: math.unit(275, "lb"),
  17655. name: "Back",
  17656. image: {
  17657. source: "./media/characters/claude-delroute/back.svg",
  17658. extra: 230 / 214,
  17659. bottom: 0.015
  17660. }
  17661. },
  17662. maw: {
  17663. height: math.unit(0.6407, "meters"),
  17664. name: "Maw",
  17665. image: {
  17666. source: "./media/characters/claude-delroute/maw.svg"
  17667. }
  17668. },
  17669. },
  17670. [
  17671. {
  17672. name: "Normal",
  17673. height: math.unit(7, "feet"),
  17674. default: true
  17675. },
  17676. {
  17677. name: "Lorge",
  17678. height: math.unit(20, "feet")
  17679. },
  17680. ]
  17681. ))
  17682. characterMakers.push(() => makeCharacter(
  17683. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17684. {
  17685. front: {
  17686. height: math.unit(8 + 4 / 12, "feet"),
  17687. weight: math.unit(600, "lb"),
  17688. name: "Front",
  17689. image: {
  17690. source: "./media/characters/dragonien/front.svg",
  17691. extra: 100 / 94,
  17692. bottom: 3.3 / 103.3445
  17693. }
  17694. },
  17695. back: {
  17696. height: math.unit(8 + 4 / 12, "feet"),
  17697. weight: math.unit(600, "lb"),
  17698. name: "Back",
  17699. image: {
  17700. source: "./media/characters/dragonien/back.svg",
  17701. extra: 776 / 746,
  17702. bottom: 6.4 / 782.0616
  17703. }
  17704. },
  17705. foot: {
  17706. height: math.unit(1.54, "feet"),
  17707. name: "Foot",
  17708. image: {
  17709. source: "./media/characters/dragonien/foot.svg",
  17710. }
  17711. },
  17712. },
  17713. [
  17714. {
  17715. name: "Normal",
  17716. height: math.unit(8 + 4 / 12, "feet"),
  17717. default: true
  17718. },
  17719. {
  17720. name: "Macro",
  17721. height: math.unit(200, "feet")
  17722. },
  17723. {
  17724. name: "Megamacro",
  17725. height: math.unit(1, "mile")
  17726. },
  17727. {
  17728. name: "Gigamacro",
  17729. height: math.unit(1000, "miles")
  17730. },
  17731. ]
  17732. ))
  17733. characterMakers.push(() => makeCharacter(
  17734. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17735. {
  17736. front: {
  17737. height: math.unit(5 + 2 / 12, "feet"),
  17738. weight: math.unit(110, "lb"),
  17739. name: "Front",
  17740. image: {
  17741. source: "./media/characters/desta/front.svg",
  17742. extra: 767 / 726,
  17743. bottom: 11.7 / 779
  17744. }
  17745. },
  17746. back: {
  17747. height: math.unit(5 + 2 / 12, "feet"),
  17748. weight: math.unit(110, "lb"),
  17749. name: "Back",
  17750. image: {
  17751. source: "./media/characters/desta/back.svg",
  17752. extra: 777 / 728,
  17753. bottom: 6 / 784
  17754. }
  17755. },
  17756. frontAlt: {
  17757. height: math.unit(5 + 2 / 12, "feet"),
  17758. weight: math.unit(110, "lb"),
  17759. name: "Front",
  17760. image: {
  17761. source: "./media/characters/desta/front-alt.svg",
  17762. extra: 1482 / 1417
  17763. }
  17764. },
  17765. side: {
  17766. height: math.unit(5 + 2 / 12, "feet"),
  17767. weight: math.unit(110, "lb"),
  17768. name: "Side",
  17769. image: {
  17770. source: "./media/characters/desta/side.svg",
  17771. extra: 2579 / 2491,
  17772. bottom: 0.053
  17773. }
  17774. },
  17775. },
  17776. [
  17777. {
  17778. name: "Micro",
  17779. height: math.unit(6, "inches")
  17780. },
  17781. {
  17782. name: "Normal",
  17783. height: math.unit(5 + 2 / 12, "feet"),
  17784. default: true
  17785. },
  17786. {
  17787. name: "Macro",
  17788. height: math.unit(62, "feet")
  17789. },
  17790. {
  17791. name: "Megamacro",
  17792. height: math.unit(1800, "feet")
  17793. },
  17794. ]
  17795. ))
  17796. characterMakers.push(() => makeCharacter(
  17797. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17798. {
  17799. front: {
  17800. height: math.unit(10, "feet"),
  17801. weight: math.unit(700, "lb"),
  17802. name: "Front",
  17803. image: {
  17804. source: "./media/characters/storm-alystar/front.svg",
  17805. extra: 2112 / 1898,
  17806. bottom: 0.034
  17807. }
  17808. },
  17809. },
  17810. [
  17811. {
  17812. name: "Micro",
  17813. height: math.unit(3.5, "inches")
  17814. },
  17815. {
  17816. name: "Normal",
  17817. height: math.unit(10, "feet"),
  17818. default: true
  17819. },
  17820. {
  17821. name: "Macro",
  17822. height: math.unit(400, "feet")
  17823. },
  17824. {
  17825. name: "Deific",
  17826. height: math.unit(60, "miles")
  17827. },
  17828. ]
  17829. ))
  17830. characterMakers.push(() => makeCharacter(
  17831. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17832. {
  17833. front: {
  17834. height: math.unit(2.35, "meters"),
  17835. weight: math.unit(119, "kg"),
  17836. name: "Front",
  17837. image: {
  17838. source: "./media/characters/ilia/front.svg",
  17839. extra: 1285 / 1255,
  17840. bottom: 0.06
  17841. }
  17842. },
  17843. },
  17844. [
  17845. {
  17846. name: "Normal",
  17847. height: math.unit(2.35, "meters")
  17848. },
  17849. {
  17850. name: "Macro",
  17851. height: math.unit(140, "meters"),
  17852. default: true
  17853. },
  17854. {
  17855. name: "Megamacro",
  17856. height: math.unit(100, "miles")
  17857. },
  17858. ]
  17859. ))
  17860. characterMakers.push(() => makeCharacter(
  17861. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17862. {
  17863. front: {
  17864. height: math.unit(6 + 5 / 12, "feet"),
  17865. weight: math.unit(190, "lb"),
  17866. name: "Front",
  17867. image: {
  17868. source: "./media/characters/kingdead/front.svg",
  17869. extra: 1228 / 1177
  17870. }
  17871. },
  17872. },
  17873. [
  17874. {
  17875. name: "Micro",
  17876. height: math.unit(7, "inches")
  17877. },
  17878. {
  17879. name: "Normal",
  17880. height: math.unit(6 + 5 / 12, "feet")
  17881. },
  17882. {
  17883. name: "Macro",
  17884. height: math.unit(150, "feet"),
  17885. default: true
  17886. },
  17887. {
  17888. name: "Megamacro",
  17889. height: math.unit(200, "miles")
  17890. },
  17891. ]
  17892. ))
  17893. characterMakers.push(() => makeCharacter(
  17894. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17895. {
  17896. front: {
  17897. height: math.unit(8, "feet"),
  17898. weight: math.unit(600, "lb"),
  17899. name: "Front",
  17900. image: {
  17901. source: "./media/characters/kyrehx/front.svg",
  17902. extra: 1195 / 1095,
  17903. bottom: 0.034
  17904. }
  17905. },
  17906. },
  17907. [
  17908. {
  17909. name: "Micro",
  17910. height: math.unit(2, "inches")
  17911. },
  17912. {
  17913. name: "Normal",
  17914. height: math.unit(8, "feet"),
  17915. default: true
  17916. },
  17917. {
  17918. name: "Macro",
  17919. height: math.unit(255, "feet")
  17920. },
  17921. ]
  17922. ))
  17923. characterMakers.push(() => makeCharacter(
  17924. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17925. {
  17926. front: {
  17927. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17928. weight: math.unit(184, "lb"),
  17929. name: "Front",
  17930. image: {
  17931. source: "./media/characters/xang/front.svg",
  17932. extra: 845 / 755
  17933. }
  17934. },
  17935. },
  17936. [
  17937. {
  17938. name: "Normal",
  17939. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17940. default: true
  17941. },
  17942. {
  17943. name: "Macro",
  17944. height: math.unit(0.935 * 146, "feet")
  17945. },
  17946. {
  17947. name: "Megamacro",
  17948. height: math.unit(0.935 * 3, "miles")
  17949. },
  17950. ]
  17951. ))
  17952. characterMakers.push(() => makeCharacter(
  17953. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17954. {
  17955. frontDressed: {
  17956. height: math.unit(5 + 7 / 12, "feet"),
  17957. weight: math.unit(140, "lb"),
  17958. name: "Front (Dressed)",
  17959. image: {
  17960. source: "./media/characters/doc-weardno/front-dressed.svg",
  17961. extra: 263 / 234
  17962. }
  17963. },
  17964. backDressed: {
  17965. height: math.unit(5 + 7 / 12, "feet"),
  17966. weight: math.unit(140, "lb"),
  17967. name: "Back (Dressed)",
  17968. image: {
  17969. source: "./media/characters/doc-weardno/back-dressed.svg",
  17970. extra: 266 / 238
  17971. }
  17972. },
  17973. front: {
  17974. height: math.unit(5 + 7 / 12, "feet"),
  17975. weight: math.unit(140, "lb"),
  17976. name: "Front",
  17977. image: {
  17978. source: "./media/characters/doc-weardno/front.svg",
  17979. extra: 254 / 233
  17980. }
  17981. },
  17982. },
  17983. [
  17984. {
  17985. name: "Micro",
  17986. height: math.unit(3, "inches")
  17987. },
  17988. {
  17989. name: "Normal",
  17990. height: math.unit(5 + 7 / 12, "feet"),
  17991. default: true
  17992. },
  17993. {
  17994. name: "Macro",
  17995. height: math.unit(25, "feet")
  17996. },
  17997. {
  17998. name: "Megamacro",
  17999. height: math.unit(2, "miles")
  18000. },
  18001. ]
  18002. ))
  18003. characterMakers.push(() => makeCharacter(
  18004. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18005. {
  18006. front: {
  18007. height: math.unit(6 + 2 / 12, "feet"),
  18008. weight: math.unit(153, "lb"),
  18009. name: "Front",
  18010. image: {
  18011. source: "./media/characters/seth-whilst/front.svg",
  18012. bottom: 0.07
  18013. }
  18014. },
  18015. },
  18016. [
  18017. {
  18018. name: "Micro",
  18019. height: math.unit(5, "inches")
  18020. },
  18021. {
  18022. name: "Normal",
  18023. height: math.unit(6 + 2 / 12, "feet"),
  18024. default: true
  18025. },
  18026. ]
  18027. ))
  18028. characterMakers.push(() => makeCharacter(
  18029. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18030. {
  18031. front: {
  18032. height: math.unit(3, "inches"),
  18033. weight: math.unit(8, "grams"),
  18034. name: "Front",
  18035. image: {
  18036. source: "./media/characters/pocket-jabari/front.svg",
  18037. extra: 1024 / 974,
  18038. bottom: 0.039
  18039. }
  18040. },
  18041. },
  18042. [
  18043. {
  18044. name: "Minimicro",
  18045. height: math.unit(8, "mm")
  18046. },
  18047. {
  18048. name: "Micro",
  18049. height: math.unit(3, "inches"),
  18050. default: true
  18051. },
  18052. {
  18053. name: "Normal",
  18054. height: math.unit(3, "feet")
  18055. },
  18056. ]
  18057. ))
  18058. characterMakers.push(() => makeCharacter(
  18059. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18060. {
  18061. front: {
  18062. height: math.unit(15, "feet"),
  18063. weight: math.unit(3280, "lb"),
  18064. name: "Front",
  18065. image: {
  18066. source: "./media/characters/sapphy/front.svg",
  18067. extra: 671 / 577,
  18068. bottom: 0.085
  18069. }
  18070. },
  18071. back: {
  18072. height: math.unit(15, "feet"),
  18073. weight: math.unit(3280, "lb"),
  18074. name: "Back",
  18075. image: {
  18076. source: "./media/characters/sapphy/back.svg",
  18077. extra: 631 / 607,
  18078. bottom: 0.045
  18079. }
  18080. },
  18081. },
  18082. [
  18083. {
  18084. name: "Normal",
  18085. height: math.unit(15, "feet")
  18086. },
  18087. {
  18088. name: "Casual Macro",
  18089. height: math.unit(120, "feet")
  18090. },
  18091. {
  18092. name: "Macro",
  18093. height: math.unit(2150, "feet"),
  18094. default: true
  18095. },
  18096. {
  18097. name: "Megamacro",
  18098. height: math.unit(8, "miles")
  18099. },
  18100. {
  18101. name: "Galaxy Mom",
  18102. height: math.unit(6, "megalightyears")
  18103. },
  18104. ]
  18105. ))
  18106. characterMakers.push(() => makeCharacter(
  18107. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  18108. {
  18109. front: {
  18110. height: math.unit(6, "feet"),
  18111. weight: math.unit(170, "lb"),
  18112. name: "Front",
  18113. image: {
  18114. source: "./media/characters/kiro/front.svg",
  18115. extra: 1064 / 1012,
  18116. bottom: 0.052
  18117. }
  18118. },
  18119. },
  18120. [
  18121. {
  18122. name: "Micro",
  18123. height: math.unit(6, "inches")
  18124. },
  18125. {
  18126. name: "Normal",
  18127. height: math.unit(6, "feet"),
  18128. default: true
  18129. },
  18130. {
  18131. name: "Macro",
  18132. height: math.unit(72, "feet")
  18133. },
  18134. ]
  18135. ))
  18136. characterMakers.push(() => makeCharacter(
  18137. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18138. {
  18139. front: {
  18140. height: math.unit(5 + 9 / 12, "feet"),
  18141. weight: math.unit(175, "lb"),
  18142. name: "Front",
  18143. image: {
  18144. source: "./media/characters/irishfox/front.svg",
  18145. extra: 1912 / 1680,
  18146. bottom: 0.02
  18147. }
  18148. },
  18149. },
  18150. [
  18151. {
  18152. name: "Nano",
  18153. height: math.unit(1, "mm")
  18154. },
  18155. {
  18156. name: "Micro",
  18157. height: math.unit(2, "inches")
  18158. },
  18159. {
  18160. name: "Normal",
  18161. height: math.unit(5 + 9 / 12, "feet"),
  18162. default: true
  18163. },
  18164. {
  18165. name: "Macro",
  18166. height: math.unit(45, "feet")
  18167. },
  18168. ]
  18169. ))
  18170. characterMakers.push(() => makeCharacter(
  18171. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18172. {
  18173. front: {
  18174. height: math.unit(6 + 1 / 12, "feet"),
  18175. weight: math.unit(150, "lb"),
  18176. name: "Front",
  18177. image: {
  18178. source: "./media/characters/aronai-sieyes/front.svg",
  18179. extra: 1556 / 1480,
  18180. bottom: 0.015
  18181. }
  18182. },
  18183. side: {
  18184. height: math.unit(6 + 1 / 12, "feet"),
  18185. weight: math.unit(150, "lb"),
  18186. name: "Side",
  18187. image: {
  18188. source: "./media/characters/aronai-sieyes/side.svg",
  18189. extra: 1433 / 1390,
  18190. bottom: 0.0393
  18191. }
  18192. },
  18193. back: {
  18194. height: math.unit(6 + 1 / 12, "feet"),
  18195. weight: math.unit(150, "lb"),
  18196. name: "Back",
  18197. image: {
  18198. source: "./media/characters/aronai-sieyes/back.svg",
  18199. extra: 1544 / 1494,
  18200. bottom: 0.02
  18201. }
  18202. },
  18203. frontClothed: {
  18204. height: math.unit(6 + 1 / 12, "feet"),
  18205. weight: math.unit(150, "lb"),
  18206. name: "Front (Clothed)",
  18207. image: {
  18208. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18209. extra: 1582 / 1527
  18210. }
  18211. },
  18212. feral: {
  18213. height: math.unit(18, "feet"),
  18214. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  18215. name: "Feral",
  18216. image: {
  18217. source: "./media/characters/aronai-sieyes/feral.svg",
  18218. extra: 1530 / 1240,
  18219. bottom: 0.035
  18220. }
  18221. },
  18222. },
  18223. [
  18224. {
  18225. name: "Micro",
  18226. height: math.unit(2, "inches")
  18227. },
  18228. {
  18229. name: "Normal",
  18230. height: math.unit(6 + 1 / 12, "feet"),
  18231. default: true
  18232. }
  18233. ]
  18234. ))
  18235. characterMakers.push(() => makeCharacter(
  18236. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18237. {
  18238. front: {
  18239. height: math.unit(12, "feet"),
  18240. weight: math.unit(410, "kg"),
  18241. name: "Front",
  18242. image: {
  18243. source: "./media/characters/xuna/front.svg",
  18244. extra: 2184 / 1980
  18245. }
  18246. },
  18247. side: {
  18248. height: math.unit(12, "feet"),
  18249. weight: math.unit(410, "kg"),
  18250. name: "Side",
  18251. image: {
  18252. source: "./media/characters/xuna/side.svg",
  18253. extra: 2184 / 1980
  18254. }
  18255. },
  18256. back: {
  18257. height: math.unit(12, "feet"),
  18258. weight: math.unit(410, "kg"),
  18259. name: "Back",
  18260. image: {
  18261. source: "./media/characters/xuna/back.svg",
  18262. extra: 2184 / 1980
  18263. }
  18264. },
  18265. },
  18266. [
  18267. {
  18268. name: "Nano glow",
  18269. height: math.unit(10, "nm")
  18270. },
  18271. {
  18272. name: "Micro floof",
  18273. height: math.unit(0.3, "m")
  18274. },
  18275. {
  18276. name: "Huggable softy boi",
  18277. height: math.unit(3.6576, "m"),
  18278. default: true
  18279. },
  18280. {
  18281. name: "Admirable floof",
  18282. height: math.unit(80, "meters")
  18283. },
  18284. {
  18285. name: "Gentle macro",
  18286. height: math.unit(300, "meters")
  18287. },
  18288. {
  18289. name: "Very careful floof",
  18290. height: math.unit(3200, "meters")
  18291. },
  18292. {
  18293. name: "The mega floof",
  18294. height: math.unit(36000, "meters")
  18295. },
  18296. {
  18297. name: "Giga-fur-Wicker",
  18298. height: math.unit(4800000, "meters")
  18299. },
  18300. {
  18301. name: "Licky world",
  18302. height: math.unit(20000000, "meters")
  18303. },
  18304. {
  18305. name: "Floofy cyan sun",
  18306. height: math.unit(1500000000, "meters")
  18307. },
  18308. {
  18309. name: "Milky Wicker",
  18310. height: math.unit(1000000000000000000000, "meters")
  18311. },
  18312. {
  18313. name: "The observing Wicker",
  18314. height: math.unit(999999999999999999999999999, "meters")
  18315. },
  18316. ]
  18317. ))
  18318. characterMakers.push(() => makeCharacter(
  18319. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18320. {
  18321. front: {
  18322. height: math.unit(5 + 9 / 12, "feet"),
  18323. weight: math.unit(150, "lb"),
  18324. name: "Front",
  18325. image: {
  18326. source: "./media/characters/arokha-sieyes/front.svg",
  18327. extra: 1425 / 1284,
  18328. bottom: 0.05
  18329. }
  18330. },
  18331. },
  18332. [
  18333. {
  18334. name: "Normal",
  18335. height: math.unit(5 + 9 / 12, "feet")
  18336. },
  18337. {
  18338. name: "Macro",
  18339. height: math.unit(30, "meters"),
  18340. default: true
  18341. },
  18342. ]
  18343. ))
  18344. characterMakers.push(() => makeCharacter(
  18345. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18346. {
  18347. front: {
  18348. height: math.unit(6, "feet"),
  18349. weight: math.unit(180, "lb"),
  18350. name: "Front",
  18351. image: {
  18352. source: "./media/characters/arokh-sieyes/front.svg",
  18353. extra: 1830 / 1769,
  18354. bottom: 0.01
  18355. }
  18356. },
  18357. },
  18358. [
  18359. {
  18360. name: "Normal",
  18361. height: math.unit(6, "feet")
  18362. },
  18363. {
  18364. name: "Macro",
  18365. height: math.unit(30, "meters"),
  18366. default: true
  18367. },
  18368. ]
  18369. ))
  18370. characterMakers.push(() => makeCharacter(
  18371. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18372. {
  18373. side: {
  18374. height: math.unit(13 + 1 / 12, "feet"),
  18375. weight: math.unit(8.5, "tonnes"),
  18376. name: "Side",
  18377. image: {
  18378. source: "./media/characters/goldeneye/side.svg",
  18379. extra: 1182 / 778,
  18380. bottom: 0.067
  18381. }
  18382. },
  18383. paw: {
  18384. height: math.unit(3.4, "feet"),
  18385. name: "Paw",
  18386. image: {
  18387. source: "./media/characters/goldeneye/paw.svg"
  18388. }
  18389. },
  18390. },
  18391. [
  18392. {
  18393. name: "Normal",
  18394. height: math.unit(13 + 1 / 12, "feet"),
  18395. default: true
  18396. },
  18397. ]
  18398. ))
  18399. characterMakers.push(() => makeCharacter(
  18400. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18401. {
  18402. front: {
  18403. height: math.unit(6 + 1 / 12, "feet"),
  18404. weight: math.unit(210, "lb"),
  18405. name: "Front",
  18406. image: {
  18407. source: "./media/characters/leonardo-lycheborne/front.svg",
  18408. extra: 390 / 365,
  18409. bottom: 0.032
  18410. }
  18411. },
  18412. side: {
  18413. height: math.unit(6 + 1 / 12, "feet"),
  18414. weight: math.unit(210, "lb"),
  18415. name: "Side",
  18416. image: {
  18417. source: "./media/characters/leonardo-lycheborne/side.svg",
  18418. extra: 390 / 365,
  18419. bottom: 0.005
  18420. }
  18421. },
  18422. back: {
  18423. height: math.unit(6 + 1 / 12, "feet"),
  18424. weight: math.unit(210, "lb"),
  18425. name: "Back",
  18426. image: {
  18427. source: "./media/characters/leonardo-lycheborne/back.svg",
  18428. extra: 392 / 366,
  18429. bottom: 0.01
  18430. }
  18431. },
  18432. hand: {
  18433. height: math.unit(1.08, "feet"),
  18434. name: "Hand",
  18435. image: {
  18436. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18437. }
  18438. },
  18439. foot: {
  18440. height: math.unit(1.32, "feet"),
  18441. name: "Foot",
  18442. image: {
  18443. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18444. }
  18445. },
  18446. were: {
  18447. height: math.unit(20, "feet"),
  18448. weight: math.unit(7800, "lb"),
  18449. name: "Were",
  18450. image: {
  18451. source: "./media/characters/leonardo-lycheborne/were.svg",
  18452. extra: 308 / 294,
  18453. bottom: 0.048
  18454. }
  18455. },
  18456. feral: {
  18457. height: math.unit(7.5, "feet"),
  18458. weight: math.unit(600, "lb"),
  18459. name: "Feral",
  18460. image: {
  18461. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18462. extra: 210 / 186,
  18463. bottom: 0.108
  18464. }
  18465. },
  18466. taur: {
  18467. height: math.unit(11, "feet"),
  18468. weight: math.unit(3300, "lb"),
  18469. name: "Taur",
  18470. image: {
  18471. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18472. extra: 320 / 303,
  18473. bottom: 0.025
  18474. }
  18475. },
  18476. barghest: {
  18477. height: math.unit(11, "feet"),
  18478. weight: math.unit(1300, "lb"),
  18479. name: "Barghest",
  18480. image: {
  18481. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18482. extra: 323 / 302,
  18483. bottom: 0.027
  18484. }
  18485. },
  18486. dick: {
  18487. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18488. name: "Dick",
  18489. image: {
  18490. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18491. }
  18492. },
  18493. dickWere: {
  18494. height: math.unit((20) / 3.8, "feet"),
  18495. name: "Dick (Were)",
  18496. image: {
  18497. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18498. }
  18499. },
  18500. },
  18501. [
  18502. {
  18503. name: "Normal",
  18504. height: math.unit(6 + 1 / 12, "feet"),
  18505. default: true
  18506. },
  18507. ]
  18508. ))
  18509. characterMakers.push(() => makeCharacter(
  18510. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18511. {
  18512. front: {
  18513. height: math.unit(10, "feet"),
  18514. weight: math.unit(350, "lb"),
  18515. name: "Front",
  18516. image: {
  18517. source: "./media/characters/jet/front.svg",
  18518. extra: 2050 / 1980,
  18519. bottom: 0.013
  18520. }
  18521. },
  18522. back: {
  18523. height: math.unit(10, "feet"),
  18524. weight: math.unit(350, "lb"),
  18525. name: "Back",
  18526. image: {
  18527. source: "./media/characters/jet/back.svg",
  18528. extra: 2050 / 1980,
  18529. bottom: 0.013
  18530. }
  18531. },
  18532. },
  18533. [
  18534. {
  18535. name: "Micro",
  18536. height: math.unit(6, "inches")
  18537. },
  18538. {
  18539. name: "Normal",
  18540. height: math.unit(10, "feet"),
  18541. default: true
  18542. },
  18543. {
  18544. name: "Macro",
  18545. height: math.unit(100, "feet")
  18546. },
  18547. ]
  18548. ))
  18549. characterMakers.push(() => makeCharacter(
  18550. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18551. {
  18552. front: {
  18553. height: math.unit(15, "feet"),
  18554. weight: math.unit(2800, "lb"),
  18555. name: "Front",
  18556. image: {
  18557. source: "./media/characters/tanarath/front.svg",
  18558. extra: 2392 / 2220,
  18559. bottom: 0.03
  18560. }
  18561. },
  18562. back: {
  18563. height: math.unit(15, "feet"),
  18564. weight: math.unit(2800, "lb"),
  18565. name: "Back",
  18566. image: {
  18567. source: "./media/characters/tanarath/back.svg",
  18568. extra: 2392 / 2220,
  18569. bottom: 0.03
  18570. }
  18571. },
  18572. },
  18573. [
  18574. {
  18575. name: "Normal",
  18576. height: math.unit(15, "feet"),
  18577. default: true
  18578. },
  18579. ]
  18580. ))
  18581. characterMakers.push(() => makeCharacter(
  18582. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18583. {
  18584. front: {
  18585. height: math.unit(7 + 1 / 12, "feet"),
  18586. weight: math.unit(175, "lb"),
  18587. name: "Front",
  18588. image: {
  18589. source: "./media/characters/patty-cattybatty/front.svg",
  18590. extra: 908 / 874,
  18591. bottom: 0.025
  18592. }
  18593. },
  18594. },
  18595. [
  18596. {
  18597. name: "Micro",
  18598. height: math.unit(1, "inch")
  18599. },
  18600. {
  18601. name: "Normal",
  18602. height: math.unit(7 + 1 / 12, "feet")
  18603. },
  18604. {
  18605. name: "Mini Macro",
  18606. height: math.unit(155, "feet")
  18607. },
  18608. {
  18609. name: "Macro",
  18610. height: math.unit(1077, "feet")
  18611. },
  18612. {
  18613. name: "Mega Macro",
  18614. height: math.unit(47650, "feet"),
  18615. default: true
  18616. },
  18617. {
  18618. name: "Giga Macro",
  18619. height: math.unit(440, "miles")
  18620. },
  18621. {
  18622. name: "Tera Macro",
  18623. height: math.unit(8700, "miles")
  18624. },
  18625. {
  18626. name: "Planetary Macro",
  18627. height: math.unit(32700, "miles")
  18628. },
  18629. {
  18630. name: "Solar Macro",
  18631. height: math.unit(550000, "miles")
  18632. },
  18633. {
  18634. name: "Celestial Macro",
  18635. height: math.unit(2.5, "AU")
  18636. },
  18637. ]
  18638. ))
  18639. characterMakers.push(() => makeCharacter(
  18640. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18641. {
  18642. front: {
  18643. height: math.unit(4 + 5 / 12, "feet"),
  18644. weight: math.unit(90, "lb"),
  18645. name: "Front",
  18646. image: {
  18647. source: "./media/characters/cappu/front.svg",
  18648. extra: 1247 / 1152,
  18649. bottom: 0.012
  18650. }
  18651. },
  18652. },
  18653. [
  18654. {
  18655. name: "Normal",
  18656. height: math.unit(4 + 5 / 12, "feet"),
  18657. default: true
  18658. },
  18659. ]
  18660. ))
  18661. characterMakers.push(() => makeCharacter(
  18662. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18663. {
  18664. frontDressed: {
  18665. height: math.unit(70, "cm"),
  18666. weight: math.unit(6, "kg"),
  18667. name: "Front (Dressed)",
  18668. image: {
  18669. source: "./media/characters/sebi/front-dressed.svg",
  18670. extra: 713.5 / 686.5,
  18671. bottom: 0.003
  18672. }
  18673. },
  18674. front: {
  18675. height: math.unit(70, "cm"),
  18676. weight: math.unit(5, "kg"),
  18677. name: "Front",
  18678. image: {
  18679. source: "./media/characters/sebi/front.svg",
  18680. extra: 713.5 / 686.5,
  18681. bottom: 0.003
  18682. }
  18683. }
  18684. },
  18685. [
  18686. {
  18687. name: "Normal",
  18688. height: math.unit(70, "cm"),
  18689. default: true
  18690. },
  18691. {
  18692. name: "Macro",
  18693. height: math.unit(8, "meters")
  18694. },
  18695. ]
  18696. ))
  18697. characterMakers.push(() => makeCharacter(
  18698. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18699. {
  18700. front: {
  18701. height: math.unit(6, "feet"),
  18702. weight: math.unit(150, "lb"),
  18703. name: "Front",
  18704. image: {
  18705. source: "./media/characters/typhek/front.svg",
  18706. extra: 1948 / 1929,
  18707. bottom: 0.025
  18708. }
  18709. },
  18710. side: {
  18711. height: math.unit(6, "feet"),
  18712. weight: math.unit(150, "lb"),
  18713. name: "Side",
  18714. image: {
  18715. source: "./media/characters/typhek/side.svg",
  18716. extra: 2034 / 2010,
  18717. bottom: 0.003
  18718. }
  18719. },
  18720. back: {
  18721. height: math.unit(6, "feet"),
  18722. weight: math.unit(150, "lb"),
  18723. name: "Back",
  18724. image: {
  18725. source: "./media/characters/typhek/back.svg",
  18726. extra: 2005 / 1978,
  18727. bottom: 0.004
  18728. }
  18729. },
  18730. palm: {
  18731. height: math.unit(1.2, "feet"),
  18732. name: "Palm",
  18733. image: {
  18734. source: "./media/characters/typhek/palm.svg"
  18735. }
  18736. },
  18737. fist: {
  18738. height: math.unit(1.1, "feet"),
  18739. name: "Fist",
  18740. image: {
  18741. source: "./media/characters/typhek/fist.svg"
  18742. }
  18743. },
  18744. foot: {
  18745. height: math.unit(1.57, "feet"),
  18746. name: "Foot",
  18747. image: {
  18748. source: "./media/characters/typhek/foot.svg"
  18749. }
  18750. },
  18751. sole: {
  18752. height: math.unit(2.05, "feet"),
  18753. name: "Sole",
  18754. image: {
  18755. source: "./media/characters/typhek/sole.svg"
  18756. }
  18757. },
  18758. },
  18759. [
  18760. {
  18761. name: "Macro",
  18762. height: math.unit(40, "stories"),
  18763. default: true
  18764. },
  18765. {
  18766. name: "Megamacro",
  18767. height: math.unit(1, "mile")
  18768. },
  18769. {
  18770. name: "Gigamacro",
  18771. height: math.unit(4000, "solarradii")
  18772. },
  18773. {
  18774. name: "Universal",
  18775. height: math.unit(1.1, "universes")
  18776. }
  18777. ]
  18778. ))
  18779. characterMakers.push(() => makeCharacter(
  18780. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18781. {
  18782. side: {
  18783. height: math.unit(5 + 7 / 12, "feet"),
  18784. weight: math.unit(150, "lb"),
  18785. name: "Side",
  18786. image: {
  18787. source: "./media/characters/kassy/side.svg",
  18788. extra: 1280 / 1225,
  18789. bottom: 0.002
  18790. }
  18791. },
  18792. front: {
  18793. height: math.unit(5 + 7 / 12, "feet"),
  18794. weight: math.unit(150, "lb"),
  18795. name: "Front",
  18796. image: {
  18797. source: "./media/characters/kassy/front.svg",
  18798. extra: 1280 / 1225,
  18799. bottom: 0.025
  18800. }
  18801. },
  18802. back: {
  18803. height: math.unit(5 + 7 / 12, "feet"),
  18804. weight: math.unit(150, "lb"),
  18805. name: "Back",
  18806. image: {
  18807. source: "./media/characters/kassy/back.svg",
  18808. extra: 1280 / 1225,
  18809. bottom: 0.002
  18810. }
  18811. },
  18812. foot: {
  18813. height: math.unit(1.266, "feet"),
  18814. name: "Foot",
  18815. image: {
  18816. source: "./media/characters/kassy/foot.svg"
  18817. }
  18818. },
  18819. },
  18820. [
  18821. {
  18822. name: "Normal",
  18823. height: math.unit(5 + 7 / 12, "feet")
  18824. },
  18825. {
  18826. name: "Macro",
  18827. height: math.unit(137, "feet"),
  18828. default: true
  18829. },
  18830. {
  18831. name: "Megamacro",
  18832. height: math.unit(1, "mile")
  18833. },
  18834. ]
  18835. ))
  18836. characterMakers.push(() => makeCharacter(
  18837. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18838. {
  18839. front: {
  18840. height: math.unit(6 + 1 / 12, "feet"),
  18841. weight: math.unit(200, "lb"),
  18842. name: "Front",
  18843. image: {
  18844. source: "./media/characters/neil/front.svg",
  18845. extra: 1326 / 1250,
  18846. bottom: 0.023
  18847. }
  18848. },
  18849. },
  18850. [
  18851. {
  18852. name: "Normal",
  18853. height: math.unit(6 + 1 / 12, "feet"),
  18854. default: true
  18855. },
  18856. {
  18857. name: "Macro",
  18858. height: math.unit(200, "feet")
  18859. },
  18860. ]
  18861. ))
  18862. characterMakers.push(() => makeCharacter(
  18863. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18864. {
  18865. front: {
  18866. height: math.unit(5 + 9 / 12, "feet"),
  18867. weight: math.unit(190, "lb"),
  18868. name: "Front",
  18869. image: {
  18870. source: "./media/characters/atticus/front.svg",
  18871. extra: 2934 / 2785,
  18872. bottom: 0.025
  18873. }
  18874. },
  18875. },
  18876. [
  18877. {
  18878. name: "Normal",
  18879. height: math.unit(5 + 9 / 12, "feet"),
  18880. default: true
  18881. },
  18882. {
  18883. name: "Macro",
  18884. height: math.unit(180, "feet")
  18885. },
  18886. ]
  18887. ))
  18888. characterMakers.push(() => makeCharacter(
  18889. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18890. {
  18891. side: {
  18892. height: math.unit(9, "feet"),
  18893. weight: math.unit(650, "lb"),
  18894. name: "Side",
  18895. image: {
  18896. source: "./media/characters/milo/side.svg",
  18897. extra: 2644 / 2310,
  18898. bottom: 0.032
  18899. }
  18900. },
  18901. },
  18902. [
  18903. {
  18904. name: "Normal",
  18905. height: math.unit(9, "feet"),
  18906. default: true
  18907. },
  18908. {
  18909. name: "Macro",
  18910. height: math.unit(300, "feet")
  18911. },
  18912. ]
  18913. ))
  18914. characterMakers.push(() => makeCharacter(
  18915. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18916. {
  18917. side: {
  18918. height: math.unit(8, "meters"),
  18919. weight: math.unit(90000, "kg"),
  18920. name: "Side",
  18921. image: {
  18922. source: "./media/characters/ijzer/side.svg",
  18923. extra: 2756 / 1600,
  18924. bottom: 0.01
  18925. }
  18926. },
  18927. },
  18928. [
  18929. {
  18930. name: "Small",
  18931. height: math.unit(3, "meters")
  18932. },
  18933. {
  18934. name: "Normal",
  18935. height: math.unit(8, "meters"),
  18936. default: true
  18937. },
  18938. {
  18939. name: "Normal+",
  18940. height: math.unit(10, "meters")
  18941. },
  18942. {
  18943. name: "Bigger",
  18944. height: math.unit(24, "meters")
  18945. },
  18946. {
  18947. name: "Huge",
  18948. height: math.unit(80, "meters")
  18949. },
  18950. ]
  18951. ))
  18952. characterMakers.push(() => makeCharacter(
  18953. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18954. {
  18955. front: {
  18956. height: math.unit(6 + 2 / 12, "feet"),
  18957. weight: math.unit(153, "lb"),
  18958. name: "Front",
  18959. image: {
  18960. source: "./media/characters/luca-cervicum/front.svg",
  18961. extra: 370 / 327,
  18962. bottom: 0.015
  18963. }
  18964. },
  18965. back: {
  18966. height: math.unit(6 + 2 / 12, "feet"),
  18967. weight: math.unit(153, "lb"),
  18968. name: "Back",
  18969. image: {
  18970. source: "./media/characters/luca-cervicum/back.svg",
  18971. extra: 367 / 333,
  18972. bottom: 0.005
  18973. }
  18974. },
  18975. frontGear: {
  18976. height: math.unit(6 + 2 / 12, "feet"),
  18977. weight: math.unit(173, "lb"),
  18978. name: "Front (Gear)",
  18979. image: {
  18980. source: "./media/characters/luca-cervicum/front-gear.svg",
  18981. extra: 377 / 333,
  18982. bottom: 0.006
  18983. }
  18984. },
  18985. },
  18986. [
  18987. {
  18988. name: "Normal",
  18989. height: math.unit(6 + 2 / 12, "feet"),
  18990. default: true
  18991. },
  18992. ]
  18993. ))
  18994. characterMakers.push(() => makeCharacter(
  18995. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18996. {
  18997. front: {
  18998. height: math.unit(6 + 1 / 12, "feet"),
  18999. weight: math.unit(304, "lb"),
  19000. name: "Front",
  19001. image: {
  19002. source: "./media/characters/oliver/front.svg",
  19003. extra: 157 / 143,
  19004. bottom: 0.08
  19005. }
  19006. },
  19007. },
  19008. [
  19009. {
  19010. name: "Normal",
  19011. height: math.unit(6 + 1 / 12, "feet"),
  19012. default: true
  19013. },
  19014. ]
  19015. ))
  19016. characterMakers.push(() => makeCharacter(
  19017. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19018. {
  19019. front: {
  19020. height: math.unit(5 + 7 / 12, "feet"),
  19021. weight: math.unit(140, "lb"),
  19022. name: "Front",
  19023. image: {
  19024. source: "./media/characters/shane/front.svg",
  19025. extra: 304 / 289,
  19026. bottom: 0.005
  19027. }
  19028. },
  19029. },
  19030. [
  19031. {
  19032. name: "Normal",
  19033. height: math.unit(5 + 7 / 12, "feet"),
  19034. default: true
  19035. },
  19036. ]
  19037. ))
  19038. characterMakers.push(() => makeCharacter(
  19039. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19040. {
  19041. front: {
  19042. height: math.unit(5 + 9 / 12, "feet"),
  19043. weight: math.unit(178, "lb"),
  19044. name: "Front",
  19045. image: {
  19046. source: "./media/characters/shin/front.svg",
  19047. extra: 159 / 151,
  19048. bottom: 0.015
  19049. }
  19050. },
  19051. },
  19052. [
  19053. {
  19054. name: "Normal",
  19055. height: math.unit(5 + 9 / 12, "feet"),
  19056. default: true
  19057. },
  19058. ]
  19059. ))
  19060. characterMakers.push(() => makeCharacter(
  19061. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19062. {
  19063. front: {
  19064. height: math.unit(5 + 10 / 12, "feet"),
  19065. weight: math.unit(168, "lb"),
  19066. name: "Front",
  19067. image: {
  19068. source: "./media/characters/xerxes/front.svg",
  19069. extra: 282 / 260,
  19070. bottom: 0.045
  19071. }
  19072. },
  19073. },
  19074. [
  19075. {
  19076. name: "Normal",
  19077. height: math.unit(5 + 10 / 12, "feet"),
  19078. default: true
  19079. },
  19080. ]
  19081. ))
  19082. characterMakers.push(() => makeCharacter(
  19083. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19084. {
  19085. front: {
  19086. height: math.unit(6 + 7 / 12, "feet"),
  19087. weight: math.unit(208, "lb"),
  19088. name: "Front",
  19089. image: {
  19090. source: "./media/characters/chaska/front.svg",
  19091. extra: 332 / 319,
  19092. bottom: 0.015
  19093. }
  19094. },
  19095. },
  19096. [
  19097. {
  19098. name: "Normal",
  19099. height: math.unit(6 + 7 / 12, "feet"),
  19100. default: true
  19101. },
  19102. ]
  19103. ))
  19104. characterMakers.push(() => makeCharacter(
  19105. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19106. {
  19107. front: {
  19108. height: math.unit(5 + 8 / 12, "feet"),
  19109. weight: math.unit(208, "lb"),
  19110. name: "Front",
  19111. image: {
  19112. source: "./media/characters/enuk/front.svg",
  19113. extra: 437 / 406,
  19114. bottom: 0.02
  19115. }
  19116. },
  19117. },
  19118. [
  19119. {
  19120. name: "Normal",
  19121. height: math.unit(5 + 8 / 12, "feet"),
  19122. default: true
  19123. },
  19124. ]
  19125. ))
  19126. characterMakers.push(() => makeCharacter(
  19127. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19128. {
  19129. front: {
  19130. height: math.unit(5 + 10 / 12, "feet"),
  19131. weight: math.unit(252, "lb"),
  19132. name: "Front",
  19133. image: {
  19134. source: "./media/characters/bruun/front.svg",
  19135. extra: 197 / 187,
  19136. bottom: 0.012
  19137. }
  19138. },
  19139. },
  19140. [
  19141. {
  19142. name: "Normal",
  19143. height: math.unit(5 + 10 / 12, "feet"),
  19144. default: true
  19145. },
  19146. ]
  19147. ))
  19148. characterMakers.push(() => makeCharacter(
  19149. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19150. {
  19151. front: {
  19152. height: math.unit(6 + 10 / 12, "feet"),
  19153. weight: math.unit(255, "lb"),
  19154. name: "Front",
  19155. image: {
  19156. source: "./media/characters/alexeev/front.svg",
  19157. extra: 213 / 200,
  19158. bottom: 0.05
  19159. }
  19160. },
  19161. },
  19162. [
  19163. {
  19164. name: "Normal",
  19165. height: math.unit(6 + 10 / 12, "feet"),
  19166. default: true
  19167. },
  19168. ]
  19169. ))
  19170. characterMakers.push(() => makeCharacter(
  19171. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19172. {
  19173. front: {
  19174. height: math.unit(2 + 8 / 12, "feet"),
  19175. weight: math.unit(22, "lb"),
  19176. name: "Front",
  19177. image: {
  19178. source: "./media/characters/evelyn/front.svg",
  19179. extra: 208 / 180
  19180. }
  19181. },
  19182. },
  19183. [
  19184. {
  19185. name: "Normal",
  19186. height: math.unit(2 + 8 / 12, "feet"),
  19187. default: true
  19188. },
  19189. ]
  19190. ))
  19191. characterMakers.push(() => makeCharacter(
  19192. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19193. {
  19194. front: {
  19195. height: math.unit(5 + 9 / 12, "feet"),
  19196. weight: math.unit(139, "lb"),
  19197. name: "Front",
  19198. image: {
  19199. source: "./media/characters/inca/front.svg",
  19200. extra: 294 / 291,
  19201. bottom: 0.03
  19202. }
  19203. },
  19204. },
  19205. [
  19206. {
  19207. name: "Normal",
  19208. height: math.unit(5 + 9 / 12, "feet"),
  19209. default: true
  19210. },
  19211. ]
  19212. ))
  19213. characterMakers.push(() => makeCharacter(
  19214. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19215. {
  19216. front: {
  19217. height: math.unit(5 + 1 / 12, "feet"),
  19218. weight: math.unit(84, "lb"),
  19219. name: "Front",
  19220. image: {
  19221. source: "./media/characters/magdalene/front.svg",
  19222. extra: 293 / 273
  19223. }
  19224. },
  19225. },
  19226. [
  19227. {
  19228. name: "Normal",
  19229. height: math.unit(5 + 1 / 12, "feet"),
  19230. default: true
  19231. },
  19232. ]
  19233. ))
  19234. characterMakers.push(() => makeCharacter(
  19235. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19236. {
  19237. front: {
  19238. height: math.unit(6 + 3 / 12, "feet"),
  19239. weight: math.unit(185, "lb"),
  19240. name: "Front",
  19241. image: {
  19242. source: "./media/characters/mera/front.svg",
  19243. extra: 291 / 277,
  19244. bottom: 0.03
  19245. }
  19246. },
  19247. },
  19248. [
  19249. {
  19250. name: "Normal",
  19251. height: math.unit(6 + 3 / 12, "feet"),
  19252. default: true
  19253. },
  19254. ]
  19255. ))
  19256. characterMakers.push(() => makeCharacter(
  19257. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19258. {
  19259. front: {
  19260. height: math.unit(6 + 7 / 12, "feet"),
  19261. weight: math.unit(160, "lb"),
  19262. name: "Front",
  19263. image: {
  19264. source: "./media/characters/ceres/front.svg",
  19265. extra: 1023 / 950,
  19266. bottom: 0.027
  19267. }
  19268. },
  19269. back: {
  19270. height: math.unit(6 + 7 / 12, "feet"),
  19271. weight: math.unit(160, "lb"),
  19272. name: "Back",
  19273. image: {
  19274. source: "./media/characters/ceres/back.svg",
  19275. extra: 1023 / 950
  19276. }
  19277. },
  19278. },
  19279. [
  19280. {
  19281. name: "Normal",
  19282. height: math.unit(6 + 7 / 12, "feet"),
  19283. default: true
  19284. },
  19285. ]
  19286. ))
  19287. characterMakers.push(() => makeCharacter(
  19288. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19289. {
  19290. front: {
  19291. height: math.unit(5 + 10 / 12, "feet"),
  19292. weight: math.unit(150, "lb"),
  19293. name: "Front",
  19294. image: {
  19295. source: "./media/characters/kris/front.svg",
  19296. extra: 885 / 803,
  19297. bottom: 0.03
  19298. }
  19299. },
  19300. },
  19301. [
  19302. {
  19303. name: "Normal",
  19304. height: math.unit(5 + 10 / 12, "feet"),
  19305. default: true
  19306. },
  19307. ]
  19308. ))
  19309. characterMakers.push(() => makeCharacter(
  19310. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19311. {
  19312. front: {
  19313. height: math.unit(7, "feet"),
  19314. weight: math.unit(120, "kg"),
  19315. name: "Front",
  19316. image: {
  19317. source: "./media/characters/taluthus/front.svg",
  19318. extra: 903 / 833,
  19319. bottom: 0.015
  19320. }
  19321. },
  19322. },
  19323. [
  19324. {
  19325. name: "Normal",
  19326. height: math.unit(7, "feet"),
  19327. default: true
  19328. },
  19329. {
  19330. name: "Macro",
  19331. height: math.unit(300, "feet")
  19332. },
  19333. ]
  19334. ))
  19335. characterMakers.push(() => makeCharacter(
  19336. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19337. {
  19338. front: {
  19339. height: math.unit(5 + 9 / 12, "feet"),
  19340. weight: math.unit(145, "lb"),
  19341. name: "Front",
  19342. image: {
  19343. source: "./media/characters/dawn/front.svg",
  19344. extra: 2094 / 2016,
  19345. bottom: 0.025
  19346. }
  19347. },
  19348. back: {
  19349. height: math.unit(5 + 9 / 12, "feet"),
  19350. weight: math.unit(160, "lb"),
  19351. name: "Back",
  19352. image: {
  19353. source: "./media/characters/dawn/back.svg",
  19354. extra: 2112 / 2080,
  19355. bottom: 0.005
  19356. }
  19357. },
  19358. },
  19359. [
  19360. {
  19361. name: "Normal",
  19362. height: math.unit(6 + 7 / 12, "feet"),
  19363. default: true
  19364. },
  19365. ]
  19366. ))
  19367. characterMakers.push(() => makeCharacter(
  19368. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19369. {
  19370. anthro: {
  19371. height: math.unit(8 + 3 / 12, "feet"),
  19372. weight: math.unit(450, "lb"),
  19373. name: "Anthro",
  19374. image: {
  19375. source: "./media/characters/arador/anthro.svg",
  19376. extra: 1835 / 1718,
  19377. bottom: 0.025
  19378. }
  19379. },
  19380. feral: {
  19381. height: math.unit(4, "feet"),
  19382. weight: math.unit(200, "lb"),
  19383. name: "Feral",
  19384. image: {
  19385. source: "./media/characters/arador/feral.svg",
  19386. extra: 1683 / 1514,
  19387. bottom: 0.07
  19388. }
  19389. },
  19390. },
  19391. [
  19392. {
  19393. name: "Normal",
  19394. height: math.unit(8 + 3 / 12, "feet")
  19395. },
  19396. {
  19397. name: "Macro",
  19398. height: math.unit(82.5, "feet"),
  19399. default: true
  19400. },
  19401. ]
  19402. ))
  19403. characterMakers.push(() => makeCharacter(
  19404. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19405. {
  19406. front: {
  19407. height: math.unit(5 + 10 / 12, "feet"),
  19408. weight: math.unit(125, "lb"),
  19409. name: "Front",
  19410. image: {
  19411. source: "./media/characters/dharsi/front.svg",
  19412. extra: 716 / 630,
  19413. bottom: 0.035
  19414. }
  19415. },
  19416. },
  19417. [
  19418. {
  19419. name: "Nano",
  19420. height: math.unit(100, "nm")
  19421. },
  19422. {
  19423. name: "Micro",
  19424. height: math.unit(2, "inches")
  19425. },
  19426. {
  19427. name: "Normal",
  19428. height: math.unit(5 + 10 / 12, "feet"),
  19429. default: true
  19430. },
  19431. {
  19432. name: "Macro",
  19433. height: math.unit(1000, "feet")
  19434. },
  19435. {
  19436. name: "Megamacro",
  19437. height: math.unit(10, "miles")
  19438. },
  19439. {
  19440. name: "Gigamacro",
  19441. height: math.unit(3000, "miles")
  19442. },
  19443. {
  19444. name: "Teramacro",
  19445. height: math.unit(500000, "miles")
  19446. },
  19447. {
  19448. name: "Teramacro+",
  19449. height: math.unit(30, "galaxies")
  19450. },
  19451. ]
  19452. ))
  19453. characterMakers.push(() => makeCharacter(
  19454. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19455. {
  19456. front: {
  19457. height: math.unit(6, "feet"),
  19458. weight: math.unit(150, "lb"),
  19459. name: "Front",
  19460. image: {
  19461. source: "./media/characters/deathy/front.svg",
  19462. extra: 1552 / 1463,
  19463. bottom: 0.025
  19464. }
  19465. },
  19466. side: {
  19467. height: math.unit(6, "feet"),
  19468. weight: math.unit(150, "lb"),
  19469. name: "Side",
  19470. image: {
  19471. source: "./media/characters/deathy/side.svg",
  19472. extra: 1604 / 1455,
  19473. bottom: 0.025
  19474. }
  19475. },
  19476. back: {
  19477. height: math.unit(6, "feet"),
  19478. weight: math.unit(150, "lb"),
  19479. name: "Back",
  19480. image: {
  19481. source: "./media/characters/deathy/back.svg",
  19482. extra: 1580 / 1463,
  19483. bottom: 0.005
  19484. }
  19485. },
  19486. },
  19487. [
  19488. {
  19489. name: "Micro",
  19490. height: math.unit(5, "millimeters")
  19491. },
  19492. {
  19493. name: "Normal",
  19494. height: math.unit(6 + 5 / 12, "feet"),
  19495. default: true
  19496. },
  19497. ]
  19498. ))
  19499. characterMakers.push(() => makeCharacter(
  19500. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19501. {
  19502. front: {
  19503. height: math.unit(16, "feet"),
  19504. weight: math.unit(4000, "lb"),
  19505. name: "Front",
  19506. image: {
  19507. source: "./media/characters/juniper/front.svg",
  19508. bottom: 0.04
  19509. }
  19510. },
  19511. },
  19512. [
  19513. {
  19514. name: "Normal",
  19515. height: math.unit(16, "feet"),
  19516. default: true
  19517. },
  19518. ]
  19519. ))
  19520. characterMakers.push(() => makeCharacter(
  19521. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19522. {
  19523. front: {
  19524. height: math.unit(6, "feet"),
  19525. weight: math.unit(150, "lb"),
  19526. name: "Front",
  19527. image: {
  19528. source: "./media/characters/hipster/front.svg",
  19529. extra: 1312 / 1209,
  19530. bottom: 0.025
  19531. }
  19532. },
  19533. back: {
  19534. height: math.unit(6, "feet"),
  19535. weight: math.unit(150, "lb"),
  19536. name: "Back",
  19537. image: {
  19538. source: "./media/characters/hipster/back.svg",
  19539. extra: 1281 / 1196,
  19540. bottom: 0.01
  19541. }
  19542. },
  19543. },
  19544. [
  19545. {
  19546. name: "Micro",
  19547. height: math.unit(1, "mm")
  19548. },
  19549. {
  19550. name: "Normal",
  19551. height: math.unit(4, "inches"),
  19552. default: true
  19553. },
  19554. {
  19555. name: "Macro",
  19556. height: math.unit(500, "feet")
  19557. },
  19558. {
  19559. name: "Megamacro",
  19560. height: math.unit(1000, "miles")
  19561. },
  19562. ]
  19563. ))
  19564. characterMakers.push(() => makeCharacter(
  19565. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19566. {
  19567. front: {
  19568. height: math.unit(6, "feet"),
  19569. weight: math.unit(150, "lb"),
  19570. name: "Front",
  19571. image: {
  19572. source: "./media/characters/tendirmuldr/front.svg",
  19573. extra: 1878 / 1772,
  19574. bottom: 0.015
  19575. }
  19576. },
  19577. },
  19578. [
  19579. {
  19580. name: "Megamacro",
  19581. height: math.unit(1500, "miles"),
  19582. default: true
  19583. },
  19584. ]
  19585. ))
  19586. characterMakers.push(() => makeCharacter(
  19587. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19588. {
  19589. front: {
  19590. height: math.unit(14, "feet"),
  19591. weight: math.unit(12000, "lb"),
  19592. name: "Front",
  19593. image: {
  19594. source: "./media/characters/mort/front.svg",
  19595. extra: 365 / 318,
  19596. bottom: 0.01
  19597. }
  19598. },
  19599. side: {
  19600. height: math.unit(14, "feet"),
  19601. weight: math.unit(12000, "lb"),
  19602. name: "Side",
  19603. image: {
  19604. source: "./media/characters/mort/side.svg",
  19605. extra: 365 / 318,
  19606. bottom: 0.052
  19607. },
  19608. default: true
  19609. },
  19610. back: {
  19611. height: math.unit(14, "feet"),
  19612. weight: math.unit(12000, "lb"),
  19613. name: "Back",
  19614. image: {
  19615. source: "./media/characters/mort/back.svg",
  19616. extra: 371 / 332,
  19617. bottom: 0.18
  19618. }
  19619. },
  19620. },
  19621. [
  19622. {
  19623. name: "Normal",
  19624. height: math.unit(14, "feet"),
  19625. default: true
  19626. },
  19627. ]
  19628. ))
  19629. characterMakers.push(() => makeCharacter(
  19630. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19631. {
  19632. front: {
  19633. height: math.unit(8, "feet"),
  19634. weight: math.unit(1, "ton"),
  19635. name: "Front",
  19636. image: {
  19637. source: "./media/characters/lycoa/front.svg",
  19638. extra: 1875 / 1789,
  19639. bottom: 0.022
  19640. }
  19641. },
  19642. back: {
  19643. height: math.unit(8, "feet"),
  19644. weight: math.unit(1, "ton"),
  19645. name: "Back",
  19646. image: {
  19647. source: "./media/characters/lycoa/back.svg",
  19648. extra: 1835 / 1781,
  19649. bottom: 0.03
  19650. }
  19651. },
  19652. head: {
  19653. height: math.unit(2.1, "feet"),
  19654. name: "Head",
  19655. image: {
  19656. source: "./media/characters/lycoa/head.svg"
  19657. }
  19658. },
  19659. tailmaw: {
  19660. height: math.unit(1.9, "feet"),
  19661. name: "Tailmaw",
  19662. image: {
  19663. source: "./media/characters/lycoa/tailmaw.svg"
  19664. }
  19665. },
  19666. tentacles: {
  19667. height: math.unit(2.1, "feet"),
  19668. name: "Tentacles",
  19669. image: {
  19670. source: "./media/characters/lycoa/tentacles.svg"
  19671. }
  19672. },
  19673. dick: {
  19674. height: math.unit(1.73, "feet"),
  19675. name: "Dick",
  19676. image: {
  19677. source: "./media/characters/lycoa/dick.svg"
  19678. }
  19679. },
  19680. },
  19681. [
  19682. {
  19683. name: "Normal",
  19684. height: math.unit(8, "feet"),
  19685. default: true
  19686. },
  19687. {
  19688. name: "Macro",
  19689. height: math.unit(30, "feet")
  19690. },
  19691. ]
  19692. ))
  19693. characterMakers.push(() => makeCharacter(
  19694. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19695. {
  19696. front: {
  19697. height: math.unit(4 + 2 / 12, "feet"),
  19698. weight: math.unit(70, "lb"),
  19699. name: "Front",
  19700. image: {
  19701. source: "./media/characters/naldara/front.svg",
  19702. extra: 841 / 720,
  19703. bottom: 0.04
  19704. }
  19705. },
  19706. naga: {
  19707. height: math.unit(23, "feet"),
  19708. weight: math.unit(15000, "kg"),
  19709. name: "Naga",
  19710. image: {
  19711. source: "./media/characters/naldara/naga.svg",
  19712. extra: 3290 / 2959,
  19713. bottom: 124 / 3432
  19714. }
  19715. },
  19716. },
  19717. [
  19718. {
  19719. name: "Normal",
  19720. height: math.unit(4 + 2 / 12, "feet"),
  19721. default: true
  19722. },
  19723. ]
  19724. ))
  19725. characterMakers.push(() => makeCharacter(
  19726. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19727. {
  19728. front: {
  19729. height: math.unit(13 + 7 / 12, "feet"),
  19730. weight: math.unit(1500, "lb"),
  19731. name: "Front",
  19732. image: {
  19733. source: "./media/characters/briar/front.svg",
  19734. extra: 626 / 596,
  19735. bottom: 0.08
  19736. }
  19737. },
  19738. },
  19739. [
  19740. {
  19741. name: "Normal",
  19742. height: math.unit(13 + 7 / 12, "feet"),
  19743. default: true
  19744. },
  19745. ]
  19746. ))
  19747. characterMakers.push(() => makeCharacter(
  19748. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19749. {
  19750. side: {
  19751. height: math.unit(10, "feet"),
  19752. weight: math.unit(500, "lb"),
  19753. name: "Side",
  19754. image: {
  19755. source: "./media/characters/vanguard/side.svg",
  19756. extra: 502 / 425,
  19757. bottom: 0.087
  19758. }
  19759. },
  19760. },
  19761. [
  19762. {
  19763. name: "Normal",
  19764. height: math.unit(10, "feet"),
  19765. default: true
  19766. },
  19767. ]
  19768. ))
  19769. characterMakers.push(() => makeCharacter(
  19770. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19771. {
  19772. front: {
  19773. height: math.unit(7.5, "feet"),
  19774. weight: math.unit(2, "lb"),
  19775. name: "Front",
  19776. image: {
  19777. source: "./media/characters/artemis/front.svg",
  19778. extra: 1192 / 1075,
  19779. bottom: 0.07
  19780. }
  19781. },
  19782. frontNsfw: {
  19783. height: math.unit(7.5, "feet"),
  19784. weight: math.unit(2, "lb"),
  19785. name: "Front (NSFW)",
  19786. image: {
  19787. source: "./media/characters/artemis/front-nsfw.svg",
  19788. extra: 1192 / 1075,
  19789. bottom: 0.07
  19790. }
  19791. },
  19792. frontNsfwer: {
  19793. height: math.unit(7.5, "feet"),
  19794. weight: math.unit(2, "lb"),
  19795. name: "Front (NSFW-er)",
  19796. image: {
  19797. source: "./media/characters/artemis/front-nsfwer.svg",
  19798. extra: 1192 / 1075,
  19799. bottom: 0.07
  19800. }
  19801. },
  19802. side: {
  19803. height: math.unit(7.5, "feet"),
  19804. weight: math.unit(2, "lb"),
  19805. name: "Side",
  19806. image: {
  19807. source: "./media/characters/artemis/side.svg",
  19808. extra: 1192 / 1075,
  19809. bottom: 0.07
  19810. }
  19811. },
  19812. sideNsfw: {
  19813. height: math.unit(7.5, "feet"),
  19814. weight: math.unit(2, "lb"),
  19815. name: "Side (NSFW)",
  19816. image: {
  19817. source: "./media/characters/artemis/side-nsfw.svg",
  19818. extra: 1192 / 1075,
  19819. bottom: 0.07
  19820. }
  19821. },
  19822. sideNsfwer: {
  19823. height: math.unit(7.5, "feet"),
  19824. weight: math.unit(2, "lb"),
  19825. name: "Side (NSFW-er)",
  19826. image: {
  19827. source: "./media/characters/artemis/side-nsfwer.svg",
  19828. extra: 1192 / 1075,
  19829. bottom: 0.07
  19830. }
  19831. },
  19832. maw: {
  19833. height: math.unit(1.1, "feet"),
  19834. name: "Maw",
  19835. image: {
  19836. source: "./media/characters/artemis/maw.svg"
  19837. }
  19838. },
  19839. stomach: {
  19840. height: math.unit(0.95, "feet"),
  19841. name: "Stomach",
  19842. image: {
  19843. source: "./media/characters/artemis/stomach.svg"
  19844. }
  19845. },
  19846. dickCanine: {
  19847. height: math.unit(1, "feet"),
  19848. name: "Dick (Canine)",
  19849. image: {
  19850. source: "./media/characters/artemis/dick-canine.svg"
  19851. }
  19852. },
  19853. dickEquine: {
  19854. height: math.unit(0.85, "feet"),
  19855. name: "Dick (Equine)",
  19856. image: {
  19857. source: "./media/characters/artemis/dick-equine.svg"
  19858. }
  19859. },
  19860. dickExotic: {
  19861. height: math.unit(0.85, "feet"),
  19862. name: "Dick (Exotic)",
  19863. image: {
  19864. source: "./media/characters/artemis/dick-exotic.svg"
  19865. }
  19866. },
  19867. },
  19868. [
  19869. {
  19870. name: "Normal",
  19871. height: math.unit(7.5, "feet"),
  19872. default: true
  19873. },
  19874. {
  19875. name: "Enlarged",
  19876. height: math.unit(12, "feet")
  19877. },
  19878. ]
  19879. ))
  19880. characterMakers.push(() => makeCharacter(
  19881. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19882. {
  19883. front: {
  19884. height: math.unit(5 + 3 / 12, "feet"),
  19885. weight: math.unit(160, "lb"),
  19886. name: "Front",
  19887. image: {
  19888. source: "./media/characters/kira/front.svg",
  19889. extra: 906 / 786,
  19890. bottom: 0.01
  19891. }
  19892. },
  19893. back: {
  19894. height: math.unit(5 + 3 / 12, "feet"),
  19895. weight: math.unit(160, "lb"),
  19896. name: "Back",
  19897. image: {
  19898. source: "./media/characters/kira/back.svg",
  19899. extra: 882 / 757,
  19900. bottom: 0.005
  19901. }
  19902. },
  19903. frontDressed: {
  19904. height: math.unit(5 + 3 / 12, "feet"),
  19905. weight: math.unit(160, "lb"),
  19906. name: "Front (Dressed)",
  19907. image: {
  19908. source: "./media/characters/kira/front-dressed.svg",
  19909. extra: 906 / 786,
  19910. bottom: 0.01
  19911. }
  19912. },
  19913. beans: {
  19914. height: math.unit(0.92, "feet"),
  19915. name: "Beans",
  19916. image: {
  19917. source: "./media/characters/kira/beans.svg"
  19918. }
  19919. },
  19920. },
  19921. [
  19922. {
  19923. name: "Normal",
  19924. height: math.unit(5 + 3 / 12, "feet"),
  19925. default: true
  19926. },
  19927. ]
  19928. ))
  19929. characterMakers.push(() => makeCharacter(
  19930. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19931. {
  19932. front: {
  19933. height: math.unit(5 + 4 / 12, "feet"),
  19934. weight: math.unit(145, "lb"),
  19935. name: "Front",
  19936. image: {
  19937. source: "./media/characters/scramble/front.svg",
  19938. extra: 763 / 727,
  19939. bottom: 0.05
  19940. }
  19941. },
  19942. back: {
  19943. height: math.unit(5 + 4 / 12, "feet"),
  19944. weight: math.unit(145, "lb"),
  19945. name: "Back",
  19946. image: {
  19947. source: "./media/characters/scramble/back.svg",
  19948. extra: 826 / 737,
  19949. bottom: 0.002
  19950. }
  19951. },
  19952. },
  19953. [
  19954. {
  19955. name: "Normal",
  19956. height: math.unit(5 + 4 / 12, "feet"),
  19957. default: true
  19958. },
  19959. ]
  19960. ))
  19961. characterMakers.push(() => makeCharacter(
  19962. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19963. {
  19964. side: {
  19965. height: math.unit(6 + 2 / 12, "feet"),
  19966. weight: math.unit(190, "lb"),
  19967. name: "Side",
  19968. image: {
  19969. source: "./media/characters/biscuit/side.svg",
  19970. extra: 858 / 791,
  19971. bottom: 0.044
  19972. }
  19973. },
  19974. },
  19975. [
  19976. {
  19977. name: "Normal",
  19978. height: math.unit(6 + 2 / 12, "feet"),
  19979. default: true
  19980. },
  19981. ]
  19982. ))
  19983. characterMakers.push(() => makeCharacter(
  19984. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19985. {
  19986. front: {
  19987. height: math.unit(5 + 2 / 12, "feet"),
  19988. weight: math.unit(120, "lb"),
  19989. name: "Front",
  19990. image: {
  19991. source: "./media/characters/poffin/front.svg",
  19992. extra: 786 / 680,
  19993. bottom: 0.005
  19994. }
  19995. },
  19996. },
  19997. [
  19998. {
  19999. name: "Normal",
  20000. height: math.unit(5 + 2 / 12, "feet"),
  20001. default: true
  20002. },
  20003. ]
  20004. ))
  20005. characterMakers.push(() => makeCharacter(
  20006. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20007. {
  20008. front: {
  20009. height: math.unit(6 + 3 / 12, "feet"),
  20010. weight: math.unit(519, "lb"),
  20011. name: "Front",
  20012. image: {
  20013. source: "./media/characters/dhari/front.svg",
  20014. extra: 1048 / 946,
  20015. bottom: 0.015
  20016. }
  20017. },
  20018. back: {
  20019. height: math.unit(6 + 3 / 12, "feet"),
  20020. weight: math.unit(519, "lb"),
  20021. name: "Back",
  20022. image: {
  20023. source: "./media/characters/dhari/back.svg",
  20024. extra: 1048 / 931,
  20025. bottom: 0.005
  20026. }
  20027. },
  20028. frontDressed: {
  20029. height: math.unit(6 + 3 / 12, "feet"),
  20030. weight: math.unit(519, "lb"),
  20031. name: "Front (Dressed)",
  20032. image: {
  20033. source: "./media/characters/dhari/front-dressed.svg",
  20034. extra: 1713 / 1546,
  20035. bottom: 0.02
  20036. }
  20037. },
  20038. backDressed: {
  20039. height: math.unit(6 + 3 / 12, "feet"),
  20040. weight: math.unit(519, "lb"),
  20041. name: "Back (Dressed)",
  20042. image: {
  20043. source: "./media/characters/dhari/back-dressed.svg",
  20044. extra: 1699 / 1537,
  20045. bottom: 0.01
  20046. }
  20047. },
  20048. maw: {
  20049. height: math.unit(0.95, "feet"),
  20050. name: "Maw",
  20051. image: {
  20052. source: "./media/characters/dhari/maw.svg"
  20053. }
  20054. },
  20055. wereFront: {
  20056. height: math.unit(12 + 8 / 12, "feet"),
  20057. weight: math.unit(4000, "lb"),
  20058. name: "Front (Were)",
  20059. image: {
  20060. source: "./media/characters/dhari/were-front.svg",
  20061. extra: 1065 / 969,
  20062. bottom: 0.015
  20063. }
  20064. },
  20065. wereBack: {
  20066. height: math.unit(12 + 8 / 12, "feet"),
  20067. weight: math.unit(4000, "lb"),
  20068. name: "Back (Were)",
  20069. image: {
  20070. source: "./media/characters/dhari/were-back.svg",
  20071. extra: 1065 / 969,
  20072. bottom: 0.012
  20073. }
  20074. },
  20075. wereMaw: {
  20076. height: math.unit(0.625, "meters"),
  20077. name: "Maw (Were)",
  20078. image: {
  20079. source: "./media/characters/dhari/were-maw.svg"
  20080. }
  20081. },
  20082. },
  20083. [
  20084. {
  20085. name: "Normal",
  20086. height: math.unit(6 + 3 / 12, "feet"),
  20087. default: true
  20088. },
  20089. ]
  20090. ))
  20091. characterMakers.push(() => makeCharacter(
  20092. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20093. {
  20094. anthro: {
  20095. height: math.unit(5 + 7 / 12, "feet"),
  20096. weight: math.unit(175, "lb"),
  20097. name: "Anthro",
  20098. image: {
  20099. source: "./media/characters/rena-dyne/anthro.svg",
  20100. extra: 1849 / 1785,
  20101. bottom: 0.005
  20102. }
  20103. },
  20104. taur: {
  20105. height: math.unit(15 + 6 / 12, "feet"),
  20106. weight: math.unit(8000, "lb"),
  20107. name: "Taur",
  20108. image: {
  20109. source: "./media/characters/rena-dyne/taur.svg",
  20110. extra: 2315 / 2234,
  20111. bottom: 0.033
  20112. }
  20113. },
  20114. },
  20115. [
  20116. {
  20117. name: "Normal",
  20118. height: math.unit(5 + 7 / 12, "feet"),
  20119. default: true
  20120. },
  20121. ]
  20122. ))
  20123. characterMakers.push(() => makeCharacter(
  20124. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20125. {
  20126. front: {
  20127. height: math.unit(8, "feet"),
  20128. weight: math.unit(600, "lb"),
  20129. name: "Front",
  20130. image: {
  20131. source: "./media/characters/weremeep/front.svg",
  20132. extra: 967 / 862,
  20133. bottom: 0.01
  20134. }
  20135. },
  20136. },
  20137. [
  20138. {
  20139. name: "Normal",
  20140. height: math.unit(8, "feet"),
  20141. default: true
  20142. },
  20143. {
  20144. name: "Lorg",
  20145. height: math.unit(12, "feet")
  20146. },
  20147. {
  20148. name: "Oh Lawd She Comin'",
  20149. height: math.unit(20, "feet")
  20150. },
  20151. ]
  20152. ))
  20153. characterMakers.push(() => makeCharacter(
  20154. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20155. {
  20156. front: {
  20157. height: math.unit(4, "feet"),
  20158. weight: math.unit(90, "lb"),
  20159. name: "Front",
  20160. image: {
  20161. source: "./media/characters/reza/front.svg",
  20162. extra: 1183 / 1111,
  20163. bottom: 0.017
  20164. }
  20165. },
  20166. back: {
  20167. height: math.unit(4, "feet"),
  20168. weight: math.unit(90, "lb"),
  20169. name: "Back",
  20170. image: {
  20171. source: "./media/characters/reza/back.svg",
  20172. extra: 1183 / 1111,
  20173. bottom: 0.01
  20174. }
  20175. },
  20176. drake: {
  20177. height: math.unit(30, "feet"),
  20178. weight: math.unit(246960, "lb"),
  20179. name: "Drake",
  20180. image: {
  20181. source: "./media/characters/reza/drake.svg",
  20182. extra: 2350 / 2024,
  20183. bottom: 60.7 / 2403
  20184. }
  20185. },
  20186. },
  20187. [
  20188. {
  20189. name: "Normal",
  20190. height: math.unit(4, "feet"),
  20191. default: true
  20192. },
  20193. ]
  20194. ))
  20195. characterMakers.push(() => makeCharacter(
  20196. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20197. {
  20198. side: {
  20199. height: math.unit(15, "feet"),
  20200. weight: math.unit(14, "tons"),
  20201. name: "Side",
  20202. image: {
  20203. source: "./media/characters/athea/side.svg",
  20204. extra: 960 / 540,
  20205. bottom: 0.003
  20206. }
  20207. },
  20208. sitting: {
  20209. height: math.unit(6 * 2.85, "feet"),
  20210. weight: math.unit(14, "tons"),
  20211. name: "Sitting",
  20212. image: {
  20213. source: "./media/characters/athea/sitting.svg",
  20214. extra: 621 / 581,
  20215. bottom: 0.075
  20216. }
  20217. },
  20218. maw: {
  20219. height: math.unit(7.59498031496063, "feet"),
  20220. name: "Maw",
  20221. image: {
  20222. source: "./media/characters/athea/maw.svg"
  20223. }
  20224. },
  20225. },
  20226. [
  20227. {
  20228. name: "Lap Cat",
  20229. height: math.unit(2.5, "feet")
  20230. },
  20231. {
  20232. name: "Minimacro",
  20233. height: math.unit(15, "feet"),
  20234. default: true
  20235. },
  20236. {
  20237. name: "Macro",
  20238. height: math.unit(120, "feet")
  20239. },
  20240. {
  20241. name: "Macro+",
  20242. height: math.unit(640, "feet")
  20243. },
  20244. {
  20245. name: "Colossus",
  20246. height: math.unit(2.2, "miles")
  20247. },
  20248. ]
  20249. ))
  20250. characterMakers.push(() => makeCharacter(
  20251. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20252. {
  20253. front: {
  20254. height: math.unit(8 + 8 / 12, "feet"),
  20255. weight: math.unit(130, "kg"),
  20256. name: "Front",
  20257. image: {
  20258. source: "./media/characters/seroko/front.svg",
  20259. extra: 1385 / 1280,
  20260. bottom: 0.025
  20261. }
  20262. },
  20263. back: {
  20264. height: math.unit(8 + 8 / 12, "feet"),
  20265. weight: math.unit(130, "kg"),
  20266. name: "Back",
  20267. image: {
  20268. source: "./media/characters/seroko/back.svg",
  20269. extra: 1369 / 1238,
  20270. bottom: 0.018
  20271. }
  20272. },
  20273. frontDressed: {
  20274. height: math.unit(8 + 8 / 12, "feet"),
  20275. weight: math.unit(130, "kg"),
  20276. name: "Front (Dressed)",
  20277. image: {
  20278. source: "./media/characters/seroko/front-dressed.svg",
  20279. extra: 1366 / 1275,
  20280. bottom: 0.03
  20281. }
  20282. },
  20283. },
  20284. [
  20285. {
  20286. name: "Normal",
  20287. height: math.unit(8 + 8 / 12, "feet"),
  20288. default: true
  20289. },
  20290. ]
  20291. ))
  20292. characterMakers.push(() => makeCharacter(
  20293. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20294. {
  20295. front: {
  20296. height: math.unit(5.5, "feet"),
  20297. weight: math.unit(160, "lb"),
  20298. name: "Front",
  20299. image: {
  20300. source: "./media/characters/quatzi/front.svg",
  20301. extra: 2346 / 2242,
  20302. bottom: 0.015
  20303. }
  20304. },
  20305. },
  20306. [
  20307. {
  20308. name: "Normal",
  20309. height: math.unit(5.5, "feet"),
  20310. default: true
  20311. },
  20312. {
  20313. name: "Big",
  20314. height: math.unit(7.7, "feet")
  20315. },
  20316. ]
  20317. ))
  20318. characterMakers.push(() => makeCharacter(
  20319. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20320. {
  20321. front: {
  20322. height: math.unit(5 + 11 / 12, "feet"),
  20323. weight: math.unit(180, "lb"),
  20324. name: "Front",
  20325. image: {
  20326. source: "./media/characters/sen/front.svg",
  20327. extra: 1321 / 1254,
  20328. bottom: 0.015
  20329. }
  20330. },
  20331. side: {
  20332. height: math.unit(5 + 11 / 12, "feet"),
  20333. weight: math.unit(180, "lb"),
  20334. name: "Side",
  20335. image: {
  20336. source: "./media/characters/sen/side.svg",
  20337. extra: 1321 / 1254,
  20338. bottom: 0.007
  20339. }
  20340. },
  20341. back: {
  20342. height: math.unit(5 + 11 / 12, "feet"),
  20343. weight: math.unit(180, "lb"),
  20344. name: "Back",
  20345. image: {
  20346. source: "./media/characters/sen/back.svg",
  20347. extra: 1321 / 1254
  20348. }
  20349. },
  20350. },
  20351. [
  20352. {
  20353. name: "Normal",
  20354. height: math.unit(5 + 11 / 12, "feet"),
  20355. default: true
  20356. },
  20357. ]
  20358. ))
  20359. characterMakers.push(() => makeCharacter(
  20360. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20361. {
  20362. front: {
  20363. height: math.unit(166.6, "cm"),
  20364. weight: math.unit(66.6, "kg"),
  20365. name: "Front",
  20366. image: {
  20367. source: "./media/characters/fruity/front.svg",
  20368. extra: 1510 / 1386,
  20369. bottom: 0.04
  20370. }
  20371. },
  20372. back: {
  20373. height: math.unit(166.6, "cm"),
  20374. weight: math.unit(66.6, "lb"),
  20375. name: "Back",
  20376. image: {
  20377. source: "./media/characters/fruity/back.svg",
  20378. extra: 1563 / 1435,
  20379. bottom: 0.005
  20380. }
  20381. },
  20382. },
  20383. [
  20384. {
  20385. name: "Normal",
  20386. height: math.unit(166.6, "cm"),
  20387. default: true
  20388. },
  20389. {
  20390. name: "Demonic",
  20391. height: math.unit(166.6, "feet")
  20392. },
  20393. ]
  20394. ))
  20395. characterMakers.push(() => makeCharacter(
  20396. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20397. {
  20398. side: {
  20399. height: math.unit(10, "feet"),
  20400. weight: math.unit(500, "lb"),
  20401. name: "Side",
  20402. image: {
  20403. source: "./media/characters/zost/side.svg",
  20404. extra: 966 / 880,
  20405. bottom: 0.075
  20406. }
  20407. },
  20408. mawFront: {
  20409. height: math.unit(1.08, "meters"),
  20410. name: "Maw (Front)",
  20411. image: {
  20412. source: "./media/characters/zost/maw-front.svg"
  20413. }
  20414. },
  20415. mawSide: {
  20416. height: math.unit(2.66, "feet"),
  20417. name: "Maw (Side)",
  20418. image: {
  20419. source: "./media/characters/zost/maw-side.svg"
  20420. }
  20421. },
  20422. },
  20423. [
  20424. {
  20425. name: "Normal",
  20426. height: math.unit(10, "feet"),
  20427. default: true
  20428. },
  20429. ]
  20430. ))
  20431. characterMakers.push(() => makeCharacter(
  20432. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20433. {
  20434. front: {
  20435. height: math.unit(5 + 4 / 12, "feet"),
  20436. weight: math.unit(120, "lb"),
  20437. name: "Front",
  20438. image: {
  20439. source: "./media/characters/luci/front.svg",
  20440. extra: 1985 / 1884,
  20441. bottom: 0.04
  20442. }
  20443. },
  20444. back: {
  20445. height: math.unit(5 + 4 / 12, "feet"),
  20446. weight: math.unit(120, "lb"),
  20447. name: "Back",
  20448. image: {
  20449. source: "./media/characters/luci/back.svg",
  20450. extra: 1892 / 1791,
  20451. bottom: 0.002
  20452. }
  20453. },
  20454. },
  20455. [
  20456. {
  20457. name: "Normal",
  20458. height: math.unit(5 + 4 / 12, "feet"),
  20459. default: true
  20460. },
  20461. ]
  20462. ))
  20463. characterMakers.push(() => makeCharacter(
  20464. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20465. {
  20466. front: {
  20467. height: math.unit(1500, "feet"),
  20468. weight: math.unit(3.8e6, "tons"),
  20469. name: "Front",
  20470. image: {
  20471. source: "./media/characters/2th/front.svg",
  20472. extra: 3489 / 3350,
  20473. bottom: 0.1
  20474. }
  20475. },
  20476. foot: {
  20477. height: math.unit(461, "feet"),
  20478. name: "Foot",
  20479. image: {
  20480. source: "./media/characters/2th/foot.svg"
  20481. }
  20482. },
  20483. },
  20484. [
  20485. {
  20486. name: "\"Micro\"",
  20487. height: math.unit(15 + 7 / 12, "feet")
  20488. },
  20489. {
  20490. name: "Normal",
  20491. height: math.unit(1500, "feet"),
  20492. default: true
  20493. },
  20494. {
  20495. name: "Macro",
  20496. height: math.unit(5000, "feet")
  20497. },
  20498. {
  20499. name: "Megamacro",
  20500. height: math.unit(15, "miles")
  20501. },
  20502. {
  20503. name: "Gigamacro",
  20504. height: math.unit(4000, "miles")
  20505. },
  20506. {
  20507. name: "Galactic",
  20508. height: math.unit(50, "AU")
  20509. },
  20510. ]
  20511. ))
  20512. characterMakers.push(() => makeCharacter(
  20513. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20514. {
  20515. front: {
  20516. height: math.unit(5 + 6 / 12, "feet"),
  20517. weight: math.unit(220, "lb"),
  20518. name: "Front",
  20519. image: {
  20520. source: "./media/characters/amethyst/front.svg",
  20521. extra: 2078 / 2040,
  20522. bottom: 0.045
  20523. }
  20524. },
  20525. back: {
  20526. height: math.unit(5 + 6 / 12, "feet"),
  20527. weight: math.unit(220, "lb"),
  20528. name: "Back",
  20529. image: {
  20530. source: "./media/characters/amethyst/back.svg",
  20531. extra: 2021 / 1989,
  20532. bottom: 0.02
  20533. }
  20534. },
  20535. },
  20536. [
  20537. {
  20538. name: "Normal",
  20539. height: math.unit(5 + 6 / 12, "feet"),
  20540. default: true
  20541. },
  20542. ]
  20543. ))
  20544. characterMakers.push(() => makeCharacter(
  20545. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20546. {
  20547. front: {
  20548. height: math.unit(4 + 11 / 12, "feet"),
  20549. weight: math.unit(120, "lb"),
  20550. name: "Front",
  20551. image: {
  20552. source: "./media/characters/yumi-akiyama/front.svg",
  20553. extra: 1327 / 1235,
  20554. bottom: 0.02
  20555. }
  20556. },
  20557. back: {
  20558. height: math.unit(4 + 11 / 12, "feet"),
  20559. weight: math.unit(120, "lb"),
  20560. name: "Back",
  20561. image: {
  20562. source: "./media/characters/yumi-akiyama/back.svg",
  20563. extra: 1287 / 1245,
  20564. bottom: 0.002
  20565. }
  20566. },
  20567. },
  20568. [
  20569. {
  20570. name: "Galactic",
  20571. height: math.unit(50, "galaxies"),
  20572. default: true
  20573. },
  20574. {
  20575. name: "Universal",
  20576. height: math.unit(100, "universes")
  20577. },
  20578. ]
  20579. ))
  20580. characterMakers.push(() => makeCharacter(
  20581. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20582. {
  20583. front: {
  20584. height: math.unit(8, "feet"),
  20585. weight: math.unit(500, "lb"),
  20586. name: "Front",
  20587. image: {
  20588. source: "./media/characters/rifter-yrmori/front.svg",
  20589. extra: 1180 / 1125,
  20590. bottom: 0.02
  20591. }
  20592. },
  20593. back: {
  20594. height: math.unit(8, "feet"),
  20595. weight: math.unit(500, "lb"),
  20596. name: "Back",
  20597. image: {
  20598. source: "./media/characters/rifter-yrmori/back.svg",
  20599. extra: 1190 / 1145,
  20600. bottom: 0.001
  20601. }
  20602. },
  20603. wings: {
  20604. height: math.unit(7.75, "feet"),
  20605. weight: math.unit(500, "lb"),
  20606. name: "Wings",
  20607. image: {
  20608. source: "./media/characters/rifter-yrmori/wings.svg",
  20609. extra: 1357 / 1285
  20610. }
  20611. },
  20612. maw: {
  20613. height: math.unit(0.8, "feet"),
  20614. name: "Maw",
  20615. image: {
  20616. source: "./media/characters/rifter-yrmori/maw.svg"
  20617. }
  20618. },
  20619. mawfront: {
  20620. height: math.unit(1.45, "feet"),
  20621. name: "Maw (Front)",
  20622. image: {
  20623. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20624. }
  20625. },
  20626. },
  20627. [
  20628. {
  20629. name: "Normal",
  20630. height: math.unit(8, "feet"),
  20631. default: true
  20632. },
  20633. {
  20634. name: "Macro",
  20635. height: math.unit(42, "meters")
  20636. },
  20637. ]
  20638. ))
  20639. characterMakers.push(() => makeCharacter(
  20640. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20641. {
  20642. were: {
  20643. height: math.unit(25 + 6 / 12, "feet"),
  20644. weight: math.unit(10000, "lb"),
  20645. name: "Were",
  20646. image: {
  20647. source: "./media/characters/tahajin/were.svg",
  20648. extra: 801 / 770,
  20649. bottom: 0.042
  20650. }
  20651. },
  20652. aquatic: {
  20653. height: math.unit(6 + 4 / 12, "feet"),
  20654. weight: math.unit(160, "lb"),
  20655. name: "Aquatic",
  20656. image: {
  20657. source: "./media/characters/tahajin/aquatic.svg",
  20658. extra: 572 / 542,
  20659. bottom: 0.04
  20660. }
  20661. },
  20662. chow: {
  20663. height: math.unit(8 + 11 / 12, "feet"),
  20664. weight: math.unit(450, "lb"),
  20665. name: "Chow",
  20666. image: {
  20667. source: "./media/characters/tahajin/chow.svg",
  20668. extra: 660 / 640,
  20669. bottom: 0.015
  20670. }
  20671. },
  20672. demiNaga: {
  20673. height: math.unit(6 + 8 / 12, "feet"),
  20674. weight: math.unit(300, "lb"),
  20675. name: "Demi Naga",
  20676. image: {
  20677. source: "./media/characters/tahajin/demi-naga.svg",
  20678. extra: 643 / 615,
  20679. bottom: 0.1
  20680. }
  20681. },
  20682. data: {
  20683. height: math.unit(5, "inches"),
  20684. weight: math.unit(0.1, "lb"),
  20685. name: "Data",
  20686. image: {
  20687. source: "./media/characters/tahajin/data.svg"
  20688. }
  20689. },
  20690. fluu: {
  20691. height: math.unit(5 + 7 / 12, "feet"),
  20692. weight: math.unit(140, "lb"),
  20693. name: "Fluu",
  20694. image: {
  20695. source: "./media/characters/tahajin/fluu.svg",
  20696. extra: 628 / 592,
  20697. bottom: 0.02
  20698. }
  20699. },
  20700. starWarrior: {
  20701. height: math.unit(4 + 5 / 12, "feet"),
  20702. weight: math.unit(50, "lb"),
  20703. name: "Star Warrior",
  20704. image: {
  20705. source: "./media/characters/tahajin/star-warrior.svg"
  20706. }
  20707. },
  20708. },
  20709. [
  20710. {
  20711. name: "Normal",
  20712. height: math.unit(25 + 6 / 12, "feet"),
  20713. default: true
  20714. },
  20715. ]
  20716. ))
  20717. characterMakers.push(() => makeCharacter(
  20718. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20719. {
  20720. front: {
  20721. height: math.unit(8, "feet"),
  20722. weight: math.unit(350, "lb"),
  20723. name: "Front",
  20724. image: {
  20725. source: "./media/characters/gabira/front.svg",
  20726. extra: 608 / 580,
  20727. bottom: 0.03
  20728. }
  20729. },
  20730. back: {
  20731. height: math.unit(8, "feet"),
  20732. weight: math.unit(350, "lb"),
  20733. name: "Back",
  20734. image: {
  20735. source: "./media/characters/gabira/back.svg",
  20736. extra: 608 / 580,
  20737. bottom: 0.03
  20738. }
  20739. },
  20740. },
  20741. [
  20742. {
  20743. name: "Normal",
  20744. height: math.unit(8, "feet"),
  20745. default: true
  20746. },
  20747. ]
  20748. ))
  20749. characterMakers.push(() => makeCharacter(
  20750. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20751. {
  20752. front: {
  20753. height: math.unit(5 + 3 / 12, "feet"),
  20754. weight: math.unit(137, "lb"),
  20755. name: "Front",
  20756. image: {
  20757. source: "./media/characters/sasha-katraine/front.svg",
  20758. bottom: 0.045
  20759. }
  20760. },
  20761. },
  20762. [
  20763. {
  20764. name: "Micro",
  20765. height: math.unit(5, "inches")
  20766. },
  20767. {
  20768. name: "Normal",
  20769. height: math.unit(5 + 3 / 12, "feet"),
  20770. default: true
  20771. },
  20772. ]
  20773. ))
  20774. characterMakers.push(() => makeCharacter(
  20775. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20776. {
  20777. side: {
  20778. height: math.unit(4, "inches"),
  20779. weight: math.unit(200, "grams"),
  20780. name: "Side",
  20781. image: {
  20782. source: "./media/characters/der/side.svg",
  20783. extra: 719 / 400,
  20784. bottom: 30.6 / 749.9187
  20785. }
  20786. },
  20787. },
  20788. [
  20789. {
  20790. name: "Micro",
  20791. height: math.unit(4, "inches"),
  20792. default: true
  20793. },
  20794. ]
  20795. ))
  20796. characterMakers.push(() => makeCharacter(
  20797. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20798. {
  20799. side: {
  20800. height: math.unit(30, "meters"),
  20801. weight: math.unit(700, "tonnes"),
  20802. name: "Side",
  20803. image: {
  20804. source: "./media/characters/fixerdragon/side.svg",
  20805. extra: (1293.0514 - 116.03) / 1106.86,
  20806. bottom: 116.03 / 1293.0514
  20807. }
  20808. },
  20809. },
  20810. [
  20811. {
  20812. name: "Planck",
  20813. height: math.unit(1.6e-35, "meters")
  20814. },
  20815. {
  20816. name: "Micro",
  20817. height: math.unit(0.4, "meters")
  20818. },
  20819. {
  20820. name: "Normal",
  20821. height: math.unit(30, "meters"),
  20822. default: true
  20823. },
  20824. {
  20825. name: "Megamacro",
  20826. height: math.unit(1.2, "megameters")
  20827. },
  20828. {
  20829. name: "Teramacro",
  20830. height: math.unit(130, "terameters")
  20831. },
  20832. {
  20833. name: "Yottamacro",
  20834. height: math.unit(6200, "yottameters")
  20835. },
  20836. ]
  20837. ));
  20838. characterMakers.push(() => makeCharacter(
  20839. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20840. {
  20841. front: {
  20842. height: math.unit(8, "feet"),
  20843. weight: math.unit(250, "lb"),
  20844. name: "Front",
  20845. image: {
  20846. source: "./media/characters/kite/front.svg",
  20847. extra: 2796 / 2659,
  20848. bottom: 0.002
  20849. }
  20850. },
  20851. },
  20852. [
  20853. {
  20854. name: "Normal",
  20855. height: math.unit(8, "feet"),
  20856. default: true
  20857. },
  20858. {
  20859. name: "Macro",
  20860. height: math.unit(360, "feet")
  20861. },
  20862. {
  20863. name: "Megamacro",
  20864. height: math.unit(1500, "feet")
  20865. },
  20866. ]
  20867. ))
  20868. characterMakers.push(() => makeCharacter(
  20869. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20870. {
  20871. front: {
  20872. height: math.unit(5 + 10 / 12, "feet"),
  20873. weight: math.unit(150, "lb"),
  20874. name: "Front",
  20875. image: {
  20876. source: "./media/characters/poojawa-vynar/front.svg",
  20877. extra: (1506.1547 - 55) / 1356.6,
  20878. bottom: 55 / 1506.1547
  20879. }
  20880. },
  20881. frontTailless: {
  20882. height: math.unit(5 + 10 / 12, "feet"),
  20883. weight: math.unit(150, "lb"),
  20884. name: "Front (Tailless)",
  20885. image: {
  20886. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20887. extra: (1506.1547 - 55) / 1356.6,
  20888. bottom: 55 / 1506.1547
  20889. }
  20890. },
  20891. },
  20892. [
  20893. {
  20894. name: "Normal",
  20895. height: math.unit(5 + 10 / 12, "feet"),
  20896. default: true
  20897. },
  20898. ]
  20899. ))
  20900. characterMakers.push(() => makeCharacter(
  20901. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20902. {
  20903. front: {
  20904. height: math.unit(293, "meters"),
  20905. weight: math.unit(70400, "tons"),
  20906. name: "Front",
  20907. image: {
  20908. source: "./media/characters/violette/front.svg",
  20909. extra: 1227 / 1180,
  20910. bottom: 0.005
  20911. }
  20912. },
  20913. back: {
  20914. height: math.unit(293, "meters"),
  20915. weight: math.unit(70400, "tons"),
  20916. name: "Back",
  20917. image: {
  20918. source: "./media/characters/violette/back.svg",
  20919. extra: 1227 / 1180,
  20920. bottom: 0.005
  20921. }
  20922. },
  20923. },
  20924. [
  20925. {
  20926. name: "Macro",
  20927. height: math.unit(293, "meters"),
  20928. default: true
  20929. },
  20930. ]
  20931. ))
  20932. characterMakers.push(() => makeCharacter(
  20933. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20934. {
  20935. front: {
  20936. height: math.unit(1050, "feet"),
  20937. weight: math.unit(200000, "tons"),
  20938. name: "Front",
  20939. image: {
  20940. source: "./media/characters/alessandra/front.svg",
  20941. extra: 960 / 912,
  20942. bottom: 0.06
  20943. }
  20944. },
  20945. },
  20946. [
  20947. {
  20948. name: "Macro",
  20949. height: math.unit(1050, "feet")
  20950. },
  20951. {
  20952. name: "Macro+",
  20953. height: math.unit(900, "meters"),
  20954. default: true
  20955. },
  20956. ]
  20957. ))
  20958. characterMakers.push(() => makeCharacter(
  20959. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20960. {
  20961. front: {
  20962. height: math.unit(5, "feet"),
  20963. weight: math.unit(187, "lb"),
  20964. name: "Front",
  20965. image: {
  20966. source: "./media/characters/person/front.svg",
  20967. extra: 3087 / 2945,
  20968. bottom: 91 / 3181
  20969. }
  20970. },
  20971. },
  20972. [
  20973. {
  20974. name: "Micro",
  20975. height: math.unit(3, "inches")
  20976. },
  20977. {
  20978. name: "Normal",
  20979. height: math.unit(5, "feet"),
  20980. default: true
  20981. },
  20982. {
  20983. name: "Macro",
  20984. height: math.unit(90, "feet")
  20985. },
  20986. {
  20987. name: "Max Size",
  20988. height: math.unit(280, "feet")
  20989. },
  20990. ]
  20991. ))
  20992. characterMakers.push(() => makeCharacter(
  20993. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20994. {
  20995. front: {
  20996. height: math.unit(4.5, "meters"),
  20997. weight: math.unit(3200, "lb"),
  20998. name: "Front",
  20999. image: {
  21000. source: "./media/characters/ty/front.svg",
  21001. extra: 1038 / 960,
  21002. bottom: 31.156 / 1068
  21003. }
  21004. },
  21005. back: {
  21006. height: math.unit(4.5, "meters"),
  21007. weight: math.unit(3200, "lb"),
  21008. name: "Back",
  21009. image: {
  21010. source: "./media/characters/ty/back.svg",
  21011. extra: 1044 / 966,
  21012. bottom: 7.48 / 1049
  21013. }
  21014. },
  21015. },
  21016. [
  21017. {
  21018. name: "Normal",
  21019. height: math.unit(4.5, "meters"),
  21020. default: true
  21021. },
  21022. ]
  21023. ))
  21024. characterMakers.push(() => makeCharacter(
  21025. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21026. {
  21027. front: {
  21028. height: math.unit(5 + 4 / 12, "feet"),
  21029. weight: math.unit(115, "lb"),
  21030. name: "Front",
  21031. image: {
  21032. source: "./media/characters/rocky/front.svg",
  21033. extra: 1012 / 975,
  21034. bottom: 54 / 1066
  21035. }
  21036. },
  21037. },
  21038. [
  21039. {
  21040. name: "Normal",
  21041. height: math.unit(5 + 4 / 12, "feet"),
  21042. default: true
  21043. },
  21044. ]
  21045. ))
  21046. characterMakers.push(() => makeCharacter(
  21047. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21048. {
  21049. upright: {
  21050. height: math.unit(6, "meters"),
  21051. weight: math.unit(4000, "kg"),
  21052. name: "Upright",
  21053. image: {
  21054. source: "./media/characters/ruin/upright.svg",
  21055. extra: 668 / 661,
  21056. bottom: 42 / 799.8396
  21057. }
  21058. },
  21059. },
  21060. [
  21061. {
  21062. name: "Normal",
  21063. height: math.unit(6, "meters"),
  21064. default: true
  21065. },
  21066. ]
  21067. ))
  21068. characterMakers.push(() => makeCharacter(
  21069. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21070. {
  21071. front: {
  21072. height: math.unit(5, "feet"),
  21073. weight: math.unit(106, "lb"),
  21074. name: "Front",
  21075. image: {
  21076. source: "./media/characters/robin/front.svg",
  21077. extra: 862 / 799,
  21078. bottom: 42.4 / 914.8856
  21079. }
  21080. },
  21081. },
  21082. [
  21083. {
  21084. name: "Normal",
  21085. height: math.unit(5, "feet"),
  21086. default: true
  21087. },
  21088. ]
  21089. ))
  21090. characterMakers.push(() => makeCharacter(
  21091. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21092. {
  21093. side: {
  21094. height: math.unit(3, "feet"),
  21095. weight: math.unit(225, "lb"),
  21096. name: "Side",
  21097. image: {
  21098. source: "./media/characters/saian/side.svg",
  21099. extra: 566 / 356,
  21100. bottom: 79.7 / 643
  21101. }
  21102. },
  21103. maw: {
  21104. height: math.unit(2.85, "feet"),
  21105. name: "Maw",
  21106. image: {
  21107. source: "./media/characters/saian/maw.svg"
  21108. }
  21109. },
  21110. },
  21111. [
  21112. {
  21113. name: "Normal",
  21114. height: math.unit(3, "feet"),
  21115. default: true
  21116. },
  21117. ]
  21118. ))
  21119. characterMakers.push(() => makeCharacter(
  21120. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21121. {
  21122. side: {
  21123. height: math.unit(8, "feet"),
  21124. weight: math.unit(300, "lb"),
  21125. name: "Side",
  21126. image: {
  21127. source: "./media/characters/equus-silvermane/side.svg",
  21128. extra: 2176 / 2050,
  21129. bottom: 65.7 / 2245
  21130. }
  21131. },
  21132. front: {
  21133. height: math.unit(8, "feet"),
  21134. weight: math.unit(300, "lb"),
  21135. name: "Front",
  21136. image: {
  21137. source: "./media/characters/equus-silvermane/front.svg",
  21138. extra: 4633 / 4400,
  21139. bottom: 71.3 / 4706.915
  21140. }
  21141. },
  21142. sideStepping: {
  21143. height: math.unit(8, "feet"),
  21144. weight: math.unit(300, "lb"),
  21145. name: "Side (Stepping)",
  21146. image: {
  21147. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21148. extra: 1968 / 1860,
  21149. bottom: 16.4 / 1989
  21150. }
  21151. },
  21152. },
  21153. [
  21154. {
  21155. name: "Normal",
  21156. height: math.unit(8, "feet")
  21157. },
  21158. {
  21159. name: "Minimacro",
  21160. height: math.unit(75, "feet"),
  21161. default: true
  21162. },
  21163. {
  21164. name: "Macro",
  21165. height: math.unit(150, "feet")
  21166. },
  21167. {
  21168. name: "Macro+",
  21169. height: math.unit(1000, "feet")
  21170. },
  21171. {
  21172. name: "Megamacro",
  21173. height: math.unit(1, "mile")
  21174. },
  21175. ]
  21176. ))
  21177. characterMakers.push(() => makeCharacter(
  21178. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21179. {
  21180. side: {
  21181. height: math.unit(20, "feet"),
  21182. weight: math.unit(30000, "kg"),
  21183. name: "Side",
  21184. image: {
  21185. source: "./media/characters/windar/side.svg",
  21186. extra: 1491 / 1248,
  21187. bottom: 82.56 / 1568
  21188. }
  21189. },
  21190. },
  21191. [
  21192. {
  21193. name: "Normal",
  21194. height: math.unit(20, "feet"),
  21195. default: true
  21196. },
  21197. ]
  21198. ))
  21199. characterMakers.push(() => makeCharacter(
  21200. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21201. {
  21202. side: {
  21203. height: math.unit(15.66, "feet"),
  21204. weight: math.unit(150, "lb"),
  21205. name: "Side",
  21206. image: {
  21207. source: "./media/characters/melody/side.svg",
  21208. extra: 1097 / 944,
  21209. bottom: 11.8 / 1109
  21210. }
  21211. },
  21212. sideOutfit: {
  21213. height: math.unit(15.66, "feet"),
  21214. weight: math.unit(150, "lb"),
  21215. name: "Side (Outfit)",
  21216. image: {
  21217. source: "./media/characters/melody/side-outfit.svg",
  21218. extra: 1097 / 944,
  21219. bottom: 11.8 / 1109
  21220. }
  21221. },
  21222. },
  21223. [
  21224. {
  21225. name: "Normal",
  21226. height: math.unit(15.66, "feet"),
  21227. default: true
  21228. },
  21229. ]
  21230. ))
  21231. characterMakers.push(() => makeCharacter(
  21232. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21233. {
  21234. front: {
  21235. height: math.unit(8, "feet"),
  21236. weight: math.unit(325, "lb"),
  21237. name: "Front",
  21238. image: {
  21239. source: "./media/characters/windera/front.svg",
  21240. extra: 3180 / 2845,
  21241. bottom: 178 / 3365
  21242. }
  21243. },
  21244. },
  21245. [
  21246. {
  21247. name: "Normal",
  21248. height: math.unit(8, "feet"),
  21249. default: true
  21250. },
  21251. ]
  21252. ))
  21253. characterMakers.push(() => makeCharacter(
  21254. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21255. {
  21256. front: {
  21257. height: math.unit(28.75, "feet"),
  21258. weight: math.unit(2000, "kg"),
  21259. name: "Front",
  21260. image: {
  21261. source: "./media/characters/sonear/front.svg",
  21262. extra: 1041.1 / 964.9,
  21263. bottom: 53.7 / 1096.6
  21264. }
  21265. },
  21266. },
  21267. [
  21268. {
  21269. name: "Normal",
  21270. height: math.unit(28.75, "feet"),
  21271. default: true
  21272. },
  21273. ]
  21274. ))
  21275. characterMakers.push(() => makeCharacter(
  21276. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21277. {
  21278. side: {
  21279. height: math.unit(25.5, "feet"),
  21280. weight: math.unit(23000, "kg"),
  21281. name: "Side",
  21282. image: {
  21283. source: "./media/characters/kanara/side.svg"
  21284. }
  21285. },
  21286. },
  21287. [
  21288. {
  21289. name: "Normal",
  21290. height: math.unit(25.5, "feet"),
  21291. default: true
  21292. },
  21293. ]
  21294. ))
  21295. characterMakers.push(() => makeCharacter(
  21296. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21297. {
  21298. side: {
  21299. height: math.unit(10, "feet"),
  21300. weight: math.unit(1000, "kg"),
  21301. name: "Side",
  21302. image: {
  21303. source: "./media/characters/ereus/side.svg",
  21304. extra: 1157 / 959,
  21305. bottom: 153 / 1312.5
  21306. }
  21307. },
  21308. },
  21309. [
  21310. {
  21311. name: "Normal",
  21312. height: math.unit(10, "feet"),
  21313. default: true
  21314. },
  21315. ]
  21316. ))
  21317. characterMakers.push(() => makeCharacter(
  21318. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21319. {
  21320. side: {
  21321. height: math.unit(4.5, "feet"),
  21322. weight: math.unit(500, "lb"),
  21323. name: "Side",
  21324. image: {
  21325. source: "./media/characters/e-ter/side.svg",
  21326. extra: 1550 / 1248,
  21327. bottom: 146 / 1694
  21328. }
  21329. },
  21330. },
  21331. [
  21332. {
  21333. name: "Normal",
  21334. height: math.unit(4.5, "feet"),
  21335. default: true
  21336. },
  21337. ]
  21338. ))
  21339. characterMakers.push(() => makeCharacter(
  21340. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21341. {
  21342. side: {
  21343. height: math.unit(9.7, "feet"),
  21344. weight: math.unit(4000, "kg"),
  21345. name: "Side",
  21346. image: {
  21347. source: "./media/characters/yamie/side.svg"
  21348. }
  21349. },
  21350. },
  21351. [
  21352. {
  21353. name: "Normal",
  21354. height: math.unit(9.7, "feet"),
  21355. default: true
  21356. },
  21357. ]
  21358. ))
  21359. characterMakers.push(() => makeCharacter(
  21360. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21361. {
  21362. front: {
  21363. height: math.unit(50, "feet"),
  21364. weight: math.unit(50000, "kg"),
  21365. name: "Front",
  21366. image: {
  21367. source: "./media/characters/anders/front.svg",
  21368. extra: 570 / 539,
  21369. bottom: 14.7 / 586.7
  21370. }
  21371. },
  21372. },
  21373. [
  21374. {
  21375. name: "Large",
  21376. height: math.unit(50, "feet")
  21377. },
  21378. {
  21379. name: "Macro",
  21380. height: math.unit(2000, "feet"),
  21381. default: true
  21382. },
  21383. {
  21384. name: "Megamacro",
  21385. height: math.unit(12, "miles")
  21386. },
  21387. ]
  21388. ))
  21389. characterMakers.push(() => makeCharacter(
  21390. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21391. {
  21392. front: {
  21393. height: math.unit(7 + 2 / 12, "feet"),
  21394. weight: math.unit(300, "lb"),
  21395. name: "Front",
  21396. image: {
  21397. source: "./media/characters/reban/front.svg",
  21398. extra: 516 / 487,
  21399. bottom: 42.82 / 558.356
  21400. }
  21401. },
  21402. dick: {
  21403. height: math.unit(7 / 5, "feet"),
  21404. name: "Dick",
  21405. image: {
  21406. source: "./media/characters/reban/dick.svg"
  21407. }
  21408. },
  21409. },
  21410. [
  21411. {
  21412. name: "Natural Height",
  21413. height: math.unit(7 + 2 / 12, "feet")
  21414. },
  21415. {
  21416. name: "Macro",
  21417. height: math.unit(500, "feet"),
  21418. default: true
  21419. },
  21420. {
  21421. name: "Canon Height",
  21422. height: math.unit(50, "AU")
  21423. },
  21424. ]
  21425. ))
  21426. characterMakers.push(() => makeCharacter(
  21427. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21428. {
  21429. front: {
  21430. height: math.unit(6, "feet"),
  21431. weight: math.unit(150, "lb"),
  21432. name: "Front",
  21433. image: {
  21434. source: "./media/characters/terrance-keayes/front.svg",
  21435. extra: 1.005,
  21436. bottom: 151 / 1615
  21437. }
  21438. },
  21439. side: {
  21440. height: math.unit(6, "feet"),
  21441. weight: math.unit(150, "lb"),
  21442. name: "Side",
  21443. image: {
  21444. source: "./media/characters/terrance-keayes/side.svg",
  21445. extra: 1.005,
  21446. bottom: 129.4 / 1544
  21447. }
  21448. },
  21449. back: {
  21450. height: math.unit(6, "feet"),
  21451. weight: math.unit(150, "lb"),
  21452. name: "Back",
  21453. image: {
  21454. source: "./media/characters/terrance-keayes/back.svg",
  21455. extra: 1.005,
  21456. bottom: 58.4 / 1557.3
  21457. }
  21458. },
  21459. dick: {
  21460. height: math.unit(6 * 0.208, "feet"),
  21461. name: "Dick",
  21462. image: {
  21463. source: "./media/characters/terrance-keayes/dick.svg"
  21464. }
  21465. },
  21466. },
  21467. [
  21468. {
  21469. name: "Canon Height",
  21470. height: math.unit(35, "miles"),
  21471. default: true
  21472. },
  21473. ]
  21474. ))
  21475. characterMakers.push(() => makeCharacter(
  21476. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21477. {
  21478. front: {
  21479. height: math.unit(6, "feet"),
  21480. weight: math.unit(150, "lb"),
  21481. name: "Front",
  21482. image: {
  21483. source: "./media/characters/ofelia/front.svg",
  21484. extra: 546 / 541,
  21485. bottom: 39 / 583
  21486. }
  21487. },
  21488. back: {
  21489. height: math.unit(6, "feet"),
  21490. weight: math.unit(150, "lb"),
  21491. name: "Back",
  21492. image: {
  21493. source: "./media/characters/ofelia/back.svg",
  21494. extra: 564 / 559.5,
  21495. bottom: 8.69 / 573.02
  21496. }
  21497. },
  21498. maw: {
  21499. height: math.unit(1, "feet"),
  21500. name: "Maw",
  21501. image: {
  21502. source: "./media/characters/ofelia/maw.svg"
  21503. }
  21504. },
  21505. foot: {
  21506. height: math.unit(1.949, "feet"),
  21507. name: "Foot",
  21508. image: {
  21509. source: "./media/characters/ofelia/foot.svg"
  21510. }
  21511. },
  21512. },
  21513. [
  21514. {
  21515. name: "Canon Height",
  21516. height: math.unit(2000, "miles"),
  21517. default: true
  21518. },
  21519. ]
  21520. ))
  21521. characterMakers.push(() => makeCharacter(
  21522. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21523. {
  21524. front: {
  21525. height: math.unit(6, "feet"),
  21526. weight: math.unit(150, "lb"),
  21527. name: "Front",
  21528. image: {
  21529. source: "./media/characters/samuel/front.svg",
  21530. extra: 265 / 258,
  21531. bottom: 2 / 266.1566
  21532. }
  21533. },
  21534. },
  21535. [
  21536. {
  21537. name: "Macro",
  21538. height: math.unit(100, "feet"),
  21539. default: true
  21540. },
  21541. {
  21542. name: "Full Size",
  21543. height: math.unit(1000, "miles")
  21544. },
  21545. ]
  21546. ))
  21547. characterMakers.push(() => makeCharacter(
  21548. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21549. {
  21550. front: {
  21551. height: math.unit(6, "feet"),
  21552. weight: math.unit(300, "lb"),
  21553. name: "Front",
  21554. image: {
  21555. source: "./media/characters/beishir-kiel/front.svg",
  21556. extra: 569 / 547,
  21557. bottom: 41.9 / 609
  21558. }
  21559. },
  21560. maw: {
  21561. height: math.unit(6 * 0.202, "feet"),
  21562. name: "Maw",
  21563. image: {
  21564. source: "./media/characters/beishir-kiel/maw.svg"
  21565. }
  21566. },
  21567. },
  21568. [
  21569. {
  21570. name: "Macro",
  21571. height: math.unit(300, "feet"),
  21572. default: true
  21573. },
  21574. ]
  21575. ))
  21576. characterMakers.push(() => makeCharacter(
  21577. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21578. {
  21579. front: {
  21580. height: math.unit(5 + 8 / 12, "feet"),
  21581. weight: math.unit(120, "lb"),
  21582. name: "Front",
  21583. image: {
  21584. source: "./media/characters/logan-grey/front.svg",
  21585. extra: 2539 / 2393,
  21586. bottom: 97.6 / 2636.37
  21587. }
  21588. },
  21589. frontAlt: {
  21590. height: math.unit(5 + 8 / 12, "feet"),
  21591. weight: math.unit(120, "lb"),
  21592. name: "Front (Alt)",
  21593. image: {
  21594. source: "./media/characters/logan-grey/front-alt.svg",
  21595. extra: 958 / 893,
  21596. bottom: 15 / 970.768
  21597. }
  21598. },
  21599. back: {
  21600. height: math.unit(5 + 8 / 12, "feet"),
  21601. weight: math.unit(120, "lb"),
  21602. name: "Back",
  21603. image: {
  21604. source: "./media/characters/logan-grey/back.svg",
  21605. extra: 958 / 893,
  21606. bottom: 2.1881 / 970.9788
  21607. }
  21608. },
  21609. dick: {
  21610. height: math.unit(1.437, "feet"),
  21611. name: "Dick",
  21612. image: {
  21613. source: "./media/characters/logan-grey/dick.svg"
  21614. }
  21615. },
  21616. },
  21617. [
  21618. {
  21619. name: "Normal",
  21620. height: math.unit(5 + 8 / 12, "feet")
  21621. },
  21622. {
  21623. name: "The 500 Foot Femboy",
  21624. height: math.unit(500, "feet"),
  21625. default: true
  21626. },
  21627. {
  21628. name: "Megmacro",
  21629. height: math.unit(20, "miles")
  21630. },
  21631. ]
  21632. ))
  21633. characterMakers.push(() => makeCharacter(
  21634. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21635. {
  21636. front: {
  21637. height: math.unit(8 + 2 / 12, "feet"),
  21638. weight: math.unit(275, "lb"),
  21639. name: "Front",
  21640. image: {
  21641. source: "./media/characters/draganta/front.svg",
  21642. extra: 1177 / 1135,
  21643. bottom: 33.46 / 1212.1
  21644. }
  21645. },
  21646. },
  21647. [
  21648. {
  21649. name: "Normal",
  21650. height: math.unit(8 + 6 / 12, "feet"),
  21651. default: true
  21652. },
  21653. {
  21654. name: "Macro",
  21655. height: math.unit(150, "feet")
  21656. },
  21657. {
  21658. name: "Megamacro",
  21659. height: math.unit(1000, "miles")
  21660. },
  21661. ]
  21662. ))
  21663. characterMakers.push(() => makeCharacter(
  21664. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21665. {
  21666. front: {
  21667. height: math.unit(1.72, "m"),
  21668. weight: math.unit(80, "lb"),
  21669. name: "Front",
  21670. image: {
  21671. source: "./media/characters/voski/front.svg",
  21672. extra: 2076.22 / 2022.4,
  21673. bottom: 102.7 / 2177.3866
  21674. }
  21675. },
  21676. frontNsfw: {
  21677. height: math.unit(1.72, "m"),
  21678. weight: math.unit(80, "lb"),
  21679. name: "Front (NSFW)",
  21680. image: {
  21681. source: "./media/characters/voski/front-nsfw.svg",
  21682. extra: 2076.22 / 2022.4,
  21683. bottom: 102.7 / 2177.3866
  21684. }
  21685. },
  21686. back: {
  21687. height: math.unit(1.72, "m"),
  21688. weight: math.unit(80, "lb"),
  21689. name: "Back",
  21690. image: {
  21691. source: "./media/characters/voski/back.svg",
  21692. extra: 2104 / 2051,
  21693. bottom: 10.45 / 2113.63
  21694. }
  21695. },
  21696. },
  21697. [
  21698. {
  21699. name: "Normal",
  21700. height: math.unit(1.72, "m")
  21701. },
  21702. {
  21703. name: "Macro",
  21704. height: math.unit(55, "m"),
  21705. default: true
  21706. },
  21707. {
  21708. name: "Macro+",
  21709. height: math.unit(300, "m")
  21710. },
  21711. {
  21712. name: "Macro++",
  21713. height: math.unit(700, "m")
  21714. },
  21715. {
  21716. name: "Macro+++",
  21717. height: math.unit(4500, "m")
  21718. },
  21719. {
  21720. name: "Macro++++",
  21721. height: math.unit(45, "km")
  21722. },
  21723. {
  21724. name: "Macro+++++",
  21725. height: math.unit(1220, "km")
  21726. },
  21727. ]
  21728. ))
  21729. characterMakers.push(() => makeCharacter(
  21730. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21731. {
  21732. front: {
  21733. height: math.unit(2.3, "m"),
  21734. weight: math.unit(304, "kg"),
  21735. name: "Front",
  21736. image: {
  21737. source: "./media/characters/icowom-lee/front.svg",
  21738. extra: 985 / 955,
  21739. bottom: 25.4 / 1012
  21740. }
  21741. },
  21742. fronttentacles: {
  21743. height: math.unit(2.3, "m"),
  21744. weight: math.unit(304, "kg"),
  21745. name: "Front-tentacles",
  21746. image: {
  21747. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21748. extra: 985 / 955,
  21749. bottom: 25.4 / 1012
  21750. }
  21751. },
  21752. back: {
  21753. height: math.unit(2.3, "m"),
  21754. weight: math.unit(304, "kg"),
  21755. name: "Back",
  21756. image: {
  21757. source: "./media/characters/icowom-lee/back.svg",
  21758. extra: 975 / 954,
  21759. bottom: 9.5 / 985
  21760. }
  21761. },
  21762. backtentacles: {
  21763. height: math.unit(2.3, "m"),
  21764. weight: math.unit(304, "kg"),
  21765. name: "Back-tentacles",
  21766. image: {
  21767. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21768. extra: 975 / 954,
  21769. bottom: 9.5 / 985
  21770. }
  21771. },
  21772. frontDressed: {
  21773. height: math.unit(2.3, "m"),
  21774. weight: math.unit(304, "kg"),
  21775. name: "Front (Dressed)",
  21776. image: {
  21777. source: "./media/characters/icowom-lee/front-dressed.svg",
  21778. extra: 3076 / 2933,
  21779. bottom: 51.4 / 3125.1889
  21780. }
  21781. },
  21782. rump: {
  21783. height: math.unit(0.776, "meters"),
  21784. name: "Rump",
  21785. image: {
  21786. source: "./media/characters/icowom-lee/rump.svg"
  21787. }
  21788. },
  21789. genitals: {
  21790. height: math.unit(0.78, "meters"),
  21791. name: "Genitals",
  21792. image: {
  21793. source: "./media/characters/icowom-lee/genitals.svg"
  21794. }
  21795. },
  21796. },
  21797. [
  21798. {
  21799. name: "Normal",
  21800. height: math.unit(2.3, "meters"),
  21801. default: true
  21802. },
  21803. {
  21804. name: "Macro",
  21805. height: math.unit(94, "meters"),
  21806. default: true
  21807. },
  21808. ]
  21809. ))
  21810. characterMakers.push(() => makeCharacter(
  21811. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21812. {
  21813. front: {
  21814. height: math.unit(22, "meters"),
  21815. weight: math.unit(21000, "kg"),
  21816. name: "Front",
  21817. image: {
  21818. source: "./media/characters/shock-diamond/front.svg",
  21819. extra: 2204 / 2053,
  21820. bottom: 65 / 2239.47
  21821. }
  21822. },
  21823. frontNude: {
  21824. height: math.unit(22, "meters"),
  21825. weight: math.unit(21000, "kg"),
  21826. name: "Front (Nude)",
  21827. image: {
  21828. source: "./media/characters/shock-diamond/front-nude.svg",
  21829. extra: 2514 / 2285,
  21830. bottom: 13 / 2527.56
  21831. }
  21832. },
  21833. },
  21834. [
  21835. {
  21836. name: "Normal",
  21837. height: math.unit(3, "meters")
  21838. },
  21839. {
  21840. name: "Macro",
  21841. height: math.unit(22, "meters"),
  21842. default: true
  21843. },
  21844. ]
  21845. ))
  21846. characterMakers.push(() => makeCharacter(
  21847. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21848. {
  21849. front: {
  21850. height: math.unit(5 + 4 / 12, "feet"),
  21851. weight: math.unit(120, "lb"),
  21852. name: "Front",
  21853. image: {
  21854. source: "./media/characters/rory/front.svg",
  21855. extra: 589 / 556,
  21856. bottom: 45.7 / 635.76
  21857. }
  21858. },
  21859. frontNude: {
  21860. height: math.unit(5 + 4 / 12, "feet"),
  21861. weight: math.unit(120, "lb"),
  21862. name: "Front (Nude)",
  21863. image: {
  21864. source: "./media/characters/rory/front-nude.svg",
  21865. extra: 589 / 556,
  21866. bottom: 45.7 / 635.76
  21867. }
  21868. },
  21869. side: {
  21870. height: math.unit(5 + 4 / 12, "feet"),
  21871. weight: math.unit(120, "lb"),
  21872. name: "Side",
  21873. image: {
  21874. source: "./media/characters/rory/side.svg",
  21875. extra: 597 / 564,
  21876. bottom: 55 / 653
  21877. }
  21878. },
  21879. back: {
  21880. height: math.unit(5 + 4 / 12, "feet"),
  21881. weight: math.unit(120, "lb"),
  21882. name: "Back",
  21883. image: {
  21884. source: "./media/characters/rory/back.svg",
  21885. extra: 620 / 585,
  21886. bottom: 8.86 / 630.43
  21887. }
  21888. },
  21889. dick: {
  21890. height: math.unit(0.86, "feet"),
  21891. name: "Dick",
  21892. image: {
  21893. source: "./media/characters/rory/dick.svg"
  21894. }
  21895. },
  21896. },
  21897. [
  21898. {
  21899. name: "Normal",
  21900. height: math.unit(5 + 4 / 12, "feet"),
  21901. default: true
  21902. },
  21903. {
  21904. name: "Macro",
  21905. height: math.unit(100, "feet")
  21906. },
  21907. {
  21908. name: "Macro+",
  21909. height: math.unit(140, "feet")
  21910. },
  21911. {
  21912. name: "Macro++",
  21913. height: math.unit(300, "feet")
  21914. },
  21915. ]
  21916. ))
  21917. characterMakers.push(() => makeCharacter(
  21918. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21919. {
  21920. front: {
  21921. height: math.unit(5 + 9 / 12, "feet"),
  21922. weight: math.unit(190, "lb"),
  21923. name: "Front",
  21924. image: {
  21925. source: "./media/characters/sprisk/front.svg",
  21926. extra: 1225 / 1180,
  21927. bottom: 42.7 / 1266.4
  21928. }
  21929. },
  21930. frontNsfw: {
  21931. height: math.unit(5 + 9 / 12, "feet"),
  21932. weight: math.unit(190, "lb"),
  21933. name: "Front (NSFW)",
  21934. image: {
  21935. source: "./media/characters/sprisk/front-nsfw.svg",
  21936. extra: 1225 / 1180,
  21937. bottom: 42.7 / 1266.4
  21938. }
  21939. },
  21940. back: {
  21941. height: math.unit(5 + 9 / 12, "feet"),
  21942. weight: math.unit(190, "lb"),
  21943. name: "Back",
  21944. image: {
  21945. source: "./media/characters/sprisk/back.svg",
  21946. extra: 1247 / 1200,
  21947. bottom: 5.6 / 1253.04
  21948. }
  21949. },
  21950. },
  21951. [
  21952. {
  21953. name: "Tiny",
  21954. height: math.unit(2, "inches")
  21955. },
  21956. {
  21957. name: "Normal",
  21958. height: math.unit(5 + 9 / 12, "feet"),
  21959. default: true
  21960. },
  21961. {
  21962. name: "Mini Macro",
  21963. height: math.unit(18, "feet")
  21964. },
  21965. {
  21966. name: "Macro",
  21967. height: math.unit(100, "feet")
  21968. },
  21969. {
  21970. name: "MACRO",
  21971. height: math.unit(50, "miles")
  21972. },
  21973. {
  21974. name: "M A C R O",
  21975. height: math.unit(300, "miles")
  21976. },
  21977. ]
  21978. ))
  21979. characterMakers.push(() => makeCharacter(
  21980. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21981. {
  21982. side: {
  21983. height: math.unit(15.6, "meters"),
  21984. weight: math.unit(700000, "kg"),
  21985. name: "Side",
  21986. image: {
  21987. source: "./media/characters/bunsen/side.svg",
  21988. extra: 1644 / 358
  21989. }
  21990. },
  21991. foot: {
  21992. height: math.unit(1.611 * 1644 / 358, "meter"),
  21993. name: "Foot",
  21994. image: {
  21995. source: "./media/characters/bunsen/foot.svg"
  21996. }
  21997. },
  21998. },
  21999. [
  22000. {
  22001. name: "Small",
  22002. height: math.unit(10, "feet")
  22003. },
  22004. {
  22005. name: "Normal",
  22006. height: math.unit(15.6, "meters"),
  22007. default: true
  22008. },
  22009. ]
  22010. ))
  22011. characterMakers.push(() => makeCharacter(
  22012. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22013. {
  22014. front: {
  22015. height: math.unit(4 + 11 / 12, "feet"),
  22016. weight: math.unit(140, "lb"),
  22017. name: "Front",
  22018. image: {
  22019. source: "./media/characters/sesh/front.svg",
  22020. extra: 3420 / 3231,
  22021. bottom: 72 / 3949.5
  22022. }
  22023. },
  22024. },
  22025. [
  22026. {
  22027. name: "Normal",
  22028. height: math.unit(4 + 11 / 12, "feet")
  22029. },
  22030. {
  22031. name: "Grown",
  22032. height: math.unit(15, "feet"),
  22033. default: true
  22034. },
  22035. {
  22036. name: "Macro",
  22037. height: math.unit(1500, "feet")
  22038. },
  22039. {
  22040. name: "Megamacro",
  22041. height: math.unit(30, "miles")
  22042. },
  22043. {
  22044. name: "Continental",
  22045. height: math.unit(3000, "miles")
  22046. },
  22047. {
  22048. name: "Gravity Mass",
  22049. height: math.unit(300000, "miles")
  22050. },
  22051. {
  22052. name: "Planet Buster",
  22053. height: math.unit(30000000, "miles")
  22054. },
  22055. {
  22056. name: "Big",
  22057. height: math.unit(3000000000, "miles")
  22058. },
  22059. ]
  22060. ))
  22061. characterMakers.push(() => makeCharacter(
  22062. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22063. {
  22064. front: {
  22065. height: math.unit(9, "feet"),
  22066. weight: math.unit(350, "lb"),
  22067. name: "Front",
  22068. image: {
  22069. source: "./media/characters/pepper/front.svg",
  22070. extra: 1448 / 1312,
  22071. bottom: 9.4 / 1457.88
  22072. }
  22073. },
  22074. back: {
  22075. height: math.unit(9, "feet"),
  22076. weight: math.unit(350, "lb"),
  22077. name: "Back",
  22078. image: {
  22079. source: "./media/characters/pepper/back.svg",
  22080. extra: 1423 / 1300,
  22081. bottom: 4.6 / 1429
  22082. }
  22083. },
  22084. maw: {
  22085. height: math.unit(0.932, "feet"),
  22086. name: "Maw",
  22087. image: {
  22088. source: "./media/characters/pepper/maw.svg"
  22089. }
  22090. },
  22091. },
  22092. [
  22093. {
  22094. name: "Normal",
  22095. height: math.unit(9, "feet"),
  22096. default: true
  22097. },
  22098. ]
  22099. ))
  22100. characterMakers.push(() => makeCharacter(
  22101. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22102. {
  22103. front: {
  22104. height: math.unit(6, "feet"),
  22105. weight: math.unit(150, "lb"),
  22106. name: "Front",
  22107. image: {
  22108. source: "./media/characters/maelstrom/front.svg",
  22109. extra: 2100 / 1883,
  22110. bottom: 94 / 2196.7
  22111. }
  22112. },
  22113. },
  22114. [
  22115. {
  22116. name: "Less Kaiju",
  22117. height: math.unit(200, "feet")
  22118. },
  22119. {
  22120. name: "Kaiju",
  22121. height: math.unit(400, "feet"),
  22122. default: true
  22123. },
  22124. {
  22125. name: "Kaiju-er",
  22126. height: math.unit(600, "feet")
  22127. },
  22128. ]
  22129. ))
  22130. characterMakers.push(() => makeCharacter(
  22131. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22132. {
  22133. front: {
  22134. height: math.unit(6 + 5 / 12, "feet"),
  22135. weight: math.unit(180, "lb"),
  22136. name: "Front",
  22137. image: {
  22138. source: "./media/characters/lexir/front.svg",
  22139. extra: 180 / 172,
  22140. bottom: 12 / 192
  22141. }
  22142. },
  22143. back: {
  22144. height: math.unit(6 + 5 / 12, "feet"),
  22145. weight: math.unit(180, "lb"),
  22146. name: "Back",
  22147. image: {
  22148. source: "./media/characters/lexir/back.svg",
  22149. extra: 183.84 / 175.5,
  22150. bottom: 3.1 / 187
  22151. }
  22152. },
  22153. },
  22154. [
  22155. {
  22156. name: "Very Smal",
  22157. height: math.unit(1, "nm")
  22158. },
  22159. {
  22160. name: "Normal",
  22161. height: math.unit(6 + 5 / 12, "feet"),
  22162. default: true
  22163. },
  22164. {
  22165. name: "Macro",
  22166. height: math.unit(1, "mile")
  22167. },
  22168. {
  22169. name: "Megamacro",
  22170. height: math.unit(50, "miles")
  22171. },
  22172. ]
  22173. ))
  22174. characterMakers.push(() => makeCharacter(
  22175. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22176. {
  22177. front: {
  22178. height: math.unit(1.5, "meters"),
  22179. weight: math.unit(100, "lb"),
  22180. name: "Front",
  22181. image: {
  22182. source: "./media/characters/maksio/front.svg",
  22183. extra: 1549 / 1531,
  22184. bottom: 123.7 / 1674.5429
  22185. }
  22186. },
  22187. back: {
  22188. height: math.unit(1.5, "meters"),
  22189. weight: math.unit(100, "lb"),
  22190. name: "Back",
  22191. image: {
  22192. source: "./media/characters/maksio/back.svg",
  22193. extra: 1541 / 1509,
  22194. bottom: 97 / 1639
  22195. }
  22196. },
  22197. hand: {
  22198. height: math.unit(0.621, "feet"),
  22199. name: "Hand",
  22200. image: {
  22201. source: "./media/characters/maksio/hand.svg"
  22202. }
  22203. },
  22204. foot: {
  22205. height: math.unit(1.611, "feet"),
  22206. name: "Foot",
  22207. image: {
  22208. source: "./media/characters/maksio/foot.svg"
  22209. }
  22210. },
  22211. },
  22212. [
  22213. {
  22214. name: "Shrunken",
  22215. height: math.unit(10, "cm")
  22216. },
  22217. {
  22218. name: "Normal",
  22219. height: math.unit(150, "cm"),
  22220. default: true
  22221. },
  22222. ]
  22223. ))
  22224. characterMakers.push(() => makeCharacter(
  22225. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22226. {
  22227. front: {
  22228. height: math.unit(100, "feet"),
  22229. name: "Front",
  22230. image: {
  22231. source: "./media/characters/erza-bear/front.svg",
  22232. extra: 2449 / 2390,
  22233. bottom: 46 / 2494
  22234. }
  22235. },
  22236. back: {
  22237. height: math.unit(100, "feet"),
  22238. name: "Back",
  22239. image: {
  22240. source: "./media/characters/erza-bear/back.svg",
  22241. extra: 2489 / 2430,
  22242. bottom: 85.4 / 2480
  22243. }
  22244. },
  22245. tail: {
  22246. height: math.unit(42, "feet"),
  22247. name: "Tail",
  22248. image: {
  22249. source: "./media/characters/erza-bear/tail.svg"
  22250. }
  22251. },
  22252. tongue: {
  22253. height: math.unit(8, "feet"),
  22254. name: "Tongue",
  22255. image: {
  22256. source: "./media/characters/erza-bear/tongue.svg"
  22257. }
  22258. },
  22259. dick: {
  22260. height: math.unit(10.5, "feet"),
  22261. name: "Dick",
  22262. image: {
  22263. source: "./media/characters/erza-bear/dick.svg"
  22264. }
  22265. },
  22266. dickVertical: {
  22267. height: math.unit(16.9, "feet"),
  22268. name: "Dick (Vertical)",
  22269. image: {
  22270. source: "./media/characters/erza-bear/dick-vertical.svg"
  22271. }
  22272. },
  22273. },
  22274. [
  22275. {
  22276. name: "Macro",
  22277. height: math.unit(100, "feet"),
  22278. default: true
  22279. },
  22280. ]
  22281. ))
  22282. characterMakers.push(() => makeCharacter(
  22283. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22284. {
  22285. front: {
  22286. height: math.unit(172, "cm"),
  22287. weight: math.unit(73, "kg"),
  22288. name: "Front",
  22289. image: {
  22290. source: "./media/characters/violet-flor/front.svg",
  22291. extra: 1530 / 1442,
  22292. bottom: 61.9 / 1588.8
  22293. }
  22294. },
  22295. back: {
  22296. height: math.unit(180, "cm"),
  22297. weight: math.unit(73, "kg"),
  22298. name: "Back",
  22299. image: {
  22300. source: "./media/characters/violet-flor/back.svg",
  22301. extra: 1692 / 1630,
  22302. bottom: 20 / 1712
  22303. }
  22304. },
  22305. },
  22306. [
  22307. {
  22308. name: "Normal",
  22309. height: math.unit(172, "cm"),
  22310. default: true
  22311. },
  22312. ]
  22313. ))
  22314. characterMakers.push(() => makeCharacter(
  22315. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22316. {
  22317. front: {
  22318. height: math.unit(6, "feet"),
  22319. weight: math.unit(220, "lb"),
  22320. name: "Front",
  22321. image: {
  22322. source: "./media/characters/lynn-rhea/front.svg",
  22323. extra: 310 / 273
  22324. }
  22325. },
  22326. back: {
  22327. height: math.unit(6, "feet"),
  22328. weight: math.unit(220, "lb"),
  22329. name: "Back",
  22330. image: {
  22331. source: "./media/characters/lynn-rhea/back.svg",
  22332. extra: 310 / 273
  22333. }
  22334. },
  22335. dicks: {
  22336. height: math.unit(0.9, "feet"),
  22337. name: "Dicks",
  22338. image: {
  22339. source: "./media/characters/lynn-rhea/dicks.svg"
  22340. }
  22341. },
  22342. slit: {
  22343. height: math.unit(0.4, "feet"),
  22344. name: "Slit",
  22345. image: {
  22346. source: "./media/characters/lynn-rhea/slit.svg"
  22347. }
  22348. },
  22349. },
  22350. [
  22351. {
  22352. name: "Micro",
  22353. height: math.unit(1, "inch")
  22354. },
  22355. {
  22356. name: "Macro",
  22357. height: math.unit(60, "feet"),
  22358. default: true
  22359. },
  22360. {
  22361. name: "Megamacro",
  22362. height: math.unit(2, "miles")
  22363. },
  22364. {
  22365. name: "Gigamacro",
  22366. height: math.unit(3, "earths")
  22367. },
  22368. {
  22369. name: "Galactic",
  22370. height: math.unit(0.8, "galaxies")
  22371. },
  22372. ]
  22373. ))
  22374. characterMakers.push(() => makeCharacter(
  22375. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22376. {
  22377. front: {
  22378. height: math.unit(1600, "feet"),
  22379. weight: math.unit(85758785169, "kg"),
  22380. name: "Front",
  22381. image: {
  22382. source: "./media/characters/valathos/front.svg",
  22383. extra: 1451 / 1339
  22384. }
  22385. },
  22386. },
  22387. [
  22388. {
  22389. name: "Macro",
  22390. height: math.unit(1600, "feet"),
  22391. default: true
  22392. },
  22393. ]
  22394. ))
  22395. characterMakers.push(() => makeCharacter(
  22396. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22397. {
  22398. front: {
  22399. height: math.unit(7 + 5 / 12, "feet"),
  22400. weight: math.unit(300, "lb"),
  22401. name: "Front",
  22402. image: {
  22403. source: "./media/characters/azula/front.svg",
  22404. extra: 3208 / 2880,
  22405. bottom: 80.2 / 3277
  22406. }
  22407. },
  22408. back: {
  22409. height: math.unit(7 + 5 / 12, "feet"),
  22410. weight: math.unit(300, "lb"),
  22411. name: "Back",
  22412. image: {
  22413. source: "./media/characters/azula/back.svg",
  22414. extra: 3169 / 2822,
  22415. bottom: 150.6 / 3321
  22416. }
  22417. },
  22418. },
  22419. [
  22420. {
  22421. name: "Normal",
  22422. height: math.unit(7 + 5 / 12, "feet"),
  22423. default: true
  22424. },
  22425. {
  22426. name: "Big",
  22427. height: math.unit(20, "feet")
  22428. },
  22429. ]
  22430. ))
  22431. characterMakers.push(() => makeCharacter(
  22432. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22433. {
  22434. front: {
  22435. height: math.unit(5 + 1 / 12, "feet"),
  22436. weight: math.unit(110, "lb"),
  22437. name: "Front",
  22438. image: {
  22439. source: "./media/characters/rupert/front.svg",
  22440. extra: 1549 / 1495,
  22441. bottom: 54.2 / 1604.4
  22442. }
  22443. },
  22444. },
  22445. [
  22446. {
  22447. name: "Normal",
  22448. height: math.unit(5 + 1 / 12, "feet"),
  22449. default: true
  22450. },
  22451. ]
  22452. ))
  22453. characterMakers.push(() => makeCharacter(
  22454. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22455. {
  22456. front: {
  22457. height: math.unit(8 + 4 / 12, "feet"),
  22458. weight: math.unit(350, "lb"),
  22459. name: "Front",
  22460. image: {
  22461. source: "./media/characters/sheera-castellar/front.svg",
  22462. extra: 1957 / 1894,
  22463. bottom: 26.97 / 1975.017
  22464. }
  22465. },
  22466. side: {
  22467. height: math.unit(8 + 4 / 12, "feet"),
  22468. weight: math.unit(350, "lb"),
  22469. name: "Side",
  22470. image: {
  22471. source: "./media/characters/sheera-castellar/side.svg",
  22472. extra: 1957 / 1894
  22473. }
  22474. },
  22475. back: {
  22476. height: math.unit(8 + 4 / 12, "feet"),
  22477. weight: math.unit(350, "lb"),
  22478. name: "Back",
  22479. image: {
  22480. source: "./media/characters/sheera-castellar/back.svg",
  22481. extra: 1957 / 1894
  22482. }
  22483. },
  22484. angled: {
  22485. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22486. weight: math.unit(350, "lb"),
  22487. name: "Angled",
  22488. image: {
  22489. source: "./media/characters/sheera-castellar/angled.svg",
  22490. extra: 1807 / 1707,
  22491. bottom: 68 / 1875
  22492. }
  22493. },
  22494. genitals: {
  22495. height: math.unit(2.2, "feet"),
  22496. name: "Genitals",
  22497. image: {
  22498. source: "./media/characters/sheera-castellar/genitals.svg"
  22499. }
  22500. },
  22501. },
  22502. [
  22503. {
  22504. name: "Normal",
  22505. height: math.unit(8 + 4 / 12, "feet")
  22506. },
  22507. {
  22508. name: "Macro",
  22509. height: math.unit(150, "feet"),
  22510. default: true
  22511. },
  22512. {
  22513. name: "Macro+",
  22514. height: math.unit(800, "feet")
  22515. },
  22516. ]
  22517. ))
  22518. characterMakers.push(() => makeCharacter(
  22519. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22520. {
  22521. front: {
  22522. height: math.unit(6, "feet"),
  22523. weight: math.unit(150, "lb"),
  22524. name: "Front",
  22525. image: {
  22526. source: "./media/characters/jaipur/front.svg",
  22527. extra: 3860 / 3731,
  22528. bottom: 287 / 4140
  22529. }
  22530. },
  22531. back: {
  22532. height: math.unit(6, "feet"),
  22533. weight: math.unit(150, "lb"),
  22534. name: "Back",
  22535. image: {
  22536. source: "./media/characters/jaipur/back.svg",
  22537. extra: 4060 / 3930,
  22538. bottom: 151 / 4200
  22539. }
  22540. },
  22541. },
  22542. [
  22543. {
  22544. name: "Normal",
  22545. height: math.unit(1.85, "meters"),
  22546. default: true
  22547. },
  22548. {
  22549. name: "Macro",
  22550. height: math.unit(150, "meters")
  22551. },
  22552. {
  22553. name: "Macro+",
  22554. height: math.unit(0.5, "miles")
  22555. },
  22556. {
  22557. name: "Macro++",
  22558. height: math.unit(2.5, "miles")
  22559. },
  22560. {
  22561. name: "Macro+++",
  22562. height: math.unit(12, "miles")
  22563. },
  22564. {
  22565. name: "Macro++++",
  22566. height: math.unit(120, "miles")
  22567. },
  22568. {
  22569. name: "Macro+++++",
  22570. height: math.unit(1200, "miles")
  22571. },
  22572. ]
  22573. ))
  22574. characterMakers.push(() => makeCharacter(
  22575. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22576. {
  22577. front: {
  22578. height: math.unit(6, "feet"),
  22579. weight: math.unit(150, "lb"),
  22580. name: "Front",
  22581. image: {
  22582. source: "./media/characters/sheila-wolf/front.svg",
  22583. extra: 1931 / 1808,
  22584. bottom: 29.5 / 1960
  22585. }
  22586. },
  22587. dick: {
  22588. height: math.unit(1.464, "feet"),
  22589. name: "Dick",
  22590. image: {
  22591. source: "./media/characters/sheila-wolf/dick.svg"
  22592. }
  22593. },
  22594. muzzle: {
  22595. height: math.unit(0.513, "feet"),
  22596. name: "Muzzle",
  22597. image: {
  22598. source: "./media/characters/sheila-wolf/muzzle.svg"
  22599. }
  22600. },
  22601. },
  22602. [
  22603. {
  22604. name: "Macro",
  22605. height: math.unit(70, "feet"),
  22606. default: true
  22607. },
  22608. ]
  22609. ))
  22610. characterMakers.push(() => makeCharacter(
  22611. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22612. {
  22613. front: {
  22614. height: math.unit(32, "meters"),
  22615. weight: math.unit(300000, "kg"),
  22616. name: "Front",
  22617. image: {
  22618. source: "./media/characters/almor/front.svg",
  22619. extra: 1408 / 1322,
  22620. bottom: 94.6 / 1506.5
  22621. }
  22622. },
  22623. },
  22624. [
  22625. {
  22626. name: "Macro",
  22627. height: math.unit(32, "meters"),
  22628. default: true
  22629. },
  22630. ]
  22631. ))
  22632. characterMakers.push(() => makeCharacter(
  22633. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22634. {
  22635. front: {
  22636. height: math.unit(7, "feet"),
  22637. weight: math.unit(200, "lb"),
  22638. name: "Front",
  22639. image: {
  22640. source: "./media/characters/silver/front.svg",
  22641. extra: 472.1 / 450.5,
  22642. bottom: 26.5 / 499.424
  22643. }
  22644. },
  22645. },
  22646. [
  22647. {
  22648. name: "Normal",
  22649. height: math.unit(7, "feet"),
  22650. default: true
  22651. },
  22652. {
  22653. name: "Macro",
  22654. height: math.unit(800, "feet")
  22655. },
  22656. {
  22657. name: "Megamacro",
  22658. height: math.unit(250, "miles")
  22659. },
  22660. ]
  22661. ))
  22662. characterMakers.push(() => makeCharacter(
  22663. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22664. {
  22665. front: {
  22666. height: math.unit(6, "feet"),
  22667. weight: math.unit(150, "lb"),
  22668. name: "Front",
  22669. image: {
  22670. source: "./media/characters/pliskin/front.svg",
  22671. extra: 1469 / 1359,
  22672. bottom: 70 / 1540
  22673. }
  22674. },
  22675. },
  22676. [
  22677. {
  22678. name: "Micro",
  22679. height: math.unit(3, "inches")
  22680. },
  22681. {
  22682. name: "Normal",
  22683. height: math.unit(5 + 11 / 12, "feet"),
  22684. default: true
  22685. },
  22686. {
  22687. name: "Macro",
  22688. height: math.unit(120, "feet")
  22689. },
  22690. ]
  22691. ))
  22692. characterMakers.push(() => makeCharacter(
  22693. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22694. {
  22695. front: {
  22696. height: math.unit(6, "feet"),
  22697. weight: math.unit(150, "lb"),
  22698. name: "Front",
  22699. image: {
  22700. source: "./media/characters/sammy/front.svg",
  22701. extra: 1193 / 1089,
  22702. bottom: 30.5 / 1226
  22703. }
  22704. },
  22705. },
  22706. [
  22707. {
  22708. name: "Macro",
  22709. height: math.unit(1700, "feet"),
  22710. default: true
  22711. },
  22712. {
  22713. name: "Examacro",
  22714. height: math.unit(2.5e9, "lightyears")
  22715. },
  22716. ]
  22717. ))
  22718. characterMakers.push(() => makeCharacter(
  22719. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22720. {
  22721. front: {
  22722. height: math.unit(21, "meters"),
  22723. weight: math.unit(12, "tonnes"),
  22724. name: "Front",
  22725. image: {
  22726. source: "./media/characters/kuru/front.svg",
  22727. extra: 4301 / 3785,
  22728. bottom: 371.3 / 4691
  22729. }
  22730. },
  22731. },
  22732. [
  22733. {
  22734. name: "Macro",
  22735. height: math.unit(21, "meters"),
  22736. default: true
  22737. },
  22738. ]
  22739. ))
  22740. characterMakers.push(() => makeCharacter(
  22741. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22742. {
  22743. front: {
  22744. height: math.unit(23, "meters"),
  22745. weight: math.unit(12.2, "tonnes"),
  22746. name: "Front",
  22747. image: {
  22748. source: "./media/characters/rakka/front.svg",
  22749. extra: 4670 / 4169,
  22750. bottom: 301 / 4968.7
  22751. }
  22752. },
  22753. },
  22754. [
  22755. {
  22756. name: "Macro",
  22757. height: math.unit(23, "meters"),
  22758. default: true
  22759. },
  22760. ]
  22761. ))
  22762. characterMakers.push(() => makeCharacter(
  22763. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22764. {
  22765. front: {
  22766. height: math.unit(6, "feet"),
  22767. weight: math.unit(150, "lb"),
  22768. name: "Front",
  22769. image: {
  22770. source: "./media/characters/rhys-feline/front.svg",
  22771. extra: 2488 / 2308,
  22772. bottom: 35.67 / 2519.19
  22773. }
  22774. },
  22775. },
  22776. [
  22777. {
  22778. name: "Really Small",
  22779. height: math.unit(1, "nm")
  22780. },
  22781. {
  22782. name: "Micro",
  22783. height: math.unit(4, "inches")
  22784. },
  22785. {
  22786. name: "Normal",
  22787. height: math.unit(4 + 10 / 12, "feet"),
  22788. default: true
  22789. },
  22790. {
  22791. name: "Macro",
  22792. height: math.unit(100, "feet")
  22793. },
  22794. {
  22795. name: "Megamacto",
  22796. height: math.unit(50, "miles")
  22797. },
  22798. ]
  22799. ))
  22800. characterMakers.push(() => makeCharacter(
  22801. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22802. {
  22803. side: {
  22804. height: math.unit(30, "feet"),
  22805. weight: math.unit(35000, "kg"),
  22806. name: "Side",
  22807. image: {
  22808. source: "./media/characters/alydar/side.svg",
  22809. extra: 234 / 222,
  22810. bottom: 6.5 / 241
  22811. }
  22812. },
  22813. front: {
  22814. height: math.unit(30, "feet"),
  22815. weight: math.unit(35000, "kg"),
  22816. name: "Front",
  22817. image: {
  22818. source: "./media/characters/alydar/front.svg",
  22819. extra: 223.37 / 210.2,
  22820. bottom: 22.3 / 246.76
  22821. }
  22822. },
  22823. top: {
  22824. height: math.unit(64.54, "feet"),
  22825. weight: math.unit(35000, "kg"),
  22826. name: "Top",
  22827. image: {
  22828. source: "./media/characters/alydar/top.svg"
  22829. }
  22830. },
  22831. anthro: {
  22832. height: math.unit(30, "feet"),
  22833. weight: math.unit(9000, "kg"),
  22834. name: "Anthro",
  22835. image: {
  22836. source: "./media/characters/alydar/anthro.svg",
  22837. extra: 432 / 421,
  22838. bottom: 7.18 / 440
  22839. }
  22840. },
  22841. maw: {
  22842. height: math.unit(11.693, "feet"),
  22843. name: "Maw",
  22844. image: {
  22845. source: "./media/characters/alydar/maw.svg"
  22846. }
  22847. },
  22848. head: {
  22849. height: math.unit(11.693, "feet"),
  22850. name: "Head",
  22851. image: {
  22852. source: "./media/characters/alydar/head.svg"
  22853. }
  22854. },
  22855. headAlt: {
  22856. height: math.unit(12.861, "feet"),
  22857. name: "Head (Alt)",
  22858. image: {
  22859. source: "./media/characters/alydar/head-alt.svg"
  22860. }
  22861. },
  22862. wing: {
  22863. height: math.unit(20.712, "feet"),
  22864. name: "Wing",
  22865. image: {
  22866. source: "./media/characters/alydar/wing.svg"
  22867. }
  22868. },
  22869. wingFeather: {
  22870. height: math.unit(9.662, "feet"),
  22871. name: "Wing Feather",
  22872. image: {
  22873. source: "./media/characters/alydar/wing-feather.svg"
  22874. }
  22875. },
  22876. countourFeather: {
  22877. height: math.unit(4.154, "feet"),
  22878. name: "Contour Feather",
  22879. image: {
  22880. source: "./media/characters/alydar/contour-feather.svg"
  22881. }
  22882. },
  22883. },
  22884. [
  22885. {
  22886. name: "Diplomatic",
  22887. height: math.unit(13, "feet"),
  22888. default: true
  22889. },
  22890. {
  22891. name: "Small",
  22892. height: math.unit(30, "feet")
  22893. },
  22894. {
  22895. name: "Normal",
  22896. height: math.unit(95, "feet"),
  22897. default: true
  22898. },
  22899. {
  22900. name: "Large",
  22901. height: math.unit(285, "feet")
  22902. },
  22903. {
  22904. name: "Incomprehensible",
  22905. height: math.unit(450, "megameters")
  22906. },
  22907. ]
  22908. ))
  22909. characterMakers.push(() => makeCharacter(
  22910. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22911. {
  22912. side: {
  22913. height: math.unit(11, "feet"),
  22914. weight: math.unit(1750, "kg"),
  22915. name: "Side",
  22916. image: {
  22917. source: "./media/characters/selicia/side.svg",
  22918. extra: 440 / 396,
  22919. bottom: 24.8 / 465.979
  22920. }
  22921. },
  22922. maw: {
  22923. height: math.unit(4.665, "feet"),
  22924. name: "Maw",
  22925. image: {
  22926. source: "./media/characters/selicia/maw.svg"
  22927. }
  22928. },
  22929. },
  22930. [
  22931. {
  22932. name: "Normal",
  22933. height: math.unit(11, "feet"),
  22934. default: true
  22935. },
  22936. ]
  22937. ))
  22938. characterMakers.push(() => makeCharacter(
  22939. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22940. {
  22941. side: {
  22942. height: math.unit(2 + 6 / 12, "feet"),
  22943. weight: math.unit(30, "lb"),
  22944. name: "Side",
  22945. image: {
  22946. source: "./media/characters/layla/side.svg",
  22947. extra: 244 / 188,
  22948. bottom: 18.2 / 262.1
  22949. }
  22950. },
  22951. back: {
  22952. height: math.unit(2 + 6 / 12, "feet"),
  22953. weight: math.unit(30, "lb"),
  22954. name: "Back",
  22955. image: {
  22956. source: "./media/characters/layla/back.svg",
  22957. extra: 308 / 241.5,
  22958. bottom: 8.9 / 316.8
  22959. }
  22960. },
  22961. cumming: {
  22962. height: math.unit(2 + 6 / 12, "feet"),
  22963. weight: math.unit(30, "lb"),
  22964. name: "Cumming",
  22965. image: {
  22966. source: "./media/characters/layla/cumming.svg",
  22967. extra: 342 / 279,
  22968. bottom: 595 / 938
  22969. }
  22970. },
  22971. dickFlaccid: {
  22972. height: math.unit(2.595, "feet"),
  22973. name: "Flaccid Genitals",
  22974. image: {
  22975. source: "./media/characters/layla/dick-flaccid.svg"
  22976. }
  22977. },
  22978. dickErect: {
  22979. height: math.unit(2.359, "feet"),
  22980. name: "Erect Genitals",
  22981. image: {
  22982. source: "./media/characters/layla/dick-erect.svg"
  22983. }
  22984. },
  22985. },
  22986. [
  22987. {
  22988. name: "Micro",
  22989. height: math.unit(1, "inch")
  22990. },
  22991. {
  22992. name: "Small",
  22993. height: math.unit(1, "foot")
  22994. },
  22995. {
  22996. name: "Normal",
  22997. height: math.unit(2 + 6 / 12, "feet"),
  22998. default: true
  22999. },
  23000. {
  23001. name: "Macro",
  23002. height: math.unit(200, "feet")
  23003. },
  23004. {
  23005. name: "Megamacro",
  23006. height: math.unit(1000, "miles")
  23007. },
  23008. {
  23009. name: "Planetary",
  23010. height: math.unit(8000, "miles")
  23011. },
  23012. {
  23013. name: "True Layla",
  23014. height: math.unit(200000 * 7, "multiverses")
  23015. },
  23016. ]
  23017. ))
  23018. characterMakers.push(() => makeCharacter(
  23019. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23020. {
  23021. back: {
  23022. height: math.unit(10.5, "feet"),
  23023. weight: math.unit(800, "lb"),
  23024. name: "Back",
  23025. image: {
  23026. source: "./media/characters/knox/back.svg",
  23027. extra: 1486 / 1089,
  23028. bottom: 107 / 1601.4
  23029. }
  23030. },
  23031. side: {
  23032. height: math.unit(10.5, "feet"),
  23033. weight: math.unit(800, "lb"),
  23034. name: "Side",
  23035. image: {
  23036. source: "./media/characters/knox/side.svg",
  23037. extra: 244 / 218,
  23038. bottom: 14 / 260
  23039. }
  23040. },
  23041. },
  23042. [
  23043. {
  23044. name: "Compact",
  23045. height: math.unit(10.5, "feet"),
  23046. default: true
  23047. },
  23048. {
  23049. name: "Dynamax",
  23050. height: math.unit(210, "feet")
  23051. },
  23052. {
  23053. name: "Full Macro",
  23054. height: math.unit(850, "feet")
  23055. },
  23056. ]
  23057. ))
  23058. characterMakers.push(() => makeCharacter(
  23059. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23060. {
  23061. front: {
  23062. height: math.unit(6, "feet"),
  23063. weight: math.unit(152, "lb"),
  23064. name: "Front",
  23065. image: {
  23066. source: "./media/characters/shin-pikachu/front.svg",
  23067. extra: 1574 / 1480,
  23068. bottom: 53.3 / 1626
  23069. }
  23070. },
  23071. hand: {
  23072. height: math.unit(1.055, "feet"),
  23073. name: "Hand",
  23074. image: {
  23075. source: "./media/characters/shin-pikachu/hand.svg"
  23076. }
  23077. },
  23078. foot: {
  23079. height: math.unit(1.1, "feet"),
  23080. name: "Foot",
  23081. image: {
  23082. source: "./media/characters/shin-pikachu/foot.svg"
  23083. }
  23084. },
  23085. collar: {
  23086. height: math.unit(0.386, "feet"),
  23087. name: "Collar",
  23088. image: {
  23089. source: "./media/characters/shin-pikachu/collar.svg"
  23090. }
  23091. },
  23092. },
  23093. [
  23094. {
  23095. name: "Smallest",
  23096. height: math.unit(0.5, "inches")
  23097. },
  23098. {
  23099. name: "Micro",
  23100. height: math.unit(6, "inches")
  23101. },
  23102. {
  23103. name: "Normal",
  23104. height: math.unit(6, "feet"),
  23105. default: true
  23106. },
  23107. {
  23108. name: "Macro",
  23109. height: math.unit(150, "feet")
  23110. },
  23111. ]
  23112. ))
  23113. characterMakers.push(() => makeCharacter(
  23114. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23115. {
  23116. front: {
  23117. height: math.unit(28, "feet"),
  23118. weight: math.unit(10500, "lb"),
  23119. name: "Front",
  23120. image: {
  23121. source: "./media/characters/kayda/front.svg",
  23122. extra: 1536 / 1428,
  23123. bottom: 68.7 / 1603
  23124. }
  23125. },
  23126. back: {
  23127. height: math.unit(28, "feet"),
  23128. weight: math.unit(10500, "lb"),
  23129. name: "Back",
  23130. image: {
  23131. source: "./media/characters/kayda/back.svg",
  23132. extra: 1557 / 1464,
  23133. bottom: 39.5 / 1597.49
  23134. }
  23135. },
  23136. dick: {
  23137. height: math.unit(3.858, "feet"),
  23138. name: "Dick",
  23139. image: {
  23140. source: "./media/characters/kayda/dick.svg"
  23141. }
  23142. },
  23143. },
  23144. [
  23145. {
  23146. name: "Macro",
  23147. height: math.unit(28, "feet"),
  23148. default: true
  23149. },
  23150. ]
  23151. ))
  23152. characterMakers.push(() => makeCharacter(
  23153. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23154. {
  23155. front: {
  23156. height: math.unit(10 + 11 / 12, "feet"),
  23157. weight: math.unit(1400, "lb"),
  23158. name: "Front",
  23159. image: {
  23160. source: "./media/characters/brian/front.svg",
  23161. extra: 737 / 692,
  23162. bottom: 55.4 / 785
  23163. }
  23164. },
  23165. },
  23166. [
  23167. {
  23168. name: "Normal",
  23169. height: math.unit(10 + 11 / 12, "feet"),
  23170. default: true
  23171. },
  23172. ]
  23173. ))
  23174. characterMakers.push(() => makeCharacter(
  23175. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23176. {
  23177. front: {
  23178. height: math.unit(5 + 8 / 12, "feet"),
  23179. weight: math.unit(140, "lb"),
  23180. name: "Front",
  23181. image: {
  23182. source: "./media/characters/khemri/front.svg",
  23183. extra: 4780 / 4059,
  23184. bottom: 80.1 / 4859.25
  23185. }
  23186. },
  23187. },
  23188. [
  23189. {
  23190. name: "Micro",
  23191. height: math.unit(6, "inches")
  23192. },
  23193. {
  23194. name: "Normal",
  23195. height: math.unit(5 + 8 / 12, "feet"),
  23196. default: true
  23197. },
  23198. ]
  23199. ))
  23200. characterMakers.push(() => makeCharacter(
  23201. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23202. {
  23203. front: {
  23204. height: math.unit(13, "feet"),
  23205. weight: math.unit(1700, "lb"),
  23206. name: "Front",
  23207. image: {
  23208. source: "./media/characters/felix-braveheart/front.svg",
  23209. extra: 1222 / 1157,
  23210. bottom: 53.2 / 1280
  23211. }
  23212. },
  23213. back: {
  23214. height: math.unit(13, "feet"),
  23215. weight: math.unit(1700, "lb"),
  23216. name: "Back",
  23217. image: {
  23218. source: "./media/characters/felix-braveheart/back.svg",
  23219. extra: 1277 / 1203,
  23220. bottom: 50.2 / 1327
  23221. }
  23222. },
  23223. feral: {
  23224. height: math.unit(6, "feet"),
  23225. weight: math.unit(400, "lb"),
  23226. name: "Feral",
  23227. image: {
  23228. source: "./media/characters/felix-braveheart/feral.svg",
  23229. extra: 682 / 625,
  23230. bottom: 6.9 / 688
  23231. }
  23232. },
  23233. },
  23234. [
  23235. {
  23236. name: "Normal",
  23237. height: math.unit(13, "feet"),
  23238. default: true
  23239. },
  23240. ]
  23241. ))
  23242. characterMakers.push(() => makeCharacter(
  23243. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23244. {
  23245. side: {
  23246. height: math.unit(5 + 11 / 12, "feet"),
  23247. weight: math.unit(1400, "lb"),
  23248. name: "Side",
  23249. image: {
  23250. source: "./media/characters/shadow-blade/side.svg",
  23251. extra: 1726 / 1267,
  23252. bottom: 58.4 / 1785
  23253. }
  23254. },
  23255. },
  23256. [
  23257. {
  23258. name: "Normal",
  23259. height: math.unit(5 + 11 / 12, "feet"),
  23260. default: true
  23261. },
  23262. ]
  23263. ))
  23264. characterMakers.push(() => makeCharacter(
  23265. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23266. {
  23267. front: {
  23268. height: math.unit(1 + 6 / 12, "feet"),
  23269. weight: math.unit(25, "lb"),
  23270. name: "Front",
  23271. image: {
  23272. source: "./media/characters/karla-halldor/front.svg",
  23273. extra: 1459 / 1383,
  23274. bottom: 12 / 1472
  23275. }
  23276. },
  23277. },
  23278. [
  23279. {
  23280. name: "Normal",
  23281. height: math.unit(1 + 6 / 12, "feet"),
  23282. default: true
  23283. },
  23284. ]
  23285. ))
  23286. characterMakers.push(() => makeCharacter(
  23287. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23288. {
  23289. front: {
  23290. height: math.unit(6 + 2 / 12, "feet"),
  23291. weight: math.unit(160, "lb"),
  23292. name: "Front",
  23293. image: {
  23294. source: "./media/characters/ariam/front.svg",
  23295. extra: 714 / 617,
  23296. bottom: 23.4 / 737,
  23297. }
  23298. },
  23299. squatting: {
  23300. height: math.unit(4.1, "feet"),
  23301. weight: math.unit(160, "lb"),
  23302. name: "Squatting",
  23303. image: {
  23304. source: "./media/characters/ariam/squatting.svg",
  23305. extra: 2617 / 2112,
  23306. bottom: 61.2 / 2681,
  23307. }
  23308. },
  23309. },
  23310. [
  23311. {
  23312. name: "Normal",
  23313. height: math.unit(6 + 2 / 12, "feet"),
  23314. default: true
  23315. },
  23316. {
  23317. name: "Normal+",
  23318. height: math.unit(4, "meters")
  23319. },
  23320. {
  23321. name: "Macro",
  23322. height: math.unit(50, "meters")
  23323. },
  23324. {
  23325. name: "Macro+",
  23326. height: math.unit(100, "meters")
  23327. },
  23328. {
  23329. name: "Megamacro",
  23330. height: math.unit(20, "km")
  23331. },
  23332. ]
  23333. ))
  23334. characterMakers.push(() => makeCharacter(
  23335. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23336. {
  23337. front: {
  23338. height: math.unit(1.67, "meters"),
  23339. weight: math.unit(140, "lb"),
  23340. name: "Front",
  23341. image: {
  23342. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23343. extra: 438 / 410,
  23344. bottom: 0.75 / 439
  23345. }
  23346. },
  23347. },
  23348. [
  23349. {
  23350. name: "Shrunken",
  23351. height: math.unit(7.6, "cm")
  23352. },
  23353. {
  23354. name: "Human Scale",
  23355. height: math.unit(1.67, "meters")
  23356. },
  23357. {
  23358. name: "Wolxi Scale",
  23359. height: math.unit(36.7, "meters"),
  23360. default: true
  23361. },
  23362. ]
  23363. ))
  23364. characterMakers.push(() => makeCharacter(
  23365. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23366. {
  23367. front: {
  23368. height: math.unit(1.73, "meters"),
  23369. weight: math.unit(240, "lb"),
  23370. name: "Front",
  23371. image: {
  23372. source: "./media/characters/izue-two-mothers/front.svg",
  23373. extra: 469 / 437,
  23374. bottom: 1.24 / 470.6
  23375. }
  23376. },
  23377. },
  23378. [
  23379. {
  23380. name: "Shrunken",
  23381. height: math.unit(7.86, "cm")
  23382. },
  23383. {
  23384. name: "Human Scale",
  23385. height: math.unit(1.73, "meters")
  23386. },
  23387. {
  23388. name: "Wolxi Scale",
  23389. height: math.unit(38, "meters"),
  23390. default: true
  23391. },
  23392. ]
  23393. ))
  23394. characterMakers.push(() => makeCharacter(
  23395. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23396. {
  23397. front: {
  23398. height: math.unit(1.55, "meters"),
  23399. weight: math.unit(120, "lb"),
  23400. name: "Front",
  23401. image: {
  23402. source: "./media/characters/teeku-love-shack/front.svg",
  23403. extra: 387 / 362,
  23404. bottom: 1.51 / 388
  23405. }
  23406. },
  23407. },
  23408. [
  23409. {
  23410. name: "Shrunken",
  23411. height: math.unit(7, "cm")
  23412. },
  23413. {
  23414. name: "Human Scale",
  23415. height: math.unit(1.55, "meters")
  23416. },
  23417. {
  23418. name: "Wolxi Scale",
  23419. height: math.unit(34.1, "meters"),
  23420. default: true
  23421. },
  23422. ]
  23423. ))
  23424. characterMakers.push(() => makeCharacter(
  23425. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23426. {
  23427. front: {
  23428. height: math.unit(1.83, "meters"),
  23429. weight: math.unit(135, "lb"),
  23430. name: "Front",
  23431. image: {
  23432. source: "./media/characters/dejma-the-red/front.svg",
  23433. extra: 480 / 458,
  23434. bottom: 1.8 / 482
  23435. }
  23436. },
  23437. },
  23438. [
  23439. {
  23440. name: "Shrunken",
  23441. height: math.unit(8.3, "cm")
  23442. },
  23443. {
  23444. name: "Human Scale",
  23445. height: math.unit(1.83, "meters")
  23446. },
  23447. {
  23448. name: "Wolxi Scale",
  23449. height: math.unit(40, "meters"),
  23450. default: true
  23451. },
  23452. ]
  23453. ))
  23454. characterMakers.push(() => makeCharacter(
  23455. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23456. {
  23457. front: {
  23458. height: math.unit(1.78, "meters"),
  23459. weight: math.unit(65, "kg"),
  23460. name: "Front",
  23461. image: {
  23462. source: "./media/characters/aki/front.svg",
  23463. extra: 452 / 415
  23464. }
  23465. },
  23466. frontNsfw: {
  23467. height: math.unit(1.78, "meters"),
  23468. weight: math.unit(65, "kg"),
  23469. name: "Front (NSFW)",
  23470. image: {
  23471. source: "./media/characters/aki/front-nsfw.svg",
  23472. extra: 452 / 415
  23473. }
  23474. },
  23475. back: {
  23476. height: math.unit(1.78, "meters"),
  23477. weight: math.unit(65, "kg"),
  23478. name: "Back",
  23479. image: {
  23480. source: "./media/characters/aki/back.svg",
  23481. extra: 452 / 415
  23482. }
  23483. },
  23484. rump: {
  23485. height: math.unit(2.05, "feet"),
  23486. name: "Rump",
  23487. image: {
  23488. source: "./media/characters/aki/rump.svg"
  23489. }
  23490. },
  23491. dick: {
  23492. height: math.unit(0.95, "feet"),
  23493. name: "Dick",
  23494. image: {
  23495. source: "./media/characters/aki/dick.svg"
  23496. }
  23497. },
  23498. },
  23499. [
  23500. {
  23501. name: "Micro",
  23502. height: math.unit(15, "cm")
  23503. },
  23504. {
  23505. name: "Normal",
  23506. height: math.unit(178, "cm"),
  23507. default: true
  23508. },
  23509. {
  23510. name: "Macro",
  23511. height: math.unit(214, "m")
  23512. },
  23513. {
  23514. name: "Macro+",
  23515. height: math.unit(534, "m")
  23516. },
  23517. ]
  23518. ))
  23519. characterMakers.push(() => makeCharacter(
  23520. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23521. {
  23522. front: {
  23523. height: math.unit(5 + 5 / 12, "feet"),
  23524. weight: math.unit(120, "lb"),
  23525. name: "Front",
  23526. image: {
  23527. source: "./media/characters/ari/front.svg",
  23528. extra: 714.5 / 682,
  23529. bottom: 8 / 722.5
  23530. }
  23531. },
  23532. },
  23533. [
  23534. {
  23535. name: "Normal",
  23536. height: math.unit(5 + 5 / 12, "feet")
  23537. },
  23538. {
  23539. name: "Macro",
  23540. height: math.unit(100, "feet"),
  23541. default: true
  23542. },
  23543. {
  23544. name: "Megamacro",
  23545. height: math.unit(100, "miles")
  23546. },
  23547. {
  23548. name: "Gigamacro",
  23549. height: math.unit(80000, "miles")
  23550. },
  23551. ]
  23552. ))
  23553. characterMakers.push(() => makeCharacter(
  23554. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23555. {
  23556. side: {
  23557. height: math.unit(9, "feet"),
  23558. weight: math.unit(400, "kg"),
  23559. name: "Side",
  23560. image: {
  23561. source: "./media/characters/bolt/side.svg",
  23562. extra: 1126 / 896,
  23563. bottom: 60 / 1187.3,
  23564. }
  23565. },
  23566. },
  23567. [
  23568. {
  23569. name: "Micro",
  23570. height: math.unit(5, "inches")
  23571. },
  23572. {
  23573. name: "Normal",
  23574. height: math.unit(9, "feet"),
  23575. default: true
  23576. },
  23577. {
  23578. name: "Macro",
  23579. height: math.unit(700, "feet")
  23580. },
  23581. {
  23582. name: "Max Size",
  23583. height: math.unit(1.52e22, "yottameters")
  23584. },
  23585. ]
  23586. ))
  23587. characterMakers.push(() => makeCharacter(
  23588. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23589. {
  23590. front: {
  23591. height: math.unit(4.53, "meters"),
  23592. weight: math.unit(3, "tons"),
  23593. name: "Front",
  23594. image: {
  23595. source: "./media/characters/draekon-sylviar/front.svg",
  23596. extra: 1228 / 1068,
  23597. bottom: 41 / 1270
  23598. }
  23599. },
  23600. tail: {
  23601. height: math.unit(1.772, "meter"),
  23602. name: "Tail",
  23603. image: {
  23604. source: "./media/characters/draekon-sylviar/tail.svg"
  23605. }
  23606. },
  23607. head: {
  23608. height: math.unit(1.331, "meter"),
  23609. name: "Head",
  23610. image: {
  23611. source: "./media/characters/draekon-sylviar/head.svg"
  23612. }
  23613. },
  23614. hand: {
  23615. height: math.unit(0.564, "meter"),
  23616. name: "Hand",
  23617. image: {
  23618. source: "./media/characters/draekon-sylviar/hand.svg"
  23619. }
  23620. },
  23621. foot: {
  23622. height: math.unit(0.621, "meter"),
  23623. name: "Foot",
  23624. image: {
  23625. source: "./media/characters/draekon-sylviar/foot.svg",
  23626. bottom: 32 / 324
  23627. }
  23628. },
  23629. dick: {
  23630. height: math.unit(61, "cm"),
  23631. name: "Dick",
  23632. image: {
  23633. source: "./media/characters/draekon-sylviar/dick.svg"
  23634. }
  23635. },
  23636. dickseparated: {
  23637. height: math.unit(61, "cm"),
  23638. name: "Dick-separated",
  23639. image: {
  23640. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23641. }
  23642. },
  23643. },
  23644. [
  23645. {
  23646. name: "Small",
  23647. height: math.unit(4.53 / 2, "meters"),
  23648. default: true
  23649. },
  23650. {
  23651. name: "Normal",
  23652. height: math.unit(4.53, "meters"),
  23653. default: true
  23654. },
  23655. {
  23656. name: "Large",
  23657. height: math.unit(4.53 * 2, "meters"),
  23658. },
  23659. ]
  23660. ))
  23661. characterMakers.push(() => makeCharacter(
  23662. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23663. {
  23664. front: {
  23665. height: math.unit(6 + 2 / 12, "feet"),
  23666. weight: math.unit(180, "lb"),
  23667. name: "Front",
  23668. image: {
  23669. source: "./media/characters/brawler/front.svg",
  23670. extra: 3301 / 3027,
  23671. bottom: 138 / 3439
  23672. }
  23673. },
  23674. },
  23675. [
  23676. {
  23677. name: "Normal",
  23678. height: math.unit(6 + 2 / 12, "feet"),
  23679. default: true
  23680. },
  23681. ]
  23682. ))
  23683. characterMakers.push(() => makeCharacter(
  23684. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23685. {
  23686. front: {
  23687. height: math.unit(11, "feet"),
  23688. weight: math.unit(1000, "lb"),
  23689. name: "Front",
  23690. image: {
  23691. source: "./media/characters/alex/front.svg",
  23692. bottom: 44.5 / 620
  23693. }
  23694. },
  23695. },
  23696. [
  23697. {
  23698. name: "Micro",
  23699. height: math.unit(5, "inches")
  23700. },
  23701. {
  23702. name: "Normal",
  23703. height: math.unit(11, "feet"),
  23704. default: true
  23705. },
  23706. {
  23707. name: "Macro",
  23708. height: math.unit(9.5e9, "feet")
  23709. },
  23710. {
  23711. name: "Max Size",
  23712. height: math.unit(1.4e283, "yottameters")
  23713. },
  23714. ]
  23715. ))
  23716. characterMakers.push(() => makeCharacter(
  23717. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23718. {
  23719. female: {
  23720. height: math.unit(29.9, "m"),
  23721. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23722. name: "Female",
  23723. image: {
  23724. source: "./media/characters/zenari/female.svg",
  23725. extra: 3281.6 / 3217,
  23726. bottom: 72.2 / 3353
  23727. }
  23728. },
  23729. male: {
  23730. height: math.unit(27.7, "m"),
  23731. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23732. name: "Male",
  23733. image: {
  23734. source: "./media/characters/zenari/male.svg",
  23735. extra: 3008 / 2991,
  23736. bottom: 54.6 / 3069
  23737. }
  23738. },
  23739. },
  23740. [
  23741. {
  23742. name: "Macro",
  23743. height: math.unit(29.7, "meters"),
  23744. default: true
  23745. },
  23746. ]
  23747. ))
  23748. characterMakers.push(() => makeCharacter(
  23749. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23750. {
  23751. female: {
  23752. height: math.unit(23.8, "m"),
  23753. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23754. name: "Female",
  23755. image: {
  23756. source: "./media/characters/mactarian/female.svg",
  23757. extra: 2662 / 2569,
  23758. bottom: 73 / 2736
  23759. }
  23760. },
  23761. male: {
  23762. height: math.unit(23.8, "m"),
  23763. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23764. name: "Male",
  23765. image: {
  23766. source: "./media/characters/mactarian/male.svg",
  23767. extra: 2673 / 2600,
  23768. bottom: 76 / 2750
  23769. }
  23770. },
  23771. },
  23772. [
  23773. {
  23774. name: "Macro",
  23775. height: math.unit(23.8, "meters"),
  23776. default: true
  23777. },
  23778. ]
  23779. ))
  23780. characterMakers.push(() => makeCharacter(
  23781. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23782. {
  23783. female: {
  23784. height: math.unit(19.3, "m"),
  23785. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23786. name: "Female",
  23787. image: {
  23788. source: "./media/characters/umok/female.svg",
  23789. extra: 2186 / 2078,
  23790. bottom: 87 / 2277
  23791. }
  23792. },
  23793. male: {
  23794. height: math.unit(19.5, "m"),
  23795. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23796. name: "Male",
  23797. image: {
  23798. source: "./media/characters/umok/male.svg",
  23799. extra: 2233 / 2140,
  23800. bottom: 24.4 / 2258
  23801. }
  23802. },
  23803. },
  23804. [
  23805. {
  23806. name: "Macro",
  23807. height: math.unit(19.3, "meters"),
  23808. default: true
  23809. },
  23810. ]
  23811. ))
  23812. characterMakers.push(() => makeCharacter(
  23813. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23814. {
  23815. female: {
  23816. height: math.unit(26.15, "m"),
  23817. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23818. name: "Female",
  23819. image: {
  23820. source: "./media/characters/joraxian/female.svg",
  23821. extra: 2912 / 2824,
  23822. bottom: 36 / 2956
  23823. }
  23824. },
  23825. male: {
  23826. height: math.unit(25.4, "m"),
  23827. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23828. name: "Male",
  23829. image: {
  23830. source: "./media/characters/joraxian/male.svg",
  23831. extra: 2877 / 2721,
  23832. bottom: 82 / 2967
  23833. }
  23834. },
  23835. },
  23836. [
  23837. {
  23838. name: "Macro",
  23839. height: math.unit(26.15, "meters"),
  23840. default: true
  23841. },
  23842. ]
  23843. ))
  23844. characterMakers.push(() => makeCharacter(
  23845. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23846. {
  23847. female: {
  23848. height: math.unit(21.6, "m"),
  23849. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23850. name: "Female",
  23851. image: {
  23852. source: "./media/characters/sthara/female.svg",
  23853. extra: 2516 / 2347,
  23854. bottom: 21.5 / 2537
  23855. }
  23856. },
  23857. male: {
  23858. height: math.unit(24, "m"),
  23859. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23860. name: "Male",
  23861. image: {
  23862. source: "./media/characters/sthara/male.svg",
  23863. extra: 2732 / 2607,
  23864. bottom: 23 / 2732
  23865. }
  23866. },
  23867. },
  23868. [
  23869. {
  23870. name: "Macro",
  23871. height: math.unit(21.6, "meters"),
  23872. default: true
  23873. },
  23874. ]
  23875. ))
  23876. characterMakers.push(() => makeCharacter(
  23877. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23878. {
  23879. front: {
  23880. height: math.unit(6 + 4 / 12, "feet"),
  23881. weight: math.unit(175, "lb"),
  23882. name: "Front",
  23883. image: {
  23884. source: "./media/characters/luka-bryzant/front.svg",
  23885. extra: 311 / 289,
  23886. bottom: 4 / 315
  23887. }
  23888. },
  23889. back: {
  23890. height: math.unit(6 + 4 / 12, "feet"),
  23891. weight: math.unit(175, "lb"),
  23892. name: "Back",
  23893. image: {
  23894. source: "./media/characters/luka-bryzant/back.svg",
  23895. extra: 311 / 289,
  23896. bottom: 3.8 / 313.7
  23897. }
  23898. },
  23899. },
  23900. [
  23901. {
  23902. name: "Micro",
  23903. height: math.unit(10, "inches")
  23904. },
  23905. {
  23906. name: "Normal",
  23907. height: math.unit(6 + 4 / 12, "feet"),
  23908. default: true
  23909. },
  23910. {
  23911. name: "Large",
  23912. height: math.unit(12, "feet")
  23913. },
  23914. ]
  23915. ))
  23916. characterMakers.push(() => makeCharacter(
  23917. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23918. {
  23919. front: {
  23920. height: math.unit(5 + 7 / 12, "feet"),
  23921. weight: math.unit(185, "lb"),
  23922. name: "Front",
  23923. image: {
  23924. source: "./media/characters/aman-aquila/front.svg",
  23925. extra: 1013 / 976,
  23926. bottom: 45.6 / 1057
  23927. }
  23928. },
  23929. side: {
  23930. height: math.unit(5 + 7 / 12, "feet"),
  23931. weight: math.unit(185, "lb"),
  23932. name: "Side",
  23933. image: {
  23934. source: "./media/characters/aman-aquila/side.svg",
  23935. extra: 1054 / 1011,
  23936. bottom: 15 / 1070
  23937. }
  23938. },
  23939. back: {
  23940. height: math.unit(5 + 7 / 12, "feet"),
  23941. weight: math.unit(185, "lb"),
  23942. name: "Back",
  23943. image: {
  23944. source: "./media/characters/aman-aquila/back.svg",
  23945. extra: 1026 / 970,
  23946. bottom: 12 / 1039
  23947. }
  23948. },
  23949. head: {
  23950. height: math.unit(1.211, "feet"),
  23951. name: "Head",
  23952. image: {
  23953. source: "./media/characters/aman-aquila/head.svg",
  23954. }
  23955. },
  23956. },
  23957. [
  23958. {
  23959. name: "Minimicro",
  23960. height: math.unit(0.057, "inches")
  23961. },
  23962. {
  23963. name: "Micro",
  23964. height: math.unit(7, "inches")
  23965. },
  23966. {
  23967. name: "Mini",
  23968. height: math.unit(3 + 7 / 12, "feet")
  23969. },
  23970. {
  23971. name: "Normal",
  23972. height: math.unit(5 + 7 / 12, "feet"),
  23973. default: true
  23974. },
  23975. {
  23976. name: "Macro",
  23977. height: math.unit(157 + 7 / 12, "feet")
  23978. },
  23979. {
  23980. name: "Megamacro",
  23981. height: math.unit(1557 + 7 / 12, "feet")
  23982. },
  23983. {
  23984. name: "Gigamacro",
  23985. height: math.unit(15557 + 7 / 12, "feet")
  23986. },
  23987. ]
  23988. ))
  23989. characterMakers.push(() => makeCharacter(
  23990. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23991. {
  23992. front: {
  23993. height: math.unit(3 + 2 / 12, "inches"),
  23994. weight: math.unit(0.3, "ounces"),
  23995. name: "Front",
  23996. image: {
  23997. source: "./media/characters/hiphae/front.svg",
  23998. extra: 1931 / 1683,
  23999. bottom: 24 / 1955
  24000. }
  24001. },
  24002. },
  24003. [
  24004. {
  24005. name: "Normal",
  24006. height: math.unit(3 + 1 / 2, "inches"),
  24007. default: true
  24008. },
  24009. ]
  24010. ))
  24011. characterMakers.push(() => makeCharacter(
  24012. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24013. {
  24014. front: {
  24015. height: math.unit(5 + 10 / 12, "feet"),
  24016. weight: math.unit(165, "lb"),
  24017. name: "Front",
  24018. image: {
  24019. source: "./media/characters/nicky/front.svg",
  24020. extra: 3144 / 2886,
  24021. bottom: 45.6 / 3192
  24022. }
  24023. },
  24024. back: {
  24025. height: math.unit(5 + 10 / 12, "feet"),
  24026. weight: math.unit(165, "lb"),
  24027. name: "Back",
  24028. image: {
  24029. source: "./media/characters/nicky/back.svg",
  24030. extra: 3055 / 2804,
  24031. bottom: 28.4 / 3087
  24032. }
  24033. },
  24034. frontclothed: {
  24035. height: math.unit(5 + 10 / 12, "feet"),
  24036. weight: math.unit(165, "lb"),
  24037. name: "Front-clothed",
  24038. image: {
  24039. source: "./media/characters/nicky/front-clothed.svg",
  24040. extra: 3184.9 / 2926.9,
  24041. bottom: 86.5 / 3239.9
  24042. }
  24043. },
  24044. foot: {
  24045. height: math.unit(1.16, "feet"),
  24046. name: "Foot",
  24047. image: {
  24048. source: "./media/characters/nicky/foot.svg"
  24049. }
  24050. },
  24051. feet: {
  24052. height: math.unit(1.34, "feet"),
  24053. name: "Feet",
  24054. image: {
  24055. source: "./media/characters/nicky/feet.svg"
  24056. }
  24057. },
  24058. maw: {
  24059. height: math.unit(0.9, "feet"),
  24060. name: "Maw",
  24061. image: {
  24062. source: "./media/characters/nicky/maw.svg"
  24063. }
  24064. },
  24065. },
  24066. [
  24067. {
  24068. name: "Normal",
  24069. height: math.unit(5 + 10 / 12, "feet"),
  24070. default: true
  24071. },
  24072. {
  24073. name: "Macro",
  24074. height: math.unit(60, "feet")
  24075. },
  24076. {
  24077. name: "Megamacro",
  24078. height: math.unit(1, "mile")
  24079. },
  24080. ]
  24081. ))
  24082. characterMakers.push(() => makeCharacter(
  24083. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24084. {
  24085. side: {
  24086. height: math.unit(10, "feet"),
  24087. weight: math.unit(600, "lb"),
  24088. name: "Side",
  24089. image: {
  24090. source: "./media/characters/blair/side.svg",
  24091. bottom: 16.6 / 475,
  24092. extra: 458 / 431
  24093. }
  24094. },
  24095. },
  24096. [
  24097. {
  24098. name: "Micro",
  24099. height: math.unit(8, "inches")
  24100. },
  24101. {
  24102. name: "Normal",
  24103. height: math.unit(10, "feet"),
  24104. default: true
  24105. },
  24106. {
  24107. name: "Macro",
  24108. height: math.unit(180, "feet")
  24109. },
  24110. ]
  24111. ))
  24112. characterMakers.push(() => makeCharacter(
  24113. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24114. {
  24115. front: {
  24116. height: math.unit(5 + 4 / 12, "feet"),
  24117. weight: math.unit(125, "lb"),
  24118. name: "Front",
  24119. image: {
  24120. source: "./media/characters/fisher/front.svg",
  24121. extra: 444 / 390,
  24122. bottom: 2 / 444.8
  24123. }
  24124. },
  24125. },
  24126. [
  24127. {
  24128. name: "Micro",
  24129. height: math.unit(4, "inches")
  24130. },
  24131. {
  24132. name: "Normal",
  24133. height: math.unit(5 + 4 / 12, "feet"),
  24134. default: true
  24135. },
  24136. {
  24137. name: "Macro",
  24138. height: math.unit(100, "feet")
  24139. },
  24140. ]
  24141. ))
  24142. characterMakers.push(() => makeCharacter(
  24143. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24144. {
  24145. front: {
  24146. height: math.unit(6.71, "feet"),
  24147. weight: math.unit(200, "lb"),
  24148. capacity: math.unit(1000000, "people"),
  24149. name: "Front",
  24150. image: {
  24151. source: "./media/characters/gliss/front.svg",
  24152. extra: 2347 / 2231,
  24153. bottom: 113 / 2462
  24154. }
  24155. },
  24156. hammerspaceSize: {
  24157. height: math.unit(6.71 * 717, "feet"),
  24158. weight: math.unit(200, "lb"),
  24159. capacity: math.unit(1000000, "people"),
  24160. name: "Hammerspace Size",
  24161. image: {
  24162. source: "./media/characters/gliss/front.svg",
  24163. extra: 2347 / 2231,
  24164. bottom: 113 / 2462
  24165. }
  24166. },
  24167. },
  24168. [
  24169. {
  24170. name: "Normal",
  24171. height: math.unit(6.71, "feet"),
  24172. default: true
  24173. },
  24174. ]
  24175. ))
  24176. characterMakers.push(() => makeCharacter(
  24177. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24178. {
  24179. side: {
  24180. height: math.unit(1.44, "m"),
  24181. weight: math.unit(80, "kg"),
  24182. name: "Side",
  24183. image: {
  24184. source: "./media/characters/dune-anderson/side.svg",
  24185. bottom: 49 / 1426
  24186. }
  24187. },
  24188. },
  24189. [
  24190. {
  24191. name: "Wolf-sized",
  24192. height: math.unit(1.44, "meters")
  24193. },
  24194. {
  24195. name: "Normal",
  24196. height: math.unit(5.05, "meters"),
  24197. default: true
  24198. },
  24199. {
  24200. name: "Big",
  24201. height: math.unit(14.4, "meters")
  24202. },
  24203. {
  24204. name: "Huge",
  24205. height: math.unit(144, "meters")
  24206. },
  24207. ]
  24208. ))
  24209. characterMakers.push(() => makeCharacter(
  24210. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24211. {
  24212. front: {
  24213. height: math.unit(7, "feet"),
  24214. weight: math.unit(425, "lb"),
  24215. name: "Front",
  24216. image: {
  24217. source: "./media/characters/hind/front.svg",
  24218. extra: 2091 / 1860,
  24219. bottom: 129 / 2220
  24220. }
  24221. },
  24222. back: {
  24223. height: math.unit(7, "feet"),
  24224. weight: math.unit(425, "lb"),
  24225. name: "Back",
  24226. image: {
  24227. source: "./media/characters/hind/back.svg",
  24228. extra: 2091 / 1860,
  24229. bottom: 24.6 / 2309
  24230. }
  24231. },
  24232. tail: {
  24233. height: math.unit(2.8, "feet"),
  24234. name: "Tail",
  24235. image: {
  24236. source: "./media/characters/hind/tail.svg"
  24237. }
  24238. },
  24239. head: {
  24240. height: math.unit(2.55, "feet"),
  24241. name: "Head",
  24242. image: {
  24243. source: "./media/characters/hind/head.svg"
  24244. }
  24245. },
  24246. },
  24247. [
  24248. {
  24249. name: "XS",
  24250. height: math.unit(0.7, "feet")
  24251. },
  24252. {
  24253. name: "Normal",
  24254. height: math.unit(7, "feet"),
  24255. default: true
  24256. },
  24257. {
  24258. name: "XL",
  24259. height: math.unit(70, "feet")
  24260. },
  24261. ]
  24262. ))
  24263. characterMakers.push(() => makeCharacter(
  24264. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24265. {
  24266. front: {
  24267. height: math.unit(6, "feet"),
  24268. weight: math.unit(150, "lb"),
  24269. name: "Front",
  24270. image: {
  24271. source: "./media/characters/dylan-skaven/front.svg",
  24272. extra: 2318 / 2063,
  24273. bottom: 93.4 / 2410
  24274. }
  24275. },
  24276. },
  24277. [
  24278. {
  24279. name: "Nano",
  24280. height: math.unit(1, "mm")
  24281. },
  24282. {
  24283. name: "Micro",
  24284. height: math.unit(1, "cm")
  24285. },
  24286. {
  24287. name: "Normal",
  24288. height: math.unit(2.1, "meters"),
  24289. default: true
  24290. },
  24291. ]
  24292. ))
  24293. characterMakers.push(() => makeCharacter(
  24294. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24295. {
  24296. front: {
  24297. height: math.unit(7 + 5 / 12, "feet"),
  24298. weight: math.unit(357, "lb"),
  24299. name: "Front",
  24300. image: {
  24301. source: "./media/characters/solex-draconov/front.svg",
  24302. extra: 1993 / 1865,
  24303. bottom: 117 / 2111
  24304. }
  24305. },
  24306. },
  24307. [
  24308. {
  24309. name: "Natural Height",
  24310. height: math.unit(7 + 5 / 12, "feet"),
  24311. default: true
  24312. },
  24313. {
  24314. name: "Macro",
  24315. height: math.unit(350, "feet")
  24316. },
  24317. {
  24318. name: "Macro+",
  24319. height: math.unit(1000, "feet")
  24320. },
  24321. {
  24322. name: "Megamacro",
  24323. height: math.unit(20, "km")
  24324. },
  24325. {
  24326. name: "Megamacro+",
  24327. height: math.unit(1000, "km")
  24328. },
  24329. {
  24330. name: "Gigamacro",
  24331. height: math.unit(2.5, "Gm")
  24332. },
  24333. {
  24334. name: "Teramacro",
  24335. height: math.unit(15, "Tm")
  24336. },
  24337. {
  24338. name: "Galactic",
  24339. height: math.unit(30, "Zm")
  24340. },
  24341. {
  24342. name: "Universal",
  24343. height: math.unit(21000, "Ym")
  24344. },
  24345. {
  24346. name: "Omniversal",
  24347. height: math.unit(9.861e50, "Ym")
  24348. },
  24349. {
  24350. name: "Existential",
  24351. height: math.unit(1e300, "meters")
  24352. },
  24353. ]
  24354. ))
  24355. characterMakers.push(() => makeCharacter(
  24356. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24357. {
  24358. side: {
  24359. height: math.unit(25, "feet"),
  24360. weight: math.unit(90000, "lb"),
  24361. name: "Side",
  24362. image: {
  24363. source: "./media/characters/mandarax/side.svg",
  24364. extra: 614 / 332,
  24365. bottom: 55 / 630
  24366. }
  24367. },
  24368. head: {
  24369. height: math.unit(11.4, "feet"),
  24370. name: "Head",
  24371. image: {
  24372. source: "./media/characters/mandarax/head.svg"
  24373. }
  24374. },
  24375. belly: {
  24376. height: math.unit(33, "feet"),
  24377. name: "Belly",
  24378. capacity: math.unit(500, "people"),
  24379. image: {
  24380. source: "./media/characters/mandarax/belly.svg"
  24381. }
  24382. },
  24383. dick: {
  24384. height: math.unit(8.46, "feet"),
  24385. name: "Dick",
  24386. image: {
  24387. source: "./media/characters/mandarax/dick.svg"
  24388. }
  24389. },
  24390. top: {
  24391. height: math.unit(28, "meters"),
  24392. name: "Top",
  24393. image: {
  24394. source: "./media/characters/mandarax/top.svg"
  24395. }
  24396. },
  24397. },
  24398. [
  24399. {
  24400. name: "Normal",
  24401. height: math.unit(25, "feet"),
  24402. default: true
  24403. },
  24404. ]
  24405. ))
  24406. characterMakers.push(() => makeCharacter(
  24407. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24408. {
  24409. front: {
  24410. height: math.unit(5, "feet"),
  24411. weight: math.unit(90, "lb"),
  24412. name: "Front",
  24413. image: {
  24414. source: "./media/characters/pixil/front.svg",
  24415. extra: 2000 / 1618,
  24416. bottom: 12.3 / 2011
  24417. }
  24418. },
  24419. },
  24420. [
  24421. {
  24422. name: "Normal",
  24423. height: math.unit(5, "feet"),
  24424. default: true
  24425. },
  24426. {
  24427. name: "Megamacro",
  24428. height: math.unit(10, "miles"),
  24429. },
  24430. ]
  24431. ))
  24432. characterMakers.push(() => makeCharacter(
  24433. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24434. {
  24435. front: {
  24436. height: math.unit(7 + 2 / 12, "feet"),
  24437. weight: math.unit(200, "lb"),
  24438. name: "Front",
  24439. image: {
  24440. source: "./media/characters/angel/front.svg",
  24441. extra: 1830 / 1737,
  24442. bottom: 22.6 / 1854,
  24443. }
  24444. },
  24445. },
  24446. [
  24447. {
  24448. name: "Normal",
  24449. height: math.unit(7 + 2 / 12, "feet"),
  24450. default: true
  24451. },
  24452. {
  24453. name: "Macro",
  24454. height: math.unit(1000, "feet")
  24455. },
  24456. {
  24457. name: "Megamacro",
  24458. height: math.unit(2, "miles")
  24459. },
  24460. {
  24461. name: "Gigamacro",
  24462. height: math.unit(20, "earths")
  24463. },
  24464. ]
  24465. ))
  24466. characterMakers.push(() => makeCharacter(
  24467. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24468. {
  24469. front: {
  24470. height: math.unit(5, "feet"),
  24471. weight: math.unit(180, "lb"),
  24472. name: "Front",
  24473. image: {
  24474. source: "./media/characters/mekana/front.svg",
  24475. extra: 1671 / 1605,
  24476. bottom: 3.5 / 1691
  24477. }
  24478. },
  24479. side: {
  24480. height: math.unit(5, "feet"),
  24481. weight: math.unit(180, "lb"),
  24482. name: "Side",
  24483. image: {
  24484. source: "./media/characters/mekana/side.svg",
  24485. extra: 1671 / 1605,
  24486. bottom: 3.5 / 1691
  24487. }
  24488. },
  24489. back: {
  24490. height: math.unit(5, "feet"),
  24491. weight: math.unit(180, "lb"),
  24492. name: "Back",
  24493. image: {
  24494. source: "./media/characters/mekana/back.svg",
  24495. extra: 1671 / 1605,
  24496. bottom: 3.5 / 1691
  24497. }
  24498. },
  24499. },
  24500. [
  24501. {
  24502. name: "Normal",
  24503. height: math.unit(5, "feet"),
  24504. default: true
  24505. },
  24506. ]
  24507. ))
  24508. characterMakers.push(() => makeCharacter(
  24509. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24510. {
  24511. front: {
  24512. height: math.unit(4 + 6 / 12, "feet"),
  24513. weight: math.unit(80, "lb"),
  24514. name: "Front",
  24515. image: {
  24516. source: "./media/characters/pixie/front.svg",
  24517. extra: 1924 / 1825,
  24518. bottom: 22.4 / 1946
  24519. }
  24520. },
  24521. },
  24522. [
  24523. {
  24524. name: "Normal",
  24525. height: math.unit(4 + 6 / 12, "feet"),
  24526. default: true
  24527. },
  24528. {
  24529. name: "Macro",
  24530. height: math.unit(40, "feet")
  24531. },
  24532. ]
  24533. ))
  24534. characterMakers.push(() => makeCharacter(
  24535. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24536. {
  24537. front: {
  24538. height: math.unit(2.1, "meters"),
  24539. weight: math.unit(200, "lb"),
  24540. name: "Front",
  24541. image: {
  24542. source: "./media/characters/the-lascivious/front.svg",
  24543. extra: 1 / 0.893,
  24544. bottom: 3.5 / 573.7
  24545. }
  24546. },
  24547. },
  24548. [
  24549. {
  24550. name: "Human Scale",
  24551. height: math.unit(2.1, "meters")
  24552. },
  24553. {
  24554. name: "Wolxi Scale",
  24555. height: math.unit(46.2, "m"),
  24556. default: true
  24557. },
  24558. {
  24559. name: "Boinker of Buildings",
  24560. height: math.unit(10, "km")
  24561. },
  24562. {
  24563. name: "Shagger of Skyscrapers",
  24564. height: math.unit(40, "km")
  24565. },
  24566. {
  24567. name: "Banger of Boroughs",
  24568. height: math.unit(4000, "km")
  24569. },
  24570. {
  24571. name: "Screwer of States",
  24572. height: math.unit(100000, "km")
  24573. },
  24574. {
  24575. name: "Pounder of Planets",
  24576. height: math.unit(2000000, "km")
  24577. },
  24578. ]
  24579. ))
  24580. characterMakers.push(() => makeCharacter(
  24581. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24582. {
  24583. front: {
  24584. height: math.unit(6, "feet"),
  24585. weight: math.unit(150, "lb"),
  24586. name: "Front",
  24587. image: {
  24588. source: "./media/characters/aj/front.svg",
  24589. extra: 2039 / 1562,
  24590. bottom: 40 / 2079
  24591. }
  24592. },
  24593. },
  24594. [
  24595. {
  24596. name: "Normal",
  24597. height: math.unit(11 + 6 / 12, "feet"),
  24598. default: true
  24599. },
  24600. {
  24601. name: "Megamacro",
  24602. height: math.unit(60, "megameters")
  24603. },
  24604. ]
  24605. ))
  24606. characterMakers.push(() => makeCharacter(
  24607. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24608. {
  24609. side: {
  24610. height: math.unit(31 + 8 / 12, "feet"),
  24611. weight: math.unit(75000, "kg"),
  24612. name: "Side",
  24613. image: {
  24614. source: "./media/characters/koros/side.svg",
  24615. extra: 1442 / 1297,
  24616. bottom: 122.7 / 1562
  24617. }
  24618. },
  24619. dicksKingsCrown: {
  24620. height: math.unit(6, "feet"),
  24621. name: "Dicks (King's Crown)",
  24622. image: {
  24623. source: "./media/characters/koros/dicks-kings-crown.svg"
  24624. }
  24625. },
  24626. dicksTailSet: {
  24627. height: math.unit(3, "feet"),
  24628. name: "Dicks (Tail Set)",
  24629. image: {
  24630. source: "./media/characters/koros/dicks-tail-set.svg"
  24631. }
  24632. },
  24633. dickCumming: {
  24634. height: math.unit(7.98, "feet"),
  24635. name: "Dick (Cumming)",
  24636. image: {
  24637. source: "./media/characters/koros/dick-cumming.svg"
  24638. }
  24639. },
  24640. dicksBack: {
  24641. height: math.unit(5.9, "feet"),
  24642. name: "Dicks (Back)",
  24643. image: {
  24644. source: "./media/characters/koros/dicks-back.svg"
  24645. }
  24646. },
  24647. dicksFront: {
  24648. height: math.unit(3.72, "feet"),
  24649. name: "Dicks (Front)",
  24650. image: {
  24651. source: "./media/characters/koros/dicks-front.svg"
  24652. }
  24653. },
  24654. dicksPeeking: {
  24655. height: math.unit(3.0, "feet"),
  24656. name: "Dicks (Peeking)",
  24657. image: {
  24658. source: "./media/characters/koros/dicks-peeking.svg"
  24659. }
  24660. },
  24661. eye: {
  24662. height: math.unit(1.7, "feet"),
  24663. name: "Eye",
  24664. image: {
  24665. source: "./media/characters/koros/eye.svg"
  24666. }
  24667. },
  24668. headFront: {
  24669. height: math.unit(11.69, "feet"),
  24670. name: "Head (Front)",
  24671. image: {
  24672. source: "./media/characters/koros/head-front.svg"
  24673. }
  24674. },
  24675. headSide: {
  24676. height: math.unit(14, "feet"),
  24677. name: "Head (Side)",
  24678. image: {
  24679. source: "./media/characters/koros/head-side.svg"
  24680. }
  24681. },
  24682. leg: {
  24683. height: math.unit(17, "feet"),
  24684. name: "Leg",
  24685. image: {
  24686. source: "./media/characters/koros/leg.svg"
  24687. }
  24688. },
  24689. mawSide: {
  24690. height: math.unit(12.8, "feet"),
  24691. name: "Maw (Side)",
  24692. image: {
  24693. source: "./media/characters/koros/maw-side.svg"
  24694. }
  24695. },
  24696. mawSpitting: {
  24697. height: math.unit(17, "feet"),
  24698. name: "Maw (Spitting)",
  24699. image: {
  24700. source: "./media/characters/koros/maw-spitting.svg"
  24701. }
  24702. },
  24703. slit: {
  24704. height: math.unit(2.8, "feet"),
  24705. name: "Slit",
  24706. image: {
  24707. source: "./media/characters/koros/slit.svg"
  24708. }
  24709. },
  24710. stomach: {
  24711. height: math.unit(6.8, "feet"),
  24712. capacity: math.unit(20, "people"),
  24713. name: "Stomach",
  24714. image: {
  24715. source: "./media/characters/koros/stomach.svg"
  24716. }
  24717. },
  24718. wingspanBottom: {
  24719. height: math.unit(114, "feet"),
  24720. name: "Wingspan (Bottom)",
  24721. image: {
  24722. source: "./media/characters/koros/wingspan-bottom.svg"
  24723. }
  24724. },
  24725. wingspanTop: {
  24726. height: math.unit(104, "feet"),
  24727. name: "Wingspan (Top)",
  24728. image: {
  24729. source: "./media/characters/koros/wingspan-top.svg"
  24730. }
  24731. },
  24732. },
  24733. [
  24734. {
  24735. name: "Normal",
  24736. height: math.unit(31 + 8 / 12, "feet"),
  24737. default: true
  24738. },
  24739. ]
  24740. ))
  24741. characterMakers.push(() => makeCharacter(
  24742. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24743. {
  24744. front: {
  24745. height: math.unit(18 + 5 / 12, "feet"),
  24746. weight: math.unit(3750, "kg"),
  24747. name: "Front",
  24748. image: {
  24749. source: "./media/characters/vexx/front.svg",
  24750. extra: 426 / 396,
  24751. bottom: 31.5 / 458
  24752. }
  24753. },
  24754. maw: {
  24755. height: math.unit(6, "feet"),
  24756. name: "Maw",
  24757. image: {
  24758. source: "./media/characters/vexx/maw.svg"
  24759. }
  24760. },
  24761. },
  24762. [
  24763. {
  24764. name: "Normal",
  24765. height: math.unit(18 + 5 / 12, "feet"),
  24766. default: true
  24767. },
  24768. ]
  24769. ))
  24770. characterMakers.push(() => makeCharacter(
  24771. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24772. {
  24773. front: {
  24774. height: math.unit(17 + 6 / 12, "feet"),
  24775. weight: math.unit(150, "lb"),
  24776. name: "Front",
  24777. image: {
  24778. source: "./media/characters/baadra/front.svg",
  24779. extra: 3137 / 2890,
  24780. bottom: 168.4 / 3305
  24781. }
  24782. },
  24783. back: {
  24784. height: math.unit(17 + 6 / 12, "feet"),
  24785. weight: math.unit(150, "lb"),
  24786. name: "Back",
  24787. image: {
  24788. source: "./media/characters/baadra/back.svg",
  24789. extra: 3142 / 2890,
  24790. bottom: 220 / 3371
  24791. }
  24792. },
  24793. head: {
  24794. height: math.unit(5.45, "feet"),
  24795. name: "Head",
  24796. image: {
  24797. source: "./media/characters/baadra/head.svg"
  24798. }
  24799. },
  24800. headAngry: {
  24801. height: math.unit(4.95, "feet"),
  24802. name: "Head (Angry)",
  24803. image: {
  24804. source: "./media/characters/baadra/head-angry.svg"
  24805. }
  24806. },
  24807. headOpen: {
  24808. height: math.unit(6, "feet"),
  24809. name: "Head (Open)",
  24810. image: {
  24811. source: "./media/characters/baadra/head-open.svg"
  24812. }
  24813. },
  24814. },
  24815. [
  24816. {
  24817. name: "Normal",
  24818. height: math.unit(17 + 6 / 12, "feet"),
  24819. default: true
  24820. },
  24821. ]
  24822. ))
  24823. characterMakers.push(() => makeCharacter(
  24824. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24825. {
  24826. front: {
  24827. height: math.unit(7 + 3 / 12, "feet"),
  24828. weight: math.unit(180, "lb"),
  24829. name: "Front",
  24830. image: {
  24831. source: "./media/characters/juri/front.svg",
  24832. extra: 1401 / 1237,
  24833. bottom: 18.5 / 1418
  24834. }
  24835. },
  24836. side: {
  24837. height: math.unit(7 + 3 / 12, "feet"),
  24838. weight: math.unit(180, "lb"),
  24839. name: "Side",
  24840. image: {
  24841. source: "./media/characters/juri/side.svg",
  24842. extra: 1424 / 1242,
  24843. bottom: 18.5 / 1447
  24844. }
  24845. },
  24846. sitting: {
  24847. height: math.unit(6, "feet"),
  24848. weight: math.unit(180, "lb"),
  24849. name: "Sitting",
  24850. image: {
  24851. source: "./media/characters/juri/sitting.svg",
  24852. extra: 1270 / 1143,
  24853. bottom: 100 / 1343
  24854. }
  24855. },
  24856. back: {
  24857. height: math.unit(7 + 3 / 12, "feet"),
  24858. weight: math.unit(180, "lb"),
  24859. name: "Back",
  24860. image: {
  24861. source: "./media/characters/juri/back.svg",
  24862. extra: 1377 / 1240,
  24863. bottom: 23.7 / 1405
  24864. }
  24865. },
  24866. maw: {
  24867. height: math.unit(2.8, "feet"),
  24868. name: "Maw",
  24869. image: {
  24870. source: "./media/characters/juri/maw.svg"
  24871. }
  24872. },
  24873. stomach: {
  24874. height: math.unit(0.89, "feet"),
  24875. capacity: math.unit(4, "liters"),
  24876. name: "Stomach",
  24877. image: {
  24878. source: "./media/characters/juri/stomach.svg"
  24879. }
  24880. },
  24881. },
  24882. [
  24883. {
  24884. name: "Normal",
  24885. height: math.unit(7 + 3 / 12, "feet"),
  24886. default: true
  24887. },
  24888. ]
  24889. ))
  24890. characterMakers.push(() => makeCharacter(
  24891. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  24892. {
  24893. fox: {
  24894. height: math.unit(5 + 6 / 12, "feet"),
  24895. weight: math.unit(140, "lb"),
  24896. name: "Fox",
  24897. image: {
  24898. source: "./media/characters/maxene-sita/fox.svg",
  24899. extra: 146 / 138,
  24900. bottom: 2.1 / 148.19
  24901. }
  24902. },
  24903. foxLaying: {
  24904. height: math.unit(1.70, "feet"),
  24905. weight: math.unit(140, "lb"),
  24906. name: "Fox (Laying)",
  24907. image: {
  24908. source: "./media/characters/maxene-sita/fox-laying.svg",
  24909. extra: 910 / 572,
  24910. bottom: 71 / 981
  24911. }
  24912. },
  24913. kitsune: {
  24914. height: math.unit(10, "feet"),
  24915. weight: math.unit(800, "lb"),
  24916. name: "Kitsune",
  24917. image: {
  24918. source: "./media/characters/maxene-sita/kitsune.svg",
  24919. extra: 185 / 176,
  24920. bottom: 4.7 / 189.9
  24921. }
  24922. },
  24923. hellhound: {
  24924. height: math.unit(10, "feet"),
  24925. weight: math.unit(700, "lb"),
  24926. name: "Hellhound",
  24927. image: {
  24928. source: "./media/characters/maxene-sita/hellhound.svg",
  24929. extra: 1600 / 1545,
  24930. bottom: 81 / 1681
  24931. }
  24932. },
  24933. },
  24934. [
  24935. {
  24936. name: "Normal",
  24937. height: math.unit(5 + 6 / 12, "feet"),
  24938. default: true
  24939. },
  24940. ]
  24941. ))
  24942. characterMakers.push(() => makeCharacter(
  24943. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24944. {
  24945. front: {
  24946. height: math.unit(3 + 4 / 12, "feet"),
  24947. weight: math.unit(70, "lb"),
  24948. name: "Front",
  24949. image: {
  24950. source: "./media/characters/maia/front.svg",
  24951. extra: 227 / 219.5,
  24952. bottom: 40 / 267
  24953. }
  24954. },
  24955. back: {
  24956. height: math.unit(3 + 4 / 12, "feet"),
  24957. weight: math.unit(70, "lb"),
  24958. name: "Back",
  24959. image: {
  24960. source: "./media/characters/maia/back.svg",
  24961. extra: 237 / 225
  24962. }
  24963. },
  24964. },
  24965. [
  24966. {
  24967. name: "Normal",
  24968. height: math.unit(3 + 4 / 12, "feet"),
  24969. default: true
  24970. },
  24971. ]
  24972. ))
  24973. characterMakers.push(() => makeCharacter(
  24974. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  24975. {
  24976. front: {
  24977. height: math.unit(5 + 10 / 12, "feet"),
  24978. weight: math.unit(197, "lb"),
  24979. name: "Front",
  24980. image: {
  24981. source: "./media/characters/jabaro/front.svg",
  24982. extra: 225 / 216,
  24983. bottom: 5.06 / 230
  24984. }
  24985. },
  24986. back: {
  24987. height: math.unit(5 + 10 / 12, "feet"),
  24988. weight: math.unit(197, "lb"),
  24989. name: "Back",
  24990. image: {
  24991. source: "./media/characters/jabaro/back.svg",
  24992. extra: 225 / 219,
  24993. bottom: 1.9 / 227
  24994. }
  24995. },
  24996. },
  24997. [
  24998. {
  24999. name: "Normal",
  25000. height: math.unit(5 + 10 / 12, "feet"),
  25001. default: true
  25002. },
  25003. ]
  25004. ))
  25005. characterMakers.push(() => makeCharacter(
  25006. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25007. {
  25008. front: {
  25009. height: math.unit(5 + 8 / 12, "feet"),
  25010. weight: math.unit(139, "lb"),
  25011. name: "Front",
  25012. image: {
  25013. source: "./media/characters/risa/front.svg",
  25014. extra: 270 / 260,
  25015. bottom: 11.2 / 282
  25016. }
  25017. },
  25018. back: {
  25019. height: math.unit(5 + 8 / 12, "feet"),
  25020. weight: math.unit(139, "lb"),
  25021. name: "Back",
  25022. image: {
  25023. source: "./media/characters/risa/back.svg",
  25024. extra: 264 / 255,
  25025. bottom: 4 / 268
  25026. }
  25027. },
  25028. },
  25029. [
  25030. {
  25031. name: "Normal",
  25032. height: math.unit(5 + 8 / 12, "feet"),
  25033. default: true
  25034. },
  25035. ]
  25036. ))
  25037. characterMakers.push(() => makeCharacter(
  25038. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25039. {
  25040. front: {
  25041. height: math.unit(2 + 11 / 12, "feet"),
  25042. weight: math.unit(30, "lb"),
  25043. name: "Front",
  25044. image: {
  25045. source: "./media/characters/weatley/front.svg",
  25046. bottom: 10.7 / 414,
  25047. extra: 403.5 / 362
  25048. }
  25049. },
  25050. back: {
  25051. height: math.unit(2 + 11 / 12, "feet"),
  25052. weight: math.unit(30, "lb"),
  25053. name: "Back",
  25054. image: {
  25055. source: "./media/characters/weatley/back.svg",
  25056. bottom: 10.7 / 414,
  25057. extra: 403.5 / 362
  25058. }
  25059. },
  25060. },
  25061. [
  25062. {
  25063. name: "Normal",
  25064. height: math.unit(2 + 11 / 12, "feet"),
  25065. default: true
  25066. },
  25067. ]
  25068. ))
  25069. characterMakers.push(() => makeCharacter(
  25070. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25071. {
  25072. front: {
  25073. height: math.unit(5 + 2 / 12, "feet"),
  25074. weight: math.unit(50, "kg"),
  25075. name: "Front",
  25076. image: {
  25077. source: "./media/characters/mercury-crescent/front.svg",
  25078. extra: 1088 / 1033,
  25079. bottom: 18.9 / 1109
  25080. }
  25081. },
  25082. },
  25083. [
  25084. {
  25085. name: "Normal",
  25086. height: math.unit(5 + 2 / 12, "feet"),
  25087. default: true
  25088. },
  25089. ]
  25090. ))
  25091. characterMakers.push(() => makeCharacter(
  25092. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25093. {
  25094. front: {
  25095. height: math.unit(2, "feet"),
  25096. weight: math.unit(15, "kg"),
  25097. name: "Front",
  25098. image: {
  25099. source: "./media/characters/diamond-jones/front.svg",
  25100. bottom: 16 / 568
  25101. }
  25102. },
  25103. },
  25104. [
  25105. {
  25106. name: "Normal",
  25107. height: math.unit(2, "feet"),
  25108. default: true
  25109. },
  25110. ]
  25111. ))
  25112. characterMakers.push(() => makeCharacter(
  25113. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25114. {
  25115. front: {
  25116. height: math.unit(3, "feet"),
  25117. weight: math.unit(30, "kg"),
  25118. name: "Front",
  25119. image: {
  25120. source: "./media/characters/sweet-bit/front.svg",
  25121. extra: 675 / 567,
  25122. bottom: 27.7 / 703
  25123. }
  25124. },
  25125. },
  25126. [
  25127. {
  25128. name: "Normal",
  25129. height: math.unit(3, "feet"),
  25130. default: true
  25131. },
  25132. ]
  25133. ))
  25134. characterMakers.push(() => makeCharacter(
  25135. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25136. {
  25137. side: {
  25138. height: math.unit(9.178, "feet"),
  25139. weight: math.unit(500, "lb"),
  25140. name: "Side",
  25141. image: {
  25142. source: "./media/characters/umbrazen/side.svg",
  25143. extra: 1730 / 1473,
  25144. bottom: 34.6 / 1765
  25145. }
  25146. },
  25147. },
  25148. [
  25149. {
  25150. name: "Normal",
  25151. height: math.unit(9.178, "feet"),
  25152. default: true
  25153. },
  25154. ]
  25155. ))
  25156. characterMakers.push(() => makeCharacter(
  25157. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25158. {
  25159. front: {
  25160. height: math.unit(10, "feet"),
  25161. weight: math.unit(750, "lb"),
  25162. name: "Front",
  25163. image: {
  25164. source: "./media/characters/arlist/front.svg",
  25165. extra: 961 / 778,
  25166. bottom: 6.2 / 986
  25167. }
  25168. },
  25169. },
  25170. [
  25171. {
  25172. name: "Normal",
  25173. height: math.unit(10, "feet"),
  25174. default: true
  25175. },
  25176. ]
  25177. ))
  25178. characterMakers.push(() => makeCharacter(
  25179. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25180. {
  25181. front: {
  25182. height: math.unit(5 + 1 / 12, "feet"),
  25183. weight: math.unit(110, "lb"),
  25184. name: "Front",
  25185. image: {
  25186. source: "./media/characters/aradel/front.svg",
  25187. extra: 324 / 303,
  25188. bottom: 3.6 / 329.4
  25189. }
  25190. },
  25191. },
  25192. [
  25193. {
  25194. name: "Normal",
  25195. height: math.unit(5 + 1 / 12, "feet"),
  25196. default: true
  25197. },
  25198. ]
  25199. ))
  25200. characterMakers.push(() => makeCharacter(
  25201. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25202. {
  25203. front: {
  25204. height: math.unit(3 + 8 / 12, "feet"),
  25205. weight: math.unit(50, "lb"),
  25206. name: "Front",
  25207. image: {
  25208. source: "./media/characters/serryn/front.svg",
  25209. extra: 1792 / 1656,
  25210. bottom: 43.5 / 1840
  25211. }
  25212. },
  25213. },
  25214. [
  25215. {
  25216. name: "Normal",
  25217. height: math.unit(3 + 8 / 12, "feet"),
  25218. default: true
  25219. },
  25220. ]
  25221. ))
  25222. characterMakers.push(() => makeCharacter(
  25223. { name: "Xavier Thyme" },
  25224. {
  25225. front: {
  25226. height: math.unit(7 + 10 / 12, "feet"),
  25227. weight: math.unit(255, "lb"),
  25228. name: "Front",
  25229. image: {
  25230. source: "./media/characters/xavier-thyme/front.svg",
  25231. extra: 3733 / 3642,
  25232. bottom: 131 / 3869
  25233. }
  25234. },
  25235. frontRaven: {
  25236. height: math.unit(7 + 10 / 12, "feet"),
  25237. weight: math.unit(255, "lb"),
  25238. name: "Front (Raven)",
  25239. image: {
  25240. source: "./media/characters/xavier-thyme/front-raven.svg",
  25241. extra: 4385 / 3642,
  25242. bottom: 131 / 4517
  25243. }
  25244. },
  25245. },
  25246. [
  25247. {
  25248. name: "Normal",
  25249. height: math.unit(7 + 10 / 12, "feet"),
  25250. default: true
  25251. },
  25252. ]
  25253. ))
  25254. characterMakers.push(() => makeCharacter(
  25255. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25256. {
  25257. front: {
  25258. height: math.unit(1.6, "m"),
  25259. weight: math.unit(50, "kg"),
  25260. name: "Front",
  25261. image: {
  25262. source: "./media/characters/kiki/front.svg",
  25263. extra: 4682 / 3610,
  25264. bottom: 115 / 4777
  25265. }
  25266. },
  25267. },
  25268. [
  25269. {
  25270. name: "Normal",
  25271. height: math.unit(1.6, "meters"),
  25272. default: true
  25273. },
  25274. ]
  25275. ))
  25276. characterMakers.push(() => makeCharacter(
  25277. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25278. {
  25279. front: {
  25280. height: math.unit(50, "m"),
  25281. weight: math.unit(500, "tonnes"),
  25282. name: "Front",
  25283. image: {
  25284. source: "./media/characters/ryoko/front.svg",
  25285. extra: 4632 / 3926,
  25286. bottom: 193 / 4823
  25287. }
  25288. },
  25289. },
  25290. [
  25291. {
  25292. name: "Normal",
  25293. height: math.unit(50, "meters"),
  25294. default: true
  25295. },
  25296. ]
  25297. ))
  25298. characterMakers.push(() => makeCharacter(
  25299. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25300. {
  25301. front: {
  25302. height: math.unit(30, "m"),
  25303. weight: math.unit(22, "tonnes"),
  25304. name: "Front",
  25305. image: {
  25306. source: "./media/characters/elio/front.svg",
  25307. extra: 4582 / 3720,
  25308. bottom: 236 / 4828
  25309. }
  25310. },
  25311. },
  25312. [
  25313. {
  25314. name: "Normal",
  25315. height: math.unit(30, "meters"),
  25316. default: true
  25317. },
  25318. ]
  25319. ))
  25320. characterMakers.push(() => makeCharacter(
  25321. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25322. {
  25323. front: {
  25324. height: math.unit(6 + 3 / 12, "feet"),
  25325. weight: math.unit(120, "lb"),
  25326. name: "Front",
  25327. image: {
  25328. source: "./media/characters/azura/front.svg",
  25329. extra: 1149 / 1135,
  25330. bottom: 45 / 1194
  25331. }
  25332. },
  25333. frontClothed: {
  25334. height: math.unit(6 + 3 / 12, "feet"),
  25335. weight: math.unit(120, "lb"),
  25336. name: "Front (Clothed)",
  25337. image: {
  25338. source: "./media/characters/azura/front-clothed.svg",
  25339. extra: 1149 / 1135,
  25340. bottom: 45 / 1194
  25341. }
  25342. },
  25343. },
  25344. [
  25345. {
  25346. name: "Normal",
  25347. height: math.unit(6 + 3 / 12, "feet"),
  25348. default: true
  25349. },
  25350. {
  25351. name: "Macro",
  25352. height: math.unit(20 + 6 / 12, "feet")
  25353. },
  25354. {
  25355. name: "Megamacro",
  25356. height: math.unit(12, "miles")
  25357. },
  25358. {
  25359. name: "Gigamacro",
  25360. height: math.unit(10000, "miles")
  25361. },
  25362. {
  25363. name: "Teramacro",
  25364. height: math.unit(900000, "miles")
  25365. },
  25366. ]
  25367. ))
  25368. characterMakers.push(() => makeCharacter(
  25369. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25370. {
  25371. front: {
  25372. height: math.unit(12, "feet"),
  25373. weight: math.unit(1, "ton"),
  25374. capacity: math.unit(660000, "gallons"),
  25375. name: "Front",
  25376. image: {
  25377. source: "./media/characters/zeus/front.svg",
  25378. extra: 5005 / 4717,
  25379. bottom: 363 / 5388
  25380. }
  25381. },
  25382. },
  25383. [
  25384. {
  25385. name: "Normal",
  25386. height: math.unit(12, "feet")
  25387. },
  25388. {
  25389. name: "Preferred Size",
  25390. height: math.unit(0.5, "miles"),
  25391. default: true
  25392. },
  25393. {
  25394. name: "Giga Horse",
  25395. height: math.unit(300, "miles")
  25396. },
  25397. {
  25398. name: "Riding Planets",
  25399. height: math.unit(30, "megameters")
  25400. },
  25401. {
  25402. name: "Cosmic Giant",
  25403. height: math.unit(3, "zettameters")
  25404. },
  25405. {
  25406. name: "Breeding God",
  25407. height: math.unit(9.92e22, "yottameters")
  25408. },
  25409. ]
  25410. ))
  25411. characterMakers.push(() => makeCharacter(
  25412. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25413. {
  25414. side: {
  25415. height: math.unit(9, "feet"),
  25416. weight: math.unit(1500, "kg"),
  25417. name: "Side",
  25418. image: {
  25419. source: "./media/characters/fang/side.svg",
  25420. extra: 924 / 866,
  25421. bottom: 47.5 / 972.3
  25422. }
  25423. },
  25424. },
  25425. [
  25426. {
  25427. name: "Normal",
  25428. height: math.unit(9, "feet"),
  25429. default: true
  25430. },
  25431. {
  25432. name: "Macro",
  25433. height: math.unit(75 + 6 / 12, "feet")
  25434. },
  25435. {
  25436. name: "Teramacro",
  25437. height: math.unit(50000, "miles")
  25438. },
  25439. ]
  25440. ))
  25441. characterMakers.push(() => makeCharacter(
  25442. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25443. {
  25444. front: {
  25445. height: math.unit(10, "feet"),
  25446. weight: math.unit(2, "tons"),
  25447. name: "Front",
  25448. image: {
  25449. source: "./media/characters/rekhit/front.svg",
  25450. extra: 2796 / 2590,
  25451. bottom: 225 / 3022
  25452. }
  25453. },
  25454. },
  25455. [
  25456. {
  25457. name: "Normal",
  25458. height: math.unit(10, "feet"),
  25459. default: true
  25460. },
  25461. {
  25462. name: "Macro",
  25463. height: math.unit(500, "feet")
  25464. },
  25465. ]
  25466. ))
  25467. characterMakers.push(() => makeCharacter(
  25468. { name: "Dahlia Verrick" },
  25469. {
  25470. front: {
  25471. height: math.unit(7 + 6.451 / 12, "feet"),
  25472. weight: math.unit(310, "lb"),
  25473. name: "Front",
  25474. image: {
  25475. source: "./media/characters/dahlia-verrick/front.svg",
  25476. extra: 1488 / 1365,
  25477. bottom: 6.2 / 1495
  25478. }
  25479. },
  25480. back: {
  25481. height: math.unit(7 + 6.451 / 12, "feet"),
  25482. weight: math.unit(310, "lb"),
  25483. name: "Back",
  25484. image: {
  25485. source: "./media/characters/dahlia-verrick/back.svg",
  25486. extra: 1472 / 1351,
  25487. bottom: 5.28 / 1477
  25488. }
  25489. },
  25490. frontBusiness: {
  25491. height: math.unit(7 + 6.451 / 12, "feet"),
  25492. weight: math.unit(200, "lb"),
  25493. name: "Front (Business)",
  25494. image: {
  25495. source: "./media/characters/dahlia-verrick/front-business.svg",
  25496. extra: 1478 / 1381,
  25497. bottom: 5.5 / 1484
  25498. }
  25499. },
  25500. frontCasual: {
  25501. height: math.unit(7 + 6.451 / 12, "feet"),
  25502. weight: math.unit(200, "lb"),
  25503. name: "Front (Casual)",
  25504. image: {
  25505. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25506. extra: 1478 / 1381,
  25507. bottom: 5.5 / 1484
  25508. }
  25509. },
  25510. },
  25511. [
  25512. {
  25513. name: "Travel-Sized",
  25514. height: math.unit(7.45, "inches")
  25515. },
  25516. {
  25517. name: "Normal",
  25518. height: math.unit(7 + 6.451 / 12, "feet"),
  25519. default: true
  25520. },
  25521. {
  25522. name: "Hitting the Town",
  25523. height: math.unit(37 + 8 / 12, "feet")
  25524. },
  25525. {
  25526. name: "Stomp in the Suburbs",
  25527. height: math.unit(964 + 9.728 / 12, "feet")
  25528. },
  25529. {
  25530. name: "Sit on the City",
  25531. height: math.unit(61747 + 10.592 / 12, "feet")
  25532. },
  25533. {
  25534. name: "Glomp the Globe",
  25535. height: math.unit(252919327 + 4.832 / 12, "feet")
  25536. },
  25537. ]
  25538. ))
  25539. characterMakers.push(() => makeCharacter(
  25540. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25541. {
  25542. front: {
  25543. height: math.unit(6 + 4 / 12, "feet"),
  25544. weight: math.unit(320, "lb"),
  25545. name: "Front",
  25546. image: {
  25547. source: "./media/characters/balina-mahigan/front.svg",
  25548. extra: 447 / 428,
  25549. bottom: 18 / 466
  25550. }
  25551. },
  25552. back: {
  25553. height: math.unit(6 + 4 / 12, "feet"),
  25554. weight: math.unit(320, "lb"),
  25555. name: "Back",
  25556. image: {
  25557. source: "./media/characters/balina-mahigan/back.svg",
  25558. extra: 445 / 428,
  25559. bottom: 4.07 / 448
  25560. }
  25561. },
  25562. arm: {
  25563. height: math.unit(1.88, "feet"),
  25564. name: "Arm",
  25565. image: {
  25566. source: "./media/characters/balina-mahigan/arm.svg"
  25567. }
  25568. },
  25569. backPort: {
  25570. height: math.unit(0.685, "feet"),
  25571. name: "Back Port",
  25572. image: {
  25573. source: "./media/characters/balina-mahigan/back-port.svg"
  25574. }
  25575. },
  25576. hoofpaw: {
  25577. height: math.unit(1.41, "feet"),
  25578. name: "Hoofpaw",
  25579. image: {
  25580. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25581. }
  25582. },
  25583. leftHandBack: {
  25584. height: math.unit(0.938, "feet"),
  25585. name: "Left Hand (Back)",
  25586. image: {
  25587. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25588. }
  25589. },
  25590. leftHandFront: {
  25591. height: math.unit(0.938, "feet"),
  25592. name: "Left Hand (Front)",
  25593. image: {
  25594. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25595. }
  25596. },
  25597. rightHandBack: {
  25598. height: math.unit(0.95, "feet"),
  25599. name: "Right Hand (Back)",
  25600. image: {
  25601. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25602. }
  25603. },
  25604. rightHandFront: {
  25605. height: math.unit(0.95, "feet"),
  25606. name: "Right Hand (Front)",
  25607. image: {
  25608. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25609. }
  25610. },
  25611. },
  25612. [
  25613. {
  25614. name: "Normal",
  25615. height: math.unit(6 + 4 / 12, "feet"),
  25616. default: true
  25617. },
  25618. ]
  25619. ))
  25620. characterMakers.push(() => makeCharacter(
  25621. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25622. {
  25623. front: {
  25624. height: math.unit(6, "feet"),
  25625. weight: math.unit(320, "lb"),
  25626. name: "Front",
  25627. image: {
  25628. source: "./media/characters/balina-mejeri/front.svg",
  25629. extra: 517 / 488,
  25630. bottom: 44.2 / 561
  25631. }
  25632. },
  25633. },
  25634. [
  25635. {
  25636. name: "Normal",
  25637. height: math.unit(6 + 4 / 12, "feet")
  25638. },
  25639. {
  25640. name: "Business",
  25641. height: math.unit(155, "feet"),
  25642. default: true
  25643. },
  25644. ]
  25645. ))
  25646. characterMakers.push(() => makeCharacter(
  25647. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25648. {
  25649. kneeling: {
  25650. height: math.unit(6 + 4 / 12, "feet"),
  25651. weight: math.unit(300 * 20, "lb"),
  25652. name: "Kneeling",
  25653. image: {
  25654. source: "./media/characters/balbarian/kneeling.svg",
  25655. extra: 922 / 862,
  25656. bottom: 42.4 / 965
  25657. }
  25658. },
  25659. },
  25660. [
  25661. {
  25662. name: "Normal",
  25663. height: math.unit(6 + 4 / 12, "feet")
  25664. },
  25665. {
  25666. name: "Treasured",
  25667. height: math.unit(18 + 9 / 12, "feet"),
  25668. default: true
  25669. },
  25670. {
  25671. name: "Macro",
  25672. height: math.unit(900, "feet")
  25673. },
  25674. ]
  25675. ))
  25676. characterMakers.push(() => makeCharacter(
  25677. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25678. {
  25679. front: {
  25680. height: math.unit(6 + 4 / 12, "feet"),
  25681. weight: math.unit(325, "lb"),
  25682. name: "Front",
  25683. image: {
  25684. source: "./media/characters/balina-amarini/front.svg",
  25685. extra: 415 / 403,
  25686. bottom: 19 / 433.4
  25687. }
  25688. },
  25689. back: {
  25690. height: math.unit(6 + 4 / 12, "feet"),
  25691. weight: math.unit(325, "lb"),
  25692. name: "Back",
  25693. image: {
  25694. source: "./media/characters/balina-amarini/back.svg",
  25695. extra: 415 / 403,
  25696. bottom: 13.5 / 432
  25697. }
  25698. },
  25699. overdrive: {
  25700. height: math.unit(6 + 4 / 12, "feet"),
  25701. weight: math.unit(400, "lb"),
  25702. name: "Overdrive",
  25703. image: {
  25704. source: "./media/characters/balina-amarini/overdrive.svg",
  25705. extra: 269 / 259,
  25706. bottom: 12 / 282
  25707. }
  25708. },
  25709. },
  25710. [
  25711. {
  25712. name: "Boom",
  25713. height: math.unit(9 + 10 / 12, "feet"),
  25714. default: true
  25715. },
  25716. {
  25717. name: "Macro",
  25718. height: math.unit(280, "feet")
  25719. },
  25720. ]
  25721. ))
  25722. characterMakers.push(() => makeCharacter(
  25723. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25724. {
  25725. goddess: {
  25726. height: math.unit(600, "feet"),
  25727. weight: math.unit(2000000, "tons"),
  25728. name: "Goddess",
  25729. image: {
  25730. source: "./media/characters/lady-kubwa/goddess.svg",
  25731. extra: 1240.5 / 1223,
  25732. bottom: 22 / 1263
  25733. }
  25734. },
  25735. goddesser: {
  25736. height: math.unit(900, "feet"),
  25737. weight: math.unit(20000000, "lb"),
  25738. name: "Goddess-er",
  25739. image: {
  25740. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25741. extra: 899 / 888,
  25742. bottom: 12.6 / 912
  25743. }
  25744. },
  25745. },
  25746. [
  25747. {
  25748. name: "Macro",
  25749. height: math.unit(600, "feet"),
  25750. default: true
  25751. },
  25752. {
  25753. name: "Megamacro",
  25754. height: math.unit(250, "miles")
  25755. },
  25756. ]
  25757. ))
  25758. characterMakers.push(() => makeCharacter(
  25759. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25760. {
  25761. front: {
  25762. height: math.unit(7 + 7 / 12, "feet"),
  25763. weight: math.unit(250, "lb"),
  25764. name: "Front",
  25765. image: {
  25766. source: "./media/characters/tala-grovehorn/front.svg",
  25767. extra: 2636 / 2525,
  25768. bottom: 147 / 2781
  25769. }
  25770. },
  25771. back: {
  25772. height: math.unit(7 + 7 / 12, "feet"),
  25773. weight: math.unit(250, "lb"),
  25774. name: "Back",
  25775. image: {
  25776. source: "./media/characters/tala-grovehorn/back.svg",
  25777. extra: 2635 / 2539,
  25778. bottom: 100 / 2732.8
  25779. }
  25780. },
  25781. mouth: {
  25782. height: math.unit(1.15, "feet"),
  25783. name: "Mouth",
  25784. image: {
  25785. source: "./media/characters/tala-grovehorn/mouth.svg"
  25786. }
  25787. },
  25788. dick: {
  25789. height: math.unit(2.36, "feet"),
  25790. name: "Dick",
  25791. image: {
  25792. source: "./media/characters/tala-grovehorn/dick.svg"
  25793. }
  25794. },
  25795. slit: {
  25796. height: math.unit(0.61, "feet"),
  25797. name: "Slit",
  25798. image: {
  25799. source: "./media/characters/tala-grovehorn/slit.svg"
  25800. }
  25801. },
  25802. },
  25803. [
  25804. ]
  25805. ))
  25806. characterMakers.push(() => makeCharacter(
  25807. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25808. {
  25809. front: {
  25810. height: math.unit(7 + 7 / 12, "feet"),
  25811. weight: math.unit(225, "lb"),
  25812. name: "Front",
  25813. image: {
  25814. source: "./media/characters/epona/front.svg",
  25815. extra: 2445 / 2290,
  25816. bottom: 251 / 2696
  25817. }
  25818. },
  25819. back: {
  25820. height: math.unit(7 + 7 / 12, "feet"),
  25821. weight: math.unit(225, "lb"),
  25822. name: "Back",
  25823. image: {
  25824. source: "./media/characters/epona/back.svg",
  25825. extra: 2546 / 2408,
  25826. bottom: 44 / 2589
  25827. }
  25828. },
  25829. genitals: {
  25830. height: math.unit(1.5, "feet"),
  25831. name: "Genitals",
  25832. image: {
  25833. source: "./media/characters/epona/genitals.svg"
  25834. }
  25835. },
  25836. },
  25837. [
  25838. {
  25839. name: "Normal",
  25840. height: math.unit(7 + 7 / 12, "feet")
  25841. },
  25842. ]
  25843. ))
  25844. characterMakers.push(() => makeCharacter(
  25845. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25846. {
  25847. front: {
  25848. height: math.unit(7, "feet"),
  25849. weight: math.unit(518, "lb"),
  25850. name: "Front",
  25851. image: {
  25852. source: "./media/characters/avia-bloodbourn/front.svg",
  25853. extra: 1466 / 1350,
  25854. bottom: 65 / 1527
  25855. }
  25856. },
  25857. },
  25858. [
  25859. ]
  25860. ))
  25861. characterMakers.push(() => makeCharacter(
  25862. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25863. {
  25864. front: {
  25865. height: math.unit(9.35, "feet"),
  25866. weight: math.unit(600, "lb"),
  25867. name: "Front",
  25868. image: {
  25869. source: "./media/characters/amera/front.svg",
  25870. extra: 891 / 818,
  25871. bottom: 30 / 922.7
  25872. }
  25873. },
  25874. back: {
  25875. height: math.unit(9.35, "feet"),
  25876. weight: math.unit(600, "lb"),
  25877. name: "Back",
  25878. image: {
  25879. source: "./media/characters/amera/back.svg",
  25880. extra: 876 / 824,
  25881. bottom: 6.8 / 884
  25882. }
  25883. },
  25884. dick: {
  25885. height: math.unit(2.14, "feet"),
  25886. name: "Dick",
  25887. image: {
  25888. source: "./media/characters/amera/dick.svg"
  25889. }
  25890. },
  25891. },
  25892. [
  25893. {
  25894. name: "Normal",
  25895. height: math.unit(9.35, "feet"),
  25896. default: true
  25897. },
  25898. ]
  25899. ))
  25900. characterMakers.push(() => makeCharacter(
  25901. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25902. {
  25903. kneeling: {
  25904. height: math.unit(3 + 4 / 12, "feet"),
  25905. weight: math.unit(90, "lb"),
  25906. name: "Kneeling",
  25907. image: {
  25908. source: "./media/characters/rosewen/kneeling.svg",
  25909. extra: 1835 / 1571,
  25910. bottom: 27.7 / 1862
  25911. }
  25912. },
  25913. },
  25914. [
  25915. {
  25916. name: "Normal",
  25917. height: math.unit(3 + 4 / 12, "feet"),
  25918. default: true
  25919. },
  25920. ]
  25921. ))
  25922. characterMakers.push(() => makeCharacter(
  25923. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  25924. {
  25925. front: {
  25926. height: math.unit(5 + 10 / 12, "feet"),
  25927. weight: math.unit(200, "lb"),
  25928. name: "Front",
  25929. image: {
  25930. source: "./media/characters/sabah/front.svg",
  25931. extra: 849 / 763,
  25932. bottom: 33.9 / 881
  25933. }
  25934. },
  25935. },
  25936. [
  25937. {
  25938. name: "Normal",
  25939. height: math.unit(5 + 10 / 12, "feet"),
  25940. default: true
  25941. },
  25942. ]
  25943. ))
  25944. characterMakers.push(() => makeCharacter(
  25945. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  25946. {
  25947. front: {
  25948. height: math.unit(3 + 5 / 12, "feet"),
  25949. weight: math.unit(40, "kg"),
  25950. name: "Front",
  25951. image: {
  25952. source: "./media/characters/purple-flame/front.svg",
  25953. extra: 1577 / 1412,
  25954. bottom: 97 / 1694
  25955. }
  25956. },
  25957. frontDressed: {
  25958. height: math.unit(3 + 5 / 12, "feet"),
  25959. weight: math.unit(40, "kg"),
  25960. name: "Front (Dressed)",
  25961. image: {
  25962. source: "./media/characters/purple-flame/front-dressed.svg",
  25963. extra: 1577 / 1412,
  25964. bottom: 97 / 1694
  25965. }
  25966. },
  25967. headphones: {
  25968. height: math.unit(0.85, "feet"),
  25969. name: "Headphones",
  25970. image: {
  25971. source: "./media/characters/purple-flame/headphones.svg"
  25972. }
  25973. },
  25974. },
  25975. [
  25976. {
  25977. name: "Really Small",
  25978. height: math.unit(5, "cm")
  25979. },
  25980. {
  25981. name: "Micro",
  25982. height: math.unit(1 + 5 / 12, "feet")
  25983. },
  25984. {
  25985. name: "Normal",
  25986. height: math.unit(3 + 5 / 12, "feet"),
  25987. default: true
  25988. },
  25989. {
  25990. name: "Minimacro",
  25991. height: math.unit(125, "feet")
  25992. },
  25993. {
  25994. name: "Macro",
  25995. height: math.unit(0.5, "miles")
  25996. },
  25997. {
  25998. name: "Megamacro",
  25999. height: math.unit(50, "miles")
  26000. },
  26001. {
  26002. name: "Gigantic",
  26003. height: math.unit(750, "miles")
  26004. },
  26005. {
  26006. name: "Planetary",
  26007. height: math.unit(15000, "miles")
  26008. },
  26009. ]
  26010. ))
  26011. characterMakers.push(() => makeCharacter(
  26012. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26013. {
  26014. front: {
  26015. height: math.unit(14, "feet"),
  26016. weight: math.unit(959, "lb"),
  26017. name: "Front",
  26018. image: {
  26019. source: "./media/characters/arsenal/front.svg",
  26020. extra: 2357 / 2157,
  26021. bottom: 93 / 2458
  26022. }
  26023. },
  26024. },
  26025. [
  26026. {
  26027. name: "Normal",
  26028. height: math.unit(14, "feet"),
  26029. default: true
  26030. },
  26031. ]
  26032. ))
  26033. characterMakers.push(() => makeCharacter(
  26034. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26035. {
  26036. front: {
  26037. height: math.unit(6, "feet"),
  26038. weight: math.unit(150, "lb"),
  26039. name: "Front",
  26040. image: {
  26041. source: "./media/characters/adira/front.svg",
  26042. extra: 1078 / 1029,
  26043. bottom: 87 / 1166
  26044. }
  26045. },
  26046. },
  26047. [
  26048. {
  26049. name: "Micro",
  26050. height: math.unit(4, "inches"),
  26051. default: true
  26052. },
  26053. {
  26054. name: "Macro",
  26055. height: math.unit(50, "feet")
  26056. },
  26057. ]
  26058. ))
  26059. characterMakers.push(() => makeCharacter(
  26060. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26061. {
  26062. front: {
  26063. height: math.unit(16, "feet"),
  26064. weight: math.unit(1000, "lb"),
  26065. name: "Front",
  26066. image: {
  26067. source: "./media/characters/grim/front.svg",
  26068. extra: 622 / 614,
  26069. bottom: 18.1 / 642
  26070. }
  26071. },
  26072. back: {
  26073. height: math.unit(16, "feet"),
  26074. weight: math.unit(1000, "lb"),
  26075. name: "Back",
  26076. image: {
  26077. source: "./media/characters/grim/back.svg",
  26078. extra: 610.6 / 602,
  26079. bottom: 40.8 / 652
  26080. }
  26081. },
  26082. hunched: {
  26083. height: math.unit(9.75, "feet"),
  26084. weight: math.unit(1000, "lb"),
  26085. name: "Hunched",
  26086. image: {
  26087. source: "./media/characters/grim/hunched.svg",
  26088. extra: 304 / 297,
  26089. bottom: 35.4 / 394
  26090. }
  26091. },
  26092. },
  26093. [
  26094. {
  26095. name: "Normal",
  26096. height: math.unit(16, "feet"),
  26097. default: true
  26098. },
  26099. ]
  26100. ))
  26101. characterMakers.push(() => makeCharacter(
  26102. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26103. {
  26104. front: {
  26105. height: math.unit(2.3, "meters"),
  26106. weight: math.unit(300, "lb"),
  26107. name: "Front",
  26108. image: {
  26109. source: "./media/characters/sinja/front-sfw.svg",
  26110. extra: 1393 / 1294,
  26111. bottom: 70 / 1463
  26112. }
  26113. },
  26114. frontNsfw: {
  26115. height: math.unit(2.3, "meters"),
  26116. weight: math.unit(300, "lb"),
  26117. name: "Front (NSFW)",
  26118. image: {
  26119. source: "./media/characters/sinja/front-nsfw.svg",
  26120. extra: 1393 / 1294,
  26121. bottom: 70 / 1463
  26122. }
  26123. },
  26124. back: {
  26125. height: math.unit(2.3, "meters"),
  26126. weight: math.unit(300, "lb"),
  26127. name: "Back",
  26128. image: {
  26129. source: "./media/characters/sinja/back.svg",
  26130. extra: 1393 / 1294,
  26131. bottom: 70 / 1463
  26132. }
  26133. },
  26134. head: {
  26135. height: math.unit(1.771, "feet"),
  26136. name: "Head",
  26137. image: {
  26138. source: "./media/characters/sinja/head.svg"
  26139. }
  26140. },
  26141. slit: {
  26142. height: math.unit(0.8, "feet"),
  26143. name: "Slit",
  26144. image: {
  26145. source: "./media/characters/sinja/slit.svg"
  26146. }
  26147. },
  26148. },
  26149. [
  26150. {
  26151. name: "Normal",
  26152. height: math.unit(2.3, "meters")
  26153. },
  26154. {
  26155. name: "Macro",
  26156. height: math.unit(91, "meters"),
  26157. default: true
  26158. },
  26159. {
  26160. name: "Megamacro",
  26161. height: math.unit(91440, "meters")
  26162. },
  26163. {
  26164. name: "Gigamacro",
  26165. height: math.unit(60960000, "meters")
  26166. },
  26167. {
  26168. name: "Teramacro",
  26169. height: math.unit(9144000000, "meters")
  26170. },
  26171. ]
  26172. ))
  26173. characterMakers.push(() => makeCharacter(
  26174. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26175. {
  26176. front: {
  26177. height: math.unit(1.7, "meters"),
  26178. weight: math.unit(130, "lb"),
  26179. name: "Front",
  26180. image: {
  26181. source: "./media/characters/kyu/front.svg",
  26182. extra: 415 / 395,
  26183. bottom: 5 / 420
  26184. }
  26185. },
  26186. head: {
  26187. height: math.unit(1.75, "feet"),
  26188. name: "Head",
  26189. image: {
  26190. source: "./media/characters/kyu/head.svg"
  26191. }
  26192. },
  26193. foot: {
  26194. height: math.unit(0.81, "feet"),
  26195. name: "Foot",
  26196. image: {
  26197. source: "./media/characters/kyu/foot.svg"
  26198. }
  26199. },
  26200. },
  26201. [
  26202. {
  26203. name: "Normal",
  26204. height: math.unit(1.7, "meters")
  26205. },
  26206. {
  26207. name: "Macro",
  26208. height: math.unit(131, "feet"),
  26209. default: true
  26210. },
  26211. {
  26212. name: "Megamacro",
  26213. height: math.unit(91440, "meters")
  26214. },
  26215. {
  26216. name: "Gigamacro",
  26217. height: math.unit(60960000, "meters")
  26218. },
  26219. {
  26220. name: "Teramacro",
  26221. height: math.unit(9144000000, "meters")
  26222. },
  26223. ]
  26224. ))
  26225. characterMakers.push(() => makeCharacter(
  26226. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26227. {
  26228. front: {
  26229. height: math.unit(7 + 1 / 12, "feet"),
  26230. weight: math.unit(250, "lb"),
  26231. name: "Front",
  26232. image: {
  26233. source: "./media/characters/joey/front.svg",
  26234. extra: 1791 / 1537,
  26235. bottom: 28 / 1816
  26236. }
  26237. },
  26238. },
  26239. [
  26240. {
  26241. name: "Micro",
  26242. height: math.unit(3, "inches")
  26243. },
  26244. {
  26245. name: "Normal",
  26246. height: math.unit(7 + 1 / 12, "feet"),
  26247. default: true
  26248. },
  26249. ]
  26250. ))
  26251. characterMakers.push(() => makeCharacter(
  26252. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26253. {
  26254. front: {
  26255. height: math.unit(165, "cm"),
  26256. weight: math.unit(140, "lb"),
  26257. name: "Front",
  26258. image: {
  26259. source: "./media/characters/sam-evans/front.svg",
  26260. extra: 3417 / 3230,
  26261. bottom: 41.3 / 3417
  26262. }
  26263. },
  26264. frontSixTails: {
  26265. height: math.unit(165, "cm"),
  26266. weight: math.unit(140, "lb"),
  26267. name: "Front-six-tails",
  26268. image: {
  26269. source: "./media/characters/sam-evans/front-six-tails.svg",
  26270. extra: 3417 / 3230,
  26271. bottom: 41.3 / 3417
  26272. }
  26273. },
  26274. back: {
  26275. height: math.unit(165, "cm"),
  26276. weight: math.unit(140, "lb"),
  26277. name: "Back",
  26278. image: {
  26279. source: "./media/characters/sam-evans/back.svg",
  26280. extra: 3227 / 3032,
  26281. bottom: 6.8 / 3234
  26282. }
  26283. },
  26284. face: {
  26285. height: math.unit(0.68, "feet"),
  26286. name: "Face",
  26287. image: {
  26288. source: "./media/characters/sam-evans/face.svg"
  26289. }
  26290. },
  26291. },
  26292. [
  26293. {
  26294. name: "Normal",
  26295. height: math.unit(165, "cm"),
  26296. default: true
  26297. },
  26298. {
  26299. name: "Macro",
  26300. height: math.unit(100, "meters")
  26301. },
  26302. {
  26303. name: "Macro+",
  26304. height: math.unit(800, "meters")
  26305. },
  26306. {
  26307. name: "Macro++",
  26308. height: math.unit(3, "km")
  26309. },
  26310. {
  26311. name: "Macro+++",
  26312. height: math.unit(30, "km")
  26313. },
  26314. ]
  26315. ))
  26316. characterMakers.push(() => makeCharacter(
  26317. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26318. {
  26319. front: {
  26320. height: math.unit(10, "feet"),
  26321. weight: math.unit(750, "lb"),
  26322. name: "Front",
  26323. image: {
  26324. source: "./media/characters/juliet-a/front.svg",
  26325. extra: 1766 / 1720,
  26326. bottom: 43 / 1809
  26327. }
  26328. },
  26329. back: {
  26330. height: math.unit(10, "feet"),
  26331. weight: math.unit(750, "lb"),
  26332. name: "Back",
  26333. image: {
  26334. source: "./media/characters/juliet-a/back.svg",
  26335. extra: 1781 / 1734,
  26336. bottom: 35 / 1810,
  26337. }
  26338. },
  26339. },
  26340. [
  26341. {
  26342. name: "Normal",
  26343. height: math.unit(10, "feet"),
  26344. default: true
  26345. },
  26346. {
  26347. name: "Dragon Form",
  26348. height: math.unit(250, "feet")
  26349. },
  26350. {
  26351. name: "Macro",
  26352. height: math.unit(1000, "feet")
  26353. },
  26354. {
  26355. name: "Megamacro",
  26356. height: math.unit(10000, "feet")
  26357. }
  26358. ]
  26359. ))
  26360. characterMakers.push(() => makeCharacter(
  26361. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26362. {
  26363. regular: {
  26364. height: math.unit(7 + 3 / 12, "feet"),
  26365. weight: math.unit(260, "lb"),
  26366. name: "Regular",
  26367. image: {
  26368. source: "./media/characters/wild/regular.svg",
  26369. extra: 97.45 / 92,
  26370. bottom: 6.8 / 104.3
  26371. }
  26372. },
  26373. biggums: {
  26374. height: math.unit(8 + 6 / 12, "feet"),
  26375. weight: math.unit(425, "lb"),
  26376. name: "Biggums",
  26377. image: {
  26378. source: "./media/characters/wild/biggums.svg",
  26379. extra: 97.45 / 92,
  26380. bottom: 7.5 / 132.34
  26381. }
  26382. },
  26383. mawRegular: {
  26384. height: math.unit(1.24, "feet"),
  26385. name: "Maw (Regular)",
  26386. image: {
  26387. source: "./media/characters/wild/maw.svg"
  26388. }
  26389. },
  26390. mawBiggums: {
  26391. height: math.unit(1.47, "feet"),
  26392. name: "Maw (Biggums)",
  26393. image: {
  26394. source: "./media/characters/wild/maw.svg"
  26395. }
  26396. },
  26397. },
  26398. [
  26399. {
  26400. name: "Normal",
  26401. height: math.unit(7 + 3 / 12, "feet"),
  26402. default: true
  26403. },
  26404. ]
  26405. ))
  26406. characterMakers.push(() => makeCharacter(
  26407. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26408. {
  26409. front: {
  26410. height: math.unit(2.5, "meters"),
  26411. weight: math.unit(200, "kg"),
  26412. name: "Front",
  26413. image: {
  26414. source: "./media/characters/vidar/front.svg",
  26415. extra: 2994 / 2795,
  26416. bottom: 56 / 3061
  26417. }
  26418. },
  26419. back: {
  26420. height: math.unit(2.5, "meters"),
  26421. weight: math.unit(200, "kg"),
  26422. name: "Back",
  26423. image: {
  26424. source: "./media/characters/vidar/back.svg",
  26425. extra: 3131 / 2928,
  26426. bottom: 13.5 / 3141.5
  26427. }
  26428. },
  26429. feral: {
  26430. height: math.unit(2.5, "meters"),
  26431. weight: math.unit(2000, "kg"),
  26432. name: "Feral",
  26433. image: {
  26434. source: "./media/characters/vidar/feral.svg",
  26435. extra: 2790 / 1765,
  26436. bottom: 6 / 2796
  26437. }
  26438. },
  26439. },
  26440. [
  26441. {
  26442. name: "Normal",
  26443. height: math.unit(2.5, "meters"),
  26444. default: true
  26445. },
  26446. {
  26447. name: "Macro",
  26448. height: math.unit(100, "meters")
  26449. },
  26450. ]
  26451. ))
  26452. characterMakers.push(() => makeCharacter(
  26453. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26454. {
  26455. front: {
  26456. height: math.unit(5 + 9 / 12, "feet"),
  26457. weight: math.unit(120, "lb"),
  26458. name: "Front",
  26459. image: {
  26460. source: "./media/characters/ash/front.svg",
  26461. extra: 2189 / 1961,
  26462. bottom: 5.2 / 2194
  26463. }
  26464. },
  26465. },
  26466. [
  26467. {
  26468. name: "Normal",
  26469. height: math.unit(5 + 9 / 12, "feet"),
  26470. default: true
  26471. },
  26472. ]
  26473. ))
  26474. characterMakers.push(() => makeCharacter(
  26475. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26476. {
  26477. front: {
  26478. height: math.unit(9, "feet"),
  26479. weight: math.unit(10000, "lb"),
  26480. name: "Front",
  26481. image: {
  26482. source: "./media/characters/gygabite/front.svg",
  26483. bottom: 31.7 / 537.8,
  26484. extra: 505 / 370
  26485. }
  26486. },
  26487. },
  26488. [
  26489. {
  26490. name: "Normal",
  26491. height: math.unit(9, "feet"),
  26492. default: true
  26493. },
  26494. ]
  26495. ))
  26496. characterMakers.push(() => makeCharacter(
  26497. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26498. {
  26499. front: {
  26500. height: math.unit(12, "feet"),
  26501. weight: math.unit(35000, "lb"),
  26502. name: "Front",
  26503. image: {
  26504. source: "./media/characters/p0tat0/front.svg",
  26505. extra: 1065 / 921,
  26506. bottom: 55.7 / 1121.25
  26507. }
  26508. },
  26509. },
  26510. [
  26511. {
  26512. name: "Normal",
  26513. height: math.unit(12, "feet"),
  26514. default: true
  26515. },
  26516. ]
  26517. ))
  26518. characterMakers.push(() => makeCharacter(
  26519. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26520. {
  26521. side: {
  26522. height: math.unit(6.5, "feet"),
  26523. weight: math.unit(800, "lb"),
  26524. name: "Side",
  26525. image: {
  26526. source: "./media/characters/dusk/side.svg",
  26527. extra: 615 / 373,
  26528. bottom: 53 / 664
  26529. }
  26530. },
  26531. sitting: {
  26532. height: math.unit(7, "feet"),
  26533. weight: math.unit(800, "lb"),
  26534. name: "Sitting",
  26535. image: {
  26536. source: "./media/characters/dusk/sitting.svg",
  26537. extra: 753 / 425,
  26538. bottom: 33 / 774
  26539. }
  26540. },
  26541. head: {
  26542. height: math.unit(6.1, "feet"),
  26543. name: "Head",
  26544. image: {
  26545. source: "./media/characters/dusk/head.svg"
  26546. }
  26547. },
  26548. },
  26549. [
  26550. {
  26551. name: "Normal",
  26552. height: math.unit(7, "feet"),
  26553. default: true
  26554. },
  26555. ]
  26556. ))
  26557. characterMakers.push(() => makeCharacter(
  26558. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26559. {
  26560. front: {
  26561. height: math.unit(15, "feet"),
  26562. weight: math.unit(7000, "lb"),
  26563. name: "Front",
  26564. image: {
  26565. source: "./media/characters/jay-direwolf/front.svg",
  26566. extra: 1810 / 1732,
  26567. bottom: 66 / 1892
  26568. }
  26569. },
  26570. },
  26571. [
  26572. {
  26573. name: "Normal",
  26574. height: math.unit(15, "feet"),
  26575. default: true
  26576. },
  26577. ]
  26578. ))
  26579. characterMakers.push(() => makeCharacter(
  26580. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26581. {
  26582. front: {
  26583. height: math.unit(4 + 9 / 12, "feet"),
  26584. weight: math.unit(130, "lb"),
  26585. name: "Front",
  26586. image: {
  26587. source: "./media/characters/anchovie/front.svg",
  26588. extra: 382 / 350,
  26589. bottom: 25 / 409
  26590. }
  26591. },
  26592. back: {
  26593. height: math.unit(4 + 9 / 12, "feet"),
  26594. weight: math.unit(130, "lb"),
  26595. name: "Back",
  26596. image: {
  26597. source: "./media/characters/anchovie/back.svg",
  26598. extra: 385 / 352,
  26599. bottom: 16.6 / 402
  26600. }
  26601. },
  26602. frontDressed: {
  26603. height: math.unit(4 + 9 / 12, "feet"),
  26604. weight: math.unit(130, "lb"),
  26605. name: "Front (Dressed)",
  26606. image: {
  26607. source: "./media/characters/anchovie/front-dressed.svg",
  26608. extra: 382 / 350,
  26609. bottom: 25 / 409
  26610. }
  26611. },
  26612. backDressed: {
  26613. height: math.unit(4 + 9 / 12, "feet"),
  26614. weight: math.unit(130, "lb"),
  26615. name: "Back (Dressed)",
  26616. image: {
  26617. source: "./media/characters/anchovie/back-dressed.svg",
  26618. extra: 385 / 352,
  26619. bottom: 16.6 / 402
  26620. }
  26621. },
  26622. },
  26623. [
  26624. {
  26625. name: "Micro",
  26626. height: math.unit(6.4, "inches")
  26627. },
  26628. {
  26629. name: "Normal",
  26630. height: math.unit(4 + 9 / 12, "feet"),
  26631. default: true
  26632. },
  26633. ]
  26634. ))
  26635. characterMakers.push(() => makeCharacter(
  26636. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26637. {
  26638. front: {
  26639. height: math.unit(2, "meters"),
  26640. weight: math.unit(180, "lb"),
  26641. name: "Front",
  26642. image: {
  26643. source: "./media/characters/acidrenamon/front.svg",
  26644. extra: 987 / 890,
  26645. bottom: 22.8 / 1009
  26646. }
  26647. },
  26648. back: {
  26649. height: math.unit(2, "meters"),
  26650. weight: math.unit(180, "lb"),
  26651. name: "Back",
  26652. image: {
  26653. source: "./media/characters/acidrenamon/back.svg",
  26654. extra: 983 / 891,
  26655. bottom: 8.4 / 992
  26656. }
  26657. },
  26658. head: {
  26659. height: math.unit(1.92, "feet"),
  26660. name: "Head",
  26661. image: {
  26662. source: "./media/characters/acidrenamon/head.svg"
  26663. }
  26664. },
  26665. rump: {
  26666. height: math.unit(1.72, "feet"),
  26667. name: "Rump",
  26668. image: {
  26669. source: "./media/characters/acidrenamon/rump.svg"
  26670. }
  26671. },
  26672. tail: {
  26673. height: math.unit(4.2, "feet"),
  26674. name: "Tail",
  26675. image: {
  26676. source: "./media/characters/acidrenamon/tail.svg"
  26677. }
  26678. },
  26679. },
  26680. [
  26681. {
  26682. name: "Normal",
  26683. height: math.unit(2, "meters"),
  26684. default: true
  26685. },
  26686. {
  26687. name: "Minimacro",
  26688. height: math.unit(7, "meters")
  26689. },
  26690. {
  26691. name: "Macro",
  26692. height: math.unit(200, "meters")
  26693. },
  26694. {
  26695. name: "Gigamacro",
  26696. height: math.unit(0.2, "earths")
  26697. },
  26698. ]
  26699. ))
  26700. characterMakers.push(() => makeCharacter(
  26701. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26702. {
  26703. front: {
  26704. height: math.unit(6, "feet"),
  26705. weight: math.unit(150, "lb"),
  26706. name: "Front",
  26707. image: {
  26708. source: "./media/characters/kenzie-lee/front.svg",
  26709. extra: 1525 / 1465,
  26710. bottom: 45 / 1570
  26711. }
  26712. },
  26713. side: {
  26714. height: math.unit(6, "feet"),
  26715. weight: math.unit(150, "lb"),
  26716. name: "Side",
  26717. image: {
  26718. source: "./media/characters/kenzie-lee/side.svg",
  26719. extra: 5505 / 5383,
  26720. bottom: 60 / 5573
  26721. }
  26722. },
  26723. },
  26724. [
  26725. {
  26726. name: "Normal",
  26727. height: math.unit(152, "feet"),
  26728. default: true
  26729. },
  26730. {
  26731. name: "Megamacro",
  26732. height: math.unit(7, "miles")
  26733. },
  26734. {
  26735. name: "Gigamacro",
  26736. height: math.unit(8000, "miles")
  26737. },
  26738. ]
  26739. ))
  26740. characterMakers.push(() => makeCharacter(
  26741. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26742. {
  26743. side: {
  26744. height: math.unit(6, "feet"),
  26745. weight: math.unit(150, "lb"),
  26746. name: "Side",
  26747. image: {
  26748. source: "./media/characters/withers/side.svg",
  26749. extra: 1830 / 1728,
  26750. bottom: 96 / 1927
  26751. }
  26752. },
  26753. front: {
  26754. height: math.unit(6, "feet"),
  26755. weight: math.unit(150, "lb"),
  26756. name: "Front",
  26757. image: {
  26758. source: "./media/characters/withers/front.svg",
  26759. extra: 1514 / 1438,
  26760. bottom: 118 / 1632
  26761. }
  26762. },
  26763. },
  26764. [
  26765. {
  26766. name: "Macro",
  26767. height: math.unit(168, "feet"),
  26768. default: true
  26769. },
  26770. {
  26771. name: "Megamacro",
  26772. height: math.unit(15, "miles")
  26773. }
  26774. ]
  26775. ))
  26776. characterMakers.push(() => makeCharacter(
  26777. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26778. {
  26779. front: {
  26780. height: math.unit(6 + 7 / 12, "feet"),
  26781. weight: math.unit(250, "lb"),
  26782. name: "Front",
  26783. image: {
  26784. source: "./media/characters/nemoskii/front.svg",
  26785. extra: 2270 / 1734,
  26786. bottom: 86 / 2354
  26787. }
  26788. },
  26789. back: {
  26790. height: math.unit(6 + 7 / 12, "feet"),
  26791. weight: math.unit(250, "lb"),
  26792. name: "Back",
  26793. image: {
  26794. source: "./media/characters/nemoskii/back.svg",
  26795. extra: 1845 / 1788,
  26796. bottom: 10.5 / 1852
  26797. }
  26798. },
  26799. head: {
  26800. height: math.unit(1.31, "feet"),
  26801. name: "Head",
  26802. image: {
  26803. source: "./media/characters/nemoskii/head.svg"
  26804. }
  26805. },
  26806. },
  26807. [
  26808. {
  26809. name: "Normal",
  26810. height: math.unit(6 + 7 / 12, "feet"),
  26811. default: true
  26812. },
  26813. ]
  26814. ))
  26815. characterMakers.push(() => makeCharacter(
  26816. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  26817. {
  26818. front: {
  26819. height: math.unit(1, "mile"),
  26820. weight: math.unit(265261.9, "lb"),
  26821. name: "Front",
  26822. image: {
  26823. source: "./media/characters/shui/front.svg",
  26824. extra: 1633 / 1564,
  26825. bottom: 91.5 / 1726
  26826. }
  26827. },
  26828. },
  26829. [
  26830. {
  26831. name: "Macro",
  26832. height: math.unit(1, "mile"),
  26833. default: true
  26834. },
  26835. ]
  26836. ))
  26837. characterMakers.push(() => makeCharacter(
  26838. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  26839. {
  26840. front: {
  26841. height: math.unit(12 + 6 / 12, "feet"),
  26842. weight: math.unit(1342, "lb"),
  26843. name: "Front",
  26844. image: {
  26845. source: "./media/characters/arokh-takakura/front.svg",
  26846. extra: 1089 / 1043,
  26847. bottom: 77.4 / 1176.7
  26848. }
  26849. },
  26850. back: {
  26851. height: math.unit(12 + 6 / 12, "feet"),
  26852. weight: math.unit(1342, "lb"),
  26853. name: "Back",
  26854. image: {
  26855. source: "./media/characters/arokh-takakura/back.svg",
  26856. extra: 1046 / 1019,
  26857. bottom: 102 / 1150
  26858. }
  26859. },
  26860. },
  26861. [
  26862. {
  26863. name: "Big",
  26864. height: math.unit(12 + 6 / 12, "feet"),
  26865. default: true
  26866. },
  26867. ]
  26868. ))
  26869. characterMakers.push(() => makeCharacter(
  26870. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  26871. {
  26872. front: {
  26873. height: math.unit(5 + 6 / 12, "feet"),
  26874. weight: math.unit(150, "lb"),
  26875. name: "Front",
  26876. image: {
  26877. source: "./media/characters/theo/front.svg",
  26878. extra: 1184 / 1131,
  26879. bottom: 7.4 / 1191
  26880. }
  26881. },
  26882. },
  26883. [
  26884. {
  26885. name: "Micro",
  26886. height: math.unit(5, "inches")
  26887. },
  26888. {
  26889. name: "Normal",
  26890. height: math.unit(5 + 6 / 12, "feet"),
  26891. default: true
  26892. },
  26893. ]
  26894. ))
  26895. characterMakers.push(() => makeCharacter(
  26896. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  26897. {
  26898. front: {
  26899. height: math.unit(5 + 9 / 12, "feet"),
  26900. weight: math.unit(130, "lb"),
  26901. name: "Front",
  26902. image: {
  26903. source: "./media/characters/cecelia-swift/front.svg",
  26904. extra: 502 / 484,
  26905. bottom: 23 / 523
  26906. }
  26907. },
  26908. back: {
  26909. height: math.unit(5 + 9 / 12, "feet"),
  26910. weight: math.unit(130, "lb"),
  26911. name: "Back",
  26912. image: {
  26913. source: "./media/characters/cecelia-swift/back.svg",
  26914. extra: 499 / 485,
  26915. bottom: 12 / 511
  26916. }
  26917. },
  26918. head: {
  26919. height: math.unit(0.90, "feet"),
  26920. name: "Head",
  26921. image: {
  26922. source: "./media/characters/cecelia-swift/head.svg"
  26923. }
  26924. },
  26925. rump: {
  26926. height: math.unit(1.75, "feet"),
  26927. name: "Rump",
  26928. image: {
  26929. source: "./media/characters/cecelia-swift/rump.svg"
  26930. }
  26931. },
  26932. },
  26933. [
  26934. {
  26935. name: "Normal",
  26936. height: math.unit(5 + 9 / 12, "feet"),
  26937. default: true
  26938. },
  26939. {
  26940. name: "Big",
  26941. height: math.unit(50, "feet")
  26942. },
  26943. {
  26944. name: "Macro",
  26945. height: math.unit(100, "feet")
  26946. },
  26947. {
  26948. name: "Macro+",
  26949. height: math.unit(500, "feet")
  26950. },
  26951. {
  26952. name: "Macro++",
  26953. height: math.unit(1000, "feet")
  26954. },
  26955. ]
  26956. ))
  26957. characterMakers.push(() => makeCharacter(
  26958. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  26959. {
  26960. front: {
  26961. height: math.unit(6, "feet"),
  26962. weight: math.unit(150, "lb"),
  26963. name: "Front",
  26964. image: {
  26965. source: "./media/characters/kaunan/front.svg",
  26966. extra: 2890 / 2523,
  26967. bottom: 49 / 2939
  26968. }
  26969. },
  26970. },
  26971. [
  26972. {
  26973. name: "Macro",
  26974. height: math.unit(150, "feet"),
  26975. default: true
  26976. },
  26977. ]
  26978. ))
  26979. characterMakers.push(() => makeCharacter(
  26980. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  26981. {
  26982. front: {
  26983. height: math.unit(175, "cm"),
  26984. weight: math.unit(60, "kg"),
  26985. name: "Front",
  26986. image: {
  26987. source: "./media/characters/fei/front.svg",
  26988. extra: 2581 / 2400,
  26989. bottom: 82.2 / 2663
  26990. }
  26991. },
  26992. },
  26993. [
  26994. {
  26995. name: "Mortal",
  26996. height: math.unit(175, "cm")
  26997. },
  26998. {
  26999. name: "Normal",
  27000. height: math.unit(3500, "m"),
  27001. default: true
  27002. },
  27003. {
  27004. name: "Stroll",
  27005. height: math.unit(17.5, "km")
  27006. },
  27007. {
  27008. name: "Showoff",
  27009. height: math.unit(175, "km")
  27010. },
  27011. ]
  27012. ))
  27013. characterMakers.push(() => makeCharacter(
  27014. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27015. {
  27016. front: {
  27017. height: math.unit(7, "feet"),
  27018. weight: math.unit(1000, "kg"),
  27019. name: "Front",
  27020. image: {
  27021. source: "./media/characters/edrax/front.svg",
  27022. extra: 2838 / 2550,
  27023. bottom: 130 / 2968
  27024. }
  27025. },
  27026. },
  27027. [
  27028. {
  27029. name: "Small",
  27030. height: math.unit(7, "feet")
  27031. },
  27032. {
  27033. name: "Normal",
  27034. height: math.unit(1500, "meters")
  27035. },
  27036. {
  27037. name: "Mega",
  27038. height: math.unit(12000000, "km"),
  27039. default: true
  27040. },
  27041. {
  27042. name: "Megamacro",
  27043. height: math.unit(10600000, "lightyears")
  27044. },
  27045. {
  27046. name: "Hypermacro",
  27047. height: math.unit(256, "yottameters")
  27048. },
  27049. ]
  27050. ))
  27051. characterMakers.push(() => makeCharacter(
  27052. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27053. {
  27054. front: {
  27055. height: math.unit(10, "feet"),
  27056. weight: math.unit(750, "lb"),
  27057. name: "Front",
  27058. image: {
  27059. source: "./media/characters/clove/front.svg",
  27060. extra: 2031 / 1860,
  27061. bottom: 47.8 / 2080
  27062. }
  27063. },
  27064. back: {
  27065. height: math.unit(10, "feet"),
  27066. weight: math.unit(750, "lb"),
  27067. name: "Back",
  27068. image: {
  27069. source: "./media/characters/clove/back.svg",
  27070. extra: 2025 / 1859,
  27071. bottom: 46 / 2071
  27072. }
  27073. },
  27074. },
  27075. [
  27076. {
  27077. name: "Normal",
  27078. height: math.unit(10, "feet")
  27079. },
  27080. ]
  27081. ))
  27082. characterMakers.push(() => makeCharacter(
  27083. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27084. {
  27085. front: {
  27086. height: math.unit(4, "feet"),
  27087. weight: math.unit(50, "lb"),
  27088. name: "Front",
  27089. image: {
  27090. source: "./media/characters/alex-rabbit/front.svg",
  27091. extra: 507 / 458,
  27092. bottom: 18.5 / 527
  27093. }
  27094. },
  27095. back: {
  27096. height: math.unit(4, "feet"),
  27097. weight: math.unit(50, "lb"),
  27098. name: "Back",
  27099. image: {
  27100. source: "./media/characters/alex-rabbit/back.svg",
  27101. extra: 502 / 460,
  27102. bottom: 18.9 / 521
  27103. }
  27104. },
  27105. },
  27106. [
  27107. {
  27108. name: "Normal",
  27109. height: math.unit(4, "feet"),
  27110. default: true
  27111. },
  27112. ]
  27113. ))
  27114. characterMakers.push(() => makeCharacter(
  27115. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27116. {
  27117. front: {
  27118. height: math.unit(1 + 3 / 12, "feet"),
  27119. weight: math.unit(80, "lb"),
  27120. name: "Front",
  27121. image: {
  27122. source: "./media/characters/zander-rose/front.svg",
  27123. extra: 916 / 797,
  27124. bottom: 17 / 933
  27125. }
  27126. },
  27127. back: {
  27128. height: math.unit(1 + 3 / 12, "feet"),
  27129. weight: math.unit(80, "lb"),
  27130. name: "Back",
  27131. image: {
  27132. source: "./media/characters/zander-rose/back.svg",
  27133. extra: 903 / 779,
  27134. bottom: 31 / 934
  27135. }
  27136. },
  27137. },
  27138. [
  27139. {
  27140. name: "Normal",
  27141. height: math.unit(1 + 3 / 12, "feet"),
  27142. default: true
  27143. },
  27144. ]
  27145. ))
  27146. characterMakers.push(() => makeCharacter(
  27147. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27148. {
  27149. anthro: {
  27150. height: math.unit(6, "feet"),
  27151. weight: math.unit(150, "lb"),
  27152. name: "Anthro",
  27153. image: {
  27154. source: "./media/characters/razz/anthro.svg",
  27155. extra: 1437 / 1343,
  27156. bottom: 48 / 1485
  27157. }
  27158. },
  27159. feral: {
  27160. height: math.unit(6, "feet"),
  27161. weight: math.unit(150, "lb"),
  27162. name: "Feral",
  27163. image: {
  27164. source: "./media/characters/razz/feral.svg",
  27165. extra: 2569 / 1385,
  27166. bottom: 95 / 2664
  27167. }
  27168. },
  27169. },
  27170. [
  27171. {
  27172. name: "Normal",
  27173. height: math.unit(6, "feet"),
  27174. default: true
  27175. },
  27176. ]
  27177. ))
  27178. characterMakers.push(() => makeCharacter(
  27179. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27180. {
  27181. front: {
  27182. height: math.unit(9 + 4 / 12, "feet"),
  27183. weight: math.unit(500, "lb"),
  27184. name: "Front",
  27185. image: {
  27186. source: "./media/characters/morrigan/front.svg",
  27187. extra: 2707 / 2579,
  27188. bottom: 156 / 2863
  27189. }
  27190. },
  27191. },
  27192. [
  27193. {
  27194. name: "Normal",
  27195. height: math.unit(9 + 4 / 12, "feet"),
  27196. default: true
  27197. },
  27198. ]
  27199. ))
  27200. characterMakers.push(() => makeCharacter(
  27201. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27202. {
  27203. front: {
  27204. height: math.unit(5, "stories"),
  27205. weight: math.unit(4000, "lb"),
  27206. name: "Front",
  27207. image: {
  27208. source: "./media/characters/jenene/front.svg",
  27209. extra: 1780 / 1710,
  27210. bottom: 57 / 1837
  27211. }
  27212. },
  27213. },
  27214. [
  27215. {
  27216. name: "Normal",
  27217. height: math.unit(5, "stories"),
  27218. default: true
  27219. },
  27220. ]
  27221. ))
  27222. characterMakers.push(() => makeCharacter(
  27223. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27224. {
  27225. front: {
  27226. height: math.unit(6, "feet"),
  27227. weight: math.unit(150, "lb"),
  27228. name: "Front",
  27229. image: {
  27230. source: "./media/characters/vix-archaser/front.svg",
  27231. extra: 2767 / 2562,
  27232. bottom: 36 / 2803
  27233. }
  27234. },
  27235. },
  27236. [
  27237. {
  27238. name: "Micro",
  27239. height: math.unit(1, "foot")
  27240. },
  27241. {
  27242. name: "Normal",
  27243. height: math.unit(6 + 5 / 12, "feet")
  27244. },
  27245. {
  27246. name: "Minimacro",
  27247. height: math.unit(500, "feet")
  27248. },
  27249. {
  27250. name: "Macro",
  27251. height: math.unit(4, "miles")
  27252. },
  27253. {
  27254. name: "Megamacro",
  27255. height: math.unit(250, "miles"),
  27256. default: true
  27257. },
  27258. {
  27259. name: "Gigamacro",
  27260. height: math.unit(1, "universe")
  27261. },
  27262. {
  27263. name: "Endgame",
  27264. height: math.unit(100, "multiverses")
  27265. }
  27266. ]
  27267. ))
  27268. characterMakers.push(() => makeCharacter(
  27269. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27270. {
  27271. taurSfw: {
  27272. height: math.unit(10, "meters"),
  27273. weight: math.unit(17500, "kg"),
  27274. name: "Taur",
  27275. image: {
  27276. source: "./media/characters/faey/taur-sfw.svg",
  27277. extra: 1200 / 968,
  27278. bottom: 41 / 1241
  27279. }
  27280. },
  27281. chestmaw: {
  27282. height: math.unit(2.01, "meters"),
  27283. name: "Chestmaw",
  27284. image: {
  27285. source: "./media/characters/faey/chestmaw.svg"
  27286. }
  27287. },
  27288. foot: {
  27289. height: math.unit(2.43, "meters"),
  27290. name: "Foot",
  27291. image: {
  27292. source: "./media/characters/faey/foot.svg"
  27293. }
  27294. },
  27295. jaws: {
  27296. height: math.unit(1.66, "meters"),
  27297. name: "Jaws",
  27298. image: {
  27299. source: "./media/characters/faey/jaws.svg"
  27300. }
  27301. },
  27302. tongues: {
  27303. height: math.unit(2.01, "meters"),
  27304. name: "Tongues",
  27305. image: {
  27306. source: "./media/characters/faey/tongues.svg"
  27307. }
  27308. },
  27309. },
  27310. [
  27311. {
  27312. name: "Small",
  27313. height: math.unit(10, "meters"),
  27314. default: true
  27315. },
  27316. {
  27317. name: "Big",
  27318. height: math.unit(500000, "km")
  27319. },
  27320. ]
  27321. ))
  27322. characterMakers.push(() => makeCharacter(
  27323. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27324. {
  27325. front: {
  27326. height: math.unit(7, "feet"),
  27327. weight: math.unit(275, "lb"),
  27328. name: "Front",
  27329. image: {
  27330. source: "./media/characters/roku/front.svg",
  27331. extra: 903 / 878,
  27332. bottom: 37 / 940
  27333. }
  27334. },
  27335. },
  27336. [
  27337. {
  27338. name: "Normal",
  27339. height: math.unit(7, "feet"),
  27340. default: true
  27341. },
  27342. {
  27343. name: "Macro",
  27344. height: math.unit(500, "feet")
  27345. },
  27346. {
  27347. name: "Megamacro",
  27348. height: math.unit(200, "miles")
  27349. },
  27350. ]
  27351. ))
  27352. characterMakers.push(() => makeCharacter(
  27353. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27354. {
  27355. front: {
  27356. height: math.unit(6 + 2 / 12, "feet"),
  27357. weight: math.unit(150, "lb"),
  27358. name: "Front",
  27359. image: {
  27360. source: "./media/characters/lira/front.svg",
  27361. extra: 1727 / 1605,
  27362. bottom: 26 / 1753
  27363. }
  27364. },
  27365. back: {
  27366. height: math.unit(6 + 2 / 12, "feet"),
  27367. weight: math.unit(150, "lb"),
  27368. name: "Back",
  27369. image: {
  27370. source: "./media/characters/lira/back.svg",
  27371. extra: 1713 / 159,
  27372. bottom: 20 / 1733
  27373. }
  27374. },
  27375. hand: {
  27376. height: math.unit(0.75, "feet"),
  27377. name: "Hand",
  27378. image: {
  27379. source: "./media/characters/lira/hand.svg"
  27380. }
  27381. },
  27382. maw: {
  27383. height: math.unit(0.65, "feet"),
  27384. name: "Maw",
  27385. image: {
  27386. source: "./media/characters/lira/maw.svg"
  27387. }
  27388. },
  27389. pawDigi: {
  27390. height: math.unit(1.6, "feet"),
  27391. name: "Paw Digi",
  27392. image: {
  27393. source: "./media/characters/lira/paw-digi.svg"
  27394. }
  27395. },
  27396. pawPlanti: {
  27397. height: math.unit(1.4, "feet"),
  27398. name: "Paw Planti",
  27399. image: {
  27400. source: "./media/characters/lira/paw-planti.svg"
  27401. }
  27402. },
  27403. },
  27404. [
  27405. {
  27406. name: "Normal",
  27407. height: math.unit(6 + 2 / 12, "feet"),
  27408. default: true
  27409. },
  27410. {
  27411. name: "Macro",
  27412. height: math.unit(100, "feet")
  27413. },
  27414. {
  27415. name: "Macro²",
  27416. height: math.unit(1600, "feet")
  27417. },
  27418. {
  27419. name: "Planetary",
  27420. height: math.unit(20, "earths")
  27421. },
  27422. ]
  27423. ))
  27424. characterMakers.push(() => makeCharacter(
  27425. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27426. {
  27427. front: {
  27428. height: math.unit(6, "feet"),
  27429. weight: math.unit(150, "lb"),
  27430. name: "Front",
  27431. image: {
  27432. source: "./media/characters/hadjet/front.svg",
  27433. extra: 1480 / 1346,
  27434. bottom: 26 / 1506
  27435. }
  27436. },
  27437. frontNsfw: {
  27438. height: math.unit(6, "feet"),
  27439. weight: math.unit(150, "lb"),
  27440. name: "Front (NSFW)",
  27441. image: {
  27442. source: "./media/characters/hadjet/front-nsfw.svg",
  27443. extra: 1440 / 1358,
  27444. bottom: 52 / 1492
  27445. }
  27446. },
  27447. },
  27448. [
  27449. {
  27450. name: "Macro",
  27451. height: math.unit(10, "stories"),
  27452. default: true
  27453. },
  27454. {
  27455. name: "Megamacro",
  27456. height: math.unit(1.5, "miles")
  27457. },
  27458. {
  27459. name: "Megamacro+",
  27460. height: math.unit(5, "miles")
  27461. },
  27462. ]
  27463. ))
  27464. characterMakers.push(() => makeCharacter(
  27465. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27466. {
  27467. side: {
  27468. height: math.unit(106, "feet"),
  27469. weight: math.unit(500, "tonnes"),
  27470. name: "Side",
  27471. image: {
  27472. source: "./media/characters/kodran/side.svg",
  27473. extra: 553 / 480,
  27474. bottom: 33 / 586
  27475. }
  27476. },
  27477. front: {
  27478. height: math.unit(132, "feet"),
  27479. weight: math.unit(500, "tonnes"),
  27480. name: "Front",
  27481. image: {
  27482. source: "./media/characters/kodran/front.svg",
  27483. extra: 667 / 643,
  27484. bottom: 42 / 709
  27485. }
  27486. },
  27487. flying: {
  27488. height: math.unit(350, "feet"),
  27489. weight: math.unit(500, "tonnes"),
  27490. name: "Flying",
  27491. image: {
  27492. source: "./media/characters/kodran/flying.svg"
  27493. }
  27494. },
  27495. foot: {
  27496. height: math.unit(33, "feet"),
  27497. name: "Foot",
  27498. image: {
  27499. source: "./media/characters/kodran/foot.svg"
  27500. }
  27501. },
  27502. footFront: {
  27503. height: math.unit(19, "feet"),
  27504. name: "Foot (Front)",
  27505. image: {
  27506. source: "./media/characters/kodran/foot-front.svg",
  27507. extra: 261 / 261,
  27508. bottom: 91 / 352
  27509. }
  27510. },
  27511. headFront: {
  27512. height: math.unit(53, "feet"),
  27513. name: "Head (Front)",
  27514. image: {
  27515. source: "./media/characters/kodran/head-front.svg"
  27516. }
  27517. },
  27518. headSide: {
  27519. height: math.unit(65, "feet"),
  27520. name: "Head (Side)",
  27521. image: {
  27522. source: "./media/characters/kodran/head-side.svg"
  27523. }
  27524. },
  27525. throat: {
  27526. height: math.unit(79, "feet"),
  27527. name: "Throat",
  27528. image: {
  27529. source: "./media/characters/kodran/throat.svg"
  27530. }
  27531. },
  27532. },
  27533. [
  27534. {
  27535. name: "Large",
  27536. height: math.unit(106, "feet"),
  27537. default: true
  27538. },
  27539. ]
  27540. ))
  27541. characterMakers.push(() => makeCharacter(
  27542. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27543. {
  27544. side: {
  27545. height: math.unit(11, "feet"),
  27546. weight: math.unit(150, "lb"),
  27547. name: "Side",
  27548. image: {
  27549. source: "./media/characters/pyxaron/side.svg",
  27550. extra: 305 / 195,
  27551. bottom: 17 / 322
  27552. }
  27553. },
  27554. },
  27555. [
  27556. {
  27557. name: "Normal",
  27558. height: math.unit(11, "feet")
  27559. },
  27560. ]
  27561. ))
  27562. characterMakers.push(() => makeCharacter(
  27563. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27564. {
  27565. front: {
  27566. height: math.unit(6, "feet"),
  27567. weight: math.unit(150, "lb"),
  27568. name: "Front",
  27569. image: {
  27570. source: "./media/characters/meep/front.svg",
  27571. extra: 88 / 80,
  27572. bottom: 6 / 94
  27573. }
  27574. },
  27575. },
  27576. [
  27577. {
  27578. name: "Fun Sized",
  27579. height: math.unit(2, "inches"),
  27580. default: true
  27581. },
  27582. {
  27583. name: "Friend Sized",
  27584. height: math.unit(8, "inches")
  27585. },
  27586. ]
  27587. ))
  27588. characterMakers.push(() => makeCharacter(
  27589. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27590. {
  27591. front: {
  27592. height: math.unit(15, "feet"),
  27593. weight: math.unit(2500, "lb"),
  27594. name: "Front",
  27595. image: {
  27596. source: "./media/characters/holly-rabbit/front.svg",
  27597. extra: 1433 / 1233,
  27598. bottom: 125 / 1558
  27599. }
  27600. },
  27601. dick: {
  27602. height: math.unit(4.6, "feet"),
  27603. name: "Dick",
  27604. image: {
  27605. source: "./media/characters/holly-rabbit/dick.svg"
  27606. }
  27607. },
  27608. },
  27609. [
  27610. {
  27611. name: "Normal",
  27612. height: math.unit(15, "feet"),
  27613. default: true
  27614. },
  27615. {
  27616. name: "Macro",
  27617. height: math.unit(250, "feet")
  27618. },
  27619. {
  27620. name: "Macro+",
  27621. height: math.unit(2500, "feet")
  27622. },
  27623. ]
  27624. ))
  27625. characterMakers.push(() => makeCharacter(
  27626. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27627. {
  27628. front: {
  27629. height: math.unit(3.02, "meters"),
  27630. weight: math.unit(500, "kg"),
  27631. name: "Front",
  27632. image: {
  27633. source: "./media/characters/drena/front.svg",
  27634. extra: 282 / 243,
  27635. bottom: 8 / 290
  27636. }
  27637. },
  27638. side: {
  27639. height: math.unit(3.02, "meters"),
  27640. weight: math.unit(500, "kg"),
  27641. name: "Side",
  27642. image: {
  27643. source: "./media/characters/drena/side.svg",
  27644. extra: 280 / 245,
  27645. bottom: 10 / 290
  27646. }
  27647. },
  27648. back: {
  27649. height: math.unit(3.02, "meters"),
  27650. weight: math.unit(500, "kg"),
  27651. name: "Back",
  27652. image: {
  27653. source: "./media/characters/drena/back.svg",
  27654. extra: 278 / 243,
  27655. bottom: 2 / 280
  27656. }
  27657. },
  27658. foot: {
  27659. height: math.unit(0.75, "meters"),
  27660. name: "Foot",
  27661. image: {
  27662. source: "./media/characters/drena/foot.svg"
  27663. }
  27664. },
  27665. maw: {
  27666. height: math.unit(0.82, "meters"),
  27667. name: "Maw",
  27668. image: {
  27669. source: "./media/characters/drena/maw.svg"
  27670. }
  27671. },
  27672. rump: {
  27673. height: math.unit(0.93, "meters"),
  27674. name: "Rump",
  27675. image: {
  27676. source: "./media/characters/drena/rump.svg"
  27677. }
  27678. },
  27679. },
  27680. [
  27681. {
  27682. name: "Normal",
  27683. height: math.unit(3.02, "meters"),
  27684. default: true
  27685. },
  27686. ]
  27687. ))
  27688. characterMakers.push(() => makeCharacter(
  27689. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27690. {
  27691. front: {
  27692. height: math.unit(6 + 4 / 12, "feet"),
  27693. weight: math.unit(250, "lb"),
  27694. name: "Front",
  27695. image: {
  27696. source: "./media/characters/remmyzilla/front.svg",
  27697. extra: 4033 / 3588,
  27698. bottom: 123 / 4156
  27699. }
  27700. },
  27701. back: {
  27702. height: math.unit(6 + 4 / 12, "feet"),
  27703. weight: math.unit(250, "lb"),
  27704. name: "Back",
  27705. image: {
  27706. source: "./media/characters/remmyzilla/back.svg",
  27707. extra: 2687 / 2555,
  27708. bottom: 48 / 2735
  27709. }
  27710. },
  27711. frontFancy: {
  27712. height: math.unit(6 + 4 / 12, "feet"),
  27713. weight: math.unit(250, "lb"),
  27714. name: "Front (Fancy)",
  27715. image: {
  27716. source: "./media/characters/remmyzilla/front-fancy.svg",
  27717. extra: 4119 / 3419,
  27718. bottom: 237 / 4356
  27719. }
  27720. },
  27721. paw: {
  27722. height: math.unit(1.73, "feet"),
  27723. name: "Paw",
  27724. image: {
  27725. source: "./media/characters/remmyzilla/paw.svg"
  27726. }
  27727. },
  27728. maw: {
  27729. height: math.unit(1.73, "feet"),
  27730. name: "Maw",
  27731. image: {
  27732. source: "./media/characters/remmyzilla/maw.svg"
  27733. }
  27734. },
  27735. },
  27736. [
  27737. {
  27738. name: "Normal",
  27739. height: math.unit(6 + 4 / 12, "feet")
  27740. },
  27741. {
  27742. name: "Minimacro",
  27743. height: math.unit(12 + 8 / 12, "feet")
  27744. },
  27745. {
  27746. name: "Normal",
  27747. height: math.unit(640, "feet"),
  27748. default: true
  27749. },
  27750. {
  27751. name: "Megamacro",
  27752. height: math.unit(6400, "feet")
  27753. },
  27754. {
  27755. name: "Gigamacro",
  27756. height: math.unit(64000, "miles")
  27757. },
  27758. ]
  27759. ))
  27760. characterMakers.push(() => makeCharacter(
  27761. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  27762. {
  27763. front: {
  27764. height: math.unit(2.5, "meters"),
  27765. weight: math.unit(300, "lb"),
  27766. name: "Front",
  27767. image: {
  27768. source: "./media/characters/lawrence/front.svg",
  27769. extra: 357 / 335,
  27770. bottom: 30 / 387
  27771. }
  27772. },
  27773. back: {
  27774. height: math.unit(2.5, "meters"),
  27775. weight: math.unit(300, "lb"),
  27776. name: "Back",
  27777. image: {
  27778. source: "./media/characters/lawrence/back.svg",
  27779. extra: 357 / 338,
  27780. bottom: 16 / 373
  27781. }
  27782. },
  27783. head: {
  27784. height: math.unit(0.9, "meter"),
  27785. name: "Head",
  27786. image: {
  27787. source: "./media/characters/lawrence/head.svg"
  27788. }
  27789. },
  27790. maw: {
  27791. height: math.unit(0.7, "meter"),
  27792. name: "Maw",
  27793. image: {
  27794. source: "./media/characters/lawrence/maw.svg"
  27795. }
  27796. },
  27797. footBottom: {
  27798. height: math.unit(0.5, "meter"),
  27799. name: "Foot (Bottom)",
  27800. image: {
  27801. source: "./media/characters/lawrence/foot-bottom.svg"
  27802. }
  27803. },
  27804. footTop: {
  27805. height: math.unit(0.5, "meter"),
  27806. name: "Foot (Top)",
  27807. image: {
  27808. source: "./media/characters/lawrence/foot-top.svg"
  27809. }
  27810. },
  27811. },
  27812. [
  27813. {
  27814. name: "Normal",
  27815. height: math.unit(2.5, "meters"),
  27816. default: true
  27817. },
  27818. {
  27819. name: "Macro",
  27820. height: math.unit(95, "meters")
  27821. },
  27822. {
  27823. name: "Megamacro",
  27824. height: math.unit(150, "km")
  27825. },
  27826. ]
  27827. ))
  27828. characterMakers.push(() => makeCharacter(
  27829. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  27830. {
  27831. front: {
  27832. height: math.unit(4.2, "meters"),
  27833. name: "Front",
  27834. image: {
  27835. source: "./media/characters/sydney/front.svg",
  27836. extra: 1323 / 1277,
  27837. bottom: 111 / 1434
  27838. }
  27839. },
  27840. },
  27841. [
  27842. {
  27843. name: "Normal",
  27844. height: math.unit(4.2, "meters")
  27845. },
  27846. ]
  27847. ))
  27848. characterMakers.push(() => makeCharacter(
  27849. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  27850. {
  27851. back: {
  27852. height: math.unit(201, "feet"),
  27853. name: "Back",
  27854. image: {
  27855. source: "./media/characters/jessica/back.svg",
  27856. extra: 273 / 259,
  27857. bottom: 7 / 280
  27858. }
  27859. },
  27860. },
  27861. [
  27862. {
  27863. name: "Normal",
  27864. height: math.unit(201, "feet"),
  27865. default: true
  27866. },
  27867. {
  27868. name: "Megamacro",
  27869. height: math.unit(8, "miles")
  27870. },
  27871. ]
  27872. ))
  27873. characterMakers.push(() => makeCharacter(
  27874. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  27875. {
  27876. side: {
  27877. height: math.unit(320, "cm"),
  27878. name: "Side",
  27879. image: {
  27880. source: "./media/characters/victoria/side.svg",
  27881. extra: 778 / 346,
  27882. bottom: 56 / 834
  27883. }
  27884. },
  27885. maw: {
  27886. height: math.unit(5.9, "feet"),
  27887. name: "Maw",
  27888. image: {
  27889. source: "./media/characters/victoria/maw.svg"
  27890. }
  27891. },
  27892. },
  27893. [
  27894. {
  27895. name: "Normal",
  27896. height: math.unit(320, "cm"),
  27897. default: true
  27898. },
  27899. ]
  27900. ))
  27901. characterMakers.push(() => makeCharacter(
  27902. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  27903. {
  27904. front: {
  27905. height: math.unit(5 + 6 / 12, "feet"),
  27906. name: "Front",
  27907. image: {
  27908. source: "./media/characters/cat/front.svg",
  27909. extra: 1374 / 1257,
  27910. bottom: 59 / 1433
  27911. }
  27912. },
  27913. back: {
  27914. height: math.unit(5 + 6 / 12, "feet"),
  27915. name: "Back",
  27916. image: {
  27917. source: "./media/characters/cat/back.svg",
  27918. extra: 1337 / 1226,
  27919. bottom: 34 / 1371
  27920. }
  27921. },
  27922. taur: {
  27923. height: math.unit(7, "feet"),
  27924. name: "Taur",
  27925. image: {
  27926. source: "./media/characters/cat/taur.svg",
  27927. extra: 1345 / 1231,
  27928. bottom: 66 / 1411
  27929. }
  27930. },
  27931. lucario: {
  27932. height: math.unit(4, "feet"),
  27933. name: "Lucario",
  27934. image: {
  27935. source: "./media/characters/cat/lucario.svg",
  27936. extra: 1470 / 1318,
  27937. bottom: 65 / 1535
  27938. }
  27939. },
  27940. megaLucario: {
  27941. height: math.unit(4, "feet"),
  27942. name: "Mega Lucario",
  27943. image: {
  27944. source: "./media/characters/cat/mega-lucario.svg",
  27945. extra: 1515 / 1319,
  27946. bottom: 63 / 1578
  27947. }
  27948. },
  27949. nickit: {
  27950. height: math.unit(2, "feet"),
  27951. name: "Nickit",
  27952. image: {
  27953. source: "./media/characters/cat/nickit.svg",
  27954. extra: 1980 / 1585,
  27955. bottom: 102 / 2082
  27956. }
  27957. },
  27958. lopunnyFront: {
  27959. height: math.unit(5, "feet"),
  27960. name: "Lopunny (Front)",
  27961. image: {
  27962. source: "./media/characters/cat/lopunny-front.svg",
  27963. extra: 1782 / 1469,
  27964. bottom: 38 / 1820
  27965. }
  27966. },
  27967. lopunnyBack: {
  27968. height: math.unit(5, "feet"),
  27969. name: "Lopunny (Back)",
  27970. image: {
  27971. source: "./media/characters/cat/lopunny-back.svg",
  27972. extra: 1660 / 1490,
  27973. bottom: 25 / 1685
  27974. }
  27975. },
  27976. },
  27977. [
  27978. {
  27979. name: "Really small",
  27980. height: math.unit(1, "nm")
  27981. },
  27982. {
  27983. name: "Micro",
  27984. height: math.unit(5, "inches")
  27985. },
  27986. {
  27987. name: "Normal",
  27988. height: math.unit(5 + 6 / 12, "feet"),
  27989. default: true
  27990. },
  27991. {
  27992. name: "Macro",
  27993. height: math.unit(50, "feet")
  27994. },
  27995. {
  27996. name: "Macro+",
  27997. height: math.unit(150, "feet")
  27998. },
  27999. {
  28000. name: "Megamacro",
  28001. height: math.unit(100, "miles")
  28002. },
  28003. ]
  28004. ))
  28005. characterMakers.push(() => makeCharacter(
  28006. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28007. {
  28008. front: {
  28009. height: math.unit(63.4, "meters"),
  28010. weight: math.unit(3.28349e+6, "kilograms"),
  28011. name: "Front",
  28012. image: {
  28013. source: "./media/characters/kirina-violet/front.svg",
  28014. extra: 2812 / 2725,
  28015. bottom: 0 / 2812
  28016. }
  28017. },
  28018. back: {
  28019. height: math.unit(63.4, "meters"),
  28020. weight: math.unit(3.28349e+6, "kilograms"),
  28021. name: "Back",
  28022. image: {
  28023. source: "./media/characters/kirina-violet/back.svg",
  28024. extra: 2812 / 2725,
  28025. bottom: 0 / 2812
  28026. }
  28027. },
  28028. mouth: {
  28029. height: math.unit(4.35, "meters"),
  28030. name: "Mouth",
  28031. image: {
  28032. source: "./media/characters/kirina-violet/mouth.svg"
  28033. }
  28034. },
  28035. paw: {
  28036. height: math.unit(5.6, "meters"),
  28037. name: "Paw",
  28038. image: {
  28039. source: "./media/characters/kirina-violet/paw.svg"
  28040. }
  28041. },
  28042. tail: {
  28043. height: math.unit(18, "meters"),
  28044. name: "Tail",
  28045. image: {
  28046. source: "./media/characters/kirina-violet/tail.svg"
  28047. }
  28048. },
  28049. },
  28050. [
  28051. {
  28052. name: "Macro",
  28053. height: math.unit(63.4, "meters"),
  28054. default: true
  28055. },
  28056. ]
  28057. ))
  28058. characterMakers.push(() => makeCharacter(
  28059. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28060. {
  28061. front: {
  28062. height: math.unit(60, "feet"),
  28063. name: "Front",
  28064. image: {
  28065. source: "./media/characters/cat-gigachu/front.svg",
  28066. extra: 1024 / 780,
  28067. bottom: 23 / 1047
  28068. }
  28069. },
  28070. back: {
  28071. height: math.unit(60, "feet"),
  28072. name: "Back",
  28073. image: {
  28074. source: "./media/characters/cat-gigachu/back.svg",
  28075. extra: 1024 / 780,
  28076. bottom: 23 / 1047
  28077. }
  28078. },
  28079. },
  28080. [
  28081. {
  28082. name: "Dynamax",
  28083. height: math.unit(60, "feet"),
  28084. default: true
  28085. },
  28086. ]
  28087. ))
  28088. characterMakers.push(() => makeCharacter(
  28089. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28090. {
  28091. front: {
  28092. height: math.unit(6, "feet"),
  28093. weight: math.unit(150, "lb"),
  28094. name: "Front",
  28095. image: {
  28096. source: "./media/characters/sfaiyan/front.svg",
  28097. extra: 999 / 978,
  28098. bottom: 5 / 1004
  28099. }
  28100. },
  28101. },
  28102. [
  28103. {
  28104. name: "Normal",
  28105. height: math.unit(1.82, "meters")
  28106. },
  28107. {
  28108. name: "Giant",
  28109. height: math.unit(2.27, "km"),
  28110. default: true
  28111. },
  28112. ]
  28113. ))
  28114. characterMakers.push(() => makeCharacter(
  28115. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28116. {
  28117. front: {
  28118. height: math.unit(179, "cm"),
  28119. weight: math.unit(100, "kg"),
  28120. name: "Front",
  28121. image: {
  28122. source: "./media/characters/raunehkeli/front.svg",
  28123. extra: 1934 / 1926,
  28124. bottom: 0 / 1934
  28125. }
  28126. },
  28127. },
  28128. [
  28129. {
  28130. name: "Normal",
  28131. height: math.unit(179, "cm")
  28132. },
  28133. {
  28134. name: "Maximum",
  28135. height: math.unit(575, "meters"),
  28136. default: true
  28137. },
  28138. ]
  28139. ))
  28140. characterMakers.push(() => makeCharacter(
  28141. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28142. {
  28143. front: {
  28144. height: math.unit(6, "feet"),
  28145. weight: math.unit(150, "lb"),
  28146. name: "Front",
  28147. image: {
  28148. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28149. extra: 2625 / 2518,
  28150. bottom: 60 / 2685
  28151. }
  28152. },
  28153. },
  28154. [
  28155. {
  28156. name: "Normal",
  28157. height: math.unit(6 + 2 / 12, "feet"),
  28158. default: true
  28159. },
  28160. {
  28161. name: "Macro",
  28162. height: math.unit(1180, "feet")
  28163. },
  28164. ]
  28165. ))
  28166. characterMakers.push(() => makeCharacter(
  28167. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28168. {
  28169. front: {
  28170. height: math.unit(5 + 6 / 12, "feet"),
  28171. weight: math.unit(108, "lb"),
  28172. name: "Front",
  28173. image: {
  28174. source: "./media/characters/lilith-zott/front.svg",
  28175. extra: 2510 / 2238,
  28176. bottom: 100 / 2610
  28177. }
  28178. },
  28179. frontDressed: {
  28180. height: math.unit(5 + 6 / 12, "feet"),
  28181. weight: math.unit(108, "lb"),
  28182. name: "Front (Dressed)",
  28183. image: {
  28184. source: "./media/characters/lilith-zott/front-dressed.svg",
  28185. extra: 2510 / 2238,
  28186. bottom: 100 / 2610
  28187. }
  28188. },
  28189. },
  28190. [
  28191. {
  28192. name: "Normal",
  28193. height: math.unit(5 + 6 / 12, "feet")
  28194. },
  28195. {
  28196. name: "Macro",
  28197. height: math.unit(200, "feet"),
  28198. default: true
  28199. },
  28200. {
  28201. name: "Macro+",
  28202. height: math.unit(1030, "feet")
  28203. },
  28204. ]
  28205. ))
  28206. characterMakers.push(() => makeCharacter(
  28207. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28208. {
  28209. front: {
  28210. height: math.unit(6, "feet"),
  28211. weight: math.unit(150, "lb"),
  28212. name: "Front",
  28213. image: {
  28214. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28215. extra: 2567 / 2435,
  28216. bottom: 39 / 2606
  28217. }
  28218. },
  28219. frontSuper: {
  28220. height: math.unit(6, "feet"),
  28221. name: "Front (Super)",
  28222. image: {
  28223. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28224. extra: 2567 / 2435,
  28225. bottom: 39 / 2606
  28226. }
  28227. },
  28228. },
  28229. [
  28230. {
  28231. name: "Normal",
  28232. height: math.unit(5 + 10 / 12, "feet")
  28233. },
  28234. {
  28235. name: "Macro",
  28236. height: math.unit(220, "feet"),
  28237. default: true
  28238. },
  28239. {
  28240. name: "Macro+",
  28241. height: math.unit(1100, "feet")
  28242. },
  28243. ]
  28244. ))
  28245. characterMakers.push(() => makeCharacter(
  28246. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28247. {
  28248. front: {
  28249. height: math.unit(100, "miles"),
  28250. name: "Front",
  28251. image: {
  28252. source: "./media/characters/sona/front.svg",
  28253. extra: 2433 / 2201,
  28254. bottom: 53 / 2486
  28255. }
  28256. },
  28257. foot: {
  28258. height: math.unit(16.1, "miles"),
  28259. name: "Foot",
  28260. image: {
  28261. source: "./media/characters/sona/foot.svg"
  28262. }
  28263. },
  28264. },
  28265. [
  28266. {
  28267. name: "Macro",
  28268. height: math.unit(100, "miles"),
  28269. default: true
  28270. },
  28271. ]
  28272. ))
  28273. characterMakers.push(() => makeCharacter(
  28274. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28275. {
  28276. front: {
  28277. height: math.unit(6, "feet"),
  28278. weight: math.unit(150, "lb"),
  28279. name: "Front",
  28280. image: {
  28281. source: "./media/characters/bailey/front.svg",
  28282. extra: 1778 / 1724,
  28283. bottom: 30 / 1808
  28284. }
  28285. },
  28286. },
  28287. [
  28288. {
  28289. name: "Micro",
  28290. height: math.unit(4, "inches")
  28291. },
  28292. {
  28293. name: "Normal",
  28294. height: math.unit(5 + 5 / 12, "feet"),
  28295. default: true
  28296. },
  28297. {
  28298. name: "Macro",
  28299. height: math.unit(250, "feet")
  28300. },
  28301. {
  28302. name: "Megamacro",
  28303. height: math.unit(100, "miles")
  28304. },
  28305. ]
  28306. ))
  28307. characterMakers.push(() => makeCharacter(
  28308. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28309. {
  28310. front: {
  28311. height: math.unit(5 + 2 / 12, "feet"),
  28312. weight: math.unit(120, "lb"),
  28313. name: "Front",
  28314. image: {
  28315. source: "./media/characters/snaps/front.svg",
  28316. extra: 2370 / 2177,
  28317. bottom: 48 / 2418
  28318. }
  28319. },
  28320. back: {
  28321. height: math.unit(5 + 2 / 12, "feet"),
  28322. weight: math.unit(120, "lb"),
  28323. name: "Back",
  28324. image: {
  28325. source: "./media/characters/snaps/back.svg",
  28326. extra: 2408 / 2258,
  28327. bottom: 15 / 2423
  28328. }
  28329. },
  28330. },
  28331. [
  28332. {
  28333. name: "Micro",
  28334. height: math.unit(9, "inches")
  28335. },
  28336. {
  28337. name: "Normal",
  28338. height: math.unit(5 + 2 / 12, "feet"),
  28339. default: true
  28340. },
  28341. {
  28342. name: "Mini Macro",
  28343. height: math.unit(10, "feet")
  28344. },
  28345. ]
  28346. ))
  28347. characterMakers.push(() => makeCharacter(
  28348. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28349. {
  28350. front: {
  28351. height: math.unit(1.8, "meters"),
  28352. weight: math.unit(85, "kg"),
  28353. name: "Front",
  28354. image: {
  28355. source: "./media/characters/azteck/front.svg",
  28356. extra: 2815 / 2625,
  28357. bottom: 89 / 2904
  28358. }
  28359. },
  28360. back: {
  28361. height: math.unit(1.8, "meters"),
  28362. weight: math.unit(85, "kg"),
  28363. name: "Back",
  28364. image: {
  28365. source: "./media/characters/azteck/back.svg",
  28366. extra: 2856 / 2648,
  28367. bottom: 85 / 2941
  28368. }
  28369. },
  28370. frontDressed: {
  28371. height: math.unit(1.8, "meters"),
  28372. weight: math.unit(85, "kg"),
  28373. name: "Front (Dressed)",
  28374. image: {
  28375. source: "./media/characters/azteck/front-dressed.svg",
  28376. extra: 2147 / 2003,
  28377. bottom: 68 / 2215
  28378. }
  28379. },
  28380. head: {
  28381. height: math.unit(0.47, "meters"),
  28382. weight: math.unit(85, "kg"),
  28383. name: "Head",
  28384. image: {
  28385. source: "./media/characters/azteck/head.svg"
  28386. }
  28387. },
  28388. },
  28389. [
  28390. {
  28391. name: "Bite sized",
  28392. height: math.unit(16, "cm")
  28393. },
  28394. {
  28395. name: "Normal",
  28396. height: math.unit(1.8, "meters"),
  28397. default: true
  28398. },
  28399. ]
  28400. ))
  28401. characterMakers.push(() => makeCharacter(
  28402. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28403. {
  28404. front: {
  28405. height: math.unit(6, "feet"),
  28406. weight: math.unit(150, "lb"),
  28407. name: "Front",
  28408. image: {
  28409. source: "./media/characters/pidge/front.svg",
  28410. extra: 620 / 588,
  28411. bottom: 9 / 629
  28412. }
  28413. },
  28414. back: {
  28415. height: math.unit(6, "feet"),
  28416. weight: math.unit(150, "lb"),
  28417. name: "Back",
  28418. image: {
  28419. source: "./media/characters/pidge/back.svg",
  28420. extra: 620 / 588,
  28421. bottom: 9 / 629
  28422. }
  28423. },
  28424. },
  28425. [
  28426. {
  28427. name: "Macro",
  28428. height: math.unit(1, "mile"),
  28429. default: true
  28430. },
  28431. ]
  28432. ))
  28433. characterMakers.push(() => makeCharacter(
  28434. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28435. {
  28436. front: {
  28437. height: math.unit(6, "feet"),
  28438. weight: math.unit(150, "lb"),
  28439. name: "Front",
  28440. image: {
  28441. source: "./media/characters/en/front.svg",
  28442. extra: 1697 / 1563,
  28443. bottom: 103 / 1800
  28444. }
  28445. },
  28446. back: {
  28447. height: math.unit(6, "feet"),
  28448. weight: math.unit(150, "lb"),
  28449. name: "Back",
  28450. image: {
  28451. source: "./media/characters/en/back.svg",
  28452. extra: 1700 / 1570,
  28453. bottom: 51 / 1751
  28454. }
  28455. },
  28456. frontDressed: {
  28457. height: math.unit(6, "feet"),
  28458. weight: math.unit(150, "lb"),
  28459. name: "Front (Dressed)",
  28460. image: {
  28461. source: "./media/characters/en/front-dressed.svg",
  28462. extra: 1697 / 1563,
  28463. bottom: 103 / 1800
  28464. }
  28465. },
  28466. backDressed: {
  28467. height: math.unit(6, "feet"),
  28468. weight: math.unit(150, "lb"),
  28469. name: "Back (Dressed)",
  28470. image: {
  28471. source: "./media/characters/en/back-dressed.svg",
  28472. extra: 1700 / 1570,
  28473. bottom: 51 / 1751
  28474. }
  28475. },
  28476. },
  28477. [
  28478. {
  28479. name: "Macro",
  28480. height: math.unit(210, "feet"),
  28481. default: true
  28482. },
  28483. ]
  28484. ))
  28485. characterMakers.push(() => makeCharacter(
  28486. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28487. {
  28488. front: {
  28489. height: math.unit(6, "feet"),
  28490. weight: math.unit(150, "lb"),
  28491. name: "Front",
  28492. image: {
  28493. source: "./media/characters/haze-orris/front.svg",
  28494. extra: 3975 / 3525,
  28495. bottom: 137 / 4112
  28496. }
  28497. },
  28498. },
  28499. [
  28500. {
  28501. name: "Micro",
  28502. height: math.unit(150, "mm"),
  28503. default: true
  28504. },
  28505. ]
  28506. ))
  28507. characterMakers.push(() => makeCharacter(
  28508. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28509. {
  28510. front: {
  28511. height: math.unit(6, "feet"),
  28512. weight: math.unit(150, "lb"),
  28513. name: "Front",
  28514. image: {
  28515. source: "./media/characters/casselene-yaro/front.svg",
  28516. extra: 4721 / 4541,
  28517. bottom: 82 / 4803
  28518. }
  28519. },
  28520. back: {
  28521. height: math.unit(6, "feet"),
  28522. weight: math.unit(150, "lb"),
  28523. name: "Back",
  28524. image: {
  28525. source: "./media/characters/casselene-yaro/back.svg",
  28526. extra: 4569 / 4377,
  28527. bottom: 69 / 4638
  28528. }
  28529. },
  28530. frontDressed: {
  28531. height: math.unit(6, "feet"),
  28532. weight: math.unit(150, "lb"),
  28533. name: "Front-dressed",
  28534. image: {
  28535. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28536. extra: 4721 / 4541,
  28537. bottom: 82 / 4803
  28538. }
  28539. },
  28540. },
  28541. [
  28542. {
  28543. name: "Macro",
  28544. height: math.unit(190, "feet")
  28545. },
  28546. ]
  28547. ))
  28548. characterMakers.push(() => makeCharacter(
  28549. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28550. {
  28551. front: {
  28552. height: math.unit(6, "feet"),
  28553. weight: math.unit(150, "lb"),
  28554. name: "Front",
  28555. image: {
  28556. source: "./media/characters/myra-rue-delore/front.svg",
  28557. extra: 1340 / 1308,
  28558. bottom: 67 / 1407
  28559. }
  28560. },
  28561. back: {
  28562. height: math.unit(6, "feet"),
  28563. weight: math.unit(150, "lb"),
  28564. name: "Back",
  28565. image: {
  28566. source: "./media/characters/myra-rue-delore/back.svg",
  28567. extra: 1341 / 1310,
  28568. bottom: 40 / 1381
  28569. }
  28570. },
  28571. frontDressed: {
  28572. height: math.unit(6, "feet"),
  28573. weight: math.unit(150, "lb"),
  28574. name: "Front (Dressed)",
  28575. image: {
  28576. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28577. extra: 1340 / 1308,
  28578. bottom: 67 / 1407
  28579. }
  28580. },
  28581. },
  28582. [
  28583. {
  28584. name: "Macro",
  28585. height: math.unit(150, "feet")
  28586. },
  28587. ]
  28588. ))
  28589. characterMakers.push(() => makeCharacter(
  28590. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28591. {
  28592. front: {
  28593. height: math.unit(10, "feet"),
  28594. weight: math.unit(15015, "lb"),
  28595. name: "Front",
  28596. image: {
  28597. source: "./media/characters/fem!plat/front.svg",
  28598. extra: 2799 / 2604,
  28599. bottom: 149 / 2948
  28600. }
  28601. },
  28602. },
  28603. [
  28604. {
  28605. name: "Normal",
  28606. height: math.unit(10, "feet"),
  28607. default: true
  28608. },
  28609. {
  28610. name: "Macro",
  28611. height: math.unit(100, "feet")
  28612. },
  28613. {
  28614. name: "Megamacro",
  28615. height: math.unit(1000, "feet")
  28616. },
  28617. ]
  28618. ))
  28619. characterMakers.push(() => makeCharacter(
  28620. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28621. {
  28622. front: {
  28623. height: math.unit(15 + 5 / 12, "feet"),
  28624. weight: math.unit(4600, "lb"),
  28625. name: "Front",
  28626. image: {
  28627. source: "./media/characters/neapolitan-ananassa/front.svg",
  28628. extra: 2903 / 2736,
  28629. bottom: 0 / 2903
  28630. }
  28631. },
  28632. side: {
  28633. height: math.unit(15 + 5 / 12, "feet"),
  28634. weight: math.unit(4600, "lb"),
  28635. name: "Side",
  28636. image: {
  28637. source: "./media/characters/neapolitan-ananassa/side.svg",
  28638. extra: 2925 / 2719,
  28639. bottom: 0 / 2925
  28640. }
  28641. },
  28642. back: {
  28643. height: math.unit(15 + 5 / 12, "feet"),
  28644. weight: math.unit(4600, "lb"),
  28645. name: "Back",
  28646. image: {
  28647. source: "./media/characters/neapolitan-ananassa/back.svg",
  28648. extra: 2903 / 2736,
  28649. bottom: 0 / 2903
  28650. }
  28651. },
  28652. },
  28653. [
  28654. {
  28655. name: "Normal",
  28656. height: math.unit(15 + 5 / 12, "feet"),
  28657. default: true
  28658. },
  28659. {
  28660. name: "Post-Millenium",
  28661. height: math.unit(35 + 5 / 12, "feet")
  28662. },
  28663. {
  28664. name: "Post-Era",
  28665. height: math.unit(450 + 5 / 12, "feet")
  28666. },
  28667. ]
  28668. ))
  28669. characterMakers.push(() => makeCharacter(
  28670. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28671. {
  28672. front: {
  28673. height: math.unit(300, "meters"),
  28674. weight: math.unit(125000, "tonnes"),
  28675. name: "Front",
  28676. image: {
  28677. source: "./media/characters/pazuzu/front.svg",
  28678. extra: 877 / 794,
  28679. bottom: 47 / 924
  28680. }
  28681. },
  28682. },
  28683. [
  28684. {
  28685. name: "Macro",
  28686. height: math.unit(300, "meters"),
  28687. default: true
  28688. },
  28689. ]
  28690. ))
  28691. characterMakers.push(() => makeCharacter(
  28692. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28693. {
  28694. side: {
  28695. height: math.unit(10 + 7 / 12, "feet"),
  28696. weight: math.unit(2.5, "tons"),
  28697. name: "Side",
  28698. image: {
  28699. source: "./media/characters/aasha/side.svg",
  28700. extra: 1345 / 1245,
  28701. bottom: 111 / 1456
  28702. }
  28703. },
  28704. back: {
  28705. height: math.unit(10 + 7 / 12, "feet"),
  28706. weight: math.unit(2.5, "tons"),
  28707. name: "Back",
  28708. image: {
  28709. source: "./media/characters/aasha/back.svg",
  28710. extra: 1133 / 1057,
  28711. bottom: 257 / 1390
  28712. }
  28713. },
  28714. },
  28715. [
  28716. {
  28717. name: "Normal",
  28718. height: math.unit(10 + 7 / 12, "feet"),
  28719. default: true
  28720. },
  28721. ]
  28722. ))
  28723. characterMakers.push(() => makeCharacter(
  28724. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  28725. {
  28726. front: {
  28727. height: math.unit(6 + 3 / 12, "feet"),
  28728. name: "Front",
  28729. image: {
  28730. source: "./media/characters/nevan/front.svg",
  28731. extra: 704 / 704,
  28732. bottom: 28 / 732
  28733. }
  28734. },
  28735. back: {
  28736. height: math.unit(6 + 3 / 12, "feet"),
  28737. name: "Back",
  28738. image: {
  28739. source: "./media/characters/nevan/back.svg",
  28740. extra: 714 / 714,
  28741. bottom: 21 / 735
  28742. }
  28743. },
  28744. frontFlaccid: {
  28745. height: math.unit(6 + 3 / 12, "feet"),
  28746. name: "Front (Flaccid)",
  28747. image: {
  28748. source: "./media/characters/nevan/front-flaccid.svg",
  28749. extra: 704 / 704,
  28750. bottom: 28 / 732
  28751. }
  28752. },
  28753. frontErect: {
  28754. height: math.unit(6 + 3 / 12, "feet"),
  28755. name: "Front (Erect)",
  28756. image: {
  28757. source: "./media/characters/nevan/front-erect.svg",
  28758. extra: 704 / 704,
  28759. bottom: 28 / 732
  28760. }
  28761. },
  28762. backFlaccid: {
  28763. height: math.unit(6 + 3 / 12, "feet"),
  28764. name: "Back (Flaccid)",
  28765. image: {
  28766. source: "./media/characters/nevan/back-flaccid.svg",
  28767. extra: 714 / 714,
  28768. bottom: 21 / 735
  28769. }
  28770. },
  28771. },
  28772. [
  28773. {
  28774. name: "Normal",
  28775. height: math.unit(6 + 3 / 12, "feet"),
  28776. default: true
  28777. },
  28778. ]
  28779. ))
  28780. characterMakers.push(() => makeCharacter(
  28781. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  28782. {
  28783. front: {
  28784. height: math.unit(4, "feet"),
  28785. name: "Front",
  28786. image: {
  28787. source: "./media/characters/arhan/front.svg",
  28788. extra: 3368 / 3133,
  28789. bottom: 0 / 3368
  28790. }
  28791. },
  28792. side: {
  28793. height: math.unit(4, "feet"),
  28794. name: "Side",
  28795. image: {
  28796. source: "./media/characters/arhan/side.svg",
  28797. extra: 3347 / 3105,
  28798. bottom: 0 / 3347
  28799. }
  28800. },
  28801. tongue: {
  28802. height: math.unit(1.42, "feet"),
  28803. name: "Tongue",
  28804. image: {
  28805. source: "./media/characters/arhan/tongue.svg"
  28806. }
  28807. },
  28808. head: {
  28809. height: math.unit(0.85, "feet"),
  28810. name: "Head",
  28811. image: {
  28812. source: "./media/characters/arhan/head.svg"
  28813. }
  28814. },
  28815. },
  28816. [
  28817. {
  28818. name: "Normal",
  28819. height: math.unit(4, "feet"),
  28820. default: true
  28821. },
  28822. ]
  28823. ))
  28824. characterMakers.push(() => makeCharacter(
  28825. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  28826. {
  28827. front: {
  28828. height: math.unit(5 + 7.5 / 12, "feet"),
  28829. weight: math.unit(120, "lb"),
  28830. name: "Front",
  28831. image: {
  28832. source: "./media/characters/digi-duncan/front.svg",
  28833. extra: 330 / 326,
  28834. bottom: 16 / 346
  28835. }
  28836. },
  28837. side: {
  28838. height: math.unit(5 + 7.5 / 12, "feet"),
  28839. weight: math.unit(120, "lb"),
  28840. name: "Side",
  28841. image: {
  28842. source: "./media/characters/digi-duncan/side.svg",
  28843. extra: 341 / 337,
  28844. bottom: 1 / 342
  28845. }
  28846. },
  28847. back: {
  28848. height: math.unit(5 + 7.5 / 12, "feet"),
  28849. weight: math.unit(120, "lb"),
  28850. name: "Back",
  28851. image: {
  28852. source: "./media/characters/digi-duncan/back.svg",
  28853. extra: 330 / 326,
  28854. bottom: 12 / 342
  28855. }
  28856. },
  28857. },
  28858. [
  28859. {
  28860. name: "Speck",
  28861. height: math.unit(0.25, "mm")
  28862. },
  28863. {
  28864. name: "Micro",
  28865. height: math.unit(5, "mm")
  28866. },
  28867. {
  28868. name: "Tiny",
  28869. height: math.unit(0.5, "inches"),
  28870. default: true
  28871. },
  28872. {
  28873. name: "Human",
  28874. height: math.unit(5 + 7.5 / 12, "feet")
  28875. },
  28876. {
  28877. name: "Minigiant",
  28878. height: math.unit(8 + 5.25, "feet")
  28879. },
  28880. {
  28881. name: "Giant",
  28882. height: math.unit(2000, "feet")
  28883. },
  28884. {
  28885. name: "Mega",
  28886. height: math.unit(371.1, "miles")
  28887. },
  28888. ]
  28889. ))
  28890. characterMakers.push(() => makeCharacter(
  28891. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  28892. {
  28893. front: {
  28894. height: math.unit(2, "meters"),
  28895. weight: math.unit(350, "kg"),
  28896. name: "Front",
  28897. image: {
  28898. source: "./media/characters/jagaz-soulbreaker/front.svg",
  28899. extra: 898 / 838,
  28900. bottom: 9 / 907
  28901. }
  28902. },
  28903. },
  28904. [
  28905. {
  28906. name: "Micro",
  28907. height: math.unit(8, "meters")
  28908. },
  28909. {
  28910. name: "Normal",
  28911. height: math.unit(50, "meters"),
  28912. default: true
  28913. },
  28914. {
  28915. name: "Macro",
  28916. height: math.unit(500, "meters")
  28917. },
  28918. ]
  28919. ))
  28920. characterMakers.push(() => makeCharacter(
  28921. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  28922. {
  28923. front: {
  28924. height: math.unit(6 + 6 / 12, "feet"),
  28925. name: "Front",
  28926. image: {
  28927. source: "./media/characters/khardesh/front.svg",
  28928. extra: 888 / 797,
  28929. bottom: 25 / 913
  28930. }
  28931. },
  28932. },
  28933. [
  28934. {
  28935. name: "Normal",
  28936. height: math.unit(6 + 6 / 12, "feet"),
  28937. default: true
  28938. },
  28939. {
  28940. name: "Normal+",
  28941. height: math.unit(4, "meters")
  28942. },
  28943. {
  28944. name: "Macro",
  28945. height: math.unit(50, "meters")
  28946. },
  28947. {
  28948. name: "Macro+",
  28949. height: math.unit(100, "meters")
  28950. },
  28951. {
  28952. name: "Megamacro",
  28953. height: math.unit(20, "km")
  28954. },
  28955. ]
  28956. ))
  28957. characterMakers.push(() => makeCharacter(
  28958. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  28959. {
  28960. front: {
  28961. height: math.unit(6, "feet"),
  28962. weight: math.unit(150, "lb"),
  28963. name: "Front",
  28964. image: {
  28965. source: "./media/characters/kosho/front.svg",
  28966. extra: 1847 / 1847,
  28967. bottom: 86 / 1933
  28968. }
  28969. },
  28970. },
  28971. [
  28972. {
  28973. name: "Second-stage micro",
  28974. height: math.unit(0.5, "inches")
  28975. },
  28976. {
  28977. name: "First-stage micro",
  28978. height: math.unit(6, "inches")
  28979. },
  28980. {
  28981. name: "Normal",
  28982. height: math.unit(6, "feet"),
  28983. default: true
  28984. },
  28985. {
  28986. name: "First-stage macro",
  28987. height: math.unit(72, "feet")
  28988. },
  28989. {
  28990. name: "Second-stage macro",
  28991. height: math.unit(864, "feet")
  28992. },
  28993. ]
  28994. ))
  28995. characterMakers.push(() => makeCharacter(
  28996. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  28997. {
  28998. normal: {
  28999. height: math.unit(4 + 6 / 12, "feet"),
  29000. name: "Normal",
  29001. image: {
  29002. source: "./media/characters/hydra/normal.svg",
  29003. extra: 2833 / 2634,
  29004. bottom: 68 / 2901
  29005. }
  29006. },
  29007. smol: {
  29008. height: math.unit(0.705, "inches"),
  29009. name: "Smol",
  29010. image: {
  29011. source: "./media/characters/hydra/smol.svg",
  29012. extra: 2715 / 2540,
  29013. bottom: 0 / 2715
  29014. }
  29015. },
  29016. },
  29017. [
  29018. {
  29019. name: "Normal",
  29020. height: math.unit(4 + 6 / 12, "feet"),
  29021. default: true
  29022. }
  29023. ]
  29024. ))
  29025. characterMakers.push(() => makeCharacter(
  29026. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29027. {
  29028. front: {
  29029. height: math.unit(0.6, "cm"),
  29030. name: "Front",
  29031. image: {
  29032. source: "./media/characters/daz/front.svg",
  29033. extra: 1682 / 1164,
  29034. bottom: 42 / 1724
  29035. }
  29036. },
  29037. },
  29038. [
  29039. {
  29040. name: "Normal",
  29041. height: math.unit(0.6, "cm"),
  29042. default: true
  29043. },
  29044. ]
  29045. ))
  29046. characterMakers.push(() => makeCharacter(
  29047. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29048. {
  29049. front: {
  29050. height: math.unit(6, "feet"),
  29051. weight: math.unit(235, "lb"),
  29052. name: "Front",
  29053. image: {
  29054. source: "./media/characters/theo-pangolin/front.svg",
  29055. extra: 1996 / 1969,
  29056. bottom: 115 / 2111
  29057. }
  29058. },
  29059. back: {
  29060. height: math.unit(6, "feet"),
  29061. weight: math.unit(235, "lb"),
  29062. name: "Back",
  29063. image: {
  29064. source: "./media/characters/theo-pangolin/back.svg",
  29065. extra: 1979 / 1979,
  29066. bottom: 40 / 2019
  29067. }
  29068. },
  29069. feral: {
  29070. height: math.unit(2, "feet"),
  29071. weight: math.unit(30, "lb"),
  29072. name: "Feral",
  29073. image: {
  29074. source: "./media/characters/theo-pangolin/feral.svg",
  29075. extra: 803 / 791,
  29076. bottom: 181 / 984
  29077. }
  29078. },
  29079. footFive: {
  29080. height: math.unit(1.43, "feet"),
  29081. name: "Foot (Five Toes)",
  29082. image: {
  29083. source: "./media/characters/theo-pangolin/foot-five.svg"
  29084. }
  29085. },
  29086. footFour: {
  29087. height: math.unit(1.43, "feet"),
  29088. name: "Foot (Four Toes)",
  29089. image: {
  29090. source: "./media/characters/theo-pangolin/foot-four.svg"
  29091. }
  29092. },
  29093. handFour: {
  29094. height: math.unit(0.81, "feet"),
  29095. name: "Hand (Four Fingers)",
  29096. image: {
  29097. source: "./media/characters/theo-pangolin/hand-four.svg"
  29098. }
  29099. },
  29100. handThree: {
  29101. height: math.unit(0.81, "feet"),
  29102. name: "Hand (Three Fingers)",
  29103. image: {
  29104. source: "./media/characters/theo-pangolin/hand-three.svg"
  29105. }
  29106. },
  29107. headFront: {
  29108. height: math.unit(1.37, "feet"),
  29109. name: "Head (Front)",
  29110. image: {
  29111. source: "./media/characters/theo-pangolin/head-front.svg"
  29112. }
  29113. },
  29114. headSide: {
  29115. height: math.unit(1.43, "feet"),
  29116. name: "Head (Side)",
  29117. image: {
  29118. source: "./media/characters/theo-pangolin/head-side.svg"
  29119. }
  29120. },
  29121. tongue: {
  29122. height: math.unit(2.29, "feet"),
  29123. name: "Tongue",
  29124. image: {
  29125. source: "./media/characters/theo-pangolin/tongue.svg"
  29126. }
  29127. },
  29128. },
  29129. [
  29130. {
  29131. name: "Normal",
  29132. height: math.unit(6, "feet")
  29133. },
  29134. {
  29135. name: "Macro",
  29136. height: math.unit(400, "feet"),
  29137. default: true
  29138. },
  29139. ]
  29140. ))
  29141. characterMakers.push(() => makeCharacter(
  29142. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29143. {
  29144. front: {
  29145. height: math.unit(6, "inches"),
  29146. weight: math.unit(0.036, "kg"),
  29147. name: "Front",
  29148. image: {
  29149. source: "./media/characters/renée/front.svg",
  29150. extra: 900 / 886,
  29151. bottom: 8 / 908
  29152. }
  29153. },
  29154. },
  29155. [
  29156. {
  29157. name: "Nano",
  29158. height: math.unit(1, "nm")
  29159. },
  29160. {
  29161. name: "Micro",
  29162. height: math.unit(1, "mm")
  29163. },
  29164. {
  29165. name: "Normal",
  29166. height: math.unit(6, "inches")
  29167. },
  29168. {
  29169. name: "Macro",
  29170. height: math.unit(2000, "feet"),
  29171. default: true
  29172. },
  29173. {
  29174. name: "Megamacro",
  29175. height: math.unit(2, "km")
  29176. },
  29177. {
  29178. name: "Gigamacro",
  29179. height: math.unit(2000, "km")
  29180. },
  29181. {
  29182. name: "Teramacro",
  29183. height: math.unit(250000, "km")
  29184. },
  29185. ]
  29186. ))
  29187. characterMakers.push(() => makeCharacter(
  29188. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29189. {
  29190. front: {
  29191. height: math.unit(4, "meters"),
  29192. weight: math.unit(150, "kg"),
  29193. name: "Front",
  29194. image: {
  29195. source: "./media/characters/caledvwlch/front.svg",
  29196. extra: 1760 / 1551,
  29197. bottom: 28 / 1788
  29198. }
  29199. },
  29200. side: {
  29201. height: math.unit(4, "meters"),
  29202. weight: math.unit(150, "kg"),
  29203. name: "Side",
  29204. image: {
  29205. source: "./media/characters/caledvwlch/side.svg",
  29206. extra: 1605 / 1536,
  29207. bottom: 31 / 1636
  29208. }
  29209. },
  29210. back: {
  29211. height: math.unit(4, "meters"),
  29212. weight: math.unit(150, "kg"),
  29213. name: "Back",
  29214. image: {
  29215. source: "./media/characters/caledvwlch/back.svg",
  29216. extra: 1635 / 1565,
  29217. bottom: 27 / 1662
  29218. }
  29219. },
  29220. },
  29221. [
  29222. {
  29223. name: "\"Incognito\"",
  29224. height: math.unit(4, "meters")
  29225. },
  29226. {
  29227. name: "Small rampage",
  29228. height: math.unit(600, "meters")
  29229. },
  29230. {
  29231. name: "Mega",
  29232. height: math.unit(30, "km")
  29233. },
  29234. {
  29235. name: "Home-size",
  29236. height: math.unit(50, "km"),
  29237. default: true
  29238. },
  29239. {
  29240. name: "Giga",
  29241. height: math.unit(300, "km")
  29242. },
  29243. {
  29244. name: "Lounging",
  29245. height: math.unit(11000, "km")
  29246. },
  29247. {
  29248. name: "Planet snacking",
  29249. height: math.unit(2000000, "km")
  29250. },
  29251. ]
  29252. ))
  29253. characterMakers.push(() => makeCharacter(
  29254. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29255. {
  29256. front: {
  29257. height: math.unit(6, "feet"),
  29258. weight: math.unit(215, "lb"),
  29259. name: "Front",
  29260. image: {
  29261. source: "./media/characters/sapphire-svell/front.svg",
  29262. extra: 495 / 455,
  29263. bottom: 20 / 515
  29264. }
  29265. },
  29266. back: {
  29267. height: math.unit(6, "feet"),
  29268. weight: math.unit(216, "lb"),
  29269. name: "Back",
  29270. image: {
  29271. source: "./media/characters/sapphire-svell/back.svg",
  29272. extra: 497 / 477,
  29273. bottom: 7 / 504
  29274. }
  29275. },
  29276. maw: {
  29277. height: math.unit(1.57, "feet"),
  29278. name: "Maw",
  29279. image: {
  29280. source: "./media/characters/sapphire-svell/maw.svg"
  29281. }
  29282. },
  29283. foot: {
  29284. height: math.unit(1.07, "feet"),
  29285. name: "Foot",
  29286. image: {
  29287. source: "./media/characters/sapphire-svell/foot.svg"
  29288. }
  29289. },
  29290. toering: {
  29291. height: math.unit(1.7, "inch"),
  29292. name: "Toering",
  29293. image: {
  29294. source: "./media/characters/sapphire-svell/toering.svg"
  29295. }
  29296. },
  29297. },
  29298. [
  29299. {
  29300. name: "Normal",
  29301. height: math.unit(300, "feet"),
  29302. default: true
  29303. },
  29304. {
  29305. name: "Augmented",
  29306. height: math.unit(1250, "feet")
  29307. },
  29308. {
  29309. name: "Unleashed",
  29310. height: math.unit(3000, "feet")
  29311. },
  29312. ]
  29313. ))
  29314. characterMakers.push(() => makeCharacter(
  29315. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29316. {
  29317. side: {
  29318. height: math.unit(2 + 3 / 12, "feet"),
  29319. weight: math.unit(110, "lb"),
  29320. name: "Side",
  29321. image: {
  29322. source: "./media/characters/glitch-flux/side.svg",
  29323. extra: 997 / 805,
  29324. bottom: 20 / 1017
  29325. }
  29326. },
  29327. },
  29328. [
  29329. {
  29330. name: "Normal",
  29331. height: math.unit(2 + 3 / 12, "feet"),
  29332. default: true
  29333. },
  29334. ]
  29335. ))
  29336. characterMakers.push(() => makeCharacter(
  29337. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29338. {
  29339. front: {
  29340. height: math.unit(4, "meters"),
  29341. name: "Front",
  29342. image: {
  29343. source: "./media/characters/mid/front.svg",
  29344. extra: 507 / 476,
  29345. bottom: 17 / 524
  29346. }
  29347. },
  29348. back: {
  29349. height: math.unit(4, "meters"),
  29350. name: "Back",
  29351. image: {
  29352. source: "./media/characters/mid/back.svg",
  29353. extra: 519 / 487,
  29354. bottom: 7 / 526
  29355. }
  29356. },
  29357. stuck: {
  29358. height: math.unit(2.2, "meters"),
  29359. name: "Stuck",
  29360. image: {
  29361. source: "./media/characters/mid/stuck.svg",
  29362. extra: 1951 / 1869,
  29363. bottom: 88 / 2039
  29364. }
  29365. }
  29366. },
  29367. [
  29368. {
  29369. name: "Normal",
  29370. height: math.unit(4, "meters"),
  29371. default: true
  29372. },
  29373. {
  29374. name: "Big",
  29375. height: math.unit(10, "meters")
  29376. },
  29377. {
  29378. name: "Macro",
  29379. height: math.unit(800, "meters")
  29380. },
  29381. {
  29382. name: "Megamacro",
  29383. height: math.unit(100, "km")
  29384. },
  29385. {
  29386. name: "Overgrown",
  29387. height: math.unit(1, "parsec")
  29388. },
  29389. ]
  29390. ))
  29391. characterMakers.push(() => makeCharacter(
  29392. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29393. {
  29394. front: {
  29395. height: math.unit(2.5, "meters"),
  29396. weight: math.unit(225, "kg"),
  29397. name: "Front",
  29398. image: {
  29399. source: "./media/characters/iris/front.svg",
  29400. extra: 3348 / 3251,
  29401. bottom: 205 / 3553
  29402. }
  29403. },
  29404. maw: {
  29405. height: math.unit(0.56, "meter"),
  29406. name: "Maw",
  29407. image: {
  29408. source: "./media/characters/iris/maw.svg"
  29409. }
  29410. },
  29411. },
  29412. [
  29413. {
  29414. name: "Mewter cat",
  29415. height: math.unit(1.2, "meters")
  29416. },
  29417. {
  29418. name: "Minimacro",
  29419. height: math.unit(2.5, "meters"),
  29420. default: true
  29421. },
  29422. {
  29423. name: "Macro",
  29424. height: math.unit(180, "meters")
  29425. },
  29426. {
  29427. name: "Megamacro",
  29428. height: math.unit(2746, "meters")
  29429. },
  29430. ]
  29431. ))
  29432. characterMakers.push(() => makeCharacter(
  29433. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29434. {
  29435. front: {
  29436. height: math.unit(6, "feet"),
  29437. weight: math.unit(135, "lb"),
  29438. name: "Front",
  29439. image: {
  29440. source: "./media/characters/axel/front.svg",
  29441. extra: 908 / 908,
  29442. bottom: 58 / 966
  29443. }
  29444. },
  29445. side: {
  29446. height: math.unit(6, "feet"),
  29447. weight: math.unit(135, "lb"),
  29448. name: "Side",
  29449. image: {
  29450. source: "./media/characters/axel/side.svg",
  29451. extra: 958 / 958,
  29452. bottom: 11 / 969
  29453. }
  29454. },
  29455. back: {
  29456. height: math.unit(6, "feet"),
  29457. weight: math.unit(135, "lb"),
  29458. name: "Back",
  29459. image: {
  29460. source: "./media/characters/axel/back.svg",
  29461. extra: 887 / 887,
  29462. bottom: 34 / 921
  29463. }
  29464. },
  29465. head: {
  29466. height: math.unit(1.07, "feet"),
  29467. name: "Head",
  29468. image: {
  29469. source: "./media/characters/axel/head.svg"
  29470. }
  29471. },
  29472. beak: {
  29473. height: math.unit(1.4, "feet"),
  29474. name: "Beak",
  29475. image: {
  29476. source: "./media/characters/axel/beak.svg"
  29477. }
  29478. },
  29479. beakSide: {
  29480. height: math.unit(1.4, "feet"),
  29481. name: "Beak Side",
  29482. image: {
  29483. source: "./media/characters/axel/beak-side.svg"
  29484. }
  29485. },
  29486. sheath: {
  29487. height: math.unit(0.5, "feet"),
  29488. name: "Sheath",
  29489. image: {
  29490. source: "./media/characters/axel/sheath.svg"
  29491. }
  29492. },
  29493. dick: {
  29494. height: math.unit(0.98, "feet"),
  29495. name: "Dick",
  29496. image: {
  29497. source: "./media/characters/axel/dick.svg"
  29498. }
  29499. },
  29500. },
  29501. [
  29502. {
  29503. name: "Macro",
  29504. height: math.unit(68, "meters"),
  29505. default: true
  29506. },
  29507. ]
  29508. ))
  29509. characterMakers.push(() => makeCharacter(
  29510. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29511. {
  29512. front: {
  29513. height: math.unit(3.5, "meters"),
  29514. weight: math.unit(1200, "kg"),
  29515. name: "Front",
  29516. image: {
  29517. source: "./media/characters/joanna/front.svg",
  29518. extra: 1596 / 1488,
  29519. bottom: 29 / 1625
  29520. }
  29521. },
  29522. back: {
  29523. height: math.unit(3.5, "meters"),
  29524. weight: math.unit(1200, "kg"),
  29525. name: "Back",
  29526. image: {
  29527. source: "./media/characters/joanna/back.svg",
  29528. extra: 1594 / 1495,
  29529. bottom: 26 / 1620
  29530. }
  29531. },
  29532. frontShorts: {
  29533. height: math.unit(3.5, "meters"),
  29534. weight: math.unit(1200, "kg"),
  29535. name: "Front (Shorts)",
  29536. image: {
  29537. source: "./media/characters/joanna/front-shorts.svg",
  29538. extra: 1596 / 1488,
  29539. bottom: 29 / 1625
  29540. }
  29541. },
  29542. frontBiker: {
  29543. height: math.unit(3.5, "meters"),
  29544. weight: math.unit(1200, "kg"),
  29545. name: "Front (Biker)",
  29546. image: {
  29547. source: "./media/characters/joanna/front-biker.svg",
  29548. extra: 1596 / 1488,
  29549. bottom: 29 / 1625
  29550. }
  29551. },
  29552. backBiker: {
  29553. height: math.unit(3.5, "meters"),
  29554. weight: math.unit(1200, "kg"),
  29555. name: "Back (Biker)",
  29556. image: {
  29557. source: "./media/characters/joanna/back-biker.svg",
  29558. extra: 1594 / 1495,
  29559. bottom: 88 / 1682
  29560. }
  29561. },
  29562. bikeLeft: {
  29563. height: math.unit(2.4, "meters"),
  29564. weight: math.unit(1600, "kg"),
  29565. name: "Bike (Left)",
  29566. image: {
  29567. source: "./media/characters/joanna/bike-left.svg",
  29568. extra: 720 / 720,
  29569. bottom: 8 / 728
  29570. }
  29571. },
  29572. bikeRight: {
  29573. height: math.unit(2.4, "meters"),
  29574. weight: math.unit(1600, "kg"),
  29575. name: "Bike (Right)",
  29576. image: {
  29577. source: "./media/characters/joanna/bike-right.svg",
  29578. extra: 720 / 720,
  29579. bottom: 8 / 728
  29580. }
  29581. },
  29582. },
  29583. [
  29584. {
  29585. name: "Incognito",
  29586. height: math.unit(3.5, "meters")
  29587. },
  29588. {
  29589. name: "Casual Big",
  29590. height: math.unit(200, "meters")
  29591. },
  29592. {
  29593. name: "Macro",
  29594. height: math.unit(600, "meters")
  29595. },
  29596. {
  29597. name: "Original",
  29598. height: math.unit(20, "km"),
  29599. default: true
  29600. },
  29601. {
  29602. name: "Giga",
  29603. height: math.unit(400, "km")
  29604. },
  29605. {
  29606. name: "Lounging",
  29607. height: math.unit(1500, "km")
  29608. },
  29609. {
  29610. name: "Planetary",
  29611. height: math.unit(200000, "km")
  29612. },
  29613. ]
  29614. ))
  29615. characterMakers.push(() => makeCharacter(
  29616. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29617. {
  29618. front: {
  29619. height: math.unit(6, "feet"),
  29620. weight: math.unit(150, "lb"),
  29621. name: "Front",
  29622. image: {
  29623. source: "./media/characters/hugo-sigil/front.svg",
  29624. extra: 522 / 500,
  29625. bottom: 2 / 524
  29626. }
  29627. },
  29628. back: {
  29629. height: math.unit(6, "feet"),
  29630. weight: math.unit(150, "lb"),
  29631. name: "Back",
  29632. image: {
  29633. source: "./media/characters/hugo-sigil/back.svg",
  29634. extra: 519 / 495,
  29635. bottom: 5 / 524
  29636. }
  29637. },
  29638. maw: {
  29639. height: math.unit(1.4, "feet"),
  29640. weight: math.unit(150, "lb"),
  29641. name: "Maw",
  29642. image: {
  29643. source: "./media/characters/hugo-sigil/maw.svg"
  29644. }
  29645. },
  29646. feet: {
  29647. height: math.unit(1.56, "feet"),
  29648. weight: math.unit(150, "lb"),
  29649. name: "Feet",
  29650. image: {
  29651. source: "./media/characters/hugo-sigil/feet.svg",
  29652. extra: 177 / 177,
  29653. bottom: 12 / 189
  29654. }
  29655. },
  29656. },
  29657. [
  29658. {
  29659. name: "Normal",
  29660. height: math.unit(6, "feet")
  29661. },
  29662. {
  29663. name: "Macro",
  29664. height: math.unit(200, "feet"),
  29665. default: true
  29666. },
  29667. ]
  29668. ))
  29669. characterMakers.push(() => makeCharacter(
  29670. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  29671. {
  29672. front: {
  29673. height: math.unit(6, "feet"),
  29674. weight: math.unit(150, "lb"),
  29675. name: "Front",
  29676. image: {
  29677. source: "./media/characters/peri/front.svg",
  29678. extra: 2354 / 2233,
  29679. bottom: 49 / 2403
  29680. }
  29681. },
  29682. },
  29683. [
  29684. {
  29685. name: "Really Small",
  29686. height: math.unit(1, "nm")
  29687. },
  29688. {
  29689. name: "Micro",
  29690. height: math.unit(4, "inches")
  29691. },
  29692. {
  29693. name: "Normal",
  29694. height: math.unit(7, "inches"),
  29695. default: true
  29696. },
  29697. {
  29698. name: "Macro",
  29699. height: math.unit(400, "feet")
  29700. },
  29701. {
  29702. name: "Megamacro",
  29703. height: math.unit(100, "miles")
  29704. },
  29705. ]
  29706. ))
  29707. characterMakers.push(() => makeCharacter(
  29708. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  29709. {
  29710. frontSlim: {
  29711. height: math.unit(7, "feet"),
  29712. name: "Front (Slim)",
  29713. image: {
  29714. source: "./media/characters/issilora/front-slim.svg",
  29715. extra: 529 / 449,
  29716. bottom: 53 / 582
  29717. }
  29718. },
  29719. sideSlim: {
  29720. height: math.unit(7, "feet"),
  29721. name: "Side (Slim)",
  29722. image: {
  29723. source: "./media/characters/issilora/side-slim.svg",
  29724. extra: 570 / 480,
  29725. bottom: 30 / 600
  29726. }
  29727. },
  29728. backSlim: {
  29729. height: math.unit(7, "feet"),
  29730. name: "Back (Slim)",
  29731. image: {
  29732. source: "./media/characters/issilora/back-slim.svg",
  29733. extra: 537 / 455,
  29734. bottom: 46 / 583
  29735. }
  29736. },
  29737. frontBuff: {
  29738. height: math.unit(7, "feet"),
  29739. name: "Front (Buff)",
  29740. image: {
  29741. source: "./media/characters/issilora/front-buff.svg",
  29742. extra: 2310 / 2035,
  29743. bottom: 335 / 2645
  29744. }
  29745. },
  29746. head: {
  29747. height: math.unit(1.94, "feet"),
  29748. name: "Head",
  29749. image: {
  29750. source: "./media/characters/issilora/head.svg"
  29751. }
  29752. },
  29753. },
  29754. [
  29755. {
  29756. name: "Minimum",
  29757. height: math.unit(7, "feet")
  29758. },
  29759. {
  29760. name: "Comfortable",
  29761. height: math.unit(17, "feet")
  29762. },
  29763. {
  29764. name: "Fun Size",
  29765. height: math.unit(47, "feet")
  29766. },
  29767. {
  29768. name: "Natural Macro",
  29769. height: math.unit(137, "feet"),
  29770. default: true
  29771. },
  29772. {
  29773. name: "Maximum Kaiju",
  29774. height: math.unit(397, "feet")
  29775. },
  29776. ]
  29777. ))
  29778. characterMakers.push(() => makeCharacter(
  29779. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  29780. {
  29781. front: {
  29782. height: math.unit(50 + 9/12, "feet"),
  29783. weight: math.unit(32.8, "tons"),
  29784. name: "Front",
  29785. image: {
  29786. source: "./media/characters/irb'iiritaahn/front.svg",
  29787. extra: 1878/1826,
  29788. bottom: 326/2204
  29789. }
  29790. },
  29791. back: {
  29792. height: math.unit(50 + 9/12, "feet"),
  29793. weight: math.unit(32.8, "tons"),
  29794. name: "Back",
  29795. image: {
  29796. source: "./media/characters/irb'iiritaahn/back.svg",
  29797. extra: 2052/2018,
  29798. bottom: 152/2204
  29799. }
  29800. },
  29801. head: {
  29802. height: math.unit(12.86, "feet"),
  29803. name: "Head",
  29804. image: {
  29805. source: "./media/characters/irb'iiritaahn/head.svg"
  29806. }
  29807. },
  29808. maw: {
  29809. height: math.unit(9.66, "feet"),
  29810. name: "Maw",
  29811. image: {
  29812. source: "./media/characters/irb'iiritaahn/maw.svg"
  29813. }
  29814. },
  29815. frontDick: {
  29816. height: math.unit(8.78461, "feet"),
  29817. name: "Front Dick",
  29818. image: {
  29819. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  29820. }
  29821. },
  29822. rearDick: {
  29823. height: math.unit(8.78461, "feet"),
  29824. name: "Rear Dick",
  29825. image: {
  29826. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  29827. }
  29828. },
  29829. rearDickUnfolded: {
  29830. height: math.unit(8.78, "feet"),
  29831. name: "Rear Dick (Unfolded)",
  29832. image: {
  29833. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  29834. }
  29835. },
  29836. wings: {
  29837. height: math.unit(43, "feet"),
  29838. name: "Wings",
  29839. image: {
  29840. source: "./media/characters/irb'iiritaahn/wings.svg"
  29841. }
  29842. },
  29843. },
  29844. [
  29845. {
  29846. name: "Macro",
  29847. height: math.unit(50 + 9/12, "feet"),
  29848. default: true
  29849. },
  29850. ]
  29851. ))
  29852. characterMakers.push(() => makeCharacter(
  29853. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  29854. {
  29855. front: {
  29856. height: math.unit(205, "cm"),
  29857. weight: math.unit(102, "kg"),
  29858. name: "Front",
  29859. image: {
  29860. source: "./media/characters/irbisgreif/front.svg",
  29861. extra: 785/706,
  29862. bottom: 13/798
  29863. }
  29864. },
  29865. back: {
  29866. height: math.unit(205, "cm"),
  29867. weight: math.unit(102, "kg"),
  29868. name: "Back",
  29869. image: {
  29870. source: "./media/characters/irbisgreif/back.svg",
  29871. extra: 713/701,
  29872. bottom: 26/739
  29873. }
  29874. },
  29875. frontDressed: {
  29876. height: math.unit(216, "cm"),
  29877. weight: math.unit(102, "kg"),
  29878. name: "Front-dressed",
  29879. image: {
  29880. source: "./media/characters/irbisgreif/front-dressed.svg",
  29881. extra: 902/776,
  29882. bottom: 14/916
  29883. }
  29884. },
  29885. sideDressed: {
  29886. height: math.unit(195, "cm"),
  29887. weight: math.unit(102, "kg"),
  29888. name: "Side-dressed",
  29889. image: {
  29890. source: "./media/characters/irbisgreif/side-dressed.svg",
  29891. extra: 788/688,
  29892. bottom: 21/809
  29893. }
  29894. },
  29895. backDressed: {
  29896. height: math.unit(216, "cm"),
  29897. weight: math.unit(102, "kg"),
  29898. name: "Back-dressed",
  29899. image: {
  29900. source: "./media/characters/irbisgreif/back-dressed.svg",
  29901. extra: 901/783,
  29902. bottom: 10/911
  29903. }
  29904. },
  29905. dick: {
  29906. height: math.unit(0.49, "feet"),
  29907. name: "Dick",
  29908. image: {
  29909. source: "./media/characters/irbisgreif/dick.svg"
  29910. }
  29911. },
  29912. wingTop: {
  29913. height: math.unit(1.93 , "feet"),
  29914. name: "Wing-top",
  29915. image: {
  29916. source: "./media/characters/irbisgreif/wing-top.svg"
  29917. }
  29918. },
  29919. wingBottom: {
  29920. height: math.unit(1.93 , "feet"),
  29921. name: "Wing-bottom",
  29922. image: {
  29923. source: "./media/characters/irbisgreif/wing-bottom.svg"
  29924. }
  29925. },
  29926. },
  29927. [
  29928. {
  29929. name: "Normal",
  29930. height: math.unit(216, "cm"),
  29931. default: true
  29932. },
  29933. ]
  29934. ))
  29935. characterMakers.push(() => makeCharacter(
  29936. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  29937. {
  29938. front: {
  29939. height: math.unit(6, "feet"),
  29940. weight: math.unit(150, "lb"),
  29941. name: "Front",
  29942. image: {
  29943. source: "./media/characters/pride/front.svg",
  29944. extra: 1299/1230,
  29945. bottom: 18/1317
  29946. }
  29947. },
  29948. },
  29949. [
  29950. {
  29951. name: "Normal",
  29952. height: math.unit(7, "feet")
  29953. },
  29954. {
  29955. name: "Mini-macro",
  29956. height: math.unit(11, "feet")
  29957. },
  29958. {
  29959. name: "Macro",
  29960. height: math.unit(15, "meters"),
  29961. default: true
  29962. },
  29963. {
  29964. name: "Macro+",
  29965. height: math.unit(40, "meters")
  29966. },
  29967. ]
  29968. ))
  29969. characterMakers.push(() => makeCharacter(
  29970. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  29971. {
  29972. front: {
  29973. height: math.unit(4 + 2 / 12, "feet"),
  29974. weight: math.unit(95, "lb"),
  29975. name: "Front",
  29976. image: {
  29977. source: "./media/characters/vaelophis-nyx/front.svg",
  29978. extra: 2532/2330,
  29979. bottom: 0/2532
  29980. }
  29981. },
  29982. back: {
  29983. height: math.unit(4 + 2 / 12, "feet"),
  29984. weight: math.unit(95, "lb"),
  29985. name: "Back",
  29986. image: {
  29987. source: "./media/characters/vaelophis-nyx/back.svg",
  29988. extra: 2484/2361,
  29989. bottom: 0/2484
  29990. }
  29991. },
  29992. feralSide: {
  29993. height: math.unit(2 + 1/12, "feet"),
  29994. weight: math.unit(20, "lb"),
  29995. name: "Feral (Side)",
  29996. image: {
  29997. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  29998. extra: 1721/1581,
  29999. bottom: 70/1791
  30000. }
  30001. },
  30002. feralLazing: {
  30003. height: math.unit(1.08, "feet"),
  30004. weight: math.unit(20, "lb"),
  30005. name: "Feral (Lazing)",
  30006. image: {
  30007. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30008. extra: 822/822,
  30009. bottom: 248/1070
  30010. }
  30011. },
  30012. ear: {
  30013. height: math.unit(0.416, "feet"),
  30014. name: "Ear",
  30015. image: {
  30016. source: "./media/characters/vaelophis-nyx/ear.svg"
  30017. }
  30018. },
  30019. eye: {
  30020. height: math.unit(0.0748, "feet"),
  30021. name: "Eye",
  30022. image: {
  30023. source: "./media/characters/vaelophis-nyx/eye.svg"
  30024. }
  30025. },
  30026. mouth: {
  30027. height: math.unit(0.378, "feet"),
  30028. name: "Mouth",
  30029. image: {
  30030. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30031. }
  30032. },
  30033. spade: {
  30034. height: math.unit(0.55, "feet"),
  30035. name: "Spade",
  30036. image: {
  30037. source: "./media/characters/vaelophis-nyx/spade.svg"
  30038. }
  30039. },
  30040. },
  30041. [
  30042. {
  30043. name: "Normal",
  30044. height: math.unit(4 + 2/12, "feet"),
  30045. default: true
  30046. },
  30047. ]
  30048. ))
  30049. characterMakers.push(() => makeCharacter(
  30050. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30051. {
  30052. front: {
  30053. height: math.unit(7, "feet"),
  30054. weight: math.unit(231, "lb"),
  30055. name: "Front",
  30056. image: {
  30057. source: "./media/characters/flux/front.svg",
  30058. extra: 919/871,
  30059. bottom: 0/919
  30060. }
  30061. },
  30062. back: {
  30063. height: math.unit(7, "feet"),
  30064. weight: math.unit(231, "lb"),
  30065. name: "Back",
  30066. image: {
  30067. source: "./media/characters/flux/back.svg",
  30068. extra: 1040/992,
  30069. bottom: 0/1040
  30070. }
  30071. },
  30072. frontDressed: {
  30073. height: math.unit(7, "feet"),
  30074. weight: math.unit(231, "lb"),
  30075. name: "Front (Dressed)",
  30076. image: {
  30077. source: "./media/characters/flux/front-dressed.svg",
  30078. extra: 919/871,
  30079. bottom: 0/919
  30080. }
  30081. },
  30082. feralSide: {
  30083. height: math.unit(5, "feet"),
  30084. weight: math.unit(150, "lb"),
  30085. name: "Feral (Side)",
  30086. image: {
  30087. source: "./media/characters/flux/feral-side.svg",
  30088. extra: 598/528,
  30089. bottom: 28/626
  30090. }
  30091. },
  30092. head: {
  30093. height: math.unit(1.585, "feet"),
  30094. name: "Head",
  30095. image: {
  30096. source: "./media/characters/flux/head.svg"
  30097. }
  30098. },
  30099. headSide: {
  30100. height: math.unit(1.74, "feet"),
  30101. name: "Head (Side)",
  30102. image: {
  30103. source: "./media/characters/flux/head-side.svg"
  30104. }
  30105. },
  30106. headSideFire: {
  30107. height: math.unit(1.76, "feet"),
  30108. name: "Head (Side, Fire)",
  30109. image: {
  30110. source: "./media/characters/flux/head-side-fire.svg"
  30111. }
  30112. },
  30113. },
  30114. [
  30115. {
  30116. name: "Normal",
  30117. height: math.unit(7, "feet"),
  30118. default: true
  30119. },
  30120. ]
  30121. ))
  30122. characterMakers.push(() => makeCharacter(
  30123. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30124. {
  30125. front: {
  30126. height: math.unit(9, "feet"),
  30127. weight: math.unit(1012, "lb"),
  30128. name: "Front",
  30129. image: {
  30130. source: "./media/characters/ulfra-lupae/front.svg",
  30131. extra: 1083/1011,
  30132. bottom: 67/1150
  30133. }
  30134. },
  30135. },
  30136. [
  30137. {
  30138. name: "Micro",
  30139. height: math.unit(6, "inches")
  30140. },
  30141. {
  30142. name: "Socializing",
  30143. height: math.unit(6 + 5/12, "feet")
  30144. },
  30145. {
  30146. name: "Normal",
  30147. height: math.unit(9, "feet"),
  30148. default: true
  30149. },
  30150. {
  30151. name: "Macro",
  30152. height: math.unit(150, "feet")
  30153. },
  30154. ]
  30155. ))
  30156. characterMakers.push(() => makeCharacter(
  30157. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30158. {
  30159. front: {
  30160. height: math.unit(5 + 2/12, "feet"),
  30161. weight: math.unit(120, "lb"),
  30162. name: "Front",
  30163. image: {
  30164. source: "./media/characters/timber/front.svg",
  30165. extra: 2814/2705,
  30166. bottom: 181/2995
  30167. }
  30168. },
  30169. },
  30170. [
  30171. {
  30172. name: "Normal",
  30173. height: math.unit(5 + 2/12, "feet"),
  30174. default: true
  30175. },
  30176. ]
  30177. ))
  30178. characterMakers.push(() => makeCharacter(
  30179. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30180. {
  30181. front: {
  30182. height: math.unit(5 + 7/12, "feet"),
  30183. weight: math.unit(220, "lb"),
  30184. name: "Front",
  30185. image: {
  30186. source: "./media/characters/nicki/front.svg",
  30187. extra: 453/419,
  30188. bottom: 7/460
  30189. }
  30190. },
  30191. frontAlt: {
  30192. height: math.unit(5 + 7/12, "feet"),
  30193. weight: math.unit(220, "lb"),
  30194. name: "Front-alt",
  30195. image: {
  30196. source: "./media/characters/nicki/front-alt.svg",
  30197. extra: 435/411,
  30198. bottom: 12/447
  30199. }
  30200. },
  30201. back: {
  30202. height: math.unit(5 + 7/12, "feet"),
  30203. weight: math.unit(220, "lb"),
  30204. name: "Back",
  30205. image: {
  30206. source: "./media/characters/nicki/back.svg",
  30207. extra: 440/413,
  30208. bottom: 19/459
  30209. }
  30210. },
  30211. frontNsfw: {
  30212. height: math.unit(5 + 7/12, "feet"),
  30213. weight: math.unit(220, "lb"),
  30214. name: "Front (NSFW)",
  30215. image: {
  30216. source: "./media/characters/nicki/front-nsfw.svg",
  30217. extra: 453/419,
  30218. bottom: 7/460
  30219. }
  30220. },
  30221. frontNsfwAlt: {
  30222. height: math.unit(5 + 7/12, "feet"),
  30223. weight: math.unit(220, "lb"),
  30224. name: "Front (Alt, NSFW)",
  30225. image: {
  30226. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30227. extra: 435/411,
  30228. bottom: 12/447
  30229. }
  30230. },
  30231. backNsfw: {
  30232. height: math.unit(5 + 7/12, "feet"),
  30233. weight: math.unit(220, "lb"),
  30234. name: "Back (NSFW)",
  30235. image: {
  30236. source: "./media/characters/nicki/back-nsfw.svg",
  30237. extra: 440/413,
  30238. bottom: 19/459
  30239. }
  30240. },
  30241. head: {
  30242. height: math.unit(2.1, "feet"),
  30243. name: "Head",
  30244. image: {
  30245. source: "./media/characters/nicki/head.svg"
  30246. }
  30247. },
  30248. paw: {
  30249. height: math.unit(1.88, "feet"),
  30250. name: "Paw",
  30251. image: {
  30252. source: "./media/characters/nicki/paw.svg"
  30253. }
  30254. },
  30255. },
  30256. [
  30257. {
  30258. name: "Normal",
  30259. height: math.unit(5 + 7/12, "feet"),
  30260. default: true
  30261. },
  30262. ]
  30263. ))
  30264. characterMakers.push(() => makeCharacter(
  30265. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30266. {
  30267. front: {
  30268. height: math.unit(7 + 10/12, "feet"),
  30269. weight: math.unit(3.5, "tons"),
  30270. name: "Front",
  30271. image: {
  30272. source: "./media/characters/lee/front.svg",
  30273. extra: 1773/1615,
  30274. bottom: 86/1859
  30275. }
  30276. },
  30277. hand: {
  30278. height: math.unit(1.78, "feet"),
  30279. name: "Hand",
  30280. image: {
  30281. source: "./media/characters/lee/hand.svg"
  30282. }
  30283. },
  30284. maw: {
  30285. height: math.unit(1.18, "feet"),
  30286. name: "Maw",
  30287. image: {
  30288. source: "./media/characters/lee/maw.svg"
  30289. }
  30290. },
  30291. },
  30292. [
  30293. {
  30294. name: "Normal",
  30295. height: math.unit(7 + 10/12, "feet"),
  30296. default: true
  30297. },
  30298. ]
  30299. ))
  30300. characterMakers.push(() => makeCharacter(
  30301. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30302. {
  30303. front: {
  30304. height: math.unit(9, "feet"),
  30305. name: "Front",
  30306. image: {
  30307. source: "./media/characters/guti/front.svg",
  30308. extra: 4551/4355,
  30309. bottom: 123/4674
  30310. }
  30311. },
  30312. tongue: {
  30313. height: math.unit(1, "feet"),
  30314. name: "Tongue",
  30315. image: {
  30316. source: "./media/characters/guti/tongue.svg"
  30317. }
  30318. },
  30319. paw: {
  30320. height: math.unit(1.18, "feet"),
  30321. name: "Paw",
  30322. image: {
  30323. source: "./media/characters/guti/paw.svg"
  30324. }
  30325. },
  30326. },
  30327. [
  30328. {
  30329. name: "Normal",
  30330. height: math.unit(9, "feet"),
  30331. default: true
  30332. },
  30333. ]
  30334. ))
  30335. characterMakers.push(() => makeCharacter(
  30336. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30337. {
  30338. side: {
  30339. height: math.unit(5, "meters"),
  30340. name: "Side",
  30341. image: {
  30342. source: "./media/characters/vesper/side.svg",
  30343. extra: 1605/1518,
  30344. bottom: 0/1605
  30345. }
  30346. },
  30347. },
  30348. [
  30349. {
  30350. name: "Small",
  30351. height: math.unit(5, "meters")
  30352. },
  30353. {
  30354. name: "Sage",
  30355. height: math.unit(100, "meters"),
  30356. default: true
  30357. },
  30358. {
  30359. name: "Fun Size",
  30360. height: math.unit(600, "meters")
  30361. },
  30362. {
  30363. name: "Goddess",
  30364. height: math.unit(20000, "km")
  30365. },
  30366. {
  30367. name: "Maximum",
  30368. height: math.unit(5, "galaxies")
  30369. },
  30370. ]
  30371. ))
  30372. characterMakers.push(() => makeCharacter(
  30373. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30374. {
  30375. front: {
  30376. height: math.unit(6 + 3/12, "feet"),
  30377. weight: math.unit(190, "lb"),
  30378. name: "Front",
  30379. image: {
  30380. source: "./media/characters/gawain/front.svg",
  30381. extra: 2222/2139,
  30382. bottom: 90/2312
  30383. }
  30384. },
  30385. back: {
  30386. height: math.unit(6 + 3/12, "feet"),
  30387. weight: math.unit(190, "lb"),
  30388. name: "Back",
  30389. image: {
  30390. source: "./media/characters/gawain/back.svg",
  30391. extra: 2199/2111,
  30392. bottom: 73/2272
  30393. }
  30394. },
  30395. },
  30396. [
  30397. {
  30398. name: "Normal",
  30399. height: math.unit(6 + 3/12, "feet"),
  30400. default: true
  30401. },
  30402. ]
  30403. ))
  30404. characterMakers.push(() => makeCharacter(
  30405. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30406. {
  30407. side: {
  30408. height: math.unit(3.5, "meters"),
  30409. weight: math.unit(16000, "lb"),
  30410. name: "Side",
  30411. image: {
  30412. source: "./media/characters/dascalti/side.svg",
  30413. extra: 392/273,
  30414. bottom: 47/439
  30415. }
  30416. },
  30417. breath: {
  30418. height: math.unit(7.4, "feet"),
  30419. name: "Breath",
  30420. image: {
  30421. source: "./media/characters/dascalti/breath.svg"
  30422. }
  30423. },
  30424. fed: {
  30425. height: math.unit(3.6, "meters"),
  30426. weight: math.unit(16000, "lb"),
  30427. name: "Fed",
  30428. image: {
  30429. source: "./media/characters/dascalti/fed.svg",
  30430. extra: 1419/820,
  30431. bottom: 95/1514
  30432. }
  30433. },
  30434. },
  30435. [
  30436. {
  30437. name: "Normal",
  30438. height: math.unit(3.5, "meters"),
  30439. default: true
  30440. },
  30441. ]
  30442. ))
  30443. characterMakers.push(() => makeCharacter(
  30444. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30445. {
  30446. front: {
  30447. height: math.unit(3 + 5/12, "feet"),
  30448. name: "Front",
  30449. image: {
  30450. source: "./media/characters/mauve/front.svg",
  30451. extra: 1126/1033,
  30452. bottom: 65/1191
  30453. }
  30454. },
  30455. side: {
  30456. height: math.unit(3 + 5/12, "feet"),
  30457. name: "Side",
  30458. image: {
  30459. source: "./media/characters/mauve/side.svg",
  30460. extra: 1089/1001,
  30461. bottom: 29/1118
  30462. }
  30463. },
  30464. back: {
  30465. height: math.unit(3 + 5/12, "feet"),
  30466. name: "Back",
  30467. image: {
  30468. source: "./media/characters/mauve/back.svg",
  30469. extra: 1173/1053,
  30470. bottom: 109/1282
  30471. }
  30472. },
  30473. },
  30474. [
  30475. {
  30476. name: "Normal",
  30477. height: math.unit(3 + 5/12, "feet"),
  30478. default: true
  30479. },
  30480. ]
  30481. ))
  30482. characterMakers.push(() => makeCharacter(
  30483. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30484. {
  30485. front: {
  30486. height: math.unit(6 + 3/12, "feet"),
  30487. weight: math.unit(430, "lb"),
  30488. name: "Front",
  30489. image: {
  30490. source: "./media/characters/carlos/front.svg",
  30491. extra: 1964/1913,
  30492. bottom: 70/2034
  30493. }
  30494. },
  30495. },
  30496. [
  30497. {
  30498. name: "Normal",
  30499. height: math.unit(6 + 3/12, "feet"),
  30500. default: true
  30501. },
  30502. ]
  30503. ))
  30504. characterMakers.push(() => makeCharacter(
  30505. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30506. {
  30507. back: {
  30508. height: math.unit(5 + 10/12, "feet"),
  30509. weight: math.unit(200, "lb"),
  30510. name: "Back",
  30511. image: {
  30512. source: "./media/characters/jax/back.svg",
  30513. extra: 764/739,
  30514. bottom: 25/789
  30515. }
  30516. },
  30517. },
  30518. [
  30519. {
  30520. name: "Normal",
  30521. height: math.unit(5 + 10/12, "feet"),
  30522. default: true
  30523. },
  30524. ]
  30525. ))
  30526. characterMakers.push(() => makeCharacter(
  30527. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30528. {
  30529. front: {
  30530. height: math.unit(8, "feet"),
  30531. weight: math.unit(250, "lb"),
  30532. name: "Front",
  30533. image: {
  30534. source: "./media/characters/eikthynir/front.svg",
  30535. extra: 1332/1166,
  30536. bottom: 82/1414
  30537. }
  30538. },
  30539. back: {
  30540. height: math.unit(8, "feet"),
  30541. weight: math.unit(250, "lb"),
  30542. name: "Back",
  30543. image: {
  30544. source: "./media/characters/eikthynir/back.svg",
  30545. extra: 1342/1190,
  30546. bottom: 19/1361
  30547. }
  30548. },
  30549. dick: {
  30550. height: math.unit(2.35, "feet"),
  30551. name: "Dick",
  30552. image: {
  30553. source: "./media/characters/eikthynir/dick.svg"
  30554. }
  30555. },
  30556. },
  30557. [
  30558. {
  30559. name: "Normal",
  30560. height: math.unit(8, "feet"),
  30561. default: true
  30562. },
  30563. ]
  30564. ))
  30565. characterMakers.push(() => makeCharacter(
  30566. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30567. {
  30568. front: {
  30569. height: math.unit(99, "meters"),
  30570. weight: math.unit(13000, "tons"),
  30571. name: "Front",
  30572. image: {
  30573. source: "./media/characters/zlmos/front.svg",
  30574. extra: 2202/1992,
  30575. bottom: 315/2517
  30576. }
  30577. },
  30578. },
  30579. [
  30580. {
  30581. name: "Macro",
  30582. height: math.unit(99, "meters"),
  30583. default: true
  30584. },
  30585. ]
  30586. ))
  30587. characterMakers.push(() => makeCharacter(
  30588. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30589. {
  30590. front: {
  30591. height: math.unit(6 + 5/12, "feet"),
  30592. name: "Front",
  30593. image: {
  30594. source: "./media/characters/purri/front.svg",
  30595. extra: 1698/1610,
  30596. bottom: 32/1730
  30597. }
  30598. },
  30599. frontAlt: {
  30600. height: math.unit(6 + 5/12, "feet"),
  30601. name: "Front (Alt)",
  30602. image: {
  30603. source: "./media/characters/purri/front-alt.svg",
  30604. extra: 450/420,
  30605. bottom: 26/476
  30606. }
  30607. },
  30608. boots: {
  30609. height: math.unit(5.5, "feet"),
  30610. name: "Boots",
  30611. image: {
  30612. source: "./media/characters/purri/boots.svg",
  30613. extra: 905/853,
  30614. bottom: 18/923
  30615. }
  30616. },
  30617. lying: {
  30618. height: math.unit(2, "feet"),
  30619. name: "Lying",
  30620. image: {
  30621. source: "./media/characters/purri/lying.svg",
  30622. extra: 940/843,
  30623. bottom: 146/1086
  30624. }
  30625. },
  30626. devious: {
  30627. height: math.unit(1.77, "feet"),
  30628. name: "Devious",
  30629. image: {
  30630. source: "./media/characters/purri/devious.svg",
  30631. extra: 1440/1155,
  30632. bottom: 147/1587
  30633. }
  30634. },
  30635. bean: {
  30636. height: math.unit(1.94, "feet"),
  30637. name: "Bean",
  30638. image: {
  30639. source: "./media/characters/purri/bean.svg"
  30640. }
  30641. },
  30642. },
  30643. [
  30644. {
  30645. name: "Micro",
  30646. height: math.unit(1, "mm")
  30647. },
  30648. {
  30649. name: "Normal",
  30650. height: math.unit(6 + 5/12, "feet"),
  30651. default: true
  30652. },
  30653. {
  30654. name: "Macro :3c",
  30655. height: math.unit(2, "miles")
  30656. },
  30657. ]
  30658. ))
  30659. characterMakers.push(() => makeCharacter(
  30660. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  30661. {
  30662. front: {
  30663. height: math.unit(6 + 2/12, "feet"),
  30664. weight: math.unit(250, "lb"),
  30665. name: "Front",
  30666. image: {
  30667. source: "./media/characters/moonlight/front.svg",
  30668. extra: 1044/908,
  30669. bottom: 56/1100
  30670. }
  30671. },
  30672. paw: {
  30673. height: math.unit(1, "feet"),
  30674. name: "Paw",
  30675. image: {
  30676. source: "./media/characters/moonlight/paw.svg"
  30677. }
  30678. },
  30679. paws: {
  30680. height: math.unit(0.98, "feet"),
  30681. name: "Paws",
  30682. image: {
  30683. source: "./media/characters/moonlight/paws.svg",
  30684. extra: 939/939,
  30685. bottom: 50/989
  30686. }
  30687. },
  30688. mouth: {
  30689. height: math.unit(0.48, "feet"),
  30690. name: "Mouth",
  30691. image: {
  30692. source: "./media/characters/moonlight/mouth.svg"
  30693. }
  30694. },
  30695. },
  30696. [
  30697. {
  30698. name: "Normal",
  30699. height: math.unit(6 + 2/12, "feet"),
  30700. default: true
  30701. },
  30702. {
  30703. name: "Macro",
  30704. height: math.unit(300, "feet")
  30705. },
  30706. {
  30707. name: "Macro+",
  30708. height: math.unit(1, "mile")
  30709. },
  30710. {
  30711. name: "Mt. Moon",
  30712. height: math.unit(5, "miles")
  30713. },
  30714. {
  30715. name: "Megamacro",
  30716. height: math.unit(15, "miles")
  30717. },
  30718. ]
  30719. ))
  30720. characterMakers.push(() => makeCharacter(
  30721. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  30722. {
  30723. back: {
  30724. height: math.unit(6, "feet"),
  30725. weight: math.unit(150, "lb"),
  30726. name: "Back",
  30727. image: {
  30728. source: "./media/characters/sylen/back.svg",
  30729. extra: 1335/1273,
  30730. bottom: 107/1442
  30731. }
  30732. },
  30733. },
  30734. [
  30735. {
  30736. name: "Normal",
  30737. height: math.unit(5 + 5/12, "feet")
  30738. },
  30739. {
  30740. name: "Megamacro",
  30741. height: math.unit(3, "miles"),
  30742. default: true
  30743. },
  30744. ]
  30745. ))
  30746. characterMakers.push(() => makeCharacter(
  30747. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  30748. {
  30749. front: {
  30750. height: math.unit(6, "feet"),
  30751. weight: math.unit(190, "lb"),
  30752. name: "Front",
  30753. image: {
  30754. source: "./media/characters/huttser/front.svg",
  30755. extra: 1152/1058,
  30756. bottom: 23/1175
  30757. }
  30758. },
  30759. side: {
  30760. height: math.unit(6, "feet"),
  30761. weight: math.unit(190, "lb"),
  30762. name: "Side",
  30763. image: {
  30764. source: "./media/characters/huttser/side.svg",
  30765. extra: 1174/1065,
  30766. bottom: 18/1192
  30767. }
  30768. },
  30769. back: {
  30770. height: math.unit(6, "feet"),
  30771. weight: math.unit(190, "lb"),
  30772. name: "Back",
  30773. image: {
  30774. source: "./media/characters/huttser/back.svg",
  30775. extra: 1158/1056,
  30776. bottom: 12/1170
  30777. }
  30778. },
  30779. },
  30780. [
  30781. ]
  30782. ))
  30783. characterMakers.push(() => makeCharacter(
  30784. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  30785. {
  30786. side: {
  30787. height: math.unit(12 + 9/12, "feet"),
  30788. weight: math.unit(15000, "lb"),
  30789. name: "Side",
  30790. image: {
  30791. source: "./media/characters/faan/side.svg",
  30792. extra: 2747/2697,
  30793. bottom: 0/2747
  30794. }
  30795. },
  30796. front: {
  30797. height: math.unit(12 + 9/12, "feet"),
  30798. weight: math.unit(15000, "lb"),
  30799. name: "Front",
  30800. image: {
  30801. source: "./media/characters/faan/front.svg",
  30802. extra: 607/571,
  30803. bottom: 24/631
  30804. }
  30805. },
  30806. head: {
  30807. height: math.unit(2.85, "feet"),
  30808. name: "Head",
  30809. image: {
  30810. source: "./media/characters/faan/head.svg"
  30811. }
  30812. },
  30813. headAlt: {
  30814. height: math.unit(3.13, "feet"),
  30815. name: "Head-alt",
  30816. image: {
  30817. source: "./media/characters/faan/head-alt.svg"
  30818. }
  30819. },
  30820. },
  30821. [
  30822. {
  30823. name: "Normal",
  30824. height: math.unit(12 + 9/12, "feet"),
  30825. default: true
  30826. },
  30827. ]
  30828. ))
  30829. characterMakers.push(() => makeCharacter(
  30830. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  30831. {
  30832. front: {
  30833. height: math.unit(6, "feet"),
  30834. weight: math.unit(300, "lb"),
  30835. name: "Front",
  30836. image: {
  30837. source: "./media/characters/tanio/front.svg",
  30838. extra: 711/673,
  30839. bottom: 25/736
  30840. }
  30841. },
  30842. },
  30843. [
  30844. {
  30845. name: "Normal",
  30846. height: math.unit(6, "feet"),
  30847. default: true
  30848. },
  30849. ]
  30850. ))
  30851. characterMakers.push(() => makeCharacter(
  30852. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  30853. {
  30854. front: {
  30855. height: math.unit(3, "inches"),
  30856. name: "Front",
  30857. image: {
  30858. source: "./media/characters/noboru/front.svg",
  30859. extra: 1039/932,
  30860. bottom: 18/1057
  30861. }
  30862. },
  30863. },
  30864. [
  30865. {
  30866. name: "Micro",
  30867. height: math.unit(3, "inches"),
  30868. default: true
  30869. },
  30870. ]
  30871. ))
  30872. //characters
  30873. function makeCharacters() {
  30874. const results = [];
  30875. characterMakers.forEach(character => {
  30876. results.push(character());
  30877. });
  30878. return results;
  30879. }