less copy protection, more size visualization
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 

31826 řádky
798 KiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.capacity) {
  29. views[key].attributes.capacity = {
  30. name: "Capacity",
  31. power: 3,
  32. type: "volume",
  33. base: value.capacity
  34. }
  35. }
  36. });
  37. return createEntityMaker(info, views, defaultSizes);
  38. }
  39. const speciesData = {
  40. animal: {
  41. name: "Animal"
  42. },
  43. dog: {
  44. name: "Dog",
  45. parents: [
  46. "canine"
  47. ]
  48. },
  49. canine: {
  50. name: "Canine",
  51. parents: [
  52. "mammal"
  53. ]
  54. },
  55. crux: {
  56. name: "Crux",
  57. parents: [
  58. "mammal"
  59. ]
  60. },
  61. mammal: {
  62. name: "Mammal",
  63. parents: [
  64. "animal"
  65. ]
  66. },
  67. "rough-collie": {
  68. name: "Rough Collie",
  69. parents: [
  70. "dog"
  71. ]
  72. },
  73. dragon: {
  74. name: "Dragon",
  75. parents: [
  76. "reptile"
  77. ]
  78. },
  79. reptile: {
  80. name: "Reptile",
  81. parents: [
  82. "animal"
  83. ]
  84. },
  85. woodpecker: {
  86. name: "Woodpecker",
  87. parents: [
  88. "avian"
  89. ]
  90. },
  91. avian: {
  92. name: "Avian",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. kitsune: {
  98. name: "Kitsune",
  99. parents: [
  100. "fox"
  101. ]
  102. },
  103. fox: {
  104. name: "Fox",
  105. parents: [
  106. "mammal"
  107. ]
  108. },
  109. pokemon: {
  110. name: "Pokemon"
  111. },
  112. tiger: {
  113. name: "Tiger",
  114. parents: [
  115. "cat"
  116. ]
  117. },
  118. cat: {
  119. name: "Cat",
  120. parents: [
  121. "mammal"
  122. ]
  123. },
  124. "blue-jay": {
  125. name: "Blue Jay",
  126. parents: [
  127. "avian"
  128. ]
  129. },
  130. wolf: {
  131. name: "Wolf",
  132. parents: [
  133. "mammal"
  134. ]
  135. },
  136. coyote: {
  137. name: "Coyote",
  138. parents: [
  139. "mammal"
  140. ]
  141. },
  142. raccoon: {
  143. name: "Raccoon",
  144. parents: [
  145. "mammal"
  146. ]
  147. },
  148. weasel: {
  149. name: "Weasel",
  150. parents: [
  151. "mammal"
  152. ]
  153. },
  154. "red-panda": {
  155. name: "Red Panda",
  156. parents: [
  157. "mammal"
  158. ]
  159. },
  160. dolphin: {
  161. name: "Dolphin",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. "african-wild-dog": {
  167. name: "African Wild Dog",
  168. parents: [
  169. "canine"
  170. ]
  171. },
  172. "hyena": {
  173. name: "Hyena",
  174. parents: [
  175. "canine"
  176. ]
  177. },
  178. "carbuncle": {
  179. name: "Carbuncle",
  180. parents: [
  181. "animal"
  182. ]
  183. },
  184. bat: {
  185. name: "Bat",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. "leaf-nosed-bat": {
  191. name: "Leaf-Nosed Bat",
  192. parents: [
  193. "bat"
  194. ]
  195. },
  196. "fish": {
  197. name: "Fish",
  198. parents: [
  199. "animal"
  200. ]
  201. },
  202. "ram": {
  203. name: "Ram",
  204. parents: [
  205. "mammal"
  206. ]
  207. },
  208. "demon": {
  209. name: "Demon"
  210. },
  211. "cougar": {
  212. name: "Cougar",
  213. parents: [
  214. "cat"
  215. ]
  216. },
  217. "goat": {
  218. name: "Goat",
  219. parents: [
  220. "mammal"
  221. ]
  222. },
  223. "lion": {
  224. name: "Lion",
  225. parents: [
  226. "cat"
  227. ]
  228. },
  229. "harpy-eager": {
  230. name: "Harpy Eagle",
  231. parents: [
  232. "avian"
  233. ]
  234. },
  235. "deer": {
  236. name: "Deer",
  237. parents: [
  238. "mammal"
  239. ]
  240. },
  241. "phoenix": {
  242. name: "Phoenix",
  243. parents: [
  244. "avian"
  245. ]
  246. },
  247. "aeromorph": {
  248. name: "Aeromorph",
  249. parents: [
  250. "machine"
  251. ]
  252. },
  253. "machine": {
  254. name: "Machine",
  255. },
  256. "android": {
  257. name: "Android",
  258. parents: [
  259. "machine"
  260. ]
  261. },
  262. "jackal": {
  263. name: "Jackal",
  264. parents: [
  265. "canine"
  266. ]
  267. },
  268. "corvid": {
  269. name: "Corvid",
  270. parents: [
  271. "avian"
  272. ]
  273. },
  274. "pharaoh-hound": {
  275. name: "Pharaoh Hound",
  276. parents: [
  277. "dog"
  278. ]
  279. },
  280. "skunk": {
  281. name: "Skunk",
  282. parents: [
  283. "mammal"
  284. ]
  285. },
  286. "shark": {
  287. name: "Shark",
  288. parents: [
  289. "fish"
  290. ]
  291. },
  292. "black-panther": {
  293. name: "Black Panther",
  294. parents: [
  295. "cat"
  296. ]
  297. },
  298. "umbra": {
  299. name: "Umbra",
  300. parents: [
  301. "animal"
  302. ]
  303. },
  304. "raven": {
  305. name: "Raven",
  306. parents: [
  307. "corvid"
  308. ]
  309. },
  310. "snow-leopard": {
  311. name: "Snow Leopard",
  312. parents: [
  313. "cat"
  314. ]
  315. },
  316. "barbary-lion": {
  317. name: "Barbary Lion",
  318. parents: [
  319. "lion"
  320. ]
  321. },
  322. "dra'gal": {
  323. name: "Dra'Gal",
  324. parents: [
  325. "mammal"
  326. ]
  327. },
  328. "german-shepherd": {
  329. name: "German Shepherd",
  330. parents: [
  331. "dog"
  332. ]
  333. },
  334. "bayleef": {
  335. name: "Bayleef",
  336. parents: [
  337. "pokemon"
  338. ]
  339. },
  340. "mouse": {
  341. name: "Mouse",
  342. parents: [
  343. "rodent"
  344. ]
  345. },
  346. "rat": {
  347. name: "Rat",
  348. parents: [
  349. "mammal"
  350. ]
  351. },
  352. "hoshiko-beast": {
  353. name: "Hoshiko Beast",
  354. parents: ["animal"]
  355. },
  356. "snow-jugani": {
  357. name: "Snow Jugani",
  358. parents: ["cat"]
  359. },
  360. "patamon": {
  361. name: "Patamon",
  362. parents: ["digimon"]
  363. },
  364. "digimon": {
  365. name: "Digimon",
  366. },
  367. "jugani": {
  368. name: "Jugani",
  369. parents: ["cat"]
  370. },
  371. "luxray": {
  372. name: "Luxray",
  373. parents: ["pokemon"]
  374. },
  375. "mech": {
  376. name: "Mech",
  377. parents: ["machine"]
  378. },
  379. "zoid": {
  380. name: "Zoid",
  381. parents: ["mech"]
  382. },
  383. "monster": {
  384. name: "Monster",
  385. parents: ["animal"]
  386. },
  387. "foo-dog": {
  388. name: "Foo Dog",
  389. parents: ["mammal"]
  390. },
  391. "elephant": {
  392. name: "Elephant",
  393. parents: ["mammal"]
  394. },
  395. "eagle": {
  396. name: "Eagle",
  397. parents: ["avian"]
  398. },
  399. "cow": {
  400. name: "Cow",
  401. parents: ["mammal"]
  402. },
  403. "crocodile": {
  404. name: "Crocodile",
  405. parents: ["reptile"]
  406. },
  407. "borzoi": {
  408. name: "Borzoi",
  409. parents: ["dog"]
  410. },
  411. "snake": {
  412. name: "Snake",
  413. parents: ["reptile"]
  414. },
  415. "horned-bush-viper": {
  416. name: "Horned Bush Viper",
  417. parents: ["snake"]
  418. },
  419. "cobra": {
  420. name: "Cobra",
  421. parents: ["snake"]
  422. },
  423. "harpy-eagle": {
  424. name: "Harpy Eagle",
  425. parents: ["eagle"]
  426. },
  427. "raptor": {
  428. name: "Raptor",
  429. parents: ["dinosaur"]
  430. },
  431. "dinosaur": {
  432. name: "Dinosaur",
  433. parents: ["reptile"]
  434. },
  435. "veilhound": {
  436. name: "Veilhound",
  437. parents: ["hellhound", "demon"]
  438. },
  439. "hellhound": {
  440. name: "Hellhound",
  441. parents: ["canine"]
  442. },
  443. "insect": {
  444. name: "Insect",
  445. parents: ["animal"]
  446. },
  447. "beetle": {
  448. name: "Beetle",
  449. parents: ["insect"]
  450. },
  451. "moth": {
  452. name: "Moth",
  453. parents: ["insect"]
  454. },
  455. "eastern-dragon": {
  456. name: "Eastern Dragon",
  457. parents: ["dragon"]
  458. },
  459. "jaguar": {
  460. name: "Jaguar",
  461. parents: ["cat"]
  462. },
  463. "horse": {
  464. name: "Horse",
  465. parents: ["mammal"]
  466. },
  467. "sergal": {
  468. name: "Sergal",
  469. parents: ["mammal"]
  470. },
  471. "gryphon": {
  472. name: "Gryphon",
  473. parents: ["lion", "eagle"]
  474. },
  475. "robot": {
  476. name: "Robot",
  477. parents: ["machine"]
  478. },
  479. "medihound": {
  480. name: "Medihound",
  481. parents: ["robot", "dog"]
  482. },
  483. "sylveon": {
  484. name: "Sylveon",
  485. parents: ["pokemon"]
  486. },
  487. "catgirl": {
  488. name: "Catgirl",
  489. parents: ["mammal"]
  490. },
  491. "cowgirl": {
  492. name: "Cowgirl",
  493. parents: ["mammal"]
  494. },
  495. "pony": {
  496. name: "Pony",
  497. parents: ["horse"]
  498. },
  499. "rabbit": {
  500. name: "Rabbit",
  501. parents: ["mammal"]
  502. },
  503. "fennec-fox": {
  504. name: "Fennec Fox",
  505. parents: ["fox"]
  506. },
  507. "azodian": {
  508. name: "Azodian",
  509. parents: ["mouse"]
  510. },
  511. "shiba-inu": {
  512. name: "Shiba Inu",
  513. parents: ["dog"]
  514. },
  515. "changeling": {
  516. name: "Changeling",
  517. parents: ["insect"]
  518. },
  519. "cheetah": {
  520. name: "Cheetah",
  521. parents: ["cat"]
  522. },
  523. "golden-jackal": {
  524. name: "Golden Jackal",
  525. parents: ["jackal"]
  526. },
  527. "manectric": {
  528. name: "Manectric",
  529. parents: ["pokemon"]
  530. },
  531. "rat": {
  532. name: "Rat",
  533. parents: ["rodent"]
  534. },
  535. "rodent": {
  536. name: "Rodent",
  537. parents: ["mammal"]
  538. },
  539. "octocoon": {
  540. name: "Octocoon",
  541. parents: ["raccoon", "octopus"]
  542. },
  543. "octopus": {
  544. name: "Octopus",
  545. parents: ["fish"]
  546. },
  547. "werewolf": {
  548. name: "Werewolf",
  549. parents: ["wolf"]
  550. },
  551. "meerkat": {
  552. name: "Meerkat",
  553. parents: ["mammal"]
  554. },
  555. "human": {
  556. name: "Human",
  557. parents: ["mammal"]
  558. },
  559. "geth": {
  560. name: "Geth",
  561. parents: ["android"]
  562. },
  563. "husky": {
  564. name: "Husky",
  565. parents: ["dog"]
  566. },
  567. "long-eared-bat": {
  568. name: "Long Eared Bat",
  569. parents: ["bat"]
  570. },
  571. "lizard": {
  572. name: "Lizard",
  573. parents: ["reptile"]
  574. },
  575. "salamander": {
  576. name: "Salamander",
  577. parents: ["lizard"]
  578. },
  579. "chameleon": {
  580. name: "Chameleon",
  581. parents: ["lizard"]
  582. },
  583. "gecko": {
  584. name: "Gecko",
  585. parents: ["lizard"]
  586. },
  587. "kobold": {
  588. name: "Kobold",
  589. parents: ["reptile"]
  590. },
  591. "charizard": {
  592. name: "Charizard",
  593. parents: ["pokemon"]
  594. },
  595. "lugia": {
  596. name: "Lugia",
  597. parents: ["pokemon"]
  598. },
  599. "cerberus": {
  600. name: "Cerberus",
  601. parents: ["dog"]
  602. },
  603. "tyrantrum": {
  604. name: "Tyrantrum",
  605. parents: ["pokemon"]
  606. },
  607. "lemur": {
  608. name: "Lemur",
  609. parents: ["mammal"]
  610. },
  611. "kelpie": {
  612. name: "Kelpie",
  613. parents: ["horse", "monster"]
  614. },
  615. "labrador": {
  616. name: "Labrador",
  617. parents: ["dog"]
  618. },
  619. "sylveon": {
  620. name: "Sylveon",
  621. parents: ["eeveelution"]
  622. },
  623. "eeveelution": {
  624. name: "Eeveelution",
  625. parents: ["pokemon"]
  626. },
  627. "polar-bear": {
  628. name: "Polar Bear",
  629. parents: ["bear"]
  630. },
  631. "bear": {
  632. name: "Bear",
  633. parents: ["mammal"]
  634. },
  635. "absol": {
  636. name: "Absol",
  637. parents: ["pokemon"]
  638. },
  639. "wolver": {
  640. name: "Wolver",
  641. parents: ["mammal"]
  642. },
  643. "rottweiler": {
  644. name: "Rottweiler",
  645. parents: ["dog"]
  646. },
  647. "zebra": {
  648. name: "Zebra",
  649. parents: ["horse"]
  650. },
  651. "yoshi": {
  652. name: "Yoshi",
  653. parents: ["lizard"]
  654. },
  655. "lynx": {
  656. name: "Lynx",
  657. parents: ["cat"]
  658. },
  659. "unknown": {
  660. name: "Unknown",
  661. parents: []
  662. },
  663. "thylacine": {
  664. name: "Thylacine",
  665. parents: ["mammal"]
  666. },
  667. "gabumon": {
  668. name: "Gabumon",
  669. parents: ["digimon"]
  670. },
  671. "border-collie": {
  672. name: "Border Collie",
  673. parents: ["dog"]
  674. },
  675. "imp": {
  676. name: "Imp",
  677. parents: ["demon"]
  678. },
  679. "kangaroo": {
  680. name: "Kangaroo",
  681. parents: ["mammal"]
  682. },
  683. "renamon": {
  684. name: "Renamon",
  685. parents: ["digimon"]
  686. },
  687. "candy-orca-dragon": {
  688. name: "Candy Orca Dragon",
  689. parents: ["fish", "dragon", "candy"]
  690. },
  691. "sabertooth-tiger": {
  692. name: "Sabertooth Tiger",
  693. parents: ["cat"]
  694. },
  695. "espurr": {
  696. name: "Espurr",
  697. parents: ["pokemon"]
  698. },
  699. "otter": {
  700. name: "Otter",
  701. parents: ["mammal"]
  702. },
  703. "elemental": {
  704. name: "Elemental",
  705. parents: ["mammal"]
  706. },
  707. "mew": {
  708. name: "Mew",
  709. parents: ["pokemon"]
  710. },
  711. "goodra": {
  712. name: "Goodra",
  713. parents: ["pokemon"]
  714. },
  715. "fairy": {
  716. name: "Fairy",
  717. parents: ["magical"]
  718. },
  719. "typhlosion": {
  720. name: "Typhlosion",
  721. parents: ["pokemon"]
  722. },
  723. "magical": {
  724. name: "Magical",
  725. parents: []
  726. },
  727. "xenomorph": {
  728. name: "Xenomorph",
  729. parents: ["monster", "alien"]
  730. },
  731. "charr": {
  732. name: "Charr",
  733. parents: ["cat"]
  734. },
  735. "siberian-husky": {
  736. name: "Siberian Husky",
  737. parents: ["husky"]
  738. },
  739. "alligator": {
  740. name: "Alligator",
  741. parents: ["reptile"]
  742. },
  743. "bernese-mountain-dog": {
  744. name: "Bernese Mountain Dog",
  745. parents: ["dog"]
  746. },
  747. "reshiram": {
  748. name: "Reshiram",
  749. parents: ["pokemon"]
  750. },
  751. "grizzly-bear": {
  752. name: "Grizzly Bear",
  753. parents: ["bear"]
  754. },
  755. "water-monitor": {
  756. name: "Water Monitor",
  757. parents: ["lizard"]
  758. },
  759. "banchofossa": {
  760. name: "Banchofossa",
  761. parents: ["mammal"]
  762. },
  763. "kirin": {
  764. name: "Kirin",
  765. parents: ["monster"]
  766. },
  767. "quilava": {
  768. name: "Quilava",
  769. parents: ["pokemon"]
  770. },
  771. "seviper": {
  772. name: "Seviper",
  773. parents: ["pokemon"]
  774. },
  775. "flying-fox": {
  776. name: "Flying Fox",
  777. parents: ["bat"]
  778. },
  779. "keynain": {
  780. name: "Keynain",
  781. parents: ["avian"]
  782. },
  783. "lucario": {
  784. name: "Lucario",
  785. parents: ["pokemon"]
  786. },
  787. "siamese-cat": {
  788. name: "Siamese Cat",
  789. parents: ["cat"]
  790. },
  791. "spider": {
  792. name: "Spider",
  793. parents: ["insect"]
  794. },
  795. "samurott": {
  796. name: "Samurott",
  797. parents: ["pokemon"]
  798. },
  799. "megalodon": {
  800. name: "Megalodon",
  801. parents: ["shark"]
  802. },
  803. "unicorn": {
  804. name: "Unicorn",
  805. parents: ["horse"]
  806. },
  807. "greninja": {
  808. name: "Greninja",
  809. parents: ["pokemon"]
  810. },
  811. "water-dragon": {
  812. name: "Water Dragon",
  813. parents: ["dragon"]
  814. },
  815. "cross-fox": {
  816. name: "Cross Fox",
  817. parents: ["fox"]
  818. },
  819. "synth": {
  820. name: "Synth",
  821. parents: ["machine"]
  822. },
  823. "construct": {
  824. name: "Construct",
  825. parents: []
  826. },
  827. "mexican-wolf": {
  828. name: "Mexican Wolf",
  829. parents: ["wolf"]
  830. },
  831. "leopard": {
  832. name: "Leopard",
  833. parents: ["cat"]
  834. },
  835. "pig": {
  836. name: "Pig",
  837. parents: ["mammal"]
  838. },
  839. "ampharos": {
  840. name: "Ampharos",
  841. parents: ["pokemon"]
  842. },
  843. "orca": {
  844. name: "Orca",
  845. parents: ["fish"]
  846. },
  847. "lycanroc": {
  848. name: "Lycanroc",
  849. parents: ["pokemon"]
  850. },
  851. "surkanu": {
  852. name: "Surkanu",
  853. parents: ["monster"]
  854. },
  855. "seal": {
  856. name: "Seal",
  857. parents: ["mammal"]
  858. },
  859. "keldeo": {
  860. name: "Keldeo",
  861. parents: ["pokemon"]
  862. },
  863. "great-dane": {
  864. name: "Great Dane",
  865. parents: ["dog"]
  866. },
  867. "black-backed-jackal": {
  868. name: "Black Backed Jackal",
  869. parents: ["jackal"]
  870. },
  871. "sheep": {
  872. name: "Sheep",
  873. parents: ["mammal"]
  874. },
  875. "leopard-seal": {
  876. name: "Leopard Seal",
  877. parents: ["seal"]
  878. },
  879. "zoroark": {
  880. name: "Zoroark",
  881. parents: ["pokemon"]
  882. },
  883. "maned-wolf": {
  884. name: "Maned Wolf",
  885. parents: ["canine"]
  886. },
  887. "dracha": {
  888. name: "Dracha",
  889. parents: ["dragon"]
  890. },
  891. "wolxi": {
  892. name: "Wolxi",
  893. parents: ["mammal", "alien"]
  894. },
  895. "dratini": {
  896. name: "Dratini",
  897. parents: ["pokemon", "dragon"]
  898. },
  899. "skaven": {
  900. name: "Skaven",
  901. parents: ["rat"]
  902. },
  903. "mongoose": {
  904. name: "Mongoose",
  905. parents: ["mammal"]
  906. },
  907. "lopunny": {
  908. name: "Lopunny",
  909. parents: ["pokemon", "rabbit"]
  910. },
  911. "feraligatr": {
  912. name: "Feraligatr",
  913. parents: ["pokemon", "alligator"]
  914. },
  915. "houndoom": {
  916. name: "Houndoom",
  917. parents: ["pokemon", "dog"]
  918. },
  919. "protogen": {
  920. name: "Protogen",
  921. parents: ["machine"]
  922. },
  923. "saint-bernard": {
  924. name: "Saint Bernard",
  925. parents: ["dog"]
  926. },
  927. "crow": {
  928. name: "Crow",
  929. parents: ["corvid"]
  930. },
  931. "delphox": {
  932. name: "Delphox",
  933. parents: ["pokemon", "fox"]
  934. },
  935. "moose": {
  936. name: "Moose",
  937. parents: ["mammal"]
  938. },
  939. "joraxian": {
  940. name: "Joraxian",
  941. parents: ["monster", "canine", "demon"]
  942. },
  943. "nimbat": {
  944. name: "Nimbat",
  945. parents: ["mammal"]
  946. },
  947. "aardwolf": {
  948. name: "Aardwolf",
  949. parents: ["canine"]
  950. },
  951. "fluudrani": {
  952. name: "Fluudrani",
  953. parents: ["animal"]
  954. },
  955. "arcanine": {
  956. name: "Arcanine",
  957. parents: ["pokemon", "dog"]
  958. },
  959. "inteleon": {
  960. name: "Inteleon",
  961. parents: ["pokemon", "fish"]
  962. },
  963. "ninetales": {
  964. name: "Ninetales",
  965. parents: ["pokemon", "kitsune"]
  966. },
  967. "tigrex": {
  968. name: "Tigrex",
  969. parents: ["tiger"]
  970. },
  971. "zorua": {
  972. name: "Zorua",
  973. parents: ["pokemon", "fox"]
  974. },
  975. "vulpix": {
  976. name: "Vulpix",
  977. parents: ["pokemon", "fox"]
  978. },
  979. "barghest": {
  980. name: "Barghest",
  981. parents: ["monster"]
  982. },
  983. "gray-wolf": {
  984. name: "Gray Wolf",
  985. parents: ["wolf"]
  986. },
  987. "ruppells-fox": {
  988. name: "Rüppell's Fox",
  989. parents: ["fox"]
  990. },
  991. "bull-terrier": {
  992. name: "Bull Terrier",
  993. parents: ["dog"]
  994. },
  995. "european-honey-buzzard": {
  996. name: "European Honey Buzzard",
  997. parents: ["avian"]
  998. },
  999. "t-rex": {
  1000. name: "T Rex",
  1001. parents: ["dinosaur"]
  1002. },
  1003. "mactarian": {
  1004. name: "Mactarian",
  1005. parents: ["shark", "monster"]
  1006. },
  1007. "mewtwo-y": {
  1008. name: "Mewtwo Y",
  1009. parents: ["mewtwo"]
  1010. },
  1011. "mewtwo": {
  1012. name: "Mewtwo",
  1013. parents: ["pokemon"]
  1014. },
  1015. "mew": {
  1016. name: "Mew",
  1017. parents: ["pokemon"]
  1018. },
  1019. "eevee": {
  1020. name: "Eevee",
  1021. parents: ["eeveelution"]
  1022. },
  1023. "mienshao": {
  1024. name: "Mienshao",
  1025. parents: ["pokemon"]
  1026. },
  1027. "sugar-glider": {
  1028. name: "Sugar Glider",
  1029. parents: ["opossum"]
  1030. },
  1031. "spectral-bat": {
  1032. name: "Spectral Bat",
  1033. parents: ["bat"]
  1034. },
  1035. "scolipede": {
  1036. name: "Scolipede",
  1037. parents: ["pokemon", "insect"]
  1038. },
  1039. "jackalope": {
  1040. name: "Jackalope",
  1041. parents: ["rabbit", "antelope"]
  1042. },
  1043. "caracal": {
  1044. name: "Caracal",
  1045. parents: ["cat"]
  1046. },
  1047. "stoat": {
  1048. name: "Stoat",
  1049. parents: ["mammal"]
  1050. },
  1051. "african-golden-cat": {
  1052. name: "African Golden Cat",
  1053. parents: ["cat"]
  1054. },
  1055. "gigantosaurus": {
  1056. name: "Gigantosaurus",
  1057. parents: ["dinosaur"]
  1058. },
  1059. "zorgoia": {
  1060. name: "Zorgoia",
  1061. parents: ["mammal"]
  1062. },
  1063. "monitor-lizard": {
  1064. name: "Monitor Lizard",
  1065. parents: ["lizard"]
  1066. },
  1067. "ziralkia": {
  1068. name: "Ziralkia",
  1069. parents: ["mammal"]
  1070. },
  1071. "kiiasi": {
  1072. name: "Kiiasi",
  1073. parents: ["animal"]
  1074. },
  1075. "synx": {
  1076. name: "Synx",
  1077. parents: ["monster"]
  1078. },
  1079. "panther": {
  1080. name: "Panther",
  1081. parents: ["cat"]
  1082. },
  1083. "azumarill": {
  1084. name: "Azumarill",
  1085. parents: ["pokemon"]
  1086. },
  1087. "river-snaptail": {
  1088. name: "River Snaptail",
  1089. parents: ["otter", "crocodile"]
  1090. },
  1091. "great-blue-heron": {
  1092. name: "Great Blue Heron",
  1093. parents: ["avian"]
  1094. },
  1095. "smeargle": {
  1096. name: "Smeargle",
  1097. parents: ["pokemon"]
  1098. },
  1099. "vendeilen": {
  1100. name: "Vendeilen",
  1101. parents: ["monster"]
  1102. },
  1103. "ventura": {
  1104. name: "Ventura",
  1105. parents: ["canine"]
  1106. },
  1107. "clouded-leopard": {
  1108. name: "Clouded Leopard",
  1109. parents: ["leopard"]
  1110. },
  1111. "argonian": {
  1112. name: "Argonian",
  1113. parents: ["lizard"]
  1114. },
  1115. "salazzle": {
  1116. name: "Salazzle",
  1117. parents: ["pokemon", "lizard"]
  1118. },
  1119. "je-stoff-drachen": {
  1120. name: "Je-Stoff Drachen",
  1121. parents: ["dragon"]
  1122. },
  1123. "finnish-spitz-dog": {
  1124. name: "Finnish Spitz Dog",
  1125. parents: ["dog"]
  1126. },
  1127. "gray-fox": {
  1128. name: "Gray Fox",
  1129. parents: ["fox"]
  1130. },
  1131. "opossum": {
  1132. name: "opossum",
  1133. parents: ["mammal"]
  1134. },
  1135. "antelope": {
  1136. name: "Antelope",
  1137. parents: ["mammal"]
  1138. },
  1139. "weavile": {
  1140. name: "Weavile",
  1141. parents: ["pokemon"]
  1142. },
  1143. "pikachu": {
  1144. name: "Pikachu",
  1145. parents: ["pokemon", "mouse"]
  1146. },
  1147. "grovyle": {
  1148. name: "Grovyle",
  1149. parents: ["pokemon", "plant"]
  1150. },
  1151. "sthara": {
  1152. name: "Sthara",
  1153. parents: ["snow-leopard", "reptile"]
  1154. },
  1155. "star-warrior": {
  1156. name: "Star Warrior",
  1157. parents: ["magical"]
  1158. },
  1159. "dragonoid": {
  1160. name: "Dragonoid",
  1161. parents: ["dragon"]
  1162. },
  1163. "suicune": {
  1164. name: "Suicune",
  1165. parents: ["pokemon"]
  1166. },
  1167. "vole": {
  1168. name: "Vole",
  1169. parents: ["mammal"]
  1170. },
  1171. "blaziken": {
  1172. name: "Blaziken",
  1173. parents: ["pokemon", "avian"]
  1174. },
  1175. "buizel": {
  1176. name: "Buizel",
  1177. parents: ["pokemon", "fish"]
  1178. },
  1179. "floatzel": {
  1180. name: "Floatzel",
  1181. parents: ["pokemon", "fish"]
  1182. },
  1183. "umok": {
  1184. name: "Umok",
  1185. parents: ["avian"]
  1186. },
  1187. "sea-monster": {
  1188. name: "Sea Monster",
  1189. parents: ["monster", "fish"]
  1190. },
  1191. "egyptian-vulture": {
  1192. name: "Egyptian Vulture",
  1193. parents: ["avian"]
  1194. },
  1195. "doberman": {
  1196. name: "Doberman",
  1197. parents: ["dog"]
  1198. },
  1199. "zangoose": {
  1200. name: "Zangoose",
  1201. parents: ["pokemon", "mongoose"]
  1202. },
  1203. "mongoose": {
  1204. name: "Mongoose",
  1205. parents: ["mammal"]
  1206. },
  1207. "wickerbeast": {
  1208. name: "Wickerbeast",
  1209. parents: ["monster"]
  1210. },
  1211. "zenari": {
  1212. name: "Zenari",
  1213. parents: ["lizard"]
  1214. },
  1215. "plant": {
  1216. name: "Plant",
  1217. parents: []
  1218. },
  1219. "raskatox": {
  1220. name: "Raskatox",
  1221. parents: ["raccoon", "skunk", "cat", "fox"]
  1222. },
  1223. "mikromare": {
  1224. name: "mikromare",
  1225. parents: ["alien"]
  1226. },
  1227. "alien": {
  1228. name: "Alien",
  1229. parents: ["animal"]
  1230. },
  1231. "deity": {
  1232. name: "Deity",
  1233. parents: []
  1234. },
  1235. "skarlan": {
  1236. name: "Skarlan",
  1237. parents: ["slug", "dragon"]
  1238. },
  1239. "slug": {
  1240. name: "Slug",
  1241. parents: ["mollusk"]
  1242. },
  1243. "mollusk": {
  1244. name: "Mollusk",
  1245. parents: ["animal"]
  1246. },
  1247. "chimera": {
  1248. name: "Chimera",
  1249. parents: ["monster"]
  1250. },
  1251. "gestalt": {
  1252. name: "Gestalt",
  1253. parents: ["construct"]
  1254. },
  1255. "mimic": {
  1256. name: "Mimic",
  1257. parents: ["monster"]
  1258. },
  1259. "calico-rat": {
  1260. name: "Calico Rat",
  1261. parents: ["rat"]
  1262. },
  1263. "panda": {
  1264. name: "Panda",
  1265. parents: ["mammal"]
  1266. },
  1267. "oni": {
  1268. name: "Oni",
  1269. parents: ["monster"]
  1270. },
  1271. "pegasus": {
  1272. name: "Pegasus",
  1273. parents: ["horse"]
  1274. },
  1275. "vulpera": {
  1276. name: "Vulpera",
  1277. parents: ["fennec-fox"]
  1278. },
  1279. "ceratosaurus": {
  1280. name: "Ceratosaurus",
  1281. parents: ["dinosaur"]
  1282. },
  1283. "nykur": {
  1284. name: "Nykur",
  1285. parents: ["horse", "monster"]
  1286. },
  1287. "giraffe": {
  1288. name: "Giraffe",
  1289. parents: ["mammal"]
  1290. },
  1291. "tauren": {
  1292. name: "Tauren",
  1293. parents: ["cow"]
  1294. },
  1295. "draconi": {
  1296. name: "Draconi",
  1297. parents: ["alien", "cat", "cyborg"]
  1298. },
  1299. "dire-wolf": {
  1300. name: "Dire Wolf",
  1301. parents: ["wolf"]
  1302. },
  1303. "ferromorph": {
  1304. name: "Ferromorph",
  1305. parents: ["construct"]
  1306. },
  1307. "meowth": {
  1308. name: "Meowth",
  1309. parents: ["cat", "pokemon"]
  1310. },
  1311. "pavodragon": {
  1312. name: "Pavodragon",
  1313. parents: ["dragon"]
  1314. },
  1315. "aaltranae": {
  1316. name: "Aaltranae",
  1317. parents: ["dragon"]
  1318. },
  1319. "cyborg": {
  1320. name: "Cyborg",
  1321. parents: ["machine"]
  1322. },
  1323. "draptor": {
  1324. name: "Draptor",
  1325. parents: ["dragon"]
  1326. },
  1327. "candy": {
  1328. name: "Candy",
  1329. parents: []
  1330. },
  1331. "drenath": {
  1332. name: "Drenath",
  1333. parents: ["dragon", "snake", "rabbit"]
  1334. },
  1335. "coyju": {
  1336. name: "Coyju",
  1337. parents: ["coyote", "kaiju"]
  1338. },
  1339. "kaiju": {
  1340. name: "Kaiju",
  1341. parents: ["monster"]
  1342. },
  1343. "nickit": {
  1344. name: "Nickit",
  1345. parents: ["pokemon", "cat"]
  1346. },
  1347. "lopunny": {
  1348. name: "Lopunny",
  1349. parents: ["pokemon", "rabbit"]
  1350. },
  1351. "korean-jindo-dog": {
  1352. name: "Korean Jindo Dog",
  1353. parents: ["dog"]
  1354. },
  1355. "naga": {
  1356. name: "Naga",
  1357. parents: ["snake", "monster"]
  1358. },
  1359. "undead": {
  1360. name: "Undead",
  1361. parents: ["monster"]
  1362. },
  1363. "whale": {
  1364. name: "Whale",
  1365. parents: ["fish"]
  1366. },
  1367. "gelato-bee": {
  1368. name: "Gelato Bee",
  1369. parents: ["bee"]
  1370. },
  1371. "bee": {
  1372. name: "Bee",
  1373. parents: ["insect"]
  1374. },
  1375. "gardevoir": {
  1376. name: "Gardevoir",
  1377. parents: ["pokemon"]
  1378. },
  1379. "ant": {
  1380. name: "Ant",
  1381. parents: ["insect"]
  1382. },
  1383. "frog": {
  1384. name: "Frog",
  1385. parents: ["amphibian"]
  1386. },
  1387. "amphibian": {
  1388. name: "Amphibian",
  1389. parents: ["animal"]
  1390. },
  1391. "pangolin": {
  1392. name: "Pangolin",
  1393. parents: ["mammal"]
  1394. },
  1395. "uragi'viidorn": {
  1396. name: "Uragi'viidorn",
  1397. parents: ["avian", "bear"]
  1398. },
  1399. "gryphdelphais": {
  1400. name: "Gryphdelphais",
  1401. parents: ["dolphin", "gryphon"]
  1402. },
  1403. "plush": {
  1404. name: "Plush",
  1405. parents: ["construct"]
  1406. },
  1407. "draiger": {
  1408. name: "Draiger",
  1409. parents: ["dragon","tiger"]
  1410. },
  1411. "foxsky": {
  1412. name: "Foxsky",
  1413. parents: ["fox", "husky"]
  1414. },
  1415. "umbreon": {
  1416. name: "Umbreon",
  1417. parents: ["eeveelution"]
  1418. },
  1419. "slime-dragon": {
  1420. name: "Slime Dragon",
  1421. parents: ["dragon"]
  1422. },
  1423. }
  1424. //species
  1425. function getSpeciesInfo(speciesList) {
  1426. let result = new Set();
  1427. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1428. result.add(entry)
  1429. });
  1430. return Array.from(result);
  1431. };
  1432. function getSpeciesInfoHelper(species) {
  1433. if (!speciesData[species]) {
  1434. console.warn(species + " doesn't exist");
  1435. return [];
  1436. }
  1437. if (speciesData[species].parents) {
  1438. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1439. } else {
  1440. return [species];
  1441. }
  1442. }
  1443. characterMakers.push(() => makeCharacter(
  1444. {
  1445. name: "Fen",
  1446. species: ["crux"],
  1447. description: {
  1448. title: "Bio",
  1449. text: "Very furry. Sheds on everything."
  1450. },
  1451. tags: [
  1452. "anthro",
  1453. "goo"
  1454. ]
  1455. },
  1456. {
  1457. back: {
  1458. height: math.unit(2.2428, "meter"),
  1459. weight: math.unit(124.738, "kg"),
  1460. name: "Back",
  1461. image: {
  1462. source: "./media/characters/fen/back.svg",
  1463. extra: 2024 / 1867,
  1464. bottom: 13 / 2037
  1465. },
  1466. info: {
  1467. description: {
  1468. mode: "append",
  1469. text: "\n\nHe is not currently looking at you."
  1470. }
  1471. }
  1472. },
  1473. full: {
  1474. height: math.unit(1.34, "meter"),
  1475. weight: math.unit(225, "kg"),
  1476. name: "Full",
  1477. image: {
  1478. source: "./media/characters/fen/full.svg"
  1479. },
  1480. info: {
  1481. description: {
  1482. mode: "append",
  1483. text: "\n\nMunch."
  1484. }
  1485. }
  1486. },
  1487. kneeling: {
  1488. height: math.unit(5.4, "feet"),
  1489. weight: math.unit(124.738, "kg"),
  1490. name: "Kneeling",
  1491. image: {
  1492. source: "./media/characters/fen/kneeling.svg",
  1493. extra: 563 / 507
  1494. }
  1495. },
  1496. goo: {
  1497. height: math.unit(2.8, "feet"),
  1498. weight: math.unit(125, "kg"),
  1499. capacity: math.unit(1, "people"),
  1500. name: "Goo",
  1501. image: {
  1502. source: "./media/characters/fen/goo.svg",
  1503. bottom: 116 / 613
  1504. }
  1505. },
  1506. lounging: {
  1507. height: math.unit(6.5, "feet"),
  1508. weight: math.unit(125, "kg"),
  1509. name: "Lounging",
  1510. image: {
  1511. source: "./media/characters/fen/lounging.svg"
  1512. }
  1513. },
  1514. },
  1515. [
  1516. {
  1517. name: "Normal",
  1518. height: math.unit(2.2428, "meter")
  1519. },
  1520. {
  1521. name: "Big",
  1522. height: math.unit(12, "feet")
  1523. },
  1524. {
  1525. name: "Minimacro",
  1526. height: math.unit(40, "feet"),
  1527. default: true,
  1528. info: {
  1529. description: {
  1530. mode: "append",
  1531. text: "\n\nTOO DAMN BIG"
  1532. }
  1533. }
  1534. },
  1535. {
  1536. name: "Macro",
  1537. height: math.unit(100, "feet"),
  1538. info: {
  1539. description: {
  1540. mode: "append",
  1541. text: "\n\nTOO DAMN BIG"
  1542. }
  1543. }
  1544. },
  1545. {
  1546. name: "Macro+",
  1547. height: math.unit(300, "feet")
  1548. },
  1549. {
  1550. name: "Megamacro",
  1551. height: math.unit(2, "miles")
  1552. }
  1553. ]
  1554. ))
  1555. characterMakers.push(() => makeCharacter(
  1556. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1557. {
  1558. front: {
  1559. height: math.unit(183, "cm"),
  1560. weight: math.unit(80, "kg"),
  1561. name: "Front",
  1562. image: {
  1563. source: "./media/characters/sofia-fluttertail/front.svg",
  1564. bottom: 0.01,
  1565. extra: 2154 / 2081
  1566. }
  1567. },
  1568. frontAlt: {
  1569. height: math.unit(183, "cm"),
  1570. weight: math.unit(80, "kg"),
  1571. name: "Front (alt)",
  1572. image: {
  1573. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1574. }
  1575. },
  1576. back: {
  1577. height: math.unit(183, "cm"),
  1578. weight: math.unit(80, "kg"),
  1579. name: "Back",
  1580. image: {
  1581. source: "./media/characters/sofia-fluttertail/back.svg"
  1582. }
  1583. },
  1584. kneeling: {
  1585. height: math.unit(125, "cm"),
  1586. weight: math.unit(80, "kg"),
  1587. name: "Kneeling",
  1588. image: {
  1589. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1590. extra: 1033 / 977,
  1591. bottom: 23.7 / 1057
  1592. }
  1593. },
  1594. maw: {
  1595. height: math.unit(183 / 5, "cm"),
  1596. name: "Maw",
  1597. image: {
  1598. source: "./media/characters/sofia-fluttertail/maw.svg"
  1599. }
  1600. },
  1601. mawcloseup: {
  1602. height: math.unit(183 / 5 * 0.41, "cm"),
  1603. name: "Maw (Closeup)",
  1604. image: {
  1605. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1606. }
  1607. },
  1608. paws: {
  1609. height: math.unit(1.17, "feet"),
  1610. name: "Paws",
  1611. image: {
  1612. source: "./media/characters/sofia-fluttertail/paws.svg",
  1613. extra: 851 / 851,
  1614. bottom: 17 / 868
  1615. }
  1616. },
  1617. },
  1618. [
  1619. {
  1620. name: "Normal",
  1621. height: math.unit(1.83, "meter")
  1622. },
  1623. {
  1624. name: "Size Thief",
  1625. height: math.unit(18, "feet")
  1626. },
  1627. {
  1628. name: "50 Foot Collie",
  1629. height: math.unit(50, "feet")
  1630. },
  1631. {
  1632. name: "Macro",
  1633. height: math.unit(96, "feet"),
  1634. default: true
  1635. },
  1636. {
  1637. name: "Megamerger",
  1638. height: math.unit(650, "feet")
  1639. },
  1640. ]
  1641. ))
  1642. characterMakers.push(() => makeCharacter(
  1643. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1644. {
  1645. front: {
  1646. height: math.unit(7, "feet"),
  1647. weight: math.unit(100, "kg"),
  1648. name: "Front",
  1649. image: {
  1650. source: "./media/characters/march/front.svg",
  1651. extra: 1,
  1652. bottom: 0.015
  1653. }
  1654. },
  1655. foot: {
  1656. height: math.unit(0.9, "feet"),
  1657. name: "Foot",
  1658. image: {
  1659. source: "./media/characters/march/foot.svg"
  1660. }
  1661. },
  1662. },
  1663. [
  1664. {
  1665. name: "Normal",
  1666. height: math.unit(7.9, "feet")
  1667. },
  1668. {
  1669. name: "Macro",
  1670. height: math.unit(220, "meters")
  1671. },
  1672. {
  1673. name: "Megamacro",
  1674. height: math.unit(2.98, "km"),
  1675. default: true
  1676. },
  1677. {
  1678. name: "Gigamacro",
  1679. height: math.unit(15963, "km")
  1680. },
  1681. {
  1682. name: "Teramacro",
  1683. height: math.unit(2980000000, "km")
  1684. },
  1685. {
  1686. name: "Examacro",
  1687. height: math.unit(250, "parsecs")
  1688. },
  1689. ]
  1690. ))
  1691. characterMakers.push(() => makeCharacter(
  1692. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1693. {
  1694. front: {
  1695. height: math.unit(6, "feet"),
  1696. weight: math.unit(60, "kg"),
  1697. name: "Front",
  1698. image: {
  1699. source: "./media/characters/noir/front.svg",
  1700. extra: 1,
  1701. bottom: 0.032
  1702. }
  1703. },
  1704. },
  1705. [
  1706. {
  1707. name: "Normal",
  1708. height: math.unit(6.6, "feet")
  1709. },
  1710. {
  1711. name: "Macro",
  1712. height: math.unit(500, "feet")
  1713. },
  1714. {
  1715. name: "Megamacro",
  1716. height: math.unit(2.5, "km"),
  1717. default: true
  1718. },
  1719. {
  1720. name: "Gigamacro",
  1721. height: math.unit(22500, "km")
  1722. },
  1723. {
  1724. name: "Teramacro",
  1725. height: math.unit(2500000000, "km")
  1726. },
  1727. {
  1728. name: "Examacro",
  1729. height: math.unit(200, "parsecs")
  1730. },
  1731. ]
  1732. ))
  1733. characterMakers.push(() => makeCharacter(
  1734. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1735. {
  1736. front: {
  1737. height: math.unit(7, "feet"),
  1738. weight: math.unit(100, "kg"),
  1739. name: "Front",
  1740. image: {
  1741. source: "./media/characters/okuri/front.svg",
  1742. extra: 1,
  1743. bottom: 0.037
  1744. }
  1745. },
  1746. back: {
  1747. height: math.unit(7, "feet"),
  1748. weight: math.unit(100, "kg"),
  1749. name: "Back",
  1750. image: {
  1751. source: "./media/characters/okuri/back.svg",
  1752. extra: 1,
  1753. bottom: 0.007
  1754. }
  1755. },
  1756. },
  1757. [
  1758. {
  1759. name: "Megamacro",
  1760. height: math.unit(100, "miles"),
  1761. default: true
  1762. },
  1763. ]
  1764. ))
  1765. characterMakers.push(() => makeCharacter(
  1766. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1767. {
  1768. front: {
  1769. height: math.unit(7, "feet"),
  1770. weight: math.unit(100, "kg"),
  1771. name: "Front",
  1772. image: {
  1773. source: "./media/characters/manny/front.svg",
  1774. extra: 1,
  1775. bottom: 0.06
  1776. }
  1777. },
  1778. back: {
  1779. height: math.unit(7, "feet"),
  1780. weight: math.unit(100, "kg"),
  1781. name: "Back",
  1782. image: {
  1783. source: "./media/characters/manny/back.svg",
  1784. extra: 1,
  1785. bottom: 0.014
  1786. }
  1787. },
  1788. },
  1789. [
  1790. {
  1791. name: "Normal",
  1792. height: math.unit(7, "feet"),
  1793. },
  1794. {
  1795. name: "Macro",
  1796. height: math.unit(78, "feet"),
  1797. default: true
  1798. },
  1799. {
  1800. name: "Macro+",
  1801. height: math.unit(300, "meters")
  1802. },
  1803. {
  1804. name: "Macro++",
  1805. height: math.unit(2400, "meters")
  1806. },
  1807. {
  1808. name: "Megamacro",
  1809. height: math.unit(5167, "meters")
  1810. },
  1811. {
  1812. name: "Gigamacro",
  1813. height: math.unit(41769, "miles")
  1814. },
  1815. ]
  1816. ))
  1817. characterMakers.push(() => makeCharacter(
  1818. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1819. {
  1820. front: {
  1821. height: math.unit(7, "feet"),
  1822. weight: math.unit(100, "kg"),
  1823. name: "Front",
  1824. image: {
  1825. source: "./media/characters/adake/front-1.svg"
  1826. }
  1827. },
  1828. frontAlt: {
  1829. height: math.unit(7, "feet"),
  1830. weight: math.unit(100, "kg"),
  1831. name: "Front (Alt)",
  1832. image: {
  1833. source: "./media/characters/adake/front-2.svg",
  1834. extra: 1,
  1835. bottom: 0.01
  1836. }
  1837. },
  1838. back: {
  1839. height: math.unit(7, "feet"),
  1840. weight: math.unit(100, "kg"),
  1841. name: "Back",
  1842. image: {
  1843. source: "./media/characters/adake/back.svg",
  1844. }
  1845. },
  1846. kneel: {
  1847. height: math.unit(5.385, "feet"),
  1848. weight: math.unit(100, "kg"),
  1849. name: "Kneeling",
  1850. image: {
  1851. source: "./media/characters/adake/kneel.svg",
  1852. bottom: 0.052
  1853. }
  1854. },
  1855. },
  1856. [
  1857. {
  1858. name: "Normal",
  1859. height: math.unit(7, "feet"),
  1860. },
  1861. {
  1862. name: "Macro",
  1863. height: math.unit(78, "feet"),
  1864. default: true
  1865. },
  1866. {
  1867. name: "Macro+",
  1868. height: math.unit(300, "meters")
  1869. },
  1870. {
  1871. name: "Macro++",
  1872. height: math.unit(2400, "meters")
  1873. },
  1874. {
  1875. name: "Megamacro",
  1876. height: math.unit(5167, "meters")
  1877. },
  1878. {
  1879. name: "Gigamacro",
  1880. height: math.unit(41769, "miles")
  1881. },
  1882. ]
  1883. ))
  1884. characterMakers.push(() => makeCharacter(
  1885. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1886. {
  1887. front: {
  1888. height: math.unit(1.65, "meters"),
  1889. weight: math.unit(50, "kg"),
  1890. name: "Front",
  1891. image: {
  1892. source: "./media/characters/elijah/front.svg",
  1893. extra: 858 / 830,
  1894. bottom: 95.5 / 953.8559
  1895. }
  1896. },
  1897. back: {
  1898. height: math.unit(1.65, "meters"),
  1899. weight: math.unit(50, "kg"),
  1900. name: "Back",
  1901. image: {
  1902. source: "./media/characters/elijah/back.svg",
  1903. extra: 895 / 850,
  1904. bottom: 5.3 / 897.956
  1905. }
  1906. },
  1907. frontNsfw: {
  1908. height: math.unit(1.65, "meters"),
  1909. weight: math.unit(50, "kg"),
  1910. name: "Front (NSFW)",
  1911. image: {
  1912. source: "./media/characters/elijah/front-nsfw.svg",
  1913. extra: 858 / 830,
  1914. bottom: 95.5 / 953.8559
  1915. }
  1916. },
  1917. backNsfw: {
  1918. height: math.unit(1.65, "meters"),
  1919. weight: math.unit(50, "kg"),
  1920. name: "Back (NSFW)",
  1921. image: {
  1922. source: "./media/characters/elijah/back-nsfw.svg",
  1923. extra: 895 / 850,
  1924. bottom: 5.3 / 897.956
  1925. }
  1926. },
  1927. dick: {
  1928. height: math.unit(1, "feet"),
  1929. name: "Dick",
  1930. image: {
  1931. source: "./media/characters/elijah/dick.svg"
  1932. }
  1933. },
  1934. beakOpen: {
  1935. height: math.unit(1.25, "feet"),
  1936. name: "Beak (Open)",
  1937. image: {
  1938. source: "./media/characters/elijah/beak-open.svg"
  1939. }
  1940. },
  1941. beakShut: {
  1942. height: math.unit(1.25, "feet"),
  1943. name: "Beak (Shut)",
  1944. image: {
  1945. source: "./media/characters/elijah/beak-shut.svg"
  1946. }
  1947. },
  1948. footFlexing: {
  1949. height: math.unit(1.61, "feet"),
  1950. name: "Foot (Flexing)",
  1951. image: {
  1952. source: "./media/characters/elijah/foot-flexing.svg"
  1953. }
  1954. },
  1955. footStepping: {
  1956. height: math.unit(1.44, "feet"),
  1957. name: "Foot (Stepping)",
  1958. image: {
  1959. source: "./media/characters/elijah/foot-stepping.svg"
  1960. }
  1961. },
  1962. plantigradeLeg: {
  1963. height: math.unit(2.34, "feet"),
  1964. name: "Plantigrade Leg",
  1965. image: {
  1966. source: "./media/characters/elijah/plantigrade-leg.svg"
  1967. }
  1968. },
  1969. plantigradeFootLeft: {
  1970. height: math.unit(0.9, "feet"),
  1971. name: "Plantigrade Foot (Left)",
  1972. image: {
  1973. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1974. }
  1975. },
  1976. plantigradeFootRight: {
  1977. height: math.unit(0.9, "feet"),
  1978. name: "Plantigrade Foot (Right)",
  1979. image: {
  1980. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1981. }
  1982. },
  1983. },
  1984. [
  1985. {
  1986. name: "Normal",
  1987. height: math.unit(1.65, "meters")
  1988. },
  1989. {
  1990. name: "Macro",
  1991. height: math.unit(55, "meters"),
  1992. default: true
  1993. },
  1994. {
  1995. name: "Macro+",
  1996. height: math.unit(105, "meters")
  1997. },
  1998. ]
  1999. ))
  2000. characterMakers.push(() => makeCharacter(
  2001. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2002. {
  2003. front: {
  2004. height: math.unit(11, "feet"),
  2005. weight: math.unit(80, "kg"),
  2006. name: "Front",
  2007. image: {
  2008. source: "./media/characters/rai/front.svg",
  2009. extra: 1,
  2010. bottom: 0.03
  2011. }
  2012. },
  2013. side: {
  2014. height: math.unit(11, "feet"),
  2015. weight: math.unit(80, "kg"),
  2016. name: "Side",
  2017. image: {
  2018. source: "./media/characters/rai/side.svg"
  2019. }
  2020. },
  2021. back: {
  2022. height: math.unit(11, "feet"),
  2023. weight: math.unit(80, "lb"),
  2024. name: "Back",
  2025. image: {
  2026. source: "./media/characters/rai/back.svg",
  2027. extra: 1,
  2028. bottom: 0.01
  2029. }
  2030. },
  2031. feral: {
  2032. height: math.unit(11, "feet"),
  2033. weight: math.unit(800, "lb"),
  2034. name: "Feral",
  2035. image: {
  2036. source: "./media/characters/rai/feral.svg",
  2037. extra: 1050 / 659,
  2038. bottom: 0.07
  2039. }
  2040. },
  2041. dragon: {
  2042. height: math.unit(23, "feet"),
  2043. weight: math.unit(50000, "lb"),
  2044. name: "Dragon",
  2045. image: {
  2046. source: "./media/characters/rai/dragon.svg",
  2047. extra: 2498 / 2030,
  2048. bottom: 85.2 / 2584
  2049. }
  2050. },
  2051. maw: {
  2052. height: math.unit(6 / 3.81416, "feet"),
  2053. name: "Maw",
  2054. image: {
  2055. source: "./media/characters/rai/maw.svg"
  2056. }
  2057. },
  2058. },
  2059. [
  2060. {
  2061. name: "Normal",
  2062. height: math.unit(11, "feet")
  2063. },
  2064. {
  2065. name: "Macro",
  2066. height: math.unit(302, "feet"),
  2067. default: true
  2068. },
  2069. ]
  2070. ))
  2071. characterMakers.push(() => makeCharacter(
  2072. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2073. {
  2074. frontDressed: {
  2075. height: math.unit(216, "feet"),
  2076. weight: math.unit(7000000, "lb"),
  2077. name: "Front (Dressed)",
  2078. image: {
  2079. source: "./media/characters/jazzy/front-dressed.svg",
  2080. extra: 2738 / 2651,
  2081. bottom: 41.8 / 2786
  2082. }
  2083. },
  2084. backDressed: {
  2085. height: math.unit(216, "feet"),
  2086. weight: math.unit(7000000, "lb"),
  2087. name: "Back (Dressed)",
  2088. image: {
  2089. source: "./media/characters/jazzy/back-dressed.svg",
  2090. extra: 2775 / 2673,
  2091. bottom: 36.8 / 2817
  2092. }
  2093. },
  2094. front: {
  2095. height: math.unit(216, "feet"),
  2096. weight: math.unit(7000000, "lb"),
  2097. name: "Front",
  2098. image: {
  2099. source: "./media/characters/jazzy/front.svg",
  2100. extra: 2738 / 2651,
  2101. bottom: 41.8 / 2786
  2102. }
  2103. },
  2104. back: {
  2105. height: math.unit(216, "feet"),
  2106. weight: math.unit(7000000, "lb"),
  2107. name: "Back",
  2108. image: {
  2109. source: "./media/characters/jazzy/back.svg",
  2110. extra: 2775 / 2673,
  2111. bottom: 36.8 / 2817
  2112. }
  2113. },
  2114. maw: {
  2115. height: math.unit(20, "feet"),
  2116. name: "Maw",
  2117. image: {
  2118. source: "./media/characters/jazzy/maw.svg"
  2119. }
  2120. },
  2121. paws: {
  2122. height: math.unit(27.5, "feet"),
  2123. name: "Paws",
  2124. image: {
  2125. source: "./media/characters/jazzy/paws.svg"
  2126. }
  2127. },
  2128. eye: {
  2129. height: math.unit(4.4, "feet"),
  2130. name: "Eye",
  2131. image: {
  2132. source: "./media/characters/jazzy/eye.svg"
  2133. }
  2134. },
  2135. droneOffense: {
  2136. height: math.unit(9.5, "inches"),
  2137. name: "Drone (Offense)",
  2138. image: {
  2139. source: "./media/characters/jazzy/drone-offense.svg"
  2140. }
  2141. },
  2142. droneRecon: {
  2143. height: math.unit(9.5, "inches"),
  2144. name: "Drone (Recon)",
  2145. image: {
  2146. source: "./media/characters/jazzy/drone-recon.svg"
  2147. }
  2148. },
  2149. droneDefense: {
  2150. height: math.unit(9.5, "inches"),
  2151. name: "Drone (Defense)",
  2152. image: {
  2153. source: "./media/characters/jazzy/drone-defense.svg"
  2154. }
  2155. },
  2156. },
  2157. [
  2158. {
  2159. name: "Macro",
  2160. height: math.unit(216, "feet"),
  2161. default: true
  2162. },
  2163. ]
  2164. ))
  2165. characterMakers.push(() => makeCharacter(
  2166. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2167. {
  2168. front: {
  2169. height: math.unit(7, "feet"),
  2170. weight: math.unit(80, "kg"),
  2171. name: "Front",
  2172. image: {
  2173. source: "./media/characters/flamm/front.svg",
  2174. extra: 1794 / 1677,
  2175. bottom: 31.7 / 1828.5
  2176. }
  2177. },
  2178. },
  2179. [
  2180. {
  2181. name: "Normal",
  2182. height: math.unit(9.5, "feet")
  2183. },
  2184. {
  2185. name: "Macro",
  2186. height: math.unit(200, "feet"),
  2187. default: true
  2188. },
  2189. ]
  2190. ))
  2191. characterMakers.push(() => makeCharacter(
  2192. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2193. {
  2194. front: {
  2195. height: math.unit(7, "feet"),
  2196. weight: math.unit(80, "kg"),
  2197. name: "Front",
  2198. image: {
  2199. source: "./media/characters/zephiro/front.svg",
  2200. extra: 2309 / 2162,
  2201. bottom: 0.069
  2202. }
  2203. },
  2204. side: {
  2205. height: math.unit(7, "feet"),
  2206. weight: math.unit(80, "kg"),
  2207. name: "Side",
  2208. image: {
  2209. source: "./media/characters/zephiro/side.svg",
  2210. extra: 2403 / 2279,
  2211. bottom: 0.015
  2212. }
  2213. },
  2214. back: {
  2215. height: math.unit(7, "feet"),
  2216. weight: math.unit(80, "kg"),
  2217. name: "Back",
  2218. image: {
  2219. source: "./media/characters/zephiro/back.svg",
  2220. extra: 2373 / 2244,
  2221. bottom: 0.013
  2222. }
  2223. },
  2224. },
  2225. [
  2226. {
  2227. name: "Micro",
  2228. height: math.unit(3, "inches")
  2229. },
  2230. {
  2231. name: "Normal",
  2232. height: math.unit(5 + 3 / 12, "feet"),
  2233. default: true
  2234. },
  2235. {
  2236. name: "Macro",
  2237. height: math.unit(118, "feet")
  2238. },
  2239. ]
  2240. ))
  2241. characterMakers.push(() => makeCharacter(
  2242. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2243. {
  2244. front: {
  2245. height: math.unit(5, "feet"),
  2246. weight: math.unit(90, "kg"),
  2247. name: "Front",
  2248. image: {
  2249. source: "./media/characters/fory/front.svg",
  2250. extra: 2862 / 2674,
  2251. bottom: 180 / 3043.8
  2252. }
  2253. },
  2254. back: {
  2255. height: math.unit(5, "feet"),
  2256. weight: math.unit(90, "kg"),
  2257. name: "Back",
  2258. image: {
  2259. source: "./media/characters/fory/back.svg",
  2260. extra: 2962 / 2791,
  2261. bottom: 106 / 3071.8
  2262. }
  2263. },
  2264. foot: {
  2265. height: math.unit(2.14, "feet"),
  2266. name: "Foot",
  2267. image: {
  2268. source: "./media/characters/fory/foot.svg"
  2269. }
  2270. },
  2271. },
  2272. [
  2273. {
  2274. name: "Normal",
  2275. height: math.unit(5, "feet")
  2276. },
  2277. {
  2278. name: "Macro",
  2279. height: math.unit(50, "feet"),
  2280. default: true
  2281. },
  2282. {
  2283. name: "Megamacro",
  2284. height: math.unit(10, "miles")
  2285. },
  2286. {
  2287. name: "Gigamacro",
  2288. height: math.unit(5, "earths")
  2289. },
  2290. ]
  2291. ))
  2292. characterMakers.push(() => makeCharacter(
  2293. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2294. {
  2295. front: {
  2296. height: math.unit(7, "feet"),
  2297. weight: math.unit(90, "kg"),
  2298. name: "Front",
  2299. image: {
  2300. source: "./media/characters/kurrikage/front.svg",
  2301. extra: 1,
  2302. bottom: 0.035
  2303. }
  2304. },
  2305. back: {
  2306. height: math.unit(7, "feet"),
  2307. weight: math.unit(90, "lb"),
  2308. name: "Back",
  2309. image: {
  2310. source: "./media/characters/kurrikage/back.svg"
  2311. }
  2312. },
  2313. paw: {
  2314. height: math.unit(1.5, "feet"),
  2315. name: "Paw",
  2316. image: {
  2317. source: "./media/characters/kurrikage/paw.svg"
  2318. }
  2319. },
  2320. staff: {
  2321. height: math.unit(6.7, "feet"),
  2322. name: "Staff",
  2323. image: {
  2324. source: "./media/characters/kurrikage/staff.svg"
  2325. }
  2326. },
  2327. peek: {
  2328. height: math.unit(1.05, "feet"),
  2329. name: "Peeking",
  2330. image: {
  2331. source: "./media/characters/kurrikage/peek.svg",
  2332. bottom: 0.08
  2333. }
  2334. },
  2335. },
  2336. [
  2337. {
  2338. name: "Normal",
  2339. height: math.unit(12, "feet"),
  2340. default: true
  2341. },
  2342. {
  2343. name: "Big",
  2344. height: math.unit(20, "feet")
  2345. },
  2346. {
  2347. name: "Macro",
  2348. height: math.unit(500, "feet")
  2349. },
  2350. {
  2351. name: "Megamacro",
  2352. height: math.unit(20, "miles")
  2353. },
  2354. ]
  2355. ))
  2356. characterMakers.push(() => makeCharacter(
  2357. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2358. {
  2359. front: {
  2360. height: math.unit(6, "feet"),
  2361. weight: math.unit(75, "kg"),
  2362. name: "Front",
  2363. image: {
  2364. source: "./media/characters/shingo/front.svg",
  2365. extra: 3511 / 3338,
  2366. bottom: 0.005
  2367. }
  2368. },
  2369. paw: {
  2370. height: math.unit(1, "feet"),
  2371. name: "Paw",
  2372. image: {
  2373. source: "./media/characters/shingo/paw.svg"
  2374. }
  2375. },
  2376. },
  2377. [
  2378. {
  2379. name: "Micro",
  2380. height: math.unit(4, "inches")
  2381. },
  2382. {
  2383. name: "Normal",
  2384. height: math.unit(6, "feet"),
  2385. default: true
  2386. },
  2387. {
  2388. name: "Macro",
  2389. height: math.unit(108, "feet")
  2390. },
  2391. {
  2392. name: "Macro+",
  2393. height: math.unit(1500, "feet")
  2394. },
  2395. ]
  2396. ))
  2397. characterMakers.push(() => makeCharacter(
  2398. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2399. {
  2400. side: {
  2401. height: math.unit(6, "feet"),
  2402. weight: math.unit(75, "kg"),
  2403. name: "Side",
  2404. image: {
  2405. source: "./media/characters/aigey/side.svg"
  2406. }
  2407. },
  2408. },
  2409. [
  2410. {
  2411. name: "Macro",
  2412. height: math.unit(200, "feet"),
  2413. default: true
  2414. },
  2415. {
  2416. name: "Megamacro",
  2417. height: math.unit(100, "miles")
  2418. },
  2419. ]
  2420. )
  2421. )
  2422. characterMakers.push(() => makeCharacter(
  2423. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2424. {
  2425. front: {
  2426. height: math.unit(5 + 5 / 12, "feet"),
  2427. weight: math.unit(75, "kg"),
  2428. name: "Front",
  2429. image: {
  2430. source: "./media/characters/natasha/front.svg",
  2431. extra: 859 / 824,
  2432. bottom: 23 / 879.6
  2433. }
  2434. },
  2435. frontNsfw: {
  2436. height: math.unit(5 + 5 / 12, "feet"),
  2437. weight: math.unit(75, "kg"),
  2438. name: "Front (NSFW)",
  2439. image: {
  2440. source: "./media/characters/natasha/front-nsfw.svg",
  2441. extra: 859 / 824,
  2442. bottom: 23 / 879.6
  2443. }
  2444. },
  2445. frontErect: {
  2446. height: math.unit(5 + 5 / 12, "feet"),
  2447. weight: math.unit(75, "kg"),
  2448. name: "Front (Erect)",
  2449. image: {
  2450. source: "./media/characters/natasha/front-erect.svg",
  2451. extra: 859 / 824,
  2452. bottom: 23 / 879.6
  2453. }
  2454. },
  2455. back: {
  2456. height: math.unit(5 + 5 / 12, "feet"),
  2457. weight: math.unit(75, "kg"),
  2458. name: "Back",
  2459. image: {
  2460. source: "./media/characters/natasha/back.svg",
  2461. extra: 887.9 / 852.6,
  2462. bottom: 9.7 / 896.4
  2463. }
  2464. },
  2465. backAlt: {
  2466. height: math.unit(5 + 5 / 12, "feet"),
  2467. weight: math.unit(75, "kg"),
  2468. name: "Back (Alt)",
  2469. image: {
  2470. source: "./media/characters/natasha/back-alt.svg",
  2471. extra: 1236.7 / 1192,
  2472. bottom: 22.3 / 1258.2
  2473. }
  2474. },
  2475. dick: {
  2476. height: math.unit(1.772, "feet"),
  2477. name: "Dick",
  2478. image: {
  2479. source: "./media/characters/natasha/dick.svg"
  2480. }
  2481. },
  2482. paw: {
  2483. height: math.unit(0.250, "meters"),
  2484. name: "Paw",
  2485. image: {
  2486. source: "./media/characters/natasha/paw.svg"
  2487. }
  2488. },
  2489. },
  2490. [
  2491. {
  2492. name: "Normal",
  2493. height: math.unit(5 + 5 / 12, "feet")
  2494. },
  2495. {
  2496. name: "Large",
  2497. height: math.unit(12, "feet")
  2498. },
  2499. {
  2500. name: "Macro",
  2501. height: math.unit(100, "feet"),
  2502. default: true
  2503. },
  2504. {
  2505. name: "Macro+",
  2506. height: math.unit(260, "feet")
  2507. },
  2508. {
  2509. name: "Macro++",
  2510. height: math.unit(1, "mile")
  2511. },
  2512. ]
  2513. ))
  2514. characterMakers.push(() => makeCharacter(
  2515. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2516. {
  2517. front: {
  2518. height: math.unit(6, "feet"),
  2519. weight: math.unit(75, "kg"),
  2520. name: "Front",
  2521. image: {
  2522. source: "./media/characters/malik/front.svg"
  2523. }
  2524. },
  2525. side: {
  2526. height: math.unit(6, "feet"),
  2527. weight: math.unit(75, "kg"),
  2528. name: "Side",
  2529. image: {
  2530. source: "./media/characters/malik/side.svg",
  2531. extra: 1.1539
  2532. }
  2533. },
  2534. back: {
  2535. height: math.unit(6, "feet"),
  2536. weight: math.unit(75, "kg"),
  2537. name: "Back",
  2538. image: {
  2539. source: "./media/characters/malik/back.svg"
  2540. }
  2541. },
  2542. },
  2543. [
  2544. {
  2545. name: "Macro",
  2546. height: math.unit(156, "feet"),
  2547. default: true
  2548. },
  2549. {
  2550. name: "Macro+",
  2551. height: math.unit(1188, "feet")
  2552. },
  2553. ]
  2554. ))
  2555. characterMakers.push(() => makeCharacter(
  2556. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2557. {
  2558. front: {
  2559. height: math.unit(6, "feet"),
  2560. weight: math.unit(75, "kg"),
  2561. name: "Front",
  2562. image: {
  2563. source: "./media/characters/sefer/front.svg",
  2564. extra: 848 / 659,
  2565. bottom: 28.3 / 876.442
  2566. }
  2567. },
  2568. back: {
  2569. height: math.unit(6, "feet"),
  2570. weight: math.unit(75, "kg"),
  2571. name: "Back",
  2572. image: {
  2573. source: "./media/characters/sefer/back.svg",
  2574. extra: 864 / 695,
  2575. bottom: 10 / 871
  2576. }
  2577. },
  2578. frontDressed: {
  2579. height: math.unit(6, "feet"),
  2580. weight: math.unit(75, "kg"),
  2581. name: "Front (Dressed)",
  2582. image: {
  2583. source: "./media/characters/sefer/front-dressed.svg",
  2584. extra: 839 / 653,
  2585. bottom: 37.6 / 878
  2586. }
  2587. },
  2588. },
  2589. [
  2590. {
  2591. name: "Normal",
  2592. height: math.unit(6, "feet"),
  2593. default: true
  2594. },
  2595. ]
  2596. ))
  2597. characterMakers.push(() => makeCharacter(
  2598. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2599. {
  2600. body: {
  2601. height: math.unit(2.2428, "meter"),
  2602. weight: math.unit(124.738, "kg"),
  2603. name: "Body",
  2604. image: {
  2605. extra: 1225 / 1050,
  2606. source: "./media/characters/north/front.svg"
  2607. }
  2608. }
  2609. },
  2610. [
  2611. {
  2612. name: "Micro",
  2613. height: math.unit(4, "inches")
  2614. },
  2615. {
  2616. name: "Macro",
  2617. height: math.unit(63, "meters")
  2618. },
  2619. {
  2620. name: "Megamacro",
  2621. height: math.unit(101, "miles"),
  2622. default: true
  2623. }
  2624. ]
  2625. ))
  2626. characterMakers.push(() => makeCharacter(
  2627. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2628. {
  2629. angled: {
  2630. height: math.unit(4, "meter"),
  2631. weight: math.unit(150, "kg"),
  2632. name: "Angled",
  2633. image: {
  2634. source: "./media/characters/talan/angled-sfw.svg",
  2635. bottom: 29 / 3734
  2636. }
  2637. },
  2638. angledNsfw: {
  2639. height: math.unit(4, "meter"),
  2640. weight: math.unit(150, "kg"),
  2641. name: "Angled (NSFW)",
  2642. image: {
  2643. source: "./media/characters/talan/angled-nsfw.svg",
  2644. bottom: 29 / 3734
  2645. }
  2646. },
  2647. frontNsfw: {
  2648. height: math.unit(4, "meter"),
  2649. weight: math.unit(150, "kg"),
  2650. name: "Front (NSFW)",
  2651. image: {
  2652. source: "./media/characters/talan/front-nsfw.svg",
  2653. bottom: 29 / 3734
  2654. }
  2655. },
  2656. sideNsfw: {
  2657. height: math.unit(4, "meter"),
  2658. weight: math.unit(150, "kg"),
  2659. name: "Side (NSFW)",
  2660. image: {
  2661. source: "./media/characters/talan/side-nsfw.svg",
  2662. bottom: 29 / 3734
  2663. }
  2664. },
  2665. back: {
  2666. height: math.unit(4, "meter"),
  2667. weight: math.unit(150, "kg"),
  2668. name: "Back",
  2669. image: {
  2670. source: "./media/characters/talan/back.svg"
  2671. }
  2672. },
  2673. dickBottom: {
  2674. height: math.unit(0.621, "meter"),
  2675. name: "Dick (Bottom)",
  2676. image: {
  2677. source: "./media/characters/talan/dick-bottom.svg"
  2678. }
  2679. },
  2680. dickTop: {
  2681. height: math.unit(0.621, "meter"),
  2682. name: "Dick (Top)",
  2683. image: {
  2684. source: "./media/characters/talan/dick-top.svg"
  2685. }
  2686. },
  2687. dickSide: {
  2688. height: math.unit(0.305, "meter"),
  2689. name: "Dick (Side)",
  2690. image: {
  2691. source: "./media/characters/talan/dick-side.svg"
  2692. }
  2693. },
  2694. dickFront: {
  2695. height: math.unit(0.305, "meter"),
  2696. name: "Dick (Front)",
  2697. image: {
  2698. source: "./media/characters/talan/dick-front.svg"
  2699. }
  2700. },
  2701. },
  2702. [
  2703. {
  2704. name: "Normal",
  2705. height: math.unit(4, "meters")
  2706. },
  2707. {
  2708. name: "Macro",
  2709. height: math.unit(100, "meters")
  2710. },
  2711. {
  2712. name: "Megamacro",
  2713. height: math.unit(2, "miles"),
  2714. default: true
  2715. },
  2716. {
  2717. name: "Gigamacro",
  2718. height: math.unit(5000, "miles")
  2719. },
  2720. {
  2721. name: "Teramacro",
  2722. height: math.unit(100, "parsecs")
  2723. }
  2724. ]
  2725. ))
  2726. characterMakers.push(() => makeCharacter(
  2727. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2728. {
  2729. front: {
  2730. height: math.unit(2, "meter"),
  2731. weight: math.unit(90, "kg"),
  2732. name: "Front",
  2733. image: {
  2734. source: "./media/characters/gael'rathus/front.svg"
  2735. }
  2736. },
  2737. frontAlt: {
  2738. height: math.unit(2, "meter"),
  2739. weight: math.unit(90, "kg"),
  2740. name: "Front (alt)",
  2741. image: {
  2742. source: "./media/characters/gael'rathus/front-alt.svg"
  2743. }
  2744. },
  2745. frontAlt2: {
  2746. height: math.unit(2, "meter"),
  2747. weight: math.unit(90, "kg"),
  2748. name: "Front (alt 2)",
  2749. image: {
  2750. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2751. }
  2752. }
  2753. },
  2754. [
  2755. {
  2756. name: "Normal",
  2757. height: math.unit(9, "feet"),
  2758. default: true
  2759. },
  2760. {
  2761. name: "Large",
  2762. height: math.unit(25, "feet")
  2763. },
  2764. {
  2765. name: "Macro",
  2766. height: math.unit(0.25, "miles")
  2767. },
  2768. {
  2769. name: "Megamacro",
  2770. height: math.unit(10, "miles")
  2771. }
  2772. ]
  2773. ))
  2774. characterMakers.push(() => makeCharacter(
  2775. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2776. {
  2777. side: {
  2778. height: math.unit(2, "meter"),
  2779. weight: math.unit(140, "kg"),
  2780. name: "Side",
  2781. image: {
  2782. source: "./media/characters/sosha/side.svg",
  2783. bottom: 0.042
  2784. }
  2785. },
  2786. },
  2787. [
  2788. {
  2789. name: "Normal",
  2790. height: math.unit(12, "feet"),
  2791. default: true
  2792. }
  2793. ]
  2794. ))
  2795. characterMakers.push(() => makeCharacter(
  2796. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2797. {
  2798. side: {
  2799. height: math.unit(5 + 5 / 12, "feet"),
  2800. weight: math.unit(170, "kg"),
  2801. name: "Side",
  2802. image: {
  2803. source: "./media/characters/runnola/side.svg",
  2804. extra: 741 / 448,
  2805. bottom: 0.05
  2806. }
  2807. },
  2808. },
  2809. [
  2810. {
  2811. name: "Small",
  2812. height: math.unit(3, "feet")
  2813. },
  2814. {
  2815. name: "Normal",
  2816. height: math.unit(5 + 5 / 12, "feet"),
  2817. default: true
  2818. },
  2819. {
  2820. name: "Big",
  2821. height: math.unit(10, "feet")
  2822. },
  2823. ]
  2824. ))
  2825. characterMakers.push(() => makeCharacter(
  2826. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2827. {
  2828. front: {
  2829. height: math.unit(2, "meter"),
  2830. weight: math.unit(50, "kg"),
  2831. name: "Front",
  2832. image: {
  2833. source: "./media/characters/kurribird/front.svg",
  2834. bottom: 0.015
  2835. }
  2836. },
  2837. frontAlt: {
  2838. height: math.unit(1.5, "meter"),
  2839. weight: math.unit(50, "kg"),
  2840. name: "Front (Alt)",
  2841. image: {
  2842. source: "./media/characters/kurribird/front-alt.svg",
  2843. extra: 1.45
  2844. }
  2845. },
  2846. },
  2847. [
  2848. {
  2849. name: "Normal",
  2850. height: math.unit(7, "feet")
  2851. },
  2852. {
  2853. name: "Big",
  2854. height: math.unit(12, "feet"),
  2855. default: true
  2856. },
  2857. {
  2858. name: "Macro",
  2859. height: math.unit(1500, "feet")
  2860. },
  2861. {
  2862. name: "Megamacro",
  2863. height: math.unit(2, "miles")
  2864. }
  2865. ]
  2866. ))
  2867. characterMakers.push(() => makeCharacter(
  2868. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2869. {
  2870. front: {
  2871. height: math.unit(2, "meter"),
  2872. weight: math.unit(80, "kg"),
  2873. name: "Front",
  2874. image: {
  2875. source: "./media/characters/elbial/front.svg",
  2876. extra: 1643 / 1556,
  2877. bottom: 60.2 / 1696
  2878. }
  2879. },
  2880. side: {
  2881. height: math.unit(2, "meter"),
  2882. weight: math.unit(80, "kg"),
  2883. name: "Side",
  2884. image: {
  2885. source: "./media/characters/elbial/side.svg",
  2886. extra: 1630 / 1565,
  2887. bottom: 71.5 / 1697
  2888. }
  2889. },
  2890. back: {
  2891. height: math.unit(2, "meter"),
  2892. weight: math.unit(80, "kg"),
  2893. name: "Back",
  2894. image: {
  2895. source: "./media/characters/elbial/back.svg",
  2896. extra: 1668 / 1595,
  2897. bottom: 5.6 / 1672
  2898. }
  2899. },
  2900. frontDressed: {
  2901. height: math.unit(2, "meter"),
  2902. weight: math.unit(80, "kg"),
  2903. name: "Front (Dressed)",
  2904. image: {
  2905. source: "./media/characters/elbial/front-dressed.svg",
  2906. extra: 1653 / 1584,
  2907. bottom: 57 / 1708
  2908. }
  2909. },
  2910. genitals: {
  2911. height: math.unit(2 / 3.367, "meter"),
  2912. name: "Genitals",
  2913. image: {
  2914. source: "./media/characters/elbial/genitals.svg"
  2915. }
  2916. },
  2917. },
  2918. [
  2919. {
  2920. name: "Large",
  2921. height: math.unit(100, "feet")
  2922. },
  2923. {
  2924. name: "Macro",
  2925. height: math.unit(500, "feet"),
  2926. default: true
  2927. },
  2928. {
  2929. name: "Megamacro",
  2930. height: math.unit(10, "miles")
  2931. },
  2932. {
  2933. name: "Gigamacro",
  2934. height: math.unit(25000, "miles")
  2935. },
  2936. {
  2937. name: "Full-Size",
  2938. height: math.unit(8000000, "gigaparsecs")
  2939. }
  2940. ]
  2941. ))
  2942. characterMakers.push(() => makeCharacter(
  2943. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2944. {
  2945. front: {
  2946. height: math.unit(2, "meter"),
  2947. weight: math.unit(60, "kg"),
  2948. name: "Front",
  2949. image: {
  2950. source: "./media/characters/noah/front.svg"
  2951. }
  2952. },
  2953. talons: {
  2954. height: math.unit(0.315, "meter"),
  2955. name: "Talons",
  2956. image: {
  2957. source: "./media/characters/noah/talons.svg"
  2958. }
  2959. }
  2960. },
  2961. [
  2962. {
  2963. name: "Large",
  2964. height: math.unit(50, "feet")
  2965. },
  2966. {
  2967. name: "Macro",
  2968. height: math.unit(750, "feet"),
  2969. default: true
  2970. },
  2971. {
  2972. name: "Megamacro",
  2973. height: math.unit(50, "miles")
  2974. },
  2975. {
  2976. name: "Gigamacro",
  2977. height: math.unit(100000, "miles")
  2978. },
  2979. {
  2980. name: "Full-Size",
  2981. height: math.unit(3000000000, "miles")
  2982. }
  2983. ]
  2984. ))
  2985. characterMakers.push(() => makeCharacter(
  2986. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2987. {
  2988. front: {
  2989. height: math.unit(2, "meter"),
  2990. weight: math.unit(80, "kg"),
  2991. name: "Front",
  2992. image: {
  2993. source: "./media/characters/natalya/front.svg"
  2994. }
  2995. },
  2996. back: {
  2997. height: math.unit(2, "meter"),
  2998. weight: math.unit(80, "kg"),
  2999. name: "Back",
  3000. image: {
  3001. source: "./media/characters/natalya/back.svg"
  3002. }
  3003. }
  3004. },
  3005. [
  3006. {
  3007. name: "Normal",
  3008. height: math.unit(150, "feet"),
  3009. default: true
  3010. },
  3011. {
  3012. name: "Megamacro",
  3013. height: math.unit(5, "miles")
  3014. },
  3015. {
  3016. name: "Full-Size",
  3017. height: math.unit(600, "kiloparsecs")
  3018. }
  3019. ]
  3020. ))
  3021. characterMakers.push(() => makeCharacter(
  3022. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3023. {
  3024. front: {
  3025. height: math.unit(2, "meter"),
  3026. weight: math.unit(50, "kg"),
  3027. name: "Front",
  3028. image: {
  3029. source: "./media/characters/erestrebah/front.svg",
  3030. extra: 208 / 193,
  3031. bottom: 0.055
  3032. }
  3033. },
  3034. back: {
  3035. height: math.unit(2, "meter"),
  3036. weight: math.unit(50, "kg"),
  3037. name: "Back",
  3038. image: {
  3039. source: "./media/characters/erestrebah/back.svg",
  3040. extra: 1.3
  3041. }
  3042. }
  3043. },
  3044. [
  3045. {
  3046. name: "Normal",
  3047. height: math.unit(10, "feet")
  3048. },
  3049. {
  3050. name: "Large",
  3051. height: math.unit(50, "feet"),
  3052. default: true
  3053. },
  3054. {
  3055. name: "Macro",
  3056. height: math.unit(300, "feet")
  3057. },
  3058. {
  3059. name: "Macro+",
  3060. height: math.unit(750, "feet")
  3061. },
  3062. {
  3063. name: "Megamacro",
  3064. height: math.unit(3, "miles")
  3065. }
  3066. ]
  3067. ))
  3068. characterMakers.push(() => makeCharacter(
  3069. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3070. {
  3071. front: {
  3072. height: math.unit(2, "meter"),
  3073. weight: math.unit(80, "kg"),
  3074. name: "Front",
  3075. image: {
  3076. source: "./media/characters/jennifer/front.svg",
  3077. bottom: 0.11,
  3078. extra: 1.16
  3079. }
  3080. },
  3081. frontAlt: {
  3082. height: math.unit(2, "meter"),
  3083. weight: math.unit(80, "kg"),
  3084. name: "Front (Alt)",
  3085. image: {
  3086. source: "./media/characters/jennifer/front-alt.svg"
  3087. }
  3088. }
  3089. },
  3090. [
  3091. {
  3092. name: "Canon Height",
  3093. height: math.unit(120, "feet"),
  3094. default: true
  3095. },
  3096. {
  3097. name: "Macro+",
  3098. height: math.unit(300, "feet")
  3099. },
  3100. {
  3101. name: "Megamacro",
  3102. height: math.unit(20000, "feet")
  3103. }
  3104. ]
  3105. ))
  3106. characterMakers.push(() => makeCharacter(
  3107. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3108. {
  3109. front: {
  3110. height: math.unit(2, "meter"),
  3111. weight: math.unit(50, "kg"),
  3112. name: "Front",
  3113. image: {
  3114. source: "./media/characters/kalista/front.svg",
  3115. extra: 1947 / 1700,
  3116. bottom: 76.6 / 1412.98
  3117. }
  3118. },
  3119. back: {
  3120. height: math.unit(2, "meter"),
  3121. weight: math.unit(50, "kg"),
  3122. name: "Back",
  3123. image: {
  3124. source: "./media/characters/kalista/back.svg",
  3125. extra: 1366 / 1156,
  3126. bottom: 33.9 / 1362.78
  3127. }
  3128. }
  3129. },
  3130. [
  3131. {
  3132. name: "Uncomfortably Small",
  3133. height: math.unit(10, "feet")
  3134. },
  3135. {
  3136. name: "Small",
  3137. height: math.unit(30, "feet")
  3138. },
  3139. {
  3140. name: "Macro",
  3141. height: math.unit(100, "feet"),
  3142. default: true
  3143. },
  3144. {
  3145. name: "Macro+",
  3146. height: math.unit(2000, "feet")
  3147. },
  3148. {
  3149. name: "True Form",
  3150. height: math.unit(8924, "miles")
  3151. }
  3152. ]
  3153. ))
  3154. characterMakers.push(() => makeCharacter(
  3155. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3156. {
  3157. front: {
  3158. height: math.unit(2, "meter"),
  3159. weight: math.unit(120, "kg"),
  3160. name: "Front",
  3161. image: {
  3162. source: "./media/characters/ggv/front.svg"
  3163. }
  3164. },
  3165. side: {
  3166. height: math.unit(2, "meter"),
  3167. weight: math.unit(120, "kg"),
  3168. name: "Side",
  3169. image: {
  3170. source: "./media/characters/ggv/side.svg"
  3171. }
  3172. }
  3173. },
  3174. [
  3175. {
  3176. name: "Extremely Puny",
  3177. height: math.unit(9 + 5 / 12, "feet")
  3178. },
  3179. {
  3180. name: "Horribly Small",
  3181. height: math.unit(47.7, "miles"),
  3182. default: true
  3183. },
  3184. {
  3185. name: "Reasonably Sized",
  3186. height: math.unit(25000, "parsecs")
  3187. },
  3188. {
  3189. name: "Slightly Uncompressed",
  3190. height: math.unit(7.77e31, "parsecs")
  3191. },
  3192. {
  3193. name: "Omniversal",
  3194. height: math.unit(1e300, "meters")
  3195. },
  3196. ]
  3197. ))
  3198. characterMakers.push(() => makeCharacter(
  3199. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3200. {
  3201. front: {
  3202. height: math.unit(2, "meter"),
  3203. weight: math.unit(75, "lb"),
  3204. name: "Front",
  3205. image: {
  3206. source: "./media/characters/napalm/front.svg"
  3207. }
  3208. },
  3209. back: {
  3210. height: math.unit(2, "meter"),
  3211. weight: math.unit(75, "lb"),
  3212. name: "Back",
  3213. image: {
  3214. source: "./media/characters/napalm/back.svg"
  3215. }
  3216. }
  3217. },
  3218. [
  3219. {
  3220. name: "Standard",
  3221. height: math.unit(55, "feet"),
  3222. default: true
  3223. }
  3224. ]
  3225. ))
  3226. characterMakers.push(() => makeCharacter(
  3227. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3228. {
  3229. front: {
  3230. height: math.unit(7 + 5 / 6, "feet"),
  3231. weight: math.unit(325, "lb"),
  3232. name: "Front",
  3233. image: {
  3234. source: "./media/characters/asana/front.svg",
  3235. extra: 1133 / 1060,
  3236. bottom: 15.2 / 1148.6
  3237. }
  3238. },
  3239. back: {
  3240. height: math.unit(7 + 5 / 6, "feet"),
  3241. weight: math.unit(325, "lb"),
  3242. name: "Back",
  3243. image: {
  3244. source: "./media/characters/asana/back.svg",
  3245. extra: 1114 / 1043,
  3246. bottom: 5 / 1120
  3247. }
  3248. },
  3249. dressedDark: {
  3250. height: math.unit(7 + 5 / 6, "feet"),
  3251. weight: math.unit(325, "lb"),
  3252. name: "Dressed (Dark)",
  3253. image: {
  3254. source: "./media/characters/asana/dressed-dark.svg",
  3255. extra: 1133 / 1060,
  3256. bottom: 15.2 / 1148.6
  3257. }
  3258. },
  3259. dressedLight: {
  3260. height: math.unit(7 + 5 / 6, "feet"),
  3261. weight: math.unit(325, "lb"),
  3262. name: "Dressed (Light)",
  3263. image: {
  3264. source: "./media/characters/asana/dressed-light.svg",
  3265. extra: 1133 / 1060,
  3266. bottom: 15.2 / 1148.6
  3267. }
  3268. },
  3269. },
  3270. [
  3271. {
  3272. name: "Standard",
  3273. height: math.unit(7 + 5 / 6, "feet"),
  3274. default: true
  3275. },
  3276. {
  3277. name: "Large",
  3278. height: math.unit(10, "meters")
  3279. },
  3280. {
  3281. name: "Macro",
  3282. height: math.unit(2500, "meters")
  3283. },
  3284. {
  3285. name: "Megamacro",
  3286. height: math.unit(5e6, "meters")
  3287. },
  3288. {
  3289. name: "Examacro",
  3290. height: math.unit(5e12, "lightyears")
  3291. },
  3292. {
  3293. name: "Max Size",
  3294. height: math.unit(1e31, "lightyears")
  3295. }
  3296. ]
  3297. ))
  3298. characterMakers.push(() => makeCharacter(
  3299. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3300. {
  3301. front: {
  3302. height: math.unit(2, "meter"),
  3303. weight: math.unit(60, "kg"),
  3304. name: "Front",
  3305. image: {
  3306. source: "./media/characters/ebony/front.svg",
  3307. bottom: 0.03,
  3308. extra: 1045 / 810 + 0.03
  3309. }
  3310. },
  3311. side: {
  3312. height: math.unit(2, "meter"),
  3313. weight: math.unit(60, "kg"),
  3314. name: "Side",
  3315. image: {
  3316. source: "./media/characters/ebony/side.svg",
  3317. bottom: 0.03,
  3318. extra: 1045 / 810 + 0.03
  3319. }
  3320. },
  3321. back: {
  3322. height: math.unit(2, "meter"),
  3323. weight: math.unit(60, "kg"),
  3324. name: "Back",
  3325. image: {
  3326. source: "./media/characters/ebony/back.svg",
  3327. bottom: 0.01,
  3328. extra: 1045 / 810 + 0.01
  3329. }
  3330. },
  3331. },
  3332. [
  3333. // TODO check why I did this lol
  3334. {
  3335. name: "Standard",
  3336. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3337. default: true
  3338. },
  3339. {
  3340. name: "Macro",
  3341. height: math.unit(200, "feet")
  3342. },
  3343. {
  3344. name: "Gigamacro",
  3345. height: math.unit(13000, "km")
  3346. }
  3347. ]
  3348. ))
  3349. characterMakers.push(() => makeCharacter(
  3350. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3351. {
  3352. front: {
  3353. height: math.unit(6, "feet"),
  3354. weight: math.unit(175, "lb"),
  3355. name: "Front",
  3356. image: {
  3357. source: "./media/characters/mountain/front.svg",
  3358. extra: 972 / 955,
  3359. bottom: 64 / 1036.6
  3360. }
  3361. },
  3362. back: {
  3363. height: math.unit(6, "feet"),
  3364. weight: math.unit(175, "lb"),
  3365. name: "Back",
  3366. image: {
  3367. source: "./media/characters/mountain/back.svg",
  3368. extra: 970 / 950,
  3369. bottom: 28.25 / 999
  3370. }
  3371. },
  3372. },
  3373. [
  3374. {
  3375. name: "Large",
  3376. height: math.unit(20, "meters")
  3377. },
  3378. {
  3379. name: "Macro",
  3380. height: math.unit(300, "meters")
  3381. },
  3382. {
  3383. name: "Gigamacro",
  3384. height: math.unit(10000, "km"),
  3385. default: true
  3386. },
  3387. {
  3388. name: "Examacro",
  3389. height: math.unit(10e9, "lightyears")
  3390. }
  3391. ]
  3392. ))
  3393. characterMakers.push(() => makeCharacter(
  3394. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3395. {
  3396. front: {
  3397. height: math.unit(8, "feet"),
  3398. weight: math.unit(500, "lb"),
  3399. name: "Front",
  3400. image: {
  3401. source: "./media/characters/rick/front.svg"
  3402. }
  3403. }
  3404. },
  3405. [
  3406. {
  3407. name: "Normal",
  3408. height: math.unit(8, "feet"),
  3409. default: true
  3410. },
  3411. {
  3412. name: "Macro",
  3413. height: math.unit(5, "km")
  3414. }
  3415. ]
  3416. ))
  3417. characterMakers.push(() => makeCharacter(
  3418. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3419. {
  3420. front: {
  3421. height: math.unit(8, "feet"),
  3422. weight: math.unit(120, "lb"),
  3423. name: "Front",
  3424. image: {
  3425. source: "./media/characters/ona/front.svg"
  3426. }
  3427. },
  3428. frontAlt: {
  3429. height: math.unit(8, "feet"),
  3430. weight: math.unit(120, "lb"),
  3431. name: "Front (Alt)",
  3432. image: {
  3433. source: "./media/characters/ona/front-alt.svg"
  3434. }
  3435. },
  3436. back: {
  3437. height: math.unit(8, "feet"),
  3438. weight: math.unit(120, "lb"),
  3439. name: "Back",
  3440. image: {
  3441. source: "./media/characters/ona/back.svg"
  3442. }
  3443. },
  3444. foot: {
  3445. height: math.unit(1.1, "feet"),
  3446. name: "Foot",
  3447. image: {
  3448. source: "./media/characters/ona/foot.svg"
  3449. }
  3450. }
  3451. },
  3452. [
  3453. {
  3454. name: "Megamacro",
  3455. height: math.unit(70, "km"),
  3456. default: true
  3457. },
  3458. {
  3459. name: "Gigamacro",
  3460. height: math.unit(681818, "miles")
  3461. },
  3462. {
  3463. name: "Examacro",
  3464. height: math.unit(3800000, "lightyears")
  3465. },
  3466. ]
  3467. ))
  3468. characterMakers.push(() => makeCharacter(
  3469. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3470. {
  3471. front: {
  3472. height: math.unit(12, "feet"),
  3473. weight: math.unit(3000, "lb"),
  3474. name: "Front",
  3475. image: {
  3476. source: "./media/characters/mech/front.svg",
  3477. extra: 2900 / 2770,
  3478. bottom: 110 / 3010
  3479. }
  3480. },
  3481. back: {
  3482. height: math.unit(12, "feet"),
  3483. weight: math.unit(3000, "lb"),
  3484. name: "Back",
  3485. image: {
  3486. source: "./media/characters/mech/back.svg",
  3487. extra: 3011 / 2890,
  3488. bottom: 94 / 3105
  3489. }
  3490. },
  3491. maw: {
  3492. height: math.unit(3.07, "feet"),
  3493. name: "Maw",
  3494. image: {
  3495. source: "./media/characters/mech/maw.svg"
  3496. }
  3497. },
  3498. head: {
  3499. height: math.unit(2.82, "feet"),
  3500. name: "Head",
  3501. image: {
  3502. source: "./media/characters/mech/head.svg"
  3503. }
  3504. },
  3505. dick: {
  3506. height: math.unit(1.43, "feet"),
  3507. name: "Dick",
  3508. image: {
  3509. source: "./media/characters/mech/dick.svg"
  3510. }
  3511. },
  3512. },
  3513. [
  3514. {
  3515. name: "Normal",
  3516. height: math.unit(12, "feet")
  3517. },
  3518. {
  3519. name: "Macro",
  3520. height: math.unit(300, "feet"),
  3521. default: true
  3522. },
  3523. {
  3524. name: "Macro+",
  3525. height: math.unit(1500, "feet")
  3526. },
  3527. ]
  3528. ))
  3529. characterMakers.push(() => makeCharacter(
  3530. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3531. {
  3532. front: {
  3533. height: math.unit(1.3, "meter"),
  3534. weight: math.unit(30, "kg"),
  3535. name: "Front",
  3536. image: {
  3537. source: "./media/characters/gregory/front.svg",
  3538. }
  3539. }
  3540. },
  3541. [
  3542. {
  3543. name: "Normal",
  3544. height: math.unit(1.3, "meter"),
  3545. default: true
  3546. },
  3547. {
  3548. name: "Macro",
  3549. height: math.unit(20, "meter")
  3550. }
  3551. ]
  3552. ))
  3553. characterMakers.push(() => makeCharacter(
  3554. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3555. {
  3556. front: {
  3557. height: math.unit(2.8, "meter"),
  3558. weight: math.unit(200, "kg"),
  3559. name: "Front",
  3560. image: {
  3561. source: "./media/characters/elory/front.svg",
  3562. }
  3563. }
  3564. },
  3565. [
  3566. {
  3567. name: "Normal",
  3568. height: math.unit(2.8, "meter"),
  3569. default: true
  3570. },
  3571. {
  3572. name: "Macro",
  3573. height: math.unit(38, "meter")
  3574. }
  3575. ]
  3576. ))
  3577. characterMakers.push(() => makeCharacter(
  3578. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3579. {
  3580. front: {
  3581. height: math.unit(470, "feet"),
  3582. weight: math.unit(924, "tons"),
  3583. name: "Front",
  3584. image: {
  3585. source: "./media/characters/angelpatamon/front.svg",
  3586. }
  3587. }
  3588. },
  3589. [
  3590. {
  3591. name: "Normal",
  3592. height: math.unit(470, "feet"),
  3593. default: true
  3594. },
  3595. {
  3596. name: "Deity Size I",
  3597. height: math.unit(28651.2, "km")
  3598. },
  3599. {
  3600. name: "Deity Size II",
  3601. height: math.unit(171907.2, "km")
  3602. }
  3603. ]
  3604. ))
  3605. characterMakers.push(() => makeCharacter(
  3606. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3607. {
  3608. side: {
  3609. height: math.unit(7.2, "meter"),
  3610. weight: math.unit(8.2, "tons"),
  3611. name: "Side",
  3612. image: {
  3613. source: "./media/characters/cryae/side.svg",
  3614. extra: 3500 / 1500
  3615. }
  3616. }
  3617. },
  3618. [
  3619. {
  3620. name: "Normal",
  3621. height: math.unit(7.2, "meter"),
  3622. default: true
  3623. }
  3624. ]
  3625. ))
  3626. characterMakers.push(() => makeCharacter(
  3627. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3628. {
  3629. front: {
  3630. height: math.unit(6, "feet"),
  3631. weight: math.unit(175, "lb"),
  3632. name: "Front",
  3633. image: {
  3634. source: "./media/characters/xera/front.svg",
  3635. extra: 2377 / 1972,
  3636. bottom: 75.5 / 2452
  3637. }
  3638. },
  3639. side: {
  3640. height: math.unit(6, "feet"),
  3641. weight: math.unit(175, "lb"),
  3642. name: "Side",
  3643. image: {
  3644. source: "./media/characters/xera/side.svg",
  3645. extra: 2345 / 2019,
  3646. bottom: 39.7 / 2384
  3647. }
  3648. },
  3649. back: {
  3650. height: math.unit(6, "feet"),
  3651. weight: math.unit(175, "lb"),
  3652. name: "Back",
  3653. image: {
  3654. source: "./media/characters/xera/back.svg",
  3655. extra: 2095 / 1984,
  3656. bottom: 67 / 2166
  3657. }
  3658. },
  3659. },
  3660. [
  3661. {
  3662. name: "Small",
  3663. height: math.unit(10, "feet")
  3664. },
  3665. {
  3666. name: "Macro",
  3667. height: math.unit(500, "meters"),
  3668. default: true
  3669. },
  3670. {
  3671. name: "Macro+",
  3672. height: math.unit(10, "km")
  3673. },
  3674. {
  3675. name: "Gigamacro",
  3676. height: math.unit(25000, "km")
  3677. },
  3678. {
  3679. name: "Teramacro",
  3680. height: math.unit(3e6, "km")
  3681. }
  3682. ]
  3683. ))
  3684. characterMakers.push(() => makeCharacter(
  3685. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3686. {
  3687. front: {
  3688. height: math.unit(6, "feet"),
  3689. weight: math.unit(175, "lb"),
  3690. name: "Front",
  3691. image: {
  3692. source: "./media/characters/nebula/front.svg",
  3693. extra: 2566 / 2362,
  3694. bottom: 81 / 2644
  3695. }
  3696. }
  3697. },
  3698. [
  3699. {
  3700. name: "Small",
  3701. height: math.unit(4.5, "meters")
  3702. },
  3703. {
  3704. name: "Macro",
  3705. height: math.unit(1500, "meters"),
  3706. default: true
  3707. },
  3708. {
  3709. name: "Megamacro",
  3710. height: math.unit(150, "km")
  3711. },
  3712. {
  3713. name: "Gigamacro",
  3714. height: math.unit(27000, "km")
  3715. }
  3716. ]
  3717. ))
  3718. characterMakers.push(() => makeCharacter(
  3719. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3720. {
  3721. front: {
  3722. height: math.unit(6, "feet"),
  3723. weight: math.unit(225, "lb"),
  3724. name: "Front",
  3725. image: {
  3726. source: "./media/characters/abysgar/front.svg"
  3727. }
  3728. }
  3729. },
  3730. [
  3731. {
  3732. name: "Small",
  3733. height: math.unit(4.5, "meters")
  3734. },
  3735. {
  3736. name: "Macro",
  3737. height: math.unit(1250, "meters"),
  3738. default: true
  3739. },
  3740. {
  3741. name: "Megamacro",
  3742. height: math.unit(125, "km")
  3743. },
  3744. {
  3745. name: "Gigamacro",
  3746. height: math.unit(26000, "km")
  3747. }
  3748. ]
  3749. ))
  3750. characterMakers.push(() => makeCharacter(
  3751. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3752. {
  3753. front: {
  3754. height: math.unit(6, "feet"),
  3755. weight: math.unit(180, "lb"),
  3756. name: "Front",
  3757. image: {
  3758. source: "./media/characters/yakuz/front.svg"
  3759. }
  3760. }
  3761. },
  3762. [
  3763. {
  3764. name: "Small",
  3765. height: math.unit(5, "meters")
  3766. },
  3767. {
  3768. name: "Macro",
  3769. height: math.unit(1500, "meters"),
  3770. default: true
  3771. },
  3772. {
  3773. name: "Megamacro",
  3774. height: math.unit(200, "km")
  3775. },
  3776. {
  3777. name: "Gigamacro",
  3778. height: math.unit(100000, "km")
  3779. }
  3780. ]
  3781. ))
  3782. characterMakers.push(() => makeCharacter(
  3783. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3784. {
  3785. front: {
  3786. height: math.unit(6, "feet"),
  3787. weight: math.unit(175, "lb"),
  3788. name: "Front",
  3789. image: {
  3790. source: "./media/characters/mirova/front.svg",
  3791. extra: 3334 / 3071,
  3792. bottom: 42 / 3375.6
  3793. }
  3794. }
  3795. },
  3796. [
  3797. {
  3798. name: "Small",
  3799. height: math.unit(5, "meters")
  3800. },
  3801. {
  3802. name: "Macro",
  3803. height: math.unit(900, "meters"),
  3804. default: true
  3805. },
  3806. {
  3807. name: "Megamacro",
  3808. height: math.unit(135, "km")
  3809. },
  3810. {
  3811. name: "Gigamacro",
  3812. height: math.unit(20000, "km")
  3813. }
  3814. ]
  3815. ))
  3816. characterMakers.push(() => makeCharacter(
  3817. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3818. {
  3819. side: {
  3820. height: math.unit(28.35, "feet"),
  3821. weight: math.unit(99.75, "tons"),
  3822. name: "Side",
  3823. image: {
  3824. source: "./media/characters/asana-mech/side.svg",
  3825. extra: 923 / 699,
  3826. bottom: 50 / 975
  3827. }
  3828. },
  3829. chaingun: {
  3830. height: math.unit(7, "feet"),
  3831. weight: math.unit(2400, "lb"),
  3832. name: "Chaingun",
  3833. image: {
  3834. source: "./media/characters/asana-mech/chaingun.svg"
  3835. }
  3836. },
  3837. laser: {
  3838. height: math.unit(7.12, "feet"),
  3839. weight: math.unit(2000, "lb"),
  3840. name: "Laser",
  3841. image: {
  3842. source: "./media/characters/asana-mech/laser.svg"
  3843. }
  3844. },
  3845. },
  3846. [
  3847. {
  3848. name: "Normal",
  3849. height: math.unit(28.35, "feet"),
  3850. default: true
  3851. },
  3852. {
  3853. name: "Macro",
  3854. height: math.unit(2500, "feet")
  3855. },
  3856. {
  3857. name: "Megamacro",
  3858. height: math.unit(25, "miles")
  3859. },
  3860. {
  3861. name: "Examacro",
  3862. height: math.unit(6e8, "lightyears")
  3863. },
  3864. ]
  3865. ))
  3866. characterMakers.push(() => makeCharacter(
  3867. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3868. {
  3869. front: {
  3870. height: math.unit(5, "meters"),
  3871. weight: math.unit(1000, "kg"),
  3872. name: "Front",
  3873. image: {
  3874. source: "./media/characters/asche/front.svg",
  3875. extra: 1258 / 1190,
  3876. bottom: 47 / 1305
  3877. }
  3878. },
  3879. frontUnderwear: {
  3880. height: math.unit(5, "meters"),
  3881. weight: math.unit(1000, "kg"),
  3882. name: "Front (Underwear)",
  3883. image: {
  3884. source: "./media/characters/asche/front-underwear.svg",
  3885. extra: 1258 / 1190,
  3886. bottom: 47 / 1305
  3887. }
  3888. },
  3889. frontDressed: {
  3890. height: math.unit(5, "meters"),
  3891. weight: math.unit(1000, "kg"),
  3892. name: "Front (Dressed)",
  3893. image: {
  3894. source: "./media/characters/asche/front-dressed.svg",
  3895. extra: 1258 / 1190,
  3896. bottom: 47 / 1305
  3897. }
  3898. },
  3899. frontArmor: {
  3900. height: math.unit(5, "meters"),
  3901. weight: math.unit(1000, "kg"),
  3902. name: "Front (Armored)",
  3903. image: {
  3904. source: "./media/characters/asche/front-armored.svg",
  3905. extra: 1374 / 1308,
  3906. bottom: 23 / 1397
  3907. }
  3908. },
  3909. mp724: {
  3910. height: math.unit(0.96, "meters"),
  3911. weight: math.unit(38, "kg"),
  3912. name: "H&K MP724",
  3913. image: {
  3914. source: "./media/characters/asche/h&k-mp724.svg"
  3915. }
  3916. },
  3917. side: {
  3918. height: math.unit(5, "meters"),
  3919. weight: math.unit(1000, "kg"),
  3920. name: "Side",
  3921. image: {
  3922. source: "./media/characters/asche/side.svg",
  3923. extra: 1717 / 1609,
  3924. bottom: 0.005
  3925. }
  3926. },
  3927. back: {
  3928. height: math.unit(5, "meters"),
  3929. weight: math.unit(1000, "kg"),
  3930. name: "Back",
  3931. image: {
  3932. source: "./media/characters/asche/back.svg",
  3933. extra: 1570 / 1501
  3934. }
  3935. },
  3936. },
  3937. [
  3938. {
  3939. name: "DEFCON 5",
  3940. height: math.unit(5, "meters")
  3941. },
  3942. {
  3943. name: "DEFCON 4",
  3944. height: math.unit(500, "meters"),
  3945. default: true
  3946. },
  3947. {
  3948. name: "DEFCON 3",
  3949. height: math.unit(5, "km")
  3950. },
  3951. {
  3952. name: "DEFCON 2",
  3953. height: math.unit(500, "km")
  3954. },
  3955. {
  3956. name: "DEFCON 1",
  3957. height: math.unit(500000, "km")
  3958. },
  3959. {
  3960. name: "DEFCON 0",
  3961. height: math.unit(3, "gigaparsecs")
  3962. },
  3963. ]
  3964. ))
  3965. characterMakers.push(() => makeCharacter(
  3966. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3967. {
  3968. front: {
  3969. height: math.unit(2, "meters"),
  3970. weight: math.unit(76, "kg"),
  3971. name: "Front",
  3972. image: {
  3973. source: "./media/characters/gale/front.svg"
  3974. }
  3975. },
  3976. frontAlt1: {
  3977. height: math.unit(2, "meters"),
  3978. weight: math.unit(76, "kg"),
  3979. name: "Front (Alt 1)",
  3980. image: {
  3981. source: "./media/characters/gale/front-alt-1.svg"
  3982. }
  3983. },
  3984. frontAlt2: {
  3985. height: math.unit(2, "meters"),
  3986. weight: math.unit(76, "kg"),
  3987. name: "Front (Alt 2)",
  3988. image: {
  3989. source: "./media/characters/gale/front-alt-2.svg"
  3990. }
  3991. },
  3992. },
  3993. [
  3994. {
  3995. name: "Normal",
  3996. height: math.unit(7, "feet")
  3997. },
  3998. {
  3999. name: "Macro",
  4000. height: math.unit(150, "feet"),
  4001. default: true
  4002. },
  4003. {
  4004. name: "Macro+",
  4005. height: math.unit(300, "feet")
  4006. },
  4007. ]
  4008. ))
  4009. characterMakers.push(() => makeCharacter(
  4010. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4011. {
  4012. front: {
  4013. height: math.unit(2, "meters"),
  4014. weight: math.unit(76, "kg"),
  4015. name: "Front",
  4016. image: {
  4017. source: "./media/characters/draylen/front.svg"
  4018. }
  4019. }
  4020. },
  4021. [
  4022. {
  4023. name: "Macro",
  4024. height: math.unit(150, "feet"),
  4025. default: true
  4026. }
  4027. ]
  4028. ))
  4029. characterMakers.push(() => makeCharacter(
  4030. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4031. {
  4032. front: {
  4033. height: math.unit(7 + 9 / 12, "feet"),
  4034. weight: math.unit(379, "lbs"),
  4035. name: "Front",
  4036. image: {
  4037. source: "./media/characters/chez/front.svg"
  4038. }
  4039. },
  4040. side: {
  4041. height: math.unit(7 + 9 / 12, "feet"),
  4042. weight: math.unit(379, "lbs"),
  4043. name: "Side",
  4044. image: {
  4045. source: "./media/characters/chez/side.svg"
  4046. }
  4047. }
  4048. },
  4049. [
  4050. {
  4051. name: "Normal",
  4052. height: math.unit(7 + 9 / 12, "feet"),
  4053. default: true
  4054. },
  4055. {
  4056. name: "God King",
  4057. height: math.unit(9750000, "meters")
  4058. }
  4059. ]
  4060. ))
  4061. characterMakers.push(() => makeCharacter(
  4062. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4063. {
  4064. front: {
  4065. height: math.unit(6, "feet"),
  4066. weight: math.unit(275, "lbs"),
  4067. name: "Front",
  4068. image: {
  4069. source: "./media/characters/kaylum/front.svg",
  4070. bottom: 0.01,
  4071. extra: 1166 / 1031
  4072. }
  4073. },
  4074. frontWingless: {
  4075. height: math.unit(6, "feet"),
  4076. weight: math.unit(275, "lbs"),
  4077. name: "Front (Wingless)",
  4078. image: {
  4079. source: "./media/characters/kaylum/front-wingless.svg",
  4080. bottom: 0.01,
  4081. extra: 1117 / 1031
  4082. }
  4083. }
  4084. },
  4085. [
  4086. {
  4087. name: "Normal",
  4088. height: math.unit(3.05, "meters")
  4089. },
  4090. {
  4091. name: "Master",
  4092. height: math.unit(5.5, "meters")
  4093. },
  4094. {
  4095. name: "Rampage",
  4096. height: math.unit(19, "meters")
  4097. },
  4098. {
  4099. name: "Macro Lite",
  4100. height: math.unit(37, "meters")
  4101. },
  4102. {
  4103. name: "Hyper Predator",
  4104. height: math.unit(61, "meters")
  4105. },
  4106. {
  4107. name: "Macro",
  4108. height: math.unit(138, "meters"),
  4109. default: true
  4110. }
  4111. ]
  4112. ))
  4113. characterMakers.push(() => makeCharacter(
  4114. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4115. {
  4116. front: {
  4117. height: math.unit(6, "feet"),
  4118. weight: math.unit(150, "lbs"),
  4119. name: "Front",
  4120. image: {
  4121. source: "./media/characters/geta/front.svg"
  4122. }
  4123. }
  4124. },
  4125. [
  4126. {
  4127. name: "Micro",
  4128. height: math.unit(3, "inches"),
  4129. default: true
  4130. },
  4131. {
  4132. name: "Normal",
  4133. height: math.unit(5 + 5 / 12, "feet")
  4134. }
  4135. ]
  4136. ))
  4137. characterMakers.push(() => makeCharacter(
  4138. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4139. {
  4140. front: {
  4141. height: math.unit(6, "feet"),
  4142. weight: math.unit(300, "lbs"),
  4143. name: "Front",
  4144. image: {
  4145. source: "./media/characters/tyrnn/front.svg"
  4146. }
  4147. }
  4148. },
  4149. [
  4150. {
  4151. name: "Main Height",
  4152. height: math.unit(355, "feet"),
  4153. default: true
  4154. },
  4155. {
  4156. name: "Fave. Height",
  4157. height: math.unit(2400, "feet")
  4158. }
  4159. ]
  4160. ))
  4161. characterMakers.push(() => makeCharacter(
  4162. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4163. {
  4164. front: {
  4165. height: math.unit(6, "feet"),
  4166. weight: math.unit(300, "lbs"),
  4167. name: "Front",
  4168. image: {
  4169. source: "./media/characters/appledectomy/front.svg"
  4170. }
  4171. }
  4172. },
  4173. [
  4174. {
  4175. name: "Macro",
  4176. height: math.unit(2500, "feet")
  4177. },
  4178. {
  4179. name: "Megamacro",
  4180. height: math.unit(50, "miles"),
  4181. default: true
  4182. },
  4183. {
  4184. name: "Gigamacro",
  4185. height: math.unit(5000, "miles")
  4186. },
  4187. {
  4188. name: "Teramacro",
  4189. height: math.unit(250000, "miles")
  4190. },
  4191. ]
  4192. ))
  4193. characterMakers.push(() => makeCharacter(
  4194. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4195. {
  4196. front: {
  4197. height: math.unit(6, "feet"),
  4198. weight: math.unit(200, "lbs"),
  4199. name: "Front",
  4200. image: {
  4201. source: "./media/characters/vulpes/front.svg",
  4202. extra: 573 / 543,
  4203. bottom: 0.033
  4204. }
  4205. },
  4206. side: {
  4207. height: math.unit(6, "feet"),
  4208. weight: math.unit(200, "lbs"),
  4209. name: "Side",
  4210. image: {
  4211. source: "./media/characters/vulpes/side.svg",
  4212. extra: 577 / 549,
  4213. bottom: 11 / 588
  4214. }
  4215. },
  4216. back: {
  4217. height: math.unit(6, "feet"),
  4218. weight: math.unit(200, "lbs"),
  4219. name: "Back",
  4220. image: {
  4221. source: "./media/characters/vulpes/back.svg",
  4222. extra: 573 / 549,
  4223. bottom: 20 / 593
  4224. }
  4225. },
  4226. feet: {
  4227. height: math.unit(1.276, "feet"),
  4228. name: "Feet",
  4229. image: {
  4230. source: "./media/characters/vulpes/feet.svg"
  4231. }
  4232. },
  4233. maw: {
  4234. height: math.unit(1.18, "feet"),
  4235. name: "Maw",
  4236. image: {
  4237. source: "./media/characters/vulpes/maw.svg"
  4238. }
  4239. },
  4240. },
  4241. [
  4242. {
  4243. name: "Micro",
  4244. height: math.unit(2, "inches")
  4245. },
  4246. {
  4247. name: "Normal",
  4248. height: math.unit(6.3, "feet")
  4249. },
  4250. {
  4251. name: "Macro",
  4252. height: math.unit(850, "feet")
  4253. },
  4254. {
  4255. name: "Megamacro",
  4256. height: math.unit(7500, "feet"),
  4257. default: true
  4258. },
  4259. {
  4260. name: "Gigamacro",
  4261. height: math.unit(570000, "miles")
  4262. }
  4263. ]
  4264. ))
  4265. characterMakers.push(() => makeCharacter(
  4266. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4267. {
  4268. front: {
  4269. height: math.unit(6, "feet"),
  4270. weight: math.unit(210, "lbs"),
  4271. name: "Front",
  4272. image: {
  4273. source: "./media/characters/rain-fallen/front.svg"
  4274. }
  4275. },
  4276. side: {
  4277. height: math.unit(6, "feet"),
  4278. weight: math.unit(210, "lbs"),
  4279. name: "Side",
  4280. image: {
  4281. source: "./media/characters/rain-fallen/side.svg"
  4282. }
  4283. },
  4284. back: {
  4285. height: math.unit(6, "feet"),
  4286. weight: math.unit(210, "lbs"),
  4287. name: "Back",
  4288. image: {
  4289. source: "./media/characters/rain-fallen/back.svg"
  4290. }
  4291. },
  4292. feral: {
  4293. height: math.unit(9, "feet"),
  4294. weight: math.unit(700, "lbs"),
  4295. name: "Feral",
  4296. image: {
  4297. source: "./media/characters/rain-fallen/feral.svg"
  4298. }
  4299. },
  4300. },
  4301. [
  4302. {
  4303. name: "Normal",
  4304. height: math.unit(5, "meter")
  4305. },
  4306. {
  4307. name: "Macro",
  4308. height: math.unit(150, "meter"),
  4309. default: true
  4310. },
  4311. {
  4312. name: "Megamacro",
  4313. height: math.unit(278e6, "meter")
  4314. },
  4315. {
  4316. name: "Gigamacro",
  4317. height: math.unit(2e9, "meter")
  4318. },
  4319. {
  4320. name: "Teramacro",
  4321. height: math.unit(8e12, "meter")
  4322. },
  4323. {
  4324. name: "Devourer",
  4325. height: math.unit(14, "zettameters")
  4326. },
  4327. {
  4328. name: "Scarlet King",
  4329. height: math.unit(18, "yottameters")
  4330. },
  4331. {
  4332. name: "Void",
  4333. height: math.unit(6.66e66, "yottameters")
  4334. }
  4335. ]
  4336. ))
  4337. characterMakers.push(() => makeCharacter(
  4338. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4339. {
  4340. standing: {
  4341. height: math.unit(6, "feet"),
  4342. weight: math.unit(180, "lbs"),
  4343. name: "Standing",
  4344. image: {
  4345. source: "./media/characters/zaakira/standing.svg"
  4346. }
  4347. },
  4348. laying: {
  4349. height: math.unit(3, "feet"),
  4350. weight: math.unit(180, "lbs"),
  4351. name: "Laying",
  4352. image: {
  4353. source: "./media/characters/zaakira/laying.svg"
  4354. }
  4355. },
  4356. },
  4357. [
  4358. {
  4359. name: "Normal",
  4360. height: math.unit(12, "feet")
  4361. },
  4362. {
  4363. name: "Macro",
  4364. height: math.unit(279, "feet"),
  4365. default: true
  4366. }
  4367. ]
  4368. ))
  4369. characterMakers.push(() => makeCharacter(
  4370. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4371. {
  4372. femSfw: {
  4373. height: math.unit(8, "feet"),
  4374. weight: math.unit(350, "lb"),
  4375. name: "Fem",
  4376. image: {
  4377. source: "./media/characters/sigvald/fem-sfw.svg",
  4378. extra: 182 / 164,
  4379. bottom: 8.7 / 190.5
  4380. }
  4381. },
  4382. femNsfw: {
  4383. height: math.unit(8, "feet"),
  4384. weight: math.unit(350, "lb"),
  4385. name: "Fem (NSFW)",
  4386. image: {
  4387. source: "./media/characters/sigvald/fem-nsfw.svg",
  4388. extra: 182 / 164,
  4389. bottom: 8.7 / 190.5
  4390. }
  4391. },
  4392. maleNsfw: {
  4393. height: math.unit(8, "feet"),
  4394. weight: math.unit(350, "lb"),
  4395. name: "Male (NSFW)",
  4396. image: {
  4397. source: "./media/characters/sigvald/male-nsfw.svg",
  4398. extra: 182 / 164,
  4399. bottom: 8.7 / 190.5
  4400. }
  4401. },
  4402. hermNsfw: {
  4403. height: math.unit(8, "feet"),
  4404. weight: math.unit(350, "lb"),
  4405. name: "Herm (NSFW)",
  4406. image: {
  4407. source: "./media/characters/sigvald/herm-nsfw.svg",
  4408. extra: 182 / 164,
  4409. bottom: 8.7 / 190.5
  4410. }
  4411. },
  4412. dick: {
  4413. height: math.unit(2.36, "feet"),
  4414. name: "Dick",
  4415. image: {
  4416. source: "./media/characters/sigvald/dick.svg"
  4417. }
  4418. },
  4419. eye: {
  4420. height: math.unit(0.31, "feet"),
  4421. name: "Eye",
  4422. image: {
  4423. source: "./media/characters/sigvald/eye.svg"
  4424. }
  4425. },
  4426. mouth: {
  4427. height: math.unit(0.92, "feet"),
  4428. name: "Mouth",
  4429. image: {
  4430. source: "./media/characters/sigvald/mouth.svg"
  4431. }
  4432. },
  4433. paws: {
  4434. height: math.unit(2.2, "feet"),
  4435. name: "Paws",
  4436. image: {
  4437. source: "./media/characters/sigvald/paws.svg"
  4438. }
  4439. }
  4440. },
  4441. [
  4442. {
  4443. name: "Normal",
  4444. height: math.unit(8, "feet")
  4445. },
  4446. {
  4447. name: "Large",
  4448. height: math.unit(12, "feet")
  4449. },
  4450. {
  4451. name: "Larger",
  4452. height: math.unit(20, "feet")
  4453. },
  4454. {
  4455. name: "Macro",
  4456. height: math.unit(150, "feet")
  4457. },
  4458. {
  4459. name: "Macro+",
  4460. height: math.unit(200, "feet"),
  4461. default: true
  4462. },
  4463. ]
  4464. ))
  4465. characterMakers.push(() => makeCharacter(
  4466. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4467. {
  4468. side: {
  4469. height: math.unit(12, "feet"),
  4470. weight: math.unit(2000, "kg"),
  4471. name: "Side",
  4472. image: {
  4473. source: "./media/characters/scott/side.svg",
  4474. extra: 754 / 724,
  4475. bottom: 0.069
  4476. }
  4477. },
  4478. upright: {
  4479. height: math.unit(12, "feet"),
  4480. weight: math.unit(2000, "kg"),
  4481. name: "Upright",
  4482. image: {
  4483. source: "./media/characters/scott/upright.svg",
  4484. extra: 3881 / 3722,
  4485. bottom: 0.05
  4486. }
  4487. },
  4488. },
  4489. [
  4490. {
  4491. name: "Normal",
  4492. height: math.unit(12, "feet"),
  4493. default: true
  4494. },
  4495. ]
  4496. ))
  4497. characterMakers.push(() => makeCharacter(
  4498. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4499. {
  4500. side: {
  4501. height: math.unit(8, "meters"),
  4502. weight: math.unit(84755, "lbs"),
  4503. name: "Side",
  4504. image: {
  4505. source: "./media/characters/tobias/side.svg",
  4506. extra: 1474 / 1096,
  4507. bottom: 38.9 / 1513.1235
  4508. }
  4509. },
  4510. },
  4511. [
  4512. {
  4513. name: "Normal",
  4514. height: math.unit(8, "meters"),
  4515. default: true
  4516. },
  4517. ]
  4518. ))
  4519. characterMakers.push(() => makeCharacter(
  4520. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4521. {
  4522. front: {
  4523. height: math.unit(5.5, "feet"),
  4524. weight: math.unit(400, "lbs"),
  4525. name: "Front",
  4526. image: {
  4527. source: "./media/characters/kieran/front.svg",
  4528. extra: 2694 / 2364,
  4529. bottom: 217 / 2908
  4530. }
  4531. },
  4532. side: {
  4533. height: math.unit(5.5, "feet"),
  4534. weight: math.unit(400, "lbs"),
  4535. name: "Side",
  4536. image: {
  4537. source: "./media/characters/kieran/side.svg",
  4538. extra: 875 / 777,
  4539. bottom: 84.6 / 959
  4540. }
  4541. },
  4542. },
  4543. [
  4544. {
  4545. name: "Normal",
  4546. height: math.unit(5.5, "feet"),
  4547. default: true
  4548. },
  4549. ]
  4550. ))
  4551. characterMakers.push(() => makeCharacter(
  4552. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4553. {
  4554. side: {
  4555. height: math.unit(2, "meters"),
  4556. weight: math.unit(70, "kg"),
  4557. name: "Side",
  4558. image: {
  4559. source: "./media/characters/sanya/side.svg",
  4560. bottom: 0.02,
  4561. extra: 1.02
  4562. }
  4563. },
  4564. },
  4565. [
  4566. {
  4567. name: "Small",
  4568. height: math.unit(2, "meters")
  4569. },
  4570. {
  4571. name: "Normal",
  4572. height: math.unit(3, "meters")
  4573. },
  4574. {
  4575. name: "Macro",
  4576. height: math.unit(16, "meters"),
  4577. default: true
  4578. },
  4579. ]
  4580. ))
  4581. characterMakers.push(() => makeCharacter(
  4582. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4583. {
  4584. front: {
  4585. height: math.unit(2, "meters"),
  4586. weight: math.unit(120, "kg"),
  4587. name: "Front",
  4588. image: {
  4589. source: "./media/characters/miranda/front.svg",
  4590. extra: 195 / 185,
  4591. bottom: 10.9 / 206.5
  4592. }
  4593. },
  4594. back: {
  4595. height: math.unit(2, "meters"),
  4596. weight: math.unit(120, "kg"),
  4597. name: "Back",
  4598. image: {
  4599. source: "./media/characters/miranda/back.svg",
  4600. extra: 201 / 193,
  4601. bottom: 2.3 / 203.7
  4602. }
  4603. },
  4604. },
  4605. [
  4606. {
  4607. name: "Normal",
  4608. height: math.unit(10, "feet"),
  4609. default: true
  4610. }
  4611. ]
  4612. ))
  4613. characterMakers.push(() => makeCharacter(
  4614. { name: "James", species: ["deer"], tags: ["anthro"] },
  4615. {
  4616. side: {
  4617. height: math.unit(2, "meters"),
  4618. weight: math.unit(100, "kg"),
  4619. name: "Front",
  4620. image: {
  4621. source: "./media/characters/james/front.svg",
  4622. extra: 10 / 8.5
  4623. }
  4624. },
  4625. },
  4626. [
  4627. {
  4628. name: "Normal",
  4629. height: math.unit(8.5, "feet"),
  4630. default: true
  4631. }
  4632. ]
  4633. ))
  4634. characterMakers.push(() => makeCharacter(
  4635. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4636. {
  4637. side: {
  4638. height: math.unit(9.5, "feet"),
  4639. weight: math.unit(2500, "lbs"),
  4640. name: "Side",
  4641. image: {
  4642. source: "./media/characters/heather/side.svg"
  4643. }
  4644. },
  4645. },
  4646. [
  4647. {
  4648. name: "Normal",
  4649. height: math.unit(9.5, "feet"),
  4650. default: true
  4651. }
  4652. ]
  4653. ))
  4654. characterMakers.push(() => makeCharacter(
  4655. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4656. {
  4657. side: {
  4658. height: math.unit(6.5, "feet"),
  4659. weight: math.unit(400, "lbs"),
  4660. name: "Side",
  4661. image: {
  4662. source: "./media/characters/lukas/side.svg",
  4663. extra: 7.25 / 6.5
  4664. }
  4665. },
  4666. },
  4667. [
  4668. {
  4669. name: "Normal",
  4670. height: math.unit(6.5, "feet"),
  4671. default: true
  4672. }
  4673. ]
  4674. ))
  4675. characterMakers.push(() => makeCharacter(
  4676. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4677. {
  4678. side: {
  4679. height: math.unit(5, "feet"),
  4680. weight: math.unit(3000, "lbs"),
  4681. name: "Side",
  4682. image: {
  4683. source: "./media/characters/louise/side.svg"
  4684. }
  4685. },
  4686. },
  4687. [
  4688. {
  4689. name: "Normal",
  4690. height: math.unit(5, "feet"),
  4691. default: true
  4692. }
  4693. ]
  4694. ))
  4695. characterMakers.push(() => makeCharacter(
  4696. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4697. {
  4698. side: {
  4699. height: math.unit(6, "feet"),
  4700. weight: math.unit(150, "lbs"),
  4701. name: "Side",
  4702. image: {
  4703. source: "./media/characters/ramona/side.svg"
  4704. }
  4705. },
  4706. },
  4707. [
  4708. {
  4709. name: "Normal",
  4710. height: math.unit(5.3, "meters"),
  4711. default: true
  4712. },
  4713. {
  4714. name: "Macro",
  4715. height: math.unit(20, "stories")
  4716. },
  4717. {
  4718. name: "Macro+",
  4719. height: math.unit(50, "stories")
  4720. },
  4721. ]
  4722. ))
  4723. characterMakers.push(() => makeCharacter(
  4724. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4725. {
  4726. standing: {
  4727. height: math.unit(5.75, "feet"),
  4728. weight: math.unit(160, "lbs"),
  4729. name: "Standing",
  4730. image: {
  4731. source: "./media/characters/deerpuff/standing.svg",
  4732. extra: 682 / 624
  4733. }
  4734. },
  4735. sitting: {
  4736. height: math.unit(5.75 / 1.79, "feet"),
  4737. weight: math.unit(160, "lbs"),
  4738. name: "Sitting",
  4739. image: {
  4740. source: "./media/characters/deerpuff/sitting.svg",
  4741. bottom: 44 / 400,
  4742. extra: 1
  4743. }
  4744. },
  4745. taurLaying: {
  4746. height: math.unit(6, "feet"),
  4747. weight: math.unit(400, "lbs"),
  4748. name: "Taur (Laying)",
  4749. image: {
  4750. source: "./media/characters/deerpuff/taur-laying.svg"
  4751. }
  4752. },
  4753. },
  4754. [
  4755. {
  4756. name: "Puffball",
  4757. height: math.unit(6, "inches")
  4758. },
  4759. {
  4760. name: "Normalpuff",
  4761. height: math.unit(5.75, "feet")
  4762. },
  4763. {
  4764. name: "Macropuff",
  4765. height: math.unit(1500, "feet"),
  4766. default: true
  4767. },
  4768. {
  4769. name: "Megapuff",
  4770. height: math.unit(500, "miles")
  4771. },
  4772. {
  4773. name: "Gigapuff",
  4774. height: math.unit(250000, "miles")
  4775. },
  4776. {
  4777. name: "Omegapuff",
  4778. height: math.unit(1000, "lightyears")
  4779. },
  4780. ]
  4781. ))
  4782. characterMakers.push(() => makeCharacter(
  4783. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4784. {
  4785. stomping: {
  4786. height: math.unit(6, "feet"),
  4787. weight: math.unit(170, "lbs"),
  4788. name: "Stomping",
  4789. image: {
  4790. source: "./media/characters/vivian/stomping.svg"
  4791. }
  4792. },
  4793. sitting: {
  4794. height: math.unit(6 / 1.75, "feet"),
  4795. weight: math.unit(170, "lbs"),
  4796. name: "Sitting",
  4797. image: {
  4798. source: "./media/characters/vivian/sitting.svg",
  4799. bottom: 1 / 6.4,
  4800. extra: 1,
  4801. }
  4802. },
  4803. },
  4804. [
  4805. {
  4806. name: "Normal",
  4807. height: math.unit(7, "feet"),
  4808. default: true
  4809. },
  4810. {
  4811. name: "Macro",
  4812. height: math.unit(10, "stories")
  4813. },
  4814. {
  4815. name: "Macro+",
  4816. height: math.unit(30, "stories")
  4817. },
  4818. {
  4819. name: "Megamacro",
  4820. height: math.unit(10, "miles")
  4821. },
  4822. {
  4823. name: "Megamacro+",
  4824. height: math.unit(2750000, "meters")
  4825. },
  4826. ]
  4827. ))
  4828. characterMakers.push(() => makeCharacter(
  4829. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4830. {
  4831. front: {
  4832. height: math.unit(6, "feet"),
  4833. weight: math.unit(160, "lbs"),
  4834. name: "Front",
  4835. image: {
  4836. source: "./media/characters/prince/front.svg",
  4837. extra: 3400 / 3000
  4838. }
  4839. },
  4840. jumping: {
  4841. height: math.unit(6, "feet"),
  4842. weight: math.unit(160, "lbs"),
  4843. name: "Jumping",
  4844. image: {
  4845. source: "./media/characters/prince/jump.svg",
  4846. extra: 2555 / 2134
  4847. }
  4848. },
  4849. },
  4850. [
  4851. {
  4852. name: "Normal",
  4853. height: math.unit(7.75, "feet"),
  4854. default: true
  4855. },
  4856. {
  4857. name: "Not cute",
  4858. height: math.unit(17, "feet")
  4859. },
  4860. {
  4861. name: "I said NOT",
  4862. height: math.unit(91, "feet")
  4863. },
  4864. {
  4865. name: "Please stop",
  4866. height: math.unit(560, "feet")
  4867. },
  4868. {
  4869. name: "What have you done",
  4870. height: math.unit(2200, "feet")
  4871. },
  4872. {
  4873. name: "Deer God",
  4874. height: math.unit(3.6, "miles")
  4875. },
  4876. ]
  4877. ))
  4878. characterMakers.push(() => makeCharacter(
  4879. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4880. {
  4881. standing: {
  4882. height: math.unit(6, "feet"),
  4883. weight: math.unit(300, "lbs"),
  4884. name: "Standing",
  4885. image: {
  4886. source: "./media/characters/psymon/standing.svg",
  4887. extra: 1888 / 1810,
  4888. bottom: 0.05
  4889. }
  4890. },
  4891. slithering: {
  4892. height: math.unit(6, "feet"),
  4893. weight: math.unit(300, "lbs"),
  4894. name: "Slithering",
  4895. image: {
  4896. source: "./media/characters/psymon/slithering.svg",
  4897. extra: 1330 / 1224
  4898. }
  4899. },
  4900. slitheringAlt: {
  4901. height: math.unit(6, "feet"),
  4902. weight: math.unit(300, "lbs"),
  4903. name: "Slithering (Alt)",
  4904. image: {
  4905. source: "./media/characters/psymon/slithering-alt.svg",
  4906. extra: 1330 / 1224
  4907. }
  4908. },
  4909. },
  4910. [
  4911. {
  4912. name: "Normal",
  4913. height: math.unit(11.25, "feet"),
  4914. default: true
  4915. },
  4916. {
  4917. name: "Large",
  4918. height: math.unit(27, "feet")
  4919. },
  4920. {
  4921. name: "Giant",
  4922. height: math.unit(87, "feet")
  4923. },
  4924. {
  4925. name: "Macro",
  4926. height: math.unit(365, "feet")
  4927. },
  4928. {
  4929. name: "Megamacro",
  4930. height: math.unit(3, "miles")
  4931. },
  4932. {
  4933. name: "World Serpent",
  4934. height: math.unit(8000, "miles")
  4935. },
  4936. ]
  4937. ))
  4938. characterMakers.push(() => makeCharacter(
  4939. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4940. {
  4941. front: {
  4942. height: math.unit(6, "feet"),
  4943. weight: math.unit(180, "lbs"),
  4944. name: "Front",
  4945. image: {
  4946. source: "./media/characters/daimos/front.svg",
  4947. extra: 4160 / 3897,
  4948. bottom: 0.021
  4949. }
  4950. }
  4951. },
  4952. [
  4953. {
  4954. name: "Normal",
  4955. height: math.unit(8, "feet"),
  4956. default: true
  4957. },
  4958. {
  4959. name: "Big Dog",
  4960. height: math.unit(22, "feet")
  4961. },
  4962. {
  4963. name: "Macro",
  4964. height: math.unit(127, "feet")
  4965. },
  4966. {
  4967. name: "Megamacro",
  4968. height: math.unit(3600, "feet")
  4969. },
  4970. ]
  4971. ))
  4972. characterMakers.push(() => makeCharacter(
  4973. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4974. {
  4975. side: {
  4976. height: math.unit(6, "feet"),
  4977. weight: math.unit(180, "lbs"),
  4978. name: "Side",
  4979. image: {
  4980. source: "./media/characters/blake/side.svg",
  4981. extra: 1212 / 1120,
  4982. bottom: 0.05
  4983. }
  4984. },
  4985. crouched: {
  4986. height: math.unit(6 * 0.57, "feet"),
  4987. weight: math.unit(180, "lbs"),
  4988. name: "Crouched",
  4989. image: {
  4990. source: "./media/characters/blake/crouched.svg",
  4991. extra: 840 / 587,
  4992. bottom: 0.04
  4993. }
  4994. },
  4995. bent: {
  4996. height: math.unit(6 * 0.75, "feet"),
  4997. weight: math.unit(180, "lbs"),
  4998. name: "Bent",
  4999. image: {
  5000. source: "./media/characters/blake/bent.svg",
  5001. extra: 592 / 544,
  5002. bottom: 0.035
  5003. }
  5004. },
  5005. },
  5006. [
  5007. {
  5008. name: "Normal",
  5009. height: math.unit(8 + 1 / 6, "feet"),
  5010. default: true
  5011. },
  5012. {
  5013. name: "Big Backside",
  5014. height: math.unit(37, "feet")
  5015. },
  5016. {
  5017. name: "Subway Shredder",
  5018. height: math.unit(72, "feet")
  5019. },
  5020. {
  5021. name: "City Carver",
  5022. height: math.unit(1675, "feet")
  5023. },
  5024. {
  5025. name: "Tectonic Tweaker",
  5026. height: math.unit(2300, "miles")
  5027. },
  5028. ]
  5029. ))
  5030. characterMakers.push(() => makeCharacter(
  5031. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5032. {
  5033. front: {
  5034. height: math.unit(6, "feet"),
  5035. weight: math.unit(180, "lbs"),
  5036. name: "Front",
  5037. image: {
  5038. source: "./media/characters/guisetto/front.svg",
  5039. extra: 856 / 817,
  5040. bottom: 0.06
  5041. }
  5042. },
  5043. airborne: {
  5044. height: math.unit(6, "feet"),
  5045. weight: math.unit(180, "lbs"),
  5046. name: "Airborne",
  5047. image: {
  5048. source: "./media/characters/guisetto/airborne.svg",
  5049. extra: 584 / 525
  5050. }
  5051. },
  5052. },
  5053. [
  5054. {
  5055. name: "Normal",
  5056. height: math.unit(10 + 11 / 12, "feet"),
  5057. default: true
  5058. },
  5059. {
  5060. name: "Large",
  5061. height: math.unit(35, "feet")
  5062. },
  5063. {
  5064. name: "Macro",
  5065. height: math.unit(475, "feet")
  5066. },
  5067. ]
  5068. ))
  5069. characterMakers.push(() => makeCharacter(
  5070. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5071. {
  5072. front: {
  5073. height: math.unit(6, "feet"),
  5074. weight: math.unit(180, "lbs"),
  5075. name: "Front",
  5076. image: {
  5077. source: "./media/characters/luxor/front.svg",
  5078. extra: 2940 / 2152
  5079. }
  5080. },
  5081. back: {
  5082. height: math.unit(6, "feet"),
  5083. weight: math.unit(180, "lbs"),
  5084. name: "Back",
  5085. image: {
  5086. source: "./media/characters/luxor/back.svg",
  5087. extra: 1083 / 960
  5088. }
  5089. },
  5090. },
  5091. [
  5092. {
  5093. name: "Normal",
  5094. height: math.unit(5 + 5 / 6, "feet"),
  5095. default: true
  5096. },
  5097. {
  5098. name: "Lamp",
  5099. height: math.unit(50, "feet")
  5100. },
  5101. {
  5102. name: "Lämp",
  5103. height: math.unit(300, "feet")
  5104. },
  5105. {
  5106. name: "The sun is a lamp",
  5107. height: math.unit(250000, "miles")
  5108. },
  5109. ]
  5110. ))
  5111. characterMakers.push(() => makeCharacter(
  5112. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5113. {
  5114. front: {
  5115. height: math.unit(6, "feet"),
  5116. weight: math.unit(50, "lbs"),
  5117. name: "Front",
  5118. image: {
  5119. source: "./media/characters/huoyan/front.svg"
  5120. }
  5121. },
  5122. side: {
  5123. height: math.unit(6, "feet"),
  5124. weight: math.unit(180, "lbs"),
  5125. name: "Side",
  5126. image: {
  5127. source: "./media/characters/huoyan/side.svg"
  5128. }
  5129. },
  5130. },
  5131. [
  5132. {
  5133. name: "Chef",
  5134. height: math.unit(9, "feet")
  5135. },
  5136. {
  5137. name: "Normal",
  5138. height: math.unit(65, "feet"),
  5139. default: true
  5140. },
  5141. {
  5142. name: "Macro",
  5143. height: math.unit(780, "feet")
  5144. },
  5145. {
  5146. name: "Flaming Mountain",
  5147. height: math.unit(4.8, "miles")
  5148. },
  5149. {
  5150. name: "Celestial",
  5151. height: math.unit(765000, "miles")
  5152. },
  5153. ]
  5154. ))
  5155. characterMakers.push(() => makeCharacter(
  5156. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5157. {
  5158. front: {
  5159. height: math.unit(5 + 3 / 4, "feet"),
  5160. weight: math.unit(120, "lbs"),
  5161. name: "Front",
  5162. image: {
  5163. source: "./media/characters/tails/front.svg"
  5164. }
  5165. }
  5166. },
  5167. [
  5168. {
  5169. name: "Normal",
  5170. height: math.unit(5 + 3 / 4, "feet"),
  5171. default: true
  5172. }
  5173. ]
  5174. ))
  5175. characterMakers.push(() => makeCharacter(
  5176. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5177. {
  5178. front: {
  5179. height: math.unit(4, "feet"),
  5180. weight: math.unit(50, "lbs"),
  5181. name: "Front",
  5182. image: {
  5183. source: "./media/characters/rainy/front.svg"
  5184. }
  5185. }
  5186. },
  5187. [
  5188. {
  5189. name: "Macro",
  5190. height: math.unit(800, "feet"),
  5191. default: true
  5192. }
  5193. ]
  5194. ))
  5195. characterMakers.push(() => makeCharacter(
  5196. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5197. {
  5198. front: {
  5199. height: math.unit(6, "feet"),
  5200. weight: math.unit(150, "lbs"),
  5201. name: "Front",
  5202. image: {
  5203. source: "./media/characters/rainier/front.svg"
  5204. }
  5205. }
  5206. },
  5207. [
  5208. {
  5209. name: "Micro",
  5210. height: math.unit(2, "mm"),
  5211. default: true
  5212. }
  5213. ]
  5214. ))
  5215. characterMakers.push(() => makeCharacter(
  5216. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5217. {
  5218. front: {
  5219. height: math.unit(6, "feet"),
  5220. weight: math.unit(180, "lbs"),
  5221. name: "Front",
  5222. image: {
  5223. source: "./media/characters/andy/front.svg"
  5224. }
  5225. }
  5226. },
  5227. [
  5228. {
  5229. name: "Normal",
  5230. height: math.unit(8, "feet"),
  5231. default: true
  5232. },
  5233. {
  5234. name: "Macro",
  5235. height: math.unit(1000, "feet")
  5236. },
  5237. {
  5238. name: "Megamacro",
  5239. height: math.unit(5, "miles")
  5240. },
  5241. {
  5242. name: "Gigamacro",
  5243. height: math.unit(5000, "miles")
  5244. },
  5245. ]
  5246. ))
  5247. characterMakers.push(() => makeCharacter(
  5248. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5249. {
  5250. front: {
  5251. height: math.unit(6, "feet"),
  5252. weight: math.unit(210, "lbs"),
  5253. name: "Front",
  5254. image: {
  5255. source: "./media/characters/cimmaron/front-sfw.svg",
  5256. extra: 701 / 676,
  5257. bottom: 0.046
  5258. }
  5259. },
  5260. back: {
  5261. height: math.unit(6, "feet"),
  5262. weight: math.unit(210, "lbs"),
  5263. name: "Back",
  5264. image: {
  5265. source: "./media/characters/cimmaron/back-sfw.svg",
  5266. extra: 701 / 676,
  5267. bottom: 0.046
  5268. }
  5269. },
  5270. frontNsfw: {
  5271. height: math.unit(6, "feet"),
  5272. weight: math.unit(210, "lbs"),
  5273. name: "Front (NSFW)",
  5274. image: {
  5275. source: "./media/characters/cimmaron/front-nsfw.svg",
  5276. extra: 701 / 676,
  5277. bottom: 0.046
  5278. }
  5279. },
  5280. backNsfw: {
  5281. height: math.unit(6, "feet"),
  5282. weight: math.unit(210, "lbs"),
  5283. name: "Back (NSFW)",
  5284. image: {
  5285. source: "./media/characters/cimmaron/back-nsfw.svg",
  5286. extra: 701 / 676,
  5287. bottom: 0.046
  5288. }
  5289. },
  5290. dick: {
  5291. height: math.unit(1.714, "feet"),
  5292. name: "Dick",
  5293. image: {
  5294. source: "./media/characters/cimmaron/dick.svg"
  5295. }
  5296. },
  5297. },
  5298. [
  5299. {
  5300. name: "Normal",
  5301. height: math.unit(6, "feet"),
  5302. default: true
  5303. },
  5304. {
  5305. name: "Macro Mayor",
  5306. height: math.unit(350, "meters")
  5307. },
  5308. ]
  5309. ))
  5310. characterMakers.push(() => makeCharacter(
  5311. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5312. {
  5313. front: {
  5314. height: math.unit(6, "feet"),
  5315. weight: math.unit(200, "lbs"),
  5316. name: "Front",
  5317. image: {
  5318. source: "./media/characters/akari/front.svg",
  5319. extra: 962 / 901,
  5320. bottom: 0.04
  5321. }
  5322. }
  5323. },
  5324. [
  5325. {
  5326. name: "Micro",
  5327. height: math.unit(5, "inches"),
  5328. default: true
  5329. },
  5330. {
  5331. name: "Normal",
  5332. height: math.unit(7, "feet")
  5333. },
  5334. ]
  5335. ))
  5336. characterMakers.push(() => makeCharacter(
  5337. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5338. {
  5339. front: {
  5340. height: math.unit(6, "feet"),
  5341. weight: math.unit(140, "lbs"),
  5342. name: "Front",
  5343. image: {
  5344. source: "./media/characters/cynosura/front.svg",
  5345. extra: 896 / 847
  5346. }
  5347. },
  5348. back: {
  5349. height: math.unit(6, "feet"),
  5350. weight: math.unit(140, "lbs"),
  5351. name: "Back",
  5352. image: {
  5353. source: "./media/characters/cynosura/back.svg",
  5354. extra: 1365 / 1250
  5355. }
  5356. },
  5357. },
  5358. [
  5359. {
  5360. name: "Micro",
  5361. height: math.unit(4, "inches")
  5362. },
  5363. {
  5364. name: "Normal",
  5365. height: math.unit(5.75, "feet"),
  5366. default: true
  5367. },
  5368. {
  5369. name: "Tall",
  5370. height: math.unit(10, "feet")
  5371. },
  5372. {
  5373. name: "Big",
  5374. height: math.unit(20, "feet")
  5375. },
  5376. {
  5377. name: "Macro",
  5378. height: math.unit(50, "feet")
  5379. },
  5380. ]
  5381. ))
  5382. characterMakers.push(() => makeCharacter(
  5383. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5384. {
  5385. front: {
  5386. height: math.unit(6, "feet"),
  5387. weight: math.unit(170, "lbs"),
  5388. name: "Front",
  5389. image: {
  5390. source: "./media/characters/gin/front.svg",
  5391. extra: 1.053,
  5392. bottom: 0.025
  5393. }
  5394. },
  5395. foot: {
  5396. height: math.unit(6 / 4.25, "feet"),
  5397. name: "Foot",
  5398. image: {
  5399. source: "./media/characters/gin/foot.svg"
  5400. }
  5401. },
  5402. sole: {
  5403. height: math.unit(6 / 4.40, "feet"),
  5404. name: "Sole",
  5405. image: {
  5406. source: "./media/characters/gin/sole.svg"
  5407. }
  5408. },
  5409. },
  5410. [
  5411. {
  5412. name: "Normal",
  5413. height: math.unit(13 + 2 / 12, "feet")
  5414. },
  5415. {
  5416. name: "Macro",
  5417. height: math.unit(1500, "feet")
  5418. },
  5419. {
  5420. name: "Megamacro",
  5421. height: math.unit(200, "miles"),
  5422. default: true
  5423. },
  5424. {
  5425. name: "Gigamacro",
  5426. height: math.unit(500, "megameters")
  5427. },
  5428. {
  5429. name: "Teramacro",
  5430. height: math.unit(15, "lightyears")
  5431. }
  5432. ]
  5433. ))
  5434. characterMakers.push(() => makeCharacter(
  5435. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5436. {
  5437. front: {
  5438. height: math.unit(6 + 1 / 6, "feet"),
  5439. weight: math.unit(178, "lbs"),
  5440. name: "Front",
  5441. image: {
  5442. source: "./media/characters/guy/front.svg"
  5443. }
  5444. }
  5445. },
  5446. [
  5447. {
  5448. name: "Normal",
  5449. height: math.unit(6 + 1 / 6, "feet"),
  5450. default: true
  5451. },
  5452. {
  5453. name: "Large",
  5454. height: math.unit(25 + 7 / 12, "feet")
  5455. },
  5456. {
  5457. name: "Macro",
  5458. height: math.unit(60 + 9 / 12, "feet")
  5459. },
  5460. {
  5461. name: "Macro+",
  5462. height: math.unit(246, "feet")
  5463. },
  5464. {
  5465. name: "Macro++",
  5466. height: math.unit(878, "feet")
  5467. }
  5468. ]
  5469. ))
  5470. characterMakers.push(() => makeCharacter(
  5471. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5472. {
  5473. front: {
  5474. height: math.unit(9, "feet"),
  5475. weight: math.unit(800, "lbs"),
  5476. name: "Front",
  5477. image: {
  5478. source: "./media/characters/tiberius/front.svg",
  5479. extra: 2295 / 2071
  5480. }
  5481. },
  5482. back: {
  5483. height: math.unit(9, "feet"),
  5484. weight: math.unit(800, "lbs"),
  5485. name: "Back",
  5486. image: {
  5487. source: "./media/characters/tiberius/back.svg",
  5488. extra: 2373 / 2160
  5489. }
  5490. },
  5491. },
  5492. [
  5493. {
  5494. name: "Normal",
  5495. height: math.unit(9, "feet"),
  5496. default: true
  5497. }
  5498. ]
  5499. ))
  5500. characterMakers.push(() => makeCharacter(
  5501. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5502. {
  5503. front: {
  5504. height: math.unit(6, "feet"),
  5505. weight: math.unit(600, "lbs"),
  5506. name: "Front",
  5507. image: {
  5508. source: "./media/characters/surgo/front.svg",
  5509. extra: 3591 / 2227
  5510. }
  5511. },
  5512. back: {
  5513. height: math.unit(6, "feet"),
  5514. weight: math.unit(600, "lbs"),
  5515. name: "Back",
  5516. image: {
  5517. source: "./media/characters/surgo/back.svg",
  5518. extra: 3557 / 2228
  5519. }
  5520. },
  5521. laying: {
  5522. height: math.unit(6 * 0.85, "feet"),
  5523. weight: math.unit(600, "lbs"),
  5524. name: "Laying",
  5525. image: {
  5526. source: "./media/characters/surgo/laying.svg"
  5527. }
  5528. },
  5529. },
  5530. [
  5531. {
  5532. name: "Normal",
  5533. height: math.unit(6, "feet"),
  5534. default: true
  5535. }
  5536. ]
  5537. ))
  5538. characterMakers.push(() => makeCharacter(
  5539. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5540. {
  5541. side: {
  5542. height: math.unit(6, "feet"),
  5543. weight: math.unit(150, "lbs"),
  5544. name: "Side",
  5545. image: {
  5546. source: "./media/characters/cibus/side.svg",
  5547. extra: 800 / 400
  5548. }
  5549. },
  5550. },
  5551. [
  5552. {
  5553. name: "Normal",
  5554. height: math.unit(6, "feet"),
  5555. default: true
  5556. }
  5557. ]
  5558. ))
  5559. characterMakers.push(() => makeCharacter(
  5560. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5561. {
  5562. front: {
  5563. height: math.unit(6, "feet"),
  5564. weight: math.unit(240, "lbs"),
  5565. name: "Front",
  5566. image: {
  5567. source: "./media/characters/nibbles/front.svg"
  5568. }
  5569. },
  5570. side: {
  5571. height: math.unit(6, "feet"),
  5572. weight: math.unit(240, "lbs"),
  5573. name: "Side",
  5574. image: {
  5575. source: "./media/characters/nibbles/side.svg"
  5576. }
  5577. },
  5578. },
  5579. [
  5580. {
  5581. name: "Normal",
  5582. height: math.unit(9, "feet"),
  5583. default: true
  5584. }
  5585. ]
  5586. ))
  5587. characterMakers.push(() => makeCharacter(
  5588. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5589. {
  5590. side: {
  5591. height: math.unit(5 + 1 / 6, "feet"),
  5592. weight: math.unit(130, "lbs"),
  5593. name: "Side",
  5594. image: {
  5595. source: "./media/characters/rikky/side.svg",
  5596. extra: 851 / 801
  5597. }
  5598. },
  5599. },
  5600. [
  5601. {
  5602. name: "Normal",
  5603. height: math.unit(5 + 1 / 6, "feet")
  5604. },
  5605. {
  5606. name: "Macro",
  5607. height: math.unit(152, "feet"),
  5608. default: true
  5609. },
  5610. {
  5611. name: "Megamacro",
  5612. height: math.unit(7, "miles")
  5613. }
  5614. ]
  5615. ))
  5616. characterMakers.push(() => makeCharacter(
  5617. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5618. {
  5619. side: {
  5620. height: math.unit(370, "cm"),
  5621. weight: math.unit(350, "lbs"),
  5622. name: "Side",
  5623. image: {
  5624. source: "./media/characters/malfressa/side.svg"
  5625. }
  5626. },
  5627. walking: {
  5628. height: math.unit(370, "cm"),
  5629. weight: math.unit(350, "lbs"),
  5630. name: "Walking",
  5631. image: {
  5632. source: "./media/characters/malfressa/walking.svg"
  5633. }
  5634. },
  5635. feral: {
  5636. height: math.unit(2500, "cm"),
  5637. weight: math.unit(100000, "lbs"),
  5638. name: "Feral",
  5639. image: {
  5640. source: "./media/characters/malfressa/feral.svg",
  5641. extra: 2108 / 837,
  5642. bottom: 0.02
  5643. }
  5644. },
  5645. },
  5646. [
  5647. {
  5648. name: "Normal",
  5649. height: math.unit(370, "cm")
  5650. },
  5651. {
  5652. name: "Macro",
  5653. height: math.unit(300, "meters"),
  5654. default: true
  5655. }
  5656. ]
  5657. ))
  5658. characterMakers.push(() => makeCharacter(
  5659. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5660. {
  5661. front: {
  5662. height: math.unit(6, "feet"),
  5663. weight: math.unit(60, "kg"),
  5664. name: "Front",
  5665. image: {
  5666. source: "./media/characters/jaro/front.svg"
  5667. }
  5668. },
  5669. back: {
  5670. height: math.unit(6, "feet"),
  5671. weight: math.unit(60, "kg"),
  5672. name: "Back",
  5673. image: {
  5674. source: "./media/characters/jaro/back.svg"
  5675. }
  5676. },
  5677. },
  5678. [
  5679. {
  5680. name: "Micro",
  5681. height: math.unit(7, "inches")
  5682. },
  5683. {
  5684. name: "Normal",
  5685. height: math.unit(5.5, "feet"),
  5686. default: true
  5687. },
  5688. {
  5689. name: "Minimacro",
  5690. height: math.unit(20, "feet")
  5691. },
  5692. {
  5693. name: "Macro",
  5694. height: math.unit(200, "meters")
  5695. }
  5696. ]
  5697. ))
  5698. characterMakers.push(() => makeCharacter(
  5699. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5700. {
  5701. front: {
  5702. height: math.unit(6, "feet"),
  5703. weight: math.unit(195, "lb"),
  5704. name: "Front",
  5705. image: {
  5706. source: "./media/characters/rogue/front.svg"
  5707. }
  5708. },
  5709. },
  5710. [
  5711. {
  5712. name: "Macro",
  5713. height: math.unit(90, "feet"),
  5714. default: true
  5715. },
  5716. ]
  5717. ))
  5718. characterMakers.push(() => makeCharacter(
  5719. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5720. {
  5721. front: {
  5722. height: math.unit(5 + 8 / 12, "feet"),
  5723. weight: math.unit(140, "lb"),
  5724. name: "Front",
  5725. image: {
  5726. source: "./media/characters/piper/front.svg",
  5727. extra: 3928 / 3681
  5728. }
  5729. },
  5730. },
  5731. [
  5732. {
  5733. name: "Micro",
  5734. height: math.unit(2, "inches")
  5735. },
  5736. {
  5737. name: "Normal",
  5738. height: math.unit(5 + 8 / 12, "feet")
  5739. },
  5740. {
  5741. name: "Macro",
  5742. height: math.unit(250, "feet"),
  5743. default: true
  5744. },
  5745. {
  5746. name: "Megamacro",
  5747. height: math.unit(7, "miles")
  5748. },
  5749. ]
  5750. ))
  5751. characterMakers.push(() => makeCharacter(
  5752. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5753. {
  5754. front: {
  5755. height: math.unit(6, "feet"),
  5756. weight: math.unit(220, "lb"),
  5757. name: "Front",
  5758. image: {
  5759. source: "./media/characters/gemini/front.svg"
  5760. }
  5761. },
  5762. back: {
  5763. height: math.unit(6, "feet"),
  5764. weight: math.unit(220, "lb"),
  5765. name: "Back",
  5766. image: {
  5767. source: "./media/characters/gemini/back.svg"
  5768. }
  5769. },
  5770. kneeling: {
  5771. height: math.unit(6 / 1.5, "feet"),
  5772. weight: math.unit(220, "lb"),
  5773. name: "Kneeling",
  5774. image: {
  5775. source: "./media/characters/gemini/kneeling.svg",
  5776. bottom: 0.02
  5777. }
  5778. },
  5779. },
  5780. [
  5781. {
  5782. name: "Macro",
  5783. height: math.unit(300, "meters"),
  5784. default: true
  5785. },
  5786. {
  5787. name: "Megamacro",
  5788. height: math.unit(6900, "meters")
  5789. },
  5790. ]
  5791. ))
  5792. characterMakers.push(() => makeCharacter(
  5793. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5794. {
  5795. anthro: {
  5796. height: math.unit(2.35, "meters"),
  5797. weight: math.unit(73, "kg"),
  5798. name: "Anthro",
  5799. image: {
  5800. source: "./media/characters/alicia/anthro.svg",
  5801. extra: 2571 / 2385,
  5802. bottom: 75 / 2648
  5803. }
  5804. },
  5805. paw: {
  5806. height: math.unit(1.32, "feet"),
  5807. name: "Paw",
  5808. image: {
  5809. source: "./media/characters/alicia/paw.svg"
  5810. }
  5811. },
  5812. feral: {
  5813. height: math.unit(1.69, "meters"),
  5814. weight: math.unit(73, "kg"),
  5815. name: "Feral",
  5816. image: {
  5817. source: "./media/characters/alicia/feral.svg",
  5818. extra: 2123 / 1715,
  5819. bottom: 222 / 2349
  5820. }
  5821. },
  5822. },
  5823. [
  5824. {
  5825. name: "Normal",
  5826. height: math.unit(2.35, "meters")
  5827. },
  5828. {
  5829. name: "Macro",
  5830. height: math.unit(60, "meters"),
  5831. default: true
  5832. },
  5833. {
  5834. name: "Megamacro",
  5835. height: math.unit(10000, "kilometers")
  5836. },
  5837. ]
  5838. ))
  5839. characterMakers.push(() => makeCharacter(
  5840. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5841. {
  5842. front: {
  5843. height: math.unit(7, "feet"),
  5844. weight: math.unit(250, "lbs"),
  5845. name: "Front",
  5846. image: {
  5847. source: "./media/characters/archy/front.svg"
  5848. }
  5849. }
  5850. },
  5851. [
  5852. {
  5853. name: "Micro",
  5854. height: math.unit(1, "inch")
  5855. },
  5856. {
  5857. name: "Shorty",
  5858. height: math.unit(5, "feet")
  5859. },
  5860. {
  5861. name: "Normal",
  5862. height: math.unit(7, "feet")
  5863. },
  5864. {
  5865. name: "Macro",
  5866. height: math.unit(600, "meters"),
  5867. default: true
  5868. },
  5869. {
  5870. name: "Megamacro",
  5871. height: math.unit(1, "mile")
  5872. },
  5873. ]
  5874. ))
  5875. characterMakers.push(() => makeCharacter(
  5876. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5877. {
  5878. front: {
  5879. height: math.unit(1.65, "meters"),
  5880. weight: math.unit(74, "kg"),
  5881. name: "Front",
  5882. image: {
  5883. source: "./media/characters/berri/front.svg",
  5884. extra: 857 / 837,
  5885. bottom: 18 / 877
  5886. }
  5887. },
  5888. bum: {
  5889. height: math.unit(1.46, "feet"),
  5890. name: "Bum",
  5891. image: {
  5892. source: "./media/characters/berri/bum.svg"
  5893. }
  5894. },
  5895. mouth: {
  5896. height: math.unit(0.44, "feet"),
  5897. name: "Mouth",
  5898. image: {
  5899. source: "./media/characters/berri/mouth.svg"
  5900. }
  5901. },
  5902. paw: {
  5903. height: math.unit(0.826, "feet"),
  5904. name: "Paw",
  5905. image: {
  5906. source: "./media/characters/berri/paw.svg"
  5907. }
  5908. },
  5909. },
  5910. [
  5911. {
  5912. name: "Normal",
  5913. height: math.unit(1.65, "meters")
  5914. },
  5915. {
  5916. name: "Macro",
  5917. height: math.unit(60, "m"),
  5918. default: true
  5919. },
  5920. {
  5921. name: "Megamacro",
  5922. height: math.unit(9.213, "km")
  5923. },
  5924. {
  5925. name: "Planet Eater",
  5926. height: math.unit(489, "megameters")
  5927. },
  5928. {
  5929. name: "Teramacro",
  5930. height: math.unit(2471635000000, "meters")
  5931. },
  5932. {
  5933. name: "Examacro",
  5934. height: math.unit(8.0624e+26, "meters")
  5935. }
  5936. ]
  5937. ))
  5938. characterMakers.push(() => makeCharacter(
  5939. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5940. {
  5941. front: {
  5942. height: math.unit(1.72, "meters"),
  5943. weight: math.unit(68, "kg"),
  5944. name: "Front",
  5945. image: {
  5946. source: "./media/characters/lexi/front.svg"
  5947. }
  5948. }
  5949. },
  5950. [
  5951. {
  5952. name: "Very Smol",
  5953. height: math.unit(10, "mm")
  5954. },
  5955. {
  5956. name: "Micro",
  5957. height: math.unit(6.8, "cm"),
  5958. default: true
  5959. },
  5960. {
  5961. name: "Normal",
  5962. height: math.unit(1.72, "m")
  5963. }
  5964. ]
  5965. ))
  5966. characterMakers.push(() => makeCharacter(
  5967. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5968. {
  5969. front: {
  5970. height: math.unit(1.69, "meters"),
  5971. weight: math.unit(68, "kg"),
  5972. name: "Front",
  5973. image: {
  5974. source: "./media/characters/martin/front.svg",
  5975. extra: 596 / 581
  5976. }
  5977. }
  5978. },
  5979. [
  5980. {
  5981. name: "Micro",
  5982. height: math.unit(6.85, "cm"),
  5983. default: true
  5984. },
  5985. {
  5986. name: "Normal",
  5987. height: math.unit(1.69, "m")
  5988. }
  5989. ]
  5990. ))
  5991. characterMakers.push(() => makeCharacter(
  5992. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  5993. {
  5994. front: {
  5995. height: math.unit(1.69, "meters"),
  5996. weight: math.unit(68, "kg"),
  5997. name: "Front",
  5998. image: {
  5999. source: "./media/characters/juno/front.svg"
  6000. }
  6001. }
  6002. },
  6003. [
  6004. {
  6005. name: "Micro",
  6006. height: math.unit(7, "cm")
  6007. },
  6008. {
  6009. name: "Normal",
  6010. height: math.unit(1.89, "m")
  6011. },
  6012. {
  6013. name: "Macro",
  6014. height: math.unit(353, "meters"),
  6015. default: true
  6016. }
  6017. ]
  6018. ))
  6019. characterMakers.push(() => makeCharacter(
  6020. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6021. {
  6022. front: {
  6023. height: math.unit(1.93, "meters"),
  6024. weight: math.unit(83, "kg"),
  6025. name: "Front",
  6026. image: {
  6027. source: "./media/characters/samantha/front.svg"
  6028. }
  6029. },
  6030. frontClothed: {
  6031. height: math.unit(1.93, "meters"),
  6032. weight: math.unit(83, "kg"),
  6033. name: "Front (Clothed)",
  6034. image: {
  6035. source: "./media/characters/samantha/front-clothed.svg"
  6036. }
  6037. },
  6038. back: {
  6039. height: math.unit(1.93, "meters"),
  6040. weight: math.unit(83, "kg"),
  6041. name: "Back",
  6042. image: {
  6043. source: "./media/characters/samantha/back.svg"
  6044. }
  6045. },
  6046. },
  6047. [
  6048. {
  6049. name: "Normal",
  6050. height: math.unit(1.93, "m")
  6051. },
  6052. {
  6053. name: "Macro",
  6054. height: math.unit(74, "meters"),
  6055. default: true
  6056. },
  6057. {
  6058. name: "Macro+",
  6059. height: math.unit(223, "meters"),
  6060. },
  6061. {
  6062. name: "Megamacro",
  6063. height: math.unit(8381, "meters"),
  6064. },
  6065. {
  6066. name: "Megamacro+",
  6067. height: math.unit(12000, "kilometers")
  6068. },
  6069. ]
  6070. ))
  6071. characterMakers.push(() => makeCharacter(
  6072. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6073. {
  6074. front: {
  6075. height: math.unit(1.92, "meters"),
  6076. weight: math.unit(80, "kg"),
  6077. name: "Front",
  6078. image: {
  6079. source: "./media/characters/dr-clay/front.svg"
  6080. }
  6081. },
  6082. frontClothed: {
  6083. height: math.unit(1.92, "meters"),
  6084. weight: math.unit(80, "kg"),
  6085. name: "Front (Clothed)",
  6086. image: {
  6087. source: "./media/characters/dr-clay/front-clothed.svg"
  6088. }
  6089. }
  6090. },
  6091. [
  6092. {
  6093. name: "Normal",
  6094. height: math.unit(1.92, "m")
  6095. },
  6096. {
  6097. name: "Macro",
  6098. height: math.unit(214, "meters"),
  6099. default: true
  6100. },
  6101. {
  6102. name: "Macro+",
  6103. height: math.unit(12.237, "meters"),
  6104. },
  6105. {
  6106. name: "Megamacro",
  6107. height: math.unit(557, "megameters"),
  6108. },
  6109. {
  6110. name: "Unimaginable",
  6111. height: math.unit(120e9, "lightyears")
  6112. },
  6113. ]
  6114. ))
  6115. characterMakers.push(() => makeCharacter(
  6116. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6117. {
  6118. front: {
  6119. height: math.unit(2, "meters"),
  6120. weight: math.unit(80, "kg"),
  6121. name: "Front",
  6122. image: {
  6123. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6124. }
  6125. }
  6126. },
  6127. [
  6128. {
  6129. name: "Teramacro",
  6130. height: math.unit(500000, "lightyears"),
  6131. default: true
  6132. },
  6133. ]
  6134. ))
  6135. characterMakers.push(() => makeCharacter(
  6136. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6137. {
  6138. front: {
  6139. height: math.unit(2, "meters"),
  6140. weight: math.unit(150, "kg"),
  6141. name: "Front",
  6142. image: {
  6143. source: "./media/characters/vemus/front.svg",
  6144. extra: 2384 / 2084,
  6145. bottom: 0.0123
  6146. }
  6147. }
  6148. },
  6149. [
  6150. {
  6151. name: "Normal",
  6152. height: math.unit(3.75, "meters"),
  6153. default: true
  6154. },
  6155. {
  6156. name: "Big",
  6157. height: math.unit(8, "meters")
  6158. },
  6159. {
  6160. name: "Macro",
  6161. height: math.unit(100, "meters")
  6162. },
  6163. {
  6164. name: "Macro+",
  6165. height: math.unit(1500, "meters")
  6166. },
  6167. {
  6168. name: "Stellar",
  6169. height: math.unit(14e8, "meters")
  6170. },
  6171. ]
  6172. ))
  6173. characterMakers.push(() => makeCharacter(
  6174. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6175. {
  6176. front: {
  6177. height: math.unit(2, "meters"),
  6178. weight: math.unit(70, "kg"),
  6179. name: "Front",
  6180. image: {
  6181. source: "./media/characters/beherit/front.svg",
  6182. extra: 1408 / 1242
  6183. }
  6184. }
  6185. },
  6186. [
  6187. {
  6188. name: "Normal",
  6189. height: math.unit(6, "feet")
  6190. },
  6191. {
  6192. name: "Lorg",
  6193. height: math.unit(25, "feet"),
  6194. default: true
  6195. },
  6196. {
  6197. name: "Lorger",
  6198. height: math.unit(75, "feet")
  6199. },
  6200. {
  6201. name: "Macro",
  6202. height: math.unit(200, "meters")
  6203. },
  6204. ]
  6205. ))
  6206. characterMakers.push(() => makeCharacter(
  6207. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6208. {
  6209. front: {
  6210. height: math.unit(2, "meters"),
  6211. weight: math.unit(150, "kg"),
  6212. name: "Front",
  6213. image: {
  6214. source: "./media/characters/everett/front.svg",
  6215. extra: 2038 / 1737,
  6216. bottom: 0.03
  6217. }
  6218. },
  6219. paw: {
  6220. height: math.unit(2 / 3.6, "meters"),
  6221. name: "Paw",
  6222. image: {
  6223. source: "./media/characters/everett/paw.svg"
  6224. }
  6225. },
  6226. },
  6227. [
  6228. {
  6229. name: "Normal",
  6230. height: math.unit(15, "feet"),
  6231. default: true
  6232. },
  6233. {
  6234. name: "Lorg",
  6235. height: math.unit(70, "feet"),
  6236. default: true
  6237. },
  6238. {
  6239. name: "Lorger",
  6240. height: math.unit(250, "feet")
  6241. },
  6242. {
  6243. name: "Macro",
  6244. height: math.unit(500, "meters")
  6245. },
  6246. ]
  6247. ))
  6248. characterMakers.push(() => makeCharacter(
  6249. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6250. {
  6251. front: {
  6252. height: math.unit(2, "meters"),
  6253. weight: math.unit(86, "kg"),
  6254. name: "Front",
  6255. image: {
  6256. source: "./media/characters/rose/front.svg",
  6257. extra: 350/335,
  6258. bottom: 10/360
  6259. }
  6260. },
  6261. frontAlt: {
  6262. height: math.unit(1.6, "meters"),
  6263. weight: math.unit(86, "kg"),
  6264. name: "Front (Alt)",
  6265. image: {
  6266. source: "./media/characters/rose/front-alt.svg",
  6267. extra: 299/283,
  6268. bottom: 3/302
  6269. }
  6270. },
  6271. plush: {
  6272. height: math.unit(2, "meters"),
  6273. weight: math.unit(86/3, "kg"),
  6274. name: "Plush",
  6275. image: {
  6276. source: "./media/characters/rose/plush.svg",
  6277. extra: 361/337,
  6278. bottom: 11/372
  6279. }
  6280. },
  6281. },
  6282. [
  6283. {
  6284. name: "Mini-Micro",
  6285. height: math.unit(1, "cm")
  6286. },
  6287. {
  6288. name: "Micro",
  6289. height: math.unit(3.5, "inches"),
  6290. default: true
  6291. },
  6292. {
  6293. name: "Normal",
  6294. height: math.unit(6 + 1 / 6, "feet")
  6295. },
  6296. {
  6297. name: "Mini-Macro",
  6298. height: math.unit(9 + 10 / 12, "feet")
  6299. },
  6300. ]
  6301. ))
  6302. characterMakers.push(() => makeCharacter(
  6303. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6304. {
  6305. front: {
  6306. height: math.unit(2, "meters"),
  6307. weight: math.unit(350, "lbs"),
  6308. name: "Front",
  6309. image: {
  6310. source: "./media/characters/regal/front.svg"
  6311. }
  6312. },
  6313. back: {
  6314. height: math.unit(2, "meters"),
  6315. weight: math.unit(350, "lbs"),
  6316. name: "Back",
  6317. image: {
  6318. source: "./media/characters/regal/back.svg"
  6319. }
  6320. },
  6321. },
  6322. [
  6323. {
  6324. name: "Macro",
  6325. height: math.unit(350, "feet"),
  6326. default: true
  6327. }
  6328. ]
  6329. ))
  6330. characterMakers.push(() => makeCharacter(
  6331. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6332. {
  6333. front: {
  6334. height: math.unit(4 + 11 / 12, "feet"),
  6335. weight: math.unit(100, "lbs"),
  6336. name: "Front",
  6337. image: {
  6338. source: "./media/characters/opal/front.svg"
  6339. }
  6340. },
  6341. frontAlt: {
  6342. height: math.unit(4 + 11 / 12, "feet"),
  6343. weight: math.unit(100, "lbs"),
  6344. name: "Front (Alt)",
  6345. image: {
  6346. source: "./media/characters/opal/front-alt.svg"
  6347. }
  6348. },
  6349. },
  6350. [
  6351. {
  6352. name: "Small",
  6353. height: math.unit(4 + 11 / 12, "feet")
  6354. },
  6355. {
  6356. name: "Normal",
  6357. height: math.unit(20, "feet"),
  6358. default: true
  6359. },
  6360. {
  6361. name: "Macro",
  6362. height: math.unit(120, "feet")
  6363. },
  6364. {
  6365. name: "Megamacro",
  6366. height: math.unit(80, "miles")
  6367. },
  6368. {
  6369. name: "True Size",
  6370. height: math.unit(100000, "lightyears")
  6371. },
  6372. ]
  6373. ))
  6374. characterMakers.push(() => makeCharacter(
  6375. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6376. {
  6377. front: {
  6378. height: math.unit(6, "feet"),
  6379. weight: math.unit(200, "lbs"),
  6380. name: "Front",
  6381. image: {
  6382. source: "./media/characters/vector-wuff/front.svg"
  6383. }
  6384. }
  6385. },
  6386. [
  6387. {
  6388. name: "Normal",
  6389. height: math.unit(2.8, "meters")
  6390. },
  6391. {
  6392. name: "Macro",
  6393. height: math.unit(450, "meters"),
  6394. default: true
  6395. },
  6396. {
  6397. name: "Megamacro",
  6398. height: math.unit(15, "kilometers")
  6399. }
  6400. ]
  6401. ))
  6402. characterMakers.push(() => makeCharacter(
  6403. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6404. {
  6405. front: {
  6406. height: math.unit(6, "feet"),
  6407. weight: math.unit(256, "lbs"),
  6408. name: "Front",
  6409. image: {
  6410. source: "./media/characters/dannik/front.svg"
  6411. }
  6412. }
  6413. },
  6414. [
  6415. {
  6416. name: "Macro",
  6417. height: math.unit(69.57, "meters"),
  6418. default: true
  6419. },
  6420. ]
  6421. ))
  6422. characterMakers.push(() => makeCharacter(
  6423. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6424. {
  6425. front: {
  6426. height: math.unit(6, "feet"),
  6427. weight: math.unit(120, "lbs"),
  6428. name: "Front",
  6429. image: {
  6430. source: "./media/characters/azura-saharah/front.svg"
  6431. }
  6432. },
  6433. back: {
  6434. height: math.unit(6, "feet"),
  6435. weight: math.unit(120, "lbs"),
  6436. name: "Back",
  6437. image: {
  6438. source: "./media/characters/azura-saharah/back.svg"
  6439. }
  6440. },
  6441. },
  6442. [
  6443. {
  6444. name: "Macro",
  6445. height: math.unit(100, "feet"),
  6446. default: true
  6447. },
  6448. ]
  6449. ))
  6450. characterMakers.push(() => makeCharacter(
  6451. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6452. {
  6453. side: {
  6454. height: math.unit(5 + 4 / 12, "feet"),
  6455. weight: math.unit(163, "lbs"),
  6456. name: "Side",
  6457. image: {
  6458. source: "./media/characters/kennedy/side.svg"
  6459. }
  6460. }
  6461. },
  6462. [
  6463. {
  6464. name: "Standard Doggo",
  6465. height: math.unit(5 + 4 / 12, "feet")
  6466. },
  6467. {
  6468. name: "Big Doggo",
  6469. height: math.unit(25 + 3 / 12, "feet"),
  6470. default: true
  6471. },
  6472. ]
  6473. ))
  6474. characterMakers.push(() => makeCharacter(
  6475. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6476. {
  6477. front: {
  6478. height: math.unit(6, "feet"),
  6479. weight: math.unit(90, "lbs"),
  6480. name: "Front",
  6481. image: {
  6482. source: "./media/characters/odi-lunar/front.svg"
  6483. }
  6484. }
  6485. },
  6486. [
  6487. {
  6488. name: "Micro",
  6489. height: math.unit(3, "inches"),
  6490. default: true
  6491. },
  6492. {
  6493. name: "Normal",
  6494. height: math.unit(5.5, "feet")
  6495. }
  6496. ]
  6497. ))
  6498. characterMakers.push(() => makeCharacter(
  6499. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6500. {
  6501. back: {
  6502. height: math.unit(6, "feet"),
  6503. weight: math.unit(220, "lbs"),
  6504. name: "Back",
  6505. image: {
  6506. source: "./media/characters/mandake/back.svg"
  6507. }
  6508. }
  6509. },
  6510. [
  6511. {
  6512. name: "Normal",
  6513. height: math.unit(7, "feet"),
  6514. default: true
  6515. },
  6516. {
  6517. name: "Macro",
  6518. height: math.unit(78, "feet")
  6519. },
  6520. {
  6521. name: "Macro+",
  6522. height: math.unit(300, "meters")
  6523. },
  6524. {
  6525. name: "Macro++",
  6526. height: math.unit(2400, "feet")
  6527. },
  6528. {
  6529. name: "Megamacro",
  6530. height: math.unit(5167, "meters")
  6531. },
  6532. {
  6533. name: "Gigamacro",
  6534. height: math.unit(41769, "miles")
  6535. },
  6536. ]
  6537. ))
  6538. characterMakers.push(() => makeCharacter(
  6539. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6540. {
  6541. front: {
  6542. height: math.unit(6, "feet"),
  6543. weight: math.unit(120, "lbs"),
  6544. name: "Front",
  6545. image: {
  6546. source: "./media/characters/yozey/front.svg"
  6547. }
  6548. },
  6549. frontAlt: {
  6550. height: math.unit(6, "feet"),
  6551. weight: math.unit(120, "lbs"),
  6552. name: "Front (Alt)",
  6553. image: {
  6554. source: "./media/characters/yozey/front-alt.svg"
  6555. }
  6556. },
  6557. side: {
  6558. height: math.unit(6, "feet"),
  6559. weight: math.unit(120, "lbs"),
  6560. name: "Side",
  6561. image: {
  6562. source: "./media/characters/yozey/side.svg"
  6563. }
  6564. },
  6565. },
  6566. [
  6567. {
  6568. name: "Micro",
  6569. height: math.unit(3, "inches"),
  6570. default: true
  6571. },
  6572. {
  6573. name: "Normal",
  6574. height: math.unit(6, "feet")
  6575. }
  6576. ]
  6577. ))
  6578. characterMakers.push(() => makeCharacter(
  6579. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6580. {
  6581. front: {
  6582. height: math.unit(6, "feet"),
  6583. weight: math.unit(103, "lbs"),
  6584. name: "Front",
  6585. image: {
  6586. source: "./media/characters/valeska-voss/front.svg"
  6587. }
  6588. }
  6589. },
  6590. [
  6591. {
  6592. name: "Mini-Sized Sub",
  6593. height: math.unit(3.1, "inches")
  6594. },
  6595. {
  6596. name: "Mid-Sized Sub",
  6597. height: math.unit(6.2, "inches")
  6598. },
  6599. {
  6600. name: "Full-Sized Sub",
  6601. height: math.unit(9.3, "inches")
  6602. },
  6603. {
  6604. name: "Normal",
  6605. height: math.unit(5 + 2 / 12, "foot"),
  6606. default: true
  6607. },
  6608. ]
  6609. ))
  6610. characterMakers.push(() => makeCharacter(
  6611. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6612. {
  6613. front: {
  6614. height: math.unit(6, "feet"),
  6615. weight: math.unit(160, "lbs"),
  6616. name: "Front",
  6617. image: {
  6618. source: "./media/characters/gene-zeta/front.svg",
  6619. extra: 3006 / 2826,
  6620. bottom: 182 / 3188
  6621. }
  6622. }
  6623. },
  6624. [
  6625. {
  6626. name: "Micro",
  6627. height: math.unit(6, "inches")
  6628. },
  6629. {
  6630. name: "Normal",
  6631. height: math.unit(5 + 11 / 12, "foot"),
  6632. default: true
  6633. },
  6634. {
  6635. name: "Macro",
  6636. height: math.unit(140, "feet")
  6637. },
  6638. {
  6639. name: "Supercharged",
  6640. height: math.unit(2500, "feet")
  6641. },
  6642. ]
  6643. ))
  6644. characterMakers.push(() => makeCharacter(
  6645. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6646. {
  6647. front: {
  6648. height: math.unit(6, "feet"),
  6649. weight: math.unit(350, "lbs"),
  6650. name: "Front",
  6651. image: {
  6652. source: "./media/characters/razinox/front.svg",
  6653. extra: 1686 / 1548,
  6654. bottom: 28.2 / 1868
  6655. }
  6656. },
  6657. back: {
  6658. height: math.unit(6, "feet"),
  6659. weight: math.unit(350, "lbs"),
  6660. name: "Back",
  6661. image: {
  6662. source: "./media/characters/razinox/back.svg",
  6663. extra: 1660 / 1590,
  6664. bottom: 15 / 1665
  6665. }
  6666. },
  6667. },
  6668. [
  6669. {
  6670. name: "Normal",
  6671. height: math.unit(10 + 8 / 12, "foot")
  6672. },
  6673. {
  6674. name: "Minimacro",
  6675. height: math.unit(15, "foot")
  6676. },
  6677. {
  6678. name: "Macro",
  6679. height: math.unit(60, "foot"),
  6680. default: true
  6681. },
  6682. {
  6683. name: "Megamacro",
  6684. height: math.unit(5, "miles")
  6685. },
  6686. {
  6687. name: "Gigamacro",
  6688. height: math.unit(6000, "miles")
  6689. },
  6690. ]
  6691. ))
  6692. characterMakers.push(() => makeCharacter(
  6693. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6694. {
  6695. front: {
  6696. height: math.unit(6, "feet"),
  6697. weight: math.unit(150, "lbs"),
  6698. name: "Front",
  6699. image: {
  6700. source: "./media/characters/cobalt/front.svg"
  6701. }
  6702. }
  6703. },
  6704. [
  6705. {
  6706. name: "Normal",
  6707. height: math.unit(8 + 1 / 12, "foot")
  6708. },
  6709. {
  6710. name: "Macro",
  6711. height: math.unit(111, "foot"),
  6712. default: true
  6713. },
  6714. {
  6715. name: "Supracosmic",
  6716. height: math.unit(1e42, "feet")
  6717. },
  6718. ]
  6719. ))
  6720. characterMakers.push(() => makeCharacter(
  6721. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6722. {
  6723. front: {
  6724. height: math.unit(6, "feet"),
  6725. weight: math.unit(140, "lbs"),
  6726. name: "Front",
  6727. image: {
  6728. source: "./media/characters/amanda/front.svg"
  6729. }
  6730. }
  6731. },
  6732. [
  6733. {
  6734. name: "Micro",
  6735. height: math.unit(5, "inches"),
  6736. default: true
  6737. },
  6738. ]
  6739. ))
  6740. characterMakers.push(() => makeCharacter(
  6741. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6742. {
  6743. front: {
  6744. height: math.unit(2.75, "meters"),
  6745. weight: math.unit(1200, "lb"),
  6746. name: "Front",
  6747. image: {
  6748. source: "./media/characters/teal/front.svg",
  6749. extra: 2463 / 2320,
  6750. bottom: 166 / 2629
  6751. }
  6752. },
  6753. back: {
  6754. height: math.unit(2.75, "meters"),
  6755. weight: math.unit(1200, "lb"),
  6756. name: "Back",
  6757. image: {
  6758. source: "./media/characters/teal/back.svg",
  6759. extra: 2580 / 2489,
  6760. bottom: 151 / 2731
  6761. }
  6762. },
  6763. sitting: {
  6764. height: math.unit(1.9, "meters"),
  6765. weight: math.unit(1200, "lb"),
  6766. name: "Sitting",
  6767. image: {
  6768. source: "./media/characters/teal/sitting.svg",
  6769. extra: 623 / 590,
  6770. bottom: 121 / 744
  6771. }
  6772. },
  6773. standing: {
  6774. height: math.unit(2.75, "meters"),
  6775. weight: math.unit(1200, "lb"),
  6776. name: "Standing",
  6777. image: {
  6778. source: "./media/characters/teal/standing.svg",
  6779. extra: 923 / 893,
  6780. bottom: 60 / 983
  6781. }
  6782. },
  6783. stretching: {
  6784. height: math.unit(3.65, "meters"),
  6785. weight: math.unit(1200, "lb"),
  6786. name: "Stretching",
  6787. image: {
  6788. source: "./media/characters/teal/stretching.svg",
  6789. extra: 1276 / 1244,
  6790. bottom: 0 / 1276
  6791. }
  6792. },
  6793. legged: {
  6794. height: math.unit(1.3, "meters"),
  6795. weight: math.unit(100, "lb"),
  6796. name: "Legged",
  6797. image: {
  6798. source: "./media/characters/teal/legged.svg",
  6799. extra: 462 / 437,
  6800. bottom: 24 / 486
  6801. }
  6802. },
  6803. naga: {
  6804. height: math.unit(5.4, "meters"),
  6805. weight: math.unit(4000, "lb"),
  6806. name: "Naga",
  6807. image: {
  6808. source: "./media/characters/teal/naga.svg",
  6809. extra: 1902 / 1858,
  6810. bottom: 0 / 1902
  6811. }
  6812. },
  6813. hand: {
  6814. height: math.unit(0.52, "meters"),
  6815. name: "Hand",
  6816. image: {
  6817. source: "./media/characters/teal/hand.svg"
  6818. }
  6819. },
  6820. maw: {
  6821. height: math.unit(0.43, "meters"),
  6822. name: "Maw",
  6823. image: {
  6824. source: "./media/characters/teal/maw.svg"
  6825. }
  6826. },
  6827. slit: {
  6828. height: math.unit(0.25, "meters"),
  6829. name: "Slit",
  6830. image: {
  6831. source: "./media/characters/teal/slit.svg"
  6832. }
  6833. },
  6834. },
  6835. [
  6836. {
  6837. name: "Normal",
  6838. height: math.unit(2.75, "meters"),
  6839. default: true
  6840. },
  6841. {
  6842. name: "Macro",
  6843. height: math.unit(300, "feet")
  6844. },
  6845. {
  6846. name: "Macro+",
  6847. height: math.unit(2000, "feet")
  6848. },
  6849. ]
  6850. ))
  6851. characterMakers.push(() => makeCharacter(
  6852. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6853. {
  6854. frontCat: {
  6855. height: math.unit(6, "feet"),
  6856. weight: math.unit(180, "lbs"),
  6857. name: "Front (Cat)",
  6858. image: {
  6859. source: "./media/characters/ravin-amulet/front-cat.svg"
  6860. }
  6861. },
  6862. frontCatAlt: {
  6863. height: math.unit(6, "feet"),
  6864. weight: math.unit(180, "lbs"),
  6865. name: "Front (Alt, Cat)",
  6866. image: {
  6867. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6868. }
  6869. },
  6870. frontWerewolf: {
  6871. height: math.unit(6 * 1.2, "feet"),
  6872. weight: math.unit(225, "lbs"),
  6873. name: "Front (Werewolf)",
  6874. image: {
  6875. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6876. }
  6877. },
  6878. backWerewolf: {
  6879. height: math.unit(6 * 1.2, "feet"),
  6880. weight: math.unit(225, "lbs"),
  6881. name: "Back (Werewolf)",
  6882. image: {
  6883. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6884. }
  6885. },
  6886. },
  6887. [
  6888. {
  6889. name: "Nano",
  6890. height: math.unit(1, "micrometer")
  6891. },
  6892. {
  6893. name: "Micro",
  6894. height: math.unit(1, "inch")
  6895. },
  6896. {
  6897. name: "Normal",
  6898. height: math.unit(6, "feet"),
  6899. default: true
  6900. },
  6901. {
  6902. name: "Macro",
  6903. height: math.unit(60, "feet")
  6904. }
  6905. ]
  6906. ))
  6907. characterMakers.push(() => makeCharacter(
  6908. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6909. {
  6910. front: {
  6911. height: math.unit(6, "feet"),
  6912. weight: math.unit(165, "lbs"),
  6913. name: "Front",
  6914. image: {
  6915. source: "./media/characters/fluoresce/front.svg"
  6916. }
  6917. }
  6918. },
  6919. [
  6920. {
  6921. name: "Micro",
  6922. height: math.unit(6, "cm")
  6923. },
  6924. {
  6925. name: "Normal",
  6926. height: math.unit(5 + 7 / 12, "feet"),
  6927. default: true
  6928. },
  6929. {
  6930. name: "Macro",
  6931. height: math.unit(56, "feet")
  6932. },
  6933. {
  6934. name: "Megamacro",
  6935. height: math.unit(1.9, "miles")
  6936. },
  6937. ]
  6938. ))
  6939. characterMakers.push(() => makeCharacter(
  6940. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6941. {
  6942. front: {
  6943. height: math.unit(9 + 6 / 12, "feet"),
  6944. weight: math.unit(523, "lbs"),
  6945. name: "Side",
  6946. image: {
  6947. source: "./media/characters/aurora/side.svg"
  6948. }
  6949. }
  6950. },
  6951. [
  6952. {
  6953. name: "Normal",
  6954. height: math.unit(9 + 6 / 12, "feet")
  6955. },
  6956. {
  6957. name: "Macro",
  6958. height: math.unit(96, "feet"),
  6959. default: true
  6960. },
  6961. {
  6962. name: "Macro+",
  6963. height: math.unit(243, "feet")
  6964. },
  6965. ]
  6966. ))
  6967. characterMakers.push(() => makeCharacter(
  6968. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6969. {
  6970. front: {
  6971. height: math.unit(194, "cm"),
  6972. weight: math.unit(90, "kg"),
  6973. name: "Front",
  6974. image: {
  6975. source: "./media/characters/ranek/front.svg"
  6976. }
  6977. },
  6978. side: {
  6979. height: math.unit(194, "cm"),
  6980. weight: math.unit(90, "kg"),
  6981. name: "Side",
  6982. image: {
  6983. source: "./media/characters/ranek/side.svg"
  6984. }
  6985. },
  6986. back: {
  6987. height: math.unit(194, "cm"),
  6988. weight: math.unit(90, "kg"),
  6989. name: "Back",
  6990. image: {
  6991. source: "./media/characters/ranek/back.svg"
  6992. }
  6993. },
  6994. feral: {
  6995. height: math.unit(30, "cm"),
  6996. weight: math.unit(1.6, "lbs"),
  6997. name: "Feral",
  6998. image: {
  6999. source: "./media/characters/ranek/feral.svg"
  7000. }
  7001. },
  7002. },
  7003. [
  7004. {
  7005. name: "Normal",
  7006. height: math.unit(194, "cm"),
  7007. default: true
  7008. },
  7009. {
  7010. name: "Macro",
  7011. height: math.unit(100, "meters")
  7012. },
  7013. ]
  7014. ))
  7015. characterMakers.push(() => makeCharacter(
  7016. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7017. {
  7018. front: {
  7019. height: math.unit(5 + 6 / 12, "feet"),
  7020. weight: math.unit(153, "lbs"),
  7021. name: "Front",
  7022. image: {
  7023. source: "./media/characters/andrew-cooper/front.svg"
  7024. }
  7025. },
  7026. },
  7027. [
  7028. {
  7029. name: "Nano",
  7030. height: math.unit(1, "mm")
  7031. },
  7032. {
  7033. name: "Micro",
  7034. height: math.unit(2, "inches")
  7035. },
  7036. {
  7037. name: "Normal",
  7038. height: math.unit(5 + 6 / 12, "feet"),
  7039. default: true
  7040. }
  7041. ]
  7042. ))
  7043. characterMakers.push(() => makeCharacter(
  7044. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7045. {
  7046. front: {
  7047. height: math.unit(6, "feet"),
  7048. weight: math.unit(180, "lbs"),
  7049. name: "Front",
  7050. image: {
  7051. source: "./media/characters/akane-sato/front.svg",
  7052. extra: 1219 / 1140
  7053. }
  7054. },
  7055. back: {
  7056. height: math.unit(6, "feet"),
  7057. weight: math.unit(180, "lbs"),
  7058. name: "Back",
  7059. image: {
  7060. source: "./media/characters/akane-sato/back.svg",
  7061. extra: 1219 / 1170
  7062. }
  7063. },
  7064. },
  7065. [
  7066. {
  7067. name: "Normal",
  7068. height: math.unit(2.5, "meters")
  7069. },
  7070. {
  7071. name: "Macro",
  7072. height: math.unit(250, "meters"),
  7073. default: true
  7074. },
  7075. {
  7076. name: "Megamacro",
  7077. height: math.unit(25, "km")
  7078. },
  7079. ]
  7080. ))
  7081. characterMakers.push(() => makeCharacter(
  7082. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7083. {
  7084. front: {
  7085. height: math.unit(6, "feet"),
  7086. weight: math.unit(65, "kg"),
  7087. name: "Front",
  7088. image: {
  7089. source: "./media/characters/rook/front.svg",
  7090. extra: 960 / 950
  7091. }
  7092. }
  7093. },
  7094. [
  7095. {
  7096. name: "Normal",
  7097. height: math.unit(8.8, "feet")
  7098. },
  7099. {
  7100. name: "Macro",
  7101. height: math.unit(88, "feet"),
  7102. default: true
  7103. },
  7104. {
  7105. name: "Megamacro",
  7106. height: math.unit(8, "miles")
  7107. },
  7108. ]
  7109. ))
  7110. characterMakers.push(() => makeCharacter(
  7111. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7112. {
  7113. front: {
  7114. height: math.unit(12 + 2 / 12, "feet"),
  7115. weight: math.unit(808, "lbs"),
  7116. name: "Front",
  7117. image: {
  7118. source: "./media/characters/prodigy/front.svg"
  7119. }
  7120. }
  7121. },
  7122. [
  7123. {
  7124. name: "Normal",
  7125. height: math.unit(12 + 2 / 12, "feet"),
  7126. default: true
  7127. },
  7128. {
  7129. name: "Macro",
  7130. height: math.unit(143, "feet")
  7131. },
  7132. {
  7133. name: "Macro+",
  7134. height: math.unit(400, "feet")
  7135. },
  7136. ]
  7137. ))
  7138. characterMakers.push(() => makeCharacter(
  7139. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7140. {
  7141. front: {
  7142. height: math.unit(6, "feet"),
  7143. weight: math.unit(225, "lbs"),
  7144. name: "Front",
  7145. image: {
  7146. source: "./media/characters/daniel/front.svg"
  7147. }
  7148. },
  7149. leaning: {
  7150. height: math.unit(6, "feet"),
  7151. weight: math.unit(225, "lbs"),
  7152. name: "Leaning",
  7153. image: {
  7154. source: "./media/characters/daniel/leaning.svg"
  7155. }
  7156. },
  7157. },
  7158. [
  7159. {
  7160. name: "Macro",
  7161. height: math.unit(1000, "feet"),
  7162. default: true
  7163. },
  7164. ]
  7165. ))
  7166. characterMakers.push(() => makeCharacter(
  7167. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7168. {
  7169. front: {
  7170. height: math.unit(6, "feet"),
  7171. weight: math.unit(88, "lbs"),
  7172. name: "Front",
  7173. image: {
  7174. source: "./media/characters/chiros/front.svg",
  7175. extra: 306 / 226
  7176. }
  7177. },
  7178. side: {
  7179. height: math.unit(6, "feet"),
  7180. weight: math.unit(88, "lbs"),
  7181. name: "Side",
  7182. image: {
  7183. source: "./media/characters/chiros/side.svg",
  7184. extra: 306 / 226
  7185. }
  7186. },
  7187. },
  7188. [
  7189. {
  7190. name: "Normal",
  7191. height: math.unit(6, "cm"),
  7192. default: true
  7193. },
  7194. ]
  7195. ))
  7196. characterMakers.push(() => makeCharacter(
  7197. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7198. {
  7199. front: {
  7200. height: math.unit(6, "feet"),
  7201. weight: math.unit(100, "lbs"),
  7202. name: "Front",
  7203. image: {
  7204. source: "./media/characters/selka/front.svg",
  7205. extra: 947 / 887
  7206. }
  7207. }
  7208. },
  7209. [
  7210. {
  7211. name: "Normal",
  7212. height: math.unit(5, "cm"),
  7213. default: true
  7214. },
  7215. ]
  7216. ))
  7217. characterMakers.push(() => makeCharacter(
  7218. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7219. {
  7220. front: {
  7221. height: math.unit(8 + 3 / 12, "feet"),
  7222. weight: math.unit(424, "lbs"),
  7223. name: "Front",
  7224. image: {
  7225. source: "./media/characters/verin/front.svg",
  7226. extra: 1845 / 1550
  7227. }
  7228. },
  7229. frontArmored: {
  7230. height: math.unit(8 + 3 / 12, "feet"),
  7231. weight: math.unit(424, "lbs"),
  7232. name: "Front (Armored)",
  7233. image: {
  7234. source: "./media/characters/verin/front-armor.svg",
  7235. extra: 1845 / 1550,
  7236. bottom: 0.01
  7237. }
  7238. },
  7239. back: {
  7240. height: math.unit(8 + 3 / 12, "feet"),
  7241. weight: math.unit(424, "lbs"),
  7242. name: "Back",
  7243. image: {
  7244. source: "./media/characters/verin/back.svg",
  7245. bottom: 0.1,
  7246. extra: 1
  7247. }
  7248. },
  7249. foot: {
  7250. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7251. name: "Foot",
  7252. image: {
  7253. source: "./media/characters/verin/foot.svg"
  7254. }
  7255. },
  7256. },
  7257. [
  7258. {
  7259. name: "Normal",
  7260. height: math.unit(8 + 3 / 12, "feet")
  7261. },
  7262. {
  7263. name: "Minimacro",
  7264. height: math.unit(21, "feet"),
  7265. default: true
  7266. },
  7267. {
  7268. name: "Macro",
  7269. height: math.unit(626, "feet")
  7270. },
  7271. ]
  7272. ))
  7273. characterMakers.push(() => makeCharacter(
  7274. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7275. {
  7276. front: {
  7277. height: math.unit(2.718, "meters"),
  7278. weight: math.unit(150, "lbs"),
  7279. name: "Front",
  7280. image: {
  7281. source: "./media/characters/sovrim-terraquian/front.svg"
  7282. }
  7283. },
  7284. back: {
  7285. height: math.unit(2.718, "meters"),
  7286. weight: math.unit(150, "lbs"),
  7287. name: "Back",
  7288. image: {
  7289. source: "./media/characters/sovrim-terraquian/back.svg"
  7290. }
  7291. }
  7292. },
  7293. [
  7294. {
  7295. name: "Micro",
  7296. height: math.unit(2, "inches")
  7297. },
  7298. {
  7299. name: "Small",
  7300. height: math.unit(1, "meter")
  7301. },
  7302. {
  7303. name: "Normal",
  7304. height: math.unit(Math.E, "meters"),
  7305. default: true
  7306. },
  7307. {
  7308. name: "Macro",
  7309. height: math.unit(20, "meters")
  7310. },
  7311. {
  7312. name: "Macro+",
  7313. height: math.unit(400, "meters")
  7314. },
  7315. ]
  7316. ))
  7317. characterMakers.push(() => makeCharacter(
  7318. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7319. {
  7320. front: {
  7321. height: math.unit(7, "feet"),
  7322. weight: math.unit(489, "lbs"),
  7323. name: "Front",
  7324. image: {
  7325. source: "./media/characters/reece-silvermane/front.svg",
  7326. bottom: 0.02,
  7327. extra: 1
  7328. }
  7329. },
  7330. },
  7331. [
  7332. {
  7333. name: "Macro",
  7334. height: math.unit(1.5, "miles"),
  7335. default: true
  7336. },
  7337. ]
  7338. ))
  7339. characterMakers.push(() => makeCharacter(
  7340. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7341. {
  7342. front: {
  7343. height: math.unit(6, "feet"),
  7344. weight: math.unit(78, "kg"),
  7345. name: "Front",
  7346. image: {
  7347. source: "./media/characters/kane/front.svg",
  7348. extra: 978 / 899
  7349. }
  7350. },
  7351. },
  7352. [
  7353. {
  7354. name: "Normal",
  7355. height: math.unit(2.1, "m"),
  7356. },
  7357. {
  7358. name: "Macro",
  7359. height: math.unit(1, "km"),
  7360. default: true
  7361. },
  7362. ]
  7363. ))
  7364. characterMakers.push(() => makeCharacter(
  7365. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7366. {
  7367. front: {
  7368. height: math.unit(6, "feet"),
  7369. weight: math.unit(200, "kg"),
  7370. name: "Front",
  7371. image: {
  7372. source: "./media/characters/tegon/front.svg",
  7373. bottom: 0.01,
  7374. extra: 1
  7375. }
  7376. },
  7377. },
  7378. [
  7379. {
  7380. name: "Micro",
  7381. height: math.unit(1, "inch")
  7382. },
  7383. {
  7384. name: "Normal",
  7385. height: math.unit(6 + 3 / 12, "feet"),
  7386. default: true
  7387. },
  7388. {
  7389. name: "Macro",
  7390. height: math.unit(300, "feet")
  7391. },
  7392. {
  7393. name: "Megamacro",
  7394. height: math.unit(69, "miles")
  7395. },
  7396. ]
  7397. ))
  7398. characterMakers.push(() => makeCharacter(
  7399. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7400. {
  7401. side: {
  7402. height: math.unit(6, "feet"),
  7403. weight: math.unit(2304, "lbs"),
  7404. name: "Side",
  7405. image: {
  7406. source: "./media/characters/arcturax/side.svg",
  7407. extra: 790 / 376,
  7408. bottom: 0.01
  7409. }
  7410. },
  7411. },
  7412. [
  7413. {
  7414. name: "Micro",
  7415. height: math.unit(2, "inch")
  7416. },
  7417. {
  7418. name: "Normal",
  7419. height: math.unit(6, "feet")
  7420. },
  7421. {
  7422. name: "Macro",
  7423. height: math.unit(39, "feet"),
  7424. default: true
  7425. },
  7426. {
  7427. name: "Megamacro",
  7428. height: math.unit(7, "miles")
  7429. },
  7430. ]
  7431. ))
  7432. characterMakers.push(() => makeCharacter(
  7433. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7434. {
  7435. front: {
  7436. height: math.unit(6, "feet"),
  7437. weight: math.unit(50, "lbs"),
  7438. name: "Front",
  7439. image: {
  7440. source: "./media/characters/sentri/front.svg",
  7441. extra: 1750 / 1570,
  7442. bottom: 0.025
  7443. }
  7444. },
  7445. frontAlt: {
  7446. height: math.unit(6, "feet"),
  7447. weight: math.unit(50, "lbs"),
  7448. name: "Front (Alt)",
  7449. image: {
  7450. source: "./media/characters/sentri/front-alt.svg",
  7451. extra: 1750 / 1570,
  7452. bottom: 0.025
  7453. }
  7454. },
  7455. },
  7456. [
  7457. {
  7458. name: "Normal",
  7459. height: math.unit(15, "feet"),
  7460. default: true
  7461. },
  7462. {
  7463. name: "Macro",
  7464. height: math.unit(2500, "feet")
  7465. }
  7466. ]
  7467. ))
  7468. characterMakers.push(() => makeCharacter(
  7469. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7470. {
  7471. front: {
  7472. height: math.unit(5 + 8 / 12, "feet"),
  7473. weight: math.unit(130, "lbs"),
  7474. name: "Front",
  7475. image: {
  7476. source: "./media/characters/corvin/front.svg",
  7477. extra: 1803 / 1629
  7478. }
  7479. },
  7480. frontShirt: {
  7481. height: math.unit(5 + 8 / 12, "feet"),
  7482. weight: math.unit(130, "lbs"),
  7483. name: "Front (Shirt)",
  7484. image: {
  7485. source: "./media/characters/corvin/front-shirt.svg",
  7486. extra: 1803 / 1629
  7487. }
  7488. },
  7489. frontPoncho: {
  7490. height: math.unit(5 + 8 / 12, "feet"),
  7491. weight: math.unit(130, "lbs"),
  7492. name: "Front (Poncho)",
  7493. image: {
  7494. source: "./media/characters/corvin/front-poncho.svg",
  7495. extra: 1803 / 1629
  7496. }
  7497. },
  7498. side: {
  7499. height: math.unit(5 + 8 / 12, "feet"),
  7500. weight: math.unit(130, "lbs"),
  7501. name: "Side",
  7502. image: {
  7503. source: "./media/characters/corvin/side.svg",
  7504. extra: 1012 / 945
  7505. }
  7506. },
  7507. back: {
  7508. height: math.unit(5 + 8 / 12, "feet"),
  7509. weight: math.unit(130, "lbs"),
  7510. name: "Back",
  7511. image: {
  7512. source: "./media/characters/corvin/back.svg",
  7513. extra: 1803 / 1629
  7514. }
  7515. },
  7516. },
  7517. [
  7518. {
  7519. name: "Micro",
  7520. height: math.unit(3, "inches")
  7521. },
  7522. {
  7523. name: "Normal",
  7524. height: math.unit(5 + 8 / 12, "feet")
  7525. },
  7526. {
  7527. name: "Macro",
  7528. height: math.unit(300, "feet"),
  7529. default: true
  7530. },
  7531. {
  7532. name: "Megamacro",
  7533. height: math.unit(500, "miles")
  7534. }
  7535. ]
  7536. ))
  7537. characterMakers.push(() => makeCharacter(
  7538. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7539. {
  7540. front: {
  7541. height: math.unit(6, "feet"),
  7542. weight: math.unit(135, "lbs"),
  7543. name: "Front",
  7544. image: {
  7545. source: "./media/characters/q/front.svg",
  7546. extra: 854 / 752,
  7547. bottom: 0.005
  7548. }
  7549. },
  7550. back: {
  7551. height: math.unit(6, "feet"),
  7552. weight: math.unit(130, "lbs"),
  7553. name: "Back",
  7554. image: {
  7555. source: "./media/characters/q/back.svg",
  7556. extra: 854 / 752
  7557. }
  7558. },
  7559. },
  7560. [
  7561. {
  7562. name: "Macro",
  7563. height: math.unit(90, "feet"),
  7564. default: true
  7565. },
  7566. {
  7567. name: "Extra Macro",
  7568. height: math.unit(300, "feet"),
  7569. },
  7570. {
  7571. name: "BIG WALF",
  7572. height: math.unit(750, "feet"),
  7573. },
  7574. ]
  7575. ))
  7576. characterMakers.push(() => makeCharacter(
  7577. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7578. {
  7579. front: {
  7580. height: math.unit(6, "feet"),
  7581. weight: math.unit(150, "lbs"),
  7582. name: "Front",
  7583. image: {
  7584. source: "./media/characters/carley/front.svg",
  7585. extra: 3927 / 3540,
  7586. bottom: 29.2 / 735
  7587. }
  7588. }
  7589. },
  7590. [
  7591. {
  7592. name: "Normal",
  7593. height: math.unit(6 + 3 / 12, "feet")
  7594. },
  7595. {
  7596. name: "Macro",
  7597. height: math.unit(185, "feet"),
  7598. default: true
  7599. },
  7600. {
  7601. name: "Megamacro",
  7602. height: math.unit(8, "miles"),
  7603. },
  7604. ]
  7605. ))
  7606. characterMakers.push(() => makeCharacter(
  7607. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7608. {
  7609. front: {
  7610. height: math.unit(3, "feet"),
  7611. weight: math.unit(28, "lbs"),
  7612. name: "Front",
  7613. image: {
  7614. source: "./media/characters/citrine/front.svg"
  7615. }
  7616. }
  7617. },
  7618. [
  7619. {
  7620. name: "Normal",
  7621. height: math.unit(3, "feet"),
  7622. default: true
  7623. }
  7624. ]
  7625. ))
  7626. characterMakers.push(() => makeCharacter(
  7627. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7628. {
  7629. front: {
  7630. height: math.unit(14, "feet"),
  7631. weight: math.unit(1450, "kg"),
  7632. capacity: math.unit(15, "people"),
  7633. name: "Front",
  7634. image: {
  7635. source: "./media/characters/aura-starwind/front.svg",
  7636. extra: 1455 / 1335
  7637. }
  7638. },
  7639. side: {
  7640. height: math.unit(14, "feet"),
  7641. weight: math.unit(1450, "kg"),
  7642. capacity: math.unit(15, "people"),
  7643. name: "Side",
  7644. image: {
  7645. source: "./media/characters/aura-starwind/side.svg",
  7646. extra: 1654 / 1497
  7647. }
  7648. },
  7649. taur: {
  7650. height: math.unit(18, "feet"),
  7651. weight: math.unit(5500, "kg"),
  7652. capacity: math.unit(50, "people"),
  7653. name: "Taur",
  7654. image: {
  7655. source: "./media/characters/aura-starwind/taur.svg",
  7656. extra: 1760 / 1650
  7657. }
  7658. },
  7659. feral: {
  7660. height: math.unit(46, "feet"),
  7661. weight: math.unit(25000, "kg"),
  7662. capacity: math.unit(120, "people"),
  7663. name: "Feral",
  7664. image: {
  7665. source: "./media/characters/aura-starwind/feral.svg"
  7666. }
  7667. },
  7668. },
  7669. [
  7670. {
  7671. name: "Normal",
  7672. height: math.unit(14, "feet"),
  7673. default: true
  7674. },
  7675. {
  7676. name: "Macro",
  7677. height: math.unit(50, "meters")
  7678. },
  7679. {
  7680. name: "Megamacro",
  7681. height: math.unit(5000, "meters")
  7682. },
  7683. {
  7684. name: "Gigamacro",
  7685. height: math.unit(100000, "kilometers")
  7686. },
  7687. ]
  7688. ))
  7689. characterMakers.push(() => makeCharacter(
  7690. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7691. {
  7692. front: {
  7693. height: math.unit(2 + 7 / 12, "feet"),
  7694. weight: math.unit(32, "lbs"),
  7695. name: "Front",
  7696. image: {
  7697. source: "./media/characters/rivet/front.svg",
  7698. extra: 1716 / 1658,
  7699. bottom: 0.03
  7700. }
  7701. },
  7702. foot: {
  7703. height: math.unit(0.551, "feet"),
  7704. name: "Rivet's Foot",
  7705. image: {
  7706. source: "./media/characters/rivet/foot.svg"
  7707. },
  7708. rename: true
  7709. }
  7710. },
  7711. [
  7712. {
  7713. name: "Micro",
  7714. height: math.unit(1.5, "inches"),
  7715. },
  7716. {
  7717. name: "Normal",
  7718. height: math.unit(2 + 7 / 12, "feet"),
  7719. default: true
  7720. },
  7721. {
  7722. name: "Macro",
  7723. height: math.unit(85, "feet")
  7724. },
  7725. {
  7726. name: "Megamacro",
  7727. height: math.unit(2.2, "km")
  7728. }
  7729. ]
  7730. ))
  7731. characterMakers.push(() => makeCharacter(
  7732. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7733. {
  7734. front: {
  7735. height: math.unit(5 + 9 / 12, "feet"),
  7736. weight: math.unit(150, "lbs"),
  7737. name: "Front",
  7738. image: {
  7739. source: "./media/characters/coffee/front.svg",
  7740. extra: 3666 / 3032,
  7741. bottom: 0.04
  7742. }
  7743. },
  7744. foot: {
  7745. height: math.unit(1.29, "feet"),
  7746. name: "Foot",
  7747. image: {
  7748. source: "./media/characters/coffee/foot.svg"
  7749. }
  7750. },
  7751. },
  7752. [
  7753. {
  7754. name: "Micro",
  7755. height: math.unit(2, "inches"),
  7756. },
  7757. {
  7758. name: "Normal",
  7759. height: math.unit(5 + 9 / 12, "feet"),
  7760. default: true
  7761. },
  7762. {
  7763. name: "Macro",
  7764. height: math.unit(800, "feet")
  7765. },
  7766. {
  7767. name: "Megamacro",
  7768. height: math.unit(25, "miles")
  7769. }
  7770. ]
  7771. ))
  7772. characterMakers.push(() => makeCharacter(
  7773. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7774. {
  7775. front: {
  7776. height: math.unit(6, "feet"),
  7777. weight: math.unit(200, "lbs"),
  7778. name: "Front",
  7779. image: {
  7780. source: "./media/characters/chari-gal/front.svg",
  7781. extra: 1568 / 1385,
  7782. bottom: 0.047
  7783. }
  7784. },
  7785. gigantamax: {
  7786. height: math.unit(6 * 16, "feet"),
  7787. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7788. name: "Gigantamax",
  7789. image: {
  7790. source: "./media/characters/chari-gal/gigantamax.svg",
  7791. extra: 1124 / 888,
  7792. bottom: 0.03
  7793. }
  7794. },
  7795. },
  7796. [
  7797. {
  7798. name: "Normal",
  7799. height: math.unit(5 + 7 / 12, "feet")
  7800. },
  7801. {
  7802. name: "Macro",
  7803. height: math.unit(200, "feet"),
  7804. default: true
  7805. }
  7806. ]
  7807. ))
  7808. characterMakers.push(() => makeCharacter(
  7809. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7810. {
  7811. front: {
  7812. height: math.unit(6, "feet"),
  7813. weight: math.unit(150, "lbs"),
  7814. name: "Front",
  7815. image: {
  7816. source: "./media/characters/nova/front.svg",
  7817. extra: 5000 / 4722,
  7818. bottom: 0.02
  7819. }
  7820. }
  7821. },
  7822. [
  7823. {
  7824. name: "Micro-",
  7825. height: math.unit(0.8, "inches")
  7826. },
  7827. {
  7828. name: "Micro",
  7829. height: math.unit(2, "inches"),
  7830. default: true
  7831. },
  7832. ]
  7833. ))
  7834. characterMakers.push(() => makeCharacter(
  7835. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7836. {
  7837. front: {
  7838. height: math.unit(3 + 1 / 12, "feet"),
  7839. weight: math.unit(21.7, "lbs"),
  7840. name: "Front",
  7841. image: {
  7842. source: "./media/characters/argent/front.svg",
  7843. extra: 1471 / 1331,
  7844. bottom: 100.8 / 1575.5
  7845. }
  7846. }
  7847. },
  7848. [
  7849. {
  7850. name: "Micro",
  7851. height: math.unit(2, "inches")
  7852. },
  7853. {
  7854. name: "Normal",
  7855. height: math.unit(3 + 1 / 12, "feet"),
  7856. default: true
  7857. },
  7858. {
  7859. name: "Macro",
  7860. height: math.unit(120, "feet")
  7861. },
  7862. ]
  7863. ))
  7864. characterMakers.push(() => makeCharacter(
  7865. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7866. {
  7867. lamp: {
  7868. height: math.unit(7 * 1559 / 989, "feet"),
  7869. name: "Magic Lamp",
  7870. image: {
  7871. source: "./media/characters/mira-al-cul/lamp.svg",
  7872. extra: 1617 / 1559
  7873. }
  7874. },
  7875. front: {
  7876. height: math.unit(7, "feet"),
  7877. name: "Front",
  7878. image: {
  7879. source: "./media/characters/mira-al-cul/front.svg",
  7880. extra: 1044 / 990
  7881. }
  7882. },
  7883. },
  7884. [
  7885. {
  7886. name: "Heavily Restricted",
  7887. height: math.unit(7 * 1559 / 989, "feet")
  7888. },
  7889. {
  7890. name: "Freshly Freed",
  7891. height: math.unit(50 * 1559 / 989, "feet")
  7892. },
  7893. {
  7894. name: "World Encompassing",
  7895. height: math.unit(10000 * 1559 / 989, "miles")
  7896. },
  7897. {
  7898. name: "Galactic",
  7899. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7900. },
  7901. {
  7902. name: "Palmed Universe",
  7903. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7904. default: true
  7905. },
  7906. {
  7907. name: "Multiversal Matriarch",
  7908. height: math.unit(8.87e10, "yottameters")
  7909. },
  7910. {
  7911. name: "Void Mother",
  7912. height: math.unit(3.14e110, "yottaparsecs")
  7913. },
  7914. {
  7915. name: "Toying with Transcendence",
  7916. height: math.unit(1e307, "meters")
  7917. },
  7918. ]
  7919. ))
  7920. characterMakers.push(() => makeCharacter(
  7921. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7922. {
  7923. front: {
  7924. height: math.unit(17 + 1 / 12, "feet"),
  7925. weight: math.unit(476.2 * 5, "lbs"),
  7926. name: "Front",
  7927. image: {
  7928. source: "./media/characters/kuro-shi-uchū/front.svg",
  7929. extra: 2329 / 1835,
  7930. bottom: 0.02
  7931. }
  7932. },
  7933. },
  7934. [
  7935. {
  7936. name: "Micro",
  7937. height: math.unit(2, "inches")
  7938. },
  7939. {
  7940. name: "Normal",
  7941. height: math.unit(12, "meters")
  7942. },
  7943. {
  7944. name: "Planetary",
  7945. height: math.unit(0.00929, "AU"),
  7946. default: true
  7947. },
  7948. {
  7949. name: "Universal",
  7950. height: math.unit(20, "gigaparsecs")
  7951. },
  7952. ]
  7953. ))
  7954. characterMakers.push(() => makeCharacter(
  7955. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7956. {
  7957. front: {
  7958. height: math.unit(5 + 2 / 12, "feet"),
  7959. weight: math.unit(120, "lbs"),
  7960. name: "Front",
  7961. image: {
  7962. source: "./media/characters/katherine/front.svg",
  7963. extra: 2075 / 1969
  7964. }
  7965. },
  7966. dress: {
  7967. height: math.unit(5 + 2 / 12, "feet"),
  7968. weight: math.unit(120, "lbs"),
  7969. name: "Dress",
  7970. image: {
  7971. source: "./media/characters/katherine/dress.svg",
  7972. extra: 2258 / 2064
  7973. }
  7974. },
  7975. },
  7976. [
  7977. {
  7978. name: "Micro",
  7979. height: math.unit(1, "inches"),
  7980. default: true
  7981. },
  7982. {
  7983. name: "Normal",
  7984. height: math.unit(5 + 2 / 12, "feet")
  7985. },
  7986. {
  7987. name: "Macro",
  7988. height: math.unit(100, "meters")
  7989. },
  7990. {
  7991. name: "Megamacro",
  7992. height: math.unit(80, "miles")
  7993. },
  7994. ]
  7995. ))
  7996. characterMakers.push(() => makeCharacter(
  7997. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7998. {
  7999. front: {
  8000. height: math.unit(7 + 8 / 12, "feet"),
  8001. weight: math.unit(250, "lbs"),
  8002. name: "Front",
  8003. image: {
  8004. source: "./media/characters/yevis/front.svg",
  8005. extra: 1938 / 1755
  8006. }
  8007. }
  8008. },
  8009. [
  8010. {
  8011. name: "Mortal",
  8012. height: math.unit(7 + 8 / 12, "feet")
  8013. },
  8014. {
  8015. name: "Battle",
  8016. height: math.unit(25 + 11 / 12, "feet")
  8017. },
  8018. {
  8019. name: "Wrath",
  8020. height: math.unit(1654 + 11 / 12, "feet")
  8021. },
  8022. {
  8023. name: "Planet Destroyer",
  8024. height: math.unit(12000, "miles")
  8025. },
  8026. {
  8027. name: "Galaxy Conqueror",
  8028. height: math.unit(1.45, "zettameters"),
  8029. default: true
  8030. },
  8031. {
  8032. name: "Universal War",
  8033. height: math.unit(184, "gigaparsecs")
  8034. },
  8035. {
  8036. name: "Eternity War",
  8037. height: math.unit(1.98e55, "yottaparsecs")
  8038. },
  8039. ]
  8040. ))
  8041. characterMakers.push(() => makeCharacter(
  8042. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8043. {
  8044. front: {
  8045. height: math.unit(5 + 8 / 12, "feet"),
  8046. weight: math.unit(63, "kg"),
  8047. name: "Front",
  8048. image: {
  8049. source: "./media/characters/xavier/front.svg",
  8050. extra: 944 / 883
  8051. }
  8052. },
  8053. frontStretch: {
  8054. height: math.unit(5 + 8 / 12, "feet"),
  8055. weight: math.unit(63, "kg"),
  8056. name: "Stretching",
  8057. image: {
  8058. source: "./media/characters/xavier/front-stretch.svg",
  8059. extra: 962 / 820
  8060. }
  8061. },
  8062. },
  8063. [
  8064. {
  8065. name: "Normal",
  8066. height: math.unit(5 + 8 / 12, "feet")
  8067. },
  8068. {
  8069. name: "Macro",
  8070. height: math.unit(100, "meters"),
  8071. default: true
  8072. },
  8073. {
  8074. name: "McLargeHuge",
  8075. height: math.unit(10, "miles")
  8076. },
  8077. ]
  8078. ))
  8079. characterMakers.push(() => makeCharacter(
  8080. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8081. {
  8082. front: {
  8083. height: math.unit(5 + 5 / 12, "feet"),
  8084. weight: math.unit(150, "lb"),
  8085. name: "Front",
  8086. image: {
  8087. source: "./media/characters/joshii/front.svg",
  8088. extra: 765 / 653,
  8089. bottom: 51 / 816
  8090. }
  8091. },
  8092. foot: {
  8093. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8094. name: "Foot",
  8095. image: {
  8096. source: "./media/characters/joshii/foot.svg"
  8097. }
  8098. },
  8099. },
  8100. [
  8101. {
  8102. name: "Micro",
  8103. height: math.unit(2, "inches"),
  8104. default: true
  8105. },
  8106. {
  8107. name: "Normal",
  8108. height: math.unit(5 + 5 / 12, "feet")
  8109. },
  8110. {
  8111. name: "Macro",
  8112. height: math.unit(785, "feet")
  8113. },
  8114. {
  8115. name: "Megamacro",
  8116. height: math.unit(24.5, "miles")
  8117. },
  8118. ]
  8119. ))
  8120. characterMakers.push(() => makeCharacter(
  8121. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8122. {
  8123. front: {
  8124. height: math.unit(6, "feet"),
  8125. weight: math.unit(150, "lb"),
  8126. name: "Front",
  8127. image: {
  8128. source: "./media/characters/goddess-elizabeth/front.svg",
  8129. extra: 1800 / 1525,
  8130. bottom: 0.005
  8131. }
  8132. },
  8133. foot: {
  8134. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8135. name: "Foot",
  8136. image: {
  8137. source: "./media/characters/goddess-elizabeth/foot.svg"
  8138. }
  8139. },
  8140. mouth: {
  8141. height: math.unit(6, "feet"),
  8142. name: "Mouth",
  8143. image: {
  8144. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8145. }
  8146. },
  8147. },
  8148. [
  8149. {
  8150. name: "Micro",
  8151. height: math.unit(12, "feet")
  8152. },
  8153. {
  8154. name: "Normal",
  8155. height: math.unit(80, "miles"),
  8156. default: true
  8157. },
  8158. {
  8159. name: "Macro",
  8160. height: math.unit(15000, "parsecs")
  8161. },
  8162. ]
  8163. ))
  8164. characterMakers.push(() => makeCharacter(
  8165. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8166. {
  8167. front: {
  8168. height: math.unit(5 + 9 / 12, "feet"),
  8169. weight: math.unit(144, "lb"),
  8170. name: "Front",
  8171. image: {
  8172. source: "./media/characters/kara/front.svg"
  8173. }
  8174. },
  8175. feet: {
  8176. height: math.unit(6 / 6.765, "feet"),
  8177. name: "Kara's Feet",
  8178. rename: true,
  8179. image: {
  8180. source: "./media/characters/kara/feet.svg"
  8181. }
  8182. },
  8183. },
  8184. [
  8185. {
  8186. name: "Normal",
  8187. height: math.unit(5 + 9 / 12, "feet")
  8188. },
  8189. {
  8190. name: "Macro",
  8191. height: math.unit(174, "feet"),
  8192. default: true
  8193. },
  8194. ]
  8195. ))
  8196. characterMakers.push(() => makeCharacter(
  8197. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8198. {
  8199. front: {
  8200. height: math.unit(18, "feet"),
  8201. weight: math.unit(4050, "lb"),
  8202. name: "Front",
  8203. image: {
  8204. source: "./media/characters/tyrone/front.svg",
  8205. extra: 2405 / 2270,
  8206. bottom: 182 / 2587
  8207. }
  8208. },
  8209. },
  8210. [
  8211. {
  8212. name: "Normal",
  8213. height: math.unit(18, "feet"),
  8214. default: true
  8215. },
  8216. {
  8217. name: "Macro",
  8218. height: math.unit(300, "feet")
  8219. },
  8220. {
  8221. name: "Megamacro",
  8222. height: math.unit(15, "km")
  8223. },
  8224. {
  8225. name: "Gigamacro",
  8226. height: math.unit(500, "km")
  8227. },
  8228. {
  8229. name: "Teramacro",
  8230. height: math.unit(0.5, "gigameters")
  8231. },
  8232. {
  8233. name: "Omnimacro",
  8234. height: math.unit(1e252, "yottauniverse")
  8235. },
  8236. ]
  8237. ))
  8238. characterMakers.push(() => makeCharacter(
  8239. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8240. {
  8241. front: {
  8242. height: math.unit(7 + 8 / 12, "feet"),
  8243. weight: math.unit(120, "lb"),
  8244. name: "Front",
  8245. image: {
  8246. source: "./media/characters/danny/front.svg",
  8247. extra: 1490 / 1350
  8248. }
  8249. },
  8250. back: {
  8251. height: math.unit(7 + 8 / 12, "feet"),
  8252. weight: math.unit(120, "lb"),
  8253. name: "Back",
  8254. image: {
  8255. source: "./media/characters/danny/back.svg",
  8256. extra: 1490 / 1350
  8257. }
  8258. },
  8259. },
  8260. [
  8261. {
  8262. name: "Normal",
  8263. height: math.unit(7 + 8 / 12, "feet"),
  8264. default: true
  8265. },
  8266. ]
  8267. ))
  8268. characterMakers.push(() => makeCharacter(
  8269. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8270. {
  8271. front: {
  8272. height: math.unit(3.5, "inches"),
  8273. weight: math.unit(19, "grams"),
  8274. name: "Front",
  8275. image: {
  8276. source: "./media/characters/mallow/front.svg",
  8277. extra: 471 / 431
  8278. }
  8279. },
  8280. back: {
  8281. height: math.unit(3.5, "inches"),
  8282. weight: math.unit(19, "grams"),
  8283. name: "Back",
  8284. image: {
  8285. source: "./media/characters/mallow/back.svg",
  8286. extra: 471 / 431
  8287. }
  8288. },
  8289. },
  8290. [
  8291. {
  8292. name: "Normal",
  8293. height: math.unit(3.5, "inches"),
  8294. default: true
  8295. },
  8296. ]
  8297. ))
  8298. characterMakers.push(() => makeCharacter(
  8299. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8300. {
  8301. front: {
  8302. height: math.unit(9, "feet"),
  8303. weight: math.unit(230, "kg"),
  8304. name: "Front",
  8305. image: {
  8306. source: "./media/characters/starry-aqua/front.svg"
  8307. }
  8308. },
  8309. back: {
  8310. height: math.unit(9, "feet"),
  8311. weight: math.unit(230, "kg"),
  8312. name: "Back",
  8313. image: {
  8314. source: "./media/characters/starry-aqua/back.svg"
  8315. }
  8316. },
  8317. hand: {
  8318. height: math.unit(9 * 0.1168, "feet"),
  8319. name: "Hand",
  8320. image: {
  8321. source: "./media/characters/starry-aqua/hand.svg"
  8322. }
  8323. },
  8324. foot: {
  8325. height: math.unit(9 * 0.18, "feet"),
  8326. name: "Foot",
  8327. image: {
  8328. source: "./media/characters/starry-aqua/foot.svg"
  8329. }
  8330. }
  8331. },
  8332. [
  8333. {
  8334. name: "Micro",
  8335. height: math.unit(3, "inches")
  8336. },
  8337. {
  8338. name: "Normal",
  8339. height: math.unit(9, "feet")
  8340. },
  8341. {
  8342. name: "Macro",
  8343. height: math.unit(300, "feet"),
  8344. default: true
  8345. },
  8346. {
  8347. name: "Megamacro",
  8348. height: math.unit(3200, "feet")
  8349. }
  8350. ]
  8351. ))
  8352. characterMakers.push(() => makeCharacter(
  8353. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8354. {
  8355. front: {
  8356. height: math.unit(6, "feet"),
  8357. weight: math.unit(230, "lb"),
  8358. name: "Front",
  8359. image: {
  8360. source: "./media/characters/luka/front.svg",
  8361. extra: 1,
  8362. bottom: 0.025
  8363. }
  8364. },
  8365. },
  8366. [
  8367. {
  8368. name: "Normal",
  8369. height: math.unit(12 + 8 / 12, "feet"),
  8370. default: true
  8371. },
  8372. {
  8373. name: "Minimacro",
  8374. height: math.unit(20, "feet")
  8375. },
  8376. {
  8377. name: "Macro",
  8378. height: math.unit(250, "feet")
  8379. },
  8380. {
  8381. name: "Megamacro",
  8382. height: math.unit(5, "miles")
  8383. },
  8384. {
  8385. name: "Gigamacro",
  8386. height: math.unit(8000, "miles")
  8387. },
  8388. ]
  8389. ))
  8390. characterMakers.push(() => makeCharacter(
  8391. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8392. {
  8393. front: {
  8394. height: math.unit(6, "feet"),
  8395. weight: math.unit(150, "lb"),
  8396. name: "Front",
  8397. image: {
  8398. source: "./media/characters/natalie-nightring/front.svg",
  8399. extra: 1,
  8400. bottom: 0.06
  8401. }
  8402. },
  8403. },
  8404. [
  8405. {
  8406. name: "Uh Oh",
  8407. height: math.unit(0.1, "mm")
  8408. },
  8409. {
  8410. name: "Small",
  8411. height: math.unit(3, "inches")
  8412. },
  8413. {
  8414. name: "Human Scale",
  8415. height: math.unit(6, "feet")
  8416. },
  8417. {
  8418. name: "Librarian",
  8419. height: math.unit(50, "feet"),
  8420. default: true
  8421. },
  8422. {
  8423. name: "Immense",
  8424. height: math.unit(200, "miles")
  8425. },
  8426. ]
  8427. ))
  8428. characterMakers.push(() => makeCharacter(
  8429. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8430. {
  8431. front: {
  8432. height: math.unit(6, "feet"),
  8433. weight: math.unit(180, "lbs"),
  8434. name: "Front",
  8435. image: {
  8436. source: "./media/characters/danni-rosie/front.svg",
  8437. extra: 1260 / 1128,
  8438. bottom: 0.022
  8439. }
  8440. },
  8441. },
  8442. [
  8443. {
  8444. name: "Micro",
  8445. height: math.unit(2, "inches"),
  8446. default: true
  8447. },
  8448. ]
  8449. ))
  8450. characterMakers.push(() => makeCharacter(
  8451. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8452. {
  8453. front: {
  8454. height: math.unit(5 + 9 / 12, "feet"),
  8455. weight: math.unit(220, "lb"),
  8456. name: "Front",
  8457. image: {
  8458. source: "./media/characters/samantha-kruse/front.svg",
  8459. extra: (985 / 935),
  8460. bottom: 0.03
  8461. }
  8462. },
  8463. frontUndressed: {
  8464. height: math.unit(5 + 9 / 12, "feet"),
  8465. weight: math.unit(220, "lb"),
  8466. name: "Front (Undressed)",
  8467. image: {
  8468. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8469. extra: (973 / 923),
  8470. bottom: 0.025
  8471. }
  8472. },
  8473. fat: {
  8474. height: math.unit(5 + 9 / 12, "feet"),
  8475. weight: math.unit(900, "lb"),
  8476. name: "Front (Fat)",
  8477. image: {
  8478. source: "./media/characters/samantha-kruse/fat.svg",
  8479. extra: 2688 / 2561
  8480. }
  8481. },
  8482. },
  8483. [
  8484. {
  8485. name: "Normal",
  8486. height: math.unit(5 + 9 / 12, "feet"),
  8487. default: true
  8488. }
  8489. ]
  8490. ))
  8491. characterMakers.push(() => makeCharacter(
  8492. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8493. {
  8494. back: {
  8495. height: math.unit(5 + 4 / 12, "feet"),
  8496. weight: math.unit(4963, "lb"),
  8497. name: "Back",
  8498. image: {
  8499. source: "./media/characters/amelia-rosie/back.svg",
  8500. extra: 1113 / 963,
  8501. bottom: 0.01
  8502. }
  8503. },
  8504. },
  8505. [
  8506. {
  8507. name: "Level 0",
  8508. height: math.unit(5 + 4 / 12, "feet")
  8509. },
  8510. {
  8511. name: "Level 1",
  8512. height: math.unit(164597, "feet"),
  8513. default: true
  8514. },
  8515. {
  8516. name: "Level 2",
  8517. height: math.unit(956243, "miles")
  8518. },
  8519. {
  8520. name: "Level 3",
  8521. height: math.unit(29421709423, "miles")
  8522. },
  8523. {
  8524. name: "Level 4",
  8525. height: math.unit(154, "lightyears")
  8526. },
  8527. {
  8528. name: "Level 5",
  8529. height: math.unit(4738272, "lightyears")
  8530. },
  8531. {
  8532. name: "Level 6",
  8533. height: math.unit(145787152896, "lightyears")
  8534. },
  8535. ]
  8536. ))
  8537. characterMakers.push(() => makeCharacter(
  8538. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8539. {
  8540. front: {
  8541. height: math.unit(5 + 11 / 12, "feet"),
  8542. weight: math.unit(65, "kg"),
  8543. name: "Front",
  8544. image: {
  8545. source: "./media/characters/rook-kitara/front.svg",
  8546. extra: 1347 / 1274,
  8547. bottom: 0.005
  8548. }
  8549. },
  8550. },
  8551. [
  8552. {
  8553. name: "Totally Unfair",
  8554. height: math.unit(1.8, "mm")
  8555. },
  8556. {
  8557. name: "Lap Rookie",
  8558. height: math.unit(1.4, "feet")
  8559. },
  8560. {
  8561. name: "Normal",
  8562. height: math.unit(5 + 11 / 12, "feet"),
  8563. default: true
  8564. },
  8565. {
  8566. name: "How Did This Happen",
  8567. height: math.unit(80, "miles")
  8568. }
  8569. ]
  8570. ))
  8571. characterMakers.push(() => makeCharacter(
  8572. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8573. {
  8574. front: {
  8575. height: math.unit(7, "feet"),
  8576. weight: math.unit(300, "lb"),
  8577. name: "Front",
  8578. image: {
  8579. source: "./media/characters/pisces/front.svg",
  8580. extra: 2255 / 2115,
  8581. bottom: 0.03
  8582. }
  8583. },
  8584. back: {
  8585. height: math.unit(7, "feet"),
  8586. weight: math.unit(300, "lb"),
  8587. name: "Back",
  8588. image: {
  8589. source: "./media/characters/pisces/back.svg",
  8590. extra: 2146 / 2055,
  8591. bottom: 0.04
  8592. }
  8593. },
  8594. },
  8595. [
  8596. {
  8597. name: "Normal",
  8598. height: math.unit(7, "feet"),
  8599. default: true
  8600. },
  8601. {
  8602. name: "Swimming Pool",
  8603. height: math.unit(12.2, "meters")
  8604. },
  8605. {
  8606. name: "Olympic Swimming Pool",
  8607. height: math.unit(56.3, "meters")
  8608. },
  8609. {
  8610. name: "Lake Superior",
  8611. height: math.unit(93900, "meters")
  8612. },
  8613. {
  8614. name: "Mediterranean Sea",
  8615. height: math.unit(644457, "meters")
  8616. },
  8617. {
  8618. name: "World's Oceans",
  8619. height: math.unit(4567491, "meters")
  8620. },
  8621. ]
  8622. ))
  8623. characterMakers.push(() => makeCharacter(
  8624. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8625. {
  8626. front: {
  8627. height: math.unit(2.3, "meters"),
  8628. weight: math.unit(120, "kg"),
  8629. name: "Front",
  8630. image: {
  8631. source: "./media/characters/zelas/front.svg"
  8632. }
  8633. },
  8634. side: {
  8635. height: math.unit(2.3, "meters"),
  8636. weight: math.unit(120, "kg"),
  8637. name: "Side",
  8638. image: {
  8639. source: "./media/characters/zelas/side.svg"
  8640. }
  8641. },
  8642. back: {
  8643. height: math.unit(2.3, "meters"),
  8644. weight: math.unit(120, "kg"),
  8645. name: "Back",
  8646. image: {
  8647. source: "./media/characters/zelas/back.svg"
  8648. }
  8649. },
  8650. foot: {
  8651. height: math.unit(1.116, "feet"),
  8652. name: "Foot",
  8653. image: {
  8654. source: "./media/characters/zelas/foot.svg"
  8655. }
  8656. },
  8657. },
  8658. [
  8659. {
  8660. name: "Normal",
  8661. height: math.unit(2.3, "meters")
  8662. },
  8663. {
  8664. name: "Macro",
  8665. height: math.unit(30, "meters"),
  8666. default: true
  8667. },
  8668. ]
  8669. ))
  8670. characterMakers.push(() => makeCharacter(
  8671. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8672. {
  8673. front: {
  8674. height: math.unit(1, "inch"),
  8675. weight: math.unit(0.21, "grams"),
  8676. name: "Front",
  8677. image: {
  8678. source: "./media/characters/talbot/front.svg",
  8679. extra: 594 / 544
  8680. }
  8681. },
  8682. },
  8683. [
  8684. {
  8685. name: "Micro",
  8686. height: math.unit(1, "inch"),
  8687. default: true
  8688. },
  8689. ]
  8690. ))
  8691. characterMakers.push(() => makeCharacter(
  8692. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8693. {
  8694. front: {
  8695. height: math.unit(3 + 3 / 12, "feet"),
  8696. weight: math.unit(51.8, "lb"),
  8697. name: "Front",
  8698. image: {
  8699. source: "./media/characters/fliss/front.svg",
  8700. extra: 840 / 640
  8701. }
  8702. },
  8703. },
  8704. [
  8705. {
  8706. name: "Teeny Tiny",
  8707. height: math.unit(1, "mm")
  8708. },
  8709. {
  8710. name: "Small",
  8711. height: math.unit(1, "inch"),
  8712. default: true
  8713. },
  8714. {
  8715. name: "Standard Sylveon",
  8716. height: math.unit(3 + 3 / 12, "feet")
  8717. },
  8718. {
  8719. name: "Large Nuisance",
  8720. height: math.unit(33, "feet")
  8721. },
  8722. {
  8723. name: "City Filler",
  8724. height: math.unit(3000, "feet")
  8725. },
  8726. {
  8727. name: "New Horizon",
  8728. height: math.unit(6000, "miles")
  8729. },
  8730. ]
  8731. ))
  8732. characterMakers.push(() => makeCharacter(
  8733. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8734. {
  8735. front: {
  8736. height: math.unit(5, "cm"),
  8737. weight: math.unit(1.94, "g"),
  8738. name: "Front",
  8739. image: {
  8740. source: "./media/characters/fleta/front.svg",
  8741. extra: 835 / 803
  8742. }
  8743. },
  8744. back: {
  8745. height: math.unit(5, "cm"),
  8746. weight: math.unit(1.94, "g"),
  8747. name: "Back",
  8748. image: {
  8749. source: "./media/characters/fleta/back.svg",
  8750. extra: 835 / 803
  8751. }
  8752. },
  8753. },
  8754. [
  8755. {
  8756. name: "Micro",
  8757. height: math.unit(5, "cm"),
  8758. default: true
  8759. },
  8760. ]
  8761. ))
  8762. characterMakers.push(() => makeCharacter(
  8763. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8764. {
  8765. front: {
  8766. height: math.unit(6, "feet"),
  8767. weight: math.unit(225, "lb"),
  8768. name: "Front",
  8769. image: {
  8770. source: "./media/characters/dominic/front.svg",
  8771. extra: 1770 / 1620,
  8772. bottom: 0.025
  8773. }
  8774. },
  8775. back: {
  8776. height: math.unit(6, "feet"),
  8777. weight: math.unit(225, "lb"),
  8778. name: "Back",
  8779. image: {
  8780. source: "./media/characters/dominic/back.svg",
  8781. extra: 1745 / 1620,
  8782. bottom: 0.065
  8783. }
  8784. },
  8785. },
  8786. [
  8787. {
  8788. name: "Nano",
  8789. height: math.unit(0.1, "mm")
  8790. },
  8791. {
  8792. name: "Micro-",
  8793. height: math.unit(1, "mm")
  8794. },
  8795. {
  8796. name: "Micro",
  8797. height: math.unit(4, "inches")
  8798. },
  8799. {
  8800. name: "Normal",
  8801. height: math.unit(6 + 4 / 12, "feet"),
  8802. default: true
  8803. },
  8804. {
  8805. name: "Macro",
  8806. height: math.unit(115, "feet")
  8807. },
  8808. {
  8809. name: "Macro+",
  8810. height: math.unit(955, "feet")
  8811. },
  8812. {
  8813. name: "Megamacro",
  8814. height: math.unit(8990, "feet")
  8815. },
  8816. {
  8817. name: "Gigmacro",
  8818. height: math.unit(9310, "miles")
  8819. },
  8820. {
  8821. name: "Teramacro",
  8822. height: math.unit(1567005010, "miles")
  8823. },
  8824. {
  8825. name: "Examacro",
  8826. height: math.unit(1425, "parsecs")
  8827. },
  8828. ]
  8829. ))
  8830. characterMakers.push(() => makeCharacter(
  8831. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8832. {
  8833. front: {
  8834. height: math.unit(400, "feet"),
  8835. weight: math.unit(44444444, "lb"),
  8836. name: "Front",
  8837. image: {
  8838. source: "./media/characters/major-colonel/front.svg"
  8839. }
  8840. },
  8841. back: {
  8842. height: math.unit(400, "feet"),
  8843. weight: math.unit(44444444, "lb"),
  8844. name: "Back",
  8845. image: {
  8846. source: "./media/characters/major-colonel/back.svg"
  8847. }
  8848. },
  8849. },
  8850. [
  8851. {
  8852. name: "Macro",
  8853. height: math.unit(400, "feet"),
  8854. default: true
  8855. },
  8856. ]
  8857. ))
  8858. characterMakers.push(() => makeCharacter(
  8859. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8860. {
  8861. catFront: {
  8862. height: math.unit(6, "feet"),
  8863. weight: math.unit(120, "lb"),
  8864. name: "Front (Cat Side)",
  8865. image: {
  8866. source: "./media/characters/axel-lycan/cat-front.svg",
  8867. extra: 430 / 402,
  8868. bottom: 43 / 472.35
  8869. }
  8870. },
  8871. catBack: {
  8872. height: math.unit(6, "feet"),
  8873. weight: math.unit(120, "lb"),
  8874. name: "Back (Cat Side)",
  8875. image: {
  8876. source: "./media/characters/axel-lycan/cat-back.svg",
  8877. extra: 447 / 419,
  8878. bottom: 23.3 / 469
  8879. }
  8880. },
  8881. wolfFront: {
  8882. height: math.unit(6, "feet"),
  8883. weight: math.unit(120, "lb"),
  8884. name: "Front (Wolf Side)",
  8885. image: {
  8886. source: "./media/characters/axel-lycan/wolf-front.svg",
  8887. extra: 485 / 456,
  8888. bottom: 19 / 504
  8889. }
  8890. },
  8891. wolfBack: {
  8892. height: math.unit(6, "feet"),
  8893. weight: math.unit(120, "lb"),
  8894. name: "Back (Wolf Side)",
  8895. image: {
  8896. source: "./media/characters/axel-lycan/wolf-back.svg",
  8897. extra: 475 / 438,
  8898. bottom: 39.2 / 514
  8899. }
  8900. },
  8901. },
  8902. [
  8903. {
  8904. name: "Macro",
  8905. height: math.unit(1, "km"),
  8906. default: true
  8907. },
  8908. ]
  8909. ))
  8910. characterMakers.push(() => makeCharacter(
  8911. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8912. {
  8913. front: {
  8914. height: math.unit(5 + 9 / 12, "feet"),
  8915. weight: math.unit(175, "lb"),
  8916. name: "Front",
  8917. image: {
  8918. source: "./media/characters/vanrel-hyena/front.svg",
  8919. extra: 1086 / 1010,
  8920. bottom: 0.04
  8921. }
  8922. },
  8923. },
  8924. [
  8925. {
  8926. name: "Normal",
  8927. height: math.unit(5 + 9 / 12, "feet"),
  8928. default: true
  8929. },
  8930. ]
  8931. ))
  8932. characterMakers.push(() => makeCharacter(
  8933. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8934. {
  8935. front: {
  8936. height: math.unit(6, "feet"),
  8937. weight: math.unit(103, "lb"),
  8938. name: "Front",
  8939. image: {
  8940. source: "./media/characters/abbott-absol/front.svg",
  8941. extra: 2010 / 1842
  8942. }
  8943. },
  8944. },
  8945. [
  8946. {
  8947. name: "Megamicro",
  8948. height: math.unit(0.1, "mm")
  8949. },
  8950. {
  8951. name: "Micro",
  8952. height: math.unit(1, "inch")
  8953. },
  8954. {
  8955. name: "Normal",
  8956. height: math.unit(6, "feet"),
  8957. default: true
  8958. },
  8959. ]
  8960. ))
  8961. characterMakers.push(() => makeCharacter(
  8962. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8963. {
  8964. front: {
  8965. height: math.unit(6, "feet"),
  8966. weight: math.unit(264, "lb"),
  8967. name: "Front",
  8968. image: {
  8969. source: "./media/characters/hector/front.svg",
  8970. extra: 2280 / 2130,
  8971. bottom: 0.07
  8972. }
  8973. },
  8974. },
  8975. [
  8976. {
  8977. name: "Normal",
  8978. height: math.unit(12.25, "foot"),
  8979. default: true
  8980. },
  8981. {
  8982. name: "Macro",
  8983. height: math.unit(160, "feet")
  8984. },
  8985. ]
  8986. ))
  8987. characterMakers.push(() => makeCharacter(
  8988. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8989. {
  8990. front: {
  8991. height: math.unit(6, "feet"),
  8992. weight: math.unit(150, "lb"),
  8993. name: "Front",
  8994. image: {
  8995. source: "./media/characters/sal/front.svg",
  8996. extra: 1846 / 1699,
  8997. bottom: 0.04
  8998. }
  8999. },
  9000. },
  9001. [
  9002. {
  9003. name: "Megamacro",
  9004. height: math.unit(10, "miles"),
  9005. default: true
  9006. },
  9007. ]
  9008. ))
  9009. characterMakers.push(() => makeCharacter(
  9010. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9011. {
  9012. front: {
  9013. height: math.unit(3, "meters"),
  9014. weight: math.unit(450, "kg"),
  9015. name: "front",
  9016. image: {
  9017. source: "./media/characters/ranger/front.svg",
  9018. extra: 2401 / 2243,
  9019. bottom: 0.05
  9020. }
  9021. },
  9022. },
  9023. [
  9024. {
  9025. name: "Normal",
  9026. height: math.unit(3, "meters"),
  9027. default: true
  9028. },
  9029. ]
  9030. ))
  9031. characterMakers.push(() => makeCharacter(
  9032. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9033. {
  9034. front: {
  9035. height: math.unit(14, "feet"),
  9036. weight: math.unit(800, "kg"),
  9037. name: "Front",
  9038. image: {
  9039. source: "./media/characters/theresa/front.svg",
  9040. extra: 3575 / 3346,
  9041. bottom: 0.03
  9042. }
  9043. },
  9044. },
  9045. [
  9046. {
  9047. name: "Normal",
  9048. height: math.unit(14, "feet"),
  9049. default: true
  9050. },
  9051. ]
  9052. ))
  9053. characterMakers.push(() => makeCharacter(
  9054. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9055. {
  9056. front: {
  9057. height: math.unit(6, "feet"),
  9058. weight: math.unit(3, "kg"),
  9059. name: "Front",
  9060. image: {
  9061. source: "./media/characters/ine/front.svg",
  9062. extra: 678 / 539,
  9063. bottom: 0.023
  9064. }
  9065. },
  9066. },
  9067. [
  9068. {
  9069. name: "Normal",
  9070. height: math.unit(2.265, "feet"),
  9071. default: true
  9072. },
  9073. ]
  9074. ))
  9075. characterMakers.push(() => makeCharacter(
  9076. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9077. {
  9078. front: {
  9079. height: math.unit(5, "feet"),
  9080. weight: math.unit(30, "kg"),
  9081. name: "Front",
  9082. image: {
  9083. source: "./media/characters/vial/front.svg",
  9084. extra: 1365 / 1277,
  9085. bottom: 0.04
  9086. }
  9087. },
  9088. },
  9089. [
  9090. {
  9091. name: "Normal",
  9092. height: math.unit(5, "feet"),
  9093. default: true
  9094. },
  9095. ]
  9096. ))
  9097. characterMakers.push(() => makeCharacter(
  9098. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9099. {
  9100. side: {
  9101. height: math.unit(3.4, "meters"),
  9102. weight: math.unit(1000, "lb"),
  9103. name: "Side",
  9104. image: {
  9105. source: "./media/characters/rovoska/side.svg",
  9106. extra: 4403 / 1515
  9107. }
  9108. },
  9109. },
  9110. [
  9111. {
  9112. name: "Normal",
  9113. height: math.unit(3.4, "meters"),
  9114. default: true
  9115. },
  9116. ]
  9117. ))
  9118. characterMakers.push(() => makeCharacter(
  9119. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9120. {
  9121. front: {
  9122. height: math.unit(8, "feet"),
  9123. weight: math.unit(315, "lb"),
  9124. name: "Front",
  9125. image: {
  9126. source: "./media/characters/gunner-rotthbauer/front.svg"
  9127. }
  9128. },
  9129. back: {
  9130. height: math.unit(8, "feet"),
  9131. weight: math.unit(315, "lb"),
  9132. name: "Back",
  9133. image: {
  9134. source: "./media/characters/gunner-rotthbauer/back.svg"
  9135. }
  9136. },
  9137. },
  9138. [
  9139. {
  9140. name: "Micro",
  9141. height: math.unit(3.5, "inches")
  9142. },
  9143. {
  9144. name: "Normal",
  9145. height: math.unit(8, "feet"),
  9146. default: true
  9147. },
  9148. {
  9149. name: "Macro",
  9150. height: math.unit(250, "feet")
  9151. },
  9152. {
  9153. name: "Megamacro",
  9154. height: math.unit(1, "AU")
  9155. },
  9156. ]
  9157. ))
  9158. characterMakers.push(() => makeCharacter(
  9159. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9160. {
  9161. front: {
  9162. height: math.unit(5 + 5 / 12, "feet"),
  9163. weight: math.unit(140, "lb"),
  9164. name: "Front",
  9165. image: {
  9166. source: "./media/characters/allatia/front.svg",
  9167. extra: 1227 / 1180,
  9168. bottom: 0.027
  9169. }
  9170. },
  9171. },
  9172. [
  9173. {
  9174. name: "Normal",
  9175. height: math.unit(5 + 5 / 12, "feet")
  9176. },
  9177. {
  9178. name: "Macro",
  9179. height: math.unit(250, "feet"),
  9180. default: true
  9181. },
  9182. {
  9183. name: "Megamacro",
  9184. height: math.unit(8, "miles")
  9185. }
  9186. ]
  9187. ))
  9188. characterMakers.push(() => makeCharacter(
  9189. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9190. {
  9191. front: {
  9192. height: math.unit(6, "feet"),
  9193. weight: math.unit(120, "lb"),
  9194. name: "Front",
  9195. image: {
  9196. source: "./media/characters/tene/front.svg",
  9197. extra: 1728 / 1578,
  9198. bottom: 0.022
  9199. }
  9200. },
  9201. stomping: {
  9202. height: math.unit(2.025, "meters"),
  9203. weight: math.unit(120, "lb"),
  9204. name: "Stomping",
  9205. image: {
  9206. source: "./media/characters/tene/stomping.svg",
  9207. extra: 938 / 873,
  9208. bottom: 0.01
  9209. }
  9210. },
  9211. sitting: {
  9212. height: math.unit(1, "meter"),
  9213. weight: math.unit(120, "lb"),
  9214. name: "Sitting",
  9215. image: {
  9216. source: "./media/characters/tene/sitting.svg",
  9217. extra: 437 / 415,
  9218. bottom: 0.1
  9219. }
  9220. },
  9221. feral: {
  9222. height: math.unit(3.9, "feet"),
  9223. weight: math.unit(250, "lb"),
  9224. name: "Feral",
  9225. image: {
  9226. source: "./media/characters/tene/feral.svg",
  9227. extra: 717 / 458,
  9228. bottom: 0.179
  9229. }
  9230. },
  9231. },
  9232. [
  9233. {
  9234. name: "Normal",
  9235. height: math.unit(6, "feet")
  9236. },
  9237. {
  9238. name: "Macro",
  9239. height: math.unit(300, "feet"),
  9240. default: true
  9241. },
  9242. {
  9243. name: "Megamacro",
  9244. height: math.unit(5, "miles")
  9245. },
  9246. ]
  9247. ))
  9248. characterMakers.push(() => makeCharacter(
  9249. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9250. {
  9251. side: {
  9252. height: math.unit(6, "feet"),
  9253. name: "Side",
  9254. image: {
  9255. source: "./media/characters/evander/side.svg",
  9256. extra: 877 / 477
  9257. }
  9258. },
  9259. },
  9260. [
  9261. {
  9262. name: "Normal",
  9263. height: math.unit(0.83, "meters"),
  9264. default: true
  9265. },
  9266. ]
  9267. ))
  9268. characterMakers.push(() => makeCharacter(
  9269. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9270. {
  9271. front: {
  9272. height: math.unit(12, "feet"),
  9273. weight: math.unit(1000, "lb"),
  9274. name: "Front",
  9275. image: {
  9276. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9277. extra: 1762 / 1611
  9278. }
  9279. },
  9280. back: {
  9281. height: math.unit(12, "feet"),
  9282. weight: math.unit(1000, "lb"),
  9283. name: "Back",
  9284. image: {
  9285. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9286. extra: 1762 / 1611
  9287. }
  9288. },
  9289. },
  9290. [
  9291. {
  9292. name: "Normal",
  9293. height: math.unit(12, "feet"),
  9294. default: true
  9295. },
  9296. {
  9297. name: "Kaiju",
  9298. height: math.unit(150, "feet")
  9299. },
  9300. ]
  9301. ))
  9302. characterMakers.push(() => makeCharacter(
  9303. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9304. {
  9305. front: {
  9306. height: math.unit(6, "feet"),
  9307. weight: math.unit(150, "lb"),
  9308. name: "Front",
  9309. image: {
  9310. source: "./media/characters/zero-alurus/front.svg"
  9311. }
  9312. },
  9313. back: {
  9314. height: math.unit(6, "feet"),
  9315. weight: math.unit(150, "lb"),
  9316. name: "Back",
  9317. image: {
  9318. source: "./media/characters/zero-alurus/back.svg"
  9319. }
  9320. },
  9321. },
  9322. [
  9323. {
  9324. name: "Normal",
  9325. height: math.unit(5 + 10 / 12, "feet")
  9326. },
  9327. {
  9328. name: "Macro",
  9329. height: math.unit(60, "feet"),
  9330. default: true
  9331. },
  9332. {
  9333. name: "Macro+",
  9334. height: math.unit(450, "feet")
  9335. },
  9336. ]
  9337. ))
  9338. characterMakers.push(() => makeCharacter(
  9339. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9340. {
  9341. front: {
  9342. height: math.unit(6, "feet"),
  9343. weight: math.unit(200, "lb"),
  9344. name: "Front",
  9345. image: {
  9346. source: "./media/characters/mega-shi/front.svg",
  9347. extra: 1279 / 1250,
  9348. bottom: 0.02
  9349. }
  9350. },
  9351. back: {
  9352. height: math.unit(6, "feet"),
  9353. weight: math.unit(200, "lb"),
  9354. name: "Back",
  9355. image: {
  9356. source: "./media/characters/mega-shi/back.svg",
  9357. extra: 1279 / 1250,
  9358. bottom: 0.02
  9359. }
  9360. },
  9361. },
  9362. [
  9363. {
  9364. name: "Micro",
  9365. height: math.unit(16 + 6 / 12, "feet")
  9366. },
  9367. {
  9368. name: "Third Dimension",
  9369. height: math.unit(40, "meters")
  9370. },
  9371. {
  9372. name: "Normal",
  9373. height: math.unit(660, "feet"),
  9374. default: true
  9375. },
  9376. {
  9377. name: "Megamacro",
  9378. height: math.unit(10, "miles")
  9379. },
  9380. {
  9381. name: "Planetary Launch",
  9382. height: math.unit(500, "miles")
  9383. },
  9384. {
  9385. name: "Interstellar",
  9386. height: math.unit(1e9, "miles")
  9387. },
  9388. {
  9389. name: "Leaving the Universe",
  9390. height: math.unit(1, "gigaparsec")
  9391. },
  9392. {
  9393. name: "Travelling Universes",
  9394. height: math.unit(30e15, "parsecs")
  9395. },
  9396. ]
  9397. ))
  9398. characterMakers.push(() => makeCharacter(
  9399. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9400. {
  9401. front: {
  9402. height: math.unit(6, "feet"),
  9403. weight: math.unit(150, "lb"),
  9404. name: "Front",
  9405. image: {
  9406. source: "./media/characters/odyssey/front.svg",
  9407. extra: 1782 / 1582,
  9408. bottom: 0.01
  9409. }
  9410. },
  9411. side: {
  9412. height: math.unit(5.7, "feet"),
  9413. weight: math.unit(140, "lb"),
  9414. name: "Side",
  9415. image: {
  9416. source: "./media/characters/odyssey/side.svg",
  9417. extra: 6462 / 5700
  9418. }
  9419. },
  9420. },
  9421. [
  9422. {
  9423. name: "Normal",
  9424. height: math.unit(5 + 4 / 12, "feet")
  9425. },
  9426. {
  9427. name: "Macro",
  9428. height: math.unit(1, "km")
  9429. },
  9430. {
  9431. name: "Megamacro",
  9432. height: math.unit(3000, "km")
  9433. },
  9434. {
  9435. name: "Gigamacro",
  9436. height: math.unit(1, "AU"),
  9437. default: true
  9438. },
  9439. {
  9440. name: "Omniversal",
  9441. height: math.unit(100e14, "lightyears")
  9442. },
  9443. ]
  9444. ))
  9445. characterMakers.push(() => makeCharacter(
  9446. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9447. {
  9448. front: {
  9449. height: math.unit(6, "feet"),
  9450. weight: math.unit(300, "lb"),
  9451. name: "Front",
  9452. image: {
  9453. source: "./media/characters/mekuto/front.svg",
  9454. extra: 921 / 832,
  9455. bottom: 0.03
  9456. }
  9457. },
  9458. hand: {
  9459. height: math.unit(6 / 10.24, "feet"),
  9460. name: "Hand",
  9461. image: {
  9462. source: "./media/characters/mekuto/hand.svg"
  9463. }
  9464. },
  9465. foot: {
  9466. height: math.unit(6 / 5.05, "feet"),
  9467. name: "Foot",
  9468. image: {
  9469. source: "./media/characters/mekuto/foot.svg"
  9470. }
  9471. },
  9472. },
  9473. [
  9474. {
  9475. name: "Minimicro",
  9476. height: math.unit(0.2, "inches")
  9477. },
  9478. {
  9479. name: "Micro",
  9480. height: math.unit(1.5, "inches")
  9481. },
  9482. {
  9483. name: "Normal",
  9484. height: math.unit(5 + 11 / 12, "feet"),
  9485. default: true
  9486. },
  9487. {
  9488. name: "Minimacro",
  9489. height: math.unit(17 + 9 / 12, "feet")
  9490. },
  9491. {
  9492. name: "Macro",
  9493. height: math.unit(177.5, "feet")
  9494. },
  9495. {
  9496. name: "Megamacro",
  9497. height: math.unit(152, "miles")
  9498. },
  9499. ]
  9500. ))
  9501. characterMakers.push(() => makeCharacter(
  9502. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9503. {
  9504. front: {
  9505. height: math.unit(6.5, "inches"),
  9506. weight: math.unit(13, "oz"),
  9507. name: "Front",
  9508. image: {
  9509. source: "./media/characters/dafydd-tomos/front.svg",
  9510. extra: 2990 / 2603,
  9511. bottom: 0.03
  9512. }
  9513. },
  9514. },
  9515. [
  9516. {
  9517. name: "Micro",
  9518. height: math.unit(6.5, "inches"),
  9519. default: true
  9520. },
  9521. ]
  9522. ))
  9523. characterMakers.push(() => makeCharacter(
  9524. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9525. {
  9526. front: {
  9527. height: math.unit(6, "feet"),
  9528. weight: math.unit(150, "lb"),
  9529. name: "Front",
  9530. image: {
  9531. source: "./media/characters/splinter/front.svg",
  9532. extra: 2990 / 2882,
  9533. bottom: 0.04
  9534. }
  9535. },
  9536. back: {
  9537. height: math.unit(6, "feet"),
  9538. weight: math.unit(150, "lb"),
  9539. name: "Back",
  9540. image: {
  9541. source: "./media/characters/splinter/back.svg",
  9542. extra: 2990 / 2882,
  9543. bottom: 0.04
  9544. }
  9545. },
  9546. },
  9547. [
  9548. {
  9549. name: "Normal",
  9550. height: math.unit(6, "feet")
  9551. },
  9552. {
  9553. name: "Macro",
  9554. height: math.unit(230, "meters"),
  9555. default: true
  9556. },
  9557. ]
  9558. ))
  9559. characterMakers.push(() => makeCharacter(
  9560. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9561. {
  9562. front: {
  9563. height: math.unit(4 + 10 / 12, "feet"),
  9564. weight: math.unit(480, "lb"),
  9565. name: "Front",
  9566. image: {
  9567. source: "./media/characters/snow-gabumon/front.svg",
  9568. extra: 1140 / 963,
  9569. bottom: 0.058
  9570. }
  9571. },
  9572. back: {
  9573. height: math.unit(4 + 10 / 12, "feet"),
  9574. weight: math.unit(480, "lb"),
  9575. name: "Back",
  9576. image: {
  9577. source: "./media/characters/snow-gabumon/back.svg",
  9578. extra: 1115 / 962,
  9579. bottom: 0.041
  9580. }
  9581. },
  9582. frontUndresed: {
  9583. height: math.unit(4 + 10 / 12, "feet"),
  9584. weight: math.unit(480, "lb"),
  9585. name: "Front (Undressed)",
  9586. image: {
  9587. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9588. extra: 1061 / 960,
  9589. bottom: 0.045
  9590. }
  9591. },
  9592. },
  9593. [
  9594. {
  9595. name: "Micro",
  9596. height: math.unit(1, "inch")
  9597. },
  9598. {
  9599. name: "Normal",
  9600. height: math.unit(4 + 10 / 12, "feet"),
  9601. default: true
  9602. },
  9603. {
  9604. name: "Macro",
  9605. height: math.unit(200, "feet")
  9606. },
  9607. {
  9608. name: "Megamacro",
  9609. height: math.unit(120, "miles")
  9610. },
  9611. {
  9612. name: "Gigamacro",
  9613. height: math.unit(9800, "miles")
  9614. },
  9615. ]
  9616. ))
  9617. characterMakers.push(() => makeCharacter(
  9618. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9619. {
  9620. front: {
  9621. height: math.unit(1.7, "meters"),
  9622. weight: math.unit(140, "lb"),
  9623. name: "Front",
  9624. image: {
  9625. source: "./media/characters/moody/front.svg",
  9626. extra: 3226 / 3007,
  9627. bottom: 0.087
  9628. }
  9629. },
  9630. },
  9631. [
  9632. {
  9633. name: "Micro",
  9634. height: math.unit(1, "mm")
  9635. },
  9636. {
  9637. name: "Normal",
  9638. height: math.unit(1.7, "meters"),
  9639. default: true
  9640. },
  9641. {
  9642. name: "Macro",
  9643. height: math.unit(80, "meters")
  9644. },
  9645. {
  9646. name: "Macro+",
  9647. height: math.unit(500, "meters")
  9648. },
  9649. ]
  9650. ))
  9651. characterMakers.push(() => makeCharacter(
  9652. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9653. {
  9654. front: {
  9655. height: math.unit(6, "feet"),
  9656. weight: math.unit(150, "lb"),
  9657. name: "Front",
  9658. image: {
  9659. source: "./media/characters/zyas/front.svg",
  9660. extra: 1180 / 1120,
  9661. bottom: 0.045
  9662. }
  9663. },
  9664. },
  9665. [
  9666. {
  9667. name: "Normal",
  9668. height: math.unit(10, "feet"),
  9669. default: true
  9670. },
  9671. {
  9672. name: "Macro",
  9673. height: math.unit(500, "feet")
  9674. },
  9675. {
  9676. name: "Megamacro",
  9677. height: math.unit(5, "miles")
  9678. },
  9679. {
  9680. name: "Teramacro",
  9681. height: math.unit(150000, "miles")
  9682. },
  9683. ]
  9684. ))
  9685. characterMakers.push(() => makeCharacter(
  9686. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9687. {
  9688. front: {
  9689. height: math.unit(6, "feet"),
  9690. weight: math.unit(150, "lb"),
  9691. name: "Front",
  9692. image: {
  9693. source: "./media/characters/cuon/front.svg",
  9694. extra: 1390 / 1320,
  9695. bottom: 0.008
  9696. }
  9697. },
  9698. },
  9699. [
  9700. {
  9701. name: "Micro",
  9702. height: math.unit(3, "inches")
  9703. },
  9704. {
  9705. name: "Normal",
  9706. height: math.unit(18 + 9 / 12, "feet"),
  9707. default: true
  9708. },
  9709. {
  9710. name: "Macro",
  9711. height: math.unit(360, "feet")
  9712. },
  9713. {
  9714. name: "Megamacro",
  9715. height: math.unit(360, "miles")
  9716. },
  9717. ]
  9718. ))
  9719. characterMakers.push(() => makeCharacter(
  9720. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9721. {
  9722. front: {
  9723. height: math.unit(2.4, "meters"),
  9724. weight: math.unit(70, "kg"),
  9725. name: "Front",
  9726. image: {
  9727. source: "./media/characters/nyanuxk/front.svg",
  9728. extra: 1172 / 1084,
  9729. bottom: 0.065
  9730. }
  9731. },
  9732. side: {
  9733. height: math.unit(2.4, "meters"),
  9734. weight: math.unit(70, "kg"),
  9735. name: "Side",
  9736. image: {
  9737. source: "./media/characters/nyanuxk/side.svg",
  9738. extra: 1190 / 1132,
  9739. bottom: 0.007
  9740. }
  9741. },
  9742. back: {
  9743. height: math.unit(2.4, "meters"),
  9744. weight: math.unit(70, "kg"),
  9745. name: "Back",
  9746. image: {
  9747. source: "./media/characters/nyanuxk/back.svg",
  9748. extra: 1200 / 1141,
  9749. bottom: 0.015
  9750. }
  9751. },
  9752. foot: {
  9753. height: math.unit(0.52, "meters"),
  9754. name: "Foot",
  9755. image: {
  9756. source: "./media/characters/nyanuxk/foot.svg"
  9757. }
  9758. },
  9759. },
  9760. [
  9761. {
  9762. name: "Micro",
  9763. height: math.unit(2, "cm")
  9764. },
  9765. {
  9766. name: "Normal",
  9767. height: math.unit(2.4, "meters"),
  9768. default: true
  9769. },
  9770. {
  9771. name: "Smaller Macro",
  9772. height: math.unit(120, "meters")
  9773. },
  9774. {
  9775. name: "Bigger Macro",
  9776. height: math.unit(1.2, "km")
  9777. },
  9778. {
  9779. name: "Megamacro",
  9780. height: math.unit(15, "kilometers")
  9781. },
  9782. {
  9783. name: "Gigamacro",
  9784. height: math.unit(2000, "km")
  9785. },
  9786. {
  9787. name: "Teramacro",
  9788. height: math.unit(500000, "km")
  9789. },
  9790. ]
  9791. ))
  9792. characterMakers.push(() => makeCharacter(
  9793. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9794. {
  9795. side: {
  9796. height: math.unit(6, "feet"),
  9797. name: "Side",
  9798. image: {
  9799. source: "./media/characters/ailbhe/side.svg",
  9800. extra: 757 / 464,
  9801. bottom: 0.041
  9802. }
  9803. },
  9804. },
  9805. [
  9806. {
  9807. name: "Normal",
  9808. height: math.unit(1.07, "meters"),
  9809. default: true
  9810. },
  9811. ]
  9812. ))
  9813. characterMakers.push(() => makeCharacter(
  9814. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9815. {
  9816. front: {
  9817. height: math.unit(6, "feet"),
  9818. weight: math.unit(120, "kg"),
  9819. name: "Front",
  9820. image: {
  9821. source: "./media/characters/zevulfius/front.svg",
  9822. extra: 965 / 903
  9823. }
  9824. },
  9825. side: {
  9826. height: math.unit(6, "feet"),
  9827. weight: math.unit(120, "kg"),
  9828. name: "Side",
  9829. image: {
  9830. source: "./media/characters/zevulfius/side.svg",
  9831. extra: 939 / 900
  9832. }
  9833. },
  9834. back: {
  9835. height: math.unit(6, "feet"),
  9836. weight: math.unit(120, "kg"),
  9837. name: "Back",
  9838. image: {
  9839. source: "./media/characters/zevulfius/back.svg",
  9840. extra: 918 / 854,
  9841. bottom: 0.005
  9842. }
  9843. },
  9844. foot: {
  9845. height: math.unit(6 / 3.72, "feet"),
  9846. name: "Foot",
  9847. image: {
  9848. source: "./media/characters/zevulfius/foot.svg"
  9849. }
  9850. },
  9851. },
  9852. [
  9853. {
  9854. name: "Macro",
  9855. height: math.unit(750, "meters")
  9856. },
  9857. {
  9858. name: "Megamacro",
  9859. height: math.unit(20, "km"),
  9860. default: true
  9861. },
  9862. {
  9863. name: "Gigamacro",
  9864. height: math.unit(2000, "km")
  9865. },
  9866. {
  9867. name: "Teramacro",
  9868. height: math.unit(250000, "km")
  9869. },
  9870. ]
  9871. ))
  9872. characterMakers.push(() => makeCharacter(
  9873. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9874. {
  9875. front: {
  9876. height: math.unit(100, "feet"),
  9877. weight: math.unit(350, "kg"),
  9878. name: "Front",
  9879. image: {
  9880. source: "./media/characters/rikes/front.svg",
  9881. extra: 1565 / 1483,
  9882. bottom: 0.017
  9883. }
  9884. },
  9885. },
  9886. [
  9887. {
  9888. name: "Macro",
  9889. height: math.unit(100, "feet"),
  9890. default: true
  9891. },
  9892. ]
  9893. ))
  9894. characterMakers.push(() => makeCharacter(
  9895. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9896. {
  9897. anthro: {
  9898. height: math.unit(8, "feet"),
  9899. weight: math.unit(120, "kg"),
  9900. name: "Anthro",
  9901. image: {
  9902. source: "./media/characters/adam-silver-mane/anthro.svg",
  9903. extra: 5743 / 5339,
  9904. bottom: 0.07
  9905. }
  9906. },
  9907. taur: {
  9908. height: math.unit(16, "feet"),
  9909. weight: math.unit(1500, "kg"),
  9910. name: "Taur",
  9911. image: {
  9912. source: "./media/characters/adam-silver-mane/taur.svg",
  9913. extra: 1713 / 1571,
  9914. bottom: 0.01
  9915. }
  9916. },
  9917. },
  9918. [
  9919. {
  9920. name: "Normal",
  9921. height: math.unit(8, "feet")
  9922. },
  9923. {
  9924. name: "Minimacro",
  9925. height: math.unit(80, "feet")
  9926. },
  9927. {
  9928. name: "Macro",
  9929. height: math.unit(800, "feet"),
  9930. default: true
  9931. },
  9932. {
  9933. name: "Megamacro",
  9934. height: math.unit(8000, "feet")
  9935. },
  9936. {
  9937. name: "Gigamacro",
  9938. height: math.unit(800, "miles")
  9939. },
  9940. {
  9941. name: "Teramacro",
  9942. height: math.unit(80000, "miles")
  9943. },
  9944. {
  9945. name: "Celestial",
  9946. height: math.unit(8e6, "miles")
  9947. },
  9948. {
  9949. name: "Star Dragon",
  9950. height: math.unit(800000, "parsecs")
  9951. },
  9952. {
  9953. name: "Godly",
  9954. height: math.unit(800, "teraparsecs")
  9955. },
  9956. ]
  9957. ))
  9958. characterMakers.push(() => makeCharacter(
  9959. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9960. {
  9961. front: {
  9962. height: math.unit(6, "feet"),
  9963. weight: math.unit(150, "lb"),
  9964. name: "Front",
  9965. image: {
  9966. source: "./media/characters/ky'owin/front.svg",
  9967. extra: 3888 / 3068,
  9968. bottom: 0.015
  9969. }
  9970. },
  9971. },
  9972. [
  9973. {
  9974. name: "Normal",
  9975. height: math.unit(6 + 8 / 12, "feet")
  9976. },
  9977. {
  9978. name: "Large",
  9979. height: math.unit(68, "feet")
  9980. },
  9981. {
  9982. name: "Macro",
  9983. height: math.unit(132, "feet")
  9984. },
  9985. {
  9986. name: "Macro+",
  9987. height: math.unit(340, "feet")
  9988. },
  9989. {
  9990. name: "Macro++",
  9991. height: math.unit(680, "feet"),
  9992. default: true
  9993. },
  9994. {
  9995. name: "Megamacro",
  9996. height: math.unit(1, "mile")
  9997. },
  9998. {
  9999. name: "Megamacro+",
  10000. height: math.unit(10, "miles")
  10001. },
  10002. ]
  10003. ))
  10004. characterMakers.push(() => makeCharacter(
  10005. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10006. {
  10007. front: {
  10008. height: math.unit(4, "feet"),
  10009. weight: math.unit(50, "lb"),
  10010. name: "Front",
  10011. image: {
  10012. source: "./media/characters/mal/front.svg",
  10013. extra: 785 / 724,
  10014. bottom: 0.07
  10015. }
  10016. },
  10017. },
  10018. [
  10019. {
  10020. name: "Micro",
  10021. height: math.unit(4, "inches")
  10022. },
  10023. {
  10024. name: "Normal",
  10025. height: math.unit(4, "feet"),
  10026. default: true
  10027. },
  10028. {
  10029. name: "Macro",
  10030. height: math.unit(200, "feet")
  10031. },
  10032. ]
  10033. ))
  10034. characterMakers.push(() => makeCharacter(
  10035. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10036. {
  10037. front: {
  10038. height: math.unit(6, "feet"),
  10039. weight: math.unit(150, "lb"),
  10040. name: "Front",
  10041. image: {
  10042. source: "./media/characters/jordan-deware/front.svg",
  10043. extra: 1191 / 1012
  10044. }
  10045. },
  10046. },
  10047. [
  10048. {
  10049. name: "Nano",
  10050. height: math.unit(0.01, "mm")
  10051. },
  10052. {
  10053. name: "Minimicro",
  10054. height: math.unit(1, "mm")
  10055. },
  10056. {
  10057. name: "Micro",
  10058. height: math.unit(0.5, "inches")
  10059. },
  10060. {
  10061. name: "Normal",
  10062. height: math.unit(4, "feet"),
  10063. default: true
  10064. },
  10065. {
  10066. name: "Minimacro",
  10067. height: math.unit(40, "meters")
  10068. },
  10069. {
  10070. name: "Small Macro",
  10071. height: math.unit(400, "meters")
  10072. },
  10073. {
  10074. name: "Macro",
  10075. height: math.unit(4, "miles")
  10076. },
  10077. {
  10078. name: "Megamacro",
  10079. height: math.unit(40, "miles")
  10080. },
  10081. {
  10082. name: "Megamacro+",
  10083. height: math.unit(400, "miles")
  10084. },
  10085. {
  10086. name: "Gigamacro",
  10087. height: math.unit(400000, "miles")
  10088. },
  10089. ]
  10090. ))
  10091. characterMakers.push(() => makeCharacter(
  10092. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10093. {
  10094. side: {
  10095. height: math.unit(6, "feet"),
  10096. weight: math.unit(150, "lb"),
  10097. name: "Side",
  10098. image: {
  10099. source: "./media/characters/kimiko/side.svg",
  10100. extra: 600 / 358
  10101. }
  10102. },
  10103. },
  10104. [
  10105. {
  10106. name: "Normal",
  10107. height: math.unit(15, "feet"),
  10108. default: true
  10109. },
  10110. {
  10111. name: "Macro",
  10112. height: math.unit(220, "feet")
  10113. },
  10114. {
  10115. name: "Macro+",
  10116. height: math.unit(1450, "feet")
  10117. },
  10118. {
  10119. name: "Megamacro",
  10120. height: math.unit(11500, "feet")
  10121. },
  10122. {
  10123. name: "Gigamacro",
  10124. height: math.unit(9500, "miles")
  10125. },
  10126. {
  10127. name: "Teramacro",
  10128. height: math.unit(2208005005, "miles")
  10129. },
  10130. {
  10131. name: "Examacro",
  10132. height: math.unit(2750, "parsecs")
  10133. },
  10134. {
  10135. name: "Zettamacro",
  10136. height: math.unit(101500, "parsecs")
  10137. },
  10138. ]
  10139. ))
  10140. characterMakers.push(() => makeCharacter(
  10141. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10142. {
  10143. front: {
  10144. height: math.unit(6, "feet"),
  10145. weight: math.unit(70, "kg"),
  10146. name: "Front",
  10147. image: {
  10148. source: "./media/characters/andrew-sleepy/front.svg"
  10149. }
  10150. },
  10151. side: {
  10152. height: math.unit(6, "feet"),
  10153. weight: math.unit(70, "kg"),
  10154. name: "Side",
  10155. image: {
  10156. source: "./media/characters/andrew-sleepy/side.svg"
  10157. }
  10158. },
  10159. },
  10160. [
  10161. {
  10162. name: "Micro",
  10163. height: math.unit(1, "mm"),
  10164. default: true
  10165. },
  10166. ]
  10167. ))
  10168. characterMakers.push(() => makeCharacter(
  10169. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10170. {
  10171. front: {
  10172. height: math.unit(6, "feet"),
  10173. weight: math.unit(150, "lb"),
  10174. name: "Front",
  10175. image: {
  10176. source: "./media/characters/judio/front.svg",
  10177. extra: 1258 / 1110
  10178. }
  10179. },
  10180. },
  10181. [
  10182. {
  10183. name: "Normal",
  10184. height: math.unit(5 + 6 / 12, "feet")
  10185. },
  10186. {
  10187. name: "Macro",
  10188. height: math.unit(1000, "feet"),
  10189. default: true
  10190. },
  10191. {
  10192. name: "Megamacro",
  10193. height: math.unit(10, "miles")
  10194. },
  10195. ]
  10196. ))
  10197. characterMakers.push(() => makeCharacter(
  10198. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10199. {
  10200. front: {
  10201. height: math.unit(6, "feet"),
  10202. weight: math.unit(68, "kg"),
  10203. name: "Front",
  10204. image: {
  10205. source: "./media/characters/nomaxice/front.svg",
  10206. extra: 1498 / 1073,
  10207. bottom: 0.075
  10208. }
  10209. },
  10210. foot: {
  10211. height: math.unit(1.1, "feet"),
  10212. name: "Foot",
  10213. image: {
  10214. source: "./media/characters/nomaxice/foot.svg"
  10215. }
  10216. },
  10217. },
  10218. [
  10219. {
  10220. name: "Micro",
  10221. height: math.unit(8, "cm")
  10222. },
  10223. {
  10224. name: "Norm",
  10225. height: math.unit(1.82, "m")
  10226. },
  10227. {
  10228. name: "Norm+",
  10229. height: math.unit(8.8, "feet")
  10230. },
  10231. {
  10232. name: "Big",
  10233. height: math.unit(8, "meters"),
  10234. default: true
  10235. },
  10236. {
  10237. name: "Macro",
  10238. height: math.unit(18, "meters")
  10239. },
  10240. {
  10241. name: "Macro+",
  10242. height: math.unit(88, "meters")
  10243. },
  10244. ]
  10245. ))
  10246. characterMakers.push(() => makeCharacter(
  10247. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10248. {
  10249. front: {
  10250. height: math.unit(12, "feet"),
  10251. weight: math.unit(1.5, "tons"),
  10252. name: "Front",
  10253. image: {
  10254. source: "./media/characters/dydros/front.svg",
  10255. extra: 863 / 800,
  10256. bottom: 0.015
  10257. }
  10258. },
  10259. back: {
  10260. height: math.unit(12, "feet"),
  10261. weight: math.unit(1.5, "tons"),
  10262. name: "Back",
  10263. image: {
  10264. source: "./media/characters/dydros/back.svg",
  10265. extra: 900 / 843,
  10266. bottom: 0.005
  10267. }
  10268. },
  10269. },
  10270. [
  10271. {
  10272. name: "Normal",
  10273. height: math.unit(12, "feet"),
  10274. default: true
  10275. },
  10276. ]
  10277. ))
  10278. characterMakers.push(() => makeCharacter(
  10279. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10280. {
  10281. front: {
  10282. height: math.unit(6, "feet"),
  10283. weight: math.unit(100, "kg"),
  10284. name: "Front",
  10285. image: {
  10286. source: "./media/characters/riggi/front.svg",
  10287. extra: 5787 / 5303
  10288. }
  10289. },
  10290. hyper: {
  10291. height: math.unit(6 * 5 / 3, "feet"),
  10292. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10293. name: "Hyper",
  10294. image: {
  10295. source: "./media/characters/riggi/hyper.svg",
  10296. extra: 3595 / 3485
  10297. }
  10298. },
  10299. },
  10300. [
  10301. {
  10302. name: "Small Macro",
  10303. height: math.unit(50, "feet")
  10304. },
  10305. {
  10306. name: "Default",
  10307. height: math.unit(200, "feet"),
  10308. default: true
  10309. },
  10310. {
  10311. name: "Loom",
  10312. height: math.unit(10000, "feet")
  10313. },
  10314. {
  10315. name: "Cruising Altitude",
  10316. height: math.unit(30000, "feet")
  10317. },
  10318. {
  10319. name: "Megamacro",
  10320. height: math.unit(100, "miles")
  10321. },
  10322. {
  10323. name: "Continent Sized",
  10324. height: math.unit(2800, "miles")
  10325. },
  10326. {
  10327. name: "Earth Sized",
  10328. height: math.unit(8000, "miles")
  10329. },
  10330. ]
  10331. ))
  10332. characterMakers.push(() => makeCharacter(
  10333. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10334. {
  10335. front: {
  10336. height: math.unit(6, "feet"),
  10337. weight: math.unit(250, "lb"),
  10338. name: "Front",
  10339. image: {
  10340. source: "./media/characters/alexi/front.svg",
  10341. extra: 3483 / 3291,
  10342. bottom: 0.04
  10343. }
  10344. },
  10345. back: {
  10346. height: math.unit(6, "feet"),
  10347. weight: math.unit(250, "lb"),
  10348. name: "Back",
  10349. image: {
  10350. source: "./media/characters/alexi/back.svg",
  10351. extra: 3533 / 3356,
  10352. bottom: 0.021
  10353. }
  10354. },
  10355. frontTransforming: {
  10356. height: math.unit(8.58, "feet"),
  10357. weight: math.unit(1300, "lb"),
  10358. name: "Transforming",
  10359. image: {
  10360. source: "./media/characters/alexi/front-transforming.svg",
  10361. extra: 437 / 409,
  10362. bottom: 19 / 458.66
  10363. }
  10364. },
  10365. frontTransformed: {
  10366. height: math.unit(12.5, "feet"),
  10367. weight: math.unit(4000, "lb"),
  10368. name: "Transformed",
  10369. image: {
  10370. source: "./media/characters/alexi/front-transformed.svg",
  10371. extra: 639 / 614,
  10372. bottom: 30.55 / 671
  10373. }
  10374. },
  10375. },
  10376. [
  10377. {
  10378. name: "Normal",
  10379. height: math.unit(14, "feet"),
  10380. default: true
  10381. },
  10382. {
  10383. name: "Minimacro",
  10384. height: math.unit(30, "meters")
  10385. },
  10386. {
  10387. name: "Macro",
  10388. height: math.unit(500, "meters")
  10389. },
  10390. {
  10391. name: "Megamacro",
  10392. height: math.unit(9000, "km")
  10393. },
  10394. {
  10395. name: "Teramacro",
  10396. height: math.unit(384000, "km")
  10397. },
  10398. ]
  10399. ))
  10400. characterMakers.push(() => makeCharacter(
  10401. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10402. {
  10403. front: {
  10404. height: math.unit(6, "feet"),
  10405. weight: math.unit(150, "lb"),
  10406. name: "Front",
  10407. image: {
  10408. source: "./media/characters/kayroo/front.svg",
  10409. extra: 1153 / 1038,
  10410. bottom: 0.06
  10411. }
  10412. },
  10413. foot: {
  10414. height: math.unit(6, "feet"),
  10415. weight: math.unit(150, "lb"),
  10416. name: "Foot",
  10417. image: {
  10418. source: "./media/characters/kayroo/foot.svg"
  10419. }
  10420. },
  10421. },
  10422. [
  10423. {
  10424. name: "Normal",
  10425. height: math.unit(8, "feet"),
  10426. default: true
  10427. },
  10428. {
  10429. name: "Minimacro",
  10430. height: math.unit(250, "feet")
  10431. },
  10432. {
  10433. name: "Macro",
  10434. height: math.unit(2800, "feet")
  10435. },
  10436. {
  10437. name: "Megamacro",
  10438. height: math.unit(5200, "feet")
  10439. },
  10440. {
  10441. name: "Gigamacro",
  10442. height: math.unit(27000, "feet")
  10443. },
  10444. {
  10445. name: "Omega",
  10446. height: math.unit(45000, "feet")
  10447. },
  10448. ]
  10449. ))
  10450. characterMakers.push(() => makeCharacter(
  10451. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10452. {
  10453. front: {
  10454. height: math.unit(18, "feet"),
  10455. weight: math.unit(5800, "lb"),
  10456. name: "Front",
  10457. image: {
  10458. source: "./media/characters/rhys/front.svg",
  10459. extra: 3386 / 3090,
  10460. bottom: 0.07
  10461. }
  10462. },
  10463. },
  10464. [
  10465. {
  10466. name: "Normal",
  10467. height: math.unit(18, "feet"),
  10468. default: true
  10469. },
  10470. {
  10471. name: "Working Size",
  10472. height: math.unit(200, "feet")
  10473. },
  10474. {
  10475. name: "Demolition Size",
  10476. height: math.unit(2000, "feet")
  10477. },
  10478. {
  10479. name: "Maximum Licensed Size",
  10480. height: math.unit(5, "miles")
  10481. },
  10482. {
  10483. name: "Maximum Observed Size",
  10484. height: math.unit(10, "yottameters")
  10485. },
  10486. ]
  10487. ))
  10488. characterMakers.push(() => makeCharacter(
  10489. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10490. {
  10491. front: {
  10492. height: math.unit(6, "feet"),
  10493. weight: math.unit(250, "lb"),
  10494. name: "Front",
  10495. image: {
  10496. source: "./media/characters/toto/front.svg",
  10497. extra: 527 / 479,
  10498. bottom: 0.05
  10499. }
  10500. },
  10501. },
  10502. [
  10503. {
  10504. name: "Micro",
  10505. height: math.unit(3, "feet")
  10506. },
  10507. {
  10508. name: "Normal",
  10509. height: math.unit(10, "feet")
  10510. },
  10511. {
  10512. name: "Macro",
  10513. height: math.unit(150, "feet"),
  10514. default: true
  10515. },
  10516. {
  10517. name: "Megamacro",
  10518. height: math.unit(1200, "feet")
  10519. },
  10520. ]
  10521. ))
  10522. characterMakers.push(() => makeCharacter(
  10523. { name: "King", species: ["lion"], tags: ["anthro"] },
  10524. {
  10525. back: {
  10526. height: math.unit(6, "feet"),
  10527. weight: math.unit(150, "lb"),
  10528. name: "Back",
  10529. image: {
  10530. source: "./media/characters/king/back.svg"
  10531. }
  10532. },
  10533. },
  10534. [
  10535. {
  10536. name: "Micro",
  10537. height: math.unit(2, "inches")
  10538. },
  10539. {
  10540. name: "Normal",
  10541. height: math.unit(8, "feet")
  10542. },
  10543. {
  10544. name: "Macro",
  10545. height: math.unit(200, "feet"),
  10546. default: true
  10547. },
  10548. {
  10549. name: "Megamacro",
  10550. height: math.unit(50, "miles")
  10551. },
  10552. ]
  10553. ))
  10554. characterMakers.push(() => makeCharacter(
  10555. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10556. {
  10557. anthro: {
  10558. height: math.unit(6 + 5 / 12, "feet"),
  10559. weight: math.unit(280, "lb"),
  10560. name: "Anthro",
  10561. image: {
  10562. source: "./media/characters/cordite/anthro.svg",
  10563. extra: 1986 / 1905,
  10564. bottom: 0.025
  10565. }
  10566. },
  10567. feral: {
  10568. height: math.unit(2, "feet"),
  10569. weight: math.unit(90, "lb"),
  10570. name: "Feral",
  10571. image: {
  10572. source: "./media/characters/cordite/feral.svg",
  10573. extra: 1260 / 755,
  10574. bottom: 0.05
  10575. }
  10576. },
  10577. },
  10578. [
  10579. {
  10580. name: "Normal",
  10581. height: math.unit(6 + 5 / 12, "feet"),
  10582. default: true
  10583. },
  10584. ]
  10585. ))
  10586. characterMakers.push(() => makeCharacter(
  10587. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10588. {
  10589. front: {
  10590. height: math.unit(6, "feet"),
  10591. weight: math.unit(150, "lb"),
  10592. name: "Front",
  10593. image: {
  10594. source: "./media/characters/pianostrong/front.svg",
  10595. extra: 6577 / 6254,
  10596. bottom: 0.02
  10597. }
  10598. },
  10599. side: {
  10600. height: math.unit(6, "feet"),
  10601. weight: math.unit(150, "lb"),
  10602. name: "Side",
  10603. image: {
  10604. source: "./media/characters/pianostrong/side.svg",
  10605. extra: 6106 / 5730
  10606. }
  10607. },
  10608. back: {
  10609. height: math.unit(6, "feet"),
  10610. weight: math.unit(150, "lb"),
  10611. name: "Back",
  10612. image: {
  10613. source: "./media/characters/pianostrong/back.svg",
  10614. extra: 6085 / 5733,
  10615. bottom: 0.01
  10616. }
  10617. },
  10618. },
  10619. [
  10620. {
  10621. name: "Macro",
  10622. height: math.unit(100, "feet")
  10623. },
  10624. {
  10625. name: "Macro+",
  10626. height: math.unit(300, "feet"),
  10627. default: true
  10628. },
  10629. {
  10630. name: "Macro++",
  10631. height: math.unit(1000, "feet")
  10632. },
  10633. ]
  10634. ))
  10635. characterMakers.push(() => makeCharacter(
  10636. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10637. {
  10638. front: {
  10639. height: math.unit(6, "feet"),
  10640. weight: math.unit(150, "lb"),
  10641. name: "Front",
  10642. image: {
  10643. source: "./media/characters/kona/front.svg",
  10644. extra: 2960 / 2629,
  10645. bottom: 0.005
  10646. }
  10647. },
  10648. },
  10649. [
  10650. {
  10651. name: "Normal",
  10652. height: math.unit(11 + 8 / 12, "feet")
  10653. },
  10654. {
  10655. name: "Macro",
  10656. height: math.unit(850, "feet"),
  10657. default: true
  10658. },
  10659. {
  10660. name: "Macro+",
  10661. height: math.unit(1.5, "km"),
  10662. default: true
  10663. },
  10664. {
  10665. name: "Megamacro",
  10666. height: math.unit(80, "miles")
  10667. },
  10668. {
  10669. name: "Gigamacro",
  10670. height: math.unit(3500, "miles")
  10671. },
  10672. ]
  10673. ))
  10674. characterMakers.push(() => makeCharacter(
  10675. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10676. {
  10677. side: {
  10678. height: math.unit(1.9, "meters"),
  10679. weight: math.unit(326, "kg"),
  10680. name: "Side",
  10681. image: {
  10682. source: "./media/characters/levi/side.svg",
  10683. extra: 1704 / 1334,
  10684. bottom: 0.02
  10685. }
  10686. },
  10687. },
  10688. [
  10689. {
  10690. name: "Normal",
  10691. height: math.unit(1.9, "meters"),
  10692. default: true
  10693. },
  10694. {
  10695. name: "Macro",
  10696. height: math.unit(20, "meters")
  10697. },
  10698. {
  10699. name: "Macro+",
  10700. height: math.unit(200, "meters")
  10701. },
  10702. {
  10703. name: "Megamacro",
  10704. height: math.unit(2, "km")
  10705. },
  10706. {
  10707. name: "Megamacro+",
  10708. height: math.unit(20, "km")
  10709. },
  10710. {
  10711. name: "Gigamacro",
  10712. height: math.unit(2500, "km")
  10713. },
  10714. {
  10715. name: "Gigamacro+",
  10716. height: math.unit(120000, "km")
  10717. },
  10718. {
  10719. name: "Teramacro",
  10720. height: math.unit(7.77e6, "km")
  10721. },
  10722. ]
  10723. ))
  10724. characterMakers.push(() => makeCharacter(
  10725. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10726. {
  10727. front: {
  10728. height: math.unit(6 + 4 / 12, "feet"),
  10729. weight: math.unit(188, "lb"),
  10730. name: "Front",
  10731. image: {
  10732. source: "./media/characters/bmc/front.svg",
  10733. extra: 1067 / 1022,
  10734. bottom: 0.047
  10735. }
  10736. },
  10737. },
  10738. [
  10739. {
  10740. name: "Human-sized",
  10741. height: math.unit(6 + 4 / 12, "feet")
  10742. },
  10743. {
  10744. name: "Small",
  10745. height: math.unit(250, "feet")
  10746. },
  10747. {
  10748. name: "Normal",
  10749. height: math.unit(1250, "feet"),
  10750. default: true
  10751. },
  10752. {
  10753. name: "Good Day",
  10754. height: math.unit(88, "miles")
  10755. },
  10756. {
  10757. name: "Largest Measured Size",
  10758. height: math.unit(11.2e6, "lightyears")
  10759. },
  10760. ]
  10761. ))
  10762. characterMakers.push(() => makeCharacter(
  10763. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10764. {
  10765. front: {
  10766. height: math.unit(20, "feet"),
  10767. weight: math.unit(2016, "kg"),
  10768. name: "Front",
  10769. image: {
  10770. source: "./media/characters/sven-the-kaiju/front.svg",
  10771. extra: 1479 / 1449,
  10772. bottom: 0.05
  10773. }
  10774. },
  10775. },
  10776. [
  10777. {
  10778. name: "Fairy",
  10779. height: math.unit(6, "inches")
  10780. },
  10781. {
  10782. name: "Normal",
  10783. height: math.unit(20, "feet"),
  10784. default: true
  10785. },
  10786. {
  10787. name: "Rampage",
  10788. height: math.unit(200, "feet")
  10789. },
  10790. {
  10791. name: "Archfey Forest Guardian",
  10792. height: math.unit(1, "mile")
  10793. },
  10794. ]
  10795. ))
  10796. characterMakers.push(() => makeCharacter(
  10797. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10798. {
  10799. front: {
  10800. height: math.unit(4, "meters"),
  10801. weight: math.unit(2, "tons"),
  10802. name: "Front",
  10803. image: {
  10804. source: "./media/characters/marik/front.svg",
  10805. extra: 1057 / 1003,
  10806. bottom: 0.08
  10807. }
  10808. },
  10809. },
  10810. [
  10811. {
  10812. name: "Normal",
  10813. height: math.unit(4, "meters"),
  10814. default: true
  10815. },
  10816. {
  10817. name: "Macro",
  10818. height: math.unit(20, "meters")
  10819. },
  10820. {
  10821. name: "Megamacro",
  10822. height: math.unit(50, "km")
  10823. },
  10824. {
  10825. name: "Gigamacro",
  10826. height: math.unit(100, "km")
  10827. },
  10828. {
  10829. name: "Alpha Macro",
  10830. height: math.unit(7.88e7, "yottameters")
  10831. },
  10832. ]
  10833. ))
  10834. characterMakers.push(() => makeCharacter(
  10835. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10836. {
  10837. front: {
  10838. height: math.unit(6, "feet"),
  10839. weight: math.unit(110, "lb"),
  10840. name: "Front",
  10841. image: {
  10842. source: "./media/characters/mel/front.svg",
  10843. extra: 736 / 617,
  10844. bottom: 0.017
  10845. }
  10846. },
  10847. },
  10848. [
  10849. {
  10850. name: "Pico",
  10851. height: math.unit(3, "pm")
  10852. },
  10853. {
  10854. name: "Nano",
  10855. height: math.unit(3, "nm")
  10856. },
  10857. {
  10858. name: "Micro",
  10859. height: math.unit(0.3, "mm"),
  10860. default: true
  10861. },
  10862. {
  10863. name: "Micro+",
  10864. height: math.unit(3, "mm")
  10865. },
  10866. {
  10867. name: "Normal",
  10868. height: math.unit(5 + 10.5 / 12, "feet")
  10869. },
  10870. ]
  10871. ))
  10872. characterMakers.push(() => makeCharacter(
  10873. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10874. {
  10875. kaiju: {
  10876. height: math.unit(1.75, "meters"),
  10877. weight: math.unit(55, "kg"),
  10878. name: "Kaiju",
  10879. image: {
  10880. source: "./media/characters/lykonous/kaiju.svg",
  10881. extra: 1055 / 946,
  10882. bottom: 0.135
  10883. }
  10884. },
  10885. },
  10886. [
  10887. {
  10888. name: "Normal",
  10889. height: math.unit(2.5, "meters"),
  10890. default: true
  10891. },
  10892. {
  10893. name: "Kaiju Dragon",
  10894. height: math.unit(60, "meters")
  10895. },
  10896. {
  10897. name: "Mega Kaiju",
  10898. height: math.unit(120, "km")
  10899. },
  10900. {
  10901. name: "Giga Kaiju",
  10902. height: math.unit(200, "megameters")
  10903. },
  10904. {
  10905. name: "Terra Kaiju",
  10906. height: math.unit(400, "gigameters")
  10907. },
  10908. {
  10909. name: "Kaiju Dragon God",
  10910. height: math.unit(13000, "exaparsecs")
  10911. },
  10912. ]
  10913. ))
  10914. characterMakers.push(() => makeCharacter(
  10915. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10916. {
  10917. front: {
  10918. height: math.unit(6, "feet"),
  10919. weight: math.unit(150, "lb"),
  10920. name: "Front",
  10921. image: {
  10922. source: "./media/characters/blü/front.svg",
  10923. extra: 1883 / 1564,
  10924. bottom: 0.031
  10925. }
  10926. },
  10927. },
  10928. [
  10929. {
  10930. name: "Normal",
  10931. height: math.unit(13, "feet"),
  10932. default: true
  10933. },
  10934. {
  10935. name: "Big Boi",
  10936. height: math.unit(150, "meters")
  10937. },
  10938. {
  10939. name: "Mini Stomper",
  10940. height: math.unit(300, "meters")
  10941. },
  10942. {
  10943. name: "Macro",
  10944. height: math.unit(1000, "meters")
  10945. },
  10946. {
  10947. name: "Megamacro",
  10948. height: math.unit(11000, "meters")
  10949. },
  10950. {
  10951. name: "Gigamacro",
  10952. height: math.unit(11000, "km")
  10953. },
  10954. {
  10955. name: "Teramacro",
  10956. height: math.unit(420000, "km")
  10957. },
  10958. {
  10959. name: "Examacro",
  10960. height: math.unit(120, "parsecs")
  10961. },
  10962. {
  10963. name: "God Tho",
  10964. height: math.unit(98000000000, "parsecs")
  10965. },
  10966. ]
  10967. ))
  10968. characterMakers.push(() => makeCharacter(
  10969. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10970. {
  10971. taurFront: {
  10972. height: math.unit(6, "feet"),
  10973. weight: math.unit(200, "lb"),
  10974. name: "Taur (Front)",
  10975. image: {
  10976. source: "./media/characters/scales/taur-front.svg",
  10977. extra: 1,
  10978. bottom: 0.05
  10979. }
  10980. },
  10981. taurBack: {
  10982. height: math.unit(6, "feet"),
  10983. weight: math.unit(200, "lb"),
  10984. name: "Taur (Back)",
  10985. image: {
  10986. source: "./media/characters/scales/taur-back.svg",
  10987. extra: 1,
  10988. bottom: 0.08
  10989. }
  10990. },
  10991. anthro: {
  10992. height: math.unit(6 * 7 / 12, "feet"),
  10993. weight: math.unit(100, "lb"),
  10994. name: "Anthro",
  10995. image: {
  10996. source: "./media/characters/scales/anthro.svg",
  10997. extra: 1,
  10998. bottom: 0.06
  10999. }
  11000. },
  11001. },
  11002. [
  11003. {
  11004. name: "Normal",
  11005. height: math.unit(12, "feet"),
  11006. default: true
  11007. },
  11008. ]
  11009. ))
  11010. characterMakers.push(() => makeCharacter(
  11011. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11012. {
  11013. front: {
  11014. height: math.unit(6, "feet"),
  11015. weight: math.unit(150, "lb"),
  11016. name: "Front",
  11017. image: {
  11018. source: "./media/characters/koragos/front.svg",
  11019. extra: 841 / 794,
  11020. bottom: 0.035
  11021. }
  11022. },
  11023. back: {
  11024. height: math.unit(6, "feet"),
  11025. weight: math.unit(150, "lb"),
  11026. name: "Back",
  11027. image: {
  11028. source: "./media/characters/koragos/back.svg",
  11029. extra: 841 / 810,
  11030. bottom: 0.022
  11031. }
  11032. },
  11033. },
  11034. [
  11035. {
  11036. name: "Normal",
  11037. height: math.unit(6 + 11 / 12, "feet"),
  11038. default: true
  11039. },
  11040. {
  11041. name: "Macro",
  11042. height: math.unit(490, "feet")
  11043. },
  11044. {
  11045. name: "Megamacro",
  11046. height: math.unit(10, "miles")
  11047. },
  11048. {
  11049. name: "Gigamacro",
  11050. height: math.unit(50, "miles")
  11051. },
  11052. ]
  11053. ))
  11054. characterMakers.push(() => makeCharacter(
  11055. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11056. {
  11057. front: {
  11058. height: math.unit(6, "feet"),
  11059. weight: math.unit(250, "lb"),
  11060. name: "Front",
  11061. image: {
  11062. source: "./media/characters/xylrem/front.svg",
  11063. extra: 3323 / 3050,
  11064. bottom: 0.065
  11065. }
  11066. },
  11067. },
  11068. [
  11069. {
  11070. name: "Micro",
  11071. height: math.unit(4, "feet")
  11072. },
  11073. {
  11074. name: "Normal",
  11075. height: math.unit(16, "feet"),
  11076. default: true
  11077. },
  11078. {
  11079. name: "Macro",
  11080. height: math.unit(2720, "feet")
  11081. },
  11082. {
  11083. name: "Megamacro",
  11084. height: math.unit(25000, "miles")
  11085. },
  11086. ]
  11087. ))
  11088. characterMakers.push(() => makeCharacter(
  11089. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11090. {
  11091. front: {
  11092. height: math.unit(8, "feet"),
  11093. weight: math.unit(250, "kg"),
  11094. name: "Front",
  11095. image: {
  11096. source: "./media/characters/ikideru/front.svg",
  11097. extra: 930 / 870,
  11098. bottom: 0.087
  11099. }
  11100. },
  11101. back: {
  11102. height: math.unit(8, "feet"),
  11103. weight: math.unit(250, "kg"),
  11104. name: "Back",
  11105. image: {
  11106. source: "./media/characters/ikideru/back.svg",
  11107. extra: 919 / 852,
  11108. bottom: 0.055
  11109. }
  11110. },
  11111. },
  11112. [
  11113. {
  11114. name: "Rare",
  11115. height: math.unit(8, "feet"),
  11116. default: true
  11117. },
  11118. {
  11119. name: "Playful Loom",
  11120. height: math.unit(80, "feet")
  11121. },
  11122. {
  11123. name: "City Leaner",
  11124. height: math.unit(230, "feet")
  11125. },
  11126. {
  11127. name: "Megamacro",
  11128. height: math.unit(2500, "feet")
  11129. },
  11130. {
  11131. name: "Gigamacro",
  11132. height: math.unit(26400, "feet")
  11133. },
  11134. {
  11135. name: "Tectonic Shifter",
  11136. height: math.unit(1.7, "megameters")
  11137. },
  11138. {
  11139. name: "Planet Carer",
  11140. height: math.unit(21, "megameters")
  11141. },
  11142. {
  11143. name: "God",
  11144. height: math.unit(11157.22, "parsecs")
  11145. },
  11146. ]
  11147. ))
  11148. characterMakers.push(() => makeCharacter(
  11149. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11150. {
  11151. front: {
  11152. height: math.unit(6, "feet"),
  11153. weight: math.unit(120, "lb"),
  11154. name: "Front",
  11155. image: {
  11156. source: "./media/characters/neo/front.svg"
  11157. }
  11158. },
  11159. },
  11160. [
  11161. {
  11162. name: "Micro",
  11163. height: math.unit(2, "inches"),
  11164. default: true
  11165. },
  11166. {
  11167. name: "Human Size",
  11168. height: math.unit(5 + 8 / 12, "feet")
  11169. },
  11170. ]
  11171. ))
  11172. characterMakers.push(() => makeCharacter(
  11173. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11174. {
  11175. front: {
  11176. height: math.unit(13 + 10 / 12, "feet"),
  11177. weight: math.unit(5320, "lb"),
  11178. name: "Front",
  11179. image: {
  11180. source: "./media/characters/chauncey-chantz/front.svg",
  11181. extra: 1587 / 1435,
  11182. bottom: 0.02
  11183. }
  11184. },
  11185. },
  11186. [
  11187. {
  11188. name: "Normal",
  11189. height: math.unit(13 + 10 / 12, "feet"),
  11190. default: true
  11191. },
  11192. {
  11193. name: "Macro",
  11194. height: math.unit(45, "feet")
  11195. },
  11196. {
  11197. name: "Megamacro",
  11198. height: math.unit(250, "miles")
  11199. },
  11200. {
  11201. name: "Planetary",
  11202. height: math.unit(10000, "miles")
  11203. },
  11204. {
  11205. name: "Galactic",
  11206. height: math.unit(40000, "parsecs")
  11207. },
  11208. {
  11209. name: "Universal",
  11210. height: math.unit(1, "yottameter")
  11211. },
  11212. ]
  11213. ))
  11214. characterMakers.push(() => makeCharacter(
  11215. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11216. {
  11217. front: {
  11218. height: math.unit(6, "feet"),
  11219. weight: math.unit(150, "lb"),
  11220. name: "Front",
  11221. image: {
  11222. source: "./media/characters/epifox/front.svg",
  11223. extra: 1,
  11224. bottom: 0.075
  11225. }
  11226. },
  11227. },
  11228. [
  11229. {
  11230. name: "Micro",
  11231. height: math.unit(6, "inches")
  11232. },
  11233. {
  11234. name: "Normal",
  11235. height: math.unit(12, "feet"),
  11236. default: true
  11237. },
  11238. {
  11239. name: "Macro",
  11240. height: math.unit(3810, "feet")
  11241. },
  11242. {
  11243. name: "Megamacro",
  11244. height: math.unit(500, "miles")
  11245. },
  11246. ]
  11247. ))
  11248. characterMakers.push(() => makeCharacter(
  11249. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11250. {
  11251. front: {
  11252. height: math.unit(1.8796, "m"),
  11253. weight: math.unit(230, "lb"),
  11254. name: "Front",
  11255. image: {
  11256. source: "./media/characters/colin-t/front.svg",
  11257. extra: 1272 / 1193,
  11258. bottom: 0.07
  11259. }
  11260. },
  11261. },
  11262. [
  11263. {
  11264. name: "Micro",
  11265. height: math.unit(0.571, "meters")
  11266. },
  11267. {
  11268. name: "Normal",
  11269. height: math.unit(1.8796, "meters"),
  11270. default: true
  11271. },
  11272. {
  11273. name: "Tall",
  11274. height: math.unit(4, "meters")
  11275. },
  11276. {
  11277. name: "Macro",
  11278. height: math.unit(67.241, "meters")
  11279. },
  11280. {
  11281. name: "Megamacro",
  11282. height: math.unit(371.856, "meters")
  11283. },
  11284. {
  11285. name: "Planetary",
  11286. height: math.unit(12631.5689, "km")
  11287. },
  11288. ]
  11289. ))
  11290. characterMakers.push(() => makeCharacter(
  11291. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11292. {
  11293. front: {
  11294. height: math.unit(1.85, "meters"),
  11295. weight: math.unit(80, "kg"),
  11296. name: "Front",
  11297. image: {
  11298. source: "./media/characters/matvei/front.svg",
  11299. extra: 614 / 594,
  11300. bottom: 0.01
  11301. }
  11302. },
  11303. },
  11304. [
  11305. {
  11306. name: "Normal",
  11307. height: math.unit(1.85, "meters"),
  11308. default: true
  11309. },
  11310. ]
  11311. ))
  11312. characterMakers.push(() => makeCharacter(
  11313. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11314. {
  11315. front: {
  11316. height: math.unit(5 + 9 / 12, "feet"),
  11317. weight: math.unit(70, "lb"),
  11318. name: "Front",
  11319. image: {
  11320. source: "./media/characters/quincy/front.svg",
  11321. extra: 3041 / 2751
  11322. }
  11323. },
  11324. back: {
  11325. height: math.unit(5 + 9 / 12, "feet"),
  11326. weight: math.unit(70, "lb"),
  11327. name: "Back",
  11328. image: {
  11329. source: "./media/characters/quincy/back.svg",
  11330. extra: 3041 / 2751
  11331. }
  11332. },
  11333. flying: {
  11334. height: math.unit(5 + 4 / 12, "feet"),
  11335. weight: math.unit(70, "lb"),
  11336. name: "Flying",
  11337. image: {
  11338. source: "./media/characters/quincy/flying.svg",
  11339. extra: 1044 / 930
  11340. }
  11341. },
  11342. },
  11343. [
  11344. {
  11345. name: "Micro",
  11346. height: math.unit(3, "cm")
  11347. },
  11348. {
  11349. name: "Normal",
  11350. height: math.unit(5 + 9 / 12, "feet")
  11351. },
  11352. {
  11353. name: "Macro",
  11354. height: math.unit(200, "meters"),
  11355. default: true
  11356. },
  11357. {
  11358. name: "Megamacro",
  11359. height: math.unit(1000, "meters")
  11360. },
  11361. ]
  11362. ))
  11363. characterMakers.push(() => makeCharacter(
  11364. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11365. {
  11366. front: {
  11367. height: math.unit(4 + 7 / 12, "feet"),
  11368. weight: math.unit(50, "lb"),
  11369. name: "Front",
  11370. image: {
  11371. source: "./media/characters/vanrel/front.svg",
  11372. extra: 1,
  11373. bottom: 0.02
  11374. }
  11375. },
  11376. frontAlt: {
  11377. height: math.unit(4 + 7 / 12, "feet"),
  11378. weight: math.unit(50, "lb"),
  11379. name: "Front-alt",
  11380. image: {
  11381. source: "./media/characters/vanrel/front-alt.svg",
  11382. extra: 1,
  11383. bottom: 15 / 1511
  11384. }
  11385. },
  11386. elemental: {
  11387. height: math.unit(3, "feet"),
  11388. weight: math.unit(50, "lb"),
  11389. name: "Elemental",
  11390. image: {
  11391. source: "./media/characters/vanrel/elemental.svg",
  11392. extra: 192.3 / 162.8,
  11393. bottom: 1.79 / 194.17
  11394. }
  11395. },
  11396. side: {
  11397. height: math.unit(4 + 7 / 12, "feet"),
  11398. weight: math.unit(50, "lb"),
  11399. name: "Side",
  11400. image: {
  11401. source: "./media/characters/vanrel/side.svg",
  11402. extra: 1,
  11403. bottom: 0.025
  11404. }
  11405. },
  11406. tome: {
  11407. height: math.unit(1.35, "feet"),
  11408. weight: math.unit(10, "lb"),
  11409. name: "Vanrel's Tome",
  11410. rename: true,
  11411. image: {
  11412. source: "./media/characters/vanrel/tome.svg"
  11413. }
  11414. },
  11415. beans: {
  11416. height: math.unit(0.89, "feet"),
  11417. name: "Beans",
  11418. image: {
  11419. source: "./media/characters/vanrel/beans.svg"
  11420. }
  11421. },
  11422. },
  11423. [
  11424. {
  11425. name: "Normal",
  11426. height: math.unit(4 + 7 / 12, "feet"),
  11427. default: true
  11428. },
  11429. ]
  11430. ))
  11431. characterMakers.push(() => makeCharacter(
  11432. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11433. {
  11434. front: {
  11435. height: math.unit(7 + 5 / 12, "feet"),
  11436. weight: math.unit(150, "lb"),
  11437. name: "Front",
  11438. image: {
  11439. source: "./media/characters/kuiper-vanrel/front.svg",
  11440. extra: 1118 / 1068,
  11441. bottom: 0.09
  11442. }
  11443. },
  11444. foot: {
  11445. height: math.unit(0.55, "meters"),
  11446. name: "Foot",
  11447. image: {
  11448. source: "./media/characters/kuiper-vanrel/foot.svg",
  11449. }
  11450. },
  11451. battle: {
  11452. height: math.unit(6.824, "feet"),
  11453. weight: math.unit(150, "lb"),
  11454. name: "Battle",
  11455. image: {
  11456. source: "./media/characters/kuiper-vanrel/battle.svg",
  11457. extra: 1466 / 1327,
  11458. bottom: 29 / 1492.5
  11459. }
  11460. },
  11461. battleAlt: {
  11462. height: math.unit(6.824, "feet"),
  11463. weight: math.unit(150, "lb"),
  11464. name: "Battle (Alt)",
  11465. image: {
  11466. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11467. extra: 2081 / 1965,
  11468. bottom: 40 / 2121
  11469. }
  11470. },
  11471. },
  11472. [
  11473. {
  11474. name: "Normal",
  11475. height: math.unit(7 + 5 / 12, "feet"),
  11476. default: true
  11477. },
  11478. ]
  11479. ))
  11480. characterMakers.push(() => makeCharacter(
  11481. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11482. {
  11483. front: {
  11484. height: math.unit(8 + 5 / 12, "feet"),
  11485. weight: math.unit(150, "lb"),
  11486. name: "Front",
  11487. image: {
  11488. source: "./media/characters/keset-vanrel/front.svg",
  11489. extra: 1150 / 1084,
  11490. bottom: 0.05
  11491. }
  11492. },
  11493. hand: {
  11494. height: math.unit(0.6, "meters"),
  11495. name: "Hand",
  11496. image: {
  11497. source: "./media/characters/keset-vanrel/hand.svg"
  11498. }
  11499. },
  11500. foot: {
  11501. height: math.unit(0.94978, "meters"),
  11502. name: "Foot",
  11503. image: {
  11504. source: "./media/characters/keset-vanrel/foot.svg"
  11505. }
  11506. },
  11507. battle: {
  11508. height: math.unit(7.408, "feet"),
  11509. weight: math.unit(150, "lb"),
  11510. name: "Battle",
  11511. image: {
  11512. source: "./media/characters/keset-vanrel/battle.svg",
  11513. extra: 1890 / 1386,
  11514. bottom: 73.28 / 1970
  11515. }
  11516. },
  11517. },
  11518. [
  11519. {
  11520. name: "Normal",
  11521. height: math.unit(8 + 5 / 12, "feet"),
  11522. default: true
  11523. },
  11524. ]
  11525. ))
  11526. characterMakers.push(() => makeCharacter(
  11527. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11528. {
  11529. front: {
  11530. height: math.unit(6, "feet"),
  11531. weight: math.unit(150, "lb"),
  11532. name: "Front",
  11533. image: {
  11534. source: "./media/characters/neos/front.svg",
  11535. extra: 1696 / 992,
  11536. bottom: 0.14
  11537. }
  11538. },
  11539. },
  11540. [
  11541. {
  11542. name: "Normal",
  11543. height: math.unit(54, "cm"),
  11544. default: true
  11545. },
  11546. {
  11547. name: "Macro",
  11548. height: math.unit(100, "m")
  11549. },
  11550. {
  11551. name: "Megamacro",
  11552. height: math.unit(10, "km")
  11553. },
  11554. {
  11555. name: "Megamacro+",
  11556. height: math.unit(100, "km")
  11557. },
  11558. {
  11559. name: "Gigamacro",
  11560. height: math.unit(100, "Mm")
  11561. },
  11562. {
  11563. name: "Teramacro",
  11564. height: math.unit(100, "Gm")
  11565. },
  11566. {
  11567. name: "Examacro",
  11568. height: math.unit(100, "Em")
  11569. },
  11570. {
  11571. name: "Godly",
  11572. height: math.unit(10000, "Ym")
  11573. },
  11574. {
  11575. name: "Beyond Godly",
  11576. height: math.unit(25, "multiverses")
  11577. },
  11578. ]
  11579. ))
  11580. characterMakers.push(() => makeCharacter(
  11581. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11582. {
  11583. feminine: {
  11584. height: math.unit(5, "feet"),
  11585. weight: math.unit(100, "lb"),
  11586. name: "Feminine",
  11587. image: {
  11588. source: "./media/characters/sammy-mouse/feminine.svg",
  11589. extra: 2526 / 2425,
  11590. bottom: 0.123
  11591. }
  11592. },
  11593. masculine: {
  11594. height: math.unit(5, "feet"),
  11595. weight: math.unit(100, "lb"),
  11596. name: "Masculine",
  11597. image: {
  11598. source: "./media/characters/sammy-mouse/masculine.svg",
  11599. extra: 2526 / 2425,
  11600. bottom: 0.123
  11601. }
  11602. },
  11603. },
  11604. [
  11605. {
  11606. name: "Micro",
  11607. height: math.unit(5, "inches")
  11608. },
  11609. {
  11610. name: "Normal",
  11611. height: math.unit(5, "feet"),
  11612. default: true
  11613. },
  11614. {
  11615. name: "Macro",
  11616. height: math.unit(60, "feet")
  11617. },
  11618. ]
  11619. ))
  11620. characterMakers.push(() => makeCharacter(
  11621. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11622. {
  11623. front: {
  11624. height: math.unit(4, "feet"),
  11625. weight: math.unit(50, "lb"),
  11626. name: "Front",
  11627. image: {
  11628. source: "./media/characters/kole/front.svg",
  11629. extra: 1423 / 1303,
  11630. bottom: 0.025
  11631. }
  11632. },
  11633. back: {
  11634. height: math.unit(4, "feet"),
  11635. weight: math.unit(50, "lb"),
  11636. name: "Back",
  11637. image: {
  11638. source: "./media/characters/kole/back.svg",
  11639. extra: 1426 / 1280,
  11640. bottom: 0.02
  11641. }
  11642. },
  11643. },
  11644. [
  11645. {
  11646. name: "Normal",
  11647. height: math.unit(4, "feet"),
  11648. default: true
  11649. },
  11650. ]
  11651. ))
  11652. characterMakers.push(() => makeCharacter(
  11653. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11654. {
  11655. front: {
  11656. height: math.unit(2 + 6 / 12, "feet"),
  11657. weight: math.unit(20, "lb"),
  11658. name: "Front",
  11659. image: {
  11660. source: "./media/characters/rufran/front.svg",
  11661. extra: 2041 / 1839,
  11662. bottom: 0.055
  11663. }
  11664. },
  11665. back: {
  11666. height: math.unit(2 + 6 / 12, "feet"),
  11667. weight: math.unit(20, "lb"),
  11668. name: "Back",
  11669. image: {
  11670. source: "./media/characters/rufran/back.svg",
  11671. extra: 2054 / 1839,
  11672. bottom: 0.01
  11673. }
  11674. },
  11675. hand: {
  11676. height: math.unit(0.2166, "meters"),
  11677. name: "Hand",
  11678. image: {
  11679. source: "./media/characters/rufran/hand.svg"
  11680. }
  11681. },
  11682. foot: {
  11683. height: math.unit(0.185, "meters"),
  11684. name: "Foot",
  11685. image: {
  11686. source: "./media/characters/rufran/foot.svg"
  11687. }
  11688. },
  11689. },
  11690. [
  11691. {
  11692. name: "Micro",
  11693. height: math.unit(1, "inch")
  11694. },
  11695. {
  11696. name: "Normal",
  11697. height: math.unit(2 + 6 / 12, "feet"),
  11698. default: true
  11699. },
  11700. {
  11701. name: "Big",
  11702. height: math.unit(60, "feet")
  11703. },
  11704. {
  11705. name: "Macro",
  11706. height: math.unit(325, "feet")
  11707. },
  11708. ]
  11709. ))
  11710. characterMakers.push(() => makeCharacter(
  11711. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11712. {
  11713. front: {
  11714. height: math.unit(0.3, "meters"),
  11715. weight: math.unit(3.5, "kg"),
  11716. name: "Front",
  11717. image: {
  11718. source: "./media/characters/chip/front.svg",
  11719. extra: 748 / 674
  11720. }
  11721. },
  11722. },
  11723. [
  11724. {
  11725. name: "Micro",
  11726. height: math.unit(1, "inch"),
  11727. default: true
  11728. },
  11729. ]
  11730. ))
  11731. characterMakers.push(() => makeCharacter(
  11732. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11733. {
  11734. side: {
  11735. height: math.unit(2.3, "meters"),
  11736. weight: math.unit(3500, "lb"),
  11737. name: "Side",
  11738. image: {
  11739. source: "./media/characters/torvid/side.svg",
  11740. extra: 1972 / 722,
  11741. bottom: 0.035
  11742. }
  11743. },
  11744. },
  11745. [
  11746. {
  11747. name: "Normal",
  11748. height: math.unit(2.3, "meters"),
  11749. default: true
  11750. },
  11751. ]
  11752. ))
  11753. characterMakers.push(() => makeCharacter(
  11754. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11755. {
  11756. front: {
  11757. height: math.unit(2, "meters"),
  11758. weight: math.unit(150.5, "kg"),
  11759. name: "Front",
  11760. image: {
  11761. source: "./media/characters/susan/front.svg",
  11762. extra: 693 / 635,
  11763. bottom: 0.05
  11764. }
  11765. },
  11766. },
  11767. [
  11768. {
  11769. name: "Megamacro",
  11770. height: math.unit(505, "miles"),
  11771. default: true
  11772. },
  11773. ]
  11774. ))
  11775. characterMakers.push(() => makeCharacter(
  11776. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11777. {
  11778. front: {
  11779. height: math.unit(6, "feet"),
  11780. weight: math.unit(150, "lb"),
  11781. name: "Front",
  11782. image: {
  11783. source: "./media/characters/raindrops/front.svg",
  11784. extra: 2655 / 2461,
  11785. bottom: 49 / 2705
  11786. }
  11787. },
  11788. back: {
  11789. height: math.unit(6, "feet"),
  11790. weight: math.unit(150, "lb"),
  11791. name: "Back",
  11792. image: {
  11793. source: "./media/characters/raindrops/back.svg",
  11794. extra: 2574 / 2400,
  11795. bottom: 65 / 2634
  11796. }
  11797. },
  11798. },
  11799. [
  11800. {
  11801. name: "Micro",
  11802. height: math.unit(6, "inches")
  11803. },
  11804. {
  11805. name: "Normal",
  11806. height: math.unit(6 + 2 / 12, "feet")
  11807. },
  11808. {
  11809. name: "Macro",
  11810. height: math.unit(131, "feet"),
  11811. default: true
  11812. },
  11813. {
  11814. name: "Megamacro",
  11815. height: math.unit(15, "miles")
  11816. },
  11817. {
  11818. name: "Gigamacro",
  11819. height: math.unit(4000, "miles")
  11820. },
  11821. {
  11822. name: "Teramacro",
  11823. height: math.unit(315000, "miles")
  11824. },
  11825. ]
  11826. ))
  11827. characterMakers.push(() => makeCharacter(
  11828. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11829. {
  11830. front: {
  11831. height: math.unit(2.794, "meters"),
  11832. weight: math.unit(325, "kg"),
  11833. name: "Front",
  11834. image: {
  11835. source: "./media/characters/tezwa/front.svg",
  11836. extra: 2083 / 1906,
  11837. bottom: 0.031
  11838. }
  11839. },
  11840. foot: {
  11841. height: math.unit(0.687, "meters"),
  11842. name: "Foot",
  11843. image: {
  11844. source: "./media/characters/tezwa/foot.svg"
  11845. }
  11846. },
  11847. },
  11848. [
  11849. {
  11850. name: "Normal",
  11851. height: math.unit(9 + 2 / 12, "feet"),
  11852. default: true
  11853. },
  11854. ]
  11855. ))
  11856. characterMakers.push(() => makeCharacter(
  11857. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11858. {
  11859. front: {
  11860. height: math.unit(58, "feet"),
  11861. weight: math.unit(89000, "lb"),
  11862. name: "Front",
  11863. image: {
  11864. source: "./media/characters/typhus/front.svg",
  11865. extra: 816 / 800,
  11866. bottom: 0.065
  11867. }
  11868. },
  11869. },
  11870. [
  11871. {
  11872. name: "Macro",
  11873. height: math.unit(58, "feet"),
  11874. default: true
  11875. },
  11876. ]
  11877. ))
  11878. characterMakers.push(() => makeCharacter(
  11879. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11880. {
  11881. front: {
  11882. height: math.unit(12, "feet"),
  11883. weight: math.unit(6, "tonnes"),
  11884. name: "Front",
  11885. image: {
  11886. source: "./media/characters/lyra-von-wulf/front.svg",
  11887. extra: 1,
  11888. bottom: 0.10
  11889. }
  11890. },
  11891. frontMecha: {
  11892. height: math.unit(12, "feet"),
  11893. weight: math.unit(12, "tonnes"),
  11894. name: "Front (Mecha)",
  11895. image: {
  11896. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11897. extra: 1,
  11898. bottom: 0.042
  11899. }
  11900. },
  11901. maw: {
  11902. height: math.unit(2.2, "feet"),
  11903. name: "Maw",
  11904. image: {
  11905. source: "./media/characters/lyra-von-wulf/maw.svg"
  11906. }
  11907. },
  11908. },
  11909. [
  11910. {
  11911. name: "Normal",
  11912. height: math.unit(12, "feet"),
  11913. default: true
  11914. },
  11915. {
  11916. name: "Classic",
  11917. height: math.unit(50, "feet")
  11918. },
  11919. {
  11920. name: "Macro",
  11921. height: math.unit(500, "feet")
  11922. },
  11923. {
  11924. name: "Megamacro",
  11925. height: math.unit(1, "mile")
  11926. },
  11927. {
  11928. name: "Gigamacro",
  11929. height: math.unit(400, "miles")
  11930. },
  11931. {
  11932. name: "Teramacro",
  11933. height: math.unit(22000, "miles")
  11934. },
  11935. {
  11936. name: "Solarmacro",
  11937. height: math.unit(8600000, "miles")
  11938. },
  11939. {
  11940. name: "Galactic",
  11941. height: math.unit(1057000, "lightyears")
  11942. },
  11943. ]
  11944. ))
  11945. characterMakers.push(() => makeCharacter(
  11946. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11947. {
  11948. front: {
  11949. height: math.unit(6 + 10 / 12, "feet"),
  11950. weight: math.unit(150, "lb"),
  11951. name: "Front",
  11952. image: {
  11953. source: "./media/characters/dixon/front.svg",
  11954. extra: 3361 / 3209,
  11955. bottom: 0.01
  11956. }
  11957. },
  11958. },
  11959. [
  11960. {
  11961. name: "Normal",
  11962. height: math.unit(6 + 10 / 12, "feet"),
  11963. default: true
  11964. },
  11965. {
  11966. name: "Big",
  11967. height: math.unit(12, "meters")
  11968. },
  11969. {
  11970. name: "Macro",
  11971. height: math.unit(500, "meters")
  11972. },
  11973. {
  11974. name: "Megamacro",
  11975. height: math.unit(2, "km")
  11976. },
  11977. ]
  11978. ))
  11979. characterMakers.push(() => makeCharacter(
  11980. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11981. {
  11982. front: {
  11983. height: math.unit(185, "cm"),
  11984. weight: math.unit(68, "kg"),
  11985. name: "Front",
  11986. image: {
  11987. source: "./media/characters/kauko/front.svg",
  11988. extra: 1455 / 1421,
  11989. bottom: 0.03
  11990. }
  11991. },
  11992. back: {
  11993. height: math.unit(185, "cm"),
  11994. weight: math.unit(68, "kg"),
  11995. name: "Back",
  11996. image: {
  11997. source: "./media/characters/kauko/back.svg",
  11998. extra: 1455 / 1421,
  11999. bottom: 0.004
  12000. }
  12001. },
  12002. },
  12003. [
  12004. {
  12005. name: "Normal",
  12006. height: math.unit(185, "cm"),
  12007. default: true
  12008. },
  12009. ]
  12010. ))
  12011. characterMakers.push(() => makeCharacter(
  12012. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12013. {
  12014. front: {
  12015. height: math.unit(6, "feet"),
  12016. weight: math.unit(150, "kg"),
  12017. name: "Front",
  12018. image: {
  12019. source: "./media/characters/varg/front.svg",
  12020. extra: 1108 / 1018,
  12021. bottom: 0.0375
  12022. }
  12023. },
  12024. },
  12025. [
  12026. {
  12027. name: "Normal",
  12028. height: math.unit(5, "meters")
  12029. },
  12030. {
  12031. name: "Macro",
  12032. height: math.unit(200, "meters")
  12033. },
  12034. {
  12035. name: "Megamacro",
  12036. height: math.unit(20, "kilometers")
  12037. },
  12038. {
  12039. name: "True Size",
  12040. height: math.unit(211, "km"),
  12041. default: true
  12042. },
  12043. {
  12044. name: "Gigamacro",
  12045. height: math.unit(1000, "km")
  12046. },
  12047. {
  12048. name: "Gigamacro+",
  12049. height: math.unit(8000, "km")
  12050. },
  12051. {
  12052. name: "Teramacro",
  12053. height: math.unit(1000000, "km")
  12054. },
  12055. ]
  12056. ))
  12057. characterMakers.push(() => makeCharacter(
  12058. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12059. {
  12060. front: {
  12061. height: math.unit(7 + 7 / 12, "feet"),
  12062. weight: math.unit(267, "lb"),
  12063. name: "Front",
  12064. image: {
  12065. source: "./media/characters/dayza/front.svg",
  12066. extra: 1262 / 1200,
  12067. bottom: 0.035
  12068. }
  12069. },
  12070. side: {
  12071. height: math.unit(7 + 7 / 12, "feet"),
  12072. weight: math.unit(267, "lb"),
  12073. name: "Side",
  12074. image: {
  12075. source: "./media/characters/dayza/side.svg",
  12076. extra: 1295 / 1245,
  12077. bottom: 0.05
  12078. }
  12079. },
  12080. back: {
  12081. height: math.unit(7 + 7 / 12, "feet"),
  12082. weight: math.unit(267, "lb"),
  12083. name: "Back",
  12084. image: {
  12085. source: "./media/characters/dayza/back.svg",
  12086. extra: 1241 / 1170
  12087. }
  12088. },
  12089. },
  12090. [
  12091. {
  12092. name: "Normal",
  12093. height: math.unit(7 + 7 / 12, "feet"),
  12094. default: true
  12095. },
  12096. {
  12097. name: "Macro",
  12098. height: math.unit(155, "feet")
  12099. },
  12100. ]
  12101. ))
  12102. characterMakers.push(() => makeCharacter(
  12103. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12104. {
  12105. front: {
  12106. height: math.unit(6 + 5 / 12, "feet"),
  12107. weight: math.unit(160, "lb"),
  12108. name: "Front",
  12109. image: {
  12110. source: "./media/characters/xanthos/front.svg",
  12111. extra: 1,
  12112. bottom: 0.04
  12113. }
  12114. },
  12115. back: {
  12116. height: math.unit(6 + 5 / 12, "feet"),
  12117. weight: math.unit(160, "lb"),
  12118. name: "Back",
  12119. image: {
  12120. source: "./media/characters/xanthos/back.svg",
  12121. extra: 1,
  12122. bottom: 0.03
  12123. }
  12124. },
  12125. hand: {
  12126. height: math.unit(0.928, "feet"),
  12127. name: "Hand",
  12128. image: {
  12129. source: "./media/characters/xanthos/hand.svg"
  12130. }
  12131. },
  12132. foot: {
  12133. height: math.unit(1.286, "feet"),
  12134. name: "Foot",
  12135. image: {
  12136. source: "./media/characters/xanthos/foot.svg"
  12137. }
  12138. },
  12139. },
  12140. [
  12141. {
  12142. name: "Normal",
  12143. height: math.unit(6 + 5 / 12, "feet"),
  12144. default: true
  12145. },
  12146. {
  12147. name: "Normal+",
  12148. height: math.unit(6, "meters")
  12149. },
  12150. {
  12151. name: "Macro",
  12152. height: math.unit(40, "feet")
  12153. },
  12154. {
  12155. name: "Macro+",
  12156. height: math.unit(200, "meters")
  12157. },
  12158. {
  12159. name: "Megamacro",
  12160. height: math.unit(20, "km")
  12161. },
  12162. {
  12163. name: "Megamacro+",
  12164. height: math.unit(100, "km")
  12165. },
  12166. ]
  12167. ))
  12168. characterMakers.push(() => makeCharacter(
  12169. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12170. {
  12171. front: {
  12172. height: math.unit(6 + 3 / 12, "feet"),
  12173. weight: math.unit(215, "lb"),
  12174. name: "Front",
  12175. image: {
  12176. source: "./media/characters/grynn/front.svg",
  12177. extra: 4627 / 4209,
  12178. bottom: 0.047
  12179. }
  12180. },
  12181. },
  12182. [
  12183. {
  12184. name: "Micro",
  12185. height: math.unit(6, "inches")
  12186. },
  12187. {
  12188. name: "Normal",
  12189. height: math.unit(6 + 3 / 12, "feet"),
  12190. default: true
  12191. },
  12192. {
  12193. name: "Big",
  12194. height: math.unit(104, "feet")
  12195. },
  12196. {
  12197. name: "Macro",
  12198. height: math.unit(944, "feet")
  12199. },
  12200. {
  12201. name: "Macro+",
  12202. height: math.unit(9480, "feet")
  12203. },
  12204. {
  12205. name: "Megamacro",
  12206. height: math.unit(78752, "feet")
  12207. },
  12208. {
  12209. name: "Megamacro+",
  12210. height: math.unit(630128, "feet")
  12211. },
  12212. {
  12213. name: "Megamacro++",
  12214. height: math.unit(3150695, "feet")
  12215. },
  12216. ]
  12217. ))
  12218. characterMakers.push(() => makeCharacter(
  12219. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12220. {
  12221. front: {
  12222. height: math.unit(7 + 5 / 12, "feet"),
  12223. weight: math.unit(450, "lb"),
  12224. name: "Front",
  12225. image: {
  12226. source: "./media/characters/mocha-aura/front.svg",
  12227. extra: 1907 / 1817,
  12228. bottom: 0.04
  12229. }
  12230. },
  12231. back: {
  12232. height: math.unit(7 + 5 / 12, "feet"),
  12233. weight: math.unit(450, "lb"),
  12234. name: "Back",
  12235. image: {
  12236. source: "./media/characters/mocha-aura/back.svg",
  12237. extra: 1900 / 1825,
  12238. bottom: 0.045
  12239. }
  12240. },
  12241. },
  12242. [
  12243. {
  12244. name: "Nano",
  12245. height: math.unit(1, "nm")
  12246. },
  12247. {
  12248. name: "Megamicro",
  12249. height: math.unit(1, "mm")
  12250. },
  12251. {
  12252. name: "Micro",
  12253. height: math.unit(3, "inches")
  12254. },
  12255. {
  12256. name: "Normal",
  12257. height: math.unit(7 + 5 / 12, "feet"),
  12258. default: true
  12259. },
  12260. {
  12261. name: "Macro",
  12262. height: math.unit(30, "feet")
  12263. },
  12264. {
  12265. name: "Megamacro",
  12266. height: math.unit(3500, "feet")
  12267. },
  12268. {
  12269. name: "Teramacro",
  12270. height: math.unit(500000, "miles")
  12271. },
  12272. {
  12273. name: "Petamacro",
  12274. height: math.unit(50000000000000000, "parsecs")
  12275. },
  12276. ]
  12277. ))
  12278. characterMakers.push(() => makeCharacter(
  12279. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12280. {
  12281. front: {
  12282. height: math.unit(6, "feet"),
  12283. weight: math.unit(150, "lb"),
  12284. name: "Front",
  12285. image: {
  12286. source: "./media/characters/ilisha-devya/front.svg",
  12287. extra: 1,
  12288. bottom: 0.175
  12289. }
  12290. },
  12291. back: {
  12292. height: math.unit(6, "feet"),
  12293. weight: math.unit(150, "lb"),
  12294. name: "Back",
  12295. image: {
  12296. source: "./media/characters/ilisha-devya/back.svg",
  12297. extra: 1,
  12298. bottom: 0.015
  12299. }
  12300. },
  12301. },
  12302. [
  12303. {
  12304. name: "Macro",
  12305. height: math.unit(500, "feet"),
  12306. default: true
  12307. },
  12308. {
  12309. name: "Megamacro",
  12310. height: math.unit(10, "miles")
  12311. },
  12312. {
  12313. name: "Gigamacro",
  12314. height: math.unit(100000, "miles")
  12315. },
  12316. {
  12317. name: "Examacro",
  12318. height: math.unit(1e9, "lightyears")
  12319. },
  12320. {
  12321. name: "Omniversal",
  12322. height: math.unit(1e33, "lightyears")
  12323. },
  12324. {
  12325. name: "Beyond Infinite",
  12326. height: math.unit(1e100, "lightyears")
  12327. },
  12328. ]
  12329. ))
  12330. characterMakers.push(() => makeCharacter(
  12331. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12332. {
  12333. Side: {
  12334. height: math.unit(6, "feet"),
  12335. weight: math.unit(150, "lb"),
  12336. name: "Side",
  12337. image: {
  12338. source: "./media/characters/mira/side.svg",
  12339. extra: 900 / 799,
  12340. bottom: 0.02
  12341. }
  12342. },
  12343. },
  12344. [
  12345. {
  12346. name: "Human Size",
  12347. height: math.unit(6, "feet")
  12348. },
  12349. {
  12350. name: "Macro",
  12351. height: math.unit(100, "feet"),
  12352. default: true
  12353. },
  12354. {
  12355. name: "Megamacro",
  12356. height: math.unit(10, "miles")
  12357. },
  12358. {
  12359. name: "Gigamacro",
  12360. height: math.unit(25000, "miles")
  12361. },
  12362. {
  12363. name: "Teramacro",
  12364. height: math.unit(300, "AU")
  12365. },
  12366. {
  12367. name: "Full Size",
  12368. height: math.unit(4.5e10, "lightyears")
  12369. },
  12370. ]
  12371. ))
  12372. characterMakers.push(() => makeCharacter(
  12373. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12374. {
  12375. front: {
  12376. height: math.unit(6, "feet"),
  12377. weight: math.unit(150, "lb"),
  12378. name: "Front",
  12379. image: {
  12380. source: "./media/characters/holly/front.svg",
  12381. extra: 639 / 606
  12382. }
  12383. },
  12384. back: {
  12385. height: math.unit(6, "feet"),
  12386. weight: math.unit(150, "lb"),
  12387. name: "Back",
  12388. image: {
  12389. source: "./media/characters/holly/back.svg",
  12390. extra: 623 / 598
  12391. }
  12392. },
  12393. frontWorking: {
  12394. height: math.unit(6, "feet"),
  12395. weight: math.unit(150, "lb"),
  12396. name: "Front (Working)",
  12397. image: {
  12398. source: "./media/characters/holly/front-working.svg",
  12399. extra: 607 / 577,
  12400. bottom: 0.048
  12401. }
  12402. },
  12403. },
  12404. [
  12405. {
  12406. name: "Normal",
  12407. height: math.unit(12 + 3 / 12, "feet"),
  12408. default: true
  12409. },
  12410. ]
  12411. ))
  12412. characterMakers.push(() => makeCharacter(
  12413. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12414. {
  12415. front: {
  12416. height: math.unit(6, "feet"),
  12417. weight: math.unit(150, "lb"),
  12418. name: "Front",
  12419. image: {
  12420. source: "./media/characters/porter/front.svg",
  12421. extra: 1,
  12422. bottom: 0.01
  12423. }
  12424. },
  12425. frontRobes: {
  12426. height: math.unit(6, "feet"),
  12427. weight: math.unit(150, "lb"),
  12428. name: "Front (Robes)",
  12429. image: {
  12430. source: "./media/characters/porter/front-robes.svg",
  12431. extra: 1.01,
  12432. bottom: 0.01
  12433. }
  12434. },
  12435. },
  12436. [
  12437. {
  12438. name: "Normal",
  12439. height: math.unit(11 + 9 / 12, "feet"),
  12440. default: true
  12441. },
  12442. ]
  12443. ))
  12444. characterMakers.push(() => makeCharacter(
  12445. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12446. {
  12447. legendary: {
  12448. height: math.unit(6, "feet"),
  12449. weight: math.unit(150, "lb"),
  12450. name: "Legendary",
  12451. image: {
  12452. source: "./media/characters/lucy/legendary.svg",
  12453. extra: 1355 / 1100,
  12454. bottom: 0.045
  12455. }
  12456. },
  12457. },
  12458. [
  12459. {
  12460. name: "Legendary",
  12461. height: math.unit(86882 * 2, "miles"),
  12462. default: true
  12463. },
  12464. ]
  12465. ))
  12466. characterMakers.push(() => makeCharacter(
  12467. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12468. {
  12469. front: {
  12470. height: math.unit(6, "feet"),
  12471. weight: math.unit(150, "lb"),
  12472. name: "Front",
  12473. image: {
  12474. source: "./media/characters/drusilla/front.svg",
  12475. extra: 678 / 635,
  12476. bottom: 0.03
  12477. }
  12478. },
  12479. back: {
  12480. height: math.unit(6, "feet"),
  12481. weight: math.unit(150, "lb"),
  12482. name: "Back",
  12483. image: {
  12484. source: "./media/characters/drusilla/back.svg",
  12485. extra: 678 / 635,
  12486. bottom: 0.005
  12487. }
  12488. },
  12489. },
  12490. [
  12491. {
  12492. name: "Macro",
  12493. height: math.unit(100, "feet")
  12494. },
  12495. {
  12496. name: "Canon Height",
  12497. height: math.unit(2000, "feet"),
  12498. default: true
  12499. },
  12500. ]
  12501. ))
  12502. characterMakers.push(() => makeCharacter(
  12503. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12504. {
  12505. front: {
  12506. height: math.unit(6, "feet"),
  12507. weight: math.unit(180, "lb"),
  12508. name: "Front",
  12509. image: {
  12510. source: "./media/characters/renard-thatch/front.svg",
  12511. extra: 2411 / 2275,
  12512. bottom: 0.01
  12513. }
  12514. },
  12515. frontPosing: {
  12516. height: math.unit(6, "feet"),
  12517. weight: math.unit(180, "lb"),
  12518. name: "Front (Posing)",
  12519. image: {
  12520. source: "./media/characters/renard-thatch/front-posing.svg",
  12521. extra: 2381 / 2261,
  12522. bottom: 0.01
  12523. }
  12524. },
  12525. back: {
  12526. height: math.unit(6, "feet"),
  12527. weight: math.unit(180, "lb"),
  12528. name: "Back",
  12529. image: {
  12530. source: "./media/characters/renard-thatch/back.svg",
  12531. extra: 2428 / 2288
  12532. }
  12533. },
  12534. },
  12535. [
  12536. {
  12537. name: "Micro",
  12538. height: math.unit(3, "inches")
  12539. },
  12540. {
  12541. name: "Default",
  12542. height: math.unit(6, "feet"),
  12543. default: true
  12544. },
  12545. {
  12546. name: "Macro",
  12547. height: math.unit(75, "feet")
  12548. },
  12549. ]
  12550. ))
  12551. characterMakers.push(() => makeCharacter(
  12552. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12553. {
  12554. front: {
  12555. height: math.unit(1450, "feet"),
  12556. weight: math.unit(1.21e6, "tons"),
  12557. name: "Front",
  12558. image: {
  12559. source: "./media/characters/sekvra/front.svg",
  12560. extra: 1,
  12561. bottom: 0.03
  12562. }
  12563. },
  12564. frontClothed: {
  12565. height: math.unit(1450, "feet"),
  12566. weight: math.unit(1.21e6, "tons"),
  12567. name: "Front (Clothed)",
  12568. image: {
  12569. source: "./media/characters/sekvra/front-clothed.svg",
  12570. extra: 1,
  12571. bottom: 0.03
  12572. }
  12573. },
  12574. side: {
  12575. height: math.unit(1450, "feet"),
  12576. weight: math.unit(1.21e6, "tons"),
  12577. name: "Side",
  12578. image: {
  12579. source: "./media/characters/sekvra/side.svg",
  12580. extra: 1,
  12581. bottom: 0.025
  12582. }
  12583. },
  12584. back: {
  12585. height: math.unit(1450, "feet"),
  12586. weight: math.unit(1.21e6, "tons"),
  12587. name: "Back",
  12588. image: {
  12589. source: "./media/characters/sekvra/back.svg",
  12590. extra: 1,
  12591. bottom: 0.005
  12592. }
  12593. },
  12594. },
  12595. [
  12596. {
  12597. name: "Macro",
  12598. height: math.unit(1450, "feet"),
  12599. default: true
  12600. },
  12601. {
  12602. name: "Megamacro",
  12603. height: math.unit(15000, "feet")
  12604. },
  12605. ]
  12606. ))
  12607. characterMakers.push(() => makeCharacter(
  12608. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12609. {
  12610. front: {
  12611. height: math.unit(6, "feet"),
  12612. weight: math.unit(150, "lb"),
  12613. name: "Front",
  12614. image: {
  12615. source: "./media/characters/carmine/front.svg",
  12616. extra: 1,
  12617. bottom: 0.035
  12618. }
  12619. },
  12620. frontArmor: {
  12621. height: math.unit(6, "feet"),
  12622. weight: math.unit(150, "lb"),
  12623. name: "Front (Armor)",
  12624. image: {
  12625. source: "./media/characters/carmine/front-armor.svg",
  12626. extra: 1,
  12627. bottom: 0.035
  12628. }
  12629. },
  12630. },
  12631. [
  12632. {
  12633. name: "Large",
  12634. height: math.unit(1, "mile")
  12635. },
  12636. {
  12637. name: "Huge",
  12638. height: math.unit(40, "miles"),
  12639. default: true
  12640. },
  12641. {
  12642. name: "Colossal",
  12643. height: math.unit(2500, "miles")
  12644. },
  12645. ]
  12646. ))
  12647. characterMakers.push(() => makeCharacter(
  12648. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12649. {
  12650. front: {
  12651. height: math.unit(6, "feet"),
  12652. weight: math.unit(150, "lb"),
  12653. name: "Front",
  12654. image: {
  12655. source: "./media/characters/elyssia/front.svg",
  12656. extra: 2201 / 2035,
  12657. bottom: 0.05
  12658. }
  12659. },
  12660. frontClothed: {
  12661. height: math.unit(6, "feet"),
  12662. weight: math.unit(150, "lb"),
  12663. name: "Front (Clothed)",
  12664. image: {
  12665. source: "./media/characters/elyssia/front-clothed.svg",
  12666. extra: 2201 / 2035,
  12667. bottom: 0.05
  12668. }
  12669. },
  12670. back: {
  12671. height: math.unit(6, "feet"),
  12672. weight: math.unit(150, "lb"),
  12673. name: "Back",
  12674. image: {
  12675. source: "./media/characters/elyssia/back.svg",
  12676. extra: 2201 / 2035,
  12677. bottom: 0.013
  12678. }
  12679. },
  12680. },
  12681. [
  12682. {
  12683. name: "Smaller",
  12684. height: math.unit(150, "feet")
  12685. },
  12686. {
  12687. name: "Standard",
  12688. height: math.unit(1400, "feet"),
  12689. default: true
  12690. },
  12691. {
  12692. name: "Distracted",
  12693. height: math.unit(15000, "feet")
  12694. },
  12695. ]
  12696. ))
  12697. characterMakers.push(() => makeCharacter(
  12698. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12699. {
  12700. front: {
  12701. height: math.unit(7 + 4 / 12, "feet"),
  12702. weight: math.unit(500, "lb"),
  12703. name: "Front",
  12704. image: {
  12705. source: "./media/characters/geno-maxwell/front.svg",
  12706. extra: 2207 / 2040,
  12707. bottom: 0.015
  12708. }
  12709. },
  12710. },
  12711. [
  12712. {
  12713. name: "Micro",
  12714. height: math.unit(3, "inches")
  12715. },
  12716. {
  12717. name: "Normal",
  12718. height: math.unit(7 + 4 / 12, "feet"),
  12719. default: true
  12720. },
  12721. {
  12722. name: "Macro",
  12723. height: math.unit(220, "feet")
  12724. },
  12725. {
  12726. name: "Megamacro",
  12727. height: math.unit(11, "miles")
  12728. },
  12729. ]
  12730. ))
  12731. characterMakers.push(() => makeCharacter(
  12732. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12733. {
  12734. front: {
  12735. height: math.unit(7 + 4 / 12, "feet"),
  12736. weight: math.unit(500, "lb"),
  12737. name: "Front",
  12738. image: {
  12739. source: "./media/characters/regena-maxwell/front.svg",
  12740. extra: 3115 / 2770,
  12741. bottom: 0.02
  12742. }
  12743. },
  12744. },
  12745. [
  12746. {
  12747. name: "Normal",
  12748. height: math.unit(7 + 4 / 12, "feet"),
  12749. default: true
  12750. },
  12751. {
  12752. name: "Macro",
  12753. height: math.unit(220, "feet")
  12754. },
  12755. {
  12756. name: "Megamacro",
  12757. height: math.unit(11, "miles")
  12758. },
  12759. ]
  12760. ))
  12761. characterMakers.push(() => makeCharacter(
  12762. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12763. {
  12764. front: {
  12765. height: math.unit(6, "feet"),
  12766. weight: math.unit(150, "lb"),
  12767. name: "Front",
  12768. image: {
  12769. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12770. extra: 860 / 690,
  12771. bottom: 0.03
  12772. }
  12773. },
  12774. },
  12775. [
  12776. {
  12777. name: "Normal",
  12778. height: math.unit(1.7, "meters"),
  12779. default: true
  12780. },
  12781. ]
  12782. ))
  12783. characterMakers.push(() => makeCharacter(
  12784. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12785. {
  12786. front: {
  12787. height: math.unit(6, "feet"),
  12788. weight: math.unit(150, "lb"),
  12789. name: "Front",
  12790. image: {
  12791. source: "./media/characters/quilly/front.svg",
  12792. extra: 890 / 776
  12793. }
  12794. },
  12795. },
  12796. [
  12797. {
  12798. name: "Gigamacro",
  12799. height: math.unit(404090, "miles"),
  12800. default: true
  12801. },
  12802. ]
  12803. ))
  12804. characterMakers.push(() => makeCharacter(
  12805. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12806. {
  12807. front: {
  12808. height: math.unit(7 + 8 / 12, "feet"),
  12809. weight: math.unit(350, "lb"),
  12810. name: "Front",
  12811. image: {
  12812. source: "./media/characters/tempest/front.svg",
  12813. extra: 1175 / 1086,
  12814. bottom: 0.02
  12815. }
  12816. },
  12817. },
  12818. [
  12819. {
  12820. name: "Normal",
  12821. height: math.unit(7 + 8 / 12, "feet"),
  12822. default: true
  12823. },
  12824. ]
  12825. ))
  12826. characterMakers.push(() => makeCharacter(
  12827. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12828. {
  12829. side: {
  12830. height: math.unit(4 + 5 / 12, "feet"),
  12831. weight: math.unit(80, "lb"),
  12832. name: "Side",
  12833. image: {
  12834. source: "./media/characters/rodger/side.svg",
  12835. extra: 1235 / 1118
  12836. }
  12837. },
  12838. },
  12839. [
  12840. {
  12841. name: "Micro",
  12842. height: math.unit(1, "inch")
  12843. },
  12844. {
  12845. name: "Normal",
  12846. height: math.unit(4 + 5 / 12, "feet"),
  12847. default: true
  12848. },
  12849. {
  12850. name: "Macro",
  12851. height: math.unit(120, "feet")
  12852. },
  12853. ]
  12854. ))
  12855. characterMakers.push(() => makeCharacter(
  12856. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12857. {
  12858. front: {
  12859. height: math.unit(6, "feet"),
  12860. weight: math.unit(150, "lb"),
  12861. name: "Front",
  12862. image: {
  12863. source: "./media/characters/danyel/front.svg",
  12864. extra: 1185 / 1123,
  12865. bottom: 0.05
  12866. }
  12867. },
  12868. },
  12869. [
  12870. {
  12871. name: "Shrunken",
  12872. height: math.unit(0.5, "mm")
  12873. },
  12874. {
  12875. name: "Micro",
  12876. height: math.unit(1, "mm"),
  12877. default: true
  12878. },
  12879. {
  12880. name: "Upsized",
  12881. height: math.unit(5 + 5 / 12, "feet")
  12882. },
  12883. ]
  12884. ))
  12885. characterMakers.push(() => makeCharacter(
  12886. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12887. {
  12888. front: {
  12889. height: math.unit(5 + 6 / 12, "feet"),
  12890. weight: math.unit(200, "lb"),
  12891. name: "Front",
  12892. image: {
  12893. source: "./media/characters/vivian-bijoux/front.svg",
  12894. extra: 1,
  12895. bottom: 0.072
  12896. }
  12897. },
  12898. },
  12899. [
  12900. {
  12901. name: "Normal",
  12902. height: math.unit(5 + 6 / 12, "feet"),
  12903. default: true
  12904. },
  12905. {
  12906. name: "Bad Dream",
  12907. height: math.unit(500, "feet")
  12908. },
  12909. {
  12910. name: "Nightmare",
  12911. height: math.unit(500, "miles")
  12912. },
  12913. ]
  12914. ))
  12915. characterMakers.push(() => makeCharacter(
  12916. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12917. {
  12918. front: {
  12919. height: math.unit(6 + 1 / 12, "feet"),
  12920. weight: math.unit(260, "lb"),
  12921. name: "Front",
  12922. image: {
  12923. source: "./media/characters/zeta/front.svg",
  12924. extra: 1968 / 1889,
  12925. bottom: 0.06
  12926. }
  12927. },
  12928. back: {
  12929. height: math.unit(6 + 1 / 12, "feet"),
  12930. weight: math.unit(260, "lb"),
  12931. name: "Back",
  12932. image: {
  12933. source: "./media/characters/zeta/back.svg",
  12934. extra: 1944 / 1858,
  12935. bottom: 0.03
  12936. }
  12937. },
  12938. hand: {
  12939. height: math.unit(1.112, "feet"),
  12940. name: "Hand",
  12941. image: {
  12942. source: "./media/characters/zeta/hand.svg"
  12943. }
  12944. },
  12945. foot: {
  12946. height: math.unit(1.48, "feet"),
  12947. name: "Foot",
  12948. image: {
  12949. source: "./media/characters/zeta/foot.svg"
  12950. }
  12951. },
  12952. },
  12953. [
  12954. {
  12955. name: "Micro",
  12956. height: math.unit(6, "inches")
  12957. },
  12958. {
  12959. name: "Normal",
  12960. height: math.unit(6 + 1 / 12, "feet"),
  12961. default: true
  12962. },
  12963. {
  12964. name: "Macro",
  12965. height: math.unit(20, "feet")
  12966. },
  12967. ]
  12968. ))
  12969. characterMakers.push(() => makeCharacter(
  12970. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12971. {
  12972. front: {
  12973. height: math.unit(6, "feet"),
  12974. weight: math.unit(150, "lb"),
  12975. name: "Front",
  12976. image: {
  12977. source: "./media/characters/jamie-larsen/front.svg",
  12978. extra: 962 / 933,
  12979. bottom: 0.02
  12980. }
  12981. },
  12982. back: {
  12983. height: math.unit(6, "feet"),
  12984. weight: math.unit(150, "lb"),
  12985. name: "Back",
  12986. image: {
  12987. source: "./media/characters/jamie-larsen/back.svg",
  12988. extra: 997 / 946
  12989. }
  12990. },
  12991. },
  12992. [
  12993. {
  12994. name: "Macro",
  12995. height: math.unit(28 + 7 / 12, "feet"),
  12996. default: true
  12997. },
  12998. {
  12999. name: "Macro+",
  13000. height: math.unit(180, "feet")
  13001. },
  13002. {
  13003. name: "Megamacro",
  13004. height: math.unit(10, "miles")
  13005. },
  13006. {
  13007. name: "Gigamacro",
  13008. height: math.unit(200000, "miles")
  13009. },
  13010. ]
  13011. ))
  13012. characterMakers.push(() => makeCharacter(
  13013. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13014. {
  13015. front: {
  13016. height: math.unit(6, "feet"),
  13017. weight: math.unit(120, "lb"),
  13018. name: "Front",
  13019. image: {
  13020. source: "./media/characters/vance/front.svg",
  13021. extra: 1980 / 1890,
  13022. bottom: 0.09
  13023. }
  13024. },
  13025. back: {
  13026. height: math.unit(6, "feet"),
  13027. weight: math.unit(120, "lb"),
  13028. name: "Back",
  13029. image: {
  13030. source: "./media/characters/vance/back.svg",
  13031. extra: 2081 / 1994,
  13032. bottom: 0.014
  13033. }
  13034. },
  13035. hand: {
  13036. height: math.unit(0.88, "feet"),
  13037. name: "Hand",
  13038. image: {
  13039. source: "./media/characters/vance/hand.svg"
  13040. }
  13041. },
  13042. foot: {
  13043. height: math.unit(0.64, "feet"),
  13044. name: "Foot",
  13045. image: {
  13046. source: "./media/characters/vance/foot.svg"
  13047. }
  13048. },
  13049. },
  13050. [
  13051. {
  13052. name: "Small",
  13053. height: math.unit(90, "feet"),
  13054. default: true
  13055. },
  13056. {
  13057. name: "Macro",
  13058. height: math.unit(100, "meters")
  13059. },
  13060. {
  13061. name: "Megamacro",
  13062. height: math.unit(15, "miles")
  13063. },
  13064. ]
  13065. ))
  13066. characterMakers.push(() => makeCharacter(
  13067. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13068. {
  13069. front: {
  13070. height: math.unit(6, "feet"),
  13071. weight: math.unit(180, "lb"),
  13072. name: "Front",
  13073. image: {
  13074. source: "./media/characters/xochitl/front.svg",
  13075. extra: 2297 / 2261,
  13076. bottom: 0.065
  13077. }
  13078. },
  13079. back: {
  13080. height: math.unit(6, "feet"),
  13081. weight: math.unit(180, "lb"),
  13082. name: "Back",
  13083. image: {
  13084. source: "./media/characters/xochitl/back.svg",
  13085. extra: 2386 / 2354,
  13086. bottom: 0.01
  13087. }
  13088. },
  13089. foot: {
  13090. height: math.unit(6 / 5 * 1.15, "feet"),
  13091. weight: math.unit(150, "lb"),
  13092. name: "Foot",
  13093. image: {
  13094. source: "./media/characters/xochitl/foot.svg"
  13095. }
  13096. },
  13097. },
  13098. [
  13099. {
  13100. name: "Macro",
  13101. height: math.unit(80, "feet")
  13102. },
  13103. {
  13104. name: "Macro+",
  13105. height: math.unit(400, "feet"),
  13106. default: true
  13107. },
  13108. {
  13109. name: "Gigamacro",
  13110. height: math.unit(80000, "miles")
  13111. },
  13112. {
  13113. name: "Gigamacro+",
  13114. height: math.unit(400000, "miles")
  13115. },
  13116. {
  13117. name: "Teramacro",
  13118. height: math.unit(300, "AU")
  13119. },
  13120. ]
  13121. ))
  13122. characterMakers.push(() => makeCharacter(
  13123. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13124. {
  13125. front: {
  13126. height: math.unit(6, "feet"),
  13127. weight: math.unit(150, "lb"),
  13128. name: "Front",
  13129. image: {
  13130. source: "./media/characters/vincent/front.svg",
  13131. extra: 1130 / 1080,
  13132. bottom: 0.055
  13133. }
  13134. },
  13135. beak: {
  13136. height: math.unit(6 * 0.1, "feet"),
  13137. name: "Beak",
  13138. image: {
  13139. source: "./media/characters/vincent/beak.svg"
  13140. }
  13141. },
  13142. hand: {
  13143. height: math.unit(6 * 0.85, "feet"),
  13144. weight: math.unit(150, "lb"),
  13145. name: "Hand",
  13146. image: {
  13147. source: "./media/characters/vincent/hand.svg"
  13148. }
  13149. },
  13150. foot: {
  13151. height: math.unit(6 * 0.19, "feet"),
  13152. weight: math.unit(150, "lb"),
  13153. name: "Foot",
  13154. image: {
  13155. source: "./media/characters/vincent/foot.svg"
  13156. }
  13157. },
  13158. },
  13159. [
  13160. {
  13161. name: "Base",
  13162. height: math.unit(6 + 5 / 12, "feet"),
  13163. default: true
  13164. },
  13165. {
  13166. name: "Macro",
  13167. height: math.unit(300, "feet")
  13168. },
  13169. {
  13170. name: "Megamacro",
  13171. height: math.unit(2, "miles")
  13172. },
  13173. {
  13174. name: "Gigamacro",
  13175. height: math.unit(1000, "miles")
  13176. },
  13177. ]
  13178. ))
  13179. characterMakers.push(() => makeCharacter(
  13180. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  13181. {
  13182. front: {
  13183. height: math.unit(6 + 2 / 12, "feet"),
  13184. weight: math.unit(265, "lb"),
  13185. name: "Front",
  13186. image: {
  13187. source: "./media/characters/jay/front.svg",
  13188. extra: 1510 / 1430,
  13189. bottom: 0.042
  13190. }
  13191. },
  13192. back: {
  13193. height: math.unit(6 + 2 / 12, "feet"),
  13194. weight: math.unit(265, "lb"),
  13195. name: "Back",
  13196. image: {
  13197. source: "./media/characters/jay/back.svg",
  13198. extra: 1510 / 1430,
  13199. bottom: 0.025
  13200. }
  13201. },
  13202. clothed: {
  13203. height: math.unit(6 + 2 / 12, "feet"),
  13204. weight: math.unit(265, "lb"),
  13205. name: "Front (Clothed)",
  13206. image: {
  13207. source: "./media/characters/jay/clothed.svg",
  13208. extra: 744 / 699,
  13209. bottom: 0.043
  13210. }
  13211. },
  13212. head: {
  13213. height: math.unit(1.772, "feet"),
  13214. name: "Head",
  13215. image: {
  13216. source: "./media/characters/jay/head.svg"
  13217. }
  13218. },
  13219. sizeRay: {
  13220. height: math.unit(1.331, "feet"),
  13221. name: "Size Ray",
  13222. image: {
  13223. source: "./media/characters/jay/size-ray.svg"
  13224. }
  13225. },
  13226. },
  13227. [
  13228. {
  13229. name: "Micro",
  13230. height: math.unit(1, "inch")
  13231. },
  13232. {
  13233. name: "Normal",
  13234. height: math.unit(6 + 2 / 12, "feet"),
  13235. default: true
  13236. },
  13237. {
  13238. name: "Macro",
  13239. height: math.unit(1, "mile")
  13240. },
  13241. {
  13242. name: "Megamacro",
  13243. height: math.unit(100, "miles")
  13244. },
  13245. ]
  13246. ))
  13247. characterMakers.push(() => makeCharacter(
  13248. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13249. {
  13250. front: {
  13251. height: math.unit(2, "meters"),
  13252. weight: math.unit(500, "kg"),
  13253. name: "Front",
  13254. image: {
  13255. source: "./media/characters/coatl/front.svg",
  13256. extra: 3948 / 3500,
  13257. bottom: 0.082
  13258. }
  13259. },
  13260. },
  13261. [
  13262. {
  13263. name: "Normal",
  13264. height: math.unit(4, "meters")
  13265. },
  13266. {
  13267. name: "Macro",
  13268. height: math.unit(100, "meters"),
  13269. default: true
  13270. },
  13271. {
  13272. name: "Macro+",
  13273. height: math.unit(300, "meters")
  13274. },
  13275. {
  13276. name: "Megamacro",
  13277. height: math.unit(3, "gigameters")
  13278. },
  13279. {
  13280. name: "Megamacro+",
  13281. height: math.unit(300, "terameters")
  13282. },
  13283. {
  13284. name: "Megamacro++",
  13285. height: math.unit(3, "lightyears")
  13286. },
  13287. ]
  13288. ))
  13289. characterMakers.push(() => makeCharacter(
  13290. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13291. {
  13292. front: {
  13293. height: math.unit(6, "feet"),
  13294. weight: math.unit(50, "kg"),
  13295. name: "front",
  13296. image: {
  13297. source: "./media/characters/shiroryu/front.svg",
  13298. extra: 1990 / 1935
  13299. }
  13300. },
  13301. },
  13302. [
  13303. {
  13304. name: "Mortal Mingling",
  13305. height: math.unit(3, "meters")
  13306. },
  13307. {
  13308. name: "Kaiju-ish",
  13309. height: math.unit(250, "meters")
  13310. },
  13311. {
  13312. name: "Somewhat Godly",
  13313. height: math.unit(400, "km"),
  13314. default: true
  13315. },
  13316. {
  13317. name: "Planetary",
  13318. height: math.unit(300, "megameters")
  13319. },
  13320. {
  13321. name: "Galaxy-dwarfing",
  13322. height: math.unit(450, "kiloparsecs")
  13323. },
  13324. {
  13325. name: "Universe Eater",
  13326. height: math.unit(150, "gigaparsecs")
  13327. },
  13328. {
  13329. name: "Almost Immeasurable",
  13330. height: math.unit(1.3e266, "yottaparsecs")
  13331. },
  13332. ]
  13333. ))
  13334. characterMakers.push(() => makeCharacter(
  13335. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13336. {
  13337. front: {
  13338. height: math.unit(6, "feet"),
  13339. weight: math.unit(150, "lb"),
  13340. name: "Front",
  13341. image: {
  13342. source: "./media/characters/umeko/front.svg",
  13343. extra: 1,
  13344. bottom: 0.019
  13345. }
  13346. },
  13347. frontArmored: {
  13348. height: math.unit(6, "feet"),
  13349. weight: math.unit(150, "lb"),
  13350. name: "Front (Armored)",
  13351. image: {
  13352. source: "./media/characters/umeko/front-armored.svg",
  13353. extra: 1,
  13354. bottom: 0.021
  13355. }
  13356. },
  13357. },
  13358. [
  13359. {
  13360. name: "Macro",
  13361. height: math.unit(220, "feet"),
  13362. default: true
  13363. },
  13364. {
  13365. name: "Guardian Dragon",
  13366. height: math.unit(50, "miles")
  13367. },
  13368. {
  13369. name: "Cosmic",
  13370. height: math.unit(800000, "miles")
  13371. },
  13372. ]
  13373. ))
  13374. characterMakers.push(() => makeCharacter(
  13375. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13376. {
  13377. front: {
  13378. height: math.unit(6, "feet"),
  13379. weight: math.unit(150, "lb"),
  13380. name: "Front",
  13381. image: {
  13382. source: "./media/characters/cassidy/front.svg",
  13383. extra: 1,
  13384. bottom: 0.043
  13385. }
  13386. },
  13387. },
  13388. [
  13389. {
  13390. name: "Canon Height",
  13391. height: math.unit(120, "feet"),
  13392. default: true
  13393. },
  13394. {
  13395. name: "Macro+",
  13396. height: math.unit(400, "feet")
  13397. },
  13398. {
  13399. name: "Macro++",
  13400. height: math.unit(4000, "feet")
  13401. },
  13402. {
  13403. name: "Megamacro",
  13404. height: math.unit(3, "miles")
  13405. },
  13406. ]
  13407. ))
  13408. characterMakers.push(() => makeCharacter(
  13409. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13410. {
  13411. front: {
  13412. height: math.unit(6, "feet"),
  13413. weight: math.unit(150, "lb"),
  13414. name: "Front",
  13415. image: {
  13416. source: "./media/characters/isaac/front.svg",
  13417. extra: 896 / 815,
  13418. bottom: 0.11
  13419. }
  13420. },
  13421. },
  13422. [
  13423. {
  13424. name: "Human Size",
  13425. height: math.unit(8, "feet"),
  13426. default: true
  13427. },
  13428. {
  13429. name: "Macro",
  13430. height: math.unit(400, "feet")
  13431. },
  13432. {
  13433. name: "Megamacro",
  13434. height: math.unit(50, "miles")
  13435. },
  13436. {
  13437. name: "Canon Height",
  13438. height: math.unit(200, "AU")
  13439. },
  13440. ]
  13441. ))
  13442. characterMakers.push(() => makeCharacter(
  13443. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13444. {
  13445. front: {
  13446. height: math.unit(6, "feet"),
  13447. weight: math.unit(72, "kg"),
  13448. name: "Front",
  13449. image: {
  13450. source: "./media/characters/sleekit/front.svg",
  13451. extra: 4693 / 4487,
  13452. bottom: 0.012
  13453. }
  13454. },
  13455. },
  13456. [
  13457. {
  13458. name: "Minimum Height",
  13459. height: math.unit(10, "meters")
  13460. },
  13461. {
  13462. name: "Smaller",
  13463. height: math.unit(25, "meters")
  13464. },
  13465. {
  13466. name: "Larger",
  13467. height: math.unit(38, "meters"),
  13468. default: true
  13469. },
  13470. {
  13471. name: "Maximum height",
  13472. height: math.unit(100, "meters")
  13473. },
  13474. ]
  13475. ))
  13476. characterMakers.push(() => makeCharacter(
  13477. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13478. {
  13479. front: {
  13480. height: math.unit(6, "feet"),
  13481. weight: math.unit(150, "lb"),
  13482. name: "Front",
  13483. image: {
  13484. source: "./media/characters/nillia/front.svg",
  13485. extra: 2195 / 2037,
  13486. bottom: 0.005
  13487. }
  13488. },
  13489. back: {
  13490. height: math.unit(6, "feet"),
  13491. weight: math.unit(150, "lb"),
  13492. name: "Back",
  13493. image: {
  13494. source: "./media/characters/nillia/back.svg",
  13495. extra: 2195 / 2037,
  13496. bottom: 0.005
  13497. }
  13498. },
  13499. },
  13500. [
  13501. {
  13502. name: "Canon Height",
  13503. height: math.unit(489, "feet"),
  13504. default: true
  13505. }
  13506. ]
  13507. ))
  13508. characterMakers.push(() => makeCharacter(
  13509. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13510. {
  13511. front: {
  13512. height: math.unit(6, "feet"),
  13513. weight: math.unit(150, "lb"),
  13514. name: "Front",
  13515. image: {
  13516. source: "./media/characters/mesmyriza/front.svg",
  13517. extra: 2067 / 1784,
  13518. bottom: 0.035
  13519. }
  13520. },
  13521. foot: {
  13522. height: math.unit(6 / (250 / 35), "feet"),
  13523. name: "Foot",
  13524. image: {
  13525. source: "./media/characters/mesmyriza/foot.svg"
  13526. }
  13527. },
  13528. },
  13529. [
  13530. {
  13531. name: "Macro",
  13532. height: math.unit(457, "meters"),
  13533. default: true
  13534. },
  13535. {
  13536. name: "Megamacro",
  13537. height: math.unit(8, "megameters")
  13538. },
  13539. ]
  13540. ))
  13541. characterMakers.push(() => makeCharacter(
  13542. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13543. {
  13544. front: {
  13545. height: math.unit(6, "feet"),
  13546. weight: math.unit(250, "lb"),
  13547. name: "Front",
  13548. image: {
  13549. source: "./media/characters/saudade/front.svg",
  13550. extra: 1172 / 1139,
  13551. bottom: 0.035
  13552. }
  13553. },
  13554. },
  13555. [
  13556. {
  13557. name: "Micro",
  13558. height: math.unit(3, "inches")
  13559. },
  13560. {
  13561. name: "Normal",
  13562. height: math.unit(6, "feet"),
  13563. default: true
  13564. },
  13565. {
  13566. name: "Macro",
  13567. height: math.unit(50, "feet")
  13568. },
  13569. {
  13570. name: "Megamacro",
  13571. height: math.unit(2800, "feet")
  13572. },
  13573. ]
  13574. ))
  13575. characterMakers.push(() => makeCharacter(
  13576. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13577. {
  13578. front: {
  13579. height: math.unit(5 + 4 / 12, "feet"),
  13580. weight: math.unit(100, "lb"),
  13581. name: "Front",
  13582. image: {
  13583. source: "./media/characters/keireer/front.svg",
  13584. extra: 716 / 666,
  13585. bottom: 0.05
  13586. }
  13587. },
  13588. },
  13589. [
  13590. {
  13591. name: "Normal",
  13592. height: math.unit(5 + 4 / 12, "feet"),
  13593. default: true
  13594. },
  13595. ]
  13596. ))
  13597. characterMakers.push(() => makeCharacter(
  13598. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13599. {
  13600. front: {
  13601. height: math.unit(6, "feet"),
  13602. weight: math.unit(90, "kg"),
  13603. name: "Front",
  13604. image: {
  13605. source: "./media/characters/mirja/front.svg",
  13606. extra: 1789 / 1683,
  13607. bottom: 0.05
  13608. }
  13609. },
  13610. frontDressed: {
  13611. height: math.unit(6, "feet"),
  13612. weight: math.unit(90, "lb"),
  13613. name: "Front (Dressed)",
  13614. image: {
  13615. source: "./media/characters/mirja/front-dressed.svg",
  13616. extra: 1789 / 1683,
  13617. bottom: 0.05
  13618. }
  13619. },
  13620. back: {
  13621. height: math.unit(6, "feet"),
  13622. weight: math.unit(90, "lb"),
  13623. name: "Back",
  13624. image: {
  13625. source: "./media/characters/mirja/back.svg",
  13626. extra: 953 / 917,
  13627. bottom: 0.017
  13628. }
  13629. },
  13630. },
  13631. [
  13632. {
  13633. name: "\"Incognito\"",
  13634. height: math.unit(3, "meters")
  13635. },
  13636. {
  13637. name: "Strolling Size",
  13638. height: math.unit(15, "km")
  13639. },
  13640. {
  13641. name: "Larger Strolling Size",
  13642. height: math.unit(400, "km")
  13643. },
  13644. {
  13645. name: "Preferred Size",
  13646. height: math.unit(5000, "km")
  13647. },
  13648. {
  13649. name: "True Size",
  13650. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13651. default: true
  13652. },
  13653. ]
  13654. ))
  13655. characterMakers.push(() => makeCharacter(
  13656. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13657. {
  13658. front: {
  13659. height: math.unit(15, "feet"),
  13660. weight: math.unit(880, "kg"),
  13661. name: "Front",
  13662. image: {
  13663. source: "./media/characters/nightraver/front.svg",
  13664. extra: 2444 / 2160,
  13665. bottom: 0.027
  13666. }
  13667. },
  13668. back: {
  13669. height: math.unit(15, "feet"),
  13670. weight: math.unit(880, "kg"),
  13671. name: "Back",
  13672. image: {
  13673. source: "./media/characters/nightraver/back.svg",
  13674. extra: 2309 / 2180,
  13675. bottom: 0.005
  13676. }
  13677. },
  13678. sole: {
  13679. height: math.unit(2.878, "feet"),
  13680. name: "Sole",
  13681. image: {
  13682. source: "./media/characters/nightraver/sole.svg"
  13683. }
  13684. },
  13685. foot: {
  13686. height: math.unit(2.285, "feet"),
  13687. name: "Foot",
  13688. image: {
  13689. source: "./media/characters/nightraver/foot.svg"
  13690. }
  13691. },
  13692. maw: {
  13693. height: math.unit(2.67, "feet"),
  13694. name: "Maw",
  13695. image: {
  13696. source: "./media/characters/nightraver/maw.svg"
  13697. }
  13698. },
  13699. },
  13700. [
  13701. {
  13702. name: "Micro",
  13703. height: math.unit(1, "cm")
  13704. },
  13705. {
  13706. name: "Normal",
  13707. height: math.unit(15, "feet"),
  13708. default: true
  13709. },
  13710. {
  13711. name: "Macro",
  13712. height: math.unit(300, "feet")
  13713. },
  13714. {
  13715. name: "Megamacro",
  13716. height: math.unit(300, "miles")
  13717. },
  13718. {
  13719. name: "Gigamacro",
  13720. height: math.unit(10000, "miles")
  13721. },
  13722. ]
  13723. ))
  13724. characterMakers.push(() => makeCharacter(
  13725. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13726. {
  13727. side: {
  13728. height: math.unit(2, "inches"),
  13729. weight: math.unit(5, "grams"),
  13730. name: "Side",
  13731. image: {
  13732. source: "./media/characters/arc/side.svg"
  13733. }
  13734. },
  13735. },
  13736. [
  13737. {
  13738. name: "Micro",
  13739. height: math.unit(2, "inches"),
  13740. default: true
  13741. },
  13742. ]
  13743. ))
  13744. characterMakers.push(() => makeCharacter(
  13745. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13746. {
  13747. front: {
  13748. height: math.unit(1.1938, "meters"),
  13749. weight: math.unit(54, "kg"),
  13750. name: "Front",
  13751. image: {
  13752. source: "./media/characters/nebula-shahar/front.svg",
  13753. extra: 1642 / 1436,
  13754. bottom: 0.06
  13755. }
  13756. },
  13757. },
  13758. [
  13759. {
  13760. name: "Megamicro",
  13761. height: math.unit(0.3, "mm")
  13762. },
  13763. {
  13764. name: "Micro",
  13765. height: math.unit(3, "cm")
  13766. },
  13767. {
  13768. name: "Normal",
  13769. height: math.unit(138, "cm"),
  13770. default: true
  13771. },
  13772. {
  13773. name: "Macro",
  13774. height: math.unit(30, "m")
  13775. },
  13776. ]
  13777. ))
  13778. characterMakers.push(() => makeCharacter(
  13779. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13780. {
  13781. front: {
  13782. height: math.unit(5.24, "feet"),
  13783. weight: math.unit(150, "lb"),
  13784. name: "Front",
  13785. image: {
  13786. source: "./media/characters/shayla/front.svg",
  13787. extra: 1512 / 1414,
  13788. bottom: 0.01
  13789. }
  13790. },
  13791. back: {
  13792. height: math.unit(5.24, "feet"),
  13793. weight: math.unit(150, "lb"),
  13794. name: "Back",
  13795. image: {
  13796. source: "./media/characters/shayla/back.svg",
  13797. extra: 1512 / 1414
  13798. }
  13799. },
  13800. hand: {
  13801. height: math.unit(0.7781496062992126, "feet"),
  13802. name: "Hand",
  13803. image: {
  13804. source: "./media/characters/shayla/hand.svg"
  13805. }
  13806. },
  13807. foot: {
  13808. height: math.unit(1.4206036745406823, "feet"),
  13809. name: "Foot",
  13810. image: {
  13811. source: "./media/characters/shayla/foot.svg"
  13812. }
  13813. },
  13814. },
  13815. [
  13816. {
  13817. name: "Micro",
  13818. height: math.unit(0.32, "feet")
  13819. },
  13820. {
  13821. name: "Normal",
  13822. height: math.unit(5.24, "feet"),
  13823. default: true
  13824. },
  13825. {
  13826. name: "Macro",
  13827. height: math.unit(492.12, "feet")
  13828. },
  13829. {
  13830. name: "Megamacro",
  13831. height: math.unit(186.41, "miles")
  13832. },
  13833. ]
  13834. ))
  13835. characterMakers.push(() => makeCharacter(
  13836. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13837. {
  13838. front: {
  13839. height: math.unit(2.2, "m"),
  13840. weight: math.unit(120, "kg"),
  13841. name: "Front",
  13842. image: {
  13843. source: "./media/characters/pia-jr/front.svg",
  13844. extra: 1000 / 970,
  13845. bottom: 0.035
  13846. }
  13847. },
  13848. hand: {
  13849. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13850. name: "Hand",
  13851. image: {
  13852. source: "./media/characters/pia-jr/hand.svg"
  13853. }
  13854. },
  13855. paw: {
  13856. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13857. name: "Paw",
  13858. image: {
  13859. source: "./media/characters/pia-jr/paw.svg"
  13860. }
  13861. },
  13862. },
  13863. [
  13864. {
  13865. name: "Micro",
  13866. height: math.unit(1.2, "cm")
  13867. },
  13868. {
  13869. name: "Normal",
  13870. height: math.unit(2.2, "m"),
  13871. default: true
  13872. },
  13873. {
  13874. name: "Macro",
  13875. height: math.unit(180, "m")
  13876. },
  13877. {
  13878. name: "Megamacro",
  13879. height: math.unit(420, "km")
  13880. },
  13881. ]
  13882. ))
  13883. characterMakers.push(() => makeCharacter(
  13884. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13885. {
  13886. front: {
  13887. height: math.unit(2, "m"),
  13888. weight: math.unit(115, "kg"),
  13889. name: "Front",
  13890. image: {
  13891. source: "./media/characters/pia-sr/front.svg",
  13892. extra: 760 / 730,
  13893. bottom: 0.015
  13894. }
  13895. },
  13896. back: {
  13897. height: math.unit(2, "m"),
  13898. weight: math.unit(115, "kg"),
  13899. name: "Back",
  13900. image: {
  13901. source: "./media/characters/pia-sr/back.svg",
  13902. extra: 760 / 730,
  13903. bottom: 0.01
  13904. }
  13905. },
  13906. hand: {
  13907. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13908. name: "Hand",
  13909. image: {
  13910. source: "./media/characters/pia-sr/hand.svg"
  13911. }
  13912. },
  13913. foot: {
  13914. height: math.unit(1.83, "feet"),
  13915. name: "Foot",
  13916. image: {
  13917. source: "./media/characters/pia-sr/foot.svg"
  13918. }
  13919. },
  13920. },
  13921. [
  13922. {
  13923. name: "Micro",
  13924. height: math.unit(88, "mm")
  13925. },
  13926. {
  13927. name: "Normal",
  13928. height: math.unit(2, "m"),
  13929. default: true
  13930. },
  13931. {
  13932. name: "Macro",
  13933. height: math.unit(200, "m")
  13934. },
  13935. {
  13936. name: "Megamacro",
  13937. height: math.unit(420, "km")
  13938. },
  13939. ]
  13940. ))
  13941. characterMakers.push(() => makeCharacter(
  13942. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13943. {
  13944. front: {
  13945. height: math.unit(8 + 2 / 12, "feet"),
  13946. weight: math.unit(300, "lb"),
  13947. name: "Front",
  13948. image: {
  13949. source: "./media/characters/kibibyte/front.svg",
  13950. extra: 2221 / 2098,
  13951. bottom: 0.04
  13952. }
  13953. },
  13954. },
  13955. [
  13956. {
  13957. name: "Normal",
  13958. height: math.unit(8 + 2 / 12, "feet"),
  13959. default: true
  13960. },
  13961. {
  13962. name: "Socialable Macro",
  13963. height: math.unit(50, "feet")
  13964. },
  13965. {
  13966. name: "Macro",
  13967. height: math.unit(300, "feet")
  13968. },
  13969. {
  13970. name: "Megamacro",
  13971. height: math.unit(500, "miles")
  13972. },
  13973. ]
  13974. ))
  13975. characterMakers.push(() => makeCharacter(
  13976. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13977. {
  13978. front: {
  13979. height: math.unit(6, "feet"),
  13980. weight: math.unit(150, "lb"),
  13981. name: "Front",
  13982. image: {
  13983. source: "./media/characters/felix/front.svg",
  13984. extra: 762 / 722,
  13985. bottom: 0.02
  13986. }
  13987. },
  13988. frontClothed: {
  13989. height: math.unit(6, "feet"),
  13990. weight: math.unit(150, "lb"),
  13991. name: "Front (Clothed)",
  13992. image: {
  13993. source: "./media/characters/felix/front-clothed.svg",
  13994. extra: 762 / 722,
  13995. bottom: 0.02
  13996. }
  13997. },
  13998. },
  13999. [
  14000. {
  14001. name: "Normal",
  14002. height: math.unit(6 + 8 / 12, "feet"),
  14003. default: true
  14004. },
  14005. {
  14006. name: "Macro",
  14007. height: math.unit(2600, "feet")
  14008. },
  14009. {
  14010. name: "Megamacro",
  14011. height: math.unit(450, "miles")
  14012. },
  14013. ]
  14014. ))
  14015. characterMakers.push(() => makeCharacter(
  14016. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14017. {
  14018. front: {
  14019. height: math.unit(6 + 1 / 12, "feet"),
  14020. weight: math.unit(250, "lb"),
  14021. name: "Front",
  14022. image: {
  14023. source: "./media/characters/tobo/front.svg",
  14024. extra: 608 / 586,
  14025. bottom: 0.023
  14026. }
  14027. },
  14028. back: {
  14029. height: math.unit(6 + 1 / 12, "feet"),
  14030. weight: math.unit(250, "lb"),
  14031. name: "Back",
  14032. image: {
  14033. source: "./media/characters/tobo/back.svg",
  14034. extra: 608 / 586
  14035. }
  14036. },
  14037. },
  14038. [
  14039. {
  14040. name: "Nano",
  14041. height: math.unit(2, "nm")
  14042. },
  14043. {
  14044. name: "Megamicro",
  14045. height: math.unit(0.1, "mm")
  14046. },
  14047. {
  14048. name: "Micro",
  14049. height: math.unit(1, "inch"),
  14050. default: true
  14051. },
  14052. {
  14053. name: "Human-sized",
  14054. height: math.unit(6 + 1 / 12, "feet")
  14055. },
  14056. {
  14057. name: "Macro",
  14058. height: math.unit(250, "feet")
  14059. },
  14060. {
  14061. name: "Megamacro",
  14062. height: math.unit(75, "miles")
  14063. },
  14064. {
  14065. name: "Texas-sized",
  14066. height: math.unit(750, "miles")
  14067. },
  14068. {
  14069. name: "Teramacro",
  14070. height: math.unit(50000, "miles")
  14071. },
  14072. ]
  14073. ))
  14074. characterMakers.push(() => makeCharacter(
  14075. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14076. {
  14077. front: {
  14078. height: math.unit(6, "feet"),
  14079. weight: math.unit(269, "lb"),
  14080. name: "Front",
  14081. image: {
  14082. source: "./media/characters/danny-kapowsky/front.svg",
  14083. extra: 766 / 736,
  14084. bottom: 0.044
  14085. }
  14086. },
  14087. back: {
  14088. height: math.unit(6, "feet"),
  14089. weight: math.unit(269, "lb"),
  14090. name: "Back",
  14091. image: {
  14092. source: "./media/characters/danny-kapowsky/back.svg",
  14093. extra: 797 / 760,
  14094. bottom: 0.025
  14095. }
  14096. },
  14097. },
  14098. [
  14099. {
  14100. name: "Macro",
  14101. height: math.unit(150, "feet"),
  14102. default: true
  14103. },
  14104. {
  14105. name: "Macro+",
  14106. height: math.unit(200, "feet")
  14107. },
  14108. {
  14109. name: "Macro++",
  14110. height: math.unit(300, "feet")
  14111. },
  14112. {
  14113. name: "Macro+++",
  14114. height: math.unit(400, "feet")
  14115. },
  14116. ]
  14117. ))
  14118. characterMakers.push(() => makeCharacter(
  14119. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14120. {
  14121. side: {
  14122. height: math.unit(6, "feet"),
  14123. weight: math.unit(170, "lb"),
  14124. name: "Side",
  14125. image: {
  14126. source: "./media/characters/finn/side.svg",
  14127. extra: 1953 / 1807,
  14128. bottom: 0.057
  14129. }
  14130. },
  14131. },
  14132. [
  14133. {
  14134. name: "Megamacro",
  14135. height: math.unit(14445, "feet"),
  14136. default: true
  14137. },
  14138. ]
  14139. ))
  14140. characterMakers.push(() => makeCharacter(
  14141. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14142. {
  14143. front: {
  14144. height: math.unit(5 + 6 / 12, "feet"),
  14145. weight: math.unit(125, "lb"),
  14146. name: "Front",
  14147. image: {
  14148. source: "./media/characters/roy/front.svg",
  14149. extra: 1,
  14150. bottom: 0.11
  14151. }
  14152. },
  14153. },
  14154. [
  14155. {
  14156. name: "Micro",
  14157. height: math.unit(3, "inches"),
  14158. default: true
  14159. },
  14160. {
  14161. name: "Normal",
  14162. height: math.unit(5 + 6 / 12, "feet")
  14163. },
  14164. {
  14165. name: "Lesser Macro",
  14166. height: math.unit(60, "feet")
  14167. },
  14168. {
  14169. name: "Greater Macro",
  14170. height: math.unit(120, "feet")
  14171. },
  14172. ]
  14173. ))
  14174. characterMakers.push(() => makeCharacter(
  14175. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14176. {
  14177. front: {
  14178. height: math.unit(6, "feet"),
  14179. weight: math.unit(100, "lb"),
  14180. name: "Front",
  14181. image: {
  14182. source: "./media/characters/aevsivs/front.svg",
  14183. extra: 1,
  14184. bottom: 0.03
  14185. }
  14186. },
  14187. back: {
  14188. height: math.unit(6, "feet"),
  14189. weight: math.unit(100, "lb"),
  14190. name: "Back",
  14191. image: {
  14192. source: "./media/characters/aevsivs/back.svg"
  14193. }
  14194. },
  14195. },
  14196. [
  14197. {
  14198. name: "Micro",
  14199. height: math.unit(2, "inches"),
  14200. default: true
  14201. },
  14202. {
  14203. name: "Normal",
  14204. height: math.unit(5, "feet")
  14205. },
  14206. ]
  14207. ))
  14208. characterMakers.push(() => makeCharacter(
  14209. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14210. {
  14211. front: {
  14212. height: math.unit(5 + 7 / 12, "feet"),
  14213. weight: math.unit(159, "lb"),
  14214. name: "Front",
  14215. image: {
  14216. source: "./media/characters/hildegard/front.svg",
  14217. extra: 289 / 269,
  14218. bottom: 7.63 / 297.8
  14219. }
  14220. },
  14221. back: {
  14222. height: math.unit(5 + 7 / 12, "feet"),
  14223. weight: math.unit(159, "lb"),
  14224. name: "Back",
  14225. image: {
  14226. source: "./media/characters/hildegard/back.svg",
  14227. extra: 280 / 260,
  14228. bottom: 2.3 / 282
  14229. }
  14230. },
  14231. },
  14232. [
  14233. {
  14234. name: "Normal",
  14235. height: math.unit(5 + 7 / 12, "feet"),
  14236. default: true
  14237. },
  14238. ]
  14239. ))
  14240. characterMakers.push(() => makeCharacter(
  14241. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14242. {
  14243. bernard: {
  14244. height: math.unit(2 + 7 / 12, "feet"),
  14245. weight: math.unit(66, "lb"),
  14246. name: "Bernard",
  14247. rename: true,
  14248. image: {
  14249. source: "./media/characters/bernard-wilder/bernard.svg",
  14250. extra: 192 / 128,
  14251. bottom: 0.05
  14252. }
  14253. },
  14254. wilder: {
  14255. height: math.unit(5 + 8 / 12, "feet"),
  14256. weight: math.unit(143, "lb"),
  14257. name: "Wilder",
  14258. rename: true,
  14259. image: {
  14260. source: "./media/characters/bernard-wilder/wilder.svg",
  14261. extra: 361 / 312,
  14262. bottom: 0.02
  14263. }
  14264. },
  14265. },
  14266. [
  14267. {
  14268. name: "Normal",
  14269. height: math.unit(2 + 7 / 12, "feet"),
  14270. default: true
  14271. },
  14272. ]
  14273. ))
  14274. characterMakers.push(() => makeCharacter(
  14275. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14276. {
  14277. anthro: {
  14278. height: math.unit(6 + 1 / 12, "feet"),
  14279. weight: math.unit(155, "lb"),
  14280. name: "Anthro",
  14281. image: {
  14282. source: "./media/characters/hearth/anthro.svg",
  14283. extra: 260 / 250,
  14284. bottom: 0.02
  14285. }
  14286. },
  14287. feral: {
  14288. height: math.unit(3.78, "feet"),
  14289. weight: math.unit(35, "kg"),
  14290. name: "Feral",
  14291. image: {
  14292. source: "./media/characters/hearth/feral.svg",
  14293. extra: 153 / 135,
  14294. bottom: 0.03
  14295. }
  14296. },
  14297. },
  14298. [
  14299. {
  14300. name: "Normal",
  14301. height: math.unit(6 + 1 / 12, "feet"),
  14302. default: true
  14303. },
  14304. ]
  14305. ))
  14306. characterMakers.push(() => makeCharacter(
  14307. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14308. {
  14309. front: {
  14310. height: math.unit(6, "feet"),
  14311. weight: math.unit(182, "lb"),
  14312. name: "Front",
  14313. image: {
  14314. source: "./media/characters/ingrid/front.svg",
  14315. extra: 294 / 268,
  14316. bottom: 0.027
  14317. }
  14318. },
  14319. },
  14320. [
  14321. {
  14322. name: "Normal",
  14323. height: math.unit(6, "feet"),
  14324. default: true
  14325. },
  14326. ]
  14327. ))
  14328. characterMakers.push(() => makeCharacter(
  14329. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14330. {
  14331. eevee: {
  14332. height: math.unit(2 + 10 / 12, "feet"),
  14333. weight: math.unit(86, "lb"),
  14334. name: "Malgam",
  14335. image: {
  14336. source: "./media/characters/malgam/eevee.svg",
  14337. extra: 218 / 180,
  14338. bottom: 0.2
  14339. }
  14340. },
  14341. sylveon: {
  14342. height: math.unit(4, "feet"),
  14343. weight: math.unit(101, "lb"),
  14344. name: "Future Malgam",
  14345. rename: true,
  14346. image: {
  14347. source: "./media/characters/malgam/sylveon.svg",
  14348. extra: 371 / 325,
  14349. bottom: 0.015
  14350. }
  14351. },
  14352. gigantamax: {
  14353. height: math.unit(50, "feet"),
  14354. name: "Gigantamax Malgam",
  14355. rename: true,
  14356. image: {
  14357. source: "./media/characters/malgam/gigantamax.svg"
  14358. }
  14359. },
  14360. },
  14361. [
  14362. {
  14363. name: "Normal",
  14364. height: math.unit(2 + 10 / 12, "feet"),
  14365. default: true
  14366. },
  14367. ]
  14368. ))
  14369. characterMakers.push(() => makeCharacter(
  14370. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14371. {
  14372. front: {
  14373. height: math.unit(5 + 11 / 12, "feet"),
  14374. weight: math.unit(188, "lb"),
  14375. name: "Front",
  14376. image: {
  14377. source: "./media/characters/fleur/front.svg",
  14378. extra: 309 / 283,
  14379. bottom: 0.007
  14380. }
  14381. },
  14382. },
  14383. [
  14384. {
  14385. name: "Normal",
  14386. height: math.unit(5 + 11 / 12, "feet"),
  14387. default: true
  14388. },
  14389. ]
  14390. ))
  14391. characterMakers.push(() => makeCharacter(
  14392. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14393. {
  14394. front: {
  14395. height: math.unit(5 + 4 / 12, "feet"),
  14396. weight: math.unit(122, "lb"),
  14397. name: "Front",
  14398. image: {
  14399. source: "./media/characters/jude/front.svg",
  14400. extra: 288 / 273,
  14401. bottom: 0.03
  14402. }
  14403. },
  14404. },
  14405. [
  14406. {
  14407. name: "Normal",
  14408. height: math.unit(5 + 4 / 12, "feet"),
  14409. default: true
  14410. },
  14411. ]
  14412. ))
  14413. characterMakers.push(() => makeCharacter(
  14414. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14415. {
  14416. front: {
  14417. height: math.unit(5 + 11 / 12, "feet"),
  14418. weight: math.unit(190, "lb"),
  14419. name: "Front",
  14420. image: {
  14421. source: "./media/characters/seara/front.svg",
  14422. extra: 1,
  14423. bottom: 0.05
  14424. }
  14425. },
  14426. },
  14427. [
  14428. {
  14429. name: "Normal",
  14430. height: math.unit(5 + 11 / 12, "feet"),
  14431. default: true
  14432. },
  14433. ]
  14434. ))
  14435. characterMakers.push(() => makeCharacter(
  14436. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14437. {
  14438. front: {
  14439. height: math.unit(16 + 5 / 12, "feet"),
  14440. weight: math.unit(524, "lb"),
  14441. name: "Front",
  14442. image: {
  14443. source: "./media/characters/caspian/front.svg",
  14444. extra: 1,
  14445. bottom: 0.04
  14446. }
  14447. },
  14448. },
  14449. [
  14450. {
  14451. name: "Normal",
  14452. height: math.unit(16 + 5 / 12, "feet"),
  14453. default: true
  14454. },
  14455. ]
  14456. ))
  14457. characterMakers.push(() => makeCharacter(
  14458. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14459. {
  14460. front: {
  14461. height: math.unit(5 + 7 / 12, "feet"),
  14462. weight: math.unit(170, "lb"),
  14463. name: "Front",
  14464. image: {
  14465. source: "./media/characters/mika/front.svg",
  14466. extra: 1,
  14467. bottom: 0.016
  14468. }
  14469. },
  14470. },
  14471. [
  14472. {
  14473. name: "Normal",
  14474. height: math.unit(5 + 7 / 12, "feet"),
  14475. default: true
  14476. },
  14477. ]
  14478. ))
  14479. characterMakers.push(() => makeCharacter(
  14480. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14481. {
  14482. front: {
  14483. height: math.unit(6 + 2 / 12, "feet"),
  14484. weight: math.unit(268, "lb"),
  14485. name: "Front",
  14486. image: {
  14487. source: "./media/characters/sol/front.svg",
  14488. extra: 247 / 231,
  14489. bottom: 0.05
  14490. }
  14491. },
  14492. },
  14493. [
  14494. {
  14495. name: "Normal",
  14496. height: math.unit(6 + 2 / 12, "feet"),
  14497. default: true
  14498. },
  14499. ]
  14500. ))
  14501. characterMakers.push(() => makeCharacter(
  14502. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14503. {
  14504. buizel: {
  14505. height: math.unit(2 + 5 / 12, "feet"),
  14506. weight: math.unit(87, "lb"),
  14507. name: "Buizel",
  14508. image: {
  14509. source: "./media/characters/umiko/buizel.svg",
  14510. extra: 172 / 157,
  14511. bottom: 0.01
  14512. }
  14513. },
  14514. floatzel: {
  14515. height: math.unit(5 + 9 / 12, "feet"),
  14516. weight: math.unit(250, "lb"),
  14517. name: "Floatzel",
  14518. image: {
  14519. source: "./media/characters/umiko/floatzel.svg",
  14520. extra: 262 / 248
  14521. }
  14522. },
  14523. },
  14524. [
  14525. {
  14526. name: "Normal",
  14527. height: math.unit(2 + 5 / 12, "feet"),
  14528. default: true
  14529. },
  14530. ]
  14531. ))
  14532. characterMakers.push(() => makeCharacter(
  14533. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14534. {
  14535. front: {
  14536. height: math.unit(6 + 2 / 12, "feet"),
  14537. weight: math.unit(146, "lb"),
  14538. name: "Front",
  14539. image: {
  14540. source: "./media/characters/iliac/front.svg",
  14541. extra: 389 / 365,
  14542. bottom: 0.035
  14543. }
  14544. },
  14545. },
  14546. [
  14547. {
  14548. name: "Normal",
  14549. height: math.unit(6 + 2 / 12, "feet"),
  14550. default: true
  14551. },
  14552. ]
  14553. ))
  14554. characterMakers.push(() => makeCharacter(
  14555. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14556. {
  14557. front: {
  14558. height: math.unit(6, "feet"),
  14559. weight: math.unit(170, "lb"),
  14560. name: "Front",
  14561. image: {
  14562. source: "./media/characters/topaz/front.svg",
  14563. extra: 317 / 303,
  14564. bottom: 0.055
  14565. }
  14566. },
  14567. },
  14568. [
  14569. {
  14570. name: "Normal",
  14571. height: math.unit(6, "feet"),
  14572. default: true
  14573. },
  14574. ]
  14575. ))
  14576. characterMakers.push(() => makeCharacter(
  14577. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14578. {
  14579. front: {
  14580. height: math.unit(5 + 11 / 12, "feet"),
  14581. weight: math.unit(144, "lb"),
  14582. name: "Front",
  14583. image: {
  14584. source: "./media/characters/gabriel/front.svg",
  14585. extra: 285 / 262,
  14586. bottom: 0.004
  14587. }
  14588. },
  14589. },
  14590. [
  14591. {
  14592. name: "Normal",
  14593. height: math.unit(5 + 11 / 12, "feet"),
  14594. default: true
  14595. },
  14596. ]
  14597. ))
  14598. characterMakers.push(() => makeCharacter(
  14599. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14600. {
  14601. side: {
  14602. height: math.unit(6 + 5 / 12, "feet"),
  14603. weight: math.unit(300, "lb"),
  14604. name: "Side",
  14605. image: {
  14606. source: "./media/characters/tempest-suicune/side.svg",
  14607. extra: 195 / 154,
  14608. bottom: 0.04
  14609. }
  14610. },
  14611. },
  14612. [
  14613. {
  14614. name: "Normal",
  14615. height: math.unit(6 + 5 / 12, "feet"),
  14616. default: true
  14617. },
  14618. ]
  14619. ))
  14620. characterMakers.push(() => makeCharacter(
  14621. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14622. {
  14623. front: {
  14624. height: math.unit(7 + 2 / 12, "feet"),
  14625. weight: math.unit(322, "lb"),
  14626. name: "Front",
  14627. image: {
  14628. source: "./media/characters/vulcan/front.svg",
  14629. extra: 154 / 147,
  14630. bottom: 0.04
  14631. }
  14632. },
  14633. },
  14634. [
  14635. {
  14636. name: "Normal",
  14637. height: math.unit(7 + 2 / 12, "feet"),
  14638. default: true
  14639. },
  14640. ]
  14641. ))
  14642. characterMakers.push(() => makeCharacter(
  14643. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14644. {
  14645. front: {
  14646. height: math.unit(5 + 10 / 12, "feet"),
  14647. weight: math.unit(264, "lb"),
  14648. name: "Front",
  14649. image: {
  14650. source: "./media/characters/gault/front.svg",
  14651. extra: 161 / 140,
  14652. bottom: 0.028
  14653. }
  14654. },
  14655. },
  14656. [
  14657. {
  14658. name: "Normal",
  14659. height: math.unit(5 + 10 / 12, "feet"),
  14660. default: true
  14661. },
  14662. ]
  14663. ))
  14664. characterMakers.push(() => makeCharacter(
  14665. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14666. {
  14667. front: {
  14668. height: math.unit(6, "feet"),
  14669. weight: math.unit(150, "lb"),
  14670. name: "Front",
  14671. image: {
  14672. source: "./media/characters/shard/front.svg",
  14673. extra: 273 / 238,
  14674. bottom: 0.02
  14675. }
  14676. },
  14677. },
  14678. [
  14679. {
  14680. name: "Normal",
  14681. height: math.unit(3 + 6 / 12, "feet"),
  14682. default: true
  14683. },
  14684. ]
  14685. ))
  14686. characterMakers.push(() => makeCharacter(
  14687. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14688. {
  14689. front: {
  14690. height: math.unit(5 + 11 / 12, "feet"),
  14691. weight: math.unit(146, "lb"),
  14692. name: "Front",
  14693. image: {
  14694. source: "./media/characters/ashe/front.svg",
  14695. extra: 400 / 373,
  14696. bottom: 0.01
  14697. }
  14698. },
  14699. },
  14700. [
  14701. {
  14702. name: "Normal",
  14703. height: math.unit(5 + 11 / 12, "feet"),
  14704. default: true
  14705. },
  14706. ]
  14707. ))
  14708. characterMakers.push(() => makeCharacter(
  14709. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14710. {
  14711. front: {
  14712. height: math.unit(5 + 5 / 12, "feet"),
  14713. weight: math.unit(135, "lb"),
  14714. name: "Front",
  14715. image: {
  14716. source: "./media/characters/beatrix/front.svg",
  14717. extra: 392 / 379,
  14718. bottom: 0.01
  14719. }
  14720. },
  14721. },
  14722. [
  14723. {
  14724. name: "Normal",
  14725. height: math.unit(6, "feet"),
  14726. default: true
  14727. },
  14728. ]
  14729. ))
  14730. characterMakers.push(() => makeCharacter(
  14731. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14732. {
  14733. front: {
  14734. height: math.unit(6, "feet"),
  14735. weight: math.unit(150, "lb"),
  14736. name: "Front",
  14737. image: {
  14738. source: "./media/characters/ignatius/front.svg",
  14739. extra: 245 / 222,
  14740. bottom: 0.01
  14741. }
  14742. },
  14743. },
  14744. [
  14745. {
  14746. name: "Normal",
  14747. height: math.unit(5 + 5 / 12, "feet"),
  14748. default: true
  14749. },
  14750. ]
  14751. ))
  14752. characterMakers.push(() => makeCharacter(
  14753. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14754. {
  14755. front: {
  14756. height: math.unit(6 + 2 / 12, "feet"),
  14757. weight: math.unit(138, "lb"),
  14758. name: "Front",
  14759. image: {
  14760. source: "./media/characters/mei-li/front.svg",
  14761. extra: 237 / 229,
  14762. bottom: 0.03
  14763. }
  14764. },
  14765. },
  14766. [
  14767. {
  14768. name: "Normal",
  14769. height: math.unit(6 + 2 / 12, "feet"),
  14770. default: true
  14771. },
  14772. ]
  14773. ))
  14774. characterMakers.push(() => makeCharacter(
  14775. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14776. {
  14777. front: {
  14778. height: math.unit(2 + 4 / 12, "feet"),
  14779. weight: math.unit(62, "lb"),
  14780. name: "Front",
  14781. image: {
  14782. source: "./media/characters/puru/front.svg",
  14783. extra: 206 / 149,
  14784. bottom: 0.06
  14785. }
  14786. },
  14787. },
  14788. [
  14789. {
  14790. name: "Normal",
  14791. height: math.unit(2 + 4 / 12, "feet"),
  14792. default: true
  14793. },
  14794. ]
  14795. ))
  14796. characterMakers.push(() => makeCharacter(
  14797. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14798. {
  14799. taur: {
  14800. height: math.unit(11, "feet"),
  14801. weight: math.unit(500, "lb"),
  14802. name: "Taur",
  14803. image: {
  14804. source: "./media/characters/kee/taur.svg",
  14805. extra: 1,
  14806. bottom: 0.04
  14807. }
  14808. },
  14809. },
  14810. [
  14811. {
  14812. name: "Normal",
  14813. height: math.unit(11, "feet"),
  14814. default: true
  14815. },
  14816. ]
  14817. ))
  14818. characterMakers.push(() => makeCharacter(
  14819. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14820. {
  14821. anthro: {
  14822. height: math.unit(7, "feet"),
  14823. weight: math.unit(190, "lb"),
  14824. name: "Anthro",
  14825. image: {
  14826. source: "./media/characters/cobalt-dracha/anthro.svg",
  14827. extra: 231 / 225,
  14828. bottom: 0.04
  14829. }
  14830. },
  14831. feral: {
  14832. height: math.unit(9 + 7 / 12, "feet"),
  14833. weight: math.unit(294, "lb"),
  14834. name: "Feral",
  14835. image: {
  14836. source: "./media/characters/cobalt-dracha/feral.svg",
  14837. extra: 692 / 633,
  14838. bottom: 0.05
  14839. }
  14840. },
  14841. },
  14842. [
  14843. {
  14844. name: "Normal",
  14845. height: math.unit(7, "feet"),
  14846. default: true
  14847. },
  14848. ]
  14849. ))
  14850. characterMakers.push(() => makeCharacter(
  14851. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14852. {
  14853. fallen: {
  14854. height: math.unit(11 + 8 / 12, "feet"),
  14855. weight: math.unit(485, "lb"),
  14856. name: "Java (Fallen)",
  14857. rename: true,
  14858. image: {
  14859. source: "./media/characters/java/fallen.svg",
  14860. extra: 226 / 208,
  14861. bottom: 0.005
  14862. }
  14863. },
  14864. godkin: {
  14865. height: math.unit(10 + 6 / 12, "feet"),
  14866. weight: math.unit(328, "lb"),
  14867. name: "Java (Godkin)",
  14868. rename: true,
  14869. image: {
  14870. source: "./media/characters/java/godkin.svg",
  14871. extra: 270 / 262,
  14872. bottom: 0.02
  14873. }
  14874. },
  14875. },
  14876. [
  14877. {
  14878. name: "Normal",
  14879. height: math.unit(11 + 8 / 12, "feet"),
  14880. default: true
  14881. },
  14882. ]
  14883. ))
  14884. characterMakers.push(() => makeCharacter(
  14885. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14886. {
  14887. front: {
  14888. height: math.unit(7 + 8 / 12, "feet"),
  14889. weight: math.unit(320, "lb"),
  14890. name: "Front",
  14891. image: {
  14892. source: "./media/characters/skoll/front.svg",
  14893. extra: 232 / 220,
  14894. bottom: 0.02
  14895. }
  14896. },
  14897. },
  14898. [
  14899. {
  14900. name: "Normal",
  14901. height: math.unit(7 + 8 / 12, "feet"),
  14902. default: true
  14903. },
  14904. ]
  14905. ))
  14906. characterMakers.push(() => makeCharacter(
  14907. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14908. {
  14909. front: {
  14910. height: math.unit(5 + 9 / 12, "feet"),
  14911. weight: math.unit(170, "lb"),
  14912. name: "Front",
  14913. image: {
  14914. source: "./media/characters/purna/front.svg",
  14915. extra: 239 / 229,
  14916. bottom: 0.01
  14917. }
  14918. },
  14919. },
  14920. [
  14921. {
  14922. name: "Normal",
  14923. height: math.unit(5 + 9 / 12, "feet"),
  14924. default: true
  14925. },
  14926. ]
  14927. ))
  14928. characterMakers.push(() => makeCharacter(
  14929. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14930. {
  14931. front: {
  14932. height: math.unit(5 + 9 / 12, "feet"),
  14933. weight: math.unit(142, "lb"),
  14934. name: "Front",
  14935. image: {
  14936. source: "./media/characters/kuva/front.svg",
  14937. extra: 281 / 271,
  14938. bottom: 0.006
  14939. }
  14940. },
  14941. },
  14942. [
  14943. {
  14944. name: "Normal",
  14945. height: math.unit(5 + 9 / 12, "feet"),
  14946. default: true
  14947. },
  14948. ]
  14949. ))
  14950. characterMakers.push(() => makeCharacter(
  14951. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14952. {
  14953. anthro: {
  14954. height: math.unit(9 + 2 / 12, "feet"),
  14955. weight: math.unit(270, "lb"),
  14956. name: "Anthro",
  14957. image: {
  14958. source: "./media/characters/embra/anthro.svg",
  14959. extra: 200 / 187,
  14960. bottom: 0.02
  14961. }
  14962. },
  14963. feral: {
  14964. height: math.unit(18 + 8 / 12, "feet"),
  14965. weight: math.unit(576, "lb"),
  14966. name: "Feral",
  14967. image: {
  14968. source: "./media/characters/embra/feral.svg",
  14969. extra: 152 / 137,
  14970. bottom: 0.037
  14971. }
  14972. },
  14973. },
  14974. [
  14975. {
  14976. name: "Normal",
  14977. height: math.unit(9 + 2 / 12, "feet"),
  14978. default: true
  14979. },
  14980. ]
  14981. ))
  14982. characterMakers.push(() => makeCharacter(
  14983. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14984. {
  14985. anthro: {
  14986. height: math.unit(10 + 9 / 12, "feet"),
  14987. weight: math.unit(224, "lb"),
  14988. name: "Anthro",
  14989. image: {
  14990. source: "./media/characters/grottos/anthro.svg",
  14991. extra: 350 / 332,
  14992. bottom: 0.045
  14993. }
  14994. },
  14995. feral: {
  14996. height: math.unit(20 + 7 / 12, "feet"),
  14997. weight: math.unit(629, "lb"),
  14998. name: "Feral",
  14999. image: {
  15000. source: "./media/characters/grottos/feral.svg",
  15001. extra: 207 / 190,
  15002. bottom: 0.05
  15003. }
  15004. },
  15005. },
  15006. [
  15007. {
  15008. name: "Normal",
  15009. height: math.unit(10 + 9 / 12, "feet"),
  15010. default: true
  15011. },
  15012. ]
  15013. ))
  15014. characterMakers.push(() => makeCharacter(
  15015. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15016. {
  15017. anthro: {
  15018. height: math.unit(9 + 6 / 12, "feet"),
  15019. weight: math.unit(298, "lb"),
  15020. name: "Anthro",
  15021. image: {
  15022. source: "./media/characters/frifna/anthro.svg",
  15023. extra: 282 / 269,
  15024. bottom: 0.015
  15025. }
  15026. },
  15027. feral: {
  15028. height: math.unit(16 + 2 / 12, "feet"),
  15029. weight: math.unit(624, "lb"),
  15030. name: "Feral",
  15031. image: {
  15032. source: "./media/characters/frifna/feral.svg"
  15033. }
  15034. },
  15035. },
  15036. [
  15037. {
  15038. name: "Normal",
  15039. height: math.unit(9 + 6 / 12, "feet"),
  15040. default: true
  15041. },
  15042. ]
  15043. ))
  15044. characterMakers.push(() => makeCharacter(
  15045. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15046. {
  15047. front: {
  15048. height: math.unit(6 + 2 / 12, "feet"),
  15049. weight: math.unit(168, "lb"),
  15050. name: "Front",
  15051. image: {
  15052. source: "./media/characters/elise/front.svg",
  15053. extra: 276 / 271
  15054. }
  15055. },
  15056. },
  15057. [
  15058. {
  15059. name: "Normal",
  15060. height: math.unit(6 + 2 / 12, "feet"),
  15061. default: true
  15062. },
  15063. ]
  15064. ))
  15065. characterMakers.push(() => makeCharacter(
  15066. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15067. {
  15068. front: {
  15069. height: math.unit(5 + 10 / 12, "feet"),
  15070. weight: math.unit(210, "lb"),
  15071. name: "Front",
  15072. image: {
  15073. source: "./media/characters/glade/front.svg",
  15074. extra: 258 / 247,
  15075. bottom: 0.008
  15076. }
  15077. },
  15078. },
  15079. [
  15080. {
  15081. name: "Normal",
  15082. height: math.unit(5 + 10 / 12, "feet"),
  15083. default: true
  15084. },
  15085. ]
  15086. ))
  15087. characterMakers.push(() => makeCharacter(
  15088. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15089. {
  15090. front: {
  15091. height: math.unit(5 + 10 / 12, "feet"),
  15092. weight: math.unit(129, "lb"),
  15093. name: "Front",
  15094. image: {
  15095. source: "./media/characters/rina/front.svg",
  15096. extra: 266 / 255,
  15097. bottom: 0.005
  15098. }
  15099. },
  15100. },
  15101. [
  15102. {
  15103. name: "Normal",
  15104. height: math.unit(5 + 10 / 12, "feet"),
  15105. default: true
  15106. },
  15107. ]
  15108. ))
  15109. characterMakers.push(() => makeCharacter(
  15110. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15111. {
  15112. front: {
  15113. height: math.unit(6 + 1 / 12, "feet"),
  15114. weight: math.unit(192, "lb"),
  15115. name: "Front",
  15116. image: {
  15117. source: "./media/characters/veronica/front.svg",
  15118. extra: 319 / 309,
  15119. bottom: 0.005
  15120. }
  15121. },
  15122. },
  15123. [
  15124. {
  15125. name: "Normal",
  15126. height: math.unit(6 + 1 / 12, "feet"),
  15127. default: true
  15128. },
  15129. ]
  15130. ))
  15131. characterMakers.push(() => makeCharacter(
  15132. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15133. {
  15134. front: {
  15135. height: math.unit(9 + 3 / 12, "feet"),
  15136. weight: math.unit(1100, "lb"),
  15137. name: "Front",
  15138. image: {
  15139. source: "./media/characters/braxton/front.svg",
  15140. extra: 1057 / 984,
  15141. bottom: 0.05
  15142. }
  15143. },
  15144. },
  15145. [
  15146. {
  15147. name: "Normal",
  15148. height: math.unit(9 + 3 / 12, "feet")
  15149. },
  15150. {
  15151. name: "Giant",
  15152. height: math.unit(300, "feet"),
  15153. default: true
  15154. },
  15155. {
  15156. name: "Macro",
  15157. height: math.unit(700, "feet")
  15158. },
  15159. {
  15160. name: "Megamacro",
  15161. height: math.unit(6000, "feet")
  15162. },
  15163. ]
  15164. ))
  15165. characterMakers.push(() => makeCharacter(
  15166. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15167. {
  15168. front: {
  15169. height: math.unit(6 + 7 / 12, "feet"),
  15170. weight: math.unit(150, "lb"),
  15171. name: "Front",
  15172. image: {
  15173. source: "./media/characters/blue-feyonics/front.svg",
  15174. extra: 1403 / 1306,
  15175. bottom: 0.047
  15176. }
  15177. },
  15178. },
  15179. [
  15180. {
  15181. name: "Normal",
  15182. height: math.unit(6 + 7 / 12, "feet"),
  15183. default: true
  15184. },
  15185. ]
  15186. ))
  15187. characterMakers.push(() => makeCharacter(
  15188. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15189. {
  15190. front: {
  15191. height: math.unit(1.8, "meters"),
  15192. weight: math.unit(60, "kg"),
  15193. name: "Front",
  15194. image: {
  15195. source: "./media/characters/maxwell/front.svg",
  15196. extra: 2060 / 1873
  15197. }
  15198. },
  15199. },
  15200. [
  15201. {
  15202. name: "Micro",
  15203. height: math.unit(1, "mm")
  15204. },
  15205. {
  15206. name: "Normal",
  15207. height: math.unit(1.8, "meter"),
  15208. default: true
  15209. },
  15210. {
  15211. name: "Macro",
  15212. height: math.unit(30, "meters")
  15213. },
  15214. {
  15215. name: "Megamacro",
  15216. height: math.unit(10, "km")
  15217. },
  15218. ]
  15219. ))
  15220. characterMakers.push(() => makeCharacter(
  15221. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15222. {
  15223. front: {
  15224. height: math.unit(6, "feet"),
  15225. weight: math.unit(150, "lb"),
  15226. name: "Front",
  15227. image: {
  15228. source: "./media/characters/jack/front.svg",
  15229. extra: 1754 / 1640,
  15230. bottom: 0.01
  15231. }
  15232. },
  15233. },
  15234. [
  15235. {
  15236. name: "Normal",
  15237. height: math.unit(80000, "feet"),
  15238. default: true
  15239. },
  15240. {
  15241. name: "Max size",
  15242. height: math.unit(10, "lightyears")
  15243. },
  15244. ]
  15245. ))
  15246. characterMakers.push(() => makeCharacter(
  15247. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15248. {
  15249. upright: {
  15250. height: math.unit(7, "feet"),
  15251. weight: math.unit(170, "lb"),
  15252. name: "Upright",
  15253. image: {
  15254. source: "./media/characters/cafat/upright.svg",
  15255. bottom: 0.01
  15256. }
  15257. },
  15258. uprightFull: {
  15259. height: math.unit(7, "feet"),
  15260. weight: math.unit(170, "lb"),
  15261. name: "Upright (Full)",
  15262. image: {
  15263. source: "./media/characters/cafat/upright-full.svg",
  15264. bottom: 0.01
  15265. }
  15266. },
  15267. side: {
  15268. height: math.unit(5, "feet"),
  15269. weight: math.unit(150, "lb"),
  15270. name: "Side",
  15271. image: {
  15272. source: "./media/characters/cafat/side.svg"
  15273. }
  15274. },
  15275. },
  15276. [
  15277. {
  15278. name: "Small",
  15279. height: math.unit(7, "feet"),
  15280. default: true
  15281. },
  15282. {
  15283. name: "Large",
  15284. height: math.unit(15.5, "feet")
  15285. },
  15286. ]
  15287. ))
  15288. characterMakers.push(() => makeCharacter(
  15289. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15290. {
  15291. front: {
  15292. height: math.unit(6, "feet"),
  15293. weight: math.unit(150, "lb"),
  15294. name: "Front",
  15295. image: {
  15296. source: "./media/characters/verin-raharra/front.svg",
  15297. extra: 5019 / 4835,
  15298. bottom: 0.023
  15299. }
  15300. },
  15301. },
  15302. [
  15303. {
  15304. name: "Normal",
  15305. height: math.unit(7 + 5 / 12, "feet"),
  15306. default: true
  15307. },
  15308. {
  15309. name: "Upsized",
  15310. height: math.unit(20, "feet")
  15311. },
  15312. ]
  15313. ))
  15314. characterMakers.push(() => makeCharacter(
  15315. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15316. {
  15317. front: {
  15318. height: math.unit(7, "feet"),
  15319. weight: math.unit(230, "lb"),
  15320. name: "Front",
  15321. image: {
  15322. source: "./media/characters/nakata/front.svg",
  15323. extra: 1.005,
  15324. bottom: 0.01
  15325. }
  15326. },
  15327. },
  15328. [
  15329. {
  15330. name: "Normal",
  15331. height: math.unit(7, "feet"),
  15332. default: true
  15333. },
  15334. {
  15335. name: "Big",
  15336. height: math.unit(14, "feet")
  15337. },
  15338. {
  15339. name: "Macro",
  15340. height: math.unit(400, "feet")
  15341. },
  15342. ]
  15343. ))
  15344. characterMakers.push(() => makeCharacter(
  15345. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15346. {
  15347. front: {
  15348. height: math.unit(4.91, "feet"),
  15349. weight: math.unit(100, "lb"),
  15350. name: "Front",
  15351. image: {
  15352. source: "./media/characters/lily/front.svg",
  15353. extra: 1585 / 1415,
  15354. bottom: 0.02
  15355. }
  15356. },
  15357. },
  15358. [
  15359. {
  15360. name: "Normal",
  15361. height: math.unit(4.91, "feet"),
  15362. default: true
  15363. },
  15364. ]
  15365. ))
  15366. characterMakers.push(() => makeCharacter(
  15367. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15368. {
  15369. laying: {
  15370. height: math.unit(4 + 4 / 12, "feet"),
  15371. weight: math.unit(600, "lb"),
  15372. name: "Laying",
  15373. image: {
  15374. source: "./media/characters/sheila/laying.svg",
  15375. extra: 1333 / 1265,
  15376. bottom: 0.16
  15377. }
  15378. },
  15379. },
  15380. [
  15381. {
  15382. name: "Normal",
  15383. height: math.unit(4 + 4 / 12, "feet"),
  15384. default: true
  15385. },
  15386. ]
  15387. ))
  15388. characterMakers.push(() => makeCharacter(
  15389. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15390. {
  15391. front: {
  15392. height: math.unit(6, "feet"),
  15393. weight: math.unit(190, "lb"),
  15394. name: "Front",
  15395. image: {
  15396. source: "./media/characters/sax/front.svg",
  15397. extra: 1187 / 973,
  15398. bottom: 0.042
  15399. }
  15400. },
  15401. },
  15402. [
  15403. {
  15404. name: "Micro",
  15405. height: math.unit(4, "inches"),
  15406. default: true
  15407. },
  15408. ]
  15409. ))
  15410. characterMakers.push(() => makeCharacter(
  15411. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15412. {
  15413. front: {
  15414. height: math.unit(6, "feet"),
  15415. weight: math.unit(150, "lb"),
  15416. name: "Front",
  15417. image: {
  15418. source: "./media/characters/pandora/front.svg",
  15419. extra: 2720 / 2556,
  15420. bottom: 0.015
  15421. }
  15422. },
  15423. back: {
  15424. height: math.unit(6, "feet"),
  15425. weight: math.unit(150, "lb"),
  15426. name: "Back",
  15427. image: {
  15428. source: "./media/characters/pandora/back.svg",
  15429. extra: 2720 / 2556,
  15430. bottom: 0.01
  15431. }
  15432. },
  15433. beans: {
  15434. height: math.unit(6 / 8, "feet"),
  15435. name: "Beans",
  15436. image: {
  15437. source: "./media/characters/pandora/beans.svg"
  15438. }
  15439. },
  15440. skirt: {
  15441. height: math.unit(6, "feet"),
  15442. weight: math.unit(150, "lb"),
  15443. name: "Skirt",
  15444. image: {
  15445. source: "./media/characters/pandora/skirt.svg",
  15446. extra: 1622 / 1525,
  15447. bottom: 0.015
  15448. }
  15449. },
  15450. hoodie: {
  15451. height: math.unit(6, "feet"),
  15452. weight: math.unit(150, "lb"),
  15453. name: "Hoodie",
  15454. image: {
  15455. source: "./media/characters/pandora/hoodie.svg",
  15456. extra: 1622 / 1525,
  15457. bottom: 0.015
  15458. }
  15459. },
  15460. casual: {
  15461. height: math.unit(6, "feet"),
  15462. weight: math.unit(150, "lb"),
  15463. name: "Casual",
  15464. image: {
  15465. source: "./media/characters/pandora/casual.svg",
  15466. extra: 1622 / 1525,
  15467. bottom: 0.015
  15468. }
  15469. },
  15470. },
  15471. [
  15472. {
  15473. name: "Normal",
  15474. height: math.unit(6, "feet")
  15475. },
  15476. {
  15477. name: "Big Steppy",
  15478. height: math.unit(1, "km"),
  15479. default: true
  15480. },
  15481. ]
  15482. ))
  15483. characterMakers.push(() => makeCharacter(
  15484. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15485. {
  15486. side: {
  15487. height: math.unit(10, "feet"),
  15488. weight: math.unit(800, "kg"),
  15489. name: "Side",
  15490. image: {
  15491. source: "./media/characters/venio-darcony/side.svg",
  15492. extra: 1373 / 1003,
  15493. bottom: 0.037
  15494. }
  15495. },
  15496. front: {
  15497. height: math.unit(19, "feet"),
  15498. weight: math.unit(800, "kg"),
  15499. name: "Front",
  15500. image: {
  15501. source: "./media/characters/venio-darcony/front.svg"
  15502. }
  15503. },
  15504. back: {
  15505. height: math.unit(19, "feet"),
  15506. weight: math.unit(800, "kg"),
  15507. name: "Back",
  15508. image: {
  15509. source: "./media/characters/venio-darcony/back.svg"
  15510. }
  15511. },
  15512. sideNsfw: {
  15513. height: math.unit(10, "feet"),
  15514. weight: math.unit(800, "kg"),
  15515. name: "Side (NSFW)",
  15516. image: {
  15517. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15518. extra: 1373 / 1003,
  15519. bottom: 0.037
  15520. }
  15521. },
  15522. frontNsfw: {
  15523. height: math.unit(19, "feet"),
  15524. weight: math.unit(800, "kg"),
  15525. name: "Front (NSFW)",
  15526. image: {
  15527. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15528. }
  15529. },
  15530. backNsfw: {
  15531. height: math.unit(19, "feet"),
  15532. weight: math.unit(800, "kg"),
  15533. name: "Back (NSFW)",
  15534. image: {
  15535. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15536. }
  15537. },
  15538. sideArmored: {
  15539. height: math.unit(10, "feet"),
  15540. weight: math.unit(800, "kg"),
  15541. name: "Side (Armored)",
  15542. image: {
  15543. source: "./media/characters/venio-darcony/side-armored.svg",
  15544. extra: 1373 / 1003,
  15545. bottom: 0.037
  15546. }
  15547. },
  15548. frontArmored: {
  15549. height: math.unit(19, "feet"),
  15550. weight: math.unit(900, "kg"),
  15551. name: "Front (Armored)",
  15552. image: {
  15553. source: "./media/characters/venio-darcony/front-armored.svg"
  15554. }
  15555. },
  15556. backArmored: {
  15557. height: math.unit(19, "feet"),
  15558. weight: math.unit(900, "kg"),
  15559. name: "Back (Armored)",
  15560. image: {
  15561. source: "./media/characters/venio-darcony/back-armored.svg"
  15562. }
  15563. },
  15564. sword: {
  15565. height: math.unit(10, "feet"),
  15566. weight: math.unit(50, "lb"),
  15567. name: "Sword",
  15568. image: {
  15569. source: "./media/characters/venio-darcony/sword.svg"
  15570. }
  15571. },
  15572. },
  15573. [
  15574. {
  15575. name: "Normal",
  15576. height: math.unit(10, "feet")
  15577. },
  15578. {
  15579. name: "Macro",
  15580. height: math.unit(130, "feet"),
  15581. default: true
  15582. },
  15583. {
  15584. name: "Macro+",
  15585. height: math.unit(240, "feet")
  15586. },
  15587. ]
  15588. ))
  15589. characterMakers.push(() => makeCharacter(
  15590. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15591. {
  15592. front: {
  15593. height: math.unit(6, "feet"),
  15594. weight: math.unit(150, "lb"),
  15595. name: "Front",
  15596. image: {
  15597. source: "./media/characters/veski/front.svg",
  15598. extra: 1299 / 1225,
  15599. bottom: 0.04
  15600. }
  15601. },
  15602. back: {
  15603. height: math.unit(6, "feet"),
  15604. weight: math.unit(150, "lb"),
  15605. name: "Back",
  15606. image: {
  15607. source: "./media/characters/veski/back.svg",
  15608. extra: 1299 / 1225,
  15609. bottom: 0.008
  15610. }
  15611. },
  15612. maw: {
  15613. height: math.unit(1.5 * 1.21, "feet"),
  15614. name: "Maw",
  15615. image: {
  15616. source: "./media/characters/veski/maw.svg"
  15617. }
  15618. },
  15619. },
  15620. [
  15621. {
  15622. name: "Macro",
  15623. height: math.unit(2, "km"),
  15624. default: true
  15625. },
  15626. ]
  15627. ))
  15628. characterMakers.push(() => makeCharacter(
  15629. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15630. {
  15631. front: {
  15632. height: math.unit(5 + 7 / 12, "feet"),
  15633. name: "Front",
  15634. image: {
  15635. source: "./media/characters/isabelle/front.svg",
  15636. extra: 2130 / 1976,
  15637. bottom: 0.05
  15638. }
  15639. },
  15640. },
  15641. [
  15642. {
  15643. name: "Supermicro",
  15644. height: math.unit(10, "micrometers")
  15645. },
  15646. {
  15647. name: "Micro",
  15648. height: math.unit(1, "inch")
  15649. },
  15650. {
  15651. name: "Tiny",
  15652. height: math.unit(5, "inches")
  15653. },
  15654. {
  15655. name: "Standard",
  15656. height: math.unit(5 + 7 / 12, "inches")
  15657. },
  15658. {
  15659. name: "Macro",
  15660. height: math.unit(80, "meters"),
  15661. default: true
  15662. },
  15663. {
  15664. name: "Megamacro",
  15665. height: math.unit(250, "meters")
  15666. },
  15667. {
  15668. name: "Gigamacro",
  15669. height: math.unit(5, "km")
  15670. },
  15671. {
  15672. name: "Cosmic",
  15673. height: math.unit(2.5e6, "miles")
  15674. },
  15675. ]
  15676. ))
  15677. characterMakers.push(() => makeCharacter(
  15678. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15679. {
  15680. front: {
  15681. height: math.unit(6, "feet"),
  15682. weight: math.unit(150, "lb"),
  15683. name: "Front",
  15684. image: {
  15685. source: "./media/characters/hanzo/front.svg",
  15686. extra: 374 / 344,
  15687. bottom: 0.02
  15688. }
  15689. },
  15690. },
  15691. [
  15692. {
  15693. name: "Normal",
  15694. height: math.unit(8, "feet"),
  15695. default: true
  15696. },
  15697. ]
  15698. ))
  15699. characterMakers.push(() => makeCharacter(
  15700. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15701. {
  15702. front: {
  15703. height: math.unit(7, "feet"),
  15704. weight: math.unit(130, "lb"),
  15705. name: "Front",
  15706. image: {
  15707. source: "./media/characters/anna/front.svg",
  15708. extra: 169 / 145,
  15709. bottom: 0.06
  15710. }
  15711. },
  15712. full: {
  15713. height: math.unit(4.96, "feet"),
  15714. weight: math.unit(220, "lb"),
  15715. name: "Full",
  15716. image: {
  15717. source: "./media/characters/anna/full.svg",
  15718. extra: 138 / 114,
  15719. bottom: 0.15
  15720. }
  15721. },
  15722. tongue: {
  15723. height: math.unit(2.53, "feet"),
  15724. name: "Tongue",
  15725. image: {
  15726. source: "./media/characters/anna/tongue.svg"
  15727. }
  15728. },
  15729. },
  15730. [
  15731. {
  15732. name: "Normal",
  15733. height: math.unit(7, "feet"),
  15734. default: true
  15735. },
  15736. ]
  15737. ))
  15738. characterMakers.push(() => makeCharacter(
  15739. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15740. {
  15741. front: {
  15742. height: math.unit(7, "feet"),
  15743. weight: math.unit(150, "lb"),
  15744. name: "Front",
  15745. image: {
  15746. source: "./media/characters/ian-corvid/front.svg",
  15747. extra: 150 / 142,
  15748. bottom: 0.02
  15749. }
  15750. },
  15751. back: {
  15752. height: math.unit(7, "feet"),
  15753. weight: math.unit(150, "lb"),
  15754. name: "Back",
  15755. image: {
  15756. source: "./media/characters/ian-corvid/back.svg",
  15757. extra: 150 / 143,
  15758. bottom: 0.01
  15759. }
  15760. },
  15761. stomping: {
  15762. height: math.unit(7, "feet"),
  15763. weight: math.unit(150, "lb"),
  15764. name: "Stomping",
  15765. image: {
  15766. source: "./media/characters/ian-corvid/stomping.svg",
  15767. extra: 76 / 72
  15768. }
  15769. },
  15770. sitting: {
  15771. height: math.unit(7 / 1.8, "feet"),
  15772. weight: math.unit(150, "lb"),
  15773. name: "Sitting",
  15774. image: {
  15775. source: "./media/characters/ian-corvid/sitting.svg",
  15776. extra: 1400 / 1269,
  15777. bottom: 0.15
  15778. }
  15779. },
  15780. },
  15781. [
  15782. {
  15783. name: "Tiny Microw",
  15784. height: math.unit(1, "inch")
  15785. },
  15786. {
  15787. name: "Microw",
  15788. height: math.unit(6, "inches")
  15789. },
  15790. {
  15791. name: "Crow",
  15792. height: math.unit(7 + 1 / 12, "feet"),
  15793. default: true
  15794. },
  15795. {
  15796. name: "Macrow",
  15797. height: math.unit(176, "feet")
  15798. },
  15799. ]
  15800. ))
  15801. characterMakers.push(() => makeCharacter(
  15802. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15803. {
  15804. front: {
  15805. height: math.unit(5 + 7 / 12, "feet"),
  15806. weight: math.unit(147, "lb"),
  15807. name: "Front",
  15808. image: {
  15809. source: "./media/characters/natalie-kellon/front.svg",
  15810. extra: 1214 / 1141,
  15811. bottom: 0.02
  15812. }
  15813. },
  15814. },
  15815. [
  15816. {
  15817. name: "Micro",
  15818. height: math.unit(1 / 16, "inch")
  15819. },
  15820. {
  15821. name: "Tiny",
  15822. height: math.unit(4, "inches")
  15823. },
  15824. {
  15825. name: "Normal",
  15826. height: math.unit(5 + 7 / 12, "feet"),
  15827. default: true
  15828. },
  15829. {
  15830. name: "Amazon",
  15831. height: math.unit(12, "feet")
  15832. },
  15833. {
  15834. name: "Giantess",
  15835. height: math.unit(160, "meters")
  15836. },
  15837. {
  15838. name: "Titaness",
  15839. height: math.unit(800, "meters")
  15840. },
  15841. ]
  15842. ))
  15843. characterMakers.push(() => makeCharacter(
  15844. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15845. {
  15846. front: {
  15847. height: math.unit(6, "feet"),
  15848. weight: math.unit(150, "lb"),
  15849. name: "Front",
  15850. image: {
  15851. source: "./media/characters/alluria/front.svg",
  15852. extra: 806 / 738,
  15853. bottom: 0.01
  15854. }
  15855. },
  15856. side: {
  15857. height: math.unit(6, "feet"),
  15858. weight: math.unit(150, "lb"),
  15859. name: "Side",
  15860. image: {
  15861. source: "./media/characters/alluria/side.svg",
  15862. extra: 800 / 750,
  15863. }
  15864. },
  15865. back: {
  15866. height: math.unit(6, "feet"),
  15867. weight: math.unit(150, "lb"),
  15868. name: "Back",
  15869. image: {
  15870. source: "./media/characters/alluria/back.svg",
  15871. extra: 806 / 738,
  15872. }
  15873. },
  15874. frontMaid: {
  15875. height: math.unit(6, "feet"),
  15876. weight: math.unit(150, "lb"),
  15877. name: "Front (Maid)",
  15878. image: {
  15879. source: "./media/characters/alluria/front-maid.svg",
  15880. extra: 806 / 738,
  15881. bottom: 0.01
  15882. }
  15883. },
  15884. sideMaid: {
  15885. height: math.unit(6, "feet"),
  15886. weight: math.unit(150, "lb"),
  15887. name: "Side (Maid)",
  15888. image: {
  15889. source: "./media/characters/alluria/side-maid.svg",
  15890. extra: 800 / 750,
  15891. bottom: 0.005
  15892. }
  15893. },
  15894. backMaid: {
  15895. height: math.unit(6, "feet"),
  15896. weight: math.unit(150, "lb"),
  15897. name: "Back (Maid)",
  15898. image: {
  15899. source: "./media/characters/alluria/back-maid.svg",
  15900. extra: 806 / 738,
  15901. }
  15902. },
  15903. },
  15904. [
  15905. {
  15906. name: "Micro",
  15907. height: math.unit(6, "inches"),
  15908. default: true
  15909. },
  15910. ]
  15911. ))
  15912. characterMakers.push(() => makeCharacter(
  15913. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15914. {
  15915. front: {
  15916. height: math.unit(6, "feet"),
  15917. weight: math.unit(150, "lb"),
  15918. name: "Front",
  15919. image: {
  15920. source: "./media/characters/kyle/front.svg",
  15921. extra: 1069 / 962,
  15922. bottom: 77.228 / 1727.45
  15923. }
  15924. },
  15925. },
  15926. [
  15927. {
  15928. name: "Macro",
  15929. height: math.unit(150, "feet"),
  15930. default: true
  15931. },
  15932. ]
  15933. ))
  15934. characterMakers.push(() => makeCharacter(
  15935. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15936. {
  15937. front: {
  15938. height: math.unit(6, "feet"),
  15939. weight: math.unit(300, "lb"),
  15940. name: "Front",
  15941. image: {
  15942. source: "./media/characters/duncan/front.svg",
  15943. extra: 1650 / 1482,
  15944. bottom: 0.05
  15945. }
  15946. },
  15947. },
  15948. [
  15949. {
  15950. name: "Macro",
  15951. height: math.unit(100, "feet"),
  15952. default: true
  15953. },
  15954. ]
  15955. ))
  15956. characterMakers.push(() => makeCharacter(
  15957. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15958. {
  15959. front: {
  15960. height: math.unit(5 + 4 / 12, "feet"),
  15961. weight: math.unit(220, "lb"),
  15962. name: "Front",
  15963. image: {
  15964. source: "./media/characters/memory/front.svg",
  15965. extra: 3641 / 3545,
  15966. bottom: 0.03
  15967. }
  15968. },
  15969. back: {
  15970. height: math.unit(5 + 4 / 12, "feet"),
  15971. weight: math.unit(220, "lb"),
  15972. name: "Back",
  15973. image: {
  15974. source: "./media/characters/memory/back.svg",
  15975. extra: 3641 / 3545,
  15976. bottom: 0.025
  15977. }
  15978. },
  15979. frontSkirt: {
  15980. height: math.unit(5 + 4 / 12, "feet"),
  15981. weight: math.unit(220, "lb"),
  15982. name: "Front (Skirt)",
  15983. image: {
  15984. source: "./media/characters/memory/front-skirt.svg",
  15985. extra: 3641 / 3545,
  15986. bottom: 0.03
  15987. }
  15988. },
  15989. frontDress: {
  15990. height: math.unit(5 + 4 / 12, "feet"),
  15991. weight: math.unit(220, "lb"),
  15992. name: "Front (Dress)",
  15993. image: {
  15994. source: "./media/characters/memory/front-dress.svg",
  15995. extra: 3641 / 3545,
  15996. bottom: 0.03
  15997. }
  15998. },
  15999. },
  16000. [
  16001. {
  16002. name: "Micro",
  16003. height: math.unit(6, "inches"),
  16004. default: true
  16005. },
  16006. {
  16007. name: "Normal",
  16008. height: math.unit(5 + 4 / 12, "feet")
  16009. },
  16010. ]
  16011. ))
  16012. characterMakers.push(() => makeCharacter(
  16013. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16014. {
  16015. front: {
  16016. height: math.unit(4 + 11 / 12, "feet"),
  16017. weight: math.unit(100, "lb"),
  16018. name: "Front",
  16019. image: {
  16020. source: "./media/characters/luno/front.svg",
  16021. extra: 1535 / 1487,
  16022. bottom: 0.03
  16023. }
  16024. },
  16025. },
  16026. [
  16027. {
  16028. name: "Micro",
  16029. height: math.unit(3, "inches")
  16030. },
  16031. {
  16032. name: "Normal",
  16033. height: math.unit(4 + 11 / 12, "feet"),
  16034. default: true
  16035. },
  16036. {
  16037. name: "Macro",
  16038. height: math.unit(300, "feet")
  16039. },
  16040. {
  16041. name: "Megamacro",
  16042. height: math.unit(700, "miles")
  16043. },
  16044. ]
  16045. ))
  16046. characterMakers.push(() => makeCharacter(
  16047. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16048. {
  16049. front: {
  16050. height: math.unit(6 + 2 / 12, "feet"),
  16051. weight: math.unit(170, "lb"),
  16052. name: "Front",
  16053. image: {
  16054. source: "./media/characters/jamesy/front.svg",
  16055. extra: 440 / 382,
  16056. bottom: 0.005
  16057. }
  16058. },
  16059. },
  16060. [
  16061. {
  16062. name: "Micro",
  16063. height: math.unit(3, "inches")
  16064. },
  16065. {
  16066. name: "Normal",
  16067. height: math.unit(6 + 2 / 12, "feet"),
  16068. default: true
  16069. },
  16070. {
  16071. name: "Macro",
  16072. height: math.unit(300, "feet")
  16073. },
  16074. {
  16075. name: "Megamacro",
  16076. height: math.unit(700, "miles")
  16077. },
  16078. ]
  16079. ))
  16080. characterMakers.push(() => makeCharacter(
  16081. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16082. {
  16083. front: {
  16084. height: math.unit(6, "feet"),
  16085. weight: math.unit(160, "lb"),
  16086. name: "Front",
  16087. image: {
  16088. source: "./media/characters/mark/front.svg",
  16089. extra: 3300 / 3100,
  16090. bottom: 136.42 / 3440.47
  16091. }
  16092. },
  16093. },
  16094. [
  16095. {
  16096. name: "Macro",
  16097. height: math.unit(120, "meters")
  16098. },
  16099. {
  16100. name: "Bigger Macro",
  16101. height: math.unit(350, "meters")
  16102. },
  16103. {
  16104. name: "Megamacro",
  16105. height: math.unit(8, "km"),
  16106. default: true
  16107. },
  16108. {
  16109. name: "Continental",
  16110. height: math.unit(4550, "km")
  16111. },
  16112. {
  16113. name: "Planetary",
  16114. height: math.unit(65000, "km")
  16115. },
  16116. ]
  16117. ))
  16118. characterMakers.push(() => makeCharacter(
  16119. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16120. {
  16121. front: {
  16122. height: math.unit(6, "feet"),
  16123. weight: math.unit(400, "lb"),
  16124. name: "Front",
  16125. image: {
  16126. source: "./media/characters/mac/front.svg",
  16127. extra: 1048 / 987.7,
  16128. bottom: 60 / 1107.6,
  16129. }
  16130. },
  16131. },
  16132. [
  16133. {
  16134. name: "Macro",
  16135. height: math.unit(500, "feet"),
  16136. default: true
  16137. },
  16138. ]
  16139. ))
  16140. characterMakers.push(() => makeCharacter(
  16141. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16142. {
  16143. front: {
  16144. height: math.unit(5 + 2 / 12, "feet"),
  16145. weight: math.unit(190, "lb"),
  16146. name: "Front",
  16147. image: {
  16148. source: "./media/characters/bari/front.svg",
  16149. extra: 3156 / 2880,
  16150. bottom: 0.03
  16151. }
  16152. },
  16153. back: {
  16154. height: math.unit(5 + 2 / 12, "feet"),
  16155. weight: math.unit(190, "lb"),
  16156. name: "Back",
  16157. image: {
  16158. source: "./media/characters/bari/back.svg",
  16159. extra: 3260 / 2834,
  16160. bottom: 0.025
  16161. }
  16162. },
  16163. frontPlush: {
  16164. height: math.unit(5 + 2 / 12, "feet"),
  16165. weight: math.unit(190, "lb"),
  16166. name: "Front (Plush)",
  16167. image: {
  16168. source: "./media/characters/bari/front-plush.svg",
  16169. extra: 1112 / 1061,
  16170. bottom: 0.002
  16171. }
  16172. },
  16173. },
  16174. [
  16175. {
  16176. name: "Micro",
  16177. height: math.unit(3, "inches")
  16178. },
  16179. {
  16180. name: "Normal",
  16181. height: math.unit(5 + 2 / 12, "feet"),
  16182. default: true
  16183. },
  16184. {
  16185. name: "Macro",
  16186. height: math.unit(20, "feet")
  16187. },
  16188. ]
  16189. ))
  16190. characterMakers.push(() => makeCharacter(
  16191. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16192. {
  16193. front: {
  16194. height: math.unit(6 + 1 / 12, "feet"),
  16195. weight: math.unit(275, "lb"),
  16196. name: "Front",
  16197. image: {
  16198. source: "./media/characters/hunter-misha-raven/front.svg"
  16199. }
  16200. },
  16201. },
  16202. [
  16203. {
  16204. name: "Mortal",
  16205. height: math.unit(6 + 1 / 12, "feet")
  16206. },
  16207. {
  16208. name: "Divine",
  16209. height: math.unit(1.12134e34, "parsecs"),
  16210. default: true
  16211. },
  16212. ]
  16213. ))
  16214. characterMakers.push(() => makeCharacter(
  16215. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16216. {
  16217. front: {
  16218. height: math.unit(6 + 3 / 12, "feet"),
  16219. weight: math.unit(220, "lb"),
  16220. name: "Front",
  16221. image: {
  16222. source: "./media/characters/max-calore/front.svg",
  16223. extra: 1700 / 1648,
  16224. bottom: 0.01
  16225. }
  16226. },
  16227. back: {
  16228. height: math.unit(6 + 3 / 12, "feet"),
  16229. weight: math.unit(220, "lb"),
  16230. name: "Back",
  16231. image: {
  16232. source: "./media/characters/max-calore/back.svg",
  16233. extra: 1700 / 1648,
  16234. bottom: 0.01
  16235. }
  16236. },
  16237. },
  16238. [
  16239. {
  16240. name: "Normal",
  16241. height: math.unit(6 + 3 / 12, "feet"),
  16242. default: true
  16243. },
  16244. ]
  16245. ))
  16246. characterMakers.push(() => makeCharacter(
  16247. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16248. {
  16249. side: {
  16250. height: math.unit(2 + 8 / 12, "feet"),
  16251. weight: math.unit(99, "lb"),
  16252. name: "Side",
  16253. image: {
  16254. source: "./media/characters/aspen/side.svg",
  16255. extra: 152 / 138,
  16256. bottom: 0.032
  16257. }
  16258. },
  16259. },
  16260. [
  16261. {
  16262. name: "Normal",
  16263. height: math.unit(2 + 8 / 12, "feet"),
  16264. default: true
  16265. },
  16266. ]
  16267. ))
  16268. characterMakers.push(() => makeCharacter(
  16269. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16270. {
  16271. side: {
  16272. height: math.unit(3 + 2 / 12, "feet"),
  16273. weight: math.unit(224, "lb"),
  16274. name: "Side",
  16275. image: {
  16276. source: "./media/characters/sheila-feral-wolf/side.svg",
  16277. extra: 179 / 166,
  16278. bottom: 0.03
  16279. }
  16280. },
  16281. },
  16282. [
  16283. {
  16284. name: "Normal",
  16285. height: math.unit(3 + 2 / 12, "feet"),
  16286. default: true
  16287. },
  16288. ]
  16289. ))
  16290. characterMakers.push(() => makeCharacter(
  16291. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16292. {
  16293. side: {
  16294. height: math.unit(1 + 9 / 12, "feet"),
  16295. weight: math.unit(38, "lb"),
  16296. name: "Side",
  16297. image: {
  16298. source: "./media/characters/michelle/side.svg",
  16299. extra: 147 / 136.7,
  16300. bottom: 0.03
  16301. }
  16302. },
  16303. },
  16304. [
  16305. {
  16306. name: "Normal",
  16307. height: math.unit(1 + 9 / 12, "feet"),
  16308. default: true
  16309. },
  16310. ]
  16311. ))
  16312. characterMakers.push(() => makeCharacter(
  16313. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16314. {
  16315. front: {
  16316. height: math.unit(1 + 1 / 12, "feet"),
  16317. weight: math.unit(18, "lb"),
  16318. name: "Front",
  16319. image: {
  16320. source: "./media/characters/nino/front.svg"
  16321. }
  16322. },
  16323. },
  16324. [
  16325. {
  16326. name: "Normal",
  16327. height: math.unit(1 + 1 / 12, "feet"),
  16328. default: true
  16329. },
  16330. ]
  16331. ))
  16332. characterMakers.push(() => makeCharacter(
  16333. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16334. {
  16335. front: {
  16336. height: math.unit(1, "feet"),
  16337. weight: math.unit(16, "lb"),
  16338. name: "Front",
  16339. image: {
  16340. source: "./media/characters/viola/front.svg"
  16341. }
  16342. },
  16343. },
  16344. [
  16345. {
  16346. name: "Normal",
  16347. height: math.unit(1, "feet"),
  16348. default: true
  16349. },
  16350. ]
  16351. ))
  16352. characterMakers.push(() => makeCharacter(
  16353. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16354. {
  16355. front: {
  16356. height: math.unit(6 + 5 / 12, "feet"),
  16357. weight: math.unit(580, "lb"),
  16358. name: "Front",
  16359. image: {
  16360. source: "./media/characters/atlas/front.svg",
  16361. extra: 298.5 / 290,
  16362. bottom: 0.015
  16363. }
  16364. },
  16365. },
  16366. [
  16367. {
  16368. name: "Normal",
  16369. height: math.unit(6 + 5 / 12, "feet"),
  16370. default: true
  16371. },
  16372. ]
  16373. ))
  16374. characterMakers.push(() => makeCharacter(
  16375. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16376. {
  16377. side: {
  16378. height: math.unit(1 + 10 / 12, "feet"),
  16379. weight: math.unit(25, "lb"),
  16380. name: "Side",
  16381. image: {
  16382. source: "./media/characters/davy/side.svg",
  16383. extra: 200 / 170,
  16384. bottom: 0.01
  16385. }
  16386. },
  16387. },
  16388. [
  16389. {
  16390. name: "Normal",
  16391. height: math.unit(1 + 10 / 12, "feet"),
  16392. default: true
  16393. },
  16394. ]
  16395. ))
  16396. characterMakers.push(() => makeCharacter(
  16397. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16398. {
  16399. side: {
  16400. height: math.unit(4 + 8 / 12, "feet"),
  16401. weight: math.unit(166, "lb"),
  16402. name: "Side",
  16403. image: {
  16404. source: "./media/characters/fiona/side.svg",
  16405. extra: 232 / 220,
  16406. bottom: 0.03
  16407. }
  16408. },
  16409. },
  16410. [
  16411. {
  16412. name: "Normal",
  16413. height: math.unit(4 + 8 / 12, "feet"),
  16414. default: true
  16415. },
  16416. ]
  16417. ))
  16418. characterMakers.push(() => makeCharacter(
  16419. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16420. {
  16421. front: {
  16422. height: math.unit(2, "feet"),
  16423. weight: math.unit(62, "lb"),
  16424. name: "Front",
  16425. image: {
  16426. source: "./media/characters/lyla/front.svg",
  16427. bottom: 0.1
  16428. }
  16429. },
  16430. },
  16431. [
  16432. {
  16433. name: "Normal",
  16434. height: math.unit(2, "feet"),
  16435. default: true
  16436. },
  16437. ]
  16438. ))
  16439. characterMakers.push(() => makeCharacter(
  16440. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16441. {
  16442. side: {
  16443. height: math.unit(1.8, "feet"),
  16444. weight: math.unit(44, "lb"),
  16445. name: "Side",
  16446. image: {
  16447. source: "./media/characters/perseus/side.svg",
  16448. bottom: 0.21
  16449. }
  16450. },
  16451. },
  16452. [
  16453. {
  16454. name: "Normal",
  16455. height: math.unit(1.8, "feet"),
  16456. default: true
  16457. },
  16458. ]
  16459. ))
  16460. characterMakers.push(() => makeCharacter(
  16461. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16462. {
  16463. side: {
  16464. height: math.unit(4 + 2 / 12, "feet"),
  16465. weight: math.unit(20, "lb"),
  16466. name: "Side",
  16467. image: {
  16468. source: "./media/characters/remus/side.svg"
  16469. }
  16470. },
  16471. },
  16472. [
  16473. {
  16474. name: "Normal",
  16475. height: math.unit(4 + 2 / 12, "feet"),
  16476. default: true
  16477. },
  16478. ]
  16479. ))
  16480. characterMakers.push(() => makeCharacter(
  16481. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16482. {
  16483. front: {
  16484. height: math.unit(4 + 11 / 12, "feet"),
  16485. weight: math.unit(114, "lb"),
  16486. name: "Front",
  16487. image: {
  16488. source: "./media/characters/raf/front.svg",
  16489. bottom: 20.5 / 1863
  16490. }
  16491. },
  16492. side: {
  16493. height: math.unit(4 + 11 / 12, "feet"),
  16494. weight: math.unit(114, "lb"),
  16495. name: "Side",
  16496. image: {
  16497. source: "./media/characters/raf/side.svg",
  16498. bottom: 22 / 1822
  16499. }
  16500. },
  16501. },
  16502. [
  16503. {
  16504. name: "Micro",
  16505. height: math.unit(2, "inches")
  16506. },
  16507. {
  16508. name: "Normal",
  16509. height: math.unit(4 + 11 / 12, "feet"),
  16510. default: true
  16511. },
  16512. {
  16513. name: "Macro",
  16514. height: math.unit(70, "feet")
  16515. },
  16516. ]
  16517. ))
  16518. characterMakers.push(() => makeCharacter(
  16519. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16520. {
  16521. front: {
  16522. height: math.unit(1.5, "meters"),
  16523. weight: math.unit(68, "kg"),
  16524. name: "Front",
  16525. image: {
  16526. source: "./media/characters/liam-einarr/front.svg",
  16527. extra: 2822 / 2666
  16528. }
  16529. },
  16530. back: {
  16531. height: math.unit(1.5, "meters"),
  16532. weight: math.unit(68, "kg"),
  16533. name: "Back",
  16534. image: {
  16535. source: "./media/characters/liam-einarr/back.svg",
  16536. extra: 2822 / 2666,
  16537. bottom: 0.015
  16538. }
  16539. },
  16540. },
  16541. [
  16542. {
  16543. name: "Normal",
  16544. height: math.unit(1.5, "meters"),
  16545. default: true
  16546. },
  16547. {
  16548. name: "Macro",
  16549. height: math.unit(150, "meters")
  16550. },
  16551. {
  16552. name: "Megamacro",
  16553. height: math.unit(35, "km")
  16554. },
  16555. ]
  16556. ))
  16557. characterMakers.push(() => makeCharacter(
  16558. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16559. {
  16560. front: {
  16561. height: math.unit(6, "feet"),
  16562. weight: math.unit(75, "kg"),
  16563. name: "Front",
  16564. image: {
  16565. source: "./media/characters/linda/front.svg",
  16566. extra: 930 / 874,
  16567. bottom: 0.004
  16568. }
  16569. },
  16570. },
  16571. [
  16572. {
  16573. name: "Normal",
  16574. height: math.unit(6, "feet"),
  16575. default: true
  16576. },
  16577. ]
  16578. ))
  16579. characterMakers.push(() => makeCharacter(
  16580. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16581. {
  16582. front: {
  16583. height: math.unit(6 + 8 / 12, "feet"),
  16584. weight: math.unit(220, "lb"),
  16585. name: "Front",
  16586. image: {
  16587. source: "./media/characters/caylex/front.svg",
  16588. extra: 821 / 772,
  16589. bottom: 0.07
  16590. }
  16591. },
  16592. back: {
  16593. height: math.unit(6 + 8 / 12, "feet"),
  16594. weight: math.unit(220, "lb"),
  16595. name: "Back",
  16596. image: {
  16597. source: "./media/characters/caylex/back.svg",
  16598. extra: 821 / 772,
  16599. bottom: 0.022
  16600. }
  16601. },
  16602. hand: {
  16603. height: math.unit(1.25, "feet"),
  16604. name: "Hand",
  16605. image: {
  16606. source: "./media/characters/caylex/hand.svg"
  16607. }
  16608. },
  16609. foot: {
  16610. height: math.unit(1.6, "feet"),
  16611. name: "Foot",
  16612. image: {
  16613. source: "./media/characters/caylex/foot.svg"
  16614. }
  16615. },
  16616. armored: {
  16617. height: math.unit(6 + 8 / 12, "feet"),
  16618. weight: math.unit(250, "lb"),
  16619. name: "Armored",
  16620. image: {
  16621. source: "./media/characters/caylex/armored.svg",
  16622. extra: 1420 / 1310,
  16623. bottom: 0.045
  16624. }
  16625. },
  16626. },
  16627. [
  16628. {
  16629. name: "Normal",
  16630. height: math.unit(6 + 8 / 12, "feet"),
  16631. default: true
  16632. },
  16633. {
  16634. name: "Normal+",
  16635. height: math.unit(12, "feet")
  16636. },
  16637. ]
  16638. ))
  16639. characterMakers.push(() => makeCharacter(
  16640. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16641. {
  16642. front: {
  16643. height: math.unit(7 + 6 / 12, "feet"),
  16644. weight: math.unit(288, "lb"),
  16645. name: "Front",
  16646. image: {
  16647. source: "./media/characters/alana/front.svg",
  16648. extra: 679 / 653,
  16649. bottom: 22.5 / 701
  16650. }
  16651. },
  16652. },
  16653. [
  16654. {
  16655. name: "Normal",
  16656. height: math.unit(7 + 6 / 12, "feet")
  16657. },
  16658. {
  16659. name: "Large",
  16660. height: math.unit(50, "feet")
  16661. },
  16662. {
  16663. name: "Macro",
  16664. height: math.unit(100, "feet"),
  16665. default: true
  16666. },
  16667. {
  16668. name: "Macro+",
  16669. height: math.unit(200, "feet")
  16670. },
  16671. ]
  16672. ))
  16673. characterMakers.push(() => makeCharacter(
  16674. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16675. {
  16676. front: {
  16677. height: math.unit(6 + 1 / 12, "feet"),
  16678. weight: math.unit(210, "lb"),
  16679. name: "Front",
  16680. image: {
  16681. source: "./media/characters/hasani/front.svg",
  16682. extra: 244 / 232,
  16683. bottom: 0.01
  16684. }
  16685. },
  16686. back: {
  16687. height: math.unit(6 + 1 / 12, "feet"),
  16688. weight: math.unit(210, "lb"),
  16689. name: "Back",
  16690. image: {
  16691. source: "./media/characters/hasani/back.svg",
  16692. extra: 244 / 232,
  16693. bottom: 0.01
  16694. }
  16695. },
  16696. },
  16697. [
  16698. {
  16699. name: "Normal",
  16700. height: math.unit(6 + 1 / 12, "feet")
  16701. },
  16702. {
  16703. name: "Macro",
  16704. height: math.unit(175, "feet"),
  16705. default: true
  16706. },
  16707. ]
  16708. ))
  16709. characterMakers.push(() => makeCharacter(
  16710. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16711. {
  16712. front: {
  16713. height: math.unit(1.82, "meters"),
  16714. weight: math.unit(140, "lb"),
  16715. name: "Front",
  16716. image: {
  16717. source: "./media/characters/nita/front.svg",
  16718. extra: 2473 / 2363,
  16719. bottom: 0.01
  16720. }
  16721. },
  16722. },
  16723. [
  16724. {
  16725. name: "Normal",
  16726. height: math.unit(1.82, "m")
  16727. },
  16728. {
  16729. name: "Macro",
  16730. height: math.unit(300, "m")
  16731. },
  16732. {
  16733. name: "Mistake Canon",
  16734. height: math.unit(0.5, "miles"),
  16735. default: true
  16736. },
  16737. {
  16738. name: "Big Mistake",
  16739. height: math.unit(13, "miles")
  16740. },
  16741. {
  16742. name: "Playing God",
  16743. height: math.unit(2450, "miles")
  16744. },
  16745. ]
  16746. ))
  16747. characterMakers.push(() => makeCharacter(
  16748. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16749. {
  16750. front: {
  16751. height: math.unit(4, "feet"),
  16752. weight: math.unit(120, "lb"),
  16753. name: "Front",
  16754. image: {
  16755. source: "./media/characters/shiriko/front.svg",
  16756. extra: 195 / 188
  16757. }
  16758. },
  16759. },
  16760. [
  16761. {
  16762. name: "Normal",
  16763. height: math.unit(4, "feet"),
  16764. default: true
  16765. },
  16766. ]
  16767. ))
  16768. characterMakers.push(() => makeCharacter(
  16769. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16770. {
  16771. front: {
  16772. height: math.unit(6, "feet"),
  16773. name: "front",
  16774. image: {
  16775. source: "./media/characters/deja/front.svg",
  16776. extra: 926 / 840,
  16777. bottom: 0.07
  16778. }
  16779. },
  16780. },
  16781. [
  16782. {
  16783. name: "Planck Length",
  16784. height: math.unit(1.6e-35, "meters")
  16785. },
  16786. {
  16787. name: "Normal",
  16788. height: math.unit(30.48, "meters"),
  16789. default: true
  16790. },
  16791. {
  16792. name: "Universal",
  16793. height: math.unit(8.8e26, "meters")
  16794. },
  16795. ]
  16796. ))
  16797. characterMakers.push(() => makeCharacter(
  16798. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16799. {
  16800. side: {
  16801. height: math.unit(8, "feet"),
  16802. weight: math.unit(6300, "lb"),
  16803. name: "Side",
  16804. image: {
  16805. source: "./media/characters/anima/side.svg",
  16806. bottom: 0.035
  16807. }
  16808. },
  16809. },
  16810. [
  16811. {
  16812. name: "Normal",
  16813. height: math.unit(8, "feet"),
  16814. default: true
  16815. },
  16816. ]
  16817. ))
  16818. characterMakers.push(() => makeCharacter(
  16819. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16820. {
  16821. front: {
  16822. height: math.unit(8, "feet"),
  16823. weight: math.unit(350, "lb"),
  16824. name: "Front",
  16825. image: {
  16826. source: "./media/characters/bianca/front.svg",
  16827. extra: 234 / 225,
  16828. bottom: 0.03
  16829. }
  16830. },
  16831. },
  16832. [
  16833. {
  16834. name: "Normal",
  16835. height: math.unit(8, "feet"),
  16836. default: true
  16837. },
  16838. ]
  16839. ))
  16840. characterMakers.push(() => makeCharacter(
  16841. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16842. {
  16843. front: {
  16844. height: math.unit(6, "feet"),
  16845. weight: math.unit(150, "lb"),
  16846. name: "Front",
  16847. image: {
  16848. source: "./media/characters/adinia/front.svg",
  16849. extra: 1845 / 1672,
  16850. bottom: 0.02
  16851. }
  16852. },
  16853. back: {
  16854. height: math.unit(6, "feet"),
  16855. weight: math.unit(150, "lb"),
  16856. name: "Back",
  16857. image: {
  16858. source: "./media/characters/adinia/back.svg",
  16859. extra: 1845 / 1672,
  16860. bottom: 0.002
  16861. }
  16862. },
  16863. },
  16864. [
  16865. {
  16866. name: "Normal",
  16867. height: math.unit(11 + 5 / 12, "feet"),
  16868. default: true
  16869. },
  16870. ]
  16871. ))
  16872. characterMakers.push(() => makeCharacter(
  16873. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16874. {
  16875. front: {
  16876. height: math.unit(3, "meters"),
  16877. weight: math.unit(200, "kg"),
  16878. name: "Front",
  16879. image: {
  16880. source: "./media/characters/lykasa/front.svg",
  16881. extra: 1076 / 976,
  16882. bottom: 0.06
  16883. }
  16884. },
  16885. },
  16886. [
  16887. {
  16888. name: "Normal",
  16889. height: math.unit(3, "meters")
  16890. },
  16891. {
  16892. name: "Kaiju",
  16893. height: math.unit(120, "meters"),
  16894. default: true
  16895. },
  16896. {
  16897. name: "Mega Kaiju",
  16898. height: math.unit(240, "km")
  16899. },
  16900. {
  16901. name: "Giga Kaiju",
  16902. height: math.unit(400, "megameters")
  16903. },
  16904. {
  16905. name: "Tera Kaiju",
  16906. height: math.unit(800, "gigameters")
  16907. },
  16908. {
  16909. name: "Kaiju Dragon Goddess",
  16910. height: math.unit(26, "zettaparsecs")
  16911. },
  16912. ]
  16913. ))
  16914. characterMakers.push(() => makeCharacter(
  16915. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16916. {
  16917. side: {
  16918. height: math.unit(283 / 124 * 6, "feet"),
  16919. weight: math.unit(35000, "lb"),
  16920. name: "Side",
  16921. image: {
  16922. source: "./media/characters/malfaren/side.svg",
  16923. extra: 2500 / 1010,
  16924. bottom: 0.01
  16925. }
  16926. },
  16927. front: {
  16928. height: math.unit(22.36, "feet"),
  16929. weight: math.unit(35000, "lb"),
  16930. name: "Front",
  16931. image: {
  16932. source: "./media/characters/malfaren/front.svg",
  16933. extra: 1631 / 1476,
  16934. bottom: 0.01
  16935. }
  16936. },
  16937. maw: {
  16938. height: math.unit(6.9, "feet"),
  16939. name: "Maw",
  16940. image: {
  16941. source: "./media/characters/malfaren/maw.svg"
  16942. }
  16943. },
  16944. },
  16945. [
  16946. {
  16947. name: "Big",
  16948. height: math.unit(283 / 162 * 6, "feet"),
  16949. },
  16950. {
  16951. name: "Bigger",
  16952. height: math.unit(283 / 124 * 6, "feet")
  16953. },
  16954. {
  16955. name: "Massive",
  16956. height: math.unit(283 / 92 * 6, "feet"),
  16957. default: true
  16958. },
  16959. {
  16960. name: "👀💦",
  16961. height: math.unit(283 / 73 * 6, "feet"),
  16962. },
  16963. ]
  16964. ))
  16965. characterMakers.push(() => makeCharacter(
  16966. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16967. {
  16968. front: {
  16969. height: math.unit(1.7, "m"),
  16970. weight: math.unit(70, "kg"),
  16971. name: "Front",
  16972. image: {
  16973. source: "./media/characters/kernel/front.svg",
  16974. extra: 222 / 210,
  16975. bottom: 0.007
  16976. }
  16977. },
  16978. },
  16979. [
  16980. {
  16981. name: "Nano",
  16982. height: math.unit(17, "micrometers")
  16983. },
  16984. {
  16985. name: "Micro",
  16986. height: math.unit(1.7, "mm")
  16987. },
  16988. {
  16989. name: "Small",
  16990. height: math.unit(1.7, "cm")
  16991. },
  16992. {
  16993. name: "Normal",
  16994. height: math.unit(1.7, "m"),
  16995. default: true
  16996. },
  16997. ]
  16998. ))
  16999. characterMakers.push(() => makeCharacter(
  17000. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17001. {
  17002. front: {
  17003. height: math.unit(1.75, "meters"),
  17004. weight: math.unit(65, "kg"),
  17005. name: "Front",
  17006. image: {
  17007. source: "./media/characters/jayne-folest/front.svg",
  17008. extra: 2115 / 2007,
  17009. bottom: 0.02
  17010. }
  17011. },
  17012. back: {
  17013. height: math.unit(1.75, "meters"),
  17014. weight: math.unit(65, "kg"),
  17015. name: "Back",
  17016. image: {
  17017. source: "./media/characters/jayne-folest/back.svg",
  17018. extra: 2115 / 2007,
  17019. bottom: 0.005
  17020. }
  17021. },
  17022. frontClothed: {
  17023. height: math.unit(1.75, "meters"),
  17024. weight: math.unit(65, "kg"),
  17025. name: "Front (Clothed)",
  17026. image: {
  17027. source: "./media/characters/jayne-folest/front-clothed.svg",
  17028. extra: 2115 / 2007,
  17029. bottom: 0.035
  17030. }
  17031. },
  17032. hand: {
  17033. height: math.unit(1 / 1.260, "feet"),
  17034. name: "Hand",
  17035. image: {
  17036. source: "./media/characters/jayne-folest/hand.svg"
  17037. }
  17038. },
  17039. foot: {
  17040. height: math.unit(1 / 0.918, "feet"),
  17041. name: "Foot",
  17042. image: {
  17043. source: "./media/characters/jayne-folest/foot.svg"
  17044. }
  17045. },
  17046. },
  17047. [
  17048. {
  17049. name: "Micro",
  17050. height: math.unit(4, "cm")
  17051. },
  17052. {
  17053. name: "Normal",
  17054. height: math.unit(1.75, "meters")
  17055. },
  17056. {
  17057. name: "Macro",
  17058. height: math.unit(47.5, "meters"),
  17059. default: true
  17060. },
  17061. ]
  17062. ))
  17063. characterMakers.push(() => makeCharacter(
  17064. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17065. {
  17066. front: {
  17067. height: math.unit(180, "cm"),
  17068. weight: math.unit(70, "kg"),
  17069. name: "Front",
  17070. image: {
  17071. source: "./media/characters/algier/front.svg",
  17072. extra: 596 / 572,
  17073. bottom: 0.04
  17074. }
  17075. },
  17076. back: {
  17077. height: math.unit(180, "cm"),
  17078. weight: math.unit(70, "kg"),
  17079. name: "Back",
  17080. image: {
  17081. source: "./media/characters/algier/back.svg",
  17082. extra: 596 / 572,
  17083. bottom: 0.025
  17084. }
  17085. },
  17086. frontdressed: {
  17087. height: math.unit(180, "cm"),
  17088. weight: math.unit(150, "kg"),
  17089. name: "Front-dressed",
  17090. image: {
  17091. source: "./media/characters/algier/front-dressed.svg",
  17092. extra: 596 / 572,
  17093. bottom: 0.038
  17094. }
  17095. },
  17096. },
  17097. [
  17098. {
  17099. name: "Micro",
  17100. height: math.unit(5, "cm")
  17101. },
  17102. {
  17103. name: "Normal",
  17104. height: math.unit(180, "cm"),
  17105. default: true
  17106. },
  17107. {
  17108. name: "Macro",
  17109. height: math.unit(64, "m")
  17110. },
  17111. ]
  17112. ))
  17113. characterMakers.push(() => makeCharacter(
  17114. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17115. {
  17116. upright: {
  17117. height: math.unit(7, "feet"),
  17118. weight: math.unit(300, "lb"),
  17119. name: "Upright",
  17120. image: {
  17121. source: "./media/characters/pretzel/upright.svg",
  17122. extra: 534 / 522,
  17123. bottom: 0.065
  17124. }
  17125. },
  17126. sprawling: {
  17127. height: math.unit(3.75, "feet"),
  17128. weight: math.unit(300, "lb"),
  17129. name: "Sprawling",
  17130. image: {
  17131. source: "./media/characters/pretzel/sprawling.svg",
  17132. extra: 314 / 281,
  17133. bottom: 0.1
  17134. }
  17135. },
  17136. tongue: {
  17137. height: math.unit(2, "feet"),
  17138. name: "Tongue",
  17139. image: {
  17140. source: "./media/characters/pretzel/tongue.svg"
  17141. }
  17142. },
  17143. },
  17144. [
  17145. {
  17146. name: "Normal",
  17147. height: math.unit(7, "feet"),
  17148. default: true
  17149. },
  17150. {
  17151. name: "Oversized",
  17152. height: math.unit(15, "feet")
  17153. },
  17154. {
  17155. name: "Huge",
  17156. height: math.unit(30, "feet")
  17157. },
  17158. {
  17159. name: "Macro",
  17160. height: math.unit(250, "feet")
  17161. },
  17162. ]
  17163. ))
  17164. characterMakers.push(() => makeCharacter(
  17165. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17166. {
  17167. sideFront: {
  17168. height: math.unit(5 + 2 / 12, "feet"),
  17169. weight: math.unit(120, "lb"),
  17170. name: "Front Side",
  17171. image: {
  17172. source: "./media/characters/roxi/side-front.svg",
  17173. extra: 2924 / 2717,
  17174. bottom: 0.08
  17175. }
  17176. },
  17177. sideBack: {
  17178. height: math.unit(5 + 2 / 12, "feet"),
  17179. weight: math.unit(120, "lb"),
  17180. name: "Back Side",
  17181. image: {
  17182. source: "./media/characters/roxi/side-back.svg",
  17183. extra: 2904 / 2693,
  17184. bottom: 0.06
  17185. }
  17186. },
  17187. front: {
  17188. height: math.unit(5 + 2 / 12, "feet"),
  17189. weight: math.unit(120, "lb"),
  17190. name: "Front",
  17191. image: {
  17192. source: "./media/characters/roxi/front.svg",
  17193. extra: 2028 / 1907,
  17194. bottom: 0.01
  17195. }
  17196. },
  17197. frontAlt: {
  17198. height: math.unit(5 + 2 / 12, "feet"),
  17199. weight: math.unit(120, "lb"),
  17200. name: "Front (Alt)",
  17201. image: {
  17202. source: "./media/characters/roxi/front-alt.svg",
  17203. extra: 1828 / 1798,
  17204. bottom: 0.01
  17205. }
  17206. },
  17207. sitting: {
  17208. height: math.unit(2.8, "feet"),
  17209. weight: math.unit(120, "lb"),
  17210. name: "Sitting",
  17211. image: {
  17212. source: "./media/characters/roxi/sitting.svg",
  17213. extra: 2660 / 2462,
  17214. bottom: 0.1
  17215. }
  17216. },
  17217. },
  17218. [
  17219. {
  17220. name: "Normal",
  17221. height: math.unit(5 + 2 / 12, "feet"),
  17222. default: true
  17223. },
  17224. ]
  17225. ))
  17226. characterMakers.push(() => makeCharacter(
  17227. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17228. {
  17229. side: {
  17230. height: math.unit(55, "feet"),
  17231. weight: math.unit(153, "tons"),
  17232. name: "Side",
  17233. image: {
  17234. source: "./media/characters/shadow/side.svg",
  17235. extra: 701 / 628,
  17236. bottom: 0.02
  17237. }
  17238. },
  17239. flying: {
  17240. height: math.unit(145, "feet"),
  17241. weight: math.unit(153, "tons"),
  17242. name: "Flying",
  17243. image: {
  17244. source: "./media/characters/shadow/flying.svg"
  17245. }
  17246. },
  17247. },
  17248. [
  17249. {
  17250. name: "Normal",
  17251. height: math.unit(55, "feet"),
  17252. default: true
  17253. },
  17254. ]
  17255. ))
  17256. characterMakers.push(() => makeCharacter(
  17257. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17258. {
  17259. front: {
  17260. height: math.unit(6, "feet"),
  17261. weight: math.unit(200, "lb"),
  17262. name: "Front",
  17263. image: {
  17264. source: "./media/characters/marcie/front.svg",
  17265. extra: 960 / 876,
  17266. bottom: 58 / 1017.87
  17267. }
  17268. },
  17269. },
  17270. [
  17271. {
  17272. name: "Macro",
  17273. height: math.unit(1, "mile"),
  17274. default: true
  17275. },
  17276. ]
  17277. ))
  17278. characterMakers.push(() => makeCharacter(
  17279. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17280. {
  17281. front: {
  17282. height: math.unit(7, "feet"),
  17283. weight: math.unit(200, "lb"),
  17284. name: "Front",
  17285. image: {
  17286. source: "./media/characters/kachina/front.svg",
  17287. extra: 1290.68 / 1119,
  17288. bottom: 36.5 / 1327.18
  17289. }
  17290. },
  17291. },
  17292. [
  17293. {
  17294. name: "Normal",
  17295. height: math.unit(7, "feet"),
  17296. default: true
  17297. },
  17298. ]
  17299. ))
  17300. characterMakers.push(() => makeCharacter(
  17301. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17302. {
  17303. looking: {
  17304. height: math.unit(2, "meters"),
  17305. weight: math.unit(300, "kg"),
  17306. name: "Looking",
  17307. image: {
  17308. source: "./media/characters/kash/looking.svg",
  17309. extra: 474 / 344,
  17310. bottom: 0.03
  17311. }
  17312. },
  17313. side: {
  17314. height: math.unit(2, "meters"),
  17315. weight: math.unit(300, "kg"),
  17316. name: "Side",
  17317. image: {
  17318. source: "./media/characters/kash/side.svg",
  17319. extra: 302 / 251,
  17320. bottom: 0.03
  17321. }
  17322. },
  17323. front: {
  17324. height: math.unit(2, "meters"),
  17325. weight: math.unit(300, "kg"),
  17326. name: "Front",
  17327. image: {
  17328. source: "./media/characters/kash/front.svg",
  17329. extra: 495 / 360,
  17330. bottom: 0.015
  17331. }
  17332. },
  17333. },
  17334. [
  17335. {
  17336. name: "Normal",
  17337. height: math.unit(2, "meters"),
  17338. default: true
  17339. },
  17340. {
  17341. name: "Big",
  17342. height: math.unit(3, "meters")
  17343. },
  17344. {
  17345. name: "Large",
  17346. height: math.unit(5, "meters")
  17347. },
  17348. ]
  17349. ))
  17350. characterMakers.push(() => makeCharacter(
  17351. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17352. {
  17353. feeding: {
  17354. height: math.unit(6.7, "feet"),
  17355. weight: math.unit(350, "lb"),
  17356. name: "Feeding",
  17357. image: {
  17358. source: "./media/characters/lalim/feeding.svg",
  17359. }
  17360. },
  17361. },
  17362. [
  17363. {
  17364. name: "Normal",
  17365. height: math.unit(6.7, "feet"),
  17366. default: true
  17367. },
  17368. ]
  17369. ))
  17370. characterMakers.push(() => makeCharacter(
  17371. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17372. {
  17373. front: {
  17374. height: math.unit(9.5, "feet"),
  17375. weight: math.unit(600, "lb"),
  17376. name: "Front",
  17377. image: {
  17378. source: "./media/characters/de'vout/front.svg",
  17379. extra: 1443 / 1328,
  17380. bottom: 0.025
  17381. }
  17382. },
  17383. back: {
  17384. height: math.unit(9.5, "feet"),
  17385. weight: math.unit(600, "lb"),
  17386. name: "Back",
  17387. image: {
  17388. source: "./media/characters/de'vout/back.svg",
  17389. extra: 1443 / 1328
  17390. }
  17391. },
  17392. frontDressed: {
  17393. height: math.unit(9.5, "feet"),
  17394. weight: math.unit(600, "lb"),
  17395. name: "Front (Dressed",
  17396. image: {
  17397. source: "./media/characters/de'vout/front-dressed.svg",
  17398. extra: 1443 / 1328,
  17399. bottom: 0.025
  17400. }
  17401. },
  17402. backDressed: {
  17403. height: math.unit(9.5, "feet"),
  17404. weight: math.unit(600, "lb"),
  17405. name: "Back (Dressed",
  17406. image: {
  17407. source: "./media/characters/de'vout/back-dressed.svg",
  17408. extra: 1443 / 1328
  17409. }
  17410. },
  17411. },
  17412. [
  17413. {
  17414. name: "Normal",
  17415. height: math.unit(9.5, "feet"),
  17416. default: true
  17417. },
  17418. ]
  17419. ))
  17420. characterMakers.push(() => makeCharacter(
  17421. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17422. {
  17423. front: {
  17424. height: math.unit(8, "feet"),
  17425. weight: math.unit(225, "lb"),
  17426. name: "Front",
  17427. image: {
  17428. source: "./media/characters/talana/front.svg",
  17429. extra: 1410 / 1300,
  17430. bottom: 0.015
  17431. }
  17432. },
  17433. frontDressed: {
  17434. height: math.unit(8, "feet"),
  17435. weight: math.unit(225, "lb"),
  17436. name: "Front (Dressed",
  17437. image: {
  17438. source: "./media/characters/talana/front-dressed.svg",
  17439. extra: 1410 / 1300,
  17440. bottom: 0.015
  17441. }
  17442. },
  17443. },
  17444. [
  17445. {
  17446. name: "Normal",
  17447. height: math.unit(8, "feet"),
  17448. default: true
  17449. },
  17450. ]
  17451. ))
  17452. characterMakers.push(() => makeCharacter(
  17453. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17454. {
  17455. side: {
  17456. height: math.unit(7.2, "feet"),
  17457. weight: math.unit(150, "lb"),
  17458. name: "Side",
  17459. image: {
  17460. source: "./media/characters/xeauvok/side.svg",
  17461. extra: 1975 / 1523,
  17462. bottom: 0.07
  17463. }
  17464. },
  17465. },
  17466. [
  17467. {
  17468. name: "Normal",
  17469. height: math.unit(7.2, "feet"),
  17470. default: true
  17471. },
  17472. ]
  17473. ))
  17474. characterMakers.push(() => makeCharacter(
  17475. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17476. {
  17477. side: {
  17478. height: math.unit(10, "feet"),
  17479. weight: math.unit(900, "kg"),
  17480. name: "Side",
  17481. image: {
  17482. source: "./media/characters/zara/side.svg",
  17483. extra: 504 / 498
  17484. }
  17485. },
  17486. },
  17487. [
  17488. {
  17489. name: "Normal",
  17490. height: math.unit(10, "feet"),
  17491. default: true
  17492. },
  17493. ]
  17494. ))
  17495. characterMakers.push(() => makeCharacter(
  17496. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17497. {
  17498. side: {
  17499. height: math.unit(6, "feet"),
  17500. weight: math.unit(150, "lb"),
  17501. name: "Side",
  17502. image: {
  17503. source: "./media/characters/richard-dragon/side.svg",
  17504. extra: 845 / 340,
  17505. bottom: 0.017
  17506. }
  17507. },
  17508. maw: {
  17509. height: math.unit(2.97, "feet"),
  17510. name: "Maw",
  17511. image: {
  17512. source: "./media/characters/richard-dragon/maw.svg"
  17513. }
  17514. },
  17515. },
  17516. [
  17517. ]
  17518. ))
  17519. characterMakers.push(() => makeCharacter(
  17520. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17521. {
  17522. front: {
  17523. height: math.unit(4, "feet"),
  17524. weight: math.unit(100, "lb"),
  17525. name: "Front",
  17526. image: {
  17527. source: "./media/characters/richard-smeargle/front.svg",
  17528. extra: 2952 / 2820,
  17529. bottom: 0.028
  17530. }
  17531. },
  17532. },
  17533. [
  17534. {
  17535. name: "Normal",
  17536. height: math.unit(4, "feet"),
  17537. default: true
  17538. },
  17539. {
  17540. name: "Dynamax",
  17541. height: math.unit(20, "meters")
  17542. },
  17543. ]
  17544. ))
  17545. characterMakers.push(() => makeCharacter(
  17546. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17547. {
  17548. front: {
  17549. height: math.unit(6, "feet"),
  17550. weight: math.unit(110, "lb"),
  17551. name: "Front",
  17552. image: {
  17553. source: "./media/characters/klay/front.svg",
  17554. extra: 962 / 883,
  17555. bottom: 0.04
  17556. }
  17557. },
  17558. back: {
  17559. height: math.unit(6, "feet"),
  17560. weight: math.unit(110, "lb"),
  17561. name: "Back",
  17562. image: {
  17563. source: "./media/characters/klay/back.svg",
  17564. extra: 962 / 883
  17565. }
  17566. },
  17567. beans: {
  17568. height: math.unit(1.15, "feet"),
  17569. name: "Beans",
  17570. image: {
  17571. source: "./media/characters/klay/beans.svg"
  17572. }
  17573. },
  17574. },
  17575. [
  17576. {
  17577. name: "Micro",
  17578. height: math.unit(6, "inches")
  17579. },
  17580. {
  17581. name: "Mini",
  17582. height: math.unit(3, "feet")
  17583. },
  17584. {
  17585. name: "Normal",
  17586. height: math.unit(6, "feet"),
  17587. default: true
  17588. },
  17589. {
  17590. name: "Big",
  17591. height: math.unit(25, "feet")
  17592. },
  17593. {
  17594. name: "Macro",
  17595. height: math.unit(100, "feet")
  17596. },
  17597. {
  17598. name: "Megamacro",
  17599. height: math.unit(400, "feet")
  17600. },
  17601. ]
  17602. ))
  17603. characterMakers.push(() => makeCharacter(
  17604. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17605. {
  17606. front: {
  17607. height: math.unit(6, "feet"),
  17608. weight: math.unit(160, "lb"),
  17609. name: "Front",
  17610. image: {
  17611. source: "./media/characters/marcus/front.svg",
  17612. extra: 734 / 676,
  17613. bottom: 0.03
  17614. }
  17615. },
  17616. },
  17617. [
  17618. {
  17619. name: "Little",
  17620. height: math.unit(6, "feet")
  17621. },
  17622. {
  17623. name: "Normal",
  17624. height: math.unit(110, "feet"),
  17625. default: true
  17626. },
  17627. {
  17628. name: "Macro",
  17629. height: math.unit(250, "feet")
  17630. },
  17631. {
  17632. name: "Megamacro",
  17633. height: math.unit(1000, "feet")
  17634. },
  17635. ]
  17636. ))
  17637. characterMakers.push(() => makeCharacter(
  17638. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17639. {
  17640. front: {
  17641. height: math.unit(7, "feet"),
  17642. weight: math.unit(275, "lb"),
  17643. name: "Front",
  17644. image: {
  17645. source: "./media/characters/claude-delroute/front.svg",
  17646. extra: 230 / 214,
  17647. bottom: 0.007
  17648. }
  17649. },
  17650. side: {
  17651. height: math.unit(7, "feet"),
  17652. weight: math.unit(275, "lb"),
  17653. name: "Side",
  17654. image: {
  17655. source: "./media/characters/claude-delroute/side.svg",
  17656. extra: 222 / 214,
  17657. bottom: 0.01
  17658. }
  17659. },
  17660. back: {
  17661. height: math.unit(7, "feet"),
  17662. weight: math.unit(275, "lb"),
  17663. name: "Back",
  17664. image: {
  17665. source: "./media/characters/claude-delroute/back.svg",
  17666. extra: 230 / 214,
  17667. bottom: 0.015
  17668. }
  17669. },
  17670. maw: {
  17671. height: math.unit(0.6407, "meters"),
  17672. name: "Maw",
  17673. image: {
  17674. source: "./media/characters/claude-delroute/maw.svg"
  17675. }
  17676. },
  17677. },
  17678. [
  17679. {
  17680. name: "Normal",
  17681. height: math.unit(7, "feet"),
  17682. default: true
  17683. },
  17684. {
  17685. name: "Lorge",
  17686. height: math.unit(20, "feet")
  17687. },
  17688. ]
  17689. ))
  17690. characterMakers.push(() => makeCharacter(
  17691. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17692. {
  17693. front: {
  17694. height: math.unit(8 + 4 / 12, "feet"),
  17695. weight: math.unit(600, "lb"),
  17696. name: "Front",
  17697. image: {
  17698. source: "./media/characters/dragonien/front.svg",
  17699. extra: 100 / 94,
  17700. bottom: 3.3 / 103.3445
  17701. }
  17702. },
  17703. back: {
  17704. height: math.unit(8 + 4 / 12, "feet"),
  17705. weight: math.unit(600, "lb"),
  17706. name: "Back",
  17707. image: {
  17708. source: "./media/characters/dragonien/back.svg",
  17709. extra: 776 / 746,
  17710. bottom: 6.4 / 782.0616
  17711. }
  17712. },
  17713. foot: {
  17714. height: math.unit(1.54, "feet"),
  17715. name: "Foot",
  17716. image: {
  17717. source: "./media/characters/dragonien/foot.svg",
  17718. }
  17719. },
  17720. },
  17721. [
  17722. {
  17723. name: "Normal",
  17724. height: math.unit(8 + 4 / 12, "feet"),
  17725. default: true
  17726. },
  17727. {
  17728. name: "Macro",
  17729. height: math.unit(200, "feet")
  17730. },
  17731. {
  17732. name: "Megamacro",
  17733. height: math.unit(1, "mile")
  17734. },
  17735. {
  17736. name: "Gigamacro",
  17737. height: math.unit(1000, "miles")
  17738. },
  17739. ]
  17740. ))
  17741. characterMakers.push(() => makeCharacter(
  17742. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17743. {
  17744. front: {
  17745. height: math.unit(5 + 2 / 12, "feet"),
  17746. weight: math.unit(110, "lb"),
  17747. name: "Front",
  17748. image: {
  17749. source: "./media/characters/desta/front.svg",
  17750. extra: 767 / 726,
  17751. bottom: 11.7 / 779
  17752. }
  17753. },
  17754. back: {
  17755. height: math.unit(5 + 2 / 12, "feet"),
  17756. weight: math.unit(110, "lb"),
  17757. name: "Back",
  17758. image: {
  17759. source: "./media/characters/desta/back.svg",
  17760. extra: 777 / 728,
  17761. bottom: 6 / 784
  17762. }
  17763. },
  17764. frontAlt: {
  17765. height: math.unit(5 + 2 / 12, "feet"),
  17766. weight: math.unit(110, "lb"),
  17767. name: "Front",
  17768. image: {
  17769. source: "./media/characters/desta/front-alt.svg",
  17770. extra: 1482 / 1417
  17771. }
  17772. },
  17773. side: {
  17774. height: math.unit(5 + 2 / 12, "feet"),
  17775. weight: math.unit(110, "lb"),
  17776. name: "Side",
  17777. image: {
  17778. source: "./media/characters/desta/side.svg",
  17779. extra: 2579 / 2491,
  17780. bottom: 0.053
  17781. }
  17782. },
  17783. },
  17784. [
  17785. {
  17786. name: "Micro",
  17787. height: math.unit(6, "inches")
  17788. },
  17789. {
  17790. name: "Normal",
  17791. height: math.unit(5 + 2 / 12, "feet"),
  17792. default: true
  17793. },
  17794. {
  17795. name: "Macro",
  17796. height: math.unit(62, "feet")
  17797. },
  17798. {
  17799. name: "Megamacro",
  17800. height: math.unit(1800, "feet")
  17801. },
  17802. ]
  17803. ))
  17804. characterMakers.push(() => makeCharacter(
  17805. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17806. {
  17807. front: {
  17808. height: math.unit(10, "feet"),
  17809. weight: math.unit(700, "lb"),
  17810. name: "Front",
  17811. image: {
  17812. source: "./media/characters/storm-alystar/front.svg",
  17813. extra: 2112 / 1898,
  17814. bottom: 0.034
  17815. }
  17816. },
  17817. },
  17818. [
  17819. {
  17820. name: "Micro",
  17821. height: math.unit(3.5, "inches")
  17822. },
  17823. {
  17824. name: "Normal",
  17825. height: math.unit(10, "feet"),
  17826. default: true
  17827. },
  17828. {
  17829. name: "Macro",
  17830. height: math.unit(400, "feet")
  17831. },
  17832. {
  17833. name: "Deific",
  17834. height: math.unit(60, "miles")
  17835. },
  17836. ]
  17837. ))
  17838. characterMakers.push(() => makeCharacter(
  17839. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17840. {
  17841. front: {
  17842. height: math.unit(2.35, "meters"),
  17843. weight: math.unit(119, "kg"),
  17844. name: "Front",
  17845. image: {
  17846. source: "./media/characters/ilia/front.svg",
  17847. extra: 1285 / 1255,
  17848. bottom: 0.06
  17849. }
  17850. },
  17851. },
  17852. [
  17853. {
  17854. name: "Normal",
  17855. height: math.unit(2.35, "meters")
  17856. },
  17857. {
  17858. name: "Macro",
  17859. height: math.unit(140, "meters"),
  17860. default: true
  17861. },
  17862. {
  17863. name: "Megamacro",
  17864. height: math.unit(100, "miles")
  17865. },
  17866. ]
  17867. ))
  17868. characterMakers.push(() => makeCharacter(
  17869. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17870. {
  17871. front: {
  17872. height: math.unit(6 + 5 / 12, "feet"),
  17873. weight: math.unit(190, "lb"),
  17874. name: "Front",
  17875. image: {
  17876. source: "./media/characters/kingdead/front.svg",
  17877. extra: 1228 / 1177
  17878. }
  17879. },
  17880. },
  17881. [
  17882. {
  17883. name: "Micro",
  17884. height: math.unit(7, "inches")
  17885. },
  17886. {
  17887. name: "Normal",
  17888. height: math.unit(6 + 5 / 12, "feet")
  17889. },
  17890. {
  17891. name: "Macro",
  17892. height: math.unit(150, "feet"),
  17893. default: true
  17894. },
  17895. {
  17896. name: "Megamacro",
  17897. height: math.unit(200, "miles")
  17898. },
  17899. ]
  17900. ))
  17901. characterMakers.push(() => makeCharacter(
  17902. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17903. {
  17904. front: {
  17905. height: math.unit(8, "feet"),
  17906. weight: math.unit(600, "lb"),
  17907. name: "Front",
  17908. image: {
  17909. source: "./media/characters/kyrehx/front.svg",
  17910. extra: 1195 / 1095,
  17911. bottom: 0.034
  17912. }
  17913. },
  17914. },
  17915. [
  17916. {
  17917. name: "Micro",
  17918. height: math.unit(2, "inches")
  17919. },
  17920. {
  17921. name: "Normal",
  17922. height: math.unit(8, "feet"),
  17923. default: true
  17924. },
  17925. {
  17926. name: "Macro",
  17927. height: math.unit(255, "feet")
  17928. },
  17929. ]
  17930. ))
  17931. characterMakers.push(() => makeCharacter(
  17932. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17933. {
  17934. front: {
  17935. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17936. weight: math.unit(184, "lb"),
  17937. name: "Front",
  17938. image: {
  17939. source: "./media/characters/xang/front.svg",
  17940. extra: 845 / 755
  17941. }
  17942. },
  17943. },
  17944. [
  17945. {
  17946. name: "Normal",
  17947. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17948. default: true
  17949. },
  17950. {
  17951. name: "Macro",
  17952. height: math.unit(0.935 * 146, "feet")
  17953. },
  17954. {
  17955. name: "Megamacro",
  17956. height: math.unit(0.935 * 3, "miles")
  17957. },
  17958. ]
  17959. ))
  17960. characterMakers.push(() => makeCharacter(
  17961. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17962. {
  17963. frontDressed: {
  17964. height: math.unit(5 + 7 / 12, "feet"),
  17965. weight: math.unit(140, "lb"),
  17966. name: "Front (Dressed)",
  17967. image: {
  17968. source: "./media/characters/doc-weardno/front-dressed.svg",
  17969. extra: 263 / 234
  17970. }
  17971. },
  17972. backDressed: {
  17973. height: math.unit(5 + 7 / 12, "feet"),
  17974. weight: math.unit(140, "lb"),
  17975. name: "Back (Dressed)",
  17976. image: {
  17977. source: "./media/characters/doc-weardno/back-dressed.svg",
  17978. extra: 266 / 238
  17979. }
  17980. },
  17981. front: {
  17982. height: math.unit(5 + 7 / 12, "feet"),
  17983. weight: math.unit(140, "lb"),
  17984. name: "Front",
  17985. image: {
  17986. source: "./media/characters/doc-weardno/front.svg",
  17987. extra: 254 / 233
  17988. }
  17989. },
  17990. },
  17991. [
  17992. {
  17993. name: "Micro",
  17994. height: math.unit(3, "inches")
  17995. },
  17996. {
  17997. name: "Normal",
  17998. height: math.unit(5 + 7 / 12, "feet"),
  17999. default: true
  18000. },
  18001. {
  18002. name: "Macro",
  18003. height: math.unit(25, "feet")
  18004. },
  18005. {
  18006. name: "Megamacro",
  18007. height: math.unit(2, "miles")
  18008. },
  18009. ]
  18010. ))
  18011. characterMakers.push(() => makeCharacter(
  18012. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18013. {
  18014. front: {
  18015. height: math.unit(6 + 2 / 12, "feet"),
  18016. weight: math.unit(153, "lb"),
  18017. name: "Front",
  18018. image: {
  18019. source: "./media/characters/seth-whilst/front.svg",
  18020. bottom: 0.07
  18021. }
  18022. },
  18023. },
  18024. [
  18025. {
  18026. name: "Micro",
  18027. height: math.unit(5, "inches")
  18028. },
  18029. {
  18030. name: "Normal",
  18031. height: math.unit(6 + 2 / 12, "feet"),
  18032. default: true
  18033. },
  18034. ]
  18035. ))
  18036. characterMakers.push(() => makeCharacter(
  18037. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18038. {
  18039. front: {
  18040. height: math.unit(3, "inches"),
  18041. weight: math.unit(8, "grams"),
  18042. name: "Front",
  18043. image: {
  18044. source: "./media/characters/pocket-jabari/front.svg",
  18045. extra: 1024 / 974,
  18046. bottom: 0.039
  18047. }
  18048. },
  18049. },
  18050. [
  18051. {
  18052. name: "Minimicro",
  18053. height: math.unit(8, "mm")
  18054. },
  18055. {
  18056. name: "Micro",
  18057. height: math.unit(3, "inches"),
  18058. default: true
  18059. },
  18060. {
  18061. name: "Normal",
  18062. height: math.unit(3, "feet")
  18063. },
  18064. ]
  18065. ))
  18066. characterMakers.push(() => makeCharacter(
  18067. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18068. {
  18069. front: {
  18070. height: math.unit(15, "feet"),
  18071. weight: math.unit(3280, "lb"),
  18072. name: "Front",
  18073. image: {
  18074. source: "./media/characters/sapphy/front.svg",
  18075. extra: 671 / 577,
  18076. bottom: 0.085
  18077. }
  18078. },
  18079. back: {
  18080. height: math.unit(15, "feet"),
  18081. weight: math.unit(3280, "lb"),
  18082. name: "Back",
  18083. image: {
  18084. source: "./media/characters/sapphy/back.svg",
  18085. extra: 631 / 607,
  18086. bottom: 0.045
  18087. }
  18088. },
  18089. },
  18090. [
  18091. {
  18092. name: "Normal",
  18093. height: math.unit(15, "feet")
  18094. },
  18095. {
  18096. name: "Casual Macro",
  18097. height: math.unit(120, "feet")
  18098. },
  18099. {
  18100. name: "Macro",
  18101. height: math.unit(2150, "feet"),
  18102. default: true
  18103. },
  18104. {
  18105. name: "Megamacro",
  18106. height: math.unit(8, "miles")
  18107. },
  18108. {
  18109. name: "Galaxy Mom",
  18110. height: math.unit(6, "megalightyears")
  18111. },
  18112. ]
  18113. ))
  18114. characterMakers.push(() => makeCharacter(
  18115. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  18116. {
  18117. front: {
  18118. height: math.unit(6, "feet"),
  18119. weight: math.unit(170, "lb"),
  18120. name: "Front",
  18121. image: {
  18122. source: "./media/characters/kiro/front.svg",
  18123. extra: 1064 / 1012,
  18124. bottom: 0.052
  18125. }
  18126. },
  18127. },
  18128. [
  18129. {
  18130. name: "Micro",
  18131. height: math.unit(6, "inches")
  18132. },
  18133. {
  18134. name: "Normal",
  18135. height: math.unit(6, "feet"),
  18136. default: true
  18137. },
  18138. {
  18139. name: "Macro",
  18140. height: math.unit(72, "feet")
  18141. },
  18142. ]
  18143. ))
  18144. characterMakers.push(() => makeCharacter(
  18145. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18146. {
  18147. front: {
  18148. height: math.unit(5 + 9 / 12, "feet"),
  18149. weight: math.unit(175, "lb"),
  18150. name: "Front",
  18151. image: {
  18152. source: "./media/characters/irishfox/front.svg",
  18153. extra: 1912 / 1680,
  18154. bottom: 0.02
  18155. }
  18156. },
  18157. },
  18158. [
  18159. {
  18160. name: "Nano",
  18161. height: math.unit(1, "mm")
  18162. },
  18163. {
  18164. name: "Micro",
  18165. height: math.unit(2, "inches")
  18166. },
  18167. {
  18168. name: "Normal",
  18169. height: math.unit(5 + 9 / 12, "feet"),
  18170. default: true
  18171. },
  18172. {
  18173. name: "Macro",
  18174. height: math.unit(45, "feet")
  18175. },
  18176. ]
  18177. ))
  18178. characterMakers.push(() => makeCharacter(
  18179. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18180. {
  18181. front: {
  18182. height: math.unit(6 + 1 / 12, "feet"),
  18183. weight: math.unit(150, "lb"),
  18184. name: "Front",
  18185. image: {
  18186. source: "./media/characters/aronai-sieyes/front.svg",
  18187. extra: 1556 / 1480,
  18188. bottom: 0.015
  18189. }
  18190. },
  18191. side: {
  18192. height: math.unit(6 + 1 / 12, "feet"),
  18193. weight: math.unit(150, "lb"),
  18194. name: "Side",
  18195. image: {
  18196. source: "./media/characters/aronai-sieyes/side.svg",
  18197. extra: 1433 / 1390,
  18198. bottom: 0.0393
  18199. }
  18200. },
  18201. back: {
  18202. height: math.unit(6 + 1 / 12, "feet"),
  18203. weight: math.unit(150, "lb"),
  18204. name: "Back",
  18205. image: {
  18206. source: "./media/characters/aronai-sieyes/back.svg",
  18207. extra: 1544 / 1494,
  18208. bottom: 0.02
  18209. }
  18210. },
  18211. frontClothed: {
  18212. height: math.unit(6 + 1 / 12, "feet"),
  18213. weight: math.unit(150, "lb"),
  18214. name: "Front (Clothed)",
  18215. image: {
  18216. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18217. extra: 1582 / 1527
  18218. }
  18219. },
  18220. feral: {
  18221. height: math.unit(18, "feet"),
  18222. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  18223. name: "Feral",
  18224. image: {
  18225. source: "./media/characters/aronai-sieyes/feral.svg",
  18226. extra: 1530 / 1240,
  18227. bottom: 0.035
  18228. }
  18229. },
  18230. },
  18231. [
  18232. {
  18233. name: "Micro",
  18234. height: math.unit(2, "inches")
  18235. },
  18236. {
  18237. name: "Normal",
  18238. height: math.unit(6 + 1 / 12, "feet"),
  18239. default: true
  18240. }
  18241. ]
  18242. ))
  18243. characterMakers.push(() => makeCharacter(
  18244. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18245. {
  18246. front: {
  18247. height: math.unit(12, "feet"),
  18248. weight: math.unit(410, "kg"),
  18249. name: "Front",
  18250. image: {
  18251. source: "./media/characters/xuna/front.svg",
  18252. extra: 2184 / 1980
  18253. }
  18254. },
  18255. side: {
  18256. height: math.unit(12, "feet"),
  18257. weight: math.unit(410, "kg"),
  18258. name: "Side",
  18259. image: {
  18260. source: "./media/characters/xuna/side.svg",
  18261. extra: 2184 / 1980
  18262. }
  18263. },
  18264. back: {
  18265. height: math.unit(12, "feet"),
  18266. weight: math.unit(410, "kg"),
  18267. name: "Back",
  18268. image: {
  18269. source: "./media/characters/xuna/back.svg",
  18270. extra: 2184 / 1980
  18271. }
  18272. },
  18273. },
  18274. [
  18275. {
  18276. name: "Nano glow",
  18277. height: math.unit(10, "nm")
  18278. },
  18279. {
  18280. name: "Micro floof",
  18281. height: math.unit(0.3, "m")
  18282. },
  18283. {
  18284. name: "Huggable softy boi",
  18285. height: math.unit(3.6576, "m"),
  18286. default: true
  18287. },
  18288. {
  18289. name: "Admirable floof",
  18290. height: math.unit(80, "meters")
  18291. },
  18292. {
  18293. name: "Gentle macro",
  18294. height: math.unit(300, "meters")
  18295. },
  18296. {
  18297. name: "Very careful floof",
  18298. height: math.unit(3200, "meters")
  18299. },
  18300. {
  18301. name: "The mega floof",
  18302. height: math.unit(36000, "meters")
  18303. },
  18304. {
  18305. name: "Giga-fur-Wicker",
  18306. height: math.unit(4800000, "meters")
  18307. },
  18308. {
  18309. name: "Licky world",
  18310. height: math.unit(20000000, "meters")
  18311. },
  18312. {
  18313. name: "Floofy cyan sun",
  18314. height: math.unit(1500000000, "meters")
  18315. },
  18316. {
  18317. name: "Milky Wicker",
  18318. height: math.unit(1000000000000000000000, "meters")
  18319. },
  18320. {
  18321. name: "The observing Wicker",
  18322. height: math.unit(999999999999999999999999999, "meters")
  18323. },
  18324. ]
  18325. ))
  18326. characterMakers.push(() => makeCharacter(
  18327. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18328. {
  18329. front: {
  18330. height: math.unit(5 + 9 / 12, "feet"),
  18331. weight: math.unit(150, "lb"),
  18332. name: "Front",
  18333. image: {
  18334. source: "./media/characters/arokha-sieyes/front.svg",
  18335. extra: 1425 / 1284,
  18336. bottom: 0.05
  18337. }
  18338. },
  18339. },
  18340. [
  18341. {
  18342. name: "Normal",
  18343. height: math.unit(5 + 9 / 12, "feet")
  18344. },
  18345. {
  18346. name: "Macro",
  18347. height: math.unit(30, "meters"),
  18348. default: true
  18349. },
  18350. ]
  18351. ))
  18352. characterMakers.push(() => makeCharacter(
  18353. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18354. {
  18355. front: {
  18356. height: math.unit(6, "feet"),
  18357. weight: math.unit(180, "lb"),
  18358. name: "Front",
  18359. image: {
  18360. source: "./media/characters/arokh-sieyes/front.svg",
  18361. extra: 1830 / 1769,
  18362. bottom: 0.01
  18363. }
  18364. },
  18365. },
  18366. [
  18367. {
  18368. name: "Normal",
  18369. height: math.unit(6, "feet")
  18370. },
  18371. {
  18372. name: "Macro",
  18373. height: math.unit(30, "meters"),
  18374. default: true
  18375. },
  18376. ]
  18377. ))
  18378. characterMakers.push(() => makeCharacter(
  18379. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18380. {
  18381. side: {
  18382. height: math.unit(13 + 1 / 12, "feet"),
  18383. weight: math.unit(8.5, "tonnes"),
  18384. name: "Side",
  18385. image: {
  18386. source: "./media/characters/goldeneye/side.svg",
  18387. extra: 1182 / 778,
  18388. bottom: 0.067
  18389. }
  18390. },
  18391. paw: {
  18392. height: math.unit(3.4, "feet"),
  18393. name: "Paw",
  18394. image: {
  18395. source: "./media/characters/goldeneye/paw.svg"
  18396. }
  18397. },
  18398. },
  18399. [
  18400. {
  18401. name: "Normal",
  18402. height: math.unit(13 + 1 / 12, "feet"),
  18403. default: true
  18404. },
  18405. ]
  18406. ))
  18407. characterMakers.push(() => makeCharacter(
  18408. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18409. {
  18410. front: {
  18411. height: math.unit(6 + 1 / 12, "feet"),
  18412. weight: math.unit(210, "lb"),
  18413. name: "Front",
  18414. image: {
  18415. source: "./media/characters/leonardo-lycheborne/front.svg",
  18416. extra: 390 / 365,
  18417. bottom: 0.032
  18418. }
  18419. },
  18420. side: {
  18421. height: math.unit(6 + 1 / 12, "feet"),
  18422. weight: math.unit(210, "lb"),
  18423. name: "Side",
  18424. image: {
  18425. source: "./media/characters/leonardo-lycheborne/side.svg",
  18426. extra: 390 / 365,
  18427. bottom: 0.005
  18428. }
  18429. },
  18430. back: {
  18431. height: math.unit(6 + 1 / 12, "feet"),
  18432. weight: math.unit(210, "lb"),
  18433. name: "Back",
  18434. image: {
  18435. source: "./media/characters/leonardo-lycheborne/back.svg",
  18436. extra: 392 / 366,
  18437. bottom: 0.01
  18438. }
  18439. },
  18440. hand: {
  18441. height: math.unit(1.08, "feet"),
  18442. name: "Hand",
  18443. image: {
  18444. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18445. }
  18446. },
  18447. foot: {
  18448. height: math.unit(1.32, "feet"),
  18449. name: "Foot",
  18450. image: {
  18451. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18452. }
  18453. },
  18454. were: {
  18455. height: math.unit(20, "feet"),
  18456. weight: math.unit(7800, "lb"),
  18457. name: "Were",
  18458. image: {
  18459. source: "./media/characters/leonardo-lycheborne/were.svg",
  18460. extra: 308 / 294,
  18461. bottom: 0.048
  18462. }
  18463. },
  18464. feral: {
  18465. height: math.unit(7.5, "feet"),
  18466. weight: math.unit(600, "lb"),
  18467. name: "Feral",
  18468. image: {
  18469. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18470. extra: 210 / 186,
  18471. bottom: 0.108
  18472. }
  18473. },
  18474. taur: {
  18475. height: math.unit(11, "feet"),
  18476. weight: math.unit(3300, "lb"),
  18477. name: "Taur",
  18478. image: {
  18479. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18480. extra: 320 / 303,
  18481. bottom: 0.025
  18482. }
  18483. },
  18484. barghest: {
  18485. height: math.unit(11, "feet"),
  18486. weight: math.unit(1300, "lb"),
  18487. name: "Barghest",
  18488. image: {
  18489. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18490. extra: 323 / 302,
  18491. bottom: 0.027
  18492. }
  18493. },
  18494. dick: {
  18495. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18496. name: "Dick",
  18497. image: {
  18498. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18499. }
  18500. },
  18501. dickWere: {
  18502. height: math.unit((20) / 3.8, "feet"),
  18503. name: "Dick (Were)",
  18504. image: {
  18505. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18506. }
  18507. },
  18508. },
  18509. [
  18510. {
  18511. name: "Normal",
  18512. height: math.unit(6 + 1 / 12, "feet"),
  18513. default: true
  18514. },
  18515. ]
  18516. ))
  18517. characterMakers.push(() => makeCharacter(
  18518. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18519. {
  18520. front: {
  18521. height: math.unit(10, "feet"),
  18522. weight: math.unit(350, "lb"),
  18523. name: "Front",
  18524. image: {
  18525. source: "./media/characters/jet/front.svg",
  18526. extra: 2050 / 1980,
  18527. bottom: 0.013
  18528. }
  18529. },
  18530. back: {
  18531. height: math.unit(10, "feet"),
  18532. weight: math.unit(350, "lb"),
  18533. name: "Back",
  18534. image: {
  18535. source: "./media/characters/jet/back.svg",
  18536. extra: 2050 / 1980,
  18537. bottom: 0.013
  18538. }
  18539. },
  18540. },
  18541. [
  18542. {
  18543. name: "Micro",
  18544. height: math.unit(6, "inches")
  18545. },
  18546. {
  18547. name: "Normal",
  18548. height: math.unit(10, "feet"),
  18549. default: true
  18550. },
  18551. {
  18552. name: "Macro",
  18553. height: math.unit(100, "feet")
  18554. },
  18555. ]
  18556. ))
  18557. characterMakers.push(() => makeCharacter(
  18558. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18559. {
  18560. front: {
  18561. height: math.unit(15, "feet"),
  18562. weight: math.unit(2800, "lb"),
  18563. name: "Front",
  18564. image: {
  18565. source: "./media/characters/tanarath/front.svg",
  18566. extra: 2392 / 2220,
  18567. bottom: 0.03
  18568. }
  18569. },
  18570. back: {
  18571. height: math.unit(15, "feet"),
  18572. weight: math.unit(2800, "lb"),
  18573. name: "Back",
  18574. image: {
  18575. source: "./media/characters/tanarath/back.svg",
  18576. extra: 2392 / 2220,
  18577. bottom: 0.03
  18578. }
  18579. },
  18580. },
  18581. [
  18582. {
  18583. name: "Normal",
  18584. height: math.unit(15, "feet"),
  18585. default: true
  18586. },
  18587. ]
  18588. ))
  18589. characterMakers.push(() => makeCharacter(
  18590. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18591. {
  18592. front: {
  18593. height: math.unit(7 + 1 / 12, "feet"),
  18594. weight: math.unit(175, "lb"),
  18595. name: "Front",
  18596. image: {
  18597. source: "./media/characters/patty-cattybatty/front.svg",
  18598. extra: 908 / 874,
  18599. bottom: 0.025
  18600. }
  18601. },
  18602. },
  18603. [
  18604. {
  18605. name: "Micro",
  18606. height: math.unit(1, "inch")
  18607. },
  18608. {
  18609. name: "Normal",
  18610. height: math.unit(7 + 1 / 12, "feet")
  18611. },
  18612. {
  18613. name: "Mini Macro",
  18614. height: math.unit(155, "feet")
  18615. },
  18616. {
  18617. name: "Macro",
  18618. height: math.unit(1077, "feet")
  18619. },
  18620. {
  18621. name: "Mega Macro",
  18622. height: math.unit(47650, "feet"),
  18623. default: true
  18624. },
  18625. {
  18626. name: "Giga Macro",
  18627. height: math.unit(440, "miles")
  18628. },
  18629. {
  18630. name: "Tera Macro",
  18631. height: math.unit(8700, "miles")
  18632. },
  18633. {
  18634. name: "Planetary Macro",
  18635. height: math.unit(32700, "miles")
  18636. },
  18637. {
  18638. name: "Solar Macro",
  18639. height: math.unit(550000, "miles")
  18640. },
  18641. {
  18642. name: "Celestial Macro",
  18643. height: math.unit(2.5, "AU")
  18644. },
  18645. ]
  18646. ))
  18647. characterMakers.push(() => makeCharacter(
  18648. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18649. {
  18650. front: {
  18651. height: math.unit(4 + 5 / 12, "feet"),
  18652. weight: math.unit(90, "lb"),
  18653. name: "Front",
  18654. image: {
  18655. source: "./media/characters/cappu/front.svg",
  18656. extra: 1247 / 1152,
  18657. bottom: 0.012
  18658. }
  18659. },
  18660. },
  18661. [
  18662. {
  18663. name: "Normal",
  18664. height: math.unit(4 + 5 / 12, "feet"),
  18665. default: true
  18666. },
  18667. ]
  18668. ))
  18669. characterMakers.push(() => makeCharacter(
  18670. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18671. {
  18672. frontDressed: {
  18673. height: math.unit(70, "cm"),
  18674. weight: math.unit(6, "kg"),
  18675. name: "Front (Dressed)",
  18676. image: {
  18677. source: "./media/characters/sebi/front-dressed.svg",
  18678. extra: 713.5 / 686.5,
  18679. bottom: 0.003
  18680. }
  18681. },
  18682. front: {
  18683. height: math.unit(70, "cm"),
  18684. weight: math.unit(5, "kg"),
  18685. name: "Front",
  18686. image: {
  18687. source: "./media/characters/sebi/front.svg",
  18688. extra: 713.5 / 686.5,
  18689. bottom: 0.003
  18690. }
  18691. }
  18692. },
  18693. [
  18694. {
  18695. name: "Normal",
  18696. height: math.unit(70, "cm"),
  18697. default: true
  18698. },
  18699. {
  18700. name: "Macro",
  18701. height: math.unit(8, "meters")
  18702. },
  18703. ]
  18704. ))
  18705. characterMakers.push(() => makeCharacter(
  18706. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18707. {
  18708. front: {
  18709. height: math.unit(6, "feet"),
  18710. weight: math.unit(150, "lb"),
  18711. name: "Front",
  18712. image: {
  18713. source: "./media/characters/typhek/front.svg",
  18714. extra: 1948 / 1929,
  18715. bottom: 0.025
  18716. }
  18717. },
  18718. side: {
  18719. height: math.unit(6, "feet"),
  18720. weight: math.unit(150, "lb"),
  18721. name: "Side",
  18722. image: {
  18723. source: "./media/characters/typhek/side.svg",
  18724. extra: 2034 / 2010,
  18725. bottom: 0.003
  18726. }
  18727. },
  18728. back: {
  18729. height: math.unit(6, "feet"),
  18730. weight: math.unit(150, "lb"),
  18731. name: "Back",
  18732. image: {
  18733. source: "./media/characters/typhek/back.svg",
  18734. extra: 2005 / 1978,
  18735. bottom: 0.004
  18736. }
  18737. },
  18738. palm: {
  18739. height: math.unit(1.2, "feet"),
  18740. name: "Palm",
  18741. image: {
  18742. source: "./media/characters/typhek/palm.svg"
  18743. }
  18744. },
  18745. fist: {
  18746. height: math.unit(1.1, "feet"),
  18747. name: "Fist",
  18748. image: {
  18749. source: "./media/characters/typhek/fist.svg"
  18750. }
  18751. },
  18752. foot: {
  18753. height: math.unit(1.57, "feet"),
  18754. name: "Foot",
  18755. image: {
  18756. source: "./media/characters/typhek/foot.svg"
  18757. }
  18758. },
  18759. sole: {
  18760. height: math.unit(2.05, "feet"),
  18761. name: "Sole",
  18762. image: {
  18763. source: "./media/characters/typhek/sole.svg"
  18764. }
  18765. },
  18766. },
  18767. [
  18768. {
  18769. name: "Macro",
  18770. height: math.unit(40, "stories"),
  18771. default: true
  18772. },
  18773. {
  18774. name: "Megamacro",
  18775. height: math.unit(1, "mile")
  18776. },
  18777. {
  18778. name: "Gigamacro",
  18779. height: math.unit(4000, "solarradii")
  18780. },
  18781. {
  18782. name: "Universal",
  18783. height: math.unit(1.1, "universes")
  18784. }
  18785. ]
  18786. ))
  18787. characterMakers.push(() => makeCharacter(
  18788. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18789. {
  18790. side: {
  18791. height: math.unit(5 + 7 / 12, "feet"),
  18792. weight: math.unit(150, "lb"),
  18793. name: "Side",
  18794. image: {
  18795. source: "./media/characters/kassy/side.svg",
  18796. extra: 1280 / 1225,
  18797. bottom: 0.002
  18798. }
  18799. },
  18800. front: {
  18801. height: math.unit(5 + 7 / 12, "feet"),
  18802. weight: math.unit(150, "lb"),
  18803. name: "Front",
  18804. image: {
  18805. source: "./media/characters/kassy/front.svg",
  18806. extra: 1280 / 1225,
  18807. bottom: 0.025
  18808. }
  18809. },
  18810. back: {
  18811. height: math.unit(5 + 7 / 12, "feet"),
  18812. weight: math.unit(150, "lb"),
  18813. name: "Back",
  18814. image: {
  18815. source: "./media/characters/kassy/back.svg",
  18816. extra: 1280 / 1225,
  18817. bottom: 0.002
  18818. }
  18819. },
  18820. foot: {
  18821. height: math.unit(1.266, "feet"),
  18822. name: "Foot",
  18823. image: {
  18824. source: "./media/characters/kassy/foot.svg"
  18825. }
  18826. },
  18827. },
  18828. [
  18829. {
  18830. name: "Normal",
  18831. height: math.unit(5 + 7 / 12, "feet")
  18832. },
  18833. {
  18834. name: "Macro",
  18835. height: math.unit(137, "feet"),
  18836. default: true
  18837. },
  18838. {
  18839. name: "Megamacro",
  18840. height: math.unit(1, "mile")
  18841. },
  18842. ]
  18843. ))
  18844. characterMakers.push(() => makeCharacter(
  18845. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18846. {
  18847. front: {
  18848. height: math.unit(6 + 1 / 12, "feet"),
  18849. weight: math.unit(200, "lb"),
  18850. name: "Front",
  18851. image: {
  18852. source: "./media/characters/neil/front.svg",
  18853. extra: 1326 / 1250,
  18854. bottom: 0.023
  18855. }
  18856. },
  18857. },
  18858. [
  18859. {
  18860. name: "Normal",
  18861. height: math.unit(6 + 1 / 12, "feet"),
  18862. default: true
  18863. },
  18864. {
  18865. name: "Macro",
  18866. height: math.unit(200, "feet")
  18867. },
  18868. ]
  18869. ))
  18870. characterMakers.push(() => makeCharacter(
  18871. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18872. {
  18873. front: {
  18874. height: math.unit(5 + 9 / 12, "feet"),
  18875. weight: math.unit(190, "lb"),
  18876. name: "Front",
  18877. image: {
  18878. source: "./media/characters/atticus/front.svg",
  18879. extra: 2934 / 2785,
  18880. bottom: 0.025
  18881. }
  18882. },
  18883. },
  18884. [
  18885. {
  18886. name: "Normal",
  18887. height: math.unit(5 + 9 / 12, "feet"),
  18888. default: true
  18889. },
  18890. {
  18891. name: "Macro",
  18892. height: math.unit(180, "feet")
  18893. },
  18894. ]
  18895. ))
  18896. characterMakers.push(() => makeCharacter(
  18897. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18898. {
  18899. side: {
  18900. height: math.unit(9, "feet"),
  18901. weight: math.unit(650, "lb"),
  18902. name: "Side",
  18903. image: {
  18904. source: "./media/characters/milo/side.svg",
  18905. extra: 2644 / 2310,
  18906. bottom: 0.032
  18907. }
  18908. },
  18909. },
  18910. [
  18911. {
  18912. name: "Normal",
  18913. height: math.unit(9, "feet"),
  18914. default: true
  18915. },
  18916. {
  18917. name: "Macro",
  18918. height: math.unit(300, "feet")
  18919. },
  18920. ]
  18921. ))
  18922. characterMakers.push(() => makeCharacter(
  18923. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18924. {
  18925. side: {
  18926. height: math.unit(8, "meters"),
  18927. weight: math.unit(90000, "kg"),
  18928. name: "Side",
  18929. image: {
  18930. source: "./media/characters/ijzer/side.svg",
  18931. extra: 2756 / 1600,
  18932. bottom: 0.01
  18933. }
  18934. },
  18935. },
  18936. [
  18937. {
  18938. name: "Small",
  18939. height: math.unit(3, "meters")
  18940. },
  18941. {
  18942. name: "Normal",
  18943. height: math.unit(8, "meters"),
  18944. default: true
  18945. },
  18946. {
  18947. name: "Normal+",
  18948. height: math.unit(10, "meters")
  18949. },
  18950. {
  18951. name: "Bigger",
  18952. height: math.unit(24, "meters")
  18953. },
  18954. {
  18955. name: "Huge",
  18956. height: math.unit(80, "meters")
  18957. },
  18958. ]
  18959. ))
  18960. characterMakers.push(() => makeCharacter(
  18961. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18962. {
  18963. front: {
  18964. height: math.unit(6 + 2 / 12, "feet"),
  18965. weight: math.unit(153, "lb"),
  18966. name: "Front",
  18967. image: {
  18968. source: "./media/characters/luca-cervicum/front.svg",
  18969. extra: 370 / 327,
  18970. bottom: 0.015
  18971. }
  18972. },
  18973. back: {
  18974. height: math.unit(6 + 2 / 12, "feet"),
  18975. weight: math.unit(153, "lb"),
  18976. name: "Back",
  18977. image: {
  18978. source: "./media/characters/luca-cervicum/back.svg",
  18979. extra: 367 / 333,
  18980. bottom: 0.005
  18981. }
  18982. },
  18983. frontGear: {
  18984. height: math.unit(6 + 2 / 12, "feet"),
  18985. weight: math.unit(173, "lb"),
  18986. name: "Front (Gear)",
  18987. image: {
  18988. source: "./media/characters/luca-cervicum/front-gear.svg",
  18989. extra: 377 / 333,
  18990. bottom: 0.006
  18991. }
  18992. },
  18993. },
  18994. [
  18995. {
  18996. name: "Normal",
  18997. height: math.unit(6 + 2 / 12, "feet"),
  18998. default: true
  18999. },
  19000. ]
  19001. ))
  19002. characterMakers.push(() => makeCharacter(
  19003. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19004. {
  19005. front: {
  19006. height: math.unit(6 + 1 / 12, "feet"),
  19007. weight: math.unit(304, "lb"),
  19008. name: "Front",
  19009. image: {
  19010. source: "./media/characters/oliver/front.svg",
  19011. extra: 157 / 143,
  19012. bottom: 0.08
  19013. }
  19014. },
  19015. },
  19016. [
  19017. {
  19018. name: "Normal",
  19019. height: math.unit(6 + 1 / 12, "feet"),
  19020. default: true
  19021. },
  19022. ]
  19023. ))
  19024. characterMakers.push(() => makeCharacter(
  19025. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19026. {
  19027. front: {
  19028. height: math.unit(5 + 7 / 12, "feet"),
  19029. weight: math.unit(140, "lb"),
  19030. name: "Front",
  19031. image: {
  19032. source: "./media/characters/shane/front.svg",
  19033. extra: 304 / 289,
  19034. bottom: 0.005
  19035. }
  19036. },
  19037. },
  19038. [
  19039. {
  19040. name: "Normal",
  19041. height: math.unit(5 + 7 / 12, "feet"),
  19042. default: true
  19043. },
  19044. ]
  19045. ))
  19046. characterMakers.push(() => makeCharacter(
  19047. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19048. {
  19049. front: {
  19050. height: math.unit(5 + 9 / 12, "feet"),
  19051. weight: math.unit(178, "lb"),
  19052. name: "Front",
  19053. image: {
  19054. source: "./media/characters/shin/front.svg",
  19055. extra: 159 / 151,
  19056. bottom: 0.015
  19057. }
  19058. },
  19059. },
  19060. [
  19061. {
  19062. name: "Normal",
  19063. height: math.unit(5 + 9 / 12, "feet"),
  19064. default: true
  19065. },
  19066. ]
  19067. ))
  19068. characterMakers.push(() => makeCharacter(
  19069. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19070. {
  19071. front: {
  19072. height: math.unit(5 + 10 / 12, "feet"),
  19073. weight: math.unit(168, "lb"),
  19074. name: "Front",
  19075. image: {
  19076. source: "./media/characters/xerxes/front.svg",
  19077. extra: 282 / 260,
  19078. bottom: 0.045
  19079. }
  19080. },
  19081. },
  19082. [
  19083. {
  19084. name: "Normal",
  19085. height: math.unit(5 + 10 / 12, "feet"),
  19086. default: true
  19087. },
  19088. ]
  19089. ))
  19090. characterMakers.push(() => makeCharacter(
  19091. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19092. {
  19093. front: {
  19094. height: math.unit(6 + 7 / 12, "feet"),
  19095. weight: math.unit(208, "lb"),
  19096. name: "Front",
  19097. image: {
  19098. source: "./media/characters/chaska/front.svg",
  19099. extra: 332 / 319,
  19100. bottom: 0.015
  19101. }
  19102. },
  19103. },
  19104. [
  19105. {
  19106. name: "Normal",
  19107. height: math.unit(6 + 7 / 12, "feet"),
  19108. default: true
  19109. },
  19110. ]
  19111. ))
  19112. characterMakers.push(() => makeCharacter(
  19113. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19114. {
  19115. front: {
  19116. height: math.unit(5 + 8 / 12, "feet"),
  19117. weight: math.unit(208, "lb"),
  19118. name: "Front",
  19119. image: {
  19120. source: "./media/characters/enuk/front.svg",
  19121. extra: 437 / 406,
  19122. bottom: 0.02
  19123. }
  19124. },
  19125. },
  19126. [
  19127. {
  19128. name: "Normal",
  19129. height: math.unit(5 + 8 / 12, "feet"),
  19130. default: true
  19131. },
  19132. ]
  19133. ))
  19134. characterMakers.push(() => makeCharacter(
  19135. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19136. {
  19137. front: {
  19138. height: math.unit(5 + 10 / 12, "feet"),
  19139. weight: math.unit(252, "lb"),
  19140. name: "Front",
  19141. image: {
  19142. source: "./media/characters/bruun/front.svg",
  19143. extra: 197 / 187,
  19144. bottom: 0.012
  19145. }
  19146. },
  19147. },
  19148. [
  19149. {
  19150. name: "Normal",
  19151. height: math.unit(5 + 10 / 12, "feet"),
  19152. default: true
  19153. },
  19154. ]
  19155. ))
  19156. characterMakers.push(() => makeCharacter(
  19157. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19158. {
  19159. front: {
  19160. height: math.unit(6 + 10 / 12, "feet"),
  19161. weight: math.unit(255, "lb"),
  19162. name: "Front",
  19163. image: {
  19164. source: "./media/characters/alexeev/front.svg",
  19165. extra: 213 / 200,
  19166. bottom: 0.05
  19167. }
  19168. },
  19169. },
  19170. [
  19171. {
  19172. name: "Normal",
  19173. height: math.unit(6 + 10 / 12, "feet"),
  19174. default: true
  19175. },
  19176. ]
  19177. ))
  19178. characterMakers.push(() => makeCharacter(
  19179. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19180. {
  19181. front: {
  19182. height: math.unit(2 + 8 / 12, "feet"),
  19183. weight: math.unit(22, "lb"),
  19184. name: "Front",
  19185. image: {
  19186. source: "./media/characters/evelyn/front.svg",
  19187. extra: 208 / 180
  19188. }
  19189. },
  19190. },
  19191. [
  19192. {
  19193. name: "Normal",
  19194. height: math.unit(2 + 8 / 12, "feet"),
  19195. default: true
  19196. },
  19197. ]
  19198. ))
  19199. characterMakers.push(() => makeCharacter(
  19200. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19201. {
  19202. front: {
  19203. height: math.unit(5 + 9 / 12, "feet"),
  19204. weight: math.unit(139, "lb"),
  19205. name: "Front",
  19206. image: {
  19207. source: "./media/characters/inca/front.svg",
  19208. extra: 294 / 291,
  19209. bottom: 0.03
  19210. }
  19211. },
  19212. },
  19213. [
  19214. {
  19215. name: "Normal",
  19216. height: math.unit(5 + 9 / 12, "feet"),
  19217. default: true
  19218. },
  19219. ]
  19220. ))
  19221. characterMakers.push(() => makeCharacter(
  19222. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19223. {
  19224. front: {
  19225. height: math.unit(5 + 1 / 12, "feet"),
  19226. weight: math.unit(84, "lb"),
  19227. name: "Front",
  19228. image: {
  19229. source: "./media/characters/magdalene/front.svg",
  19230. extra: 293 / 273
  19231. }
  19232. },
  19233. },
  19234. [
  19235. {
  19236. name: "Normal",
  19237. height: math.unit(5 + 1 / 12, "feet"),
  19238. default: true
  19239. },
  19240. ]
  19241. ))
  19242. characterMakers.push(() => makeCharacter(
  19243. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19244. {
  19245. front: {
  19246. height: math.unit(6 + 3 / 12, "feet"),
  19247. weight: math.unit(185, "lb"),
  19248. name: "Front",
  19249. image: {
  19250. source: "./media/characters/mera/front.svg",
  19251. extra: 291 / 277,
  19252. bottom: 0.03
  19253. }
  19254. },
  19255. },
  19256. [
  19257. {
  19258. name: "Normal",
  19259. height: math.unit(6 + 3 / 12, "feet"),
  19260. default: true
  19261. },
  19262. ]
  19263. ))
  19264. characterMakers.push(() => makeCharacter(
  19265. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19266. {
  19267. front: {
  19268. height: math.unit(6 + 7 / 12, "feet"),
  19269. weight: math.unit(160, "lb"),
  19270. name: "Front",
  19271. image: {
  19272. source: "./media/characters/ceres/front.svg",
  19273. extra: 1023 / 950,
  19274. bottom: 0.027
  19275. }
  19276. },
  19277. back: {
  19278. height: math.unit(6 + 7 / 12, "feet"),
  19279. weight: math.unit(160, "lb"),
  19280. name: "Back",
  19281. image: {
  19282. source: "./media/characters/ceres/back.svg",
  19283. extra: 1023 / 950
  19284. }
  19285. },
  19286. },
  19287. [
  19288. {
  19289. name: "Normal",
  19290. height: math.unit(6 + 7 / 12, "feet"),
  19291. default: true
  19292. },
  19293. ]
  19294. ))
  19295. characterMakers.push(() => makeCharacter(
  19296. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19297. {
  19298. front: {
  19299. height: math.unit(5 + 10 / 12, "feet"),
  19300. weight: math.unit(150, "lb"),
  19301. name: "Front",
  19302. image: {
  19303. source: "./media/characters/kris/front.svg",
  19304. extra: 885 / 803,
  19305. bottom: 0.03
  19306. }
  19307. },
  19308. },
  19309. [
  19310. {
  19311. name: "Normal",
  19312. height: math.unit(5 + 10 / 12, "feet"),
  19313. default: true
  19314. },
  19315. ]
  19316. ))
  19317. characterMakers.push(() => makeCharacter(
  19318. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19319. {
  19320. front: {
  19321. height: math.unit(7, "feet"),
  19322. weight: math.unit(120, "kg"),
  19323. name: "Front",
  19324. image: {
  19325. source: "./media/characters/taluthus/front.svg",
  19326. extra: 903 / 833,
  19327. bottom: 0.015
  19328. }
  19329. },
  19330. },
  19331. [
  19332. {
  19333. name: "Normal",
  19334. height: math.unit(7, "feet"),
  19335. default: true
  19336. },
  19337. {
  19338. name: "Macro",
  19339. height: math.unit(300, "feet")
  19340. },
  19341. ]
  19342. ))
  19343. characterMakers.push(() => makeCharacter(
  19344. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19345. {
  19346. front: {
  19347. height: math.unit(5 + 9 / 12, "feet"),
  19348. weight: math.unit(145, "lb"),
  19349. name: "Front",
  19350. image: {
  19351. source: "./media/characters/dawn/front.svg",
  19352. extra: 2094 / 2016,
  19353. bottom: 0.025
  19354. }
  19355. },
  19356. back: {
  19357. height: math.unit(5 + 9 / 12, "feet"),
  19358. weight: math.unit(160, "lb"),
  19359. name: "Back",
  19360. image: {
  19361. source: "./media/characters/dawn/back.svg",
  19362. extra: 2112 / 2080,
  19363. bottom: 0.005
  19364. }
  19365. },
  19366. },
  19367. [
  19368. {
  19369. name: "Normal",
  19370. height: math.unit(6 + 7 / 12, "feet"),
  19371. default: true
  19372. },
  19373. ]
  19374. ))
  19375. characterMakers.push(() => makeCharacter(
  19376. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19377. {
  19378. anthro: {
  19379. height: math.unit(8 + 3 / 12, "feet"),
  19380. weight: math.unit(450, "lb"),
  19381. name: "Anthro",
  19382. image: {
  19383. source: "./media/characters/arador/anthro.svg",
  19384. extra: 1835 / 1718,
  19385. bottom: 0.025
  19386. }
  19387. },
  19388. feral: {
  19389. height: math.unit(4, "feet"),
  19390. weight: math.unit(200, "lb"),
  19391. name: "Feral",
  19392. image: {
  19393. source: "./media/characters/arador/feral.svg",
  19394. extra: 1683 / 1514,
  19395. bottom: 0.07
  19396. }
  19397. },
  19398. },
  19399. [
  19400. {
  19401. name: "Normal",
  19402. height: math.unit(8 + 3 / 12, "feet")
  19403. },
  19404. {
  19405. name: "Macro",
  19406. height: math.unit(82.5, "feet"),
  19407. default: true
  19408. },
  19409. ]
  19410. ))
  19411. characterMakers.push(() => makeCharacter(
  19412. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19413. {
  19414. front: {
  19415. height: math.unit(5 + 10 / 12, "feet"),
  19416. weight: math.unit(125, "lb"),
  19417. name: "Front",
  19418. image: {
  19419. source: "./media/characters/dharsi/front.svg",
  19420. extra: 716 / 630,
  19421. bottom: 0.035
  19422. }
  19423. },
  19424. },
  19425. [
  19426. {
  19427. name: "Nano",
  19428. height: math.unit(100, "nm")
  19429. },
  19430. {
  19431. name: "Micro",
  19432. height: math.unit(2, "inches")
  19433. },
  19434. {
  19435. name: "Normal",
  19436. height: math.unit(5 + 10 / 12, "feet"),
  19437. default: true
  19438. },
  19439. {
  19440. name: "Macro",
  19441. height: math.unit(1000, "feet")
  19442. },
  19443. {
  19444. name: "Megamacro",
  19445. height: math.unit(10, "miles")
  19446. },
  19447. {
  19448. name: "Gigamacro",
  19449. height: math.unit(3000, "miles")
  19450. },
  19451. {
  19452. name: "Teramacro",
  19453. height: math.unit(500000, "miles")
  19454. },
  19455. {
  19456. name: "Teramacro+",
  19457. height: math.unit(30, "galaxies")
  19458. },
  19459. ]
  19460. ))
  19461. characterMakers.push(() => makeCharacter(
  19462. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19463. {
  19464. front: {
  19465. height: math.unit(6, "feet"),
  19466. weight: math.unit(150, "lb"),
  19467. name: "Front",
  19468. image: {
  19469. source: "./media/characters/deathy/front.svg",
  19470. extra: 1552 / 1463,
  19471. bottom: 0.025
  19472. }
  19473. },
  19474. side: {
  19475. height: math.unit(6, "feet"),
  19476. weight: math.unit(150, "lb"),
  19477. name: "Side",
  19478. image: {
  19479. source: "./media/characters/deathy/side.svg",
  19480. extra: 1604 / 1455,
  19481. bottom: 0.025
  19482. }
  19483. },
  19484. back: {
  19485. height: math.unit(6, "feet"),
  19486. weight: math.unit(150, "lb"),
  19487. name: "Back",
  19488. image: {
  19489. source: "./media/characters/deathy/back.svg",
  19490. extra: 1580 / 1463,
  19491. bottom: 0.005
  19492. }
  19493. },
  19494. },
  19495. [
  19496. {
  19497. name: "Micro",
  19498. height: math.unit(5, "millimeters")
  19499. },
  19500. {
  19501. name: "Normal",
  19502. height: math.unit(6 + 5 / 12, "feet"),
  19503. default: true
  19504. },
  19505. ]
  19506. ))
  19507. characterMakers.push(() => makeCharacter(
  19508. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19509. {
  19510. front: {
  19511. height: math.unit(16, "feet"),
  19512. weight: math.unit(4000, "lb"),
  19513. name: "Front",
  19514. image: {
  19515. source: "./media/characters/juniper/front.svg",
  19516. bottom: 0.04
  19517. }
  19518. },
  19519. },
  19520. [
  19521. {
  19522. name: "Normal",
  19523. height: math.unit(16, "feet"),
  19524. default: true
  19525. },
  19526. ]
  19527. ))
  19528. characterMakers.push(() => makeCharacter(
  19529. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19530. {
  19531. front: {
  19532. height: math.unit(6, "feet"),
  19533. weight: math.unit(150, "lb"),
  19534. name: "Front",
  19535. image: {
  19536. source: "./media/characters/hipster/front.svg",
  19537. extra: 1312 / 1209,
  19538. bottom: 0.025
  19539. }
  19540. },
  19541. back: {
  19542. height: math.unit(6, "feet"),
  19543. weight: math.unit(150, "lb"),
  19544. name: "Back",
  19545. image: {
  19546. source: "./media/characters/hipster/back.svg",
  19547. extra: 1281 / 1196,
  19548. bottom: 0.01
  19549. }
  19550. },
  19551. },
  19552. [
  19553. {
  19554. name: "Micro",
  19555. height: math.unit(1, "mm")
  19556. },
  19557. {
  19558. name: "Normal",
  19559. height: math.unit(4, "inches"),
  19560. default: true
  19561. },
  19562. {
  19563. name: "Macro",
  19564. height: math.unit(500, "feet")
  19565. },
  19566. {
  19567. name: "Megamacro",
  19568. height: math.unit(1000, "miles")
  19569. },
  19570. ]
  19571. ))
  19572. characterMakers.push(() => makeCharacter(
  19573. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19574. {
  19575. front: {
  19576. height: math.unit(6, "feet"),
  19577. weight: math.unit(150, "lb"),
  19578. name: "Front",
  19579. image: {
  19580. source: "./media/characters/tendirmuldr/front.svg",
  19581. extra: 1878 / 1772,
  19582. bottom: 0.015
  19583. }
  19584. },
  19585. },
  19586. [
  19587. {
  19588. name: "Megamacro",
  19589. height: math.unit(1500, "miles"),
  19590. default: true
  19591. },
  19592. ]
  19593. ))
  19594. characterMakers.push(() => makeCharacter(
  19595. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19596. {
  19597. front: {
  19598. height: math.unit(14, "feet"),
  19599. weight: math.unit(12000, "lb"),
  19600. name: "Front",
  19601. image: {
  19602. source: "./media/characters/mort/front.svg",
  19603. extra: 365 / 318,
  19604. bottom: 0.01
  19605. }
  19606. },
  19607. side: {
  19608. height: math.unit(14, "feet"),
  19609. weight: math.unit(12000, "lb"),
  19610. name: "Side",
  19611. image: {
  19612. source: "./media/characters/mort/side.svg",
  19613. extra: 365 / 318,
  19614. bottom: 0.052
  19615. },
  19616. default: true
  19617. },
  19618. back: {
  19619. height: math.unit(14, "feet"),
  19620. weight: math.unit(12000, "lb"),
  19621. name: "Back",
  19622. image: {
  19623. source: "./media/characters/mort/back.svg",
  19624. extra: 371 / 332,
  19625. bottom: 0.18
  19626. }
  19627. },
  19628. },
  19629. [
  19630. {
  19631. name: "Normal",
  19632. height: math.unit(14, "feet"),
  19633. default: true
  19634. },
  19635. ]
  19636. ))
  19637. characterMakers.push(() => makeCharacter(
  19638. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19639. {
  19640. front: {
  19641. height: math.unit(8, "feet"),
  19642. weight: math.unit(1, "ton"),
  19643. name: "Front",
  19644. image: {
  19645. source: "./media/characters/lycoa/front.svg",
  19646. extra: 1875 / 1789,
  19647. bottom: 0.022
  19648. }
  19649. },
  19650. back: {
  19651. height: math.unit(8, "feet"),
  19652. weight: math.unit(1, "ton"),
  19653. name: "Back",
  19654. image: {
  19655. source: "./media/characters/lycoa/back.svg",
  19656. extra: 1835 / 1781,
  19657. bottom: 0.03
  19658. }
  19659. },
  19660. head: {
  19661. height: math.unit(2.1, "feet"),
  19662. name: "Head",
  19663. image: {
  19664. source: "./media/characters/lycoa/head.svg"
  19665. }
  19666. },
  19667. tailmaw: {
  19668. height: math.unit(1.9, "feet"),
  19669. name: "Tailmaw",
  19670. image: {
  19671. source: "./media/characters/lycoa/tailmaw.svg"
  19672. }
  19673. },
  19674. tentacles: {
  19675. height: math.unit(2.1, "feet"),
  19676. name: "Tentacles",
  19677. image: {
  19678. source: "./media/characters/lycoa/tentacles.svg"
  19679. }
  19680. },
  19681. dick: {
  19682. height: math.unit(1.73, "feet"),
  19683. name: "Dick",
  19684. image: {
  19685. source: "./media/characters/lycoa/dick.svg"
  19686. }
  19687. },
  19688. },
  19689. [
  19690. {
  19691. name: "Normal",
  19692. height: math.unit(8, "feet"),
  19693. default: true
  19694. },
  19695. {
  19696. name: "Macro",
  19697. height: math.unit(30, "feet")
  19698. },
  19699. ]
  19700. ))
  19701. characterMakers.push(() => makeCharacter(
  19702. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19703. {
  19704. front: {
  19705. height: math.unit(4 + 2 / 12, "feet"),
  19706. weight: math.unit(70, "lb"),
  19707. name: "Front",
  19708. image: {
  19709. source: "./media/characters/naldara/front.svg",
  19710. extra: 841 / 720,
  19711. bottom: 0.04
  19712. }
  19713. },
  19714. naga: {
  19715. height: math.unit(23, "feet"),
  19716. weight: math.unit(15000, "kg"),
  19717. name: "Naga",
  19718. image: {
  19719. source: "./media/characters/naldara/naga.svg",
  19720. extra: 3290 / 2959,
  19721. bottom: 124 / 3432
  19722. }
  19723. },
  19724. },
  19725. [
  19726. {
  19727. name: "Normal",
  19728. height: math.unit(4 + 2 / 12, "feet"),
  19729. default: true
  19730. },
  19731. ]
  19732. ))
  19733. characterMakers.push(() => makeCharacter(
  19734. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19735. {
  19736. front: {
  19737. height: math.unit(13 + 7 / 12, "feet"),
  19738. weight: math.unit(1500, "lb"),
  19739. name: "Front",
  19740. image: {
  19741. source: "./media/characters/briar/front.svg",
  19742. extra: 626 / 596,
  19743. bottom: 0.08
  19744. }
  19745. },
  19746. },
  19747. [
  19748. {
  19749. name: "Normal",
  19750. height: math.unit(13 + 7 / 12, "feet"),
  19751. default: true
  19752. },
  19753. ]
  19754. ))
  19755. characterMakers.push(() => makeCharacter(
  19756. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19757. {
  19758. side: {
  19759. height: math.unit(10, "feet"),
  19760. weight: math.unit(500, "lb"),
  19761. name: "Side",
  19762. image: {
  19763. source: "./media/characters/vanguard/side.svg",
  19764. extra: 502 / 425,
  19765. bottom: 0.087
  19766. }
  19767. },
  19768. },
  19769. [
  19770. {
  19771. name: "Normal",
  19772. height: math.unit(10, "feet"),
  19773. default: true
  19774. },
  19775. ]
  19776. ))
  19777. characterMakers.push(() => makeCharacter(
  19778. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19779. {
  19780. front: {
  19781. height: math.unit(7.5, "feet"),
  19782. weight: math.unit(2, "lb"),
  19783. name: "Front",
  19784. image: {
  19785. source: "./media/characters/artemis/front.svg",
  19786. extra: 1192 / 1075,
  19787. bottom: 0.07
  19788. }
  19789. },
  19790. frontNsfw: {
  19791. height: math.unit(7.5, "feet"),
  19792. weight: math.unit(2, "lb"),
  19793. name: "Front (NSFW)",
  19794. image: {
  19795. source: "./media/characters/artemis/front-nsfw.svg",
  19796. extra: 1192 / 1075,
  19797. bottom: 0.07
  19798. }
  19799. },
  19800. frontNsfwer: {
  19801. height: math.unit(7.5, "feet"),
  19802. weight: math.unit(2, "lb"),
  19803. name: "Front (NSFW-er)",
  19804. image: {
  19805. source: "./media/characters/artemis/front-nsfwer.svg",
  19806. extra: 1192 / 1075,
  19807. bottom: 0.07
  19808. }
  19809. },
  19810. side: {
  19811. height: math.unit(7.5, "feet"),
  19812. weight: math.unit(2, "lb"),
  19813. name: "Side",
  19814. image: {
  19815. source: "./media/characters/artemis/side.svg",
  19816. extra: 1192 / 1075,
  19817. bottom: 0.07
  19818. }
  19819. },
  19820. sideNsfw: {
  19821. height: math.unit(7.5, "feet"),
  19822. weight: math.unit(2, "lb"),
  19823. name: "Side (NSFW)",
  19824. image: {
  19825. source: "./media/characters/artemis/side-nsfw.svg",
  19826. extra: 1192 / 1075,
  19827. bottom: 0.07
  19828. }
  19829. },
  19830. sideNsfwer: {
  19831. height: math.unit(7.5, "feet"),
  19832. weight: math.unit(2, "lb"),
  19833. name: "Side (NSFW-er)",
  19834. image: {
  19835. source: "./media/characters/artemis/side-nsfwer.svg",
  19836. extra: 1192 / 1075,
  19837. bottom: 0.07
  19838. }
  19839. },
  19840. maw: {
  19841. height: math.unit(1.1, "feet"),
  19842. name: "Maw",
  19843. image: {
  19844. source: "./media/characters/artemis/maw.svg"
  19845. }
  19846. },
  19847. stomach: {
  19848. height: math.unit(0.95, "feet"),
  19849. name: "Stomach",
  19850. image: {
  19851. source: "./media/characters/artemis/stomach.svg"
  19852. }
  19853. },
  19854. dickCanine: {
  19855. height: math.unit(1, "feet"),
  19856. name: "Dick (Canine)",
  19857. image: {
  19858. source: "./media/characters/artemis/dick-canine.svg"
  19859. }
  19860. },
  19861. dickEquine: {
  19862. height: math.unit(0.85, "feet"),
  19863. name: "Dick (Equine)",
  19864. image: {
  19865. source: "./media/characters/artemis/dick-equine.svg"
  19866. }
  19867. },
  19868. dickExotic: {
  19869. height: math.unit(0.85, "feet"),
  19870. name: "Dick (Exotic)",
  19871. image: {
  19872. source: "./media/characters/artemis/dick-exotic.svg"
  19873. }
  19874. },
  19875. },
  19876. [
  19877. {
  19878. name: "Normal",
  19879. height: math.unit(7.5, "feet"),
  19880. default: true
  19881. },
  19882. {
  19883. name: "Enlarged",
  19884. height: math.unit(12, "feet")
  19885. },
  19886. ]
  19887. ))
  19888. characterMakers.push(() => makeCharacter(
  19889. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19890. {
  19891. front: {
  19892. height: math.unit(5 + 3 / 12, "feet"),
  19893. weight: math.unit(160, "lb"),
  19894. name: "Front",
  19895. image: {
  19896. source: "./media/characters/kira/front.svg",
  19897. extra: 906 / 786,
  19898. bottom: 0.01
  19899. }
  19900. },
  19901. back: {
  19902. height: math.unit(5 + 3 / 12, "feet"),
  19903. weight: math.unit(160, "lb"),
  19904. name: "Back",
  19905. image: {
  19906. source: "./media/characters/kira/back.svg",
  19907. extra: 882 / 757,
  19908. bottom: 0.005
  19909. }
  19910. },
  19911. frontDressed: {
  19912. height: math.unit(5 + 3 / 12, "feet"),
  19913. weight: math.unit(160, "lb"),
  19914. name: "Front (Dressed)",
  19915. image: {
  19916. source: "./media/characters/kira/front-dressed.svg",
  19917. extra: 906 / 786,
  19918. bottom: 0.01
  19919. }
  19920. },
  19921. beans: {
  19922. height: math.unit(0.92, "feet"),
  19923. name: "Beans",
  19924. image: {
  19925. source: "./media/characters/kira/beans.svg"
  19926. }
  19927. },
  19928. },
  19929. [
  19930. {
  19931. name: "Normal",
  19932. height: math.unit(5 + 3 / 12, "feet"),
  19933. default: true
  19934. },
  19935. ]
  19936. ))
  19937. characterMakers.push(() => makeCharacter(
  19938. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19939. {
  19940. front: {
  19941. height: math.unit(5 + 4 / 12, "feet"),
  19942. weight: math.unit(145, "lb"),
  19943. name: "Front",
  19944. image: {
  19945. source: "./media/characters/scramble/front.svg",
  19946. extra: 763 / 727,
  19947. bottom: 0.05
  19948. }
  19949. },
  19950. back: {
  19951. height: math.unit(5 + 4 / 12, "feet"),
  19952. weight: math.unit(145, "lb"),
  19953. name: "Back",
  19954. image: {
  19955. source: "./media/characters/scramble/back.svg",
  19956. extra: 826 / 737,
  19957. bottom: 0.002
  19958. }
  19959. },
  19960. },
  19961. [
  19962. {
  19963. name: "Normal",
  19964. height: math.unit(5 + 4 / 12, "feet"),
  19965. default: true
  19966. },
  19967. ]
  19968. ))
  19969. characterMakers.push(() => makeCharacter(
  19970. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19971. {
  19972. side: {
  19973. height: math.unit(6 + 2 / 12, "feet"),
  19974. weight: math.unit(190, "lb"),
  19975. name: "Side",
  19976. image: {
  19977. source: "./media/characters/biscuit/side.svg",
  19978. extra: 858 / 791,
  19979. bottom: 0.044
  19980. }
  19981. },
  19982. },
  19983. [
  19984. {
  19985. name: "Normal",
  19986. height: math.unit(6 + 2 / 12, "feet"),
  19987. default: true
  19988. },
  19989. ]
  19990. ))
  19991. characterMakers.push(() => makeCharacter(
  19992. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19993. {
  19994. front: {
  19995. height: math.unit(5 + 2 / 12, "feet"),
  19996. weight: math.unit(120, "lb"),
  19997. name: "Front",
  19998. image: {
  19999. source: "./media/characters/poffin/front.svg",
  20000. extra: 786 / 680,
  20001. bottom: 0.005
  20002. }
  20003. },
  20004. },
  20005. [
  20006. {
  20007. name: "Normal",
  20008. height: math.unit(5 + 2 / 12, "feet"),
  20009. default: true
  20010. },
  20011. ]
  20012. ))
  20013. characterMakers.push(() => makeCharacter(
  20014. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20015. {
  20016. front: {
  20017. height: math.unit(6 + 3 / 12, "feet"),
  20018. weight: math.unit(519, "lb"),
  20019. name: "Front",
  20020. image: {
  20021. source: "./media/characters/dhari/front.svg",
  20022. extra: 1048 / 946,
  20023. bottom: 0.015
  20024. }
  20025. },
  20026. back: {
  20027. height: math.unit(6 + 3 / 12, "feet"),
  20028. weight: math.unit(519, "lb"),
  20029. name: "Back",
  20030. image: {
  20031. source: "./media/characters/dhari/back.svg",
  20032. extra: 1048 / 931,
  20033. bottom: 0.005
  20034. }
  20035. },
  20036. frontDressed: {
  20037. height: math.unit(6 + 3 / 12, "feet"),
  20038. weight: math.unit(519, "lb"),
  20039. name: "Front (Dressed)",
  20040. image: {
  20041. source: "./media/characters/dhari/front-dressed.svg",
  20042. extra: 1713 / 1546,
  20043. bottom: 0.02
  20044. }
  20045. },
  20046. backDressed: {
  20047. height: math.unit(6 + 3 / 12, "feet"),
  20048. weight: math.unit(519, "lb"),
  20049. name: "Back (Dressed)",
  20050. image: {
  20051. source: "./media/characters/dhari/back-dressed.svg",
  20052. extra: 1699 / 1537,
  20053. bottom: 0.01
  20054. }
  20055. },
  20056. maw: {
  20057. height: math.unit(0.95, "feet"),
  20058. name: "Maw",
  20059. image: {
  20060. source: "./media/characters/dhari/maw.svg"
  20061. }
  20062. },
  20063. wereFront: {
  20064. height: math.unit(12 + 8 / 12, "feet"),
  20065. weight: math.unit(4000, "lb"),
  20066. name: "Front (Were)",
  20067. image: {
  20068. source: "./media/characters/dhari/were-front.svg",
  20069. extra: 1065 / 969,
  20070. bottom: 0.015
  20071. }
  20072. },
  20073. wereBack: {
  20074. height: math.unit(12 + 8 / 12, "feet"),
  20075. weight: math.unit(4000, "lb"),
  20076. name: "Back (Were)",
  20077. image: {
  20078. source: "./media/characters/dhari/were-back.svg",
  20079. extra: 1065 / 969,
  20080. bottom: 0.012
  20081. }
  20082. },
  20083. wereMaw: {
  20084. height: math.unit(0.625, "meters"),
  20085. name: "Maw (Were)",
  20086. image: {
  20087. source: "./media/characters/dhari/were-maw.svg"
  20088. }
  20089. },
  20090. },
  20091. [
  20092. {
  20093. name: "Normal",
  20094. height: math.unit(6 + 3 / 12, "feet"),
  20095. default: true
  20096. },
  20097. ]
  20098. ))
  20099. characterMakers.push(() => makeCharacter(
  20100. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20101. {
  20102. anthro: {
  20103. height: math.unit(5 + 7 / 12, "feet"),
  20104. weight: math.unit(175, "lb"),
  20105. name: "Anthro",
  20106. image: {
  20107. source: "./media/characters/rena-dyne/anthro.svg",
  20108. extra: 1849 / 1785,
  20109. bottom: 0.005
  20110. }
  20111. },
  20112. taur: {
  20113. height: math.unit(15 + 6 / 12, "feet"),
  20114. weight: math.unit(8000, "lb"),
  20115. name: "Taur",
  20116. image: {
  20117. source: "./media/characters/rena-dyne/taur.svg",
  20118. extra: 2315 / 2234,
  20119. bottom: 0.033
  20120. }
  20121. },
  20122. },
  20123. [
  20124. {
  20125. name: "Normal",
  20126. height: math.unit(5 + 7 / 12, "feet"),
  20127. default: true
  20128. },
  20129. ]
  20130. ))
  20131. characterMakers.push(() => makeCharacter(
  20132. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20133. {
  20134. front: {
  20135. height: math.unit(8, "feet"),
  20136. weight: math.unit(600, "lb"),
  20137. name: "Front",
  20138. image: {
  20139. source: "./media/characters/weremeep/front.svg",
  20140. extra: 967 / 862,
  20141. bottom: 0.01
  20142. }
  20143. },
  20144. },
  20145. [
  20146. {
  20147. name: "Normal",
  20148. height: math.unit(8, "feet"),
  20149. default: true
  20150. },
  20151. {
  20152. name: "Lorg",
  20153. height: math.unit(12, "feet")
  20154. },
  20155. {
  20156. name: "Oh Lawd She Comin'",
  20157. height: math.unit(20, "feet")
  20158. },
  20159. ]
  20160. ))
  20161. characterMakers.push(() => makeCharacter(
  20162. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20163. {
  20164. front: {
  20165. height: math.unit(4, "feet"),
  20166. weight: math.unit(90, "lb"),
  20167. name: "Front",
  20168. image: {
  20169. source: "./media/characters/reza/front.svg",
  20170. extra: 1183 / 1111,
  20171. bottom: 0.017
  20172. }
  20173. },
  20174. back: {
  20175. height: math.unit(4, "feet"),
  20176. weight: math.unit(90, "lb"),
  20177. name: "Back",
  20178. image: {
  20179. source: "./media/characters/reza/back.svg",
  20180. extra: 1183 / 1111,
  20181. bottom: 0.01
  20182. }
  20183. },
  20184. drake: {
  20185. height: math.unit(30, "feet"),
  20186. weight: math.unit(246960, "lb"),
  20187. name: "Drake",
  20188. image: {
  20189. source: "./media/characters/reza/drake.svg",
  20190. extra: 2350 / 2024,
  20191. bottom: 60.7 / 2403
  20192. }
  20193. },
  20194. },
  20195. [
  20196. {
  20197. name: "Normal",
  20198. height: math.unit(4, "feet"),
  20199. default: true
  20200. },
  20201. ]
  20202. ))
  20203. characterMakers.push(() => makeCharacter(
  20204. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20205. {
  20206. side: {
  20207. height: math.unit(15, "feet"),
  20208. weight: math.unit(14, "tons"),
  20209. name: "Side",
  20210. image: {
  20211. source: "./media/characters/athea/side.svg",
  20212. extra: 960 / 540,
  20213. bottom: 0.003
  20214. }
  20215. },
  20216. sitting: {
  20217. height: math.unit(6 * 2.85, "feet"),
  20218. weight: math.unit(14, "tons"),
  20219. name: "Sitting",
  20220. image: {
  20221. source: "./media/characters/athea/sitting.svg",
  20222. extra: 621 / 581,
  20223. bottom: 0.075
  20224. }
  20225. },
  20226. maw: {
  20227. height: math.unit(7.59498031496063, "feet"),
  20228. name: "Maw",
  20229. image: {
  20230. source: "./media/characters/athea/maw.svg"
  20231. }
  20232. },
  20233. },
  20234. [
  20235. {
  20236. name: "Lap Cat",
  20237. height: math.unit(2.5, "feet")
  20238. },
  20239. {
  20240. name: "Minimacro",
  20241. height: math.unit(15, "feet"),
  20242. default: true
  20243. },
  20244. {
  20245. name: "Macro",
  20246. height: math.unit(120, "feet")
  20247. },
  20248. {
  20249. name: "Macro+",
  20250. height: math.unit(640, "feet")
  20251. },
  20252. {
  20253. name: "Colossus",
  20254. height: math.unit(2.2, "miles")
  20255. },
  20256. ]
  20257. ))
  20258. characterMakers.push(() => makeCharacter(
  20259. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20260. {
  20261. front: {
  20262. height: math.unit(8 + 8 / 12, "feet"),
  20263. weight: math.unit(130, "kg"),
  20264. name: "Front",
  20265. image: {
  20266. source: "./media/characters/seroko/front.svg",
  20267. extra: 1385 / 1280,
  20268. bottom: 0.025
  20269. }
  20270. },
  20271. back: {
  20272. height: math.unit(8 + 8 / 12, "feet"),
  20273. weight: math.unit(130, "kg"),
  20274. name: "Back",
  20275. image: {
  20276. source: "./media/characters/seroko/back.svg",
  20277. extra: 1369 / 1238,
  20278. bottom: 0.018
  20279. }
  20280. },
  20281. frontDressed: {
  20282. height: math.unit(8 + 8 / 12, "feet"),
  20283. weight: math.unit(130, "kg"),
  20284. name: "Front (Dressed)",
  20285. image: {
  20286. source: "./media/characters/seroko/front-dressed.svg",
  20287. extra: 1366 / 1275,
  20288. bottom: 0.03
  20289. }
  20290. },
  20291. },
  20292. [
  20293. {
  20294. name: "Normal",
  20295. height: math.unit(8 + 8 / 12, "feet"),
  20296. default: true
  20297. },
  20298. ]
  20299. ))
  20300. characterMakers.push(() => makeCharacter(
  20301. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20302. {
  20303. front: {
  20304. height: math.unit(5.5, "feet"),
  20305. weight: math.unit(160, "lb"),
  20306. name: "Front",
  20307. image: {
  20308. source: "./media/characters/quatzi/front.svg",
  20309. extra: 2346 / 2242,
  20310. bottom: 0.015
  20311. }
  20312. },
  20313. },
  20314. [
  20315. {
  20316. name: "Normal",
  20317. height: math.unit(5.5, "feet"),
  20318. default: true
  20319. },
  20320. {
  20321. name: "Big",
  20322. height: math.unit(7.7, "feet")
  20323. },
  20324. ]
  20325. ))
  20326. characterMakers.push(() => makeCharacter(
  20327. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20328. {
  20329. front: {
  20330. height: math.unit(5 + 11 / 12, "feet"),
  20331. weight: math.unit(180, "lb"),
  20332. name: "Front",
  20333. image: {
  20334. source: "./media/characters/sen/front.svg",
  20335. extra: 1321 / 1254,
  20336. bottom: 0.015
  20337. }
  20338. },
  20339. side: {
  20340. height: math.unit(5 + 11 / 12, "feet"),
  20341. weight: math.unit(180, "lb"),
  20342. name: "Side",
  20343. image: {
  20344. source: "./media/characters/sen/side.svg",
  20345. extra: 1321 / 1254,
  20346. bottom: 0.007
  20347. }
  20348. },
  20349. back: {
  20350. height: math.unit(5 + 11 / 12, "feet"),
  20351. weight: math.unit(180, "lb"),
  20352. name: "Back",
  20353. image: {
  20354. source: "./media/characters/sen/back.svg",
  20355. extra: 1321 / 1254
  20356. }
  20357. },
  20358. },
  20359. [
  20360. {
  20361. name: "Normal",
  20362. height: math.unit(5 + 11 / 12, "feet"),
  20363. default: true
  20364. },
  20365. ]
  20366. ))
  20367. characterMakers.push(() => makeCharacter(
  20368. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20369. {
  20370. front: {
  20371. height: math.unit(166.6, "cm"),
  20372. weight: math.unit(66.6, "kg"),
  20373. name: "Front",
  20374. image: {
  20375. source: "./media/characters/fruity/front.svg",
  20376. extra: 1510 / 1386,
  20377. bottom: 0.04
  20378. }
  20379. },
  20380. back: {
  20381. height: math.unit(166.6, "cm"),
  20382. weight: math.unit(66.6, "lb"),
  20383. name: "Back",
  20384. image: {
  20385. source: "./media/characters/fruity/back.svg",
  20386. extra: 1563 / 1435,
  20387. bottom: 0.005
  20388. }
  20389. },
  20390. },
  20391. [
  20392. {
  20393. name: "Normal",
  20394. height: math.unit(166.6, "cm"),
  20395. default: true
  20396. },
  20397. {
  20398. name: "Demonic",
  20399. height: math.unit(166.6, "feet")
  20400. },
  20401. ]
  20402. ))
  20403. characterMakers.push(() => makeCharacter(
  20404. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20405. {
  20406. side: {
  20407. height: math.unit(10, "feet"),
  20408. weight: math.unit(500, "lb"),
  20409. name: "Side",
  20410. image: {
  20411. source: "./media/characters/zost/side.svg",
  20412. extra: 966 / 880,
  20413. bottom: 0.075
  20414. }
  20415. },
  20416. mawFront: {
  20417. height: math.unit(1.08, "meters"),
  20418. name: "Maw (Front)",
  20419. image: {
  20420. source: "./media/characters/zost/maw-front.svg"
  20421. }
  20422. },
  20423. mawSide: {
  20424. height: math.unit(2.66, "feet"),
  20425. name: "Maw (Side)",
  20426. image: {
  20427. source: "./media/characters/zost/maw-side.svg"
  20428. }
  20429. },
  20430. },
  20431. [
  20432. {
  20433. name: "Normal",
  20434. height: math.unit(10, "feet"),
  20435. default: true
  20436. },
  20437. ]
  20438. ))
  20439. characterMakers.push(() => makeCharacter(
  20440. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20441. {
  20442. front: {
  20443. height: math.unit(5 + 4 / 12, "feet"),
  20444. weight: math.unit(120, "lb"),
  20445. name: "Front",
  20446. image: {
  20447. source: "./media/characters/luci/front.svg",
  20448. extra: 1985 / 1884,
  20449. bottom: 0.04
  20450. }
  20451. },
  20452. back: {
  20453. height: math.unit(5 + 4 / 12, "feet"),
  20454. weight: math.unit(120, "lb"),
  20455. name: "Back",
  20456. image: {
  20457. source: "./media/characters/luci/back.svg",
  20458. extra: 1892 / 1791,
  20459. bottom: 0.002
  20460. }
  20461. },
  20462. },
  20463. [
  20464. {
  20465. name: "Normal",
  20466. height: math.unit(5 + 4 / 12, "feet"),
  20467. default: true
  20468. },
  20469. ]
  20470. ))
  20471. characterMakers.push(() => makeCharacter(
  20472. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20473. {
  20474. front: {
  20475. height: math.unit(1500, "feet"),
  20476. weight: math.unit(3.8e6, "tons"),
  20477. name: "Front",
  20478. image: {
  20479. source: "./media/characters/2th/front.svg",
  20480. extra: 3489 / 3350,
  20481. bottom: 0.1
  20482. }
  20483. },
  20484. foot: {
  20485. height: math.unit(461, "feet"),
  20486. name: "Foot",
  20487. image: {
  20488. source: "./media/characters/2th/foot.svg"
  20489. }
  20490. },
  20491. },
  20492. [
  20493. {
  20494. name: "\"Micro\"",
  20495. height: math.unit(15 + 7 / 12, "feet")
  20496. },
  20497. {
  20498. name: "Normal",
  20499. height: math.unit(1500, "feet"),
  20500. default: true
  20501. },
  20502. {
  20503. name: "Macro",
  20504. height: math.unit(5000, "feet")
  20505. },
  20506. {
  20507. name: "Megamacro",
  20508. height: math.unit(15, "miles")
  20509. },
  20510. {
  20511. name: "Gigamacro",
  20512. height: math.unit(4000, "miles")
  20513. },
  20514. {
  20515. name: "Galactic",
  20516. height: math.unit(50, "AU")
  20517. },
  20518. ]
  20519. ))
  20520. characterMakers.push(() => makeCharacter(
  20521. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20522. {
  20523. front: {
  20524. height: math.unit(5 + 6 / 12, "feet"),
  20525. weight: math.unit(220, "lb"),
  20526. name: "Front",
  20527. image: {
  20528. source: "./media/characters/amethyst/front.svg",
  20529. extra: 2078 / 2040,
  20530. bottom: 0.045
  20531. }
  20532. },
  20533. back: {
  20534. height: math.unit(5 + 6 / 12, "feet"),
  20535. weight: math.unit(220, "lb"),
  20536. name: "Back",
  20537. image: {
  20538. source: "./media/characters/amethyst/back.svg",
  20539. extra: 2021 / 1989,
  20540. bottom: 0.02
  20541. }
  20542. },
  20543. },
  20544. [
  20545. {
  20546. name: "Normal",
  20547. height: math.unit(5 + 6 / 12, "feet"),
  20548. default: true
  20549. },
  20550. ]
  20551. ))
  20552. characterMakers.push(() => makeCharacter(
  20553. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20554. {
  20555. front: {
  20556. height: math.unit(4 + 11 / 12, "feet"),
  20557. weight: math.unit(120, "lb"),
  20558. name: "Front",
  20559. image: {
  20560. source: "./media/characters/yumi-akiyama/front.svg",
  20561. extra: 1327 / 1235,
  20562. bottom: 0.02
  20563. }
  20564. },
  20565. back: {
  20566. height: math.unit(4 + 11 / 12, "feet"),
  20567. weight: math.unit(120, "lb"),
  20568. name: "Back",
  20569. image: {
  20570. source: "./media/characters/yumi-akiyama/back.svg",
  20571. extra: 1287 / 1245,
  20572. bottom: 0.002
  20573. }
  20574. },
  20575. },
  20576. [
  20577. {
  20578. name: "Galactic",
  20579. height: math.unit(50, "galaxies"),
  20580. default: true
  20581. },
  20582. {
  20583. name: "Universal",
  20584. height: math.unit(100, "universes")
  20585. },
  20586. ]
  20587. ))
  20588. characterMakers.push(() => makeCharacter(
  20589. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20590. {
  20591. front: {
  20592. height: math.unit(8, "feet"),
  20593. weight: math.unit(500, "lb"),
  20594. name: "Front",
  20595. image: {
  20596. source: "./media/characters/rifter-yrmori/front.svg",
  20597. extra: 1180 / 1125,
  20598. bottom: 0.02
  20599. }
  20600. },
  20601. back: {
  20602. height: math.unit(8, "feet"),
  20603. weight: math.unit(500, "lb"),
  20604. name: "Back",
  20605. image: {
  20606. source: "./media/characters/rifter-yrmori/back.svg",
  20607. extra: 1190 / 1145,
  20608. bottom: 0.001
  20609. }
  20610. },
  20611. wings: {
  20612. height: math.unit(7.75, "feet"),
  20613. weight: math.unit(500, "lb"),
  20614. name: "Wings",
  20615. image: {
  20616. source: "./media/characters/rifter-yrmori/wings.svg",
  20617. extra: 1357 / 1285
  20618. }
  20619. },
  20620. maw: {
  20621. height: math.unit(0.8, "feet"),
  20622. name: "Maw",
  20623. image: {
  20624. source: "./media/characters/rifter-yrmori/maw.svg"
  20625. }
  20626. },
  20627. mawfront: {
  20628. height: math.unit(1.45, "feet"),
  20629. name: "Maw (Front)",
  20630. image: {
  20631. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20632. }
  20633. },
  20634. },
  20635. [
  20636. {
  20637. name: "Normal",
  20638. height: math.unit(8, "feet"),
  20639. default: true
  20640. },
  20641. {
  20642. name: "Macro",
  20643. height: math.unit(42, "meters")
  20644. },
  20645. ]
  20646. ))
  20647. characterMakers.push(() => makeCharacter(
  20648. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20649. {
  20650. were: {
  20651. height: math.unit(25 + 6 / 12, "feet"),
  20652. weight: math.unit(10000, "lb"),
  20653. name: "Were",
  20654. image: {
  20655. source: "./media/characters/tahajin/were.svg",
  20656. extra: 801 / 770,
  20657. bottom: 0.042
  20658. }
  20659. },
  20660. aquatic: {
  20661. height: math.unit(6 + 4 / 12, "feet"),
  20662. weight: math.unit(160, "lb"),
  20663. name: "Aquatic",
  20664. image: {
  20665. source: "./media/characters/tahajin/aquatic.svg",
  20666. extra: 572 / 542,
  20667. bottom: 0.04
  20668. }
  20669. },
  20670. chow: {
  20671. height: math.unit(8 + 11 / 12, "feet"),
  20672. weight: math.unit(450, "lb"),
  20673. name: "Chow",
  20674. image: {
  20675. source: "./media/characters/tahajin/chow.svg",
  20676. extra: 660 / 640,
  20677. bottom: 0.015
  20678. }
  20679. },
  20680. demiNaga: {
  20681. height: math.unit(6 + 8 / 12, "feet"),
  20682. weight: math.unit(300, "lb"),
  20683. name: "Demi Naga",
  20684. image: {
  20685. source: "./media/characters/tahajin/demi-naga.svg",
  20686. extra: 643 / 615,
  20687. bottom: 0.1
  20688. }
  20689. },
  20690. data: {
  20691. height: math.unit(5, "inches"),
  20692. weight: math.unit(0.1, "lb"),
  20693. name: "Data",
  20694. image: {
  20695. source: "./media/characters/tahajin/data.svg"
  20696. }
  20697. },
  20698. fluu: {
  20699. height: math.unit(5 + 7 / 12, "feet"),
  20700. weight: math.unit(140, "lb"),
  20701. name: "Fluu",
  20702. image: {
  20703. source: "./media/characters/tahajin/fluu.svg",
  20704. extra: 628 / 592,
  20705. bottom: 0.02
  20706. }
  20707. },
  20708. starWarrior: {
  20709. height: math.unit(4 + 5 / 12, "feet"),
  20710. weight: math.unit(50, "lb"),
  20711. name: "Star Warrior",
  20712. image: {
  20713. source: "./media/characters/tahajin/star-warrior.svg"
  20714. }
  20715. },
  20716. },
  20717. [
  20718. {
  20719. name: "Normal",
  20720. height: math.unit(25 + 6 / 12, "feet"),
  20721. default: true
  20722. },
  20723. ]
  20724. ))
  20725. characterMakers.push(() => makeCharacter(
  20726. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20727. {
  20728. front: {
  20729. height: math.unit(8, "feet"),
  20730. weight: math.unit(350, "lb"),
  20731. name: "Front",
  20732. image: {
  20733. source: "./media/characters/gabira/front.svg",
  20734. extra: 608 / 580,
  20735. bottom: 0.03
  20736. }
  20737. },
  20738. back: {
  20739. height: math.unit(8, "feet"),
  20740. weight: math.unit(350, "lb"),
  20741. name: "Back",
  20742. image: {
  20743. source: "./media/characters/gabira/back.svg",
  20744. extra: 608 / 580,
  20745. bottom: 0.03
  20746. }
  20747. },
  20748. },
  20749. [
  20750. {
  20751. name: "Normal",
  20752. height: math.unit(8, "feet"),
  20753. default: true
  20754. },
  20755. ]
  20756. ))
  20757. characterMakers.push(() => makeCharacter(
  20758. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20759. {
  20760. front: {
  20761. height: math.unit(5 + 3 / 12, "feet"),
  20762. weight: math.unit(137, "lb"),
  20763. name: "Front",
  20764. image: {
  20765. source: "./media/characters/sasha-katraine/front.svg",
  20766. bottom: 0.045
  20767. }
  20768. },
  20769. },
  20770. [
  20771. {
  20772. name: "Micro",
  20773. height: math.unit(5, "inches")
  20774. },
  20775. {
  20776. name: "Normal",
  20777. height: math.unit(5 + 3 / 12, "feet"),
  20778. default: true
  20779. },
  20780. ]
  20781. ))
  20782. characterMakers.push(() => makeCharacter(
  20783. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20784. {
  20785. side: {
  20786. height: math.unit(4, "inches"),
  20787. weight: math.unit(200, "grams"),
  20788. name: "Side",
  20789. image: {
  20790. source: "./media/characters/der/side.svg",
  20791. extra: 719 / 400,
  20792. bottom: 30.6 / 749.9187
  20793. }
  20794. },
  20795. },
  20796. [
  20797. {
  20798. name: "Micro",
  20799. height: math.unit(4, "inches"),
  20800. default: true
  20801. },
  20802. ]
  20803. ))
  20804. characterMakers.push(() => makeCharacter(
  20805. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20806. {
  20807. side: {
  20808. height: math.unit(30, "meters"),
  20809. weight: math.unit(700, "tonnes"),
  20810. name: "Side",
  20811. image: {
  20812. source: "./media/characters/fixerdragon/side.svg",
  20813. extra: (1293.0514 - 116.03) / 1106.86,
  20814. bottom: 116.03 / 1293.0514
  20815. }
  20816. },
  20817. },
  20818. [
  20819. {
  20820. name: "Planck",
  20821. height: math.unit(1.6e-35, "meters")
  20822. },
  20823. {
  20824. name: "Micro",
  20825. height: math.unit(0.4, "meters")
  20826. },
  20827. {
  20828. name: "Normal",
  20829. height: math.unit(30, "meters"),
  20830. default: true
  20831. },
  20832. {
  20833. name: "Megamacro",
  20834. height: math.unit(1.2, "megameters")
  20835. },
  20836. {
  20837. name: "Teramacro",
  20838. height: math.unit(130, "terameters")
  20839. },
  20840. {
  20841. name: "Yottamacro",
  20842. height: math.unit(6200, "yottameters")
  20843. },
  20844. ]
  20845. ));
  20846. characterMakers.push(() => makeCharacter(
  20847. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20848. {
  20849. front: {
  20850. height: math.unit(8, "feet"),
  20851. weight: math.unit(250, "lb"),
  20852. name: "Front",
  20853. image: {
  20854. source: "./media/characters/kite/front.svg",
  20855. extra: 2796 / 2659,
  20856. bottom: 0.002
  20857. }
  20858. },
  20859. },
  20860. [
  20861. {
  20862. name: "Normal",
  20863. height: math.unit(8, "feet"),
  20864. default: true
  20865. },
  20866. {
  20867. name: "Macro",
  20868. height: math.unit(360, "feet")
  20869. },
  20870. {
  20871. name: "Megamacro",
  20872. height: math.unit(1500, "feet")
  20873. },
  20874. ]
  20875. ))
  20876. characterMakers.push(() => makeCharacter(
  20877. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20878. {
  20879. front: {
  20880. height: math.unit(5 + 10 / 12, "feet"),
  20881. weight: math.unit(150, "lb"),
  20882. name: "Front",
  20883. image: {
  20884. source: "./media/characters/poojawa-vynar/front.svg",
  20885. extra: (1506.1547 - 55) / 1356.6,
  20886. bottom: 55 / 1506.1547
  20887. }
  20888. },
  20889. frontTailless: {
  20890. height: math.unit(5 + 10 / 12, "feet"),
  20891. weight: math.unit(150, "lb"),
  20892. name: "Front (Tailless)",
  20893. image: {
  20894. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20895. extra: (1506.1547 - 55) / 1356.6,
  20896. bottom: 55 / 1506.1547
  20897. }
  20898. },
  20899. },
  20900. [
  20901. {
  20902. name: "Normal",
  20903. height: math.unit(5 + 10 / 12, "feet"),
  20904. default: true
  20905. },
  20906. ]
  20907. ))
  20908. characterMakers.push(() => makeCharacter(
  20909. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20910. {
  20911. front: {
  20912. height: math.unit(293, "meters"),
  20913. weight: math.unit(70400, "tons"),
  20914. name: "Front",
  20915. image: {
  20916. source: "./media/characters/violette/front.svg",
  20917. extra: 1227 / 1180,
  20918. bottom: 0.005
  20919. }
  20920. },
  20921. back: {
  20922. height: math.unit(293, "meters"),
  20923. weight: math.unit(70400, "tons"),
  20924. name: "Back",
  20925. image: {
  20926. source: "./media/characters/violette/back.svg",
  20927. extra: 1227 / 1180,
  20928. bottom: 0.005
  20929. }
  20930. },
  20931. },
  20932. [
  20933. {
  20934. name: "Macro",
  20935. height: math.unit(293, "meters"),
  20936. default: true
  20937. },
  20938. ]
  20939. ))
  20940. characterMakers.push(() => makeCharacter(
  20941. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20942. {
  20943. front: {
  20944. height: math.unit(1050, "feet"),
  20945. weight: math.unit(200000, "tons"),
  20946. name: "Front",
  20947. image: {
  20948. source: "./media/characters/alessandra/front.svg",
  20949. extra: 960 / 912,
  20950. bottom: 0.06
  20951. }
  20952. },
  20953. },
  20954. [
  20955. {
  20956. name: "Macro",
  20957. height: math.unit(1050, "feet")
  20958. },
  20959. {
  20960. name: "Macro+",
  20961. height: math.unit(900, "meters"),
  20962. default: true
  20963. },
  20964. ]
  20965. ))
  20966. characterMakers.push(() => makeCharacter(
  20967. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20968. {
  20969. front: {
  20970. height: math.unit(5, "feet"),
  20971. weight: math.unit(187, "lb"),
  20972. name: "Front",
  20973. image: {
  20974. source: "./media/characters/person/front.svg",
  20975. extra: 3087 / 2945,
  20976. bottom: 91 / 3181
  20977. }
  20978. },
  20979. },
  20980. [
  20981. {
  20982. name: "Micro",
  20983. height: math.unit(3, "inches")
  20984. },
  20985. {
  20986. name: "Normal",
  20987. height: math.unit(5, "feet"),
  20988. default: true
  20989. },
  20990. {
  20991. name: "Macro",
  20992. height: math.unit(90, "feet")
  20993. },
  20994. {
  20995. name: "Max Size",
  20996. height: math.unit(280, "feet")
  20997. },
  20998. ]
  20999. ))
  21000. characterMakers.push(() => makeCharacter(
  21001. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21002. {
  21003. front: {
  21004. height: math.unit(4.5, "meters"),
  21005. weight: math.unit(3200, "lb"),
  21006. name: "Front",
  21007. image: {
  21008. source: "./media/characters/ty/front.svg",
  21009. extra: 1038 / 960,
  21010. bottom: 31.156 / 1068
  21011. }
  21012. },
  21013. back: {
  21014. height: math.unit(4.5, "meters"),
  21015. weight: math.unit(3200, "lb"),
  21016. name: "Back",
  21017. image: {
  21018. source: "./media/characters/ty/back.svg",
  21019. extra: 1044 / 966,
  21020. bottom: 7.48 / 1049
  21021. }
  21022. },
  21023. },
  21024. [
  21025. {
  21026. name: "Normal",
  21027. height: math.unit(4.5, "meters"),
  21028. default: true
  21029. },
  21030. ]
  21031. ))
  21032. characterMakers.push(() => makeCharacter(
  21033. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21034. {
  21035. front: {
  21036. height: math.unit(5 + 4 / 12, "feet"),
  21037. weight: math.unit(115, "lb"),
  21038. name: "Front",
  21039. image: {
  21040. source: "./media/characters/rocky/front.svg",
  21041. extra: 1012 / 975,
  21042. bottom: 54 / 1066
  21043. }
  21044. },
  21045. },
  21046. [
  21047. {
  21048. name: "Normal",
  21049. height: math.unit(5 + 4 / 12, "feet"),
  21050. default: true
  21051. },
  21052. ]
  21053. ))
  21054. characterMakers.push(() => makeCharacter(
  21055. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21056. {
  21057. upright: {
  21058. height: math.unit(6, "meters"),
  21059. weight: math.unit(4000, "kg"),
  21060. name: "Upright",
  21061. image: {
  21062. source: "./media/characters/ruin/upright.svg",
  21063. extra: 668 / 661,
  21064. bottom: 42 / 799.8396
  21065. }
  21066. },
  21067. },
  21068. [
  21069. {
  21070. name: "Normal",
  21071. height: math.unit(6, "meters"),
  21072. default: true
  21073. },
  21074. ]
  21075. ))
  21076. characterMakers.push(() => makeCharacter(
  21077. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21078. {
  21079. front: {
  21080. height: math.unit(5, "feet"),
  21081. weight: math.unit(106, "lb"),
  21082. name: "Front",
  21083. image: {
  21084. source: "./media/characters/robin/front.svg",
  21085. extra: 862 / 799,
  21086. bottom: 42.4 / 914.8856
  21087. }
  21088. },
  21089. },
  21090. [
  21091. {
  21092. name: "Normal",
  21093. height: math.unit(5, "feet"),
  21094. default: true
  21095. },
  21096. ]
  21097. ))
  21098. characterMakers.push(() => makeCharacter(
  21099. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21100. {
  21101. side: {
  21102. height: math.unit(3, "feet"),
  21103. weight: math.unit(225, "lb"),
  21104. name: "Side",
  21105. image: {
  21106. source: "./media/characters/saian/side.svg",
  21107. extra: 566 / 356,
  21108. bottom: 79.7 / 643
  21109. }
  21110. },
  21111. maw: {
  21112. height: math.unit(2.85, "feet"),
  21113. name: "Maw",
  21114. image: {
  21115. source: "./media/characters/saian/maw.svg"
  21116. }
  21117. },
  21118. },
  21119. [
  21120. {
  21121. name: "Normal",
  21122. height: math.unit(3, "feet"),
  21123. default: true
  21124. },
  21125. ]
  21126. ))
  21127. characterMakers.push(() => makeCharacter(
  21128. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21129. {
  21130. side: {
  21131. height: math.unit(8, "feet"),
  21132. weight: math.unit(300, "lb"),
  21133. name: "Side",
  21134. image: {
  21135. source: "./media/characters/equus-silvermane/side.svg",
  21136. extra: 2176 / 2050,
  21137. bottom: 65.7 / 2245
  21138. }
  21139. },
  21140. front: {
  21141. height: math.unit(8, "feet"),
  21142. weight: math.unit(300, "lb"),
  21143. name: "Front",
  21144. image: {
  21145. source: "./media/characters/equus-silvermane/front.svg",
  21146. extra: 4633 / 4400,
  21147. bottom: 71.3 / 4706.915
  21148. }
  21149. },
  21150. sideStepping: {
  21151. height: math.unit(8, "feet"),
  21152. weight: math.unit(300, "lb"),
  21153. name: "Side (Stepping)",
  21154. image: {
  21155. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21156. extra: 1968 / 1860,
  21157. bottom: 16.4 / 1989
  21158. }
  21159. },
  21160. },
  21161. [
  21162. {
  21163. name: "Normal",
  21164. height: math.unit(8, "feet")
  21165. },
  21166. {
  21167. name: "Minimacro",
  21168. height: math.unit(75, "feet"),
  21169. default: true
  21170. },
  21171. {
  21172. name: "Macro",
  21173. height: math.unit(150, "feet")
  21174. },
  21175. {
  21176. name: "Macro+",
  21177. height: math.unit(1000, "feet")
  21178. },
  21179. {
  21180. name: "Megamacro",
  21181. height: math.unit(1, "mile")
  21182. },
  21183. ]
  21184. ))
  21185. characterMakers.push(() => makeCharacter(
  21186. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21187. {
  21188. side: {
  21189. height: math.unit(20, "feet"),
  21190. weight: math.unit(30000, "kg"),
  21191. name: "Side",
  21192. image: {
  21193. source: "./media/characters/windar/side.svg",
  21194. extra: 1491 / 1248,
  21195. bottom: 82.56 / 1568
  21196. }
  21197. },
  21198. },
  21199. [
  21200. {
  21201. name: "Normal",
  21202. height: math.unit(20, "feet"),
  21203. default: true
  21204. },
  21205. ]
  21206. ))
  21207. characterMakers.push(() => makeCharacter(
  21208. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21209. {
  21210. side: {
  21211. height: math.unit(15.66, "feet"),
  21212. weight: math.unit(150, "lb"),
  21213. name: "Side",
  21214. image: {
  21215. source: "./media/characters/melody/side.svg",
  21216. extra: 1097 / 944,
  21217. bottom: 11.8 / 1109
  21218. }
  21219. },
  21220. sideOutfit: {
  21221. height: math.unit(15.66, "feet"),
  21222. weight: math.unit(150, "lb"),
  21223. name: "Side (Outfit)",
  21224. image: {
  21225. source: "./media/characters/melody/side-outfit.svg",
  21226. extra: 1097 / 944,
  21227. bottom: 11.8 / 1109
  21228. }
  21229. },
  21230. },
  21231. [
  21232. {
  21233. name: "Normal",
  21234. height: math.unit(15.66, "feet"),
  21235. default: true
  21236. },
  21237. ]
  21238. ))
  21239. characterMakers.push(() => makeCharacter(
  21240. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21241. {
  21242. front: {
  21243. height: math.unit(8, "feet"),
  21244. weight: math.unit(325, "lb"),
  21245. name: "Front",
  21246. image: {
  21247. source: "./media/characters/windera/front.svg",
  21248. extra: 3180 / 2845,
  21249. bottom: 178 / 3365
  21250. }
  21251. },
  21252. },
  21253. [
  21254. {
  21255. name: "Normal",
  21256. height: math.unit(8, "feet"),
  21257. default: true
  21258. },
  21259. ]
  21260. ))
  21261. characterMakers.push(() => makeCharacter(
  21262. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21263. {
  21264. front: {
  21265. height: math.unit(28.75, "feet"),
  21266. weight: math.unit(2000, "kg"),
  21267. name: "Front",
  21268. image: {
  21269. source: "./media/characters/sonear/front.svg",
  21270. extra: 1041.1 / 964.9,
  21271. bottom: 53.7 / 1096.6
  21272. }
  21273. },
  21274. },
  21275. [
  21276. {
  21277. name: "Normal",
  21278. height: math.unit(28.75, "feet"),
  21279. default: true
  21280. },
  21281. ]
  21282. ))
  21283. characterMakers.push(() => makeCharacter(
  21284. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21285. {
  21286. side: {
  21287. height: math.unit(25.5, "feet"),
  21288. weight: math.unit(23000, "kg"),
  21289. name: "Side",
  21290. image: {
  21291. source: "./media/characters/kanara/side.svg"
  21292. }
  21293. },
  21294. },
  21295. [
  21296. {
  21297. name: "Normal",
  21298. height: math.unit(25.5, "feet"),
  21299. default: true
  21300. },
  21301. ]
  21302. ))
  21303. characterMakers.push(() => makeCharacter(
  21304. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21305. {
  21306. side: {
  21307. height: math.unit(10, "feet"),
  21308. weight: math.unit(1000, "kg"),
  21309. name: "Side",
  21310. image: {
  21311. source: "./media/characters/ereus/side.svg",
  21312. extra: 1157 / 959,
  21313. bottom: 153 / 1312.5
  21314. }
  21315. },
  21316. },
  21317. [
  21318. {
  21319. name: "Normal",
  21320. height: math.unit(10, "feet"),
  21321. default: true
  21322. },
  21323. ]
  21324. ))
  21325. characterMakers.push(() => makeCharacter(
  21326. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21327. {
  21328. side: {
  21329. height: math.unit(4.5, "feet"),
  21330. weight: math.unit(500, "lb"),
  21331. name: "Side",
  21332. image: {
  21333. source: "./media/characters/e-ter/side.svg",
  21334. extra: 1550 / 1248,
  21335. bottom: 146 / 1694
  21336. }
  21337. },
  21338. },
  21339. [
  21340. {
  21341. name: "Normal",
  21342. height: math.unit(4.5, "feet"),
  21343. default: true
  21344. },
  21345. ]
  21346. ))
  21347. characterMakers.push(() => makeCharacter(
  21348. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21349. {
  21350. side: {
  21351. height: math.unit(9.7, "feet"),
  21352. weight: math.unit(4000, "kg"),
  21353. name: "Side",
  21354. image: {
  21355. source: "./media/characters/yamie/side.svg"
  21356. }
  21357. },
  21358. },
  21359. [
  21360. {
  21361. name: "Normal",
  21362. height: math.unit(9.7, "feet"),
  21363. default: true
  21364. },
  21365. ]
  21366. ))
  21367. characterMakers.push(() => makeCharacter(
  21368. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21369. {
  21370. front: {
  21371. height: math.unit(50, "feet"),
  21372. weight: math.unit(50000, "kg"),
  21373. name: "Front",
  21374. image: {
  21375. source: "./media/characters/anders/front.svg",
  21376. extra: 570 / 539,
  21377. bottom: 14.7 / 586.7
  21378. }
  21379. },
  21380. },
  21381. [
  21382. {
  21383. name: "Large",
  21384. height: math.unit(50, "feet")
  21385. },
  21386. {
  21387. name: "Macro",
  21388. height: math.unit(2000, "feet"),
  21389. default: true
  21390. },
  21391. {
  21392. name: "Megamacro",
  21393. height: math.unit(12, "miles")
  21394. },
  21395. ]
  21396. ))
  21397. characterMakers.push(() => makeCharacter(
  21398. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21399. {
  21400. front: {
  21401. height: math.unit(7 + 2 / 12, "feet"),
  21402. weight: math.unit(300, "lb"),
  21403. name: "Front",
  21404. image: {
  21405. source: "./media/characters/reban/front.svg",
  21406. extra: 516 / 487,
  21407. bottom: 42.82 / 558.356
  21408. }
  21409. },
  21410. dick: {
  21411. height: math.unit(7 / 5, "feet"),
  21412. name: "Dick",
  21413. image: {
  21414. source: "./media/characters/reban/dick.svg"
  21415. }
  21416. },
  21417. },
  21418. [
  21419. {
  21420. name: "Natural Height",
  21421. height: math.unit(7 + 2 / 12, "feet")
  21422. },
  21423. {
  21424. name: "Macro",
  21425. height: math.unit(500, "feet"),
  21426. default: true
  21427. },
  21428. {
  21429. name: "Canon Height",
  21430. height: math.unit(50, "AU")
  21431. },
  21432. ]
  21433. ))
  21434. characterMakers.push(() => makeCharacter(
  21435. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21436. {
  21437. front: {
  21438. height: math.unit(6, "feet"),
  21439. weight: math.unit(150, "lb"),
  21440. name: "Front",
  21441. image: {
  21442. source: "./media/characters/terrance-keayes/front.svg",
  21443. extra: 1.005,
  21444. bottom: 151 / 1615
  21445. }
  21446. },
  21447. side: {
  21448. height: math.unit(6, "feet"),
  21449. weight: math.unit(150, "lb"),
  21450. name: "Side",
  21451. image: {
  21452. source: "./media/characters/terrance-keayes/side.svg",
  21453. extra: 1.005,
  21454. bottom: 129.4 / 1544
  21455. }
  21456. },
  21457. back: {
  21458. height: math.unit(6, "feet"),
  21459. weight: math.unit(150, "lb"),
  21460. name: "Back",
  21461. image: {
  21462. source: "./media/characters/terrance-keayes/back.svg",
  21463. extra: 1.005,
  21464. bottom: 58.4 / 1557.3
  21465. }
  21466. },
  21467. dick: {
  21468. height: math.unit(6 * 0.208, "feet"),
  21469. name: "Dick",
  21470. image: {
  21471. source: "./media/characters/terrance-keayes/dick.svg"
  21472. }
  21473. },
  21474. },
  21475. [
  21476. {
  21477. name: "Canon Height",
  21478. height: math.unit(35, "miles"),
  21479. default: true
  21480. },
  21481. ]
  21482. ))
  21483. characterMakers.push(() => makeCharacter(
  21484. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21485. {
  21486. front: {
  21487. height: math.unit(6, "feet"),
  21488. weight: math.unit(150, "lb"),
  21489. name: "Front",
  21490. image: {
  21491. source: "./media/characters/ofelia/front.svg",
  21492. extra: 546 / 541,
  21493. bottom: 39 / 583
  21494. }
  21495. },
  21496. back: {
  21497. height: math.unit(6, "feet"),
  21498. weight: math.unit(150, "lb"),
  21499. name: "Back",
  21500. image: {
  21501. source: "./media/characters/ofelia/back.svg",
  21502. extra: 564 / 559.5,
  21503. bottom: 8.69 / 573.02
  21504. }
  21505. },
  21506. maw: {
  21507. height: math.unit(1, "feet"),
  21508. name: "Maw",
  21509. image: {
  21510. source: "./media/characters/ofelia/maw.svg"
  21511. }
  21512. },
  21513. foot: {
  21514. height: math.unit(1.949, "feet"),
  21515. name: "Foot",
  21516. image: {
  21517. source: "./media/characters/ofelia/foot.svg"
  21518. }
  21519. },
  21520. },
  21521. [
  21522. {
  21523. name: "Canon Height",
  21524. height: math.unit(2000, "miles"),
  21525. default: true
  21526. },
  21527. ]
  21528. ))
  21529. characterMakers.push(() => makeCharacter(
  21530. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21531. {
  21532. front: {
  21533. height: math.unit(6, "feet"),
  21534. weight: math.unit(150, "lb"),
  21535. name: "Front",
  21536. image: {
  21537. source: "./media/characters/samuel/front.svg",
  21538. extra: 265 / 258,
  21539. bottom: 2 / 266.1566
  21540. }
  21541. },
  21542. },
  21543. [
  21544. {
  21545. name: "Macro",
  21546. height: math.unit(100, "feet"),
  21547. default: true
  21548. },
  21549. {
  21550. name: "Full Size",
  21551. height: math.unit(1000, "miles")
  21552. },
  21553. ]
  21554. ))
  21555. characterMakers.push(() => makeCharacter(
  21556. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21557. {
  21558. front: {
  21559. height: math.unit(6, "feet"),
  21560. weight: math.unit(300, "lb"),
  21561. name: "Front",
  21562. image: {
  21563. source: "./media/characters/beishir-kiel/front.svg",
  21564. extra: 569 / 547,
  21565. bottom: 41.9 / 609
  21566. }
  21567. },
  21568. maw: {
  21569. height: math.unit(6 * 0.202, "feet"),
  21570. name: "Maw",
  21571. image: {
  21572. source: "./media/characters/beishir-kiel/maw.svg"
  21573. }
  21574. },
  21575. },
  21576. [
  21577. {
  21578. name: "Macro",
  21579. height: math.unit(300, "feet"),
  21580. default: true
  21581. },
  21582. ]
  21583. ))
  21584. characterMakers.push(() => makeCharacter(
  21585. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21586. {
  21587. front: {
  21588. height: math.unit(5 + 8 / 12, "feet"),
  21589. weight: math.unit(120, "lb"),
  21590. name: "Front",
  21591. image: {
  21592. source: "./media/characters/logan-grey/front.svg",
  21593. extra: 2539 / 2393,
  21594. bottom: 97.6 / 2636.37
  21595. }
  21596. },
  21597. frontAlt: {
  21598. height: math.unit(5 + 8 / 12, "feet"),
  21599. weight: math.unit(120, "lb"),
  21600. name: "Front (Alt)",
  21601. image: {
  21602. source: "./media/characters/logan-grey/front-alt.svg",
  21603. extra: 958 / 893,
  21604. bottom: 15 / 970.768
  21605. }
  21606. },
  21607. back: {
  21608. height: math.unit(5 + 8 / 12, "feet"),
  21609. weight: math.unit(120, "lb"),
  21610. name: "Back",
  21611. image: {
  21612. source: "./media/characters/logan-grey/back.svg",
  21613. extra: 958 / 893,
  21614. bottom: 2.1881 / 970.9788
  21615. }
  21616. },
  21617. dick: {
  21618. height: math.unit(1.437, "feet"),
  21619. name: "Dick",
  21620. image: {
  21621. source: "./media/characters/logan-grey/dick.svg"
  21622. }
  21623. },
  21624. },
  21625. [
  21626. {
  21627. name: "Normal",
  21628. height: math.unit(5 + 8 / 12, "feet")
  21629. },
  21630. {
  21631. name: "The 500 Foot Femboy",
  21632. height: math.unit(500, "feet"),
  21633. default: true
  21634. },
  21635. {
  21636. name: "Megmacro",
  21637. height: math.unit(20, "miles")
  21638. },
  21639. ]
  21640. ))
  21641. characterMakers.push(() => makeCharacter(
  21642. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21643. {
  21644. front: {
  21645. height: math.unit(8 + 2 / 12, "feet"),
  21646. weight: math.unit(275, "lb"),
  21647. name: "Front",
  21648. image: {
  21649. source: "./media/characters/draganta/front.svg",
  21650. extra: 1177 / 1135,
  21651. bottom: 33.46 / 1212.1
  21652. }
  21653. },
  21654. },
  21655. [
  21656. {
  21657. name: "Normal",
  21658. height: math.unit(8 + 6 / 12, "feet"),
  21659. default: true
  21660. },
  21661. {
  21662. name: "Macro",
  21663. height: math.unit(150, "feet")
  21664. },
  21665. {
  21666. name: "Megamacro",
  21667. height: math.unit(1000, "miles")
  21668. },
  21669. ]
  21670. ))
  21671. characterMakers.push(() => makeCharacter(
  21672. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21673. {
  21674. front: {
  21675. height: math.unit(1.72, "m"),
  21676. weight: math.unit(80, "lb"),
  21677. name: "Front",
  21678. image: {
  21679. source: "./media/characters/voski/front.svg",
  21680. extra: 2076.22 / 2022.4,
  21681. bottom: 102.7 / 2177.3866
  21682. }
  21683. },
  21684. frontNsfw: {
  21685. height: math.unit(1.72, "m"),
  21686. weight: math.unit(80, "lb"),
  21687. name: "Front (NSFW)",
  21688. image: {
  21689. source: "./media/characters/voski/front-nsfw.svg",
  21690. extra: 2076.22 / 2022.4,
  21691. bottom: 102.7 / 2177.3866
  21692. }
  21693. },
  21694. back: {
  21695. height: math.unit(1.72, "m"),
  21696. weight: math.unit(80, "lb"),
  21697. name: "Back",
  21698. image: {
  21699. source: "./media/characters/voski/back.svg",
  21700. extra: 2104 / 2051,
  21701. bottom: 10.45 / 2113.63
  21702. }
  21703. },
  21704. },
  21705. [
  21706. {
  21707. name: "Normal",
  21708. height: math.unit(1.72, "m")
  21709. },
  21710. {
  21711. name: "Macro",
  21712. height: math.unit(55, "m"),
  21713. default: true
  21714. },
  21715. {
  21716. name: "Macro+",
  21717. height: math.unit(300, "m")
  21718. },
  21719. {
  21720. name: "Macro++",
  21721. height: math.unit(700, "m")
  21722. },
  21723. {
  21724. name: "Macro+++",
  21725. height: math.unit(4500, "m")
  21726. },
  21727. {
  21728. name: "Macro++++",
  21729. height: math.unit(45, "km")
  21730. },
  21731. {
  21732. name: "Macro+++++",
  21733. height: math.unit(1220, "km")
  21734. },
  21735. ]
  21736. ))
  21737. characterMakers.push(() => makeCharacter(
  21738. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21739. {
  21740. front: {
  21741. height: math.unit(2.3, "m"),
  21742. weight: math.unit(304, "kg"),
  21743. name: "Front",
  21744. image: {
  21745. source: "./media/characters/icowom-lee/front.svg",
  21746. extra: 985 / 955,
  21747. bottom: 25.4 / 1012
  21748. }
  21749. },
  21750. fronttentacles: {
  21751. height: math.unit(2.3, "m"),
  21752. weight: math.unit(304, "kg"),
  21753. name: "Front-tentacles",
  21754. image: {
  21755. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21756. extra: 985 / 955,
  21757. bottom: 25.4 / 1012
  21758. }
  21759. },
  21760. back: {
  21761. height: math.unit(2.3, "m"),
  21762. weight: math.unit(304, "kg"),
  21763. name: "Back",
  21764. image: {
  21765. source: "./media/characters/icowom-lee/back.svg",
  21766. extra: 975 / 954,
  21767. bottom: 9.5 / 985
  21768. }
  21769. },
  21770. backtentacles: {
  21771. height: math.unit(2.3, "m"),
  21772. weight: math.unit(304, "kg"),
  21773. name: "Back-tentacles",
  21774. image: {
  21775. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21776. extra: 975 / 954,
  21777. bottom: 9.5 / 985
  21778. }
  21779. },
  21780. frontDressed: {
  21781. height: math.unit(2.3, "m"),
  21782. weight: math.unit(304, "kg"),
  21783. name: "Front (Dressed)",
  21784. image: {
  21785. source: "./media/characters/icowom-lee/front-dressed.svg",
  21786. extra: 3076 / 2933,
  21787. bottom: 51.4 / 3125.1889
  21788. }
  21789. },
  21790. rump: {
  21791. height: math.unit(0.776, "meters"),
  21792. name: "Rump",
  21793. image: {
  21794. source: "./media/characters/icowom-lee/rump.svg"
  21795. }
  21796. },
  21797. genitals: {
  21798. height: math.unit(0.78, "meters"),
  21799. name: "Genitals",
  21800. image: {
  21801. source: "./media/characters/icowom-lee/genitals.svg"
  21802. }
  21803. },
  21804. },
  21805. [
  21806. {
  21807. name: "Normal",
  21808. height: math.unit(2.3, "meters"),
  21809. default: true
  21810. },
  21811. {
  21812. name: "Macro",
  21813. height: math.unit(94, "meters"),
  21814. default: true
  21815. },
  21816. ]
  21817. ))
  21818. characterMakers.push(() => makeCharacter(
  21819. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21820. {
  21821. front: {
  21822. height: math.unit(22, "meters"),
  21823. weight: math.unit(21000, "kg"),
  21824. name: "Front",
  21825. image: {
  21826. source: "./media/characters/shock-diamond/front.svg",
  21827. extra: 2204 / 2053,
  21828. bottom: 65 / 2239.47
  21829. }
  21830. },
  21831. frontNude: {
  21832. height: math.unit(22, "meters"),
  21833. weight: math.unit(21000, "kg"),
  21834. name: "Front (Nude)",
  21835. image: {
  21836. source: "./media/characters/shock-diamond/front-nude.svg",
  21837. extra: 2514 / 2285,
  21838. bottom: 13 / 2527.56
  21839. }
  21840. },
  21841. },
  21842. [
  21843. {
  21844. name: "Normal",
  21845. height: math.unit(3, "meters")
  21846. },
  21847. {
  21848. name: "Macro",
  21849. height: math.unit(22, "meters"),
  21850. default: true
  21851. },
  21852. ]
  21853. ))
  21854. characterMakers.push(() => makeCharacter(
  21855. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21856. {
  21857. front: {
  21858. height: math.unit(5 + 4 / 12, "feet"),
  21859. weight: math.unit(120, "lb"),
  21860. name: "Front",
  21861. image: {
  21862. source: "./media/characters/rory/front.svg",
  21863. extra: 589 / 556,
  21864. bottom: 45.7 / 635.76
  21865. }
  21866. },
  21867. frontNude: {
  21868. height: math.unit(5 + 4 / 12, "feet"),
  21869. weight: math.unit(120, "lb"),
  21870. name: "Front (Nude)",
  21871. image: {
  21872. source: "./media/characters/rory/front-nude.svg",
  21873. extra: 589 / 556,
  21874. bottom: 45.7 / 635.76
  21875. }
  21876. },
  21877. side: {
  21878. height: math.unit(5 + 4 / 12, "feet"),
  21879. weight: math.unit(120, "lb"),
  21880. name: "Side",
  21881. image: {
  21882. source: "./media/characters/rory/side.svg",
  21883. extra: 597 / 564,
  21884. bottom: 55 / 653
  21885. }
  21886. },
  21887. back: {
  21888. height: math.unit(5 + 4 / 12, "feet"),
  21889. weight: math.unit(120, "lb"),
  21890. name: "Back",
  21891. image: {
  21892. source: "./media/characters/rory/back.svg",
  21893. extra: 620 / 585,
  21894. bottom: 8.86 / 630.43
  21895. }
  21896. },
  21897. dick: {
  21898. height: math.unit(0.86, "feet"),
  21899. name: "Dick",
  21900. image: {
  21901. source: "./media/characters/rory/dick.svg"
  21902. }
  21903. },
  21904. },
  21905. [
  21906. {
  21907. name: "Normal",
  21908. height: math.unit(5 + 4 / 12, "feet"),
  21909. default: true
  21910. },
  21911. {
  21912. name: "Macro",
  21913. height: math.unit(100, "feet")
  21914. },
  21915. {
  21916. name: "Macro+",
  21917. height: math.unit(140, "feet")
  21918. },
  21919. {
  21920. name: "Macro++",
  21921. height: math.unit(300, "feet")
  21922. },
  21923. ]
  21924. ))
  21925. characterMakers.push(() => makeCharacter(
  21926. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21927. {
  21928. front: {
  21929. height: math.unit(5 + 9 / 12, "feet"),
  21930. weight: math.unit(190, "lb"),
  21931. name: "Front",
  21932. image: {
  21933. source: "./media/characters/sprisk/front.svg",
  21934. extra: 1225 / 1180,
  21935. bottom: 42.7 / 1266.4
  21936. }
  21937. },
  21938. frontNsfw: {
  21939. height: math.unit(5 + 9 / 12, "feet"),
  21940. weight: math.unit(190, "lb"),
  21941. name: "Front (NSFW)",
  21942. image: {
  21943. source: "./media/characters/sprisk/front-nsfw.svg",
  21944. extra: 1225 / 1180,
  21945. bottom: 42.7 / 1266.4
  21946. }
  21947. },
  21948. back: {
  21949. height: math.unit(5 + 9 / 12, "feet"),
  21950. weight: math.unit(190, "lb"),
  21951. name: "Back",
  21952. image: {
  21953. source: "./media/characters/sprisk/back.svg",
  21954. extra: 1247 / 1200,
  21955. bottom: 5.6 / 1253.04
  21956. }
  21957. },
  21958. },
  21959. [
  21960. {
  21961. name: "Tiny",
  21962. height: math.unit(2, "inches")
  21963. },
  21964. {
  21965. name: "Normal",
  21966. height: math.unit(5 + 9 / 12, "feet"),
  21967. default: true
  21968. },
  21969. {
  21970. name: "Mini Macro",
  21971. height: math.unit(18, "feet")
  21972. },
  21973. {
  21974. name: "Macro",
  21975. height: math.unit(100, "feet")
  21976. },
  21977. {
  21978. name: "MACRO",
  21979. height: math.unit(50, "miles")
  21980. },
  21981. {
  21982. name: "M A C R O",
  21983. height: math.unit(300, "miles")
  21984. },
  21985. ]
  21986. ))
  21987. characterMakers.push(() => makeCharacter(
  21988. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21989. {
  21990. side: {
  21991. height: math.unit(15.6, "meters"),
  21992. weight: math.unit(700000, "kg"),
  21993. name: "Side",
  21994. image: {
  21995. source: "./media/characters/bunsen/side.svg",
  21996. extra: 1644 / 358
  21997. }
  21998. },
  21999. foot: {
  22000. height: math.unit(1.611 * 1644 / 358, "meter"),
  22001. name: "Foot",
  22002. image: {
  22003. source: "./media/characters/bunsen/foot.svg"
  22004. }
  22005. },
  22006. },
  22007. [
  22008. {
  22009. name: "Small",
  22010. height: math.unit(10, "feet")
  22011. },
  22012. {
  22013. name: "Normal",
  22014. height: math.unit(15.6, "meters"),
  22015. default: true
  22016. },
  22017. ]
  22018. ))
  22019. characterMakers.push(() => makeCharacter(
  22020. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22021. {
  22022. front: {
  22023. height: math.unit(4 + 11 / 12, "feet"),
  22024. weight: math.unit(140, "lb"),
  22025. name: "Front",
  22026. image: {
  22027. source: "./media/characters/sesh/front.svg",
  22028. extra: 3420 / 3231,
  22029. bottom: 72 / 3949.5
  22030. }
  22031. },
  22032. },
  22033. [
  22034. {
  22035. name: "Normal",
  22036. height: math.unit(4 + 11 / 12, "feet")
  22037. },
  22038. {
  22039. name: "Grown",
  22040. height: math.unit(15, "feet"),
  22041. default: true
  22042. },
  22043. {
  22044. name: "Macro",
  22045. height: math.unit(1500, "feet")
  22046. },
  22047. {
  22048. name: "Megamacro",
  22049. height: math.unit(30, "miles")
  22050. },
  22051. {
  22052. name: "Continental",
  22053. height: math.unit(3000, "miles")
  22054. },
  22055. {
  22056. name: "Gravity Mass",
  22057. height: math.unit(300000, "miles")
  22058. },
  22059. {
  22060. name: "Planet Buster",
  22061. height: math.unit(30000000, "miles")
  22062. },
  22063. {
  22064. name: "Big",
  22065. height: math.unit(3000000000, "miles")
  22066. },
  22067. ]
  22068. ))
  22069. characterMakers.push(() => makeCharacter(
  22070. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22071. {
  22072. front: {
  22073. height: math.unit(9, "feet"),
  22074. weight: math.unit(350, "lb"),
  22075. name: "Front",
  22076. image: {
  22077. source: "./media/characters/pepper/front.svg",
  22078. extra: 1448 / 1312,
  22079. bottom: 9.4 / 1457.88
  22080. }
  22081. },
  22082. back: {
  22083. height: math.unit(9, "feet"),
  22084. weight: math.unit(350, "lb"),
  22085. name: "Back",
  22086. image: {
  22087. source: "./media/characters/pepper/back.svg",
  22088. extra: 1423 / 1300,
  22089. bottom: 4.6 / 1429
  22090. }
  22091. },
  22092. maw: {
  22093. height: math.unit(0.932, "feet"),
  22094. name: "Maw",
  22095. image: {
  22096. source: "./media/characters/pepper/maw.svg"
  22097. }
  22098. },
  22099. },
  22100. [
  22101. {
  22102. name: "Normal",
  22103. height: math.unit(9, "feet"),
  22104. default: true
  22105. },
  22106. ]
  22107. ))
  22108. characterMakers.push(() => makeCharacter(
  22109. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22110. {
  22111. front: {
  22112. height: math.unit(6, "feet"),
  22113. weight: math.unit(150, "lb"),
  22114. name: "Front",
  22115. image: {
  22116. source: "./media/characters/maelstrom/front.svg",
  22117. extra: 2100 / 1883,
  22118. bottom: 94 / 2196.7
  22119. }
  22120. },
  22121. },
  22122. [
  22123. {
  22124. name: "Less Kaiju",
  22125. height: math.unit(200, "feet")
  22126. },
  22127. {
  22128. name: "Kaiju",
  22129. height: math.unit(400, "feet"),
  22130. default: true
  22131. },
  22132. {
  22133. name: "Kaiju-er",
  22134. height: math.unit(600, "feet")
  22135. },
  22136. ]
  22137. ))
  22138. characterMakers.push(() => makeCharacter(
  22139. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22140. {
  22141. front: {
  22142. height: math.unit(6 + 5 / 12, "feet"),
  22143. weight: math.unit(180, "lb"),
  22144. name: "Front",
  22145. image: {
  22146. source: "./media/characters/lexir/front.svg",
  22147. extra: 180 / 172,
  22148. bottom: 12 / 192
  22149. }
  22150. },
  22151. back: {
  22152. height: math.unit(6 + 5 / 12, "feet"),
  22153. weight: math.unit(180, "lb"),
  22154. name: "Back",
  22155. image: {
  22156. source: "./media/characters/lexir/back.svg",
  22157. extra: 183.84 / 175.5,
  22158. bottom: 3.1 / 187
  22159. }
  22160. },
  22161. },
  22162. [
  22163. {
  22164. name: "Very Smal",
  22165. height: math.unit(1, "nm")
  22166. },
  22167. {
  22168. name: "Normal",
  22169. height: math.unit(6 + 5 / 12, "feet"),
  22170. default: true
  22171. },
  22172. {
  22173. name: "Macro",
  22174. height: math.unit(1, "mile")
  22175. },
  22176. {
  22177. name: "Megamacro",
  22178. height: math.unit(50, "miles")
  22179. },
  22180. ]
  22181. ))
  22182. characterMakers.push(() => makeCharacter(
  22183. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22184. {
  22185. front: {
  22186. height: math.unit(1.5, "meters"),
  22187. weight: math.unit(100, "lb"),
  22188. name: "Front",
  22189. image: {
  22190. source: "./media/characters/maksio/front.svg",
  22191. extra: 1549 / 1531,
  22192. bottom: 123.7 / 1674.5429
  22193. }
  22194. },
  22195. back: {
  22196. height: math.unit(1.5, "meters"),
  22197. weight: math.unit(100, "lb"),
  22198. name: "Back",
  22199. image: {
  22200. source: "./media/characters/maksio/back.svg",
  22201. extra: 1541 / 1509,
  22202. bottom: 97 / 1639
  22203. }
  22204. },
  22205. hand: {
  22206. height: math.unit(0.621, "feet"),
  22207. name: "Hand",
  22208. image: {
  22209. source: "./media/characters/maksio/hand.svg"
  22210. }
  22211. },
  22212. foot: {
  22213. height: math.unit(1.611, "feet"),
  22214. name: "Foot",
  22215. image: {
  22216. source: "./media/characters/maksio/foot.svg"
  22217. }
  22218. },
  22219. },
  22220. [
  22221. {
  22222. name: "Shrunken",
  22223. height: math.unit(10, "cm")
  22224. },
  22225. {
  22226. name: "Normal",
  22227. height: math.unit(150, "cm"),
  22228. default: true
  22229. },
  22230. ]
  22231. ))
  22232. characterMakers.push(() => makeCharacter(
  22233. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22234. {
  22235. front: {
  22236. height: math.unit(100, "feet"),
  22237. name: "Front",
  22238. image: {
  22239. source: "./media/characters/erza-bear/front.svg",
  22240. extra: 2449 / 2390,
  22241. bottom: 46 / 2494
  22242. }
  22243. },
  22244. back: {
  22245. height: math.unit(100, "feet"),
  22246. name: "Back",
  22247. image: {
  22248. source: "./media/characters/erza-bear/back.svg",
  22249. extra: 2489 / 2430,
  22250. bottom: 85.4 / 2480
  22251. }
  22252. },
  22253. tail: {
  22254. height: math.unit(42, "feet"),
  22255. name: "Tail",
  22256. image: {
  22257. source: "./media/characters/erza-bear/tail.svg"
  22258. }
  22259. },
  22260. tongue: {
  22261. height: math.unit(8, "feet"),
  22262. name: "Tongue",
  22263. image: {
  22264. source: "./media/characters/erza-bear/tongue.svg"
  22265. }
  22266. },
  22267. dick: {
  22268. height: math.unit(10.5, "feet"),
  22269. name: "Dick",
  22270. image: {
  22271. source: "./media/characters/erza-bear/dick.svg"
  22272. }
  22273. },
  22274. dickVertical: {
  22275. height: math.unit(16.9, "feet"),
  22276. name: "Dick (Vertical)",
  22277. image: {
  22278. source: "./media/characters/erza-bear/dick-vertical.svg"
  22279. }
  22280. },
  22281. },
  22282. [
  22283. {
  22284. name: "Macro",
  22285. height: math.unit(100, "feet"),
  22286. default: true
  22287. },
  22288. ]
  22289. ))
  22290. characterMakers.push(() => makeCharacter(
  22291. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22292. {
  22293. front: {
  22294. height: math.unit(172, "cm"),
  22295. weight: math.unit(73, "kg"),
  22296. name: "Front",
  22297. image: {
  22298. source: "./media/characters/violet-flor/front.svg",
  22299. extra: 1530 / 1442,
  22300. bottom: 61.9 / 1588.8
  22301. }
  22302. },
  22303. back: {
  22304. height: math.unit(180, "cm"),
  22305. weight: math.unit(73, "kg"),
  22306. name: "Back",
  22307. image: {
  22308. source: "./media/characters/violet-flor/back.svg",
  22309. extra: 1692 / 1630,
  22310. bottom: 20 / 1712
  22311. }
  22312. },
  22313. },
  22314. [
  22315. {
  22316. name: "Normal",
  22317. height: math.unit(172, "cm"),
  22318. default: true
  22319. },
  22320. ]
  22321. ))
  22322. characterMakers.push(() => makeCharacter(
  22323. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22324. {
  22325. front: {
  22326. height: math.unit(6, "feet"),
  22327. weight: math.unit(220, "lb"),
  22328. name: "Front",
  22329. image: {
  22330. source: "./media/characters/lynn-rhea/front.svg",
  22331. extra: 310 / 273
  22332. }
  22333. },
  22334. back: {
  22335. height: math.unit(6, "feet"),
  22336. weight: math.unit(220, "lb"),
  22337. name: "Back",
  22338. image: {
  22339. source: "./media/characters/lynn-rhea/back.svg",
  22340. extra: 310 / 273
  22341. }
  22342. },
  22343. dicks: {
  22344. height: math.unit(0.9, "feet"),
  22345. name: "Dicks",
  22346. image: {
  22347. source: "./media/characters/lynn-rhea/dicks.svg"
  22348. }
  22349. },
  22350. slit: {
  22351. height: math.unit(0.4, "feet"),
  22352. name: "Slit",
  22353. image: {
  22354. source: "./media/characters/lynn-rhea/slit.svg"
  22355. }
  22356. },
  22357. },
  22358. [
  22359. {
  22360. name: "Micro",
  22361. height: math.unit(1, "inch")
  22362. },
  22363. {
  22364. name: "Macro",
  22365. height: math.unit(60, "feet"),
  22366. default: true
  22367. },
  22368. {
  22369. name: "Megamacro",
  22370. height: math.unit(2, "miles")
  22371. },
  22372. {
  22373. name: "Gigamacro",
  22374. height: math.unit(3, "earths")
  22375. },
  22376. {
  22377. name: "Galactic",
  22378. height: math.unit(0.8, "galaxies")
  22379. },
  22380. ]
  22381. ))
  22382. characterMakers.push(() => makeCharacter(
  22383. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22384. {
  22385. front: {
  22386. height: math.unit(1600, "feet"),
  22387. weight: math.unit(85758785169, "kg"),
  22388. name: "Front",
  22389. image: {
  22390. source: "./media/characters/valathos/front.svg",
  22391. extra: 1451 / 1339
  22392. }
  22393. },
  22394. },
  22395. [
  22396. {
  22397. name: "Macro",
  22398. height: math.unit(1600, "feet"),
  22399. default: true
  22400. },
  22401. ]
  22402. ))
  22403. characterMakers.push(() => makeCharacter(
  22404. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22405. {
  22406. front: {
  22407. height: math.unit(7 + 5 / 12, "feet"),
  22408. weight: math.unit(300, "lb"),
  22409. name: "Front",
  22410. image: {
  22411. source: "./media/characters/azula/front.svg",
  22412. extra: 3208 / 2880,
  22413. bottom: 80.2 / 3277
  22414. }
  22415. },
  22416. back: {
  22417. height: math.unit(7 + 5 / 12, "feet"),
  22418. weight: math.unit(300, "lb"),
  22419. name: "Back",
  22420. image: {
  22421. source: "./media/characters/azula/back.svg",
  22422. extra: 3169 / 2822,
  22423. bottom: 150.6 / 3321
  22424. }
  22425. },
  22426. },
  22427. [
  22428. {
  22429. name: "Normal",
  22430. height: math.unit(7 + 5 / 12, "feet"),
  22431. default: true
  22432. },
  22433. {
  22434. name: "Big",
  22435. height: math.unit(20, "feet")
  22436. },
  22437. ]
  22438. ))
  22439. characterMakers.push(() => makeCharacter(
  22440. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22441. {
  22442. front: {
  22443. height: math.unit(5 + 1 / 12, "feet"),
  22444. weight: math.unit(110, "lb"),
  22445. name: "Front",
  22446. image: {
  22447. source: "./media/characters/rupert/front.svg",
  22448. extra: 1549 / 1495,
  22449. bottom: 54.2 / 1604.4
  22450. }
  22451. },
  22452. },
  22453. [
  22454. {
  22455. name: "Normal",
  22456. height: math.unit(5 + 1 / 12, "feet"),
  22457. default: true
  22458. },
  22459. ]
  22460. ))
  22461. characterMakers.push(() => makeCharacter(
  22462. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22463. {
  22464. front: {
  22465. height: math.unit(8 + 4 / 12, "feet"),
  22466. weight: math.unit(350, "lb"),
  22467. name: "Front",
  22468. image: {
  22469. source: "./media/characters/sheera-castellar/front.svg",
  22470. extra: 1957 / 1894,
  22471. bottom: 26.97 / 1975.017
  22472. }
  22473. },
  22474. side: {
  22475. height: math.unit(8 + 4 / 12, "feet"),
  22476. weight: math.unit(350, "lb"),
  22477. name: "Side",
  22478. image: {
  22479. source: "./media/characters/sheera-castellar/side.svg",
  22480. extra: 1957 / 1894
  22481. }
  22482. },
  22483. back: {
  22484. height: math.unit(8 + 4 / 12, "feet"),
  22485. weight: math.unit(350, "lb"),
  22486. name: "Back",
  22487. image: {
  22488. source: "./media/characters/sheera-castellar/back.svg",
  22489. extra: 1957 / 1894
  22490. }
  22491. },
  22492. angled: {
  22493. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22494. weight: math.unit(350, "lb"),
  22495. name: "Angled",
  22496. image: {
  22497. source: "./media/characters/sheera-castellar/angled.svg",
  22498. extra: 1807 / 1707,
  22499. bottom: 68 / 1875
  22500. }
  22501. },
  22502. genitals: {
  22503. height: math.unit(2.2, "feet"),
  22504. name: "Genitals",
  22505. image: {
  22506. source: "./media/characters/sheera-castellar/genitals.svg"
  22507. }
  22508. },
  22509. },
  22510. [
  22511. {
  22512. name: "Normal",
  22513. height: math.unit(8 + 4 / 12, "feet")
  22514. },
  22515. {
  22516. name: "Macro",
  22517. height: math.unit(150, "feet"),
  22518. default: true
  22519. },
  22520. {
  22521. name: "Macro+",
  22522. height: math.unit(800, "feet")
  22523. },
  22524. ]
  22525. ))
  22526. characterMakers.push(() => makeCharacter(
  22527. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22528. {
  22529. front: {
  22530. height: math.unit(6, "feet"),
  22531. weight: math.unit(150, "lb"),
  22532. name: "Front",
  22533. image: {
  22534. source: "./media/characters/jaipur/front.svg",
  22535. extra: 3860 / 3731,
  22536. bottom: 287 / 4140
  22537. }
  22538. },
  22539. back: {
  22540. height: math.unit(6, "feet"),
  22541. weight: math.unit(150, "lb"),
  22542. name: "Back",
  22543. image: {
  22544. source: "./media/characters/jaipur/back.svg",
  22545. extra: 4060 / 3930,
  22546. bottom: 151 / 4200
  22547. }
  22548. },
  22549. },
  22550. [
  22551. {
  22552. name: "Normal",
  22553. height: math.unit(1.85, "meters"),
  22554. default: true
  22555. },
  22556. {
  22557. name: "Macro",
  22558. height: math.unit(150, "meters")
  22559. },
  22560. {
  22561. name: "Macro+",
  22562. height: math.unit(0.5, "miles")
  22563. },
  22564. {
  22565. name: "Macro++",
  22566. height: math.unit(2.5, "miles")
  22567. },
  22568. {
  22569. name: "Macro+++",
  22570. height: math.unit(12, "miles")
  22571. },
  22572. {
  22573. name: "Macro++++",
  22574. height: math.unit(120, "miles")
  22575. },
  22576. {
  22577. name: "Macro+++++",
  22578. height: math.unit(1200, "miles")
  22579. },
  22580. ]
  22581. ))
  22582. characterMakers.push(() => makeCharacter(
  22583. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22584. {
  22585. front: {
  22586. height: math.unit(6, "feet"),
  22587. weight: math.unit(150, "lb"),
  22588. name: "Front",
  22589. image: {
  22590. source: "./media/characters/sheila-wolf/front.svg",
  22591. extra: 1931 / 1808,
  22592. bottom: 29.5 / 1960
  22593. }
  22594. },
  22595. dick: {
  22596. height: math.unit(1.464, "feet"),
  22597. name: "Dick",
  22598. image: {
  22599. source: "./media/characters/sheila-wolf/dick.svg"
  22600. }
  22601. },
  22602. muzzle: {
  22603. height: math.unit(0.513, "feet"),
  22604. name: "Muzzle",
  22605. image: {
  22606. source: "./media/characters/sheila-wolf/muzzle.svg"
  22607. }
  22608. },
  22609. },
  22610. [
  22611. {
  22612. name: "Macro",
  22613. height: math.unit(70, "feet"),
  22614. default: true
  22615. },
  22616. ]
  22617. ))
  22618. characterMakers.push(() => makeCharacter(
  22619. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22620. {
  22621. front: {
  22622. height: math.unit(32, "meters"),
  22623. weight: math.unit(300000, "kg"),
  22624. name: "Front",
  22625. image: {
  22626. source: "./media/characters/almor/front.svg",
  22627. extra: 1408 / 1322,
  22628. bottom: 94.6 / 1506.5
  22629. }
  22630. },
  22631. },
  22632. [
  22633. {
  22634. name: "Macro",
  22635. height: math.unit(32, "meters"),
  22636. default: true
  22637. },
  22638. ]
  22639. ))
  22640. characterMakers.push(() => makeCharacter(
  22641. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22642. {
  22643. front: {
  22644. height: math.unit(7, "feet"),
  22645. weight: math.unit(200, "lb"),
  22646. name: "Front",
  22647. image: {
  22648. source: "./media/characters/silver/front.svg",
  22649. extra: 472.1 / 450.5,
  22650. bottom: 26.5 / 499.424
  22651. }
  22652. },
  22653. },
  22654. [
  22655. {
  22656. name: "Normal",
  22657. height: math.unit(7, "feet"),
  22658. default: true
  22659. },
  22660. {
  22661. name: "Macro",
  22662. height: math.unit(800, "feet")
  22663. },
  22664. {
  22665. name: "Megamacro",
  22666. height: math.unit(250, "miles")
  22667. },
  22668. ]
  22669. ))
  22670. characterMakers.push(() => makeCharacter(
  22671. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22672. {
  22673. front: {
  22674. height: math.unit(6, "feet"),
  22675. weight: math.unit(150, "lb"),
  22676. name: "Front",
  22677. image: {
  22678. source: "./media/characters/pliskin/front.svg",
  22679. extra: 1469 / 1359,
  22680. bottom: 70 / 1540
  22681. }
  22682. },
  22683. },
  22684. [
  22685. {
  22686. name: "Micro",
  22687. height: math.unit(3, "inches")
  22688. },
  22689. {
  22690. name: "Normal",
  22691. height: math.unit(5 + 11 / 12, "feet"),
  22692. default: true
  22693. },
  22694. {
  22695. name: "Macro",
  22696. height: math.unit(120, "feet")
  22697. },
  22698. ]
  22699. ))
  22700. characterMakers.push(() => makeCharacter(
  22701. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22702. {
  22703. front: {
  22704. height: math.unit(6, "feet"),
  22705. weight: math.unit(150, "lb"),
  22706. name: "Front",
  22707. image: {
  22708. source: "./media/characters/sammy/front.svg",
  22709. extra: 1193 / 1089,
  22710. bottom: 30.5 / 1226
  22711. }
  22712. },
  22713. },
  22714. [
  22715. {
  22716. name: "Macro",
  22717. height: math.unit(1700, "feet"),
  22718. default: true
  22719. },
  22720. {
  22721. name: "Examacro",
  22722. height: math.unit(2.5e9, "lightyears")
  22723. },
  22724. ]
  22725. ))
  22726. characterMakers.push(() => makeCharacter(
  22727. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22728. {
  22729. front: {
  22730. height: math.unit(21, "meters"),
  22731. weight: math.unit(12, "tonnes"),
  22732. name: "Front",
  22733. image: {
  22734. source: "./media/characters/kuru/front.svg",
  22735. extra: 4301 / 3785,
  22736. bottom: 371.3 / 4691
  22737. }
  22738. },
  22739. },
  22740. [
  22741. {
  22742. name: "Macro",
  22743. height: math.unit(21, "meters"),
  22744. default: true
  22745. },
  22746. ]
  22747. ))
  22748. characterMakers.push(() => makeCharacter(
  22749. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22750. {
  22751. front: {
  22752. height: math.unit(23, "meters"),
  22753. weight: math.unit(12.2, "tonnes"),
  22754. name: "Front",
  22755. image: {
  22756. source: "./media/characters/rakka/front.svg",
  22757. extra: 4670 / 4169,
  22758. bottom: 301 / 4968.7
  22759. }
  22760. },
  22761. },
  22762. [
  22763. {
  22764. name: "Macro",
  22765. height: math.unit(23, "meters"),
  22766. default: true
  22767. },
  22768. ]
  22769. ))
  22770. characterMakers.push(() => makeCharacter(
  22771. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22772. {
  22773. front: {
  22774. height: math.unit(6, "feet"),
  22775. weight: math.unit(150, "lb"),
  22776. name: "Front",
  22777. image: {
  22778. source: "./media/characters/rhys-feline/front.svg",
  22779. extra: 2488 / 2308,
  22780. bottom: 35.67 / 2519.19
  22781. }
  22782. },
  22783. },
  22784. [
  22785. {
  22786. name: "Really Small",
  22787. height: math.unit(1, "nm")
  22788. },
  22789. {
  22790. name: "Micro",
  22791. height: math.unit(4, "inches")
  22792. },
  22793. {
  22794. name: "Normal",
  22795. height: math.unit(4 + 10 / 12, "feet"),
  22796. default: true
  22797. },
  22798. {
  22799. name: "Macro",
  22800. height: math.unit(100, "feet")
  22801. },
  22802. {
  22803. name: "Megamacto",
  22804. height: math.unit(50, "miles")
  22805. },
  22806. ]
  22807. ))
  22808. characterMakers.push(() => makeCharacter(
  22809. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22810. {
  22811. side: {
  22812. height: math.unit(30, "feet"),
  22813. weight: math.unit(35000, "kg"),
  22814. name: "Side",
  22815. image: {
  22816. source: "./media/characters/alydar/side.svg",
  22817. extra: 234 / 222,
  22818. bottom: 6.5 / 241
  22819. }
  22820. },
  22821. front: {
  22822. height: math.unit(30, "feet"),
  22823. weight: math.unit(35000, "kg"),
  22824. name: "Front",
  22825. image: {
  22826. source: "./media/characters/alydar/front.svg",
  22827. extra: 223.37 / 210.2,
  22828. bottom: 22.3 / 246.76
  22829. }
  22830. },
  22831. top: {
  22832. height: math.unit(64.54, "feet"),
  22833. weight: math.unit(35000, "kg"),
  22834. name: "Top",
  22835. image: {
  22836. source: "./media/characters/alydar/top.svg"
  22837. }
  22838. },
  22839. anthro: {
  22840. height: math.unit(30, "feet"),
  22841. weight: math.unit(9000, "kg"),
  22842. name: "Anthro",
  22843. image: {
  22844. source: "./media/characters/alydar/anthro.svg",
  22845. extra: 432 / 421,
  22846. bottom: 7.18 / 440
  22847. }
  22848. },
  22849. maw: {
  22850. height: math.unit(11.693, "feet"),
  22851. name: "Maw",
  22852. image: {
  22853. source: "./media/characters/alydar/maw.svg"
  22854. }
  22855. },
  22856. head: {
  22857. height: math.unit(11.693, "feet"),
  22858. name: "Head",
  22859. image: {
  22860. source: "./media/characters/alydar/head.svg"
  22861. }
  22862. },
  22863. headAlt: {
  22864. height: math.unit(12.861, "feet"),
  22865. name: "Head (Alt)",
  22866. image: {
  22867. source: "./media/characters/alydar/head-alt.svg"
  22868. }
  22869. },
  22870. wing: {
  22871. height: math.unit(20.712, "feet"),
  22872. name: "Wing",
  22873. image: {
  22874. source: "./media/characters/alydar/wing.svg"
  22875. }
  22876. },
  22877. wingFeather: {
  22878. height: math.unit(9.662, "feet"),
  22879. name: "Wing Feather",
  22880. image: {
  22881. source: "./media/characters/alydar/wing-feather.svg"
  22882. }
  22883. },
  22884. countourFeather: {
  22885. height: math.unit(4.154, "feet"),
  22886. name: "Contour Feather",
  22887. image: {
  22888. source: "./media/characters/alydar/contour-feather.svg"
  22889. }
  22890. },
  22891. },
  22892. [
  22893. {
  22894. name: "Diplomatic",
  22895. height: math.unit(13, "feet"),
  22896. default: true
  22897. },
  22898. {
  22899. name: "Small",
  22900. height: math.unit(30, "feet")
  22901. },
  22902. {
  22903. name: "Normal",
  22904. height: math.unit(95, "feet"),
  22905. default: true
  22906. },
  22907. {
  22908. name: "Large",
  22909. height: math.unit(285, "feet")
  22910. },
  22911. {
  22912. name: "Incomprehensible",
  22913. height: math.unit(450, "megameters")
  22914. },
  22915. ]
  22916. ))
  22917. characterMakers.push(() => makeCharacter(
  22918. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22919. {
  22920. side: {
  22921. height: math.unit(11, "feet"),
  22922. weight: math.unit(1750, "kg"),
  22923. name: "Side",
  22924. image: {
  22925. source: "./media/characters/selicia/side.svg",
  22926. extra: 440 / 396,
  22927. bottom: 24.8 / 465.979
  22928. }
  22929. },
  22930. maw: {
  22931. height: math.unit(4.665, "feet"),
  22932. name: "Maw",
  22933. image: {
  22934. source: "./media/characters/selicia/maw.svg"
  22935. }
  22936. },
  22937. },
  22938. [
  22939. {
  22940. name: "Normal",
  22941. height: math.unit(11, "feet"),
  22942. default: true
  22943. },
  22944. ]
  22945. ))
  22946. characterMakers.push(() => makeCharacter(
  22947. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22948. {
  22949. side: {
  22950. height: math.unit(2 + 6 / 12, "feet"),
  22951. weight: math.unit(30, "lb"),
  22952. name: "Side",
  22953. image: {
  22954. source: "./media/characters/layla/side.svg",
  22955. extra: 244 / 188,
  22956. bottom: 18.2 / 262.1
  22957. }
  22958. },
  22959. back: {
  22960. height: math.unit(2 + 6 / 12, "feet"),
  22961. weight: math.unit(30, "lb"),
  22962. name: "Back",
  22963. image: {
  22964. source: "./media/characters/layla/back.svg",
  22965. extra: 308 / 241.5,
  22966. bottom: 8.9 / 316.8
  22967. }
  22968. },
  22969. cumming: {
  22970. height: math.unit(2 + 6 / 12, "feet"),
  22971. weight: math.unit(30, "lb"),
  22972. name: "Cumming",
  22973. image: {
  22974. source: "./media/characters/layla/cumming.svg",
  22975. extra: 342 / 279,
  22976. bottom: 595 / 938
  22977. }
  22978. },
  22979. dickFlaccid: {
  22980. height: math.unit(2.595, "feet"),
  22981. name: "Flaccid Genitals",
  22982. image: {
  22983. source: "./media/characters/layla/dick-flaccid.svg"
  22984. }
  22985. },
  22986. dickErect: {
  22987. height: math.unit(2.359, "feet"),
  22988. name: "Erect Genitals",
  22989. image: {
  22990. source: "./media/characters/layla/dick-erect.svg"
  22991. }
  22992. },
  22993. },
  22994. [
  22995. {
  22996. name: "Micro",
  22997. height: math.unit(1, "inch")
  22998. },
  22999. {
  23000. name: "Small",
  23001. height: math.unit(1, "foot")
  23002. },
  23003. {
  23004. name: "Normal",
  23005. height: math.unit(2 + 6 / 12, "feet"),
  23006. default: true
  23007. },
  23008. {
  23009. name: "Macro",
  23010. height: math.unit(200, "feet")
  23011. },
  23012. {
  23013. name: "Megamacro",
  23014. height: math.unit(1000, "miles")
  23015. },
  23016. {
  23017. name: "Planetary",
  23018. height: math.unit(8000, "miles")
  23019. },
  23020. {
  23021. name: "True Layla",
  23022. height: math.unit(200000 * 7, "multiverses")
  23023. },
  23024. ]
  23025. ))
  23026. characterMakers.push(() => makeCharacter(
  23027. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23028. {
  23029. back: {
  23030. height: math.unit(10.5, "feet"),
  23031. weight: math.unit(800, "lb"),
  23032. name: "Back",
  23033. image: {
  23034. source: "./media/characters/knox/back.svg",
  23035. extra: 1486 / 1089,
  23036. bottom: 107 / 1601.4
  23037. }
  23038. },
  23039. side: {
  23040. height: math.unit(10.5, "feet"),
  23041. weight: math.unit(800, "lb"),
  23042. name: "Side",
  23043. image: {
  23044. source: "./media/characters/knox/side.svg",
  23045. extra: 244 / 218,
  23046. bottom: 14 / 260
  23047. }
  23048. },
  23049. },
  23050. [
  23051. {
  23052. name: "Compact",
  23053. height: math.unit(10.5, "feet"),
  23054. default: true
  23055. },
  23056. {
  23057. name: "Dynamax",
  23058. height: math.unit(210, "feet")
  23059. },
  23060. {
  23061. name: "Full Macro",
  23062. height: math.unit(850, "feet")
  23063. },
  23064. ]
  23065. ))
  23066. characterMakers.push(() => makeCharacter(
  23067. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23068. {
  23069. front: {
  23070. height: math.unit(6, "feet"),
  23071. weight: math.unit(152, "lb"),
  23072. name: "Front",
  23073. image: {
  23074. source: "./media/characters/shin-pikachu/front.svg",
  23075. extra: 1574 / 1480,
  23076. bottom: 53.3 / 1626
  23077. }
  23078. },
  23079. hand: {
  23080. height: math.unit(1.055, "feet"),
  23081. name: "Hand",
  23082. image: {
  23083. source: "./media/characters/shin-pikachu/hand.svg"
  23084. }
  23085. },
  23086. foot: {
  23087. height: math.unit(1.1, "feet"),
  23088. name: "Foot",
  23089. image: {
  23090. source: "./media/characters/shin-pikachu/foot.svg"
  23091. }
  23092. },
  23093. collar: {
  23094. height: math.unit(0.386, "feet"),
  23095. name: "Collar",
  23096. image: {
  23097. source: "./media/characters/shin-pikachu/collar.svg"
  23098. }
  23099. },
  23100. },
  23101. [
  23102. {
  23103. name: "Smallest",
  23104. height: math.unit(0.5, "inches")
  23105. },
  23106. {
  23107. name: "Micro",
  23108. height: math.unit(6, "inches")
  23109. },
  23110. {
  23111. name: "Normal",
  23112. height: math.unit(6, "feet"),
  23113. default: true
  23114. },
  23115. {
  23116. name: "Macro",
  23117. height: math.unit(150, "feet")
  23118. },
  23119. ]
  23120. ))
  23121. characterMakers.push(() => makeCharacter(
  23122. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23123. {
  23124. front: {
  23125. height: math.unit(28, "feet"),
  23126. weight: math.unit(10500, "lb"),
  23127. name: "Front",
  23128. image: {
  23129. source: "./media/characters/kayda/front.svg",
  23130. extra: 1536 / 1428,
  23131. bottom: 68.7 / 1603
  23132. }
  23133. },
  23134. back: {
  23135. height: math.unit(28, "feet"),
  23136. weight: math.unit(10500, "lb"),
  23137. name: "Back",
  23138. image: {
  23139. source: "./media/characters/kayda/back.svg",
  23140. extra: 1557 / 1464,
  23141. bottom: 39.5 / 1597.49
  23142. }
  23143. },
  23144. dick: {
  23145. height: math.unit(3.858, "feet"),
  23146. name: "Dick",
  23147. image: {
  23148. source: "./media/characters/kayda/dick.svg"
  23149. }
  23150. },
  23151. },
  23152. [
  23153. {
  23154. name: "Macro",
  23155. height: math.unit(28, "feet"),
  23156. default: true
  23157. },
  23158. ]
  23159. ))
  23160. characterMakers.push(() => makeCharacter(
  23161. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23162. {
  23163. front: {
  23164. height: math.unit(10 + 11 / 12, "feet"),
  23165. weight: math.unit(1400, "lb"),
  23166. name: "Front",
  23167. image: {
  23168. source: "./media/characters/brian/front.svg",
  23169. extra: 737 / 692,
  23170. bottom: 55.4 / 785
  23171. }
  23172. },
  23173. },
  23174. [
  23175. {
  23176. name: "Normal",
  23177. height: math.unit(10 + 11 / 12, "feet"),
  23178. default: true
  23179. },
  23180. ]
  23181. ))
  23182. characterMakers.push(() => makeCharacter(
  23183. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23184. {
  23185. front: {
  23186. height: math.unit(5 + 8 / 12, "feet"),
  23187. weight: math.unit(140, "lb"),
  23188. name: "Front",
  23189. image: {
  23190. source: "./media/characters/khemri/front.svg",
  23191. extra: 4780 / 4059,
  23192. bottom: 80.1 / 4859.25
  23193. }
  23194. },
  23195. },
  23196. [
  23197. {
  23198. name: "Micro",
  23199. height: math.unit(6, "inches")
  23200. },
  23201. {
  23202. name: "Normal",
  23203. height: math.unit(5 + 8 / 12, "feet"),
  23204. default: true
  23205. },
  23206. ]
  23207. ))
  23208. characterMakers.push(() => makeCharacter(
  23209. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23210. {
  23211. front: {
  23212. height: math.unit(13, "feet"),
  23213. weight: math.unit(1700, "lb"),
  23214. name: "Front",
  23215. image: {
  23216. source: "./media/characters/felix-braveheart/front.svg",
  23217. extra: 1222 / 1157,
  23218. bottom: 53.2 / 1280
  23219. }
  23220. },
  23221. back: {
  23222. height: math.unit(13, "feet"),
  23223. weight: math.unit(1700, "lb"),
  23224. name: "Back",
  23225. image: {
  23226. source: "./media/characters/felix-braveheart/back.svg",
  23227. extra: 1277 / 1203,
  23228. bottom: 50.2 / 1327
  23229. }
  23230. },
  23231. feral: {
  23232. height: math.unit(6, "feet"),
  23233. weight: math.unit(400, "lb"),
  23234. name: "Feral",
  23235. image: {
  23236. source: "./media/characters/felix-braveheart/feral.svg",
  23237. extra: 682 / 625,
  23238. bottom: 6.9 / 688
  23239. }
  23240. },
  23241. },
  23242. [
  23243. {
  23244. name: "Normal",
  23245. height: math.unit(13, "feet"),
  23246. default: true
  23247. },
  23248. ]
  23249. ))
  23250. characterMakers.push(() => makeCharacter(
  23251. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23252. {
  23253. side: {
  23254. height: math.unit(5 + 11 / 12, "feet"),
  23255. weight: math.unit(1400, "lb"),
  23256. name: "Side",
  23257. image: {
  23258. source: "./media/characters/shadow-blade/side.svg",
  23259. extra: 1726 / 1267,
  23260. bottom: 58.4 / 1785
  23261. }
  23262. },
  23263. },
  23264. [
  23265. {
  23266. name: "Normal",
  23267. height: math.unit(5 + 11 / 12, "feet"),
  23268. default: true
  23269. },
  23270. ]
  23271. ))
  23272. characterMakers.push(() => makeCharacter(
  23273. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23274. {
  23275. front: {
  23276. height: math.unit(1 + 6 / 12, "feet"),
  23277. weight: math.unit(25, "lb"),
  23278. name: "Front",
  23279. image: {
  23280. source: "./media/characters/karla-halldor/front.svg",
  23281. extra: 1459 / 1383,
  23282. bottom: 12 / 1472
  23283. }
  23284. },
  23285. },
  23286. [
  23287. {
  23288. name: "Normal",
  23289. height: math.unit(1 + 6 / 12, "feet"),
  23290. default: true
  23291. },
  23292. ]
  23293. ))
  23294. characterMakers.push(() => makeCharacter(
  23295. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23296. {
  23297. front: {
  23298. height: math.unit(6 + 2 / 12, "feet"),
  23299. weight: math.unit(160, "lb"),
  23300. name: "Front",
  23301. image: {
  23302. source: "./media/characters/ariam/front.svg",
  23303. extra: 714 / 617,
  23304. bottom: 23.4 / 737,
  23305. }
  23306. },
  23307. squatting: {
  23308. height: math.unit(4.1, "feet"),
  23309. weight: math.unit(160, "lb"),
  23310. name: "Squatting",
  23311. image: {
  23312. source: "./media/characters/ariam/squatting.svg",
  23313. extra: 2617 / 2112,
  23314. bottom: 61.2 / 2681,
  23315. }
  23316. },
  23317. },
  23318. [
  23319. {
  23320. name: "Normal",
  23321. height: math.unit(6 + 2 / 12, "feet"),
  23322. default: true
  23323. },
  23324. {
  23325. name: "Normal+",
  23326. height: math.unit(4, "meters")
  23327. },
  23328. {
  23329. name: "Macro",
  23330. height: math.unit(50, "meters")
  23331. },
  23332. {
  23333. name: "Macro+",
  23334. height: math.unit(100, "meters")
  23335. },
  23336. {
  23337. name: "Megamacro",
  23338. height: math.unit(20, "km")
  23339. },
  23340. ]
  23341. ))
  23342. characterMakers.push(() => makeCharacter(
  23343. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23344. {
  23345. front: {
  23346. height: math.unit(1.67, "meters"),
  23347. weight: math.unit(140, "lb"),
  23348. name: "Front",
  23349. image: {
  23350. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23351. extra: 438 / 410,
  23352. bottom: 0.75 / 439
  23353. }
  23354. },
  23355. },
  23356. [
  23357. {
  23358. name: "Shrunken",
  23359. height: math.unit(7.6, "cm")
  23360. },
  23361. {
  23362. name: "Human Scale",
  23363. height: math.unit(1.67, "meters")
  23364. },
  23365. {
  23366. name: "Wolxi Scale",
  23367. height: math.unit(36.7, "meters"),
  23368. default: true
  23369. },
  23370. ]
  23371. ))
  23372. characterMakers.push(() => makeCharacter(
  23373. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23374. {
  23375. front: {
  23376. height: math.unit(1.73, "meters"),
  23377. weight: math.unit(240, "lb"),
  23378. name: "Front",
  23379. image: {
  23380. source: "./media/characters/izue-two-mothers/front.svg",
  23381. extra: 469 / 437,
  23382. bottom: 1.24 / 470.6
  23383. }
  23384. },
  23385. },
  23386. [
  23387. {
  23388. name: "Shrunken",
  23389. height: math.unit(7.86, "cm")
  23390. },
  23391. {
  23392. name: "Human Scale",
  23393. height: math.unit(1.73, "meters")
  23394. },
  23395. {
  23396. name: "Wolxi Scale",
  23397. height: math.unit(38, "meters"),
  23398. default: true
  23399. },
  23400. ]
  23401. ))
  23402. characterMakers.push(() => makeCharacter(
  23403. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23404. {
  23405. front: {
  23406. height: math.unit(1.55, "meters"),
  23407. weight: math.unit(120, "lb"),
  23408. name: "Front",
  23409. image: {
  23410. source: "./media/characters/teeku-love-shack/front.svg",
  23411. extra: 387 / 362,
  23412. bottom: 1.51 / 388
  23413. }
  23414. },
  23415. },
  23416. [
  23417. {
  23418. name: "Shrunken",
  23419. height: math.unit(7, "cm")
  23420. },
  23421. {
  23422. name: "Human Scale",
  23423. height: math.unit(1.55, "meters")
  23424. },
  23425. {
  23426. name: "Wolxi Scale",
  23427. height: math.unit(34.1, "meters"),
  23428. default: true
  23429. },
  23430. ]
  23431. ))
  23432. characterMakers.push(() => makeCharacter(
  23433. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23434. {
  23435. front: {
  23436. height: math.unit(1.83, "meters"),
  23437. weight: math.unit(135, "lb"),
  23438. name: "Front",
  23439. image: {
  23440. source: "./media/characters/dejma-the-red/front.svg",
  23441. extra: 480 / 458,
  23442. bottom: 1.8 / 482
  23443. }
  23444. },
  23445. },
  23446. [
  23447. {
  23448. name: "Shrunken",
  23449. height: math.unit(8.3, "cm")
  23450. },
  23451. {
  23452. name: "Human Scale",
  23453. height: math.unit(1.83, "meters")
  23454. },
  23455. {
  23456. name: "Wolxi Scale",
  23457. height: math.unit(40, "meters"),
  23458. default: true
  23459. },
  23460. ]
  23461. ))
  23462. characterMakers.push(() => makeCharacter(
  23463. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23464. {
  23465. front: {
  23466. height: math.unit(1.78, "meters"),
  23467. weight: math.unit(65, "kg"),
  23468. name: "Front",
  23469. image: {
  23470. source: "./media/characters/aki/front.svg",
  23471. extra: 452 / 415
  23472. }
  23473. },
  23474. frontNsfw: {
  23475. height: math.unit(1.78, "meters"),
  23476. weight: math.unit(65, "kg"),
  23477. name: "Front (NSFW)",
  23478. image: {
  23479. source: "./media/characters/aki/front-nsfw.svg",
  23480. extra: 452 / 415
  23481. }
  23482. },
  23483. back: {
  23484. height: math.unit(1.78, "meters"),
  23485. weight: math.unit(65, "kg"),
  23486. name: "Back",
  23487. image: {
  23488. source: "./media/characters/aki/back.svg",
  23489. extra: 452 / 415
  23490. }
  23491. },
  23492. rump: {
  23493. height: math.unit(2.05, "feet"),
  23494. name: "Rump",
  23495. image: {
  23496. source: "./media/characters/aki/rump.svg"
  23497. }
  23498. },
  23499. dick: {
  23500. height: math.unit(0.95, "feet"),
  23501. name: "Dick",
  23502. image: {
  23503. source: "./media/characters/aki/dick.svg"
  23504. }
  23505. },
  23506. },
  23507. [
  23508. {
  23509. name: "Micro",
  23510. height: math.unit(15, "cm")
  23511. },
  23512. {
  23513. name: "Normal",
  23514. height: math.unit(178, "cm"),
  23515. default: true
  23516. },
  23517. {
  23518. name: "Macro",
  23519. height: math.unit(214, "m")
  23520. },
  23521. {
  23522. name: "Macro+",
  23523. height: math.unit(534, "m")
  23524. },
  23525. ]
  23526. ))
  23527. characterMakers.push(() => makeCharacter(
  23528. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23529. {
  23530. front: {
  23531. height: math.unit(5 + 5 / 12, "feet"),
  23532. weight: math.unit(120, "lb"),
  23533. name: "Front",
  23534. image: {
  23535. source: "./media/characters/ari/front.svg",
  23536. extra: 714.5 / 682,
  23537. bottom: 8 / 722.5
  23538. }
  23539. },
  23540. },
  23541. [
  23542. {
  23543. name: "Normal",
  23544. height: math.unit(5 + 5 / 12, "feet")
  23545. },
  23546. {
  23547. name: "Macro",
  23548. height: math.unit(100, "feet"),
  23549. default: true
  23550. },
  23551. {
  23552. name: "Megamacro",
  23553. height: math.unit(100, "miles")
  23554. },
  23555. {
  23556. name: "Gigamacro",
  23557. height: math.unit(80000, "miles")
  23558. },
  23559. ]
  23560. ))
  23561. characterMakers.push(() => makeCharacter(
  23562. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23563. {
  23564. side: {
  23565. height: math.unit(9, "feet"),
  23566. weight: math.unit(400, "kg"),
  23567. name: "Side",
  23568. image: {
  23569. source: "./media/characters/bolt/side.svg",
  23570. extra: 1126 / 896,
  23571. bottom: 60 / 1187.3,
  23572. }
  23573. },
  23574. },
  23575. [
  23576. {
  23577. name: "Micro",
  23578. height: math.unit(5, "inches")
  23579. },
  23580. {
  23581. name: "Normal",
  23582. height: math.unit(9, "feet"),
  23583. default: true
  23584. },
  23585. {
  23586. name: "Macro",
  23587. height: math.unit(700, "feet")
  23588. },
  23589. {
  23590. name: "Max Size",
  23591. height: math.unit(1.52e22, "yottameters")
  23592. },
  23593. ]
  23594. ))
  23595. characterMakers.push(() => makeCharacter(
  23596. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23597. {
  23598. front: {
  23599. height: math.unit(4.53, "meters"),
  23600. weight: math.unit(3, "tons"),
  23601. name: "Front",
  23602. image: {
  23603. source: "./media/characters/draekon-sylviar/front.svg",
  23604. extra: 1228 / 1068,
  23605. bottom: 41 / 1270
  23606. }
  23607. },
  23608. tail: {
  23609. height: math.unit(1.772, "meter"),
  23610. name: "Tail",
  23611. image: {
  23612. source: "./media/characters/draekon-sylviar/tail.svg"
  23613. }
  23614. },
  23615. head: {
  23616. height: math.unit(1.331, "meter"),
  23617. name: "Head",
  23618. image: {
  23619. source: "./media/characters/draekon-sylviar/head.svg"
  23620. }
  23621. },
  23622. hand: {
  23623. height: math.unit(0.564, "meter"),
  23624. name: "Hand",
  23625. image: {
  23626. source: "./media/characters/draekon-sylviar/hand.svg"
  23627. }
  23628. },
  23629. foot: {
  23630. height: math.unit(0.621, "meter"),
  23631. name: "Foot",
  23632. image: {
  23633. source: "./media/characters/draekon-sylviar/foot.svg",
  23634. bottom: 32 / 324
  23635. }
  23636. },
  23637. dick: {
  23638. height: math.unit(61, "cm"),
  23639. name: "Dick",
  23640. image: {
  23641. source: "./media/characters/draekon-sylviar/dick.svg"
  23642. }
  23643. },
  23644. dickseparated: {
  23645. height: math.unit(61, "cm"),
  23646. name: "Dick-separated",
  23647. image: {
  23648. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23649. }
  23650. },
  23651. },
  23652. [
  23653. {
  23654. name: "Small",
  23655. height: math.unit(4.53 / 2, "meters"),
  23656. default: true
  23657. },
  23658. {
  23659. name: "Normal",
  23660. height: math.unit(4.53, "meters"),
  23661. default: true
  23662. },
  23663. {
  23664. name: "Large",
  23665. height: math.unit(4.53 * 2, "meters"),
  23666. },
  23667. ]
  23668. ))
  23669. characterMakers.push(() => makeCharacter(
  23670. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23671. {
  23672. front: {
  23673. height: math.unit(6 + 2 / 12, "feet"),
  23674. weight: math.unit(180, "lb"),
  23675. name: "Front",
  23676. image: {
  23677. source: "./media/characters/brawler/front.svg",
  23678. extra: 3301 / 3027,
  23679. bottom: 138 / 3439
  23680. }
  23681. },
  23682. },
  23683. [
  23684. {
  23685. name: "Normal",
  23686. height: math.unit(6 + 2 / 12, "feet"),
  23687. default: true
  23688. },
  23689. ]
  23690. ))
  23691. characterMakers.push(() => makeCharacter(
  23692. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23693. {
  23694. front: {
  23695. height: math.unit(11, "feet"),
  23696. weight: math.unit(1000, "lb"),
  23697. name: "Front",
  23698. image: {
  23699. source: "./media/characters/alex/front.svg",
  23700. bottom: 44.5 / 620
  23701. }
  23702. },
  23703. },
  23704. [
  23705. {
  23706. name: "Micro",
  23707. height: math.unit(5, "inches")
  23708. },
  23709. {
  23710. name: "Normal",
  23711. height: math.unit(11, "feet"),
  23712. default: true
  23713. },
  23714. {
  23715. name: "Macro",
  23716. height: math.unit(9.5e9, "feet")
  23717. },
  23718. {
  23719. name: "Max Size",
  23720. height: math.unit(1.4e283, "yottameters")
  23721. },
  23722. ]
  23723. ))
  23724. characterMakers.push(() => makeCharacter(
  23725. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23726. {
  23727. female: {
  23728. height: math.unit(29.9, "m"),
  23729. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23730. name: "Female",
  23731. image: {
  23732. source: "./media/characters/zenari/female.svg",
  23733. extra: 3281.6 / 3217,
  23734. bottom: 72.2 / 3353
  23735. }
  23736. },
  23737. male: {
  23738. height: math.unit(27.7, "m"),
  23739. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23740. name: "Male",
  23741. image: {
  23742. source: "./media/characters/zenari/male.svg",
  23743. extra: 3008 / 2991,
  23744. bottom: 54.6 / 3069
  23745. }
  23746. },
  23747. },
  23748. [
  23749. {
  23750. name: "Macro",
  23751. height: math.unit(29.7, "meters"),
  23752. default: true
  23753. },
  23754. ]
  23755. ))
  23756. characterMakers.push(() => makeCharacter(
  23757. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23758. {
  23759. female: {
  23760. height: math.unit(23.8, "m"),
  23761. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23762. name: "Female",
  23763. image: {
  23764. source: "./media/characters/mactarian/female.svg",
  23765. extra: 2662 / 2569,
  23766. bottom: 73 / 2736
  23767. }
  23768. },
  23769. male: {
  23770. height: math.unit(23.8, "m"),
  23771. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23772. name: "Male",
  23773. image: {
  23774. source: "./media/characters/mactarian/male.svg",
  23775. extra: 2673 / 2600,
  23776. bottom: 76 / 2750
  23777. }
  23778. },
  23779. },
  23780. [
  23781. {
  23782. name: "Macro",
  23783. height: math.unit(23.8, "meters"),
  23784. default: true
  23785. },
  23786. ]
  23787. ))
  23788. characterMakers.push(() => makeCharacter(
  23789. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23790. {
  23791. female: {
  23792. height: math.unit(19.3, "m"),
  23793. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23794. name: "Female",
  23795. image: {
  23796. source: "./media/characters/umok/female.svg",
  23797. extra: 2186 / 2078,
  23798. bottom: 87 / 2277
  23799. }
  23800. },
  23801. male: {
  23802. height: math.unit(19.5, "m"),
  23803. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23804. name: "Male",
  23805. image: {
  23806. source: "./media/characters/umok/male.svg",
  23807. extra: 2233 / 2140,
  23808. bottom: 24.4 / 2258
  23809. }
  23810. },
  23811. },
  23812. [
  23813. {
  23814. name: "Macro",
  23815. height: math.unit(19.3, "meters"),
  23816. default: true
  23817. },
  23818. ]
  23819. ))
  23820. characterMakers.push(() => makeCharacter(
  23821. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23822. {
  23823. female: {
  23824. height: math.unit(26.15, "m"),
  23825. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23826. name: "Female",
  23827. image: {
  23828. source: "./media/characters/joraxian/female.svg",
  23829. extra: 2912 / 2824,
  23830. bottom: 36 / 2956
  23831. }
  23832. },
  23833. male: {
  23834. height: math.unit(25.4, "m"),
  23835. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23836. name: "Male",
  23837. image: {
  23838. source: "./media/characters/joraxian/male.svg",
  23839. extra: 2877 / 2721,
  23840. bottom: 82 / 2967
  23841. }
  23842. },
  23843. },
  23844. [
  23845. {
  23846. name: "Macro",
  23847. height: math.unit(26.15, "meters"),
  23848. default: true
  23849. },
  23850. ]
  23851. ))
  23852. characterMakers.push(() => makeCharacter(
  23853. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23854. {
  23855. female: {
  23856. height: math.unit(21.6, "m"),
  23857. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23858. name: "Female",
  23859. image: {
  23860. source: "./media/characters/sthara/female.svg",
  23861. extra: 2516 / 2347,
  23862. bottom: 21.5 / 2537
  23863. }
  23864. },
  23865. male: {
  23866. height: math.unit(24, "m"),
  23867. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23868. name: "Male",
  23869. image: {
  23870. source: "./media/characters/sthara/male.svg",
  23871. extra: 2732 / 2607,
  23872. bottom: 23 / 2732
  23873. }
  23874. },
  23875. },
  23876. [
  23877. {
  23878. name: "Macro",
  23879. height: math.unit(21.6, "meters"),
  23880. default: true
  23881. },
  23882. ]
  23883. ))
  23884. characterMakers.push(() => makeCharacter(
  23885. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23886. {
  23887. front: {
  23888. height: math.unit(6 + 4 / 12, "feet"),
  23889. weight: math.unit(175, "lb"),
  23890. name: "Front",
  23891. image: {
  23892. source: "./media/characters/luka-bryzant/front.svg",
  23893. extra: 311 / 289,
  23894. bottom: 4 / 315
  23895. }
  23896. },
  23897. back: {
  23898. height: math.unit(6 + 4 / 12, "feet"),
  23899. weight: math.unit(175, "lb"),
  23900. name: "Back",
  23901. image: {
  23902. source: "./media/characters/luka-bryzant/back.svg",
  23903. extra: 311 / 289,
  23904. bottom: 3.8 / 313.7
  23905. }
  23906. },
  23907. },
  23908. [
  23909. {
  23910. name: "Micro",
  23911. height: math.unit(10, "inches")
  23912. },
  23913. {
  23914. name: "Normal",
  23915. height: math.unit(6 + 4 / 12, "feet"),
  23916. default: true
  23917. },
  23918. {
  23919. name: "Large",
  23920. height: math.unit(12, "feet")
  23921. },
  23922. ]
  23923. ))
  23924. characterMakers.push(() => makeCharacter(
  23925. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23926. {
  23927. front: {
  23928. height: math.unit(5 + 7 / 12, "feet"),
  23929. weight: math.unit(185, "lb"),
  23930. name: "Front",
  23931. image: {
  23932. source: "./media/characters/aman-aquila/front.svg",
  23933. extra: 1013 / 976,
  23934. bottom: 45.6 / 1057
  23935. }
  23936. },
  23937. side: {
  23938. height: math.unit(5 + 7 / 12, "feet"),
  23939. weight: math.unit(185, "lb"),
  23940. name: "Side",
  23941. image: {
  23942. source: "./media/characters/aman-aquila/side.svg",
  23943. extra: 1054 / 1011,
  23944. bottom: 15 / 1070
  23945. }
  23946. },
  23947. back: {
  23948. height: math.unit(5 + 7 / 12, "feet"),
  23949. weight: math.unit(185, "lb"),
  23950. name: "Back",
  23951. image: {
  23952. source: "./media/characters/aman-aquila/back.svg",
  23953. extra: 1026 / 970,
  23954. bottom: 12 / 1039
  23955. }
  23956. },
  23957. head: {
  23958. height: math.unit(1.211, "feet"),
  23959. name: "Head",
  23960. image: {
  23961. source: "./media/characters/aman-aquila/head.svg",
  23962. }
  23963. },
  23964. },
  23965. [
  23966. {
  23967. name: "Minimicro",
  23968. height: math.unit(0.057, "inches")
  23969. },
  23970. {
  23971. name: "Micro",
  23972. height: math.unit(7, "inches")
  23973. },
  23974. {
  23975. name: "Mini",
  23976. height: math.unit(3 + 7 / 12, "feet")
  23977. },
  23978. {
  23979. name: "Normal",
  23980. height: math.unit(5 + 7 / 12, "feet"),
  23981. default: true
  23982. },
  23983. {
  23984. name: "Macro",
  23985. height: math.unit(157 + 7 / 12, "feet")
  23986. },
  23987. {
  23988. name: "Megamacro",
  23989. height: math.unit(1557 + 7 / 12, "feet")
  23990. },
  23991. {
  23992. name: "Gigamacro",
  23993. height: math.unit(15557 + 7 / 12, "feet")
  23994. },
  23995. ]
  23996. ))
  23997. characterMakers.push(() => makeCharacter(
  23998. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23999. {
  24000. front: {
  24001. height: math.unit(3 + 2 / 12, "inches"),
  24002. weight: math.unit(0.3, "ounces"),
  24003. name: "Front",
  24004. image: {
  24005. source: "./media/characters/hiphae/front.svg",
  24006. extra: 1931 / 1683,
  24007. bottom: 24 / 1955
  24008. }
  24009. },
  24010. },
  24011. [
  24012. {
  24013. name: "Normal",
  24014. height: math.unit(3 + 1 / 2, "inches"),
  24015. default: true
  24016. },
  24017. ]
  24018. ))
  24019. characterMakers.push(() => makeCharacter(
  24020. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24021. {
  24022. front: {
  24023. height: math.unit(5 + 10 / 12, "feet"),
  24024. weight: math.unit(165, "lb"),
  24025. name: "Front",
  24026. image: {
  24027. source: "./media/characters/nicky/front.svg",
  24028. extra: 3144 / 2886,
  24029. bottom: 45.6 / 3192
  24030. }
  24031. },
  24032. back: {
  24033. height: math.unit(5 + 10 / 12, "feet"),
  24034. weight: math.unit(165, "lb"),
  24035. name: "Back",
  24036. image: {
  24037. source: "./media/characters/nicky/back.svg",
  24038. extra: 3055 / 2804,
  24039. bottom: 28.4 / 3087
  24040. }
  24041. },
  24042. frontclothed: {
  24043. height: math.unit(5 + 10 / 12, "feet"),
  24044. weight: math.unit(165, "lb"),
  24045. name: "Front-clothed",
  24046. image: {
  24047. source: "./media/characters/nicky/front-clothed.svg",
  24048. extra: 3184.9 / 2926.9,
  24049. bottom: 86.5 / 3239.9
  24050. }
  24051. },
  24052. foot: {
  24053. height: math.unit(1.16, "feet"),
  24054. name: "Foot",
  24055. image: {
  24056. source: "./media/characters/nicky/foot.svg"
  24057. }
  24058. },
  24059. feet: {
  24060. height: math.unit(1.34, "feet"),
  24061. name: "Feet",
  24062. image: {
  24063. source: "./media/characters/nicky/feet.svg"
  24064. }
  24065. },
  24066. maw: {
  24067. height: math.unit(0.9, "feet"),
  24068. name: "Maw",
  24069. image: {
  24070. source: "./media/characters/nicky/maw.svg"
  24071. }
  24072. },
  24073. },
  24074. [
  24075. {
  24076. name: "Normal",
  24077. height: math.unit(5 + 10 / 12, "feet"),
  24078. default: true
  24079. },
  24080. {
  24081. name: "Macro",
  24082. height: math.unit(60, "feet")
  24083. },
  24084. {
  24085. name: "Megamacro",
  24086. height: math.unit(1, "mile")
  24087. },
  24088. ]
  24089. ))
  24090. characterMakers.push(() => makeCharacter(
  24091. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24092. {
  24093. side: {
  24094. height: math.unit(10, "feet"),
  24095. weight: math.unit(600, "lb"),
  24096. name: "Side",
  24097. image: {
  24098. source: "./media/characters/blair/side.svg",
  24099. bottom: 16.6 / 475,
  24100. extra: 458 / 431
  24101. }
  24102. },
  24103. },
  24104. [
  24105. {
  24106. name: "Micro",
  24107. height: math.unit(8, "inches")
  24108. },
  24109. {
  24110. name: "Normal",
  24111. height: math.unit(10, "feet"),
  24112. default: true
  24113. },
  24114. {
  24115. name: "Macro",
  24116. height: math.unit(180, "feet")
  24117. },
  24118. ]
  24119. ))
  24120. characterMakers.push(() => makeCharacter(
  24121. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24122. {
  24123. front: {
  24124. height: math.unit(5 + 4 / 12, "feet"),
  24125. weight: math.unit(125, "lb"),
  24126. name: "Front",
  24127. image: {
  24128. source: "./media/characters/fisher/front.svg",
  24129. extra: 444 / 390,
  24130. bottom: 2 / 444.8
  24131. }
  24132. },
  24133. },
  24134. [
  24135. {
  24136. name: "Micro",
  24137. height: math.unit(4, "inches")
  24138. },
  24139. {
  24140. name: "Normal",
  24141. height: math.unit(5 + 4 / 12, "feet"),
  24142. default: true
  24143. },
  24144. {
  24145. name: "Macro",
  24146. height: math.unit(100, "feet")
  24147. },
  24148. ]
  24149. ))
  24150. characterMakers.push(() => makeCharacter(
  24151. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24152. {
  24153. front: {
  24154. height: math.unit(6.71, "feet"),
  24155. weight: math.unit(200, "lb"),
  24156. capacity: math.unit(1000000, "people"),
  24157. name: "Front",
  24158. image: {
  24159. source: "./media/characters/gliss/front.svg",
  24160. extra: 2347 / 2231,
  24161. bottom: 113 / 2462
  24162. }
  24163. },
  24164. hammerspaceSize: {
  24165. height: math.unit(6.71 * 717, "feet"),
  24166. weight: math.unit(200, "lb"),
  24167. capacity: math.unit(1000000, "people"),
  24168. name: "Hammerspace Size",
  24169. image: {
  24170. source: "./media/characters/gliss/front.svg",
  24171. extra: 2347 / 2231,
  24172. bottom: 113 / 2462
  24173. }
  24174. },
  24175. },
  24176. [
  24177. {
  24178. name: "Normal",
  24179. height: math.unit(6.71, "feet"),
  24180. default: true
  24181. },
  24182. ]
  24183. ))
  24184. characterMakers.push(() => makeCharacter(
  24185. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24186. {
  24187. side: {
  24188. height: math.unit(1.44, "m"),
  24189. weight: math.unit(80, "kg"),
  24190. name: "Side",
  24191. image: {
  24192. source: "./media/characters/dune-anderson/side.svg",
  24193. bottom: 49 / 1426
  24194. }
  24195. },
  24196. },
  24197. [
  24198. {
  24199. name: "Wolf-sized",
  24200. height: math.unit(1.44, "meters")
  24201. },
  24202. {
  24203. name: "Normal",
  24204. height: math.unit(5.05, "meters"),
  24205. default: true
  24206. },
  24207. {
  24208. name: "Big",
  24209. height: math.unit(14.4, "meters")
  24210. },
  24211. {
  24212. name: "Huge",
  24213. height: math.unit(144, "meters")
  24214. },
  24215. ]
  24216. ))
  24217. characterMakers.push(() => makeCharacter(
  24218. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24219. {
  24220. front: {
  24221. height: math.unit(7, "feet"),
  24222. weight: math.unit(425, "lb"),
  24223. name: "Front",
  24224. image: {
  24225. source: "./media/characters/hind/front.svg",
  24226. extra: 2091 / 1860,
  24227. bottom: 129 / 2220
  24228. }
  24229. },
  24230. back: {
  24231. height: math.unit(7, "feet"),
  24232. weight: math.unit(425, "lb"),
  24233. name: "Back",
  24234. image: {
  24235. source: "./media/characters/hind/back.svg",
  24236. extra: 2091 / 1860,
  24237. bottom: 24.6 / 2309
  24238. }
  24239. },
  24240. tail: {
  24241. height: math.unit(2.8, "feet"),
  24242. name: "Tail",
  24243. image: {
  24244. source: "./media/characters/hind/tail.svg"
  24245. }
  24246. },
  24247. head: {
  24248. height: math.unit(2.55, "feet"),
  24249. name: "Head",
  24250. image: {
  24251. source: "./media/characters/hind/head.svg"
  24252. }
  24253. },
  24254. },
  24255. [
  24256. {
  24257. name: "XS",
  24258. height: math.unit(0.7, "feet")
  24259. },
  24260. {
  24261. name: "Normal",
  24262. height: math.unit(7, "feet"),
  24263. default: true
  24264. },
  24265. {
  24266. name: "XL",
  24267. height: math.unit(70, "feet")
  24268. },
  24269. ]
  24270. ))
  24271. characterMakers.push(() => makeCharacter(
  24272. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24273. {
  24274. front: {
  24275. height: math.unit(6, "feet"),
  24276. weight: math.unit(150, "lb"),
  24277. name: "Front",
  24278. image: {
  24279. source: "./media/characters/dylan-skaven/front.svg",
  24280. extra: 2318 / 2063,
  24281. bottom: 93.4 / 2410
  24282. }
  24283. },
  24284. },
  24285. [
  24286. {
  24287. name: "Nano",
  24288. height: math.unit(1, "mm")
  24289. },
  24290. {
  24291. name: "Micro",
  24292. height: math.unit(1, "cm")
  24293. },
  24294. {
  24295. name: "Normal",
  24296. height: math.unit(2.1, "meters"),
  24297. default: true
  24298. },
  24299. ]
  24300. ))
  24301. characterMakers.push(() => makeCharacter(
  24302. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24303. {
  24304. front: {
  24305. height: math.unit(7 + 5 / 12, "feet"),
  24306. weight: math.unit(357, "lb"),
  24307. name: "Front",
  24308. image: {
  24309. source: "./media/characters/solex-draconov/front.svg",
  24310. extra: 1993 / 1865,
  24311. bottom: 117 / 2111
  24312. }
  24313. },
  24314. },
  24315. [
  24316. {
  24317. name: "Natural Height",
  24318. height: math.unit(7 + 5 / 12, "feet"),
  24319. default: true
  24320. },
  24321. {
  24322. name: "Macro",
  24323. height: math.unit(350, "feet")
  24324. },
  24325. {
  24326. name: "Macro+",
  24327. height: math.unit(1000, "feet")
  24328. },
  24329. {
  24330. name: "Megamacro",
  24331. height: math.unit(20, "km")
  24332. },
  24333. {
  24334. name: "Megamacro+",
  24335. height: math.unit(1000, "km")
  24336. },
  24337. {
  24338. name: "Gigamacro",
  24339. height: math.unit(2.5, "Gm")
  24340. },
  24341. {
  24342. name: "Teramacro",
  24343. height: math.unit(15, "Tm")
  24344. },
  24345. {
  24346. name: "Galactic",
  24347. height: math.unit(30, "Zm")
  24348. },
  24349. {
  24350. name: "Universal",
  24351. height: math.unit(21000, "Ym")
  24352. },
  24353. {
  24354. name: "Omniversal",
  24355. height: math.unit(9.861e50, "Ym")
  24356. },
  24357. {
  24358. name: "Existential",
  24359. height: math.unit(1e300, "meters")
  24360. },
  24361. ]
  24362. ))
  24363. characterMakers.push(() => makeCharacter(
  24364. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24365. {
  24366. side: {
  24367. height: math.unit(25, "feet"),
  24368. weight: math.unit(90000, "lb"),
  24369. name: "Side",
  24370. image: {
  24371. source: "./media/characters/mandarax/side.svg",
  24372. extra: 614 / 332,
  24373. bottom: 55 / 630
  24374. }
  24375. },
  24376. head: {
  24377. height: math.unit(11.4, "feet"),
  24378. name: "Head",
  24379. image: {
  24380. source: "./media/characters/mandarax/head.svg"
  24381. }
  24382. },
  24383. belly: {
  24384. height: math.unit(33, "feet"),
  24385. name: "Belly",
  24386. capacity: math.unit(500, "people"),
  24387. image: {
  24388. source: "./media/characters/mandarax/belly.svg"
  24389. }
  24390. },
  24391. dick: {
  24392. height: math.unit(8.46, "feet"),
  24393. name: "Dick",
  24394. image: {
  24395. source: "./media/characters/mandarax/dick.svg"
  24396. }
  24397. },
  24398. top: {
  24399. height: math.unit(28, "meters"),
  24400. name: "Top",
  24401. image: {
  24402. source: "./media/characters/mandarax/top.svg"
  24403. }
  24404. },
  24405. },
  24406. [
  24407. {
  24408. name: "Normal",
  24409. height: math.unit(25, "feet"),
  24410. default: true
  24411. },
  24412. ]
  24413. ))
  24414. characterMakers.push(() => makeCharacter(
  24415. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24416. {
  24417. front: {
  24418. height: math.unit(5, "feet"),
  24419. weight: math.unit(90, "lb"),
  24420. name: "Front",
  24421. image: {
  24422. source: "./media/characters/pixil/front.svg",
  24423. extra: 2000 / 1618,
  24424. bottom: 12.3 / 2011
  24425. }
  24426. },
  24427. },
  24428. [
  24429. {
  24430. name: "Normal",
  24431. height: math.unit(5, "feet"),
  24432. default: true
  24433. },
  24434. {
  24435. name: "Megamacro",
  24436. height: math.unit(10, "miles"),
  24437. },
  24438. ]
  24439. ))
  24440. characterMakers.push(() => makeCharacter(
  24441. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24442. {
  24443. front: {
  24444. height: math.unit(7 + 2 / 12, "feet"),
  24445. weight: math.unit(200, "lb"),
  24446. name: "Front",
  24447. image: {
  24448. source: "./media/characters/angel/front.svg",
  24449. extra: 1830 / 1737,
  24450. bottom: 22.6 / 1854,
  24451. }
  24452. },
  24453. },
  24454. [
  24455. {
  24456. name: "Normal",
  24457. height: math.unit(7 + 2 / 12, "feet"),
  24458. default: true
  24459. },
  24460. {
  24461. name: "Macro",
  24462. height: math.unit(1000, "feet")
  24463. },
  24464. {
  24465. name: "Megamacro",
  24466. height: math.unit(2, "miles")
  24467. },
  24468. {
  24469. name: "Gigamacro",
  24470. height: math.unit(20, "earths")
  24471. },
  24472. ]
  24473. ))
  24474. characterMakers.push(() => makeCharacter(
  24475. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24476. {
  24477. front: {
  24478. height: math.unit(5, "feet"),
  24479. weight: math.unit(180, "lb"),
  24480. name: "Front",
  24481. image: {
  24482. source: "./media/characters/mekana/front.svg",
  24483. extra: 1671 / 1605,
  24484. bottom: 3.5 / 1691
  24485. }
  24486. },
  24487. side: {
  24488. height: math.unit(5, "feet"),
  24489. weight: math.unit(180, "lb"),
  24490. name: "Side",
  24491. image: {
  24492. source: "./media/characters/mekana/side.svg",
  24493. extra: 1671 / 1605,
  24494. bottom: 3.5 / 1691
  24495. }
  24496. },
  24497. back: {
  24498. height: math.unit(5, "feet"),
  24499. weight: math.unit(180, "lb"),
  24500. name: "Back",
  24501. image: {
  24502. source: "./media/characters/mekana/back.svg",
  24503. extra: 1671 / 1605,
  24504. bottom: 3.5 / 1691
  24505. }
  24506. },
  24507. },
  24508. [
  24509. {
  24510. name: "Normal",
  24511. height: math.unit(5, "feet"),
  24512. default: true
  24513. },
  24514. ]
  24515. ))
  24516. characterMakers.push(() => makeCharacter(
  24517. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24518. {
  24519. front: {
  24520. height: math.unit(4 + 6 / 12, "feet"),
  24521. weight: math.unit(80, "lb"),
  24522. name: "Front",
  24523. image: {
  24524. source: "./media/characters/pixie/front.svg",
  24525. extra: 1924 / 1825,
  24526. bottom: 22.4 / 1946
  24527. }
  24528. },
  24529. },
  24530. [
  24531. {
  24532. name: "Normal",
  24533. height: math.unit(4 + 6 / 12, "feet"),
  24534. default: true
  24535. },
  24536. {
  24537. name: "Macro",
  24538. height: math.unit(40, "feet")
  24539. },
  24540. ]
  24541. ))
  24542. characterMakers.push(() => makeCharacter(
  24543. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24544. {
  24545. front: {
  24546. height: math.unit(2.1, "meters"),
  24547. weight: math.unit(200, "lb"),
  24548. name: "Front",
  24549. image: {
  24550. source: "./media/characters/the-lascivious/front.svg",
  24551. extra: 1 / 0.893,
  24552. bottom: 3.5 / 573.7
  24553. }
  24554. },
  24555. },
  24556. [
  24557. {
  24558. name: "Human Scale",
  24559. height: math.unit(2.1, "meters")
  24560. },
  24561. {
  24562. name: "Wolxi Scale",
  24563. height: math.unit(46.2, "m"),
  24564. default: true
  24565. },
  24566. {
  24567. name: "Boinker of Buildings",
  24568. height: math.unit(10, "km")
  24569. },
  24570. {
  24571. name: "Shagger of Skyscrapers",
  24572. height: math.unit(40, "km")
  24573. },
  24574. {
  24575. name: "Banger of Boroughs",
  24576. height: math.unit(4000, "km")
  24577. },
  24578. {
  24579. name: "Screwer of States",
  24580. height: math.unit(100000, "km")
  24581. },
  24582. {
  24583. name: "Pounder of Planets",
  24584. height: math.unit(2000000, "km")
  24585. },
  24586. ]
  24587. ))
  24588. characterMakers.push(() => makeCharacter(
  24589. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24590. {
  24591. front: {
  24592. height: math.unit(6, "feet"),
  24593. weight: math.unit(150, "lb"),
  24594. name: "Front",
  24595. image: {
  24596. source: "./media/characters/aj/front.svg",
  24597. extra: 2039 / 1562,
  24598. bottom: 40 / 2079
  24599. }
  24600. },
  24601. },
  24602. [
  24603. {
  24604. name: "Normal",
  24605. height: math.unit(11 + 6 / 12, "feet"),
  24606. default: true
  24607. },
  24608. {
  24609. name: "Megamacro",
  24610. height: math.unit(60, "megameters")
  24611. },
  24612. ]
  24613. ))
  24614. characterMakers.push(() => makeCharacter(
  24615. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24616. {
  24617. side: {
  24618. height: math.unit(31 + 8 / 12, "feet"),
  24619. weight: math.unit(75000, "kg"),
  24620. name: "Side",
  24621. image: {
  24622. source: "./media/characters/koros/side.svg",
  24623. extra: 1442 / 1297,
  24624. bottom: 122.7 / 1562
  24625. }
  24626. },
  24627. dicksKingsCrown: {
  24628. height: math.unit(6, "feet"),
  24629. name: "Dicks (King's Crown)",
  24630. image: {
  24631. source: "./media/characters/koros/dicks-kings-crown.svg"
  24632. }
  24633. },
  24634. dicksTailSet: {
  24635. height: math.unit(3, "feet"),
  24636. name: "Dicks (Tail Set)",
  24637. image: {
  24638. source: "./media/characters/koros/dicks-tail-set.svg"
  24639. }
  24640. },
  24641. dickCumming: {
  24642. height: math.unit(7.98, "feet"),
  24643. name: "Dick (Cumming)",
  24644. image: {
  24645. source: "./media/characters/koros/dick-cumming.svg"
  24646. }
  24647. },
  24648. dicksBack: {
  24649. height: math.unit(5.9, "feet"),
  24650. name: "Dicks (Back)",
  24651. image: {
  24652. source: "./media/characters/koros/dicks-back.svg"
  24653. }
  24654. },
  24655. dicksFront: {
  24656. height: math.unit(3.72, "feet"),
  24657. name: "Dicks (Front)",
  24658. image: {
  24659. source: "./media/characters/koros/dicks-front.svg"
  24660. }
  24661. },
  24662. dicksPeeking: {
  24663. height: math.unit(3.0, "feet"),
  24664. name: "Dicks (Peeking)",
  24665. image: {
  24666. source: "./media/characters/koros/dicks-peeking.svg"
  24667. }
  24668. },
  24669. eye: {
  24670. height: math.unit(1.7, "feet"),
  24671. name: "Eye",
  24672. image: {
  24673. source: "./media/characters/koros/eye.svg"
  24674. }
  24675. },
  24676. headFront: {
  24677. height: math.unit(11.69, "feet"),
  24678. name: "Head (Front)",
  24679. image: {
  24680. source: "./media/characters/koros/head-front.svg"
  24681. }
  24682. },
  24683. headSide: {
  24684. height: math.unit(14, "feet"),
  24685. name: "Head (Side)",
  24686. image: {
  24687. source: "./media/characters/koros/head-side.svg"
  24688. }
  24689. },
  24690. leg: {
  24691. height: math.unit(17, "feet"),
  24692. name: "Leg",
  24693. image: {
  24694. source: "./media/characters/koros/leg.svg"
  24695. }
  24696. },
  24697. mawSide: {
  24698. height: math.unit(12.8, "feet"),
  24699. name: "Maw (Side)",
  24700. image: {
  24701. source: "./media/characters/koros/maw-side.svg"
  24702. }
  24703. },
  24704. mawSpitting: {
  24705. height: math.unit(17, "feet"),
  24706. name: "Maw (Spitting)",
  24707. image: {
  24708. source: "./media/characters/koros/maw-spitting.svg"
  24709. }
  24710. },
  24711. slit: {
  24712. height: math.unit(2.8, "feet"),
  24713. name: "Slit",
  24714. image: {
  24715. source: "./media/characters/koros/slit.svg"
  24716. }
  24717. },
  24718. stomach: {
  24719. height: math.unit(6.8, "feet"),
  24720. capacity: math.unit(20, "people"),
  24721. name: "Stomach",
  24722. image: {
  24723. source: "./media/characters/koros/stomach.svg"
  24724. }
  24725. },
  24726. wingspanBottom: {
  24727. height: math.unit(114, "feet"),
  24728. name: "Wingspan (Bottom)",
  24729. image: {
  24730. source: "./media/characters/koros/wingspan-bottom.svg"
  24731. }
  24732. },
  24733. wingspanTop: {
  24734. height: math.unit(104, "feet"),
  24735. name: "Wingspan (Top)",
  24736. image: {
  24737. source: "./media/characters/koros/wingspan-top.svg"
  24738. }
  24739. },
  24740. },
  24741. [
  24742. {
  24743. name: "Normal",
  24744. height: math.unit(31 + 8 / 12, "feet"),
  24745. default: true
  24746. },
  24747. ]
  24748. ))
  24749. characterMakers.push(() => makeCharacter(
  24750. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24751. {
  24752. front: {
  24753. height: math.unit(18 + 5 / 12, "feet"),
  24754. weight: math.unit(3750, "kg"),
  24755. name: "Front",
  24756. image: {
  24757. source: "./media/characters/vexx/front.svg",
  24758. extra: 426 / 396,
  24759. bottom: 31.5 / 458
  24760. }
  24761. },
  24762. maw: {
  24763. height: math.unit(6, "feet"),
  24764. name: "Maw",
  24765. image: {
  24766. source: "./media/characters/vexx/maw.svg"
  24767. }
  24768. },
  24769. },
  24770. [
  24771. {
  24772. name: "Normal",
  24773. height: math.unit(18 + 5 / 12, "feet"),
  24774. default: true
  24775. },
  24776. ]
  24777. ))
  24778. characterMakers.push(() => makeCharacter(
  24779. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24780. {
  24781. front: {
  24782. height: math.unit(17 + 6 / 12, "feet"),
  24783. weight: math.unit(150, "lb"),
  24784. name: "Front",
  24785. image: {
  24786. source: "./media/characters/baadra/front.svg",
  24787. extra: 3137 / 2890,
  24788. bottom: 168.4 / 3305
  24789. }
  24790. },
  24791. back: {
  24792. height: math.unit(17 + 6 / 12, "feet"),
  24793. weight: math.unit(150, "lb"),
  24794. name: "Back",
  24795. image: {
  24796. source: "./media/characters/baadra/back.svg",
  24797. extra: 3142 / 2890,
  24798. bottom: 220 / 3371
  24799. }
  24800. },
  24801. head: {
  24802. height: math.unit(5.45, "feet"),
  24803. name: "Head",
  24804. image: {
  24805. source: "./media/characters/baadra/head.svg"
  24806. }
  24807. },
  24808. headAngry: {
  24809. height: math.unit(4.95, "feet"),
  24810. name: "Head (Angry)",
  24811. image: {
  24812. source: "./media/characters/baadra/head-angry.svg"
  24813. }
  24814. },
  24815. headOpen: {
  24816. height: math.unit(6, "feet"),
  24817. name: "Head (Open)",
  24818. image: {
  24819. source: "./media/characters/baadra/head-open.svg"
  24820. }
  24821. },
  24822. },
  24823. [
  24824. {
  24825. name: "Normal",
  24826. height: math.unit(17 + 6 / 12, "feet"),
  24827. default: true
  24828. },
  24829. ]
  24830. ))
  24831. characterMakers.push(() => makeCharacter(
  24832. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24833. {
  24834. front: {
  24835. height: math.unit(7 + 3 / 12, "feet"),
  24836. weight: math.unit(180, "lb"),
  24837. name: "Front",
  24838. image: {
  24839. source: "./media/characters/juri/front.svg",
  24840. extra: 1401 / 1237,
  24841. bottom: 18.5 / 1418
  24842. }
  24843. },
  24844. side: {
  24845. height: math.unit(7 + 3 / 12, "feet"),
  24846. weight: math.unit(180, "lb"),
  24847. name: "Side",
  24848. image: {
  24849. source: "./media/characters/juri/side.svg",
  24850. extra: 1424 / 1242,
  24851. bottom: 18.5 / 1447
  24852. }
  24853. },
  24854. sitting: {
  24855. height: math.unit(6, "feet"),
  24856. weight: math.unit(180, "lb"),
  24857. name: "Sitting",
  24858. image: {
  24859. source: "./media/characters/juri/sitting.svg",
  24860. extra: 1270 / 1143,
  24861. bottom: 100 / 1343
  24862. }
  24863. },
  24864. back: {
  24865. height: math.unit(7 + 3 / 12, "feet"),
  24866. weight: math.unit(180, "lb"),
  24867. name: "Back",
  24868. image: {
  24869. source: "./media/characters/juri/back.svg",
  24870. extra: 1377 / 1240,
  24871. bottom: 23.7 / 1405
  24872. }
  24873. },
  24874. maw: {
  24875. height: math.unit(2.8, "feet"),
  24876. name: "Maw",
  24877. image: {
  24878. source: "./media/characters/juri/maw.svg"
  24879. }
  24880. },
  24881. stomach: {
  24882. height: math.unit(0.89, "feet"),
  24883. capacity: math.unit(4, "liters"),
  24884. name: "Stomach",
  24885. image: {
  24886. source: "./media/characters/juri/stomach.svg"
  24887. }
  24888. },
  24889. },
  24890. [
  24891. {
  24892. name: "Normal",
  24893. height: math.unit(7 + 3 / 12, "feet"),
  24894. default: true
  24895. },
  24896. ]
  24897. ))
  24898. characterMakers.push(() => makeCharacter(
  24899. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  24900. {
  24901. fox: {
  24902. height: math.unit(5 + 6 / 12, "feet"),
  24903. weight: math.unit(140, "lb"),
  24904. name: "Fox",
  24905. image: {
  24906. source: "./media/characters/maxene-sita/fox.svg",
  24907. extra: 146 / 138,
  24908. bottom: 2.1 / 148.19
  24909. }
  24910. },
  24911. foxLaying: {
  24912. height: math.unit(1.70, "feet"),
  24913. weight: math.unit(140, "lb"),
  24914. name: "Fox (Laying)",
  24915. image: {
  24916. source: "./media/characters/maxene-sita/fox-laying.svg",
  24917. extra: 910 / 572,
  24918. bottom: 71 / 981
  24919. }
  24920. },
  24921. kitsune: {
  24922. height: math.unit(10, "feet"),
  24923. weight: math.unit(800, "lb"),
  24924. name: "Kitsune",
  24925. image: {
  24926. source: "./media/characters/maxene-sita/kitsune.svg",
  24927. extra: 185 / 176,
  24928. bottom: 4.7 / 189.9
  24929. }
  24930. },
  24931. hellhound: {
  24932. height: math.unit(10, "feet"),
  24933. weight: math.unit(700, "lb"),
  24934. name: "Hellhound",
  24935. image: {
  24936. source: "./media/characters/maxene-sita/hellhound.svg",
  24937. extra: 1600 / 1545,
  24938. bottom: 81 / 1681
  24939. }
  24940. },
  24941. },
  24942. [
  24943. {
  24944. name: "Normal",
  24945. height: math.unit(5 + 6 / 12, "feet"),
  24946. default: true
  24947. },
  24948. ]
  24949. ))
  24950. characterMakers.push(() => makeCharacter(
  24951. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24952. {
  24953. front: {
  24954. height: math.unit(3 + 4 / 12, "feet"),
  24955. weight: math.unit(70, "lb"),
  24956. name: "Front",
  24957. image: {
  24958. source: "./media/characters/maia/front.svg",
  24959. extra: 227 / 219.5,
  24960. bottom: 40 / 267
  24961. }
  24962. },
  24963. back: {
  24964. height: math.unit(3 + 4 / 12, "feet"),
  24965. weight: math.unit(70, "lb"),
  24966. name: "Back",
  24967. image: {
  24968. source: "./media/characters/maia/back.svg",
  24969. extra: 237 / 225
  24970. }
  24971. },
  24972. },
  24973. [
  24974. {
  24975. name: "Normal",
  24976. height: math.unit(3 + 4 / 12, "feet"),
  24977. default: true
  24978. },
  24979. ]
  24980. ))
  24981. characterMakers.push(() => makeCharacter(
  24982. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  24983. {
  24984. front: {
  24985. height: math.unit(5 + 10 / 12, "feet"),
  24986. weight: math.unit(197, "lb"),
  24987. name: "Front",
  24988. image: {
  24989. source: "./media/characters/jabaro/front.svg",
  24990. extra: 225 / 216,
  24991. bottom: 5.06 / 230
  24992. }
  24993. },
  24994. back: {
  24995. height: math.unit(5 + 10 / 12, "feet"),
  24996. weight: math.unit(197, "lb"),
  24997. name: "Back",
  24998. image: {
  24999. source: "./media/characters/jabaro/back.svg",
  25000. extra: 225 / 219,
  25001. bottom: 1.9 / 227
  25002. }
  25003. },
  25004. },
  25005. [
  25006. {
  25007. name: "Normal",
  25008. height: math.unit(5 + 10 / 12, "feet"),
  25009. default: true
  25010. },
  25011. ]
  25012. ))
  25013. characterMakers.push(() => makeCharacter(
  25014. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25015. {
  25016. front: {
  25017. height: math.unit(5 + 8 / 12, "feet"),
  25018. weight: math.unit(139, "lb"),
  25019. name: "Front",
  25020. image: {
  25021. source: "./media/characters/risa/front.svg",
  25022. extra: 270 / 260,
  25023. bottom: 11.2 / 282
  25024. }
  25025. },
  25026. back: {
  25027. height: math.unit(5 + 8 / 12, "feet"),
  25028. weight: math.unit(139, "lb"),
  25029. name: "Back",
  25030. image: {
  25031. source: "./media/characters/risa/back.svg",
  25032. extra: 264 / 255,
  25033. bottom: 4 / 268
  25034. }
  25035. },
  25036. },
  25037. [
  25038. {
  25039. name: "Normal",
  25040. height: math.unit(5 + 8 / 12, "feet"),
  25041. default: true
  25042. },
  25043. ]
  25044. ))
  25045. characterMakers.push(() => makeCharacter(
  25046. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25047. {
  25048. front: {
  25049. height: math.unit(2 + 11 / 12, "feet"),
  25050. weight: math.unit(30, "lb"),
  25051. name: "Front",
  25052. image: {
  25053. source: "./media/characters/weatley/front.svg",
  25054. bottom: 10.7 / 414,
  25055. extra: 403.5 / 362
  25056. }
  25057. },
  25058. back: {
  25059. height: math.unit(2 + 11 / 12, "feet"),
  25060. weight: math.unit(30, "lb"),
  25061. name: "Back",
  25062. image: {
  25063. source: "./media/characters/weatley/back.svg",
  25064. bottom: 10.7 / 414,
  25065. extra: 403.5 / 362
  25066. }
  25067. },
  25068. },
  25069. [
  25070. {
  25071. name: "Normal",
  25072. height: math.unit(2 + 11 / 12, "feet"),
  25073. default: true
  25074. },
  25075. ]
  25076. ))
  25077. characterMakers.push(() => makeCharacter(
  25078. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25079. {
  25080. front: {
  25081. height: math.unit(5 + 2 / 12, "feet"),
  25082. weight: math.unit(50, "kg"),
  25083. name: "Front",
  25084. image: {
  25085. source: "./media/characters/mercury-crescent/front.svg",
  25086. extra: 1088 / 1033,
  25087. bottom: 18.9 / 1109
  25088. }
  25089. },
  25090. },
  25091. [
  25092. {
  25093. name: "Normal",
  25094. height: math.unit(5 + 2 / 12, "feet"),
  25095. default: true
  25096. },
  25097. ]
  25098. ))
  25099. characterMakers.push(() => makeCharacter(
  25100. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25101. {
  25102. front: {
  25103. height: math.unit(2, "feet"),
  25104. weight: math.unit(15, "kg"),
  25105. name: "Front",
  25106. image: {
  25107. source: "./media/characters/diamond-jones/front.svg",
  25108. bottom: 16 / 568
  25109. }
  25110. },
  25111. },
  25112. [
  25113. {
  25114. name: "Normal",
  25115. height: math.unit(2, "feet"),
  25116. default: true
  25117. },
  25118. ]
  25119. ))
  25120. characterMakers.push(() => makeCharacter(
  25121. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25122. {
  25123. front: {
  25124. height: math.unit(3, "feet"),
  25125. weight: math.unit(30, "kg"),
  25126. name: "Front",
  25127. image: {
  25128. source: "./media/characters/sweet-bit/front.svg",
  25129. extra: 675 / 567,
  25130. bottom: 27.7 / 703
  25131. }
  25132. },
  25133. },
  25134. [
  25135. {
  25136. name: "Normal",
  25137. height: math.unit(3, "feet"),
  25138. default: true
  25139. },
  25140. ]
  25141. ))
  25142. characterMakers.push(() => makeCharacter(
  25143. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25144. {
  25145. side: {
  25146. height: math.unit(9.178, "feet"),
  25147. weight: math.unit(500, "lb"),
  25148. name: "Side",
  25149. image: {
  25150. source: "./media/characters/umbrazen/side.svg",
  25151. extra: 1730 / 1473,
  25152. bottom: 34.6 / 1765
  25153. }
  25154. },
  25155. },
  25156. [
  25157. {
  25158. name: "Normal",
  25159. height: math.unit(9.178, "feet"),
  25160. default: true
  25161. },
  25162. ]
  25163. ))
  25164. characterMakers.push(() => makeCharacter(
  25165. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25166. {
  25167. front: {
  25168. height: math.unit(10, "feet"),
  25169. weight: math.unit(750, "lb"),
  25170. name: "Front",
  25171. image: {
  25172. source: "./media/characters/arlist/front.svg",
  25173. extra: 961 / 778,
  25174. bottom: 6.2 / 986
  25175. }
  25176. },
  25177. },
  25178. [
  25179. {
  25180. name: "Normal",
  25181. height: math.unit(10, "feet"),
  25182. default: true
  25183. },
  25184. ]
  25185. ))
  25186. characterMakers.push(() => makeCharacter(
  25187. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25188. {
  25189. front: {
  25190. height: math.unit(5 + 1 / 12, "feet"),
  25191. weight: math.unit(110, "lb"),
  25192. name: "Front",
  25193. image: {
  25194. source: "./media/characters/aradel/front.svg",
  25195. extra: 324 / 303,
  25196. bottom: 3.6 / 329.4
  25197. }
  25198. },
  25199. },
  25200. [
  25201. {
  25202. name: "Normal",
  25203. height: math.unit(5 + 1 / 12, "feet"),
  25204. default: true
  25205. },
  25206. ]
  25207. ))
  25208. characterMakers.push(() => makeCharacter(
  25209. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25210. {
  25211. front: {
  25212. height: math.unit(3 + 8 / 12, "feet"),
  25213. weight: math.unit(50, "lb"),
  25214. name: "Front",
  25215. image: {
  25216. source: "./media/characters/serryn/front.svg",
  25217. extra: 1792 / 1656,
  25218. bottom: 43.5 / 1840
  25219. }
  25220. },
  25221. },
  25222. [
  25223. {
  25224. name: "Normal",
  25225. height: math.unit(3 + 8 / 12, "feet"),
  25226. default: true
  25227. },
  25228. ]
  25229. ))
  25230. characterMakers.push(() => makeCharacter(
  25231. { name: "Xavier Thyme" },
  25232. {
  25233. front: {
  25234. height: math.unit(7 + 10 / 12, "feet"),
  25235. weight: math.unit(255, "lb"),
  25236. name: "Front",
  25237. image: {
  25238. source: "./media/characters/xavier-thyme/front.svg",
  25239. extra: 3733 / 3642,
  25240. bottom: 131 / 3869
  25241. }
  25242. },
  25243. frontRaven: {
  25244. height: math.unit(7 + 10 / 12, "feet"),
  25245. weight: math.unit(255, "lb"),
  25246. name: "Front (Raven)",
  25247. image: {
  25248. source: "./media/characters/xavier-thyme/front-raven.svg",
  25249. extra: 4385 / 3642,
  25250. bottom: 131 / 4517
  25251. }
  25252. },
  25253. },
  25254. [
  25255. {
  25256. name: "Normal",
  25257. height: math.unit(7 + 10 / 12, "feet"),
  25258. default: true
  25259. },
  25260. ]
  25261. ))
  25262. characterMakers.push(() => makeCharacter(
  25263. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25264. {
  25265. front: {
  25266. height: math.unit(1.6, "m"),
  25267. weight: math.unit(50, "kg"),
  25268. name: "Front",
  25269. image: {
  25270. source: "./media/characters/kiki/front.svg",
  25271. extra: 4682 / 3610,
  25272. bottom: 115 / 4777
  25273. }
  25274. },
  25275. },
  25276. [
  25277. {
  25278. name: "Normal",
  25279. height: math.unit(1.6, "meters"),
  25280. default: true
  25281. },
  25282. ]
  25283. ))
  25284. characterMakers.push(() => makeCharacter(
  25285. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25286. {
  25287. front: {
  25288. height: math.unit(50, "m"),
  25289. weight: math.unit(500, "tonnes"),
  25290. name: "Front",
  25291. image: {
  25292. source: "./media/characters/ryoko/front.svg",
  25293. extra: 4632 / 3926,
  25294. bottom: 193 / 4823
  25295. }
  25296. },
  25297. },
  25298. [
  25299. {
  25300. name: "Normal",
  25301. height: math.unit(50, "meters"),
  25302. default: true
  25303. },
  25304. ]
  25305. ))
  25306. characterMakers.push(() => makeCharacter(
  25307. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25308. {
  25309. front: {
  25310. height: math.unit(30, "m"),
  25311. weight: math.unit(22, "tonnes"),
  25312. name: "Front",
  25313. image: {
  25314. source: "./media/characters/elio/front.svg",
  25315. extra: 4582 / 3720,
  25316. bottom: 236 / 4828
  25317. }
  25318. },
  25319. },
  25320. [
  25321. {
  25322. name: "Normal",
  25323. height: math.unit(30, "meters"),
  25324. default: true
  25325. },
  25326. ]
  25327. ))
  25328. characterMakers.push(() => makeCharacter(
  25329. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25330. {
  25331. front: {
  25332. height: math.unit(6 + 3 / 12, "feet"),
  25333. weight: math.unit(120, "lb"),
  25334. name: "Front",
  25335. image: {
  25336. source: "./media/characters/azura/front.svg",
  25337. extra: 1149 / 1135,
  25338. bottom: 45 / 1194
  25339. }
  25340. },
  25341. frontClothed: {
  25342. height: math.unit(6 + 3 / 12, "feet"),
  25343. weight: math.unit(120, "lb"),
  25344. name: "Front (Clothed)",
  25345. image: {
  25346. source: "./media/characters/azura/front-clothed.svg",
  25347. extra: 1149 / 1135,
  25348. bottom: 45 / 1194
  25349. }
  25350. },
  25351. },
  25352. [
  25353. {
  25354. name: "Normal",
  25355. height: math.unit(6 + 3 / 12, "feet"),
  25356. default: true
  25357. },
  25358. {
  25359. name: "Macro",
  25360. height: math.unit(20 + 6 / 12, "feet")
  25361. },
  25362. {
  25363. name: "Megamacro",
  25364. height: math.unit(12, "miles")
  25365. },
  25366. {
  25367. name: "Gigamacro",
  25368. height: math.unit(10000, "miles")
  25369. },
  25370. {
  25371. name: "Teramacro",
  25372. height: math.unit(900000, "miles")
  25373. },
  25374. ]
  25375. ))
  25376. characterMakers.push(() => makeCharacter(
  25377. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25378. {
  25379. front: {
  25380. height: math.unit(12, "feet"),
  25381. weight: math.unit(1, "ton"),
  25382. capacity: math.unit(660000, "gallons"),
  25383. name: "Front",
  25384. image: {
  25385. source: "./media/characters/zeus/front.svg",
  25386. extra: 5005 / 4717,
  25387. bottom: 363 / 5388
  25388. }
  25389. },
  25390. },
  25391. [
  25392. {
  25393. name: "Normal",
  25394. height: math.unit(12, "feet")
  25395. },
  25396. {
  25397. name: "Preferred Size",
  25398. height: math.unit(0.5, "miles"),
  25399. default: true
  25400. },
  25401. {
  25402. name: "Giga Horse",
  25403. height: math.unit(300, "miles")
  25404. },
  25405. {
  25406. name: "Riding Planets",
  25407. height: math.unit(30, "megameters")
  25408. },
  25409. {
  25410. name: "Cosmic Giant",
  25411. height: math.unit(3, "zettameters")
  25412. },
  25413. {
  25414. name: "Breeding God",
  25415. height: math.unit(9.92e22, "yottameters")
  25416. },
  25417. ]
  25418. ))
  25419. characterMakers.push(() => makeCharacter(
  25420. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25421. {
  25422. side: {
  25423. height: math.unit(9, "feet"),
  25424. weight: math.unit(1500, "kg"),
  25425. name: "Side",
  25426. image: {
  25427. source: "./media/characters/fang/side.svg",
  25428. extra: 924 / 866,
  25429. bottom: 47.5 / 972.3
  25430. }
  25431. },
  25432. },
  25433. [
  25434. {
  25435. name: "Normal",
  25436. height: math.unit(9, "feet"),
  25437. default: true
  25438. },
  25439. {
  25440. name: "Macro",
  25441. height: math.unit(75 + 6 / 12, "feet")
  25442. },
  25443. {
  25444. name: "Teramacro",
  25445. height: math.unit(50000, "miles")
  25446. },
  25447. ]
  25448. ))
  25449. characterMakers.push(() => makeCharacter(
  25450. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25451. {
  25452. front: {
  25453. height: math.unit(10, "feet"),
  25454. weight: math.unit(2, "tons"),
  25455. name: "Front",
  25456. image: {
  25457. source: "./media/characters/rekhit/front.svg",
  25458. extra: 2796 / 2590,
  25459. bottom: 225 / 3022
  25460. }
  25461. },
  25462. },
  25463. [
  25464. {
  25465. name: "Normal",
  25466. height: math.unit(10, "feet"),
  25467. default: true
  25468. },
  25469. {
  25470. name: "Macro",
  25471. height: math.unit(500, "feet")
  25472. },
  25473. ]
  25474. ))
  25475. characterMakers.push(() => makeCharacter(
  25476. { name: "Dahlia Verrick" },
  25477. {
  25478. front: {
  25479. height: math.unit(7 + 6.451 / 12, "feet"),
  25480. weight: math.unit(310, "lb"),
  25481. name: "Front",
  25482. image: {
  25483. source: "./media/characters/dahlia-verrick/front.svg",
  25484. extra: 1488 / 1365,
  25485. bottom: 6.2 / 1495
  25486. }
  25487. },
  25488. back: {
  25489. height: math.unit(7 + 6.451 / 12, "feet"),
  25490. weight: math.unit(310, "lb"),
  25491. name: "Back",
  25492. image: {
  25493. source: "./media/characters/dahlia-verrick/back.svg",
  25494. extra: 1472 / 1351,
  25495. bottom: 5.28 / 1477
  25496. }
  25497. },
  25498. frontBusiness: {
  25499. height: math.unit(7 + 6.451 / 12, "feet"),
  25500. weight: math.unit(200, "lb"),
  25501. name: "Front (Business)",
  25502. image: {
  25503. source: "./media/characters/dahlia-verrick/front-business.svg",
  25504. extra: 1478 / 1381,
  25505. bottom: 5.5 / 1484
  25506. }
  25507. },
  25508. frontCasual: {
  25509. height: math.unit(7 + 6.451 / 12, "feet"),
  25510. weight: math.unit(200, "lb"),
  25511. name: "Front (Casual)",
  25512. image: {
  25513. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25514. extra: 1478 / 1381,
  25515. bottom: 5.5 / 1484
  25516. }
  25517. },
  25518. },
  25519. [
  25520. {
  25521. name: "Travel-Sized",
  25522. height: math.unit(7.45, "inches")
  25523. },
  25524. {
  25525. name: "Normal",
  25526. height: math.unit(7 + 6.451 / 12, "feet"),
  25527. default: true
  25528. },
  25529. {
  25530. name: "Hitting the Town",
  25531. height: math.unit(37 + 8 / 12, "feet")
  25532. },
  25533. {
  25534. name: "Stomp in the Suburbs",
  25535. height: math.unit(964 + 9.728 / 12, "feet")
  25536. },
  25537. {
  25538. name: "Sit on the City",
  25539. height: math.unit(61747 + 10.592 / 12, "feet")
  25540. },
  25541. {
  25542. name: "Glomp the Globe",
  25543. height: math.unit(252919327 + 4.832 / 12, "feet")
  25544. },
  25545. ]
  25546. ))
  25547. characterMakers.push(() => makeCharacter(
  25548. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25549. {
  25550. front: {
  25551. height: math.unit(6 + 4 / 12, "feet"),
  25552. weight: math.unit(320, "lb"),
  25553. name: "Front",
  25554. image: {
  25555. source: "./media/characters/balina-mahigan/front.svg",
  25556. extra: 447 / 428,
  25557. bottom: 18 / 466
  25558. }
  25559. },
  25560. back: {
  25561. height: math.unit(6 + 4 / 12, "feet"),
  25562. weight: math.unit(320, "lb"),
  25563. name: "Back",
  25564. image: {
  25565. source: "./media/characters/balina-mahigan/back.svg",
  25566. extra: 445 / 428,
  25567. bottom: 4.07 / 448
  25568. }
  25569. },
  25570. arm: {
  25571. height: math.unit(1.88, "feet"),
  25572. name: "Arm",
  25573. image: {
  25574. source: "./media/characters/balina-mahigan/arm.svg"
  25575. }
  25576. },
  25577. backPort: {
  25578. height: math.unit(0.685, "feet"),
  25579. name: "Back Port",
  25580. image: {
  25581. source: "./media/characters/balina-mahigan/back-port.svg"
  25582. }
  25583. },
  25584. hoofpaw: {
  25585. height: math.unit(1.41, "feet"),
  25586. name: "Hoofpaw",
  25587. image: {
  25588. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25589. }
  25590. },
  25591. leftHandBack: {
  25592. height: math.unit(0.938, "feet"),
  25593. name: "Left Hand (Back)",
  25594. image: {
  25595. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25596. }
  25597. },
  25598. leftHandFront: {
  25599. height: math.unit(0.938, "feet"),
  25600. name: "Left Hand (Front)",
  25601. image: {
  25602. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25603. }
  25604. },
  25605. rightHandBack: {
  25606. height: math.unit(0.95, "feet"),
  25607. name: "Right Hand (Back)",
  25608. image: {
  25609. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25610. }
  25611. },
  25612. rightHandFront: {
  25613. height: math.unit(0.95, "feet"),
  25614. name: "Right Hand (Front)",
  25615. image: {
  25616. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25617. }
  25618. },
  25619. },
  25620. [
  25621. {
  25622. name: "Normal",
  25623. height: math.unit(6 + 4 / 12, "feet"),
  25624. default: true
  25625. },
  25626. ]
  25627. ))
  25628. characterMakers.push(() => makeCharacter(
  25629. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25630. {
  25631. front: {
  25632. height: math.unit(6, "feet"),
  25633. weight: math.unit(320, "lb"),
  25634. name: "Front",
  25635. image: {
  25636. source: "./media/characters/balina-mejeri/front.svg",
  25637. extra: 517 / 488,
  25638. bottom: 44.2 / 561
  25639. }
  25640. },
  25641. },
  25642. [
  25643. {
  25644. name: "Normal",
  25645. height: math.unit(6 + 4 / 12, "feet")
  25646. },
  25647. {
  25648. name: "Business",
  25649. height: math.unit(155, "feet"),
  25650. default: true
  25651. },
  25652. ]
  25653. ))
  25654. characterMakers.push(() => makeCharacter(
  25655. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25656. {
  25657. kneeling: {
  25658. height: math.unit(6 + 4 / 12, "feet"),
  25659. weight: math.unit(300 * 20, "lb"),
  25660. name: "Kneeling",
  25661. image: {
  25662. source: "./media/characters/balbarian/kneeling.svg",
  25663. extra: 922 / 862,
  25664. bottom: 42.4 / 965
  25665. }
  25666. },
  25667. },
  25668. [
  25669. {
  25670. name: "Normal",
  25671. height: math.unit(6 + 4 / 12, "feet")
  25672. },
  25673. {
  25674. name: "Treasured",
  25675. height: math.unit(18 + 9 / 12, "feet"),
  25676. default: true
  25677. },
  25678. {
  25679. name: "Macro",
  25680. height: math.unit(900, "feet")
  25681. },
  25682. ]
  25683. ))
  25684. characterMakers.push(() => makeCharacter(
  25685. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25686. {
  25687. front: {
  25688. height: math.unit(6 + 4 / 12, "feet"),
  25689. weight: math.unit(325, "lb"),
  25690. name: "Front",
  25691. image: {
  25692. source: "./media/characters/balina-amarini/front.svg",
  25693. extra: 415 / 403,
  25694. bottom: 19 / 433.4
  25695. }
  25696. },
  25697. back: {
  25698. height: math.unit(6 + 4 / 12, "feet"),
  25699. weight: math.unit(325, "lb"),
  25700. name: "Back",
  25701. image: {
  25702. source: "./media/characters/balina-amarini/back.svg",
  25703. extra: 415 / 403,
  25704. bottom: 13.5 / 432
  25705. }
  25706. },
  25707. overdrive: {
  25708. height: math.unit(6 + 4 / 12, "feet"),
  25709. weight: math.unit(400, "lb"),
  25710. name: "Overdrive",
  25711. image: {
  25712. source: "./media/characters/balina-amarini/overdrive.svg",
  25713. extra: 269 / 259,
  25714. bottom: 12 / 282
  25715. }
  25716. },
  25717. },
  25718. [
  25719. {
  25720. name: "Boom",
  25721. height: math.unit(9 + 10 / 12, "feet"),
  25722. default: true
  25723. },
  25724. {
  25725. name: "Macro",
  25726. height: math.unit(280, "feet")
  25727. },
  25728. ]
  25729. ))
  25730. characterMakers.push(() => makeCharacter(
  25731. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25732. {
  25733. goddess: {
  25734. height: math.unit(600, "feet"),
  25735. weight: math.unit(2000000, "tons"),
  25736. name: "Goddess",
  25737. image: {
  25738. source: "./media/characters/lady-kubwa/goddess.svg",
  25739. extra: 1240.5 / 1223,
  25740. bottom: 22 / 1263
  25741. }
  25742. },
  25743. goddesser: {
  25744. height: math.unit(900, "feet"),
  25745. weight: math.unit(20000000, "lb"),
  25746. name: "Goddess-er",
  25747. image: {
  25748. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25749. extra: 899 / 888,
  25750. bottom: 12.6 / 912
  25751. }
  25752. },
  25753. },
  25754. [
  25755. {
  25756. name: "Macro",
  25757. height: math.unit(600, "feet"),
  25758. default: true
  25759. },
  25760. {
  25761. name: "Megamacro",
  25762. height: math.unit(250, "miles")
  25763. },
  25764. ]
  25765. ))
  25766. characterMakers.push(() => makeCharacter(
  25767. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25768. {
  25769. front: {
  25770. height: math.unit(7 + 7 / 12, "feet"),
  25771. weight: math.unit(250, "lb"),
  25772. name: "Front",
  25773. image: {
  25774. source: "./media/characters/tala-grovehorn/front.svg",
  25775. extra: 2636 / 2525,
  25776. bottom: 147 / 2781
  25777. }
  25778. },
  25779. back: {
  25780. height: math.unit(7 + 7 / 12, "feet"),
  25781. weight: math.unit(250, "lb"),
  25782. name: "Back",
  25783. image: {
  25784. source: "./media/characters/tala-grovehorn/back.svg",
  25785. extra: 2635 / 2539,
  25786. bottom: 100 / 2732.8
  25787. }
  25788. },
  25789. mouth: {
  25790. height: math.unit(1.15, "feet"),
  25791. name: "Mouth",
  25792. image: {
  25793. source: "./media/characters/tala-grovehorn/mouth.svg"
  25794. }
  25795. },
  25796. dick: {
  25797. height: math.unit(2.36, "feet"),
  25798. name: "Dick",
  25799. image: {
  25800. source: "./media/characters/tala-grovehorn/dick.svg"
  25801. }
  25802. },
  25803. slit: {
  25804. height: math.unit(0.61, "feet"),
  25805. name: "Slit",
  25806. image: {
  25807. source: "./media/characters/tala-grovehorn/slit.svg"
  25808. }
  25809. },
  25810. },
  25811. [
  25812. ]
  25813. ))
  25814. characterMakers.push(() => makeCharacter(
  25815. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25816. {
  25817. front: {
  25818. height: math.unit(7 + 7 / 12, "feet"),
  25819. weight: math.unit(225, "lb"),
  25820. name: "Front",
  25821. image: {
  25822. source: "./media/characters/epona/front.svg",
  25823. extra: 2445 / 2290,
  25824. bottom: 251 / 2696
  25825. }
  25826. },
  25827. back: {
  25828. height: math.unit(7 + 7 / 12, "feet"),
  25829. weight: math.unit(225, "lb"),
  25830. name: "Back",
  25831. image: {
  25832. source: "./media/characters/epona/back.svg",
  25833. extra: 2546 / 2408,
  25834. bottom: 44 / 2589
  25835. }
  25836. },
  25837. genitals: {
  25838. height: math.unit(1.5, "feet"),
  25839. name: "Genitals",
  25840. image: {
  25841. source: "./media/characters/epona/genitals.svg"
  25842. }
  25843. },
  25844. },
  25845. [
  25846. {
  25847. name: "Normal",
  25848. height: math.unit(7 + 7 / 12, "feet")
  25849. },
  25850. ]
  25851. ))
  25852. characterMakers.push(() => makeCharacter(
  25853. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25854. {
  25855. front: {
  25856. height: math.unit(7, "feet"),
  25857. weight: math.unit(518, "lb"),
  25858. name: "Front",
  25859. image: {
  25860. source: "./media/characters/avia-bloodbourn/front.svg",
  25861. extra: 1466 / 1350,
  25862. bottom: 65 / 1527
  25863. }
  25864. },
  25865. },
  25866. [
  25867. ]
  25868. ))
  25869. characterMakers.push(() => makeCharacter(
  25870. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25871. {
  25872. front: {
  25873. height: math.unit(9.35, "feet"),
  25874. weight: math.unit(600, "lb"),
  25875. name: "Front",
  25876. image: {
  25877. source: "./media/characters/amera/front.svg",
  25878. extra: 891 / 818,
  25879. bottom: 30 / 922.7
  25880. }
  25881. },
  25882. back: {
  25883. height: math.unit(9.35, "feet"),
  25884. weight: math.unit(600, "lb"),
  25885. name: "Back",
  25886. image: {
  25887. source: "./media/characters/amera/back.svg",
  25888. extra: 876 / 824,
  25889. bottom: 6.8 / 884
  25890. }
  25891. },
  25892. dick: {
  25893. height: math.unit(2.14, "feet"),
  25894. name: "Dick",
  25895. image: {
  25896. source: "./media/characters/amera/dick.svg"
  25897. }
  25898. },
  25899. },
  25900. [
  25901. {
  25902. name: "Normal",
  25903. height: math.unit(9.35, "feet"),
  25904. default: true
  25905. },
  25906. ]
  25907. ))
  25908. characterMakers.push(() => makeCharacter(
  25909. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25910. {
  25911. kneeling: {
  25912. height: math.unit(3 + 4 / 12, "feet"),
  25913. weight: math.unit(90, "lb"),
  25914. name: "Kneeling",
  25915. image: {
  25916. source: "./media/characters/rosewen/kneeling.svg",
  25917. extra: 1835 / 1571,
  25918. bottom: 27.7 / 1862
  25919. }
  25920. },
  25921. },
  25922. [
  25923. {
  25924. name: "Normal",
  25925. height: math.unit(3 + 4 / 12, "feet"),
  25926. default: true
  25927. },
  25928. ]
  25929. ))
  25930. characterMakers.push(() => makeCharacter(
  25931. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  25932. {
  25933. front: {
  25934. height: math.unit(5 + 10 / 12, "feet"),
  25935. weight: math.unit(200, "lb"),
  25936. name: "Front",
  25937. image: {
  25938. source: "./media/characters/sabah/front.svg",
  25939. extra: 849 / 763,
  25940. bottom: 33.9 / 881
  25941. }
  25942. },
  25943. },
  25944. [
  25945. {
  25946. name: "Normal",
  25947. height: math.unit(5 + 10 / 12, "feet"),
  25948. default: true
  25949. },
  25950. ]
  25951. ))
  25952. characterMakers.push(() => makeCharacter(
  25953. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  25954. {
  25955. front: {
  25956. height: math.unit(3 + 5 / 12, "feet"),
  25957. weight: math.unit(40, "kg"),
  25958. name: "Front",
  25959. image: {
  25960. source: "./media/characters/purple-flame/front.svg",
  25961. extra: 1577 / 1412,
  25962. bottom: 97 / 1694
  25963. }
  25964. },
  25965. frontDressed: {
  25966. height: math.unit(3 + 5 / 12, "feet"),
  25967. weight: math.unit(40, "kg"),
  25968. name: "Front (Dressed)",
  25969. image: {
  25970. source: "./media/characters/purple-flame/front-dressed.svg",
  25971. extra: 1577 / 1412,
  25972. bottom: 97 / 1694
  25973. }
  25974. },
  25975. headphones: {
  25976. height: math.unit(0.85, "feet"),
  25977. name: "Headphones",
  25978. image: {
  25979. source: "./media/characters/purple-flame/headphones.svg"
  25980. }
  25981. },
  25982. },
  25983. [
  25984. {
  25985. name: "Really Small",
  25986. height: math.unit(5, "cm")
  25987. },
  25988. {
  25989. name: "Micro",
  25990. height: math.unit(1 + 5 / 12, "feet")
  25991. },
  25992. {
  25993. name: "Normal",
  25994. height: math.unit(3 + 5 / 12, "feet"),
  25995. default: true
  25996. },
  25997. {
  25998. name: "Minimacro",
  25999. height: math.unit(125, "feet")
  26000. },
  26001. {
  26002. name: "Macro",
  26003. height: math.unit(0.5, "miles")
  26004. },
  26005. {
  26006. name: "Megamacro",
  26007. height: math.unit(50, "miles")
  26008. },
  26009. {
  26010. name: "Gigantic",
  26011. height: math.unit(750, "miles")
  26012. },
  26013. {
  26014. name: "Planetary",
  26015. height: math.unit(15000, "miles")
  26016. },
  26017. ]
  26018. ))
  26019. characterMakers.push(() => makeCharacter(
  26020. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26021. {
  26022. front: {
  26023. height: math.unit(14, "feet"),
  26024. weight: math.unit(959, "lb"),
  26025. name: "Front",
  26026. image: {
  26027. source: "./media/characters/arsenal/front.svg",
  26028. extra: 2357 / 2157,
  26029. bottom: 93 / 2458
  26030. }
  26031. },
  26032. },
  26033. [
  26034. {
  26035. name: "Normal",
  26036. height: math.unit(14, "feet"),
  26037. default: true
  26038. },
  26039. ]
  26040. ))
  26041. characterMakers.push(() => makeCharacter(
  26042. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26043. {
  26044. front: {
  26045. height: math.unit(6, "feet"),
  26046. weight: math.unit(150, "lb"),
  26047. name: "Front",
  26048. image: {
  26049. source: "./media/characters/adira/front.svg",
  26050. extra: 1078 / 1029,
  26051. bottom: 87 / 1166
  26052. }
  26053. },
  26054. },
  26055. [
  26056. {
  26057. name: "Micro",
  26058. height: math.unit(4, "inches"),
  26059. default: true
  26060. },
  26061. {
  26062. name: "Macro",
  26063. height: math.unit(50, "feet")
  26064. },
  26065. ]
  26066. ))
  26067. characterMakers.push(() => makeCharacter(
  26068. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26069. {
  26070. front: {
  26071. height: math.unit(16, "feet"),
  26072. weight: math.unit(1000, "lb"),
  26073. name: "Front",
  26074. image: {
  26075. source: "./media/characters/grim/front.svg",
  26076. extra: 622 / 614,
  26077. bottom: 18.1 / 642
  26078. }
  26079. },
  26080. back: {
  26081. height: math.unit(16, "feet"),
  26082. weight: math.unit(1000, "lb"),
  26083. name: "Back",
  26084. image: {
  26085. source: "./media/characters/grim/back.svg",
  26086. extra: 610.6 / 602,
  26087. bottom: 40.8 / 652
  26088. }
  26089. },
  26090. hunched: {
  26091. height: math.unit(9.75, "feet"),
  26092. weight: math.unit(1000, "lb"),
  26093. name: "Hunched",
  26094. image: {
  26095. source: "./media/characters/grim/hunched.svg",
  26096. extra: 304 / 297,
  26097. bottom: 35.4 / 394
  26098. }
  26099. },
  26100. },
  26101. [
  26102. {
  26103. name: "Normal",
  26104. height: math.unit(16, "feet"),
  26105. default: true
  26106. },
  26107. ]
  26108. ))
  26109. characterMakers.push(() => makeCharacter(
  26110. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26111. {
  26112. front: {
  26113. height: math.unit(2.3, "meters"),
  26114. weight: math.unit(300, "lb"),
  26115. name: "Front",
  26116. image: {
  26117. source: "./media/characters/sinja/front-sfw.svg",
  26118. extra: 1393 / 1294,
  26119. bottom: 70 / 1463
  26120. }
  26121. },
  26122. frontNsfw: {
  26123. height: math.unit(2.3, "meters"),
  26124. weight: math.unit(300, "lb"),
  26125. name: "Front (NSFW)",
  26126. image: {
  26127. source: "./media/characters/sinja/front-nsfw.svg",
  26128. extra: 1393 / 1294,
  26129. bottom: 70 / 1463
  26130. }
  26131. },
  26132. back: {
  26133. height: math.unit(2.3, "meters"),
  26134. weight: math.unit(300, "lb"),
  26135. name: "Back",
  26136. image: {
  26137. source: "./media/characters/sinja/back.svg",
  26138. extra: 1393 / 1294,
  26139. bottom: 70 / 1463
  26140. }
  26141. },
  26142. head: {
  26143. height: math.unit(1.771, "feet"),
  26144. name: "Head",
  26145. image: {
  26146. source: "./media/characters/sinja/head.svg"
  26147. }
  26148. },
  26149. slit: {
  26150. height: math.unit(0.8, "feet"),
  26151. name: "Slit",
  26152. image: {
  26153. source: "./media/characters/sinja/slit.svg"
  26154. }
  26155. },
  26156. },
  26157. [
  26158. {
  26159. name: "Normal",
  26160. height: math.unit(2.3, "meters")
  26161. },
  26162. {
  26163. name: "Macro",
  26164. height: math.unit(91, "meters"),
  26165. default: true
  26166. },
  26167. {
  26168. name: "Megamacro",
  26169. height: math.unit(91440, "meters")
  26170. },
  26171. {
  26172. name: "Gigamacro",
  26173. height: math.unit(60960000, "meters")
  26174. },
  26175. {
  26176. name: "Teramacro",
  26177. height: math.unit(9144000000, "meters")
  26178. },
  26179. ]
  26180. ))
  26181. characterMakers.push(() => makeCharacter(
  26182. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26183. {
  26184. front: {
  26185. height: math.unit(1.7, "meters"),
  26186. weight: math.unit(130, "lb"),
  26187. name: "Front",
  26188. image: {
  26189. source: "./media/characters/kyu/front.svg",
  26190. extra: 415 / 395,
  26191. bottom: 5 / 420
  26192. }
  26193. },
  26194. head: {
  26195. height: math.unit(1.75, "feet"),
  26196. name: "Head",
  26197. image: {
  26198. source: "./media/characters/kyu/head.svg"
  26199. }
  26200. },
  26201. foot: {
  26202. height: math.unit(0.81, "feet"),
  26203. name: "Foot",
  26204. image: {
  26205. source: "./media/characters/kyu/foot.svg"
  26206. }
  26207. },
  26208. },
  26209. [
  26210. {
  26211. name: "Normal",
  26212. height: math.unit(1.7, "meters")
  26213. },
  26214. {
  26215. name: "Macro",
  26216. height: math.unit(131, "feet"),
  26217. default: true
  26218. },
  26219. {
  26220. name: "Megamacro",
  26221. height: math.unit(91440, "meters")
  26222. },
  26223. {
  26224. name: "Gigamacro",
  26225. height: math.unit(60960000, "meters")
  26226. },
  26227. {
  26228. name: "Teramacro",
  26229. height: math.unit(9144000000, "meters")
  26230. },
  26231. ]
  26232. ))
  26233. characterMakers.push(() => makeCharacter(
  26234. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26235. {
  26236. front: {
  26237. height: math.unit(7 + 1 / 12, "feet"),
  26238. weight: math.unit(250, "lb"),
  26239. name: "Front",
  26240. image: {
  26241. source: "./media/characters/joey/front.svg",
  26242. extra: 1791 / 1537,
  26243. bottom: 28 / 1816
  26244. }
  26245. },
  26246. },
  26247. [
  26248. {
  26249. name: "Micro",
  26250. height: math.unit(3, "inches")
  26251. },
  26252. {
  26253. name: "Normal",
  26254. height: math.unit(7 + 1 / 12, "feet"),
  26255. default: true
  26256. },
  26257. ]
  26258. ))
  26259. characterMakers.push(() => makeCharacter(
  26260. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26261. {
  26262. front: {
  26263. height: math.unit(165, "cm"),
  26264. weight: math.unit(140, "lb"),
  26265. name: "Front",
  26266. image: {
  26267. source: "./media/characters/sam-evans/front.svg",
  26268. extra: 3417 / 3230,
  26269. bottom: 41.3 / 3417
  26270. }
  26271. },
  26272. frontSixTails: {
  26273. height: math.unit(165, "cm"),
  26274. weight: math.unit(140, "lb"),
  26275. name: "Front-six-tails",
  26276. image: {
  26277. source: "./media/characters/sam-evans/front-six-tails.svg",
  26278. extra: 3417 / 3230,
  26279. bottom: 41.3 / 3417
  26280. }
  26281. },
  26282. back: {
  26283. height: math.unit(165, "cm"),
  26284. weight: math.unit(140, "lb"),
  26285. name: "Back",
  26286. image: {
  26287. source: "./media/characters/sam-evans/back.svg",
  26288. extra: 3227 / 3032,
  26289. bottom: 6.8 / 3234
  26290. }
  26291. },
  26292. face: {
  26293. height: math.unit(0.68, "feet"),
  26294. name: "Face",
  26295. image: {
  26296. source: "./media/characters/sam-evans/face.svg"
  26297. }
  26298. },
  26299. },
  26300. [
  26301. {
  26302. name: "Normal",
  26303. height: math.unit(165, "cm"),
  26304. default: true
  26305. },
  26306. {
  26307. name: "Macro",
  26308. height: math.unit(100, "meters")
  26309. },
  26310. {
  26311. name: "Macro+",
  26312. height: math.unit(800, "meters")
  26313. },
  26314. {
  26315. name: "Macro++",
  26316. height: math.unit(3, "km")
  26317. },
  26318. {
  26319. name: "Macro+++",
  26320. height: math.unit(30, "km")
  26321. },
  26322. ]
  26323. ))
  26324. characterMakers.push(() => makeCharacter(
  26325. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26326. {
  26327. front: {
  26328. height: math.unit(10, "feet"),
  26329. weight: math.unit(750, "lb"),
  26330. name: "Front",
  26331. image: {
  26332. source: "./media/characters/juliet-a/front.svg",
  26333. extra: 1766 / 1720,
  26334. bottom: 43 / 1809
  26335. }
  26336. },
  26337. back: {
  26338. height: math.unit(10, "feet"),
  26339. weight: math.unit(750, "lb"),
  26340. name: "Back",
  26341. image: {
  26342. source: "./media/characters/juliet-a/back.svg",
  26343. extra: 1781 / 1734,
  26344. bottom: 35 / 1810,
  26345. }
  26346. },
  26347. },
  26348. [
  26349. {
  26350. name: "Normal",
  26351. height: math.unit(10, "feet"),
  26352. default: true
  26353. },
  26354. {
  26355. name: "Dragon Form",
  26356. height: math.unit(250, "feet")
  26357. },
  26358. {
  26359. name: "Macro",
  26360. height: math.unit(1000, "feet")
  26361. },
  26362. {
  26363. name: "Megamacro",
  26364. height: math.unit(10000, "feet")
  26365. }
  26366. ]
  26367. ))
  26368. characterMakers.push(() => makeCharacter(
  26369. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26370. {
  26371. regular: {
  26372. height: math.unit(7 + 3 / 12, "feet"),
  26373. weight: math.unit(260, "lb"),
  26374. name: "Regular",
  26375. image: {
  26376. source: "./media/characters/wild/regular.svg",
  26377. extra: 97.45 / 92,
  26378. bottom: 6.8 / 104.3
  26379. }
  26380. },
  26381. biggums: {
  26382. height: math.unit(8 + 6 / 12, "feet"),
  26383. weight: math.unit(425, "lb"),
  26384. name: "Biggums",
  26385. image: {
  26386. source: "./media/characters/wild/biggums.svg",
  26387. extra: 97.45 / 92,
  26388. bottom: 7.5 / 132.34
  26389. }
  26390. },
  26391. mawRegular: {
  26392. height: math.unit(1.24, "feet"),
  26393. name: "Maw (Regular)",
  26394. image: {
  26395. source: "./media/characters/wild/maw.svg"
  26396. }
  26397. },
  26398. mawBiggums: {
  26399. height: math.unit(1.47, "feet"),
  26400. name: "Maw (Biggums)",
  26401. image: {
  26402. source: "./media/characters/wild/maw.svg"
  26403. }
  26404. },
  26405. },
  26406. [
  26407. {
  26408. name: "Normal",
  26409. height: math.unit(7 + 3 / 12, "feet"),
  26410. default: true
  26411. },
  26412. ]
  26413. ))
  26414. characterMakers.push(() => makeCharacter(
  26415. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26416. {
  26417. front: {
  26418. height: math.unit(2.5, "meters"),
  26419. weight: math.unit(200, "kg"),
  26420. name: "Front",
  26421. image: {
  26422. source: "./media/characters/vidar/front.svg",
  26423. extra: 2994 / 2795,
  26424. bottom: 56 / 3061
  26425. }
  26426. },
  26427. back: {
  26428. height: math.unit(2.5, "meters"),
  26429. weight: math.unit(200, "kg"),
  26430. name: "Back",
  26431. image: {
  26432. source: "./media/characters/vidar/back.svg",
  26433. extra: 3131 / 2928,
  26434. bottom: 13.5 / 3141.5
  26435. }
  26436. },
  26437. feral: {
  26438. height: math.unit(2.5, "meters"),
  26439. weight: math.unit(2000, "kg"),
  26440. name: "Feral",
  26441. image: {
  26442. source: "./media/characters/vidar/feral.svg",
  26443. extra: 2790 / 1765,
  26444. bottom: 6 / 2796
  26445. }
  26446. },
  26447. },
  26448. [
  26449. {
  26450. name: "Normal",
  26451. height: math.unit(2.5, "meters"),
  26452. default: true
  26453. },
  26454. {
  26455. name: "Macro",
  26456. height: math.unit(100, "meters")
  26457. },
  26458. ]
  26459. ))
  26460. characterMakers.push(() => makeCharacter(
  26461. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26462. {
  26463. front: {
  26464. height: math.unit(5 + 9 / 12, "feet"),
  26465. weight: math.unit(120, "lb"),
  26466. name: "Front",
  26467. image: {
  26468. source: "./media/characters/ash/front.svg",
  26469. extra: 2189 / 1961,
  26470. bottom: 5.2 / 2194
  26471. }
  26472. },
  26473. },
  26474. [
  26475. {
  26476. name: "Normal",
  26477. height: math.unit(5 + 9 / 12, "feet"),
  26478. default: true
  26479. },
  26480. ]
  26481. ))
  26482. characterMakers.push(() => makeCharacter(
  26483. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26484. {
  26485. front: {
  26486. height: math.unit(9, "feet"),
  26487. weight: math.unit(10000, "lb"),
  26488. name: "Front",
  26489. image: {
  26490. source: "./media/characters/gygabite/front.svg",
  26491. bottom: 31.7 / 537.8,
  26492. extra: 505 / 370
  26493. }
  26494. },
  26495. },
  26496. [
  26497. {
  26498. name: "Normal",
  26499. height: math.unit(9, "feet"),
  26500. default: true
  26501. },
  26502. ]
  26503. ))
  26504. characterMakers.push(() => makeCharacter(
  26505. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26506. {
  26507. front: {
  26508. height: math.unit(12, "feet"),
  26509. weight: math.unit(35000, "lb"),
  26510. name: "Front",
  26511. image: {
  26512. source: "./media/characters/p0tat0/front.svg",
  26513. extra: 1065 / 921,
  26514. bottom: 55.7 / 1121.25
  26515. }
  26516. },
  26517. },
  26518. [
  26519. {
  26520. name: "Normal",
  26521. height: math.unit(12, "feet"),
  26522. default: true
  26523. },
  26524. ]
  26525. ))
  26526. characterMakers.push(() => makeCharacter(
  26527. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26528. {
  26529. side: {
  26530. height: math.unit(6.5, "feet"),
  26531. weight: math.unit(800, "lb"),
  26532. name: "Side",
  26533. image: {
  26534. source: "./media/characters/dusk/side.svg",
  26535. extra: 615 / 373,
  26536. bottom: 53 / 664
  26537. }
  26538. },
  26539. sitting: {
  26540. height: math.unit(7, "feet"),
  26541. weight: math.unit(800, "lb"),
  26542. name: "Sitting",
  26543. image: {
  26544. source: "./media/characters/dusk/sitting.svg",
  26545. extra: 753 / 425,
  26546. bottom: 33 / 774
  26547. }
  26548. },
  26549. head: {
  26550. height: math.unit(6.1, "feet"),
  26551. name: "Head",
  26552. image: {
  26553. source: "./media/characters/dusk/head.svg"
  26554. }
  26555. },
  26556. },
  26557. [
  26558. {
  26559. name: "Normal",
  26560. height: math.unit(7, "feet"),
  26561. default: true
  26562. },
  26563. ]
  26564. ))
  26565. characterMakers.push(() => makeCharacter(
  26566. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26567. {
  26568. front: {
  26569. height: math.unit(15, "feet"),
  26570. weight: math.unit(7000, "lb"),
  26571. name: "Front",
  26572. image: {
  26573. source: "./media/characters/jay-direwolf/front.svg",
  26574. extra: 1810 / 1732,
  26575. bottom: 66 / 1892
  26576. }
  26577. },
  26578. },
  26579. [
  26580. {
  26581. name: "Normal",
  26582. height: math.unit(15, "feet"),
  26583. default: true
  26584. },
  26585. ]
  26586. ))
  26587. characterMakers.push(() => makeCharacter(
  26588. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26589. {
  26590. front: {
  26591. height: math.unit(4 + 9 / 12, "feet"),
  26592. weight: math.unit(130, "lb"),
  26593. name: "Front",
  26594. image: {
  26595. source: "./media/characters/anchovie/front.svg",
  26596. extra: 382 / 350,
  26597. bottom: 25 / 409
  26598. }
  26599. },
  26600. back: {
  26601. height: math.unit(4 + 9 / 12, "feet"),
  26602. weight: math.unit(130, "lb"),
  26603. name: "Back",
  26604. image: {
  26605. source: "./media/characters/anchovie/back.svg",
  26606. extra: 385 / 352,
  26607. bottom: 16.6 / 402
  26608. }
  26609. },
  26610. frontDressed: {
  26611. height: math.unit(4 + 9 / 12, "feet"),
  26612. weight: math.unit(130, "lb"),
  26613. name: "Front (Dressed)",
  26614. image: {
  26615. source: "./media/characters/anchovie/front-dressed.svg",
  26616. extra: 382 / 350,
  26617. bottom: 25 / 409
  26618. }
  26619. },
  26620. backDressed: {
  26621. height: math.unit(4 + 9 / 12, "feet"),
  26622. weight: math.unit(130, "lb"),
  26623. name: "Back (Dressed)",
  26624. image: {
  26625. source: "./media/characters/anchovie/back-dressed.svg",
  26626. extra: 385 / 352,
  26627. bottom: 16.6 / 402
  26628. }
  26629. },
  26630. },
  26631. [
  26632. {
  26633. name: "Micro",
  26634. height: math.unit(6.4, "inches")
  26635. },
  26636. {
  26637. name: "Normal",
  26638. height: math.unit(4 + 9 / 12, "feet"),
  26639. default: true
  26640. },
  26641. ]
  26642. ))
  26643. characterMakers.push(() => makeCharacter(
  26644. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26645. {
  26646. front: {
  26647. height: math.unit(2, "meters"),
  26648. weight: math.unit(180, "lb"),
  26649. name: "Front",
  26650. image: {
  26651. source: "./media/characters/acidrenamon/front.svg",
  26652. extra: 987 / 890,
  26653. bottom: 22.8 / 1009
  26654. }
  26655. },
  26656. back: {
  26657. height: math.unit(2, "meters"),
  26658. weight: math.unit(180, "lb"),
  26659. name: "Back",
  26660. image: {
  26661. source: "./media/characters/acidrenamon/back.svg",
  26662. extra: 983 / 891,
  26663. bottom: 8.4 / 992
  26664. }
  26665. },
  26666. head: {
  26667. height: math.unit(1.92, "feet"),
  26668. name: "Head",
  26669. image: {
  26670. source: "./media/characters/acidrenamon/head.svg"
  26671. }
  26672. },
  26673. rump: {
  26674. height: math.unit(1.72, "feet"),
  26675. name: "Rump",
  26676. image: {
  26677. source: "./media/characters/acidrenamon/rump.svg"
  26678. }
  26679. },
  26680. tail: {
  26681. height: math.unit(4.2, "feet"),
  26682. name: "Tail",
  26683. image: {
  26684. source: "./media/characters/acidrenamon/tail.svg"
  26685. }
  26686. },
  26687. },
  26688. [
  26689. {
  26690. name: "Normal",
  26691. height: math.unit(2, "meters"),
  26692. default: true
  26693. },
  26694. {
  26695. name: "Minimacro",
  26696. height: math.unit(7, "meters")
  26697. },
  26698. {
  26699. name: "Macro",
  26700. height: math.unit(200, "meters")
  26701. },
  26702. {
  26703. name: "Gigamacro",
  26704. height: math.unit(0.2, "earths")
  26705. },
  26706. ]
  26707. ))
  26708. characterMakers.push(() => makeCharacter(
  26709. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26710. {
  26711. front: {
  26712. height: math.unit(6, "feet"),
  26713. weight: math.unit(150, "lb"),
  26714. name: "Front",
  26715. image: {
  26716. source: "./media/characters/kenzie-lee/front.svg",
  26717. extra: 1525 / 1465,
  26718. bottom: 45 / 1570
  26719. }
  26720. },
  26721. side: {
  26722. height: math.unit(6, "feet"),
  26723. weight: math.unit(150, "lb"),
  26724. name: "Side",
  26725. image: {
  26726. source: "./media/characters/kenzie-lee/side.svg",
  26727. extra: 5505 / 5383,
  26728. bottom: 60 / 5573
  26729. }
  26730. },
  26731. },
  26732. [
  26733. {
  26734. name: "Normal",
  26735. height: math.unit(152, "feet"),
  26736. default: true
  26737. },
  26738. {
  26739. name: "Megamacro",
  26740. height: math.unit(7, "miles")
  26741. },
  26742. {
  26743. name: "Gigamacro",
  26744. height: math.unit(8000, "miles")
  26745. },
  26746. ]
  26747. ))
  26748. characterMakers.push(() => makeCharacter(
  26749. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26750. {
  26751. side: {
  26752. height: math.unit(6, "feet"),
  26753. weight: math.unit(150, "lb"),
  26754. name: "Side",
  26755. image: {
  26756. source: "./media/characters/withers/side.svg",
  26757. extra: 1830 / 1728,
  26758. bottom: 96 / 1927
  26759. }
  26760. },
  26761. front: {
  26762. height: math.unit(6, "feet"),
  26763. weight: math.unit(150, "lb"),
  26764. name: "Front",
  26765. image: {
  26766. source: "./media/characters/withers/front.svg",
  26767. extra: 1514 / 1438,
  26768. bottom: 118 / 1632
  26769. }
  26770. },
  26771. },
  26772. [
  26773. {
  26774. name: "Macro",
  26775. height: math.unit(168, "feet"),
  26776. default: true
  26777. },
  26778. {
  26779. name: "Megamacro",
  26780. height: math.unit(15, "miles")
  26781. }
  26782. ]
  26783. ))
  26784. characterMakers.push(() => makeCharacter(
  26785. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26786. {
  26787. front: {
  26788. height: math.unit(6 + 7 / 12, "feet"),
  26789. weight: math.unit(250, "lb"),
  26790. name: "Front",
  26791. image: {
  26792. source: "./media/characters/nemoskii/front.svg",
  26793. extra: 2270 / 1734,
  26794. bottom: 86 / 2354
  26795. }
  26796. },
  26797. back: {
  26798. height: math.unit(6 + 7 / 12, "feet"),
  26799. weight: math.unit(250, "lb"),
  26800. name: "Back",
  26801. image: {
  26802. source: "./media/characters/nemoskii/back.svg",
  26803. extra: 1845 / 1788,
  26804. bottom: 10.5 / 1852
  26805. }
  26806. },
  26807. head: {
  26808. height: math.unit(1.31, "feet"),
  26809. name: "Head",
  26810. image: {
  26811. source: "./media/characters/nemoskii/head.svg"
  26812. }
  26813. },
  26814. },
  26815. [
  26816. {
  26817. name: "Normal",
  26818. height: math.unit(6 + 7 / 12, "feet"),
  26819. default: true
  26820. },
  26821. ]
  26822. ))
  26823. characterMakers.push(() => makeCharacter(
  26824. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  26825. {
  26826. front: {
  26827. height: math.unit(1, "mile"),
  26828. weight: math.unit(265261.9, "lb"),
  26829. name: "Front",
  26830. image: {
  26831. source: "./media/characters/shui/front.svg",
  26832. extra: 1633 / 1564,
  26833. bottom: 91.5 / 1726
  26834. }
  26835. },
  26836. },
  26837. [
  26838. {
  26839. name: "Macro",
  26840. height: math.unit(1, "mile"),
  26841. default: true
  26842. },
  26843. ]
  26844. ))
  26845. characterMakers.push(() => makeCharacter(
  26846. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  26847. {
  26848. front: {
  26849. height: math.unit(12 + 6 / 12, "feet"),
  26850. weight: math.unit(1342, "lb"),
  26851. name: "Front",
  26852. image: {
  26853. source: "./media/characters/arokh-takakura/front.svg",
  26854. extra: 1089 / 1043,
  26855. bottom: 77.4 / 1176.7
  26856. }
  26857. },
  26858. back: {
  26859. height: math.unit(12 + 6 / 12, "feet"),
  26860. weight: math.unit(1342, "lb"),
  26861. name: "Back",
  26862. image: {
  26863. source: "./media/characters/arokh-takakura/back.svg",
  26864. extra: 1046 / 1019,
  26865. bottom: 102 / 1150
  26866. }
  26867. },
  26868. },
  26869. [
  26870. {
  26871. name: "Big",
  26872. height: math.unit(12 + 6 / 12, "feet"),
  26873. default: true
  26874. },
  26875. ]
  26876. ))
  26877. characterMakers.push(() => makeCharacter(
  26878. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  26879. {
  26880. front: {
  26881. height: math.unit(5 + 6 / 12, "feet"),
  26882. weight: math.unit(150, "lb"),
  26883. name: "Front",
  26884. image: {
  26885. source: "./media/characters/theo/front.svg",
  26886. extra: 1184 / 1131,
  26887. bottom: 7.4 / 1191
  26888. }
  26889. },
  26890. },
  26891. [
  26892. {
  26893. name: "Micro",
  26894. height: math.unit(5, "inches")
  26895. },
  26896. {
  26897. name: "Normal",
  26898. height: math.unit(5 + 6 / 12, "feet"),
  26899. default: true
  26900. },
  26901. ]
  26902. ))
  26903. characterMakers.push(() => makeCharacter(
  26904. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  26905. {
  26906. front: {
  26907. height: math.unit(5 + 9 / 12, "feet"),
  26908. weight: math.unit(130, "lb"),
  26909. name: "Front",
  26910. image: {
  26911. source: "./media/characters/cecelia-swift/front.svg",
  26912. extra: 502 / 484,
  26913. bottom: 23 / 523
  26914. }
  26915. },
  26916. back: {
  26917. height: math.unit(5 + 9 / 12, "feet"),
  26918. weight: math.unit(130, "lb"),
  26919. name: "Back",
  26920. image: {
  26921. source: "./media/characters/cecelia-swift/back.svg",
  26922. extra: 499 / 485,
  26923. bottom: 12 / 511
  26924. }
  26925. },
  26926. head: {
  26927. height: math.unit(0.90, "feet"),
  26928. name: "Head",
  26929. image: {
  26930. source: "./media/characters/cecelia-swift/head.svg"
  26931. }
  26932. },
  26933. rump: {
  26934. height: math.unit(1.75, "feet"),
  26935. name: "Rump",
  26936. image: {
  26937. source: "./media/characters/cecelia-swift/rump.svg"
  26938. }
  26939. },
  26940. },
  26941. [
  26942. {
  26943. name: "Normal",
  26944. height: math.unit(5 + 9 / 12, "feet"),
  26945. default: true
  26946. },
  26947. {
  26948. name: "Big",
  26949. height: math.unit(50, "feet")
  26950. },
  26951. {
  26952. name: "Macro",
  26953. height: math.unit(100, "feet")
  26954. },
  26955. {
  26956. name: "Macro+",
  26957. height: math.unit(500, "feet")
  26958. },
  26959. {
  26960. name: "Macro++",
  26961. height: math.unit(1000, "feet")
  26962. },
  26963. ]
  26964. ))
  26965. characterMakers.push(() => makeCharacter(
  26966. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  26967. {
  26968. front: {
  26969. height: math.unit(6, "feet"),
  26970. weight: math.unit(150, "lb"),
  26971. name: "Front",
  26972. image: {
  26973. source: "./media/characters/kaunan/front.svg",
  26974. extra: 2890 / 2523,
  26975. bottom: 49 / 2939
  26976. }
  26977. },
  26978. },
  26979. [
  26980. {
  26981. name: "Macro",
  26982. height: math.unit(150, "feet"),
  26983. default: true
  26984. },
  26985. ]
  26986. ))
  26987. characterMakers.push(() => makeCharacter(
  26988. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  26989. {
  26990. front: {
  26991. height: math.unit(175, "cm"),
  26992. weight: math.unit(60, "kg"),
  26993. name: "Front",
  26994. image: {
  26995. source: "./media/characters/fei/front.svg",
  26996. extra: 2581 / 2400,
  26997. bottom: 82.2 / 2663
  26998. }
  26999. },
  27000. },
  27001. [
  27002. {
  27003. name: "Mortal",
  27004. height: math.unit(175, "cm")
  27005. },
  27006. {
  27007. name: "Normal",
  27008. height: math.unit(3500, "m"),
  27009. default: true
  27010. },
  27011. {
  27012. name: "Stroll",
  27013. height: math.unit(17.5, "km")
  27014. },
  27015. {
  27016. name: "Showoff",
  27017. height: math.unit(175, "km")
  27018. },
  27019. ]
  27020. ))
  27021. characterMakers.push(() => makeCharacter(
  27022. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27023. {
  27024. front: {
  27025. height: math.unit(7, "feet"),
  27026. weight: math.unit(1000, "kg"),
  27027. name: "Front",
  27028. image: {
  27029. source: "./media/characters/edrax/front.svg",
  27030. extra: 2838 / 2550,
  27031. bottom: 130 / 2968
  27032. }
  27033. },
  27034. },
  27035. [
  27036. {
  27037. name: "Small",
  27038. height: math.unit(7, "feet")
  27039. },
  27040. {
  27041. name: "Normal",
  27042. height: math.unit(1500, "meters")
  27043. },
  27044. {
  27045. name: "Mega",
  27046. height: math.unit(12000000, "km"),
  27047. default: true
  27048. },
  27049. {
  27050. name: "Megamacro",
  27051. height: math.unit(10600000, "lightyears")
  27052. },
  27053. {
  27054. name: "Hypermacro",
  27055. height: math.unit(256, "yottameters")
  27056. },
  27057. ]
  27058. ))
  27059. characterMakers.push(() => makeCharacter(
  27060. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27061. {
  27062. front: {
  27063. height: math.unit(10, "feet"),
  27064. weight: math.unit(750, "lb"),
  27065. name: "Front",
  27066. image: {
  27067. source: "./media/characters/clove/front.svg",
  27068. extra: 2031 / 1860,
  27069. bottom: 47.8 / 2080
  27070. }
  27071. },
  27072. back: {
  27073. height: math.unit(10, "feet"),
  27074. weight: math.unit(750, "lb"),
  27075. name: "Back",
  27076. image: {
  27077. source: "./media/characters/clove/back.svg",
  27078. extra: 2025 / 1859,
  27079. bottom: 46 / 2071
  27080. }
  27081. },
  27082. },
  27083. [
  27084. {
  27085. name: "Normal",
  27086. height: math.unit(10, "feet")
  27087. },
  27088. ]
  27089. ))
  27090. characterMakers.push(() => makeCharacter(
  27091. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27092. {
  27093. front: {
  27094. height: math.unit(4, "feet"),
  27095. weight: math.unit(50, "lb"),
  27096. name: "Front",
  27097. image: {
  27098. source: "./media/characters/alex-rabbit/front.svg",
  27099. extra: 507 / 458,
  27100. bottom: 18.5 / 527
  27101. }
  27102. },
  27103. back: {
  27104. height: math.unit(4, "feet"),
  27105. weight: math.unit(50, "lb"),
  27106. name: "Back",
  27107. image: {
  27108. source: "./media/characters/alex-rabbit/back.svg",
  27109. extra: 502 / 460,
  27110. bottom: 18.9 / 521
  27111. }
  27112. },
  27113. },
  27114. [
  27115. {
  27116. name: "Normal",
  27117. height: math.unit(4, "feet"),
  27118. default: true
  27119. },
  27120. ]
  27121. ))
  27122. characterMakers.push(() => makeCharacter(
  27123. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27124. {
  27125. front: {
  27126. height: math.unit(1 + 3 / 12, "feet"),
  27127. weight: math.unit(80, "lb"),
  27128. name: "Front",
  27129. image: {
  27130. source: "./media/characters/zander-rose/front.svg",
  27131. extra: 916 / 797,
  27132. bottom: 17 / 933
  27133. }
  27134. },
  27135. back: {
  27136. height: math.unit(1 + 3 / 12, "feet"),
  27137. weight: math.unit(80, "lb"),
  27138. name: "Back",
  27139. image: {
  27140. source: "./media/characters/zander-rose/back.svg",
  27141. extra: 903 / 779,
  27142. bottom: 31 / 934
  27143. }
  27144. },
  27145. },
  27146. [
  27147. {
  27148. name: "Normal",
  27149. height: math.unit(1 + 3 / 12, "feet"),
  27150. default: true
  27151. },
  27152. ]
  27153. ))
  27154. characterMakers.push(() => makeCharacter(
  27155. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27156. {
  27157. anthro: {
  27158. height: math.unit(6, "feet"),
  27159. weight: math.unit(150, "lb"),
  27160. name: "Anthro",
  27161. image: {
  27162. source: "./media/characters/razz/anthro.svg",
  27163. extra: 1437 / 1343,
  27164. bottom: 48 / 1485
  27165. }
  27166. },
  27167. feral: {
  27168. height: math.unit(6, "feet"),
  27169. weight: math.unit(150, "lb"),
  27170. name: "Feral",
  27171. image: {
  27172. source: "./media/characters/razz/feral.svg",
  27173. extra: 2569 / 1385,
  27174. bottom: 95 / 2664
  27175. }
  27176. },
  27177. },
  27178. [
  27179. {
  27180. name: "Normal",
  27181. height: math.unit(6, "feet"),
  27182. default: true
  27183. },
  27184. ]
  27185. ))
  27186. characterMakers.push(() => makeCharacter(
  27187. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27188. {
  27189. front: {
  27190. height: math.unit(9 + 4 / 12, "feet"),
  27191. weight: math.unit(500, "lb"),
  27192. name: "Front",
  27193. image: {
  27194. source: "./media/characters/morrigan/front.svg",
  27195. extra: 2707 / 2579,
  27196. bottom: 156 / 2863
  27197. }
  27198. },
  27199. },
  27200. [
  27201. {
  27202. name: "Normal",
  27203. height: math.unit(9 + 4 / 12, "feet"),
  27204. default: true
  27205. },
  27206. ]
  27207. ))
  27208. characterMakers.push(() => makeCharacter(
  27209. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27210. {
  27211. front: {
  27212. height: math.unit(5, "stories"),
  27213. weight: math.unit(4000, "lb"),
  27214. name: "Front",
  27215. image: {
  27216. source: "./media/characters/jenene/front.svg",
  27217. extra: 1780 / 1710,
  27218. bottom: 57 / 1837
  27219. }
  27220. },
  27221. },
  27222. [
  27223. {
  27224. name: "Normal",
  27225. height: math.unit(5, "stories"),
  27226. default: true
  27227. },
  27228. ]
  27229. ))
  27230. characterMakers.push(() => makeCharacter(
  27231. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27232. {
  27233. front: {
  27234. height: math.unit(6, "feet"),
  27235. weight: math.unit(150, "lb"),
  27236. name: "Front",
  27237. image: {
  27238. source: "./media/characters/vix-archaser/front.svg",
  27239. extra: 2767 / 2562,
  27240. bottom: 36 / 2803
  27241. }
  27242. },
  27243. },
  27244. [
  27245. {
  27246. name: "Micro",
  27247. height: math.unit(1, "foot")
  27248. },
  27249. {
  27250. name: "Normal",
  27251. height: math.unit(6 + 5 / 12, "feet")
  27252. },
  27253. {
  27254. name: "Minimacro",
  27255. height: math.unit(500, "feet")
  27256. },
  27257. {
  27258. name: "Macro",
  27259. height: math.unit(4, "miles")
  27260. },
  27261. {
  27262. name: "Megamacro",
  27263. height: math.unit(250, "miles"),
  27264. default: true
  27265. },
  27266. {
  27267. name: "Gigamacro",
  27268. height: math.unit(1, "universe")
  27269. },
  27270. {
  27271. name: "Endgame",
  27272. height: math.unit(100, "multiverses")
  27273. }
  27274. ]
  27275. ))
  27276. characterMakers.push(() => makeCharacter(
  27277. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27278. {
  27279. taurSfw: {
  27280. height: math.unit(10, "meters"),
  27281. weight: math.unit(17500, "kg"),
  27282. name: "Taur",
  27283. image: {
  27284. source: "./media/characters/faey/taur-sfw.svg",
  27285. extra: 1200 / 968,
  27286. bottom: 41 / 1241
  27287. }
  27288. },
  27289. chestmaw: {
  27290. height: math.unit(2.01, "meters"),
  27291. name: "Chestmaw",
  27292. image: {
  27293. source: "./media/characters/faey/chestmaw.svg"
  27294. }
  27295. },
  27296. foot: {
  27297. height: math.unit(2.43, "meters"),
  27298. name: "Foot",
  27299. image: {
  27300. source: "./media/characters/faey/foot.svg"
  27301. }
  27302. },
  27303. jaws: {
  27304. height: math.unit(1.66, "meters"),
  27305. name: "Jaws",
  27306. image: {
  27307. source: "./media/characters/faey/jaws.svg"
  27308. }
  27309. },
  27310. tongues: {
  27311. height: math.unit(2.01, "meters"),
  27312. name: "Tongues",
  27313. image: {
  27314. source: "./media/characters/faey/tongues.svg"
  27315. }
  27316. },
  27317. },
  27318. [
  27319. {
  27320. name: "Small",
  27321. height: math.unit(10, "meters"),
  27322. default: true
  27323. },
  27324. {
  27325. name: "Big",
  27326. height: math.unit(500000, "km")
  27327. },
  27328. ]
  27329. ))
  27330. characterMakers.push(() => makeCharacter(
  27331. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27332. {
  27333. front: {
  27334. height: math.unit(7, "feet"),
  27335. weight: math.unit(275, "lb"),
  27336. name: "Front",
  27337. image: {
  27338. source: "./media/characters/roku/front.svg",
  27339. extra: 903 / 878,
  27340. bottom: 37 / 940
  27341. }
  27342. },
  27343. },
  27344. [
  27345. {
  27346. name: "Normal",
  27347. height: math.unit(7, "feet"),
  27348. default: true
  27349. },
  27350. {
  27351. name: "Macro",
  27352. height: math.unit(500, "feet")
  27353. },
  27354. {
  27355. name: "Megamacro",
  27356. height: math.unit(200, "miles")
  27357. },
  27358. ]
  27359. ))
  27360. characterMakers.push(() => makeCharacter(
  27361. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27362. {
  27363. front: {
  27364. height: math.unit(6 + 2 / 12, "feet"),
  27365. weight: math.unit(150, "lb"),
  27366. name: "Front",
  27367. image: {
  27368. source: "./media/characters/lira/front.svg",
  27369. extra: 1727 / 1605,
  27370. bottom: 26 / 1753
  27371. }
  27372. },
  27373. back: {
  27374. height: math.unit(6 + 2 / 12, "feet"),
  27375. weight: math.unit(150, "lb"),
  27376. name: "Back",
  27377. image: {
  27378. source: "./media/characters/lira/back.svg",
  27379. extra: 1713 / 159,
  27380. bottom: 20 / 1733
  27381. }
  27382. },
  27383. hand: {
  27384. height: math.unit(0.75, "feet"),
  27385. name: "Hand",
  27386. image: {
  27387. source: "./media/characters/lira/hand.svg"
  27388. }
  27389. },
  27390. maw: {
  27391. height: math.unit(0.65, "feet"),
  27392. name: "Maw",
  27393. image: {
  27394. source: "./media/characters/lira/maw.svg"
  27395. }
  27396. },
  27397. pawDigi: {
  27398. height: math.unit(1.6, "feet"),
  27399. name: "Paw Digi",
  27400. image: {
  27401. source: "./media/characters/lira/paw-digi.svg"
  27402. }
  27403. },
  27404. pawPlanti: {
  27405. height: math.unit(1.4, "feet"),
  27406. name: "Paw Planti",
  27407. image: {
  27408. source: "./media/characters/lira/paw-planti.svg"
  27409. }
  27410. },
  27411. },
  27412. [
  27413. {
  27414. name: "Normal",
  27415. height: math.unit(6 + 2 / 12, "feet"),
  27416. default: true
  27417. },
  27418. {
  27419. name: "Macro",
  27420. height: math.unit(100, "feet")
  27421. },
  27422. {
  27423. name: "Macro²",
  27424. height: math.unit(1600, "feet")
  27425. },
  27426. {
  27427. name: "Planetary",
  27428. height: math.unit(20, "earths")
  27429. },
  27430. ]
  27431. ))
  27432. characterMakers.push(() => makeCharacter(
  27433. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27434. {
  27435. front: {
  27436. height: math.unit(6, "feet"),
  27437. weight: math.unit(150, "lb"),
  27438. name: "Front",
  27439. image: {
  27440. source: "./media/characters/hadjet/front.svg",
  27441. extra: 1480 / 1346,
  27442. bottom: 26 / 1506
  27443. }
  27444. },
  27445. frontNsfw: {
  27446. height: math.unit(6, "feet"),
  27447. weight: math.unit(150, "lb"),
  27448. name: "Front (NSFW)",
  27449. image: {
  27450. source: "./media/characters/hadjet/front-nsfw.svg",
  27451. extra: 1440 / 1358,
  27452. bottom: 52 / 1492
  27453. }
  27454. },
  27455. },
  27456. [
  27457. {
  27458. name: "Macro",
  27459. height: math.unit(10, "stories"),
  27460. default: true
  27461. },
  27462. {
  27463. name: "Megamacro",
  27464. height: math.unit(1.5, "miles")
  27465. },
  27466. {
  27467. name: "Megamacro+",
  27468. height: math.unit(5, "miles")
  27469. },
  27470. ]
  27471. ))
  27472. characterMakers.push(() => makeCharacter(
  27473. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27474. {
  27475. side: {
  27476. height: math.unit(106, "feet"),
  27477. weight: math.unit(500, "tonnes"),
  27478. name: "Side",
  27479. image: {
  27480. source: "./media/characters/kodran/side.svg",
  27481. extra: 553 / 480,
  27482. bottom: 33 / 586
  27483. }
  27484. },
  27485. front: {
  27486. height: math.unit(132, "feet"),
  27487. weight: math.unit(500, "tonnes"),
  27488. name: "Front",
  27489. image: {
  27490. source: "./media/characters/kodran/front.svg",
  27491. extra: 667 / 643,
  27492. bottom: 42 / 709
  27493. }
  27494. },
  27495. flying: {
  27496. height: math.unit(350, "feet"),
  27497. weight: math.unit(500, "tonnes"),
  27498. name: "Flying",
  27499. image: {
  27500. source: "./media/characters/kodran/flying.svg"
  27501. }
  27502. },
  27503. foot: {
  27504. height: math.unit(33, "feet"),
  27505. name: "Foot",
  27506. image: {
  27507. source: "./media/characters/kodran/foot.svg"
  27508. }
  27509. },
  27510. footFront: {
  27511. height: math.unit(19, "feet"),
  27512. name: "Foot (Front)",
  27513. image: {
  27514. source: "./media/characters/kodran/foot-front.svg",
  27515. extra: 261 / 261,
  27516. bottom: 91 / 352
  27517. }
  27518. },
  27519. headFront: {
  27520. height: math.unit(53, "feet"),
  27521. name: "Head (Front)",
  27522. image: {
  27523. source: "./media/characters/kodran/head-front.svg"
  27524. }
  27525. },
  27526. headSide: {
  27527. height: math.unit(65, "feet"),
  27528. name: "Head (Side)",
  27529. image: {
  27530. source: "./media/characters/kodran/head-side.svg"
  27531. }
  27532. },
  27533. throat: {
  27534. height: math.unit(79, "feet"),
  27535. name: "Throat",
  27536. image: {
  27537. source: "./media/characters/kodran/throat.svg"
  27538. }
  27539. },
  27540. },
  27541. [
  27542. {
  27543. name: "Large",
  27544. height: math.unit(106, "feet"),
  27545. default: true
  27546. },
  27547. ]
  27548. ))
  27549. characterMakers.push(() => makeCharacter(
  27550. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27551. {
  27552. side: {
  27553. height: math.unit(11, "feet"),
  27554. weight: math.unit(150, "lb"),
  27555. name: "Side",
  27556. image: {
  27557. source: "./media/characters/pyxaron/side.svg",
  27558. extra: 305 / 195,
  27559. bottom: 17 / 322
  27560. }
  27561. },
  27562. },
  27563. [
  27564. {
  27565. name: "Normal",
  27566. height: math.unit(11, "feet")
  27567. },
  27568. ]
  27569. ))
  27570. characterMakers.push(() => makeCharacter(
  27571. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27572. {
  27573. front: {
  27574. height: math.unit(6, "feet"),
  27575. weight: math.unit(150, "lb"),
  27576. name: "Front",
  27577. image: {
  27578. source: "./media/characters/meep/front.svg",
  27579. extra: 88 / 80,
  27580. bottom: 6 / 94
  27581. }
  27582. },
  27583. },
  27584. [
  27585. {
  27586. name: "Fun Sized",
  27587. height: math.unit(2, "inches"),
  27588. default: true
  27589. },
  27590. {
  27591. name: "Friend Sized",
  27592. height: math.unit(8, "inches")
  27593. },
  27594. ]
  27595. ))
  27596. characterMakers.push(() => makeCharacter(
  27597. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27598. {
  27599. front: {
  27600. height: math.unit(15, "feet"),
  27601. weight: math.unit(2500, "lb"),
  27602. name: "Front",
  27603. image: {
  27604. source: "./media/characters/holly-rabbit/front.svg",
  27605. extra: 1433 / 1233,
  27606. bottom: 125 / 1558
  27607. }
  27608. },
  27609. dick: {
  27610. height: math.unit(4.6, "feet"),
  27611. name: "Dick",
  27612. image: {
  27613. source: "./media/characters/holly-rabbit/dick.svg"
  27614. }
  27615. },
  27616. },
  27617. [
  27618. {
  27619. name: "Normal",
  27620. height: math.unit(15, "feet"),
  27621. default: true
  27622. },
  27623. {
  27624. name: "Macro",
  27625. height: math.unit(250, "feet")
  27626. },
  27627. {
  27628. name: "Macro+",
  27629. height: math.unit(2500, "feet")
  27630. },
  27631. ]
  27632. ))
  27633. characterMakers.push(() => makeCharacter(
  27634. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27635. {
  27636. front: {
  27637. height: math.unit(3.02, "meters"),
  27638. weight: math.unit(500, "kg"),
  27639. name: "Front",
  27640. image: {
  27641. source: "./media/characters/drena/front.svg",
  27642. extra: 282 / 243,
  27643. bottom: 8 / 290
  27644. }
  27645. },
  27646. side: {
  27647. height: math.unit(3.02, "meters"),
  27648. weight: math.unit(500, "kg"),
  27649. name: "Side",
  27650. image: {
  27651. source: "./media/characters/drena/side.svg",
  27652. extra: 280 / 245,
  27653. bottom: 10 / 290
  27654. }
  27655. },
  27656. back: {
  27657. height: math.unit(3.02, "meters"),
  27658. weight: math.unit(500, "kg"),
  27659. name: "Back",
  27660. image: {
  27661. source: "./media/characters/drena/back.svg",
  27662. extra: 278 / 243,
  27663. bottom: 2 / 280
  27664. }
  27665. },
  27666. foot: {
  27667. height: math.unit(0.75, "meters"),
  27668. name: "Foot",
  27669. image: {
  27670. source: "./media/characters/drena/foot.svg"
  27671. }
  27672. },
  27673. maw: {
  27674. height: math.unit(0.82, "meters"),
  27675. name: "Maw",
  27676. image: {
  27677. source: "./media/characters/drena/maw.svg"
  27678. }
  27679. },
  27680. rump: {
  27681. height: math.unit(0.93, "meters"),
  27682. name: "Rump",
  27683. image: {
  27684. source: "./media/characters/drena/rump.svg"
  27685. }
  27686. },
  27687. },
  27688. [
  27689. {
  27690. name: "Normal",
  27691. height: math.unit(3.02, "meters"),
  27692. default: true
  27693. },
  27694. ]
  27695. ))
  27696. characterMakers.push(() => makeCharacter(
  27697. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27698. {
  27699. front: {
  27700. height: math.unit(6 + 4 / 12, "feet"),
  27701. weight: math.unit(250, "lb"),
  27702. name: "Front",
  27703. image: {
  27704. source: "./media/characters/remmyzilla/front.svg",
  27705. extra: 4033 / 3588,
  27706. bottom: 123 / 4156
  27707. }
  27708. },
  27709. back: {
  27710. height: math.unit(6 + 4 / 12, "feet"),
  27711. weight: math.unit(250, "lb"),
  27712. name: "Back",
  27713. image: {
  27714. source: "./media/characters/remmyzilla/back.svg",
  27715. extra: 2687 / 2555,
  27716. bottom: 48 / 2735
  27717. }
  27718. },
  27719. frontFancy: {
  27720. height: math.unit(6 + 4 / 12, "feet"),
  27721. weight: math.unit(250, "lb"),
  27722. name: "Front (Fancy)",
  27723. image: {
  27724. source: "./media/characters/remmyzilla/front-fancy.svg",
  27725. extra: 4119 / 3419,
  27726. bottom: 237 / 4356
  27727. }
  27728. },
  27729. paw: {
  27730. height: math.unit(1.73, "feet"),
  27731. name: "Paw",
  27732. image: {
  27733. source: "./media/characters/remmyzilla/paw.svg"
  27734. }
  27735. },
  27736. maw: {
  27737. height: math.unit(1.73, "feet"),
  27738. name: "Maw",
  27739. image: {
  27740. source: "./media/characters/remmyzilla/maw.svg"
  27741. }
  27742. },
  27743. },
  27744. [
  27745. {
  27746. name: "Normal",
  27747. height: math.unit(6 + 4 / 12, "feet")
  27748. },
  27749. {
  27750. name: "Minimacro",
  27751. height: math.unit(12 + 8 / 12, "feet")
  27752. },
  27753. {
  27754. name: "Normal",
  27755. height: math.unit(640, "feet"),
  27756. default: true
  27757. },
  27758. {
  27759. name: "Megamacro",
  27760. height: math.unit(6400, "feet")
  27761. },
  27762. {
  27763. name: "Gigamacro",
  27764. height: math.unit(64000, "miles")
  27765. },
  27766. ]
  27767. ))
  27768. characterMakers.push(() => makeCharacter(
  27769. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  27770. {
  27771. front: {
  27772. height: math.unit(2.5, "meters"),
  27773. weight: math.unit(300, "lb"),
  27774. name: "Front",
  27775. image: {
  27776. source: "./media/characters/lawrence/front.svg",
  27777. extra: 357 / 335,
  27778. bottom: 30 / 387
  27779. }
  27780. },
  27781. back: {
  27782. height: math.unit(2.5, "meters"),
  27783. weight: math.unit(300, "lb"),
  27784. name: "Back",
  27785. image: {
  27786. source: "./media/characters/lawrence/back.svg",
  27787. extra: 357 / 338,
  27788. bottom: 16 / 373
  27789. }
  27790. },
  27791. head: {
  27792. height: math.unit(0.9, "meter"),
  27793. name: "Head",
  27794. image: {
  27795. source: "./media/characters/lawrence/head.svg"
  27796. }
  27797. },
  27798. maw: {
  27799. height: math.unit(0.7, "meter"),
  27800. name: "Maw",
  27801. image: {
  27802. source: "./media/characters/lawrence/maw.svg"
  27803. }
  27804. },
  27805. footBottom: {
  27806. height: math.unit(0.5, "meter"),
  27807. name: "Foot (Bottom)",
  27808. image: {
  27809. source: "./media/characters/lawrence/foot-bottom.svg"
  27810. }
  27811. },
  27812. footTop: {
  27813. height: math.unit(0.5, "meter"),
  27814. name: "Foot (Top)",
  27815. image: {
  27816. source: "./media/characters/lawrence/foot-top.svg"
  27817. }
  27818. },
  27819. },
  27820. [
  27821. {
  27822. name: "Normal",
  27823. height: math.unit(2.5, "meters"),
  27824. default: true
  27825. },
  27826. {
  27827. name: "Macro",
  27828. height: math.unit(95, "meters")
  27829. },
  27830. {
  27831. name: "Megamacro",
  27832. height: math.unit(150, "km")
  27833. },
  27834. ]
  27835. ))
  27836. characterMakers.push(() => makeCharacter(
  27837. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  27838. {
  27839. front: {
  27840. height: math.unit(4.2, "meters"),
  27841. name: "Front",
  27842. image: {
  27843. source: "./media/characters/sydney/front.svg",
  27844. extra: 1323 / 1277,
  27845. bottom: 111 / 1434
  27846. }
  27847. },
  27848. },
  27849. [
  27850. {
  27851. name: "Normal",
  27852. height: math.unit(4.2, "meters")
  27853. },
  27854. ]
  27855. ))
  27856. characterMakers.push(() => makeCharacter(
  27857. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  27858. {
  27859. back: {
  27860. height: math.unit(201, "feet"),
  27861. name: "Back",
  27862. image: {
  27863. source: "./media/characters/jessica/back.svg",
  27864. extra: 273 / 259,
  27865. bottom: 7 / 280
  27866. }
  27867. },
  27868. },
  27869. [
  27870. {
  27871. name: "Normal",
  27872. height: math.unit(201, "feet"),
  27873. default: true
  27874. },
  27875. {
  27876. name: "Megamacro",
  27877. height: math.unit(8, "miles")
  27878. },
  27879. ]
  27880. ))
  27881. characterMakers.push(() => makeCharacter(
  27882. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  27883. {
  27884. side: {
  27885. height: math.unit(320, "cm"),
  27886. name: "Side",
  27887. image: {
  27888. source: "./media/characters/victoria/side.svg",
  27889. extra: 778 / 346,
  27890. bottom: 56 / 834
  27891. }
  27892. },
  27893. maw: {
  27894. height: math.unit(5.9, "feet"),
  27895. name: "Maw",
  27896. image: {
  27897. source: "./media/characters/victoria/maw.svg"
  27898. }
  27899. },
  27900. },
  27901. [
  27902. {
  27903. name: "Normal",
  27904. height: math.unit(320, "cm"),
  27905. default: true
  27906. },
  27907. ]
  27908. ))
  27909. characterMakers.push(() => makeCharacter(
  27910. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  27911. {
  27912. front: {
  27913. height: math.unit(5 + 6 / 12, "feet"),
  27914. name: "Front",
  27915. image: {
  27916. source: "./media/characters/cat/front.svg",
  27917. extra: 1374 / 1257,
  27918. bottom: 59 / 1433
  27919. }
  27920. },
  27921. back: {
  27922. height: math.unit(5 + 6 / 12, "feet"),
  27923. name: "Back",
  27924. image: {
  27925. source: "./media/characters/cat/back.svg",
  27926. extra: 1337 / 1226,
  27927. bottom: 34 / 1371
  27928. }
  27929. },
  27930. taur: {
  27931. height: math.unit(7, "feet"),
  27932. name: "Taur",
  27933. image: {
  27934. source: "./media/characters/cat/taur.svg",
  27935. extra: 1345 / 1231,
  27936. bottom: 66 / 1411
  27937. }
  27938. },
  27939. lucario: {
  27940. height: math.unit(4, "feet"),
  27941. name: "Lucario",
  27942. image: {
  27943. source: "./media/characters/cat/lucario.svg",
  27944. extra: 1470 / 1318,
  27945. bottom: 65 / 1535
  27946. }
  27947. },
  27948. megaLucario: {
  27949. height: math.unit(4, "feet"),
  27950. name: "Mega Lucario",
  27951. image: {
  27952. source: "./media/characters/cat/mega-lucario.svg",
  27953. extra: 1515 / 1319,
  27954. bottom: 63 / 1578
  27955. }
  27956. },
  27957. nickit: {
  27958. height: math.unit(2, "feet"),
  27959. name: "Nickit",
  27960. image: {
  27961. source: "./media/characters/cat/nickit.svg",
  27962. extra: 1980 / 1585,
  27963. bottom: 102 / 2082
  27964. }
  27965. },
  27966. lopunnyFront: {
  27967. height: math.unit(5, "feet"),
  27968. name: "Lopunny (Front)",
  27969. image: {
  27970. source: "./media/characters/cat/lopunny-front.svg",
  27971. extra: 1782 / 1469,
  27972. bottom: 38 / 1820
  27973. }
  27974. },
  27975. lopunnyBack: {
  27976. height: math.unit(5, "feet"),
  27977. name: "Lopunny (Back)",
  27978. image: {
  27979. source: "./media/characters/cat/lopunny-back.svg",
  27980. extra: 1660 / 1490,
  27981. bottom: 25 / 1685
  27982. }
  27983. },
  27984. },
  27985. [
  27986. {
  27987. name: "Really small",
  27988. height: math.unit(1, "nm")
  27989. },
  27990. {
  27991. name: "Micro",
  27992. height: math.unit(5, "inches")
  27993. },
  27994. {
  27995. name: "Normal",
  27996. height: math.unit(5 + 6 / 12, "feet"),
  27997. default: true
  27998. },
  27999. {
  28000. name: "Macro",
  28001. height: math.unit(50, "feet")
  28002. },
  28003. {
  28004. name: "Macro+",
  28005. height: math.unit(150, "feet")
  28006. },
  28007. {
  28008. name: "Megamacro",
  28009. height: math.unit(100, "miles")
  28010. },
  28011. ]
  28012. ))
  28013. characterMakers.push(() => makeCharacter(
  28014. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28015. {
  28016. front: {
  28017. height: math.unit(63.4, "meters"),
  28018. weight: math.unit(3.28349e+6, "kilograms"),
  28019. name: "Front",
  28020. image: {
  28021. source: "./media/characters/kirina-violet/front.svg",
  28022. extra: 2812 / 2725,
  28023. bottom: 0 / 2812
  28024. }
  28025. },
  28026. back: {
  28027. height: math.unit(63.4, "meters"),
  28028. weight: math.unit(3.28349e+6, "kilograms"),
  28029. name: "Back",
  28030. image: {
  28031. source: "./media/characters/kirina-violet/back.svg",
  28032. extra: 2812 / 2725,
  28033. bottom: 0 / 2812
  28034. }
  28035. },
  28036. mouth: {
  28037. height: math.unit(4.35, "meters"),
  28038. name: "Mouth",
  28039. image: {
  28040. source: "./media/characters/kirina-violet/mouth.svg"
  28041. }
  28042. },
  28043. paw: {
  28044. height: math.unit(5.6, "meters"),
  28045. name: "Paw",
  28046. image: {
  28047. source: "./media/characters/kirina-violet/paw.svg"
  28048. }
  28049. },
  28050. tail: {
  28051. height: math.unit(18, "meters"),
  28052. name: "Tail",
  28053. image: {
  28054. source: "./media/characters/kirina-violet/tail.svg"
  28055. }
  28056. },
  28057. },
  28058. [
  28059. {
  28060. name: "Macro",
  28061. height: math.unit(63.4, "meters"),
  28062. default: true
  28063. },
  28064. ]
  28065. ))
  28066. characterMakers.push(() => makeCharacter(
  28067. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28068. {
  28069. front: {
  28070. height: math.unit(60, "feet"),
  28071. name: "Front",
  28072. image: {
  28073. source: "./media/characters/cat-gigachu/front.svg",
  28074. extra: 1024 / 780,
  28075. bottom: 23 / 1047
  28076. }
  28077. },
  28078. back: {
  28079. height: math.unit(60, "feet"),
  28080. name: "Back",
  28081. image: {
  28082. source: "./media/characters/cat-gigachu/back.svg",
  28083. extra: 1024 / 780,
  28084. bottom: 23 / 1047
  28085. }
  28086. },
  28087. },
  28088. [
  28089. {
  28090. name: "Dynamax",
  28091. height: math.unit(60, "feet"),
  28092. default: true
  28093. },
  28094. ]
  28095. ))
  28096. characterMakers.push(() => makeCharacter(
  28097. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28098. {
  28099. front: {
  28100. height: math.unit(6, "feet"),
  28101. weight: math.unit(150, "lb"),
  28102. name: "Front",
  28103. image: {
  28104. source: "./media/characters/sfaiyan/front.svg",
  28105. extra: 999 / 978,
  28106. bottom: 5 / 1004
  28107. }
  28108. },
  28109. },
  28110. [
  28111. {
  28112. name: "Normal",
  28113. height: math.unit(1.82, "meters")
  28114. },
  28115. {
  28116. name: "Giant",
  28117. height: math.unit(2.27, "km"),
  28118. default: true
  28119. },
  28120. ]
  28121. ))
  28122. characterMakers.push(() => makeCharacter(
  28123. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28124. {
  28125. front: {
  28126. height: math.unit(179, "cm"),
  28127. weight: math.unit(100, "kg"),
  28128. name: "Front",
  28129. image: {
  28130. source: "./media/characters/raunehkeli/front.svg",
  28131. extra: 1934 / 1926,
  28132. bottom: 0 / 1934
  28133. }
  28134. },
  28135. },
  28136. [
  28137. {
  28138. name: "Normal",
  28139. height: math.unit(179, "cm")
  28140. },
  28141. {
  28142. name: "Maximum",
  28143. height: math.unit(575, "meters"),
  28144. default: true
  28145. },
  28146. ]
  28147. ))
  28148. characterMakers.push(() => makeCharacter(
  28149. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28150. {
  28151. front: {
  28152. height: math.unit(6, "feet"),
  28153. weight: math.unit(150, "lb"),
  28154. name: "Front",
  28155. image: {
  28156. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28157. extra: 2625 / 2518,
  28158. bottom: 60 / 2685
  28159. }
  28160. },
  28161. },
  28162. [
  28163. {
  28164. name: "Normal",
  28165. height: math.unit(6 + 2 / 12, "feet"),
  28166. default: true
  28167. },
  28168. {
  28169. name: "Macro",
  28170. height: math.unit(1180, "feet")
  28171. },
  28172. ]
  28173. ))
  28174. characterMakers.push(() => makeCharacter(
  28175. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28176. {
  28177. front: {
  28178. height: math.unit(5 + 6 / 12, "feet"),
  28179. weight: math.unit(108, "lb"),
  28180. name: "Front",
  28181. image: {
  28182. source: "./media/characters/lilith-zott/front.svg",
  28183. extra: 2510 / 2238,
  28184. bottom: 100 / 2610
  28185. }
  28186. },
  28187. frontDressed: {
  28188. height: math.unit(5 + 6 / 12, "feet"),
  28189. weight: math.unit(108, "lb"),
  28190. name: "Front (Dressed)",
  28191. image: {
  28192. source: "./media/characters/lilith-zott/front-dressed.svg",
  28193. extra: 2510 / 2238,
  28194. bottom: 100 / 2610
  28195. }
  28196. },
  28197. },
  28198. [
  28199. {
  28200. name: "Normal",
  28201. height: math.unit(5 + 6 / 12, "feet")
  28202. },
  28203. {
  28204. name: "Macro",
  28205. height: math.unit(200, "feet"),
  28206. default: true
  28207. },
  28208. {
  28209. name: "Macro+",
  28210. height: math.unit(1030, "feet")
  28211. },
  28212. ]
  28213. ))
  28214. characterMakers.push(() => makeCharacter(
  28215. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28216. {
  28217. front: {
  28218. height: math.unit(6, "feet"),
  28219. weight: math.unit(150, "lb"),
  28220. name: "Front",
  28221. image: {
  28222. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28223. extra: 2567 / 2435,
  28224. bottom: 39 / 2606
  28225. }
  28226. },
  28227. frontSuper: {
  28228. height: math.unit(6, "feet"),
  28229. name: "Front (Super)",
  28230. image: {
  28231. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28232. extra: 2567 / 2435,
  28233. bottom: 39 / 2606
  28234. }
  28235. },
  28236. },
  28237. [
  28238. {
  28239. name: "Normal",
  28240. height: math.unit(5 + 10 / 12, "feet")
  28241. },
  28242. {
  28243. name: "Macro",
  28244. height: math.unit(220, "feet"),
  28245. default: true
  28246. },
  28247. {
  28248. name: "Macro+",
  28249. height: math.unit(1100, "feet")
  28250. },
  28251. ]
  28252. ))
  28253. characterMakers.push(() => makeCharacter(
  28254. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28255. {
  28256. front: {
  28257. height: math.unit(100, "miles"),
  28258. name: "Front",
  28259. image: {
  28260. source: "./media/characters/sona/front.svg",
  28261. extra: 2433 / 2201,
  28262. bottom: 53 / 2486
  28263. }
  28264. },
  28265. foot: {
  28266. height: math.unit(16.1, "miles"),
  28267. name: "Foot",
  28268. image: {
  28269. source: "./media/characters/sona/foot.svg"
  28270. }
  28271. },
  28272. },
  28273. [
  28274. {
  28275. name: "Macro",
  28276. height: math.unit(100, "miles"),
  28277. default: true
  28278. },
  28279. ]
  28280. ))
  28281. characterMakers.push(() => makeCharacter(
  28282. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28283. {
  28284. front: {
  28285. height: math.unit(6, "feet"),
  28286. weight: math.unit(150, "lb"),
  28287. name: "Front",
  28288. image: {
  28289. source: "./media/characters/bailey/front.svg",
  28290. extra: 1778 / 1724,
  28291. bottom: 30 / 1808
  28292. }
  28293. },
  28294. },
  28295. [
  28296. {
  28297. name: "Micro",
  28298. height: math.unit(4, "inches")
  28299. },
  28300. {
  28301. name: "Normal",
  28302. height: math.unit(5 + 5 / 12, "feet"),
  28303. default: true
  28304. },
  28305. {
  28306. name: "Macro",
  28307. height: math.unit(250, "feet")
  28308. },
  28309. {
  28310. name: "Megamacro",
  28311. height: math.unit(100, "miles")
  28312. },
  28313. ]
  28314. ))
  28315. characterMakers.push(() => makeCharacter(
  28316. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28317. {
  28318. front: {
  28319. height: math.unit(5 + 2 / 12, "feet"),
  28320. weight: math.unit(120, "lb"),
  28321. name: "Front",
  28322. image: {
  28323. source: "./media/characters/snaps/front.svg",
  28324. extra: 2370 / 2177,
  28325. bottom: 48 / 2418
  28326. }
  28327. },
  28328. back: {
  28329. height: math.unit(5 + 2 / 12, "feet"),
  28330. weight: math.unit(120, "lb"),
  28331. name: "Back",
  28332. image: {
  28333. source: "./media/characters/snaps/back.svg",
  28334. extra: 2408 / 2258,
  28335. bottom: 15 / 2423
  28336. }
  28337. },
  28338. },
  28339. [
  28340. {
  28341. name: "Micro",
  28342. height: math.unit(9, "inches")
  28343. },
  28344. {
  28345. name: "Normal",
  28346. height: math.unit(5 + 2 / 12, "feet"),
  28347. default: true
  28348. },
  28349. {
  28350. name: "Mini Macro",
  28351. height: math.unit(10, "feet")
  28352. },
  28353. ]
  28354. ))
  28355. characterMakers.push(() => makeCharacter(
  28356. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28357. {
  28358. front: {
  28359. height: math.unit(1.8, "meters"),
  28360. weight: math.unit(85, "kg"),
  28361. name: "Front",
  28362. image: {
  28363. source: "./media/characters/azteck/front.svg",
  28364. extra: 2815 / 2625,
  28365. bottom: 89 / 2904
  28366. }
  28367. },
  28368. back: {
  28369. height: math.unit(1.8, "meters"),
  28370. weight: math.unit(85, "kg"),
  28371. name: "Back",
  28372. image: {
  28373. source: "./media/characters/azteck/back.svg",
  28374. extra: 2856 / 2648,
  28375. bottom: 85 / 2941
  28376. }
  28377. },
  28378. frontDressed: {
  28379. height: math.unit(1.8, "meters"),
  28380. weight: math.unit(85, "kg"),
  28381. name: "Front (Dressed)",
  28382. image: {
  28383. source: "./media/characters/azteck/front-dressed.svg",
  28384. extra: 2147 / 2003,
  28385. bottom: 68 / 2215
  28386. }
  28387. },
  28388. head: {
  28389. height: math.unit(0.47, "meters"),
  28390. weight: math.unit(85, "kg"),
  28391. name: "Head",
  28392. image: {
  28393. source: "./media/characters/azteck/head.svg"
  28394. }
  28395. },
  28396. },
  28397. [
  28398. {
  28399. name: "Bite sized",
  28400. height: math.unit(16, "cm")
  28401. },
  28402. {
  28403. name: "Normal",
  28404. height: math.unit(1.8, "meters"),
  28405. default: true
  28406. },
  28407. ]
  28408. ))
  28409. characterMakers.push(() => makeCharacter(
  28410. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28411. {
  28412. front: {
  28413. height: math.unit(6, "feet"),
  28414. weight: math.unit(150, "lb"),
  28415. name: "Front",
  28416. image: {
  28417. source: "./media/characters/pidge/front.svg",
  28418. extra: 620 / 588,
  28419. bottom: 9 / 629
  28420. }
  28421. },
  28422. back: {
  28423. height: math.unit(6, "feet"),
  28424. weight: math.unit(150, "lb"),
  28425. name: "Back",
  28426. image: {
  28427. source: "./media/characters/pidge/back.svg",
  28428. extra: 620 / 588,
  28429. bottom: 9 / 629
  28430. }
  28431. },
  28432. },
  28433. [
  28434. {
  28435. name: "Macro",
  28436. height: math.unit(1, "mile"),
  28437. default: true
  28438. },
  28439. ]
  28440. ))
  28441. characterMakers.push(() => makeCharacter(
  28442. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28443. {
  28444. front: {
  28445. height: math.unit(6, "feet"),
  28446. weight: math.unit(150, "lb"),
  28447. name: "Front",
  28448. image: {
  28449. source: "./media/characters/en/front.svg",
  28450. extra: 1697 / 1563,
  28451. bottom: 103 / 1800
  28452. }
  28453. },
  28454. back: {
  28455. height: math.unit(6, "feet"),
  28456. weight: math.unit(150, "lb"),
  28457. name: "Back",
  28458. image: {
  28459. source: "./media/characters/en/back.svg",
  28460. extra: 1700 / 1570,
  28461. bottom: 51 / 1751
  28462. }
  28463. },
  28464. frontDressed: {
  28465. height: math.unit(6, "feet"),
  28466. weight: math.unit(150, "lb"),
  28467. name: "Front (Dressed)",
  28468. image: {
  28469. source: "./media/characters/en/front-dressed.svg",
  28470. extra: 1697 / 1563,
  28471. bottom: 103 / 1800
  28472. }
  28473. },
  28474. backDressed: {
  28475. height: math.unit(6, "feet"),
  28476. weight: math.unit(150, "lb"),
  28477. name: "Back (Dressed)",
  28478. image: {
  28479. source: "./media/characters/en/back-dressed.svg",
  28480. extra: 1700 / 1570,
  28481. bottom: 51 / 1751
  28482. }
  28483. },
  28484. },
  28485. [
  28486. {
  28487. name: "Macro",
  28488. height: math.unit(210, "feet"),
  28489. default: true
  28490. },
  28491. ]
  28492. ))
  28493. characterMakers.push(() => makeCharacter(
  28494. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28495. {
  28496. front: {
  28497. height: math.unit(6, "feet"),
  28498. weight: math.unit(150, "lb"),
  28499. name: "Front",
  28500. image: {
  28501. source: "./media/characters/haze-orris/front.svg",
  28502. extra: 3975 / 3525,
  28503. bottom: 137 / 4112
  28504. }
  28505. },
  28506. },
  28507. [
  28508. {
  28509. name: "Micro",
  28510. height: math.unit(150, "mm"),
  28511. default: true
  28512. },
  28513. ]
  28514. ))
  28515. characterMakers.push(() => makeCharacter(
  28516. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28517. {
  28518. front: {
  28519. height: math.unit(6, "feet"),
  28520. weight: math.unit(150, "lb"),
  28521. name: "Front",
  28522. image: {
  28523. source: "./media/characters/casselene-yaro/front.svg",
  28524. extra: 4721 / 4541,
  28525. bottom: 82 / 4803
  28526. }
  28527. },
  28528. back: {
  28529. height: math.unit(6, "feet"),
  28530. weight: math.unit(150, "lb"),
  28531. name: "Back",
  28532. image: {
  28533. source: "./media/characters/casselene-yaro/back.svg",
  28534. extra: 4569 / 4377,
  28535. bottom: 69 / 4638
  28536. }
  28537. },
  28538. frontDressed: {
  28539. height: math.unit(6, "feet"),
  28540. weight: math.unit(150, "lb"),
  28541. name: "Front-dressed",
  28542. image: {
  28543. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28544. extra: 4721 / 4541,
  28545. bottom: 82 / 4803
  28546. }
  28547. },
  28548. },
  28549. [
  28550. {
  28551. name: "Macro",
  28552. height: math.unit(190, "feet")
  28553. },
  28554. ]
  28555. ))
  28556. characterMakers.push(() => makeCharacter(
  28557. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28558. {
  28559. front: {
  28560. height: math.unit(6, "feet"),
  28561. weight: math.unit(150, "lb"),
  28562. name: "Front",
  28563. image: {
  28564. source: "./media/characters/myra-rue-delore/front.svg",
  28565. extra: 1340 / 1308,
  28566. bottom: 67 / 1407
  28567. }
  28568. },
  28569. back: {
  28570. height: math.unit(6, "feet"),
  28571. weight: math.unit(150, "lb"),
  28572. name: "Back",
  28573. image: {
  28574. source: "./media/characters/myra-rue-delore/back.svg",
  28575. extra: 1341 / 1310,
  28576. bottom: 40 / 1381
  28577. }
  28578. },
  28579. frontDressed: {
  28580. height: math.unit(6, "feet"),
  28581. weight: math.unit(150, "lb"),
  28582. name: "Front (Dressed)",
  28583. image: {
  28584. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28585. extra: 1340 / 1308,
  28586. bottom: 67 / 1407
  28587. }
  28588. },
  28589. },
  28590. [
  28591. {
  28592. name: "Macro",
  28593. height: math.unit(150, "feet")
  28594. },
  28595. ]
  28596. ))
  28597. characterMakers.push(() => makeCharacter(
  28598. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28599. {
  28600. front: {
  28601. height: math.unit(10, "feet"),
  28602. weight: math.unit(15015, "lb"),
  28603. name: "Front",
  28604. image: {
  28605. source: "./media/characters/fem!plat/front.svg",
  28606. extra: 2799 / 2604,
  28607. bottom: 149 / 2948
  28608. }
  28609. },
  28610. },
  28611. [
  28612. {
  28613. name: "Normal",
  28614. height: math.unit(10, "feet"),
  28615. default: true
  28616. },
  28617. {
  28618. name: "Macro",
  28619. height: math.unit(100, "feet")
  28620. },
  28621. {
  28622. name: "Megamacro",
  28623. height: math.unit(1000, "feet")
  28624. },
  28625. ]
  28626. ))
  28627. characterMakers.push(() => makeCharacter(
  28628. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28629. {
  28630. front: {
  28631. height: math.unit(15 + 5 / 12, "feet"),
  28632. weight: math.unit(4600, "lb"),
  28633. name: "Front",
  28634. image: {
  28635. source: "./media/characters/neapolitan-ananassa/front.svg",
  28636. extra: 2903 / 2736,
  28637. bottom: 0 / 2903
  28638. }
  28639. },
  28640. side: {
  28641. height: math.unit(15 + 5 / 12, "feet"),
  28642. weight: math.unit(4600, "lb"),
  28643. name: "Side",
  28644. image: {
  28645. source: "./media/characters/neapolitan-ananassa/side.svg",
  28646. extra: 2925 / 2719,
  28647. bottom: 0 / 2925
  28648. }
  28649. },
  28650. back: {
  28651. height: math.unit(15 + 5 / 12, "feet"),
  28652. weight: math.unit(4600, "lb"),
  28653. name: "Back",
  28654. image: {
  28655. source: "./media/characters/neapolitan-ananassa/back.svg",
  28656. extra: 2903 / 2736,
  28657. bottom: 0 / 2903
  28658. }
  28659. },
  28660. },
  28661. [
  28662. {
  28663. name: "Normal",
  28664. height: math.unit(15 + 5 / 12, "feet"),
  28665. default: true
  28666. },
  28667. {
  28668. name: "Post-Millenium",
  28669. height: math.unit(35 + 5 / 12, "feet")
  28670. },
  28671. {
  28672. name: "Post-Era",
  28673. height: math.unit(450 + 5 / 12, "feet")
  28674. },
  28675. ]
  28676. ))
  28677. characterMakers.push(() => makeCharacter(
  28678. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28679. {
  28680. front: {
  28681. height: math.unit(300, "meters"),
  28682. weight: math.unit(125000, "tonnes"),
  28683. name: "Front",
  28684. image: {
  28685. source: "./media/characters/pazuzu/front.svg",
  28686. extra: 877 / 794,
  28687. bottom: 47 / 924
  28688. }
  28689. },
  28690. },
  28691. [
  28692. {
  28693. name: "Macro",
  28694. height: math.unit(300, "meters"),
  28695. default: true
  28696. },
  28697. ]
  28698. ))
  28699. characterMakers.push(() => makeCharacter(
  28700. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28701. {
  28702. side: {
  28703. height: math.unit(10 + 7 / 12, "feet"),
  28704. weight: math.unit(2.5, "tons"),
  28705. name: "Side",
  28706. image: {
  28707. source: "./media/characters/aasha/side.svg",
  28708. extra: 1345 / 1245,
  28709. bottom: 111 / 1456
  28710. }
  28711. },
  28712. back: {
  28713. height: math.unit(10 + 7 / 12, "feet"),
  28714. weight: math.unit(2.5, "tons"),
  28715. name: "Back",
  28716. image: {
  28717. source: "./media/characters/aasha/back.svg",
  28718. extra: 1133 / 1057,
  28719. bottom: 257 / 1390
  28720. }
  28721. },
  28722. },
  28723. [
  28724. {
  28725. name: "Normal",
  28726. height: math.unit(10 + 7 / 12, "feet"),
  28727. default: true
  28728. },
  28729. ]
  28730. ))
  28731. characterMakers.push(() => makeCharacter(
  28732. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  28733. {
  28734. front: {
  28735. height: math.unit(6 + 3 / 12, "feet"),
  28736. name: "Front",
  28737. image: {
  28738. source: "./media/characters/nevan/front.svg",
  28739. extra: 704 / 704,
  28740. bottom: 28 / 732
  28741. }
  28742. },
  28743. back: {
  28744. height: math.unit(6 + 3 / 12, "feet"),
  28745. name: "Back",
  28746. image: {
  28747. source: "./media/characters/nevan/back.svg",
  28748. extra: 714 / 714,
  28749. bottom: 21 / 735
  28750. }
  28751. },
  28752. frontFlaccid: {
  28753. height: math.unit(6 + 3 / 12, "feet"),
  28754. name: "Front (Flaccid)",
  28755. image: {
  28756. source: "./media/characters/nevan/front-flaccid.svg",
  28757. extra: 704 / 704,
  28758. bottom: 28 / 732
  28759. }
  28760. },
  28761. frontErect: {
  28762. height: math.unit(6 + 3 / 12, "feet"),
  28763. name: "Front (Erect)",
  28764. image: {
  28765. source: "./media/characters/nevan/front-erect.svg",
  28766. extra: 704 / 704,
  28767. bottom: 28 / 732
  28768. }
  28769. },
  28770. backFlaccid: {
  28771. height: math.unit(6 + 3 / 12, "feet"),
  28772. name: "Back (Flaccid)",
  28773. image: {
  28774. source: "./media/characters/nevan/back-flaccid.svg",
  28775. extra: 714 / 714,
  28776. bottom: 21 / 735
  28777. }
  28778. },
  28779. },
  28780. [
  28781. {
  28782. name: "Normal",
  28783. height: math.unit(6 + 3 / 12, "feet"),
  28784. default: true
  28785. },
  28786. ]
  28787. ))
  28788. characterMakers.push(() => makeCharacter(
  28789. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  28790. {
  28791. front: {
  28792. height: math.unit(4, "feet"),
  28793. name: "Front",
  28794. image: {
  28795. source: "./media/characters/arhan/front.svg",
  28796. extra: 3368 / 3133,
  28797. bottom: 0 / 3368
  28798. }
  28799. },
  28800. side: {
  28801. height: math.unit(4, "feet"),
  28802. name: "Side",
  28803. image: {
  28804. source: "./media/characters/arhan/side.svg",
  28805. extra: 3347 / 3105,
  28806. bottom: 0 / 3347
  28807. }
  28808. },
  28809. tongue: {
  28810. height: math.unit(1.42, "feet"),
  28811. name: "Tongue",
  28812. image: {
  28813. source: "./media/characters/arhan/tongue.svg"
  28814. }
  28815. },
  28816. head: {
  28817. height: math.unit(0.85, "feet"),
  28818. name: "Head",
  28819. image: {
  28820. source: "./media/characters/arhan/head.svg"
  28821. }
  28822. },
  28823. },
  28824. [
  28825. {
  28826. name: "Normal",
  28827. height: math.unit(4, "feet"),
  28828. default: true
  28829. },
  28830. ]
  28831. ))
  28832. characterMakers.push(() => makeCharacter(
  28833. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  28834. {
  28835. front: {
  28836. height: math.unit(5 + 7.5 / 12, "feet"),
  28837. weight: math.unit(120, "lb"),
  28838. name: "Front",
  28839. image: {
  28840. source: "./media/characters/digi-duncan/front.svg",
  28841. extra: 330 / 326,
  28842. bottom: 16 / 346
  28843. }
  28844. },
  28845. side: {
  28846. height: math.unit(5 + 7.5 / 12, "feet"),
  28847. weight: math.unit(120, "lb"),
  28848. name: "Side",
  28849. image: {
  28850. source: "./media/characters/digi-duncan/side.svg",
  28851. extra: 341 / 337,
  28852. bottom: 1 / 342
  28853. }
  28854. },
  28855. back: {
  28856. height: math.unit(5 + 7.5 / 12, "feet"),
  28857. weight: math.unit(120, "lb"),
  28858. name: "Back",
  28859. image: {
  28860. source: "./media/characters/digi-duncan/back.svg",
  28861. extra: 330 / 326,
  28862. bottom: 12 / 342
  28863. }
  28864. },
  28865. },
  28866. [
  28867. {
  28868. name: "Speck",
  28869. height: math.unit(0.25, "mm")
  28870. },
  28871. {
  28872. name: "Micro",
  28873. height: math.unit(5, "mm")
  28874. },
  28875. {
  28876. name: "Tiny",
  28877. height: math.unit(0.5, "inches"),
  28878. default: true
  28879. },
  28880. {
  28881. name: "Human",
  28882. height: math.unit(5 + 7.5 / 12, "feet")
  28883. },
  28884. {
  28885. name: "Minigiant",
  28886. height: math.unit(8 + 5.25, "feet")
  28887. },
  28888. {
  28889. name: "Giant",
  28890. height: math.unit(2000, "feet")
  28891. },
  28892. {
  28893. name: "Mega",
  28894. height: math.unit(371.1, "miles")
  28895. },
  28896. ]
  28897. ))
  28898. characterMakers.push(() => makeCharacter(
  28899. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  28900. {
  28901. front: {
  28902. height: math.unit(2, "meters"),
  28903. weight: math.unit(350, "kg"),
  28904. name: "Front",
  28905. image: {
  28906. source: "./media/characters/jagaz-soulbreaker/front.svg",
  28907. extra: 898 / 838,
  28908. bottom: 9 / 907
  28909. }
  28910. },
  28911. },
  28912. [
  28913. {
  28914. name: "Micro",
  28915. height: math.unit(8, "meters")
  28916. },
  28917. {
  28918. name: "Normal",
  28919. height: math.unit(50, "meters"),
  28920. default: true
  28921. },
  28922. {
  28923. name: "Macro",
  28924. height: math.unit(500, "meters")
  28925. },
  28926. ]
  28927. ))
  28928. characterMakers.push(() => makeCharacter(
  28929. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  28930. {
  28931. front: {
  28932. height: math.unit(6 + 6 / 12, "feet"),
  28933. name: "Front",
  28934. image: {
  28935. source: "./media/characters/khardesh/front.svg",
  28936. extra: 888 / 797,
  28937. bottom: 25 / 913
  28938. }
  28939. },
  28940. },
  28941. [
  28942. {
  28943. name: "Normal",
  28944. height: math.unit(6 + 6 / 12, "feet"),
  28945. default: true
  28946. },
  28947. {
  28948. name: "Normal+",
  28949. height: math.unit(4, "meters")
  28950. },
  28951. {
  28952. name: "Macro",
  28953. height: math.unit(50, "meters")
  28954. },
  28955. {
  28956. name: "Macro+",
  28957. height: math.unit(100, "meters")
  28958. },
  28959. {
  28960. name: "Megamacro",
  28961. height: math.unit(20, "km")
  28962. },
  28963. ]
  28964. ))
  28965. characterMakers.push(() => makeCharacter(
  28966. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  28967. {
  28968. front: {
  28969. height: math.unit(6, "feet"),
  28970. weight: math.unit(150, "lb"),
  28971. name: "Front",
  28972. image: {
  28973. source: "./media/characters/kosho/front.svg",
  28974. extra: 1847 / 1847,
  28975. bottom: 86 / 1933
  28976. }
  28977. },
  28978. },
  28979. [
  28980. {
  28981. name: "Second-stage micro",
  28982. height: math.unit(0.5, "inches")
  28983. },
  28984. {
  28985. name: "First-stage micro",
  28986. height: math.unit(6, "inches")
  28987. },
  28988. {
  28989. name: "Normal",
  28990. height: math.unit(6, "feet"),
  28991. default: true
  28992. },
  28993. {
  28994. name: "First-stage macro",
  28995. height: math.unit(72, "feet")
  28996. },
  28997. {
  28998. name: "Second-stage macro",
  28999. height: math.unit(864, "feet")
  29000. },
  29001. ]
  29002. ))
  29003. characterMakers.push(() => makeCharacter(
  29004. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29005. {
  29006. normal: {
  29007. height: math.unit(4 + 6 / 12, "feet"),
  29008. name: "Normal",
  29009. image: {
  29010. source: "./media/characters/hydra/normal.svg",
  29011. extra: 2833 / 2634,
  29012. bottom: 68 / 2901
  29013. }
  29014. },
  29015. smol: {
  29016. height: math.unit(0.705, "inches"),
  29017. name: "Smol",
  29018. image: {
  29019. source: "./media/characters/hydra/smol.svg",
  29020. extra: 2715 / 2540,
  29021. bottom: 0 / 2715
  29022. }
  29023. },
  29024. },
  29025. [
  29026. {
  29027. name: "Normal",
  29028. height: math.unit(4 + 6 / 12, "feet"),
  29029. default: true
  29030. }
  29031. ]
  29032. ))
  29033. characterMakers.push(() => makeCharacter(
  29034. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29035. {
  29036. front: {
  29037. height: math.unit(0.6, "cm"),
  29038. name: "Front",
  29039. image: {
  29040. source: "./media/characters/daz/front.svg",
  29041. extra: 1682 / 1164,
  29042. bottom: 42 / 1724
  29043. }
  29044. },
  29045. },
  29046. [
  29047. {
  29048. name: "Normal",
  29049. height: math.unit(0.6, "cm"),
  29050. default: true
  29051. },
  29052. ]
  29053. ))
  29054. characterMakers.push(() => makeCharacter(
  29055. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29056. {
  29057. front: {
  29058. height: math.unit(6, "feet"),
  29059. weight: math.unit(235, "lb"),
  29060. name: "Front",
  29061. image: {
  29062. source: "./media/characters/theo-pangolin/front.svg",
  29063. extra: 1996 / 1969,
  29064. bottom: 115 / 2111
  29065. }
  29066. },
  29067. back: {
  29068. height: math.unit(6, "feet"),
  29069. weight: math.unit(235, "lb"),
  29070. name: "Back",
  29071. image: {
  29072. source: "./media/characters/theo-pangolin/back.svg",
  29073. extra: 1979 / 1979,
  29074. bottom: 40 / 2019
  29075. }
  29076. },
  29077. feral: {
  29078. height: math.unit(2, "feet"),
  29079. weight: math.unit(30, "lb"),
  29080. name: "Feral",
  29081. image: {
  29082. source: "./media/characters/theo-pangolin/feral.svg",
  29083. extra: 803 / 791,
  29084. bottom: 181 / 984
  29085. }
  29086. },
  29087. footFive: {
  29088. height: math.unit(1.43, "feet"),
  29089. name: "Foot (Five Toes)",
  29090. image: {
  29091. source: "./media/characters/theo-pangolin/foot-five.svg"
  29092. }
  29093. },
  29094. footFour: {
  29095. height: math.unit(1.43, "feet"),
  29096. name: "Foot (Four Toes)",
  29097. image: {
  29098. source: "./media/characters/theo-pangolin/foot-four.svg"
  29099. }
  29100. },
  29101. handFour: {
  29102. height: math.unit(0.81, "feet"),
  29103. name: "Hand (Four Fingers)",
  29104. image: {
  29105. source: "./media/characters/theo-pangolin/hand-four.svg"
  29106. }
  29107. },
  29108. handThree: {
  29109. height: math.unit(0.81, "feet"),
  29110. name: "Hand (Three Fingers)",
  29111. image: {
  29112. source: "./media/characters/theo-pangolin/hand-three.svg"
  29113. }
  29114. },
  29115. headFront: {
  29116. height: math.unit(1.37, "feet"),
  29117. name: "Head (Front)",
  29118. image: {
  29119. source: "./media/characters/theo-pangolin/head-front.svg"
  29120. }
  29121. },
  29122. headSide: {
  29123. height: math.unit(1.43, "feet"),
  29124. name: "Head (Side)",
  29125. image: {
  29126. source: "./media/characters/theo-pangolin/head-side.svg"
  29127. }
  29128. },
  29129. tongue: {
  29130. height: math.unit(2.29, "feet"),
  29131. name: "Tongue",
  29132. image: {
  29133. source: "./media/characters/theo-pangolin/tongue.svg"
  29134. }
  29135. },
  29136. },
  29137. [
  29138. {
  29139. name: "Normal",
  29140. height: math.unit(6, "feet")
  29141. },
  29142. {
  29143. name: "Macro",
  29144. height: math.unit(400, "feet"),
  29145. default: true
  29146. },
  29147. ]
  29148. ))
  29149. characterMakers.push(() => makeCharacter(
  29150. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29151. {
  29152. front: {
  29153. height: math.unit(6, "inches"),
  29154. weight: math.unit(0.036, "kg"),
  29155. name: "Front",
  29156. image: {
  29157. source: "./media/characters/renée/front.svg",
  29158. extra: 900 / 886,
  29159. bottom: 8 / 908
  29160. }
  29161. },
  29162. },
  29163. [
  29164. {
  29165. name: "Nano",
  29166. height: math.unit(1, "nm")
  29167. },
  29168. {
  29169. name: "Micro",
  29170. height: math.unit(1, "mm")
  29171. },
  29172. {
  29173. name: "Normal",
  29174. height: math.unit(6, "inches")
  29175. },
  29176. {
  29177. name: "Macro",
  29178. height: math.unit(2000, "feet"),
  29179. default: true
  29180. },
  29181. {
  29182. name: "Megamacro",
  29183. height: math.unit(2, "km")
  29184. },
  29185. {
  29186. name: "Gigamacro",
  29187. height: math.unit(2000, "km")
  29188. },
  29189. {
  29190. name: "Teramacro",
  29191. height: math.unit(250000, "km")
  29192. },
  29193. ]
  29194. ))
  29195. characterMakers.push(() => makeCharacter(
  29196. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29197. {
  29198. front: {
  29199. height: math.unit(4, "meters"),
  29200. weight: math.unit(150, "kg"),
  29201. name: "Front",
  29202. image: {
  29203. source: "./media/characters/caledvwlch/front.svg",
  29204. extra: 1760 / 1551,
  29205. bottom: 28 / 1788
  29206. }
  29207. },
  29208. side: {
  29209. height: math.unit(4, "meters"),
  29210. weight: math.unit(150, "kg"),
  29211. name: "Side",
  29212. image: {
  29213. source: "./media/characters/caledvwlch/side.svg",
  29214. extra: 1605 / 1536,
  29215. bottom: 31 / 1636
  29216. }
  29217. },
  29218. back: {
  29219. height: math.unit(4, "meters"),
  29220. weight: math.unit(150, "kg"),
  29221. name: "Back",
  29222. image: {
  29223. source: "./media/characters/caledvwlch/back.svg",
  29224. extra: 1635 / 1565,
  29225. bottom: 27 / 1662
  29226. }
  29227. },
  29228. },
  29229. [
  29230. {
  29231. name: "\"Incognito\"",
  29232. height: math.unit(4, "meters")
  29233. },
  29234. {
  29235. name: "Small rampage",
  29236. height: math.unit(600, "meters")
  29237. },
  29238. {
  29239. name: "Mega",
  29240. height: math.unit(30, "km")
  29241. },
  29242. {
  29243. name: "Home-size",
  29244. height: math.unit(50, "km"),
  29245. default: true
  29246. },
  29247. {
  29248. name: "Giga",
  29249. height: math.unit(300, "km")
  29250. },
  29251. {
  29252. name: "Lounging",
  29253. height: math.unit(11000, "km")
  29254. },
  29255. {
  29256. name: "Planet snacking",
  29257. height: math.unit(2000000, "km")
  29258. },
  29259. ]
  29260. ))
  29261. characterMakers.push(() => makeCharacter(
  29262. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29263. {
  29264. front: {
  29265. height: math.unit(6, "feet"),
  29266. weight: math.unit(215, "lb"),
  29267. name: "Front",
  29268. image: {
  29269. source: "./media/characters/sapphire-svell/front.svg",
  29270. extra: 495 / 455,
  29271. bottom: 20 / 515
  29272. }
  29273. },
  29274. back: {
  29275. height: math.unit(6, "feet"),
  29276. weight: math.unit(216, "lb"),
  29277. name: "Back",
  29278. image: {
  29279. source: "./media/characters/sapphire-svell/back.svg",
  29280. extra: 497 / 477,
  29281. bottom: 7 / 504
  29282. }
  29283. },
  29284. maw: {
  29285. height: math.unit(1.57, "feet"),
  29286. name: "Maw",
  29287. image: {
  29288. source: "./media/characters/sapphire-svell/maw.svg"
  29289. }
  29290. },
  29291. foot: {
  29292. height: math.unit(1.07, "feet"),
  29293. name: "Foot",
  29294. image: {
  29295. source: "./media/characters/sapphire-svell/foot.svg"
  29296. }
  29297. },
  29298. toering: {
  29299. height: math.unit(1.7, "inch"),
  29300. name: "Toering",
  29301. image: {
  29302. source: "./media/characters/sapphire-svell/toering.svg"
  29303. }
  29304. },
  29305. },
  29306. [
  29307. {
  29308. name: "Normal",
  29309. height: math.unit(300, "feet"),
  29310. default: true
  29311. },
  29312. {
  29313. name: "Augmented",
  29314. height: math.unit(1250, "feet")
  29315. },
  29316. {
  29317. name: "Unleashed",
  29318. height: math.unit(3000, "feet")
  29319. },
  29320. ]
  29321. ))
  29322. characterMakers.push(() => makeCharacter(
  29323. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29324. {
  29325. side: {
  29326. height: math.unit(2 + 3 / 12, "feet"),
  29327. weight: math.unit(110, "lb"),
  29328. name: "Side",
  29329. image: {
  29330. source: "./media/characters/glitch-flux/side.svg",
  29331. extra: 997 / 805,
  29332. bottom: 20 / 1017
  29333. }
  29334. },
  29335. },
  29336. [
  29337. {
  29338. name: "Normal",
  29339. height: math.unit(2 + 3 / 12, "feet"),
  29340. default: true
  29341. },
  29342. ]
  29343. ))
  29344. characterMakers.push(() => makeCharacter(
  29345. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29346. {
  29347. front: {
  29348. height: math.unit(4, "meters"),
  29349. name: "Front",
  29350. image: {
  29351. source: "./media/characters/mid/front.svg",
  29352. extra: 507 / 476,
  29353. bottom: 17 / 524
  29354. }
  29355. },
  29356. back: {
  29357. height: math.unit(4, "meters"),
  29358. name: "Back",
  29359. image: {
  29360. source: "./media/characters/mid/back.svg",
  29361. extra: 519 / 487,
  29362. bottom: 7 / 526
  29363. }
  29364. },
  29365. stuck: {
  29366. height: math.unit(2.2, "meters"),
  29367. name: "Stuck",
  29368. image: {
  29369. source: "./media/characters/mid/stuck.svg",
  29370. extra: 1951 / 1869,
  29371. bottom: 88 / 2039
  29372. }
  29373. }
  29374. },
  29375. [
  29376. {
  29377. name: "Normal",
  29378. height: math.unit(4, "meters"),
  29379. default: true
  29380. },
  29381. {
  29382. name: "Big",
  29383. height: math.unit(10, "meters")
  29384. },
  29385. {
  29386. name: "Macro",
  29387. height: math.unit(800, "meters")
  29388. },
  29389. {
  29390. name: "Megamacro",
  29391. height: math.unit(100, "km")
  29392. },
  29393. {
  29394. name: "Overgrown",
  29395. height: math.unit(1, "parsec")
  29396. },
  29397. ]
  29398. ))
  29399. characterMakers.push(() => makeCharacter(
  29400. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29401. {
  29402. front: {
  29403. height: math.unit(2.5, "meters"),
  29404. weight: math.unit(225, "kg"),
  29405. name: "Front",
  29406. image: {
  29407. source: "./media/characters/iris/front.svg",
  29408. extra: 3348 / 3251,
  29409. bottom: 205 / 3553
  29410. }
  29411. },
  29412. maw: {
  29413. height: math.unit(0.56, "meter"),
  29414. name: "Maw",
  29415. image: {
  29416. source: "./media/characters/iris/maw.svg"
  29417. }
  29418. },
  29419. },
  29420. [
  29421. {
  29422. name: "Mewter cat",
  29423. height: math.unit(1.2, "meters")
  29424. },
  29425. {
  29426. name: "Minimacro",
  29427. height: math.unit(2.5, "meters"),
  29428. default: true
  29429. },
  29430. {
  29431. name: "Macro",
  29432. height: math.unit(180, "meters")
  29433. },
  29434. {
  29435. name: "Megamacro",
  29436. height: math.unit(2746, "meters")
  29437. },
  29438. ]
  29439. ))
  29440. characterMakers.push(() => makeCharacter(
  29441. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29442. {
  29443. front: {
  29444. height: math.unit(6, "feet"),
  29445. weight: math.unit(135, "lb"),
  29446. name: "Front",
  29447. image: {
  29448. source: "./media/characters/axel/front.svg",
  29449. extra: 908 / 908,
  29450. bottom: 58 / 966
  29451. }
  29452. },
  29453. side: {
  29454. height: math.unit(6, "feet"),
  29455. weight: math.unit(135, "lb"),
  29456. name: "Side",
  29457. image: {
  29458. source: "./media/characters/axel/side.svg",
  29459. extra: 958 / 958,
  29460. bottom: 11 / 969
  29461. }
  29462. },
  29463. back: {
  29464. height: math.unit(6, "feet"),
  29465. weight: math.unit(135, "lb"),
  29466. name: "Back",
  29467. image: {
  29468. source: "./media/characters/axel/back.svg",
  29469. extra: 887 / 887,
  29470. bottom: 34 / 921
  29471. }
  29472. },
  29473. head: {
  29474. height: math.unit(1.07, "feet"),
  29475. name: "Head",
  29476. image: {
  29477. source: "./media/characters/axel/head.svg"
  29478. }
  29479. },
  29480. beak: {
  29481. height: math.unit(1.4, "feet"),
  29482. name: "Beak",
  29483. image: {
  29484. source: "./media/characters/axel/beak.svg"
  29485. }
  29486. },
  29487. beakSide: {
  29488. height: math.unit(1.4, "feet"),
  29489. name: "Beak Side",
  29490. image: {
  29491. source: "./media/characters/axel/beak-side.svg"
  29492. }
  29493. },
  29494. sheath: {
  29495. height: math.unit(0.5, "feet"),
  29496. name: "Sheath",
  29497. image: {
  29498. source: "./media/characters/axel/sheath.svg"
  29499. }
  29500. },
  29501. dick: {
  29502. height: math.unit(0.98, "feet"),
  29503. name: "Dick",
  29504. image: {
  29505. source: "./media/characters/axel/dick.svg"
  29506. }
  29507. },
  29508. },
  29509. [
  29510. {
  29511. name: "Macro",
  29512. height: math.unit(68, "meters"),
  29513. default: true
  29514. },
  29515. ]
  29516. ))
  29517. characterMakers.push(() => makeCharacter(
  29518. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29519. {
  29520. front: {
  29521. height: math.unit(3.5, "meters"),
  29522. weight: math.unit(1200, "kg"),
  29523. name: "Front",
  29524. image: {
  29525. source: "./media/characters/joanna/front.svg",
  29526. extra: 1596 / 1488,
  29527. bottom: 29 / 1625
  29528. }
  29529. },
  29530. back: {
  29531. height: math.unit(3.5, "meters"),
  29532. weight: math.unit(1200, "kg"),
  29533. name: "Back",
  29534. image: {
  29535. source: "./media/characters/joanna/back.svg",
  29536. extra: 1594 / 1495,
  29537. bottom: 26 / 1620
  29538. }
  29539. },
  29540. frontShorts: {
  29541. height: math.unit(3.5, "meters"),
  29542. weight: math.unit(1200, "kg"),
  29543. name: "Front (Shorts)",
  29544. image: {
  29545. source: "./media/characters/joanna/front-shorts.svg",
  29546. extra: 1596 / 1488,
  29547. bottom: 29 / 1625
  29548. }
  29549. },
  29550. frontBiker: {
  29551. height: math.unit(3.5, "meters"),
  29552. weight: math.unit(1200, "kg"),
  29553. name: "Front (Biker)",
  29554. image: {
  29555. source: "./media/characters/joanna/front-biker.svg",
  29556. extra: 1596 / 1488,
  29557. bottom: 29 / 1625
  29558. }
  29559. },
  29560. backBiker: {
  29561. height: math.unit(3.5, "meters"),
  29562. weight: math.unit(1200, "kg"),
  29563. name: "Back (Biker)",
  29564. image: {
  29565. source: "./media/characters/joanna/back-biker.svg",
  29566. extra: 1594 / 1495,
  29567. bottom: 88 / 1682
  29568. }
  29569. },
  29570. bikeLeft: {
  29571. height: math.unit(2.4, "meters"),
  29572. weight: math.unit(1600, "kg"),
  29573. name: "Bike (Left)",
  29574. image: {
  29575. source: "./media/characters/joanna/bike-left.svg",
  29576. extra: 720 / 720,
  29577. bottom: 8 / 728
  29578. }
  29579. },
  29580. bikeRight: {
  29581. height: math.unit(2.4, "meters"),
  29582. weight: math.unit(1600, "kg"),
  29583. name: "Bike (Right)",
  29584. image: {
  29585. source: "./media/characters/joanna/bike-right.svg",
  29586. extra: 720 / 720,
  29587. bottom: 8 / 728
  29588. }
  29589. },
  29590. },
  29591. [
  29592. {
  29593. name: "Incognito",
  29594. height: math.unit(3.5, "meters")
  29595. },
  29596. {
  29597. name: "Casual Big",
  29598. height: math.unit(200, "meters")
  29599. },
  29600. {
  29601. name: "Macro",
  29602. height: math.unit(600, "meters")
  29603. },
  29604. {
  29605. name: "Original",
  29606. height: math.unit(20, "km"),
  29607. default: true
  29608. },
  29609. {
  29610. name: "Giga",
  29611. height: math.unit(400, "km")
  29612. },
  29613. {
  29614. name: "Lounging",
  29615. height: math.unit(1500, "km")
  29616. },
  29617. {
  29618. name: "Planetary",
  29619. height: math.unit(200000, "km")
  29620. },
  29621. ]
  29622. ))
  29623. characterMakers.push(() => makeCharacter(
  29624. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29625. {
  29626. front: {
  29627. height: math.unit(6, "feet"),
  29628. weight: math.unit(150, "lb"),
  29629. name: "Front",
  29630. image: {
  29631. source: "./media/characters/hugo-sigil/front.svg",
  29632. extra: 522 / 500,
  29633. bottom: 2 / 524
  29634. }
  29635. },
  29636. back: {
  29637. height: math.unit(6, "feet"),
  29638. weight: math.unit(150, "lb"),
  29639. name: "Back",
  29640. image: {
  29641. source: "./media/characters/hugo-sigil/back.svg",
  29642. extra: 519 / 495,
  29643. bottom: 5 / 524
  29644. }
  29645. },
  29646. maw: {
  29647. height: math.unit(1.4, "feet"),
  29648. weight: math.unit(150, "lb"),
  29649. name: "Maw",
  29650. image: {
  29651. source: "./media/characters/hugo-sigil/maw.svg"
  29652. }
  29653. },
  29654. feet: {
  29655. height: math.unit(1.56, "feet"),
  29656. weight: math.unit(150, "lb"),
  29657. name: "Feet",
  29658. image: {
  29659. source: "./media/characters/hugo-sigil/feet.svg",
  29660. extra: 177 / 177,
  29661. bottom: 12 / 189
  29662. }
  29663. },
  29664. },
  29665. [
  29666. {
  29667. name: "Normal",
  29668. height: math.unit(6, "feet")
  29669. },
  29670. {
  29671. name: "Macro",
  29672. height: math.unit(200, "feet"),
  29673. default: true
  29674. },
  29675. ]
  29676. ))
  29677. characterMakers.push(() => makeCharacter(
  29678. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  29679. {
  29680. front: {
  29681. height: math.unit(6, "feet"),
  29682. weight: math.unit(150, "lb"),
  29683. name: "Front",
  29684. image: {
  29685. source: "./media/characters/peri/front.svg",
  29686. extra: 2354 / 2233,
  29687. bottom: 49 / 2403
  29688. }
  29689. },
  29690. },
  29691. [
  29692. {
  29693. name: "Really Small",
  29694. height: math.unit(1, "nm")
  29695. },
  29696. {
  29697. name: "Micro",
  29698. height: math.unit(4, "inches")
  29699. },
  29700. {
  29701. name: "Normal",
  29702. height: math.unit(7, "inches"),
  29703. default: true
  29704. },
  29705. {
  29706. name: "Macro",
  29707. height: math.unit(400, "feet")
  29708. },
  29709. {
  29710. name: "Megamacro",
  29711. height: math.unit(100, "miles")
  29712. },
  29713. ]
  29714. ))
  29715. characterMakers.push(() => makeCharacter(
  29716. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  29717. {
  29718. frontSlim: {
  29719. height: math.unit(7, "feet"),
  29720. name: "Front (Slim)",
  29721. image: {
  29722. source: "./media/characters/issilora/front-slim.svg",
  29723. extra: 529 / 449,
  29724. bottom: 53 / 582
  29725. }
  29726. },
  29727. sideSlim: {
  29728. height: math.unit(7, "feet"),
  29729. name: "Side (Slim)",
  29730. image: {
  29731. source: "./media/characters/issilora/side-slim.svg",
  29732. extra: 570 / 480,
  29733. bottom: 30 / 600
  29734. }
  29735. },
  29736. backSlim: {
  29737. height: math.unit(7, "feet"),
  29738. name: "Back (Slim)",
  29739. image: {
  29740. source: "./media/characters/issilora/back-slim.svg",
  29741. extra: 537 / 455,
  29742. bottom: 46 / 583
  29743. }
  29744. },
  29745. frontBuff: {
  29746. height: math.unit(7, "feet"),
  29747. name: "Front (Buff)",
  29748. image: {
  29749. source: "./media/characters/issilora/front-buff.svg",
  29750. extra: 2310 / 2035,
  29751. bottom: 335 / 2645
  29752. }
  29753. },
  29754. head: {
  29755. height: math.unit(1.94, "feet"),
  29756. name: "Head",
  29757. image: {
  29758. source: "./media/characters/issilora/head.svg"
  29759. }
  29760. },
  29761. },
  29762. [
  29763. {
  29764. name: "Minimum",
  29765. height: math.unit(7, "feet")
  29766. },
  29767. {
  29768. name: "Comfortable",
  29769. height: math.unit(17, "feet")
  29770. },
  29771. {
  29772. name: "Fun Size",
  29773. height: math.unit(47, "feet")
  29774. },
  29775. {
  29776. name: "Natural Macro",
  29777. height: math.unit(137, "feet"),
  29778. default: true
  29779. },
  29780. {
  29781. name: "Maximum Kaiju",
  29782. height: math.unit(397, "feet")
  29783. },
  29784. ]
  29785. ))
  29786. characterMakers.push(() => makeCharacter(
  29787. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  29788. {
  29789. front: {
  29790. height: math.unit(50 + 9/12, "feet"),
  29791. weight: math.unit(32.8, "tons"),
  29792. name: "Front",
  29793. image: {
  29794. source: "./media/characters/irb'iiritaahn/front.svg",
  29795. extra: 1878/1826,
  29796. bottom: 326/2204
  29797. }
  29798. },
  29799. back: {
  29800. height: math.unit(50 + 9/12, "feet"),
  29801. weight: math.unit(32.8, "tons"),
  29802. name: "Back",
  29803. image: {
  29804. source: "./media/characters/irb'iiritaahn/back.svg",
  29805. extra: 2052/2018,
  29806. bottom: 152/2204
  29807. }
  29808. },
  29809. head: {
  29810. height: math.unit(12.86, "feet"),
  29811. name: "Head",
  29812. image: {
  29813. source: "./media/characters/irb'iiritaahn/head.svg"
  29814. }
  29815. },
  29816. maw: {
  29817. height: math.unit(9.66, "feet"),
  29818. name: "Maw",
  29819. image: {
  29820. source: "./media/characters/irb'iiritaahn/maw.svg"
  29821. }
  29822. },
  29823. frontDick: {
  29824. height: math.unit(8.78461, "feet"),
  29825. name: "Front Dick",
  29826. image: {
  29827. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  29828. }
  29829. },
  29830. rearDick: {
  29831. height: math.unit(8.78461, "feet"),
  29832. name: "Rear Dick",
  29833. image: {
  29834. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  29835. }
  29836. },
  29837. rearDickUnfolded: {
  29838. height: math.unit(8.78, "feet"),
  29839. name: "Rear Dick (Unfolded)",
  29840. image: {
  29841. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  29842. }
  29843. },
  29844. wings: {
  29845. height: math.unit(43, "feet"),
  29846. name: "Wings",
  29847. image: {
  29848. source: "./media/characters/irb'iiritaahn/wings.svg"
  29849. }
  29850. },
  29851. },
  29852. [
  29853. {
  29854. name: "Macro",
  29855. height: math.unit(50 + 9/12, "feet"),
  29856. default: true
  29857. },
  29858. ]
  29859. ))
  29860. characterMakers.push(() => makeCharacter(
  29861. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  29862. {
  29863. front: {
  29864. height: math.unit(205, "cm"),
  29865. weight: math.unit(102, "kg"),
  29866. name: "Front",
  29867. image: {
  29868. source: "./media/characters/irbisgreif/front.svg",
  29869. extra: 785/706,
  29870. bottom: 13/798
  29871. }
  29872. },
  29873. back: {
  29874. height: math.unit(205, "cm"),
  29875. weight: math.unit(102, "kg"),
  29876. name: "Back",
  29877. image: {
  29878. source: "./media/characters/irbisgreif/back.svg",
  29879. extra: 713/701,
  29880. bottom: 26/739
  29881. }
  29882. },
  29883. frontDressed: {
  29884. height: math.unit(216, "cm"),
  29885. weight: math.unit(102, "kg"),
  29886. name: "Front-dressed",
  29887. image: {
  29888. source: "./media/characters/irbisgreif/front-dressed.svg",
  29889. extra: 902/776,
  29890. bottom: 14/916
  29891. }
  29892. },
  29893. sideDressed: {
  29894. height: math.unit(195, "cm"),
  29895. weight: math.unit(102, "kg"),
  29896. name: "Side-dressed",
  29897. image: {
  29898. source: "./media/characters/irbisgreif/side-dressed.svg",
  29899. extra: 788/688,
  29900. bottom: 21/809
  29901. }
  29902. },
  29903. backDressed: {
  29904. height: math.unit(216, "cm"),
  29905. weight: math.unit(102, "kg"),
  29906. name: "Back-dressed",
  29907. image: {
  29908. source: "./media/characters/irbisgreif/back-dressed.svg",
  29909. extra: 901/783,
  29910. bottom: 10/911
  29911. }
  29912. },
  29913. dick: {
  29914. height: math.unit(0.49, "feet"),
  29915. name: "Dick",
  29916. image: {
  29917. source: "./media/characters/irbisgreif/dick.svg"
  29918. }
  29919. },
  29920. wingTop: {
  29921. height: math.unit(1.93 , "feet"),
  29922. name: "Wing-top",
  29923. image: {
  29924. source: "./media/characters/irbisgreif/wing-top.svg"
  29925. }
  29926. },
  29927. wingBottom: {
  29928. height: math.unit(1.93 , "feet"),
  29929. name: "Wing-bottom",
  29930. image: {
  29931. source: "./media/characters/irbisgreif/wing-bottom.svg"
  29932. }
  29933. },
  29934. },
  29935. [
  29936. {
  29937. name: "Normal",
  29938. height: math.unit(216, "cm"),
  29939. default: true
  29940. },
  29941. ]
  29942. ))
  29943. characterMakers.push(() => makeCharacter(
  29944. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  29945. {
  29946. front: {
  29947. height: math.unit(6, "feet"),
  29948. weight: math.unit(150, "lb"),
  29949. name: "Front",
  29950. image: {
  29951. source: "./media/characters/pride/front.svg",
  29952. extra: 1299/1230,
  29953. bottom: 18/1317
  29954. }
  29955. },
  29956. },
  29957. [
  29958. {
  29959. name: "Normal",
  29960. height: math.unit(7, "feet")
  29961. },
  29962. {
  29963. name: "Mini-macro",
  29964. height: math.unit(11, "feet")
  29965. },
  29966. {
  29967. name: "Macro",
  29968. height: math.unit(15, "meters"),
  29969. default: true
  29970. },
  29971. {
  29972. name: "Macro+",
  29973. height: math.unit(40, "meters")
  29974. },
  29975. ]
  29976. ))
  29977. characterMakers.push(() => makeCharacter(
  29978. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  29979. {
  29980. front: {
  29981. height: math.unit(4 + 2 / 12, "feet"),
  29982. weight: math.unit(95, "lb"),
  29983. name: "Front",
  29984. image: {
  29985. source: "./media/characters/vaelophis-nyx/front.svg",
  29986. extra: 2532/2330,
  29987. bottom: 0/2532
  29988. }
  29989. },
  29990. back: {
  29991. height: math.unit(4 + 2 / 12, "feet"),
  29992. weight: math.unit(95, "lb"),
  29993. name: "Back",
  29994. image: {
  29995. source: "./media/characters/vaelophis-nyx/back.svg",
  29996. extra: 2484/2361,
  29997. bottom: 0/2484
  29998. }
  29999. },
  30000. feralSide: {
  30001. height: math.unit(2 + 1/12, "feet"),
  30002. weight: math.unit(20, "lb"),
  30003. name: "Feral (Side)",
  30004. image: {
  30005. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30006. extra: 1721/1581,
  30007. bottom: 70/1791
  30008. }
  30009. },
  30010. feralLazing: {
  30011. height: math.unit(1.08, "feet"),
  30012. weight: math.unit(20, "lb"),
  30013. name: "Feral (Lazing)",
  30014. image: {
  30015. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30016. extra: 822/822,
  30017. bottom: 248/1070
  30018. }
  30019. },
  30020. ear: {
  30021. height: math.unit(0.416, "feet"),
  30022. name: "Ear",
  30023. image: {
  30024. source: "./media/characters/vaelophis-nyx/ear.svg"
  30025. }
  30026. },
  30027. eye: {
  30028. height: math.unit(0.0748, "feet"),
  30029. name: "Eye",
  30030. image: {
  30031. source: "./media/characters/vaelophis-nyx/eye.svg"
  30032. }
  30033. },
  30034. mouth: {
  30035. height: math.unit(0.378, "feet"),
  30036. name: "Mouth",
  30037. image: {
  30038. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30039. }
  30040. },
  30041. spade: {
  30042. height: math.unit(0.55, "feet"),
  30043. name: "Spade",
  30044. image: {
  30045. source: "./media/characters/vaelophis-nyx/spade.svg"
  30046. }
  30047. },
  30048. },
  30049. [
  30050. {
  30051. name: "Normal",
  30052. height: math.unit(4 + 2/12, "feet"),
  30053. default: true
  30054. },
  30055. ]
  30056. ))
  30057. characterMakers.push(() => makeCharacter(
  30058. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30059. {
  30060. front: {
  30061. height: math.unit(7, "feet"),
  30062. weight: math.unit(231, "lb"),
  30063. name: "Front",
  30064. image: {
  30065. source: "./media/characters/flux/front.svg",
  30066. extra: 919/871,
  30067. bottom: 0/919
  30068. }
  30069. },
  30070. back: {
  30071. height: math.unit(7, "feet"),
  30072. weight: math.unit(231, "lb"),
  30073. name: "Back",
  30074. image: {
  30075. source: "./media/characters/flux/back.svg",
  30076. extra: 1040/992,
  30077. bottom: 0/1040
  30078. }
  30079. },
  30080. frontDressed: {
  30081. height: math.unit(7, "feet"),
  30082. weight: math.unit(231, "lb"),
  30083. name: "Front (Dressed)",
  30084. image: {
  30085. source: "./media/characters/flux/front-dressed.svg",
  30086. extra: 919/871,
  30087. bottom: 0/919
  30088. }
  30089. },
  30090. feralSide: {
  30091. height: math.unit(5, "feet"),
  30092. weight: math.unit(150, "lb"),
  30093. name: "Feral (Side)",
  30094. image: {
  30095. source: "./media/characters/flux/feral-side.svg",
  30096. extra: 598/528,
  30097. bottom: 28/626
  30098. }
  30099. },
  30100. head: {
  30101. height: math.unit(1.585, "feet"),
  30102. name: "Head",
  30103. image: {
  30104. source: "./media/characters/flux/head.svg"
  30105. }
  30106. },
  30107. headSide: {
  30108. height: math.unit(1.74, "feet"),
  30109. name: "Head (Side)",
  30110. image: {
  30111. source: "./media/characters/flux/head-side.svg"
  30112. }
  30113. },
  30114. headSideFire: {
  30115. height: math.unit(1.76, "feet"),
  30116. name: "Head (Side, Fire)",
  30117. image: {
  30118. source: "./media/characters/flux/head-side-fire.svg"
  30119. }
  30120. },
  30121. },
  30122. [
  30123. {
  30124. name: "Normal",
  30125. height: math.unit(7, "feet"),
  30126. default: true
  30127. },
  30128. ]
  30129. ))
  30130. characterMakers.push(() => makeCharacter(
  30131. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30132. {
  30133. front: {
  30134. height: math.unit(9, "feet"),
  30135. weight: math.unit(1012, "lb"),
  30136. name: "Front",
  30137. image: {
  30138. source: "./media/characters/ulfra-lupae/front.svg",
  30139. extra: 1083/1011,
  30140. bottom: 67/1150
  30141. }
  30142. },
  30143. },
  30144. [
  30145. {
  30146. name: "Micro",
  30147. height: math.unit(6, "inches")
  30148. },
  30149. {
  30150. name: "Socializing",
  30151. height: math.unit(6 + 5/12, "feet")
  30152. },
  30153. {
  30154. name: "Normal",
  30155. height: math.unit(9, "feet"),
  30156. default: true
  30157. },
  30158. {
  30159. name: "Macro",
  30160. height: math.unit(150, "feet")
  30161. },
  30162. ]
  30163. ))
  30164. characterMakers.push(() => makeCharacter(
  30165. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30166. {
  30167. front: {
  30168. height: math.unit(5 + 2/12, "feet"),
  30169. weight: math.unit(120, "lb"),
  30170. name: "Front",
  30171. image: {
  30172. source: "./media/characters/timber/front.svg",
  30173. extra: 2814/2705,
  30174. bottom: 181/2995
  30175. }
  30176. },
  30177. },
  30178. [
  30179. {
  30180. name: "Normal",
  30181. height: math.unit(5 + 2/12, "feet"),
  30182. default: true
  30183. },
  30184. ]
  30185. ))
  30186. characterMakers.push(() => makeCharacter(
  30187. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30188. {
  30189. front: {
  30190. height: math.unit(5 + 7/12, "feet"),
  30191. weight: math.unit(220, "lb"),
  30192. name: "Front",
  30193. image: {
  30194. source: "./media/characters/nicki/front.svg",
  30195. extra: 453/419,
  30196. bottom: 7/460
  30197. }
  30198. },
  30199. frontAlt: {
  30200. height: math.unit(5 + 7/12, "feet"),
  30201. weight: math.unit(220, "lb"),
  30202. name: "Front-alt",
  30203. image: {
  30204. source: "./media/characters/nicki/front-alt.svg",
  30205. extra: 435/411,
  30206. bottom: 12/447
  30207. }
  30208. },
  30209. back: {
  30210. height: math.unit(5 + 7/12, "feet"),
  30211. weight: math.unit(220, "lb"),
  30212. name: "Back",
  30213. image: {
  30214. source: "./media/characters/nicki/back.svg",
  30215. extra: 440/413,
  30216. bottom: 19/459
  30217. }
  30218. },
  30219. frontNsfw: {
  30220. height: math.unit(5 + 7/12, "feet"),
  30221. weight: math.unit(220, "lb"),
  30222. name: "Front (NSFW)",
  30223. image: {
  30224. source: "./media/characters/nicki/front-nsfw.svg",
  30225. extra: 453/419,
  30226. bottom: 7/460
  30227. }
  30228. },
  30229. frontNsfwAlt: {
  30230. height: math.unit(5 + 7/12, "feet"),
  30231. weight: math.unit(220, "lb"),
  30232. name: "Front (Alt, NSFW)",
  30233. image: {
  30234. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30235. extra: 435/411,
  30236. bottom: 12/447
  30237. }
  30238. },
  30239. backNsfw: {
  30240. height: math.unit(5 + 7/12, "feet"),
  30241. weight: math.unit(220, "lb"),
  30242. name: "Back (NSFW)",
  30243. image: {
  30244. source: "./media/characters/nicki/back-nsfw.svg",
  30245. extra: 440/413,
  30246. bottom: 19/459
  30247. }
  30248. },
  30249. head: {
  30250. height: math.unit(2.1, "feet"),
  30251. name: "Head",
  30252. image: {
  30253. source: "./media/characters/nicki/head.svg"
  30254. }
  30255. },
  30256. paw: {
  30257. height: math.unit(1.88, "feet"),
  30258. name: "Paw",
  30259. image: {
  30260. source: "./media/characters/nicki/paw.svg"
  30261. }
  30262. },
  30263. },
  30264. [
  30265. {
  30266. name: "Normal",
  30267. height: math.unit(5 + 7/12, "feet"),
  30268. default: true
  30269. },
  30270. ]
  30271. ))
  30272. characterMakers.push(() => makeCharacter(
  30273. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30274. {
  30275. front: {
  30276. height: math.unit(7 + 10/12, "feet"),
  30277. weight: math.unit(3.5, "tons"),
  30278. name: "Front",
  30279. image: {
  30280. source: "./media/characters/lee/front.svg",
  30281. extra: 1773/1615,
  30282. bottom: 86/1859
  30283. }
  30284. },
  30285. hand: {
  30286. height: math.unit(1.78, "feet"),
  30287. name: "Hand",
  30288. image: {
  30289. source: "./media/characters/lee/hand.svg"
  30290. }
  30291. },
  30292. maw: {
  30293. height: math.unit(1.18, "feet"),
  30294. name: "Maw",
  30295. image: {
  30296. source: "./media/characters/lee/maw.svg"
  30297. }
  30298. },
  30299. },
  30300. [
  30301. {
  30302. name: "Normal",
  30303. height: math.unit(7 + 10/12, "feet"),
  30304. default: true
  30305. },
  30306. ]
  30307. ))
  30308. characterMakers.push(() => makeCharacter(
  30309. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30310. {
  30311. front: {
  30312. height: math.unit(9, "feet"),
  30313. name: "Front",
  30314. image: {
  30315. source: "./media/characters/guti/front.svg",
  30316. extra: 4551/4355,
  30317. bottom: 123/4674
  30318. }
  30319. },
  30320. tongue: {
  30321. height: math.unit(1, "feet"),
  30322. name: "Tongue",
  30323. image: {
  30324. source: "./media/characters/guti/tongue.svg"
  30325. }
  30326. },
  30327. paw: {
  30328. height: math.unit(1.18, "feet"),
  30329. name: "Paw",
  30330. image: {
  30331. source: "./media/characters/guti/paw.svg"
  30332. }
  30333. },
  30334. },
  30335. [
  30336. {
  30337. name: "Normal",
  30338. height: math.unit(9, "feet"),
  30339. default: true
  30340. },
  30341. ]
  30342. ))
  30343. characterMakers.push(() => makeCharacter(
  30344. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30345. {
  30346. side: {
  30347. height: math.unit(5, "meters"),
  30348. name: "Side",
  30349. image: {
  30350. source: "./media/characters/vesper/side.svg",
  30351. extra: 1605/1518,
  30352. bottom: 0/1605
  30353. }
  30354. },
  30355. },
  30356. [
  30357. {
  30358. name: "Small",
  30359. height: math.unit(5, "meters")
  30360. },
  30361. {
  30362. name: "Sage",
  30363. height: math.unit(100, "meters"),
  30364. default: true
  30365. },
  30366. {
  30367. name: "Fun Size",
  30368. height: math.unit(600, "meters")
  30369. },
  30370. {
  30371. name: "Goddess",
  30372. height: math.unit(20000, "km")
  30373. },
  30374. {
  30375. name: "Maximum",
  30376. height: math.unit(5, "galaxies")
  30377. },
  30378. ]
  30379. ))
  30380. characterMakers.push(() => makeCharacter(
  30381. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30382. {
  30383. front: {
  30384. height: math.unit(6 + 3/12, "feet"),
  30385. weight: math.unit(190, "lb"),
  30386. name: "Front",
  30387. image: {
  30388. source: "./media/characters/gawain/front.svg",
  30389. extra: 2222/2139,
  30390. bottom: 90/2312
  30391. }
  30392. },
  30393. back: {
  30394. height: math.unit(6 + 3/12, "feet"),
  30395. weight: math.unit(190, "lb"),
  30396. name: "Back",
  30397. image: {
  30398. source: "./media/characters/gawain/back.svg",
  30399. extra: 2199/2111,
  30400. bottom: 73/2272
  30401. }
  30402. },
  30403. },
  30404. [
  30405. {
  30406. name: "Normal",
  30407. height: math.unit(6 + 3/12, "feet"),
  30408. default: true
  30409. },
  30410. ]
  30411. ))
  30412. characterMakers.push(() => makeCharacter(
  30413. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30414. {
  30415. side: {
  30416. height: math.unit(3.5, "meters"),
  30417. weight: math.unit(16000, "lb"),
  30418. name: "Side",
  30419. image: {
  30420. source: "./media/characters/dascalti/side.svg",
  30421. extra: 392/273,
  30422. bottom: 47/439
  30423. }
  30424. },
  30425. breath: {
  30426. height: math.unit(7.4, "feet"),
  30427. name: "Breath",
  30428. image: {
  30429. source: "./media/characters/dascalti/breath.svg"
  30430. }
  30431. },
  30432. fed: {
  30433. height: math.unit(3.6, "meters"),
  30434. weight: math.unit(16000, "lb"),
  30435. name: "Fed",
  30436. image: {
  30437. source: "./media/characters/dascalti/fed.svg",
  30438. extra: 1419/820,
  30439. bottom: 95/1514
  30440. }
  30441. },
  30442. },
  30443. [
  30444. {
  30445. name: "Normal",
  30446. height: math.unit(3.5, "meters"),
  30447. default: true
  30448. },
  30449. ]
  30450. ))
  30451. characterMakers.push(() => makeCharacter(
  30452. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30453. {
  30454. front: {
  30455. height: math.unit(3 + 5/12, "feet"),
  30456. name: "Front",
  30457. image: {
  30458. source: "./media/characters/mauve/front.svg",
  30459. extra: 1126/1033,
  30460. bottom: 65/1191
  30461. }
  30462. },
  30463. side: {
  30464. height: math.unit(3 + 5/12, "feet"),
  30465. name: "Side",
  30466. image: {
  30467. source: "./media/characters/mauve/side.svg",
  30468. extra: 1089/1001,
  30469. bottom: 29/1118
  30470. }
  30471. },
  30472. back: {
  30473. height: math.unit(3 + 5/12, "feet"),
  30474. name: "Back",
  30475. image: {
  30476. source: "./media/characters/mauve/back.svg",
  30477. extra: 1173/1053,
  30478. bottom: 109/1282
  30479. }
  30480. },
  30481. },
  30482. [
  30483. {
  30484. name: "Normal",
  30485. height: math.unit(3 + 5/12, "feet"),
  30486. default: true
  30487. },
  30488. ]
  30489. ))
  30490. characterMakers.push(() => makeCharacter(
  30491. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30492. {
  30493. front: {
  30494. height: math.unit(6 + 3/12, "feet"),
  30495. weight: math.unit(430, "lb"),
  30496. name: "Front",
  30497. image: {
  30498. source: "./media/characters/carlos/front.svg",
  30499. extra: 1964/1913,
  30500. bottom: 70/2034
  30501. }
  30502. },
  30503. },
  30504. [
  30505. {
  30506. name: "Normal",
  30507. height: math.unit(6 + 3/12, "feet"),
  30508. default: true
  30509. },
  30510. ]
  30511. ))
  30512. characterMakers.push(() => makeCharacter(
  30513. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30514. {
  30515. back: {
  30516. height: math.unit(5 + 10/12, "feet"),
  30517. weight: math.unit(200, "lb"),
  30518. name: "Back",
  30519. image: {
  30520. source: "./media/characters/jax/back.svg",
  30521. extra: 764/739,
  30522. bottom: 25/789
  30523. }
  30524. },
  30525. },
  30526. [
  30527. {
  30528. name: "Normal",
  30529. height: math.unit(5 + 10/12, "feet"),
  30530. default: true
  30531. },
  30532. ]
  30533. ))
  30534. characterMakers.push(() => makeCharacter(
  30535. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30536. {
  30537. front: {
  30538. height: math.unit(8, "feet"),
  30539. weight: math.unit(250, "lb"),
  30540. name: "Front",
  30541. image: {
  30542. source: "./media/characters/eikthynir/front.svg",
  30543. extra: 1332/1166,
  30544. bottom: 82/1414
  30545. }
  30546. },
  30547. back: {
  30548. height: math.unit(8, "feet"),
  30549. weight: math.unit(250, "lb"),
  30550. name: "Back",
  30551. image: {
  30552. source: "./media/characters/eikthynir/back.svg",
  30553. extra: 1342/1190,
  30554. bottom: 19/1361
  30555. }
  30556. },
  30557. dick: {
  30558. height: math.unit(2.35, "feet"),
  30559. name: "Dick",
  30560. image: {
  30561. source: "./media/characters/eikthynir/dick.svg"
  30562. }
  30563. },
  30564. },
  30565. [
  30566. {
  30567. name: "Normal",
  30568. height: math.unit(8, "feet"),
  30569. default: true
  30570. },
  30571. ]
  30572. ))
  30573. characterMakers.push(() => makeCharacter(
  30574. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30575. {
  30576. front: {
  30577. height: math.unit(99, "meters"),
  30578. weight: math.unit(13000, "tons"),
  30579. name: "Front",
  30580. image: {
  30581. source: "./media/characters/zlmos/front.svg",
  30582. extra: 2202/1992,
  30583. bottom: 315/2517
  30584. }
  30585. },
  30586. },
  30587. [
  30588. {
  30589. name: "Macro",
  30590. height: math.unit(99, "meters"),
  30591. default: true
  30592. },
  30593. ]
  30594. ))
  30595. characterMakers.push(() => makeCharacter(
  30596. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30597. {
  30598. front: {
  30599. height: math.unit(6 + 5/12, "feet"),
  30600. name: "Front",
  30601. image: {
  30602. source: "./media/characters/purri/front.svg",
  30603. extra: 1698/1610,
  30604. bottom: 32/1730
  30605. }
  30606. },
  30607. frontAlt: {
  30608. height: math.unit(6 + 5/12, "feet"),
  30609. name: "Front (Alt)",
  30610. image: {
  30611. source: "./media/characters/purri/front-alt.svg",
  30612. extra: 450/420,
  30613. bottom: 26/476
  30614. }
  30615. },
  30616. boots: {
  30617. height: math.unit(5.5, "feet"),
  30618. name: "Boots",
  30619. image: {
  30620. source: "./media/characters/purri/boots.svg",
  30621. extra: 905/853,
  30622. bottom: 18/923
  30623. }
  30624. },
  30625. lying: {
  30626. height: math.unit(2, "feet"),
  30627. name: "Lying",
  30628. image: {
  30629. source: "./media/characters/purri/lying.svg",
  30630. extra: 940/843,
  30631. bottom: 146/1086
  30632. }
  30633. },
  30634. devious: {
  30635. height: math.unit(1.77, "feet"),
  30636. name: "Devious",
  30637. image: {
  30638. source: "./media/characters/purri/devious.svg",
  30639. extra: 1440/1155,
  30640. bottom: 147/1587
  30641. }
  30642. },
  30643. bean: {
  30644. height: math.unit(1.94, "feet"),
  30645. name: "Bean",
  30646. image: {
  30647. source: "./media/characters/purri/bean.svg"
  30648. }
  30649. },
  30650. },
  30651. [
  30652. {
  30653. name: "Micro",
  30654. height: math.unit(1, "mm")
  30655. },
  30656. {
  30657. name: "Normal",
  30658. height: math.unit(6 + 5/12, "feet"),
  30659. default: true
  30660. },
  30661. {
  30662. name: "Macro :3c",
  30663. height: math.unit(2, "miles")
  30664. },
  30665. ]
  30666. ))
  30667. characterMakers.push(() => makeCharacter(
  30668. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  30669. {
  30670. front: {
  30671. height: math.unit(6 + 2/12, "feet"),
  30672. weight: math.unit(250, "lb"),
  30673. name: "Front",
  30674. image: {
  30675. source: "./media/characters/moonlight/front.svg",
  30676. extra: 1044/908,
  30677. bottom: 56/1100
  30678. }
  30679. },
  30680. paw: {
  30681. height: math.unit(1, "feet"),
  30682. name: "Paw",
  30683. image: {
  30684. source: "./media/characters/moonlight/paw.svg"
  30685. }
  30686. },
  30687. paws: {
  30688. height: math.unit(0.98, "feet"),
  30689. name: "Paws",
  30690. image: {
  30691. source: "./media/characters/moonlight/paws.svg",
  30692. extra: 939/939,
  30693. bottom: 50/989
  30694. }
  30695. },
  30696. mouth: {
  30697. height: math.unit(0.48, "feet"),
  30698. name: "Mouth",
  30699. image: {
  30700. source: "./media/characters/moonlight/mouth.svg"
  30701. }
  30702. },
  30703. },
  30704. [
  30705. {
  30706. name: "Normal",
  30707. height: math.unit(6 + 2/12, "feet"),
  30708. default: true
  30709. },
  30710. {
  30711. name: "Macro",
  30712. height: math.unit(300, "feet")
  30713. },
  30714. {
  30715. name: "Macro+",
  30716. height: math.unit(1, "mile")
  30717. },
  30718. {
  30719. name: "Mt. Moon",
  30720. height: math.unit(5, "miles")
  30721. },
  30722. {
  30723. name: "Megamacro",
  30724. height: math.unit(15, "miles")
  30725. },
  30726. ]
  30727. ))
  30728. characterMakers.push(() => makeCharacter(
  30729. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  30730. {
  30731. back: {
  30732. height: math.unit(6, "feet"),
  30733. weight: math.unit(150, "lb"),
  30734. name: "Back",
  30735. image: {
  30736. source: "./media/characters/sylen/back.svg",
  30737. extra: 1335/1273,
  30738. bottom: 107/1442
  30739. }
  30740. },
  30741. },
  30742. [
  30743. {
  30744. name: "Normal",
  30745. height: math.unit(5 + 5/12, "feet")
  30746. },
  30747. {
  30748. name: "Megamacro",
  30749. height: math.unit(3, "miles"),
  30750. default: true
  30751. },
  30752. ]
  30753. ))
  30754. characterMakers.push(() => makeCharacter(
  30755. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  30756. {
  30757. front: {
  30758. height: math.unit(6, "feet"),
  30759. weight: math.unit(190, "lb"),
  30760. name: "Front",
  30761. image: {
  30762. source: "./media/characters/huttser/front.svg",
  30763. extra: 1152/1058,
  30764. bottom: 23/1175
  30765. }
  30766. },
  30767. side: {
  30768. height: math.unit(6, "feet"),
  30769. weight: math.unit(190, "lb"),
  30770. name: "Side",
  30771. image: {
  30772. source: "./media/characters/huttser/side.svg",
  30773. extra: 1174/1065,
  30774. bottom: 18/1192
  30775. }
  30776. },
  30777. back: {
  30778. height: math.unit(6, "feet"),
  30779. weight: math.unit(190, "lb"),
  30780. name: "Back",
  30781. image: {
  30782. source: "./media/characters/huttser/back.svg",
  30783. extra: 1158/1056,
  30784. bottom: 12/1170
  30785. }
  30786. },
  30787. },
  30788. [
  30789. ]
  30790. ))
  30791. characterMakers.push(() => makeCharacter(
  30792. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  30793. {
  30794. side: {
  30795. height: math.unit(12 + 9/12, "feet"),
  30796. weight: math.unit(15000, "lb"),
  30797. name: "Side",
  30798. image: {
  30799. source: "./media/characters/faan/side.svg",
  30800. extra: 2747/2697,
  30801. bottom: 0/2747
  30802. }
  30803. },
  30804. front: {
  30805. height: math.unit(12 + 9/12, "feet"),
  30806. weight: math.unit(15000, "lb"),
  30807. name: "Front",
  30808. image: {
  30809. source: "./media/characters/faan/front.svg",
  30810. extra: 607/571,
  30811. bottom: 24/631
  30812. }
  30813. },
  30814. head: {
  30815. height: math.unit(2.85, "feet"),
  30816. name: "Head",
  30817. image: {
  30818. source: "./media/characters/faan/head.svg"
  30819. }
  30820. },
  30821. headAlt: {
  30822. height: math.unit(3.13, "feet"),
  30823. name: "Head-alt",
  30824. image: {
  30825. source: "./media/characters/faan/head-alt.svg"
  30826. }
  30827. },
  30828. },
  30829. [
  30830. {
  30831. name: "Normal",
  30832. height: math.unit(12 + 9/12, "feet"),
  30833. default: true
  30834. },
  30835. ]
  30836. ))
  30837. characterMakers.push(() => makeCharacter(
  30838. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  30839. {
  30840. front: {
  30841. height: math.unit(6, "feet"),
  30842. weight: math.unit(300, "lb"),
  30843. name: "Front",
  30844. image: {
  30845. source: "./media/characters/tanio/front.svg",
  30846. extra: 711/673,
  30847. bottom: 25/736
  30848. }
  30849. },
  30850. },
  30851. [
  30852. {
  30853. name: "Normal",
  30854. height: math.unit(6, "feet"),
  30855. default: true
  30856. },
  30857. ]
  30858. ))
  30859. characterMakers.push(() => makeCharacter(
  30860. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  30861. {
  30862. front: {
  30863. height: math.unit(3, "inches"),
  30864. name: "Front",
  30865. image: {
  30866. source: "./media/characters/noboru/front.svg",
  30867. extra: 1039/932,
  30868. bottom: 18/1057
  30869. }
  30870. },
  30871. },
  30872. [
  30873. {
  30874. name: "Micro",
  30875. height: math.unit(3, "inches"),
  30876. default: true
  30877. },
  30878. ]
  30879. ))
  30880. characterMakers.push(() => makeCharacter(
  30881. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  30882. {
  30883. front: {
  30884. height: math.unit(1.85, "meters"),
  30885. weight: math.unit(80, "kg"),
  30886. name: "Front",
  30887. image: {
  30888. source: "./media/characters/daniel-barrett/front.svg",
  30889. extra: 355/337,
  30890. bottom: 9/364
  30891. }
  30892. },
  30893. },
  30894. [
  30895. {
  30896. name: "Pico",
  30897. height: math.unit(0.0433, "mm")
  30898. },
  30899. {
  30900. name: "Nano",
  30901. height: math.unit(1.5, "mm")
  30902. },
  30903. {
  30904. name: "Micro",
  30905. height: math.unit(5.3, "cm"),
  30906. default: true
  30907. },
  30908. {
  30909. name: "Normal",
  30910. height: math.unit(1.85, "meters")
  30911. },
  30912. {
  30913. name: "Macro",
  30914. height: math.unit(64.7, "meters")
  30915. },
  30916. {
  30917. name: "Megamacro",
  30918. height: math.unit(2.26, "km")
  30919. },
  30920. {
  30921. name: "Gigamacro",
  30922. height: math.unit(79, "km")
  30923. },
  30924. {
  30925. name: "Teramacro",
  30926. height: math.unit(2765, "km")
  30927. },
  30928. {
  30929. name: "Petamacro",
  30930. height: math.unit(96678, "km")
  30931. },
  30932. ]
  30933. ))
  30934. characterMakers.push(() => makeCharacter(
  30935. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  30936. {
  30937. front: {
  30938. height: math.unit(30, "meters"),
  30939. weight: math.unit(400, "tons"),
  30940. name: "Front",
  30941. image: {
  30942. source: "./media/characters/zeel/front.svg",
  30943. extra: 2599/2599,
  30944. bottom: 226/2825
  30945. }
  30946. },
  30947. },
  30948. [
  30949. {
  30950. name: "Macro",
  30951. height: math.unit(30, "meters"),
  30952. default: true
  30953. },
  30954. ]
  30955. ))
  30956. characterMakers.push(() => makeCharacter(
  30957. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  30958. {
  30959. front: {
  30960. height: math.unit(5 + 7/12, "feet"),
  30961. weight: math.unit(68, "kg"),
  30962. name: "Front",
  30963. image: {
  30964. source: "./media/characters/tarn/front.svg",
  30965. extra: 3517/3220,
  30966. bottom: 91/3608
  30967. }
  30968. },
  30969. back: {
  30970. height: math.unit(5 + 7/12, "feet"),
  30971. weight: math.unit(68, "kg"),
  30972. name: "Back",
  30973. image: {
  30974. source: "./media/characters/tarn/back.svg",
  30975. extra: 3566/3241,
  30976. bottom: 34/3600
  30977. }
  30978. },
  30979. dick: {
  30980. height: math.unit(1.4, "feet"),
  30981. name: "Dick",
  30982. image: {
  30983. source: "./media/characters/tarn/dick.svg"
  30984. }
  30985. },
  30986. paw: {
  30987. height: math.unit(1.53, "feet"),
  30988. name: "Paw",
  30989. image: {
  30990. source: "./media/characters/tarn/paw.svg"
  30991. }
  30992. },
  30993. tongue: {
  30994. height: math.unit(0.82, "feet"),
  30995. name: "Tongue",
  30996. image: {
  30997. source: "./media/characters/tarn/tongue.svg"
  30998. }
  30999. },
  31000. },
  31001. [
  31002. {
  31003. name: "Really Small",
  31004. height: math.unit(2, "inches")
  31005. },
  31006. {
  31007. name: "Micro",
  31008. height: math.unit(5.583, "inches")
  31009. },
  31010. {
  31011. name: "Normal",
  31012. height: math.unit(5 + 7/12, "feet"),
  31013. default: true
  31014. },
  31015. {
  31016. name: "Maro",
  31017. height: math.unit(67, "feet")
  31018. },
  31019. {
  31020. name: "Megamacro",
  31021. height: math.unit(134, "feet")
  31022. },
  31023. ]
  31024. ))
  31025. //characters
  31026. function makeCharacters() {
  31027. const results = [];
  31028. characterMakers.forEach(character => {
  31029. results.push(character());
  31030. });
  31031. return results;
  31032. }