less copy protection, more size visualization
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

26843 lines
668 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"]
  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. }
  1300. //species
  1301. function getSpeciesInfo(speciesList) {
  1302. let result = new Set();
  1303. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1304. result.add(entry)
  1305. });
  1306. return Array.from(result);
  1307. };
  1308. function getSpeciesInfoHelper(species) {
  1309. if (!speciesData[species]) {
  1310. console.warn(species + " doesn't exist");
  1311. return [];
  1312. }
  1313. if (speciesData[species].parents) {
  1314. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1315. } else {
  1316. return [species];
  1317. }
  1318. }
  1319. characterMakers.push(() => makeCharacter(
  1320. {
  1321. name: "Fen",
  1322. species: ["crux"],
  1323. description: {
  1324. title: "Bio",
  1325. text: "Very furry. Sheds on everything."
  1326. },
  1327. tags: [
  1328. "anthro",
  1329. "goo"
  1330. ]
  1331. },
  1332. {
  1333. back: {
  1334. height: math.unit(2.2428, "meter"),
  1335. weight: math.unit(124.738, "kg"),
  1336. name: "Back",
  1337. image: {
  1338. source: "./media/characters/fen/back.svg",
  1339. extra: 1025 / 935,
  1340. bottom: 0.01
  1341. },
  1342. info: {
  1343. description: {
  1344. mode: "append",
  1345. text: "\n\nHe is not currently looking at you."
  1346. }
  1347. }
  1348. },
  1349. full: {
  1350. height: math.unit(1.34, "meter"),
  1351. weight: math.unit(225, "kg"),
  1352. name: "Full",
  1353. image: {
  1354. source: "./media/characters/fen/full.svg"
  1355. },
  1356. info: {
  1357. description: {
  1358. mode: "append",
  1359. text: "\n\nMunch."
  1360. }
  1361. }
  1362. },
  1363. kneeling: {
  1364. height: math.unit(5.4, "feet"),
  1365. weight: math.unit(124.738, "kg"),
  1366. name: "Kneeling",
  1367. image: {
  1368. source: "./media/characters/fen/kneeling.svg",
  1369. extra: 563 / 507
  1370. }
  1371. },
  1372. goo: {
  1373. height: math.unit(2.8, "feet"),
  1374. weight: math.unit(125, "kg"),
  1375. capacity: math.unit(1, "people"),
  1376. name: "Goo",
  1377. image: {
  1378. source: "./media/characters/fen/goo.svg",
  1379. bottom: 116 / 613
  1380. }
  1381. },
  1382. lounging: {
  1383. height: math.unit(6.5, "feet"),
  1384. weight: math.unit(125, "kg"),
  1385. name: "Lounging",
  1386. image: {
  1387. source: "./media/characters/fen/lounging.svg"
  1388. }
  1389. },
  1390. },
  1391. [
  1392. {
  1393. name: "Normal",
  1394. height: math.unit(2.2428, "meter")
  1395. },
  1396. {
  1397. name: "Big",
  1398. height: math.unit(12, "feet")
  1399. },
  1400. {
  1401. name: "Minimacro",
  1402. height: math.unit(40, "feet"),
  1403. default: true,
  1404. info: {
  1405. description: {
  1406. mode: "append",
  1407. text: "\n\nTOO DAMN BIG"
  1408. }
  1409. }
  1410. },
  1411. {
  1412. name: "Macro",
  1413. height: math.unit(100, "feet"),
  1414. info: {
  1415. description: {
  1416. mode: "append",
  1417. text: "\n\nTOO DAMN BIG"
  1418. }
  1419. }
  1420. },
  1421. {
  1422. name: "Macro+",
  1423. height: math.unit(300, "feet")
  1424. },
  1425. {
  1426. name: "Megamacro",
  1427. height: math.unit(2, "miles")
  1428. }
  1429. ]
  1430. ))
  1431. characterMakers.push(() => makeCharacter(
  1432. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1433. {
  1434. front: {
  1435. height: math.unit(183, "cm"),
  1436. weight: math.unit(80, "kg"),
  1437. name: "Front",
  1438. image: {
  1439. source: "./media/characters/sofia-fluttertail/front.svg",
  1440. bottom: 0.01,
  1441. extra: 2154 / 2081
  1442. }
  1443. },
  1444. frontAlt: {
  1445. height: math.unit(183, "cm"),
  1446. weight: math.unit(80, "kg"),
  1447. name: "Front (alt)",
  1448. image: {
  1449. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1450. }
  1451. },
  1452. back: {
  1453. height: math.unit(183, "cm"),
  1454. weight: math.unit(80, "kg"),
  1455. name: "Back",
  1456. image: {
  1457. source: "./media/characters/sofia-fluttertail/back.svg"
  1458. }
  1459. },
  1460. kneeling: {
  1461. height: math.unit(125, "cm"),
  1462. weight: math.unit(80, "kg"),
  1463. name: "Kneeling",
  1464. image: {
  1465. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1466. extra: 1033 / 977,
  1467. bottom: 23.7 / 1057
  1468. }
  1469. },
  1470. maw: {
  1471. height: math.unit(183 / 5, "cm"),
  1472. name: "Maw",
  1473. image: {
  1474. source: "./media/characters/sofia-fluttertail/maw.svg"
  1475. }
  1476. },
  1477. mawcloseup: {
  1478. height: math.unit(183 / 5 * 0.41, "cm"),
  1479. name: "Maw (Closeup)",
  1480. image: {
  1481. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1482. }
  1483. },
  1484. },
  1485. [
  1486. {
  1487. name: "Normal",
  1488. height: math.unit(1.83, "meter")
  1489. },
  1490. {
  1491. name: "Size Thief",
  1492. height: math.unit(18, "feet")
  1493. },
  1494. {
  1495. name: "50 Foot Collie",
  1496. height: math.unit(50, "feet")
  1497. },
  1498. {
  1499. name: "Macro",
  1500. height: math.unit(96, "feet"),
  1501. default: true
  1502. },
  1503. {
  1504. name: "Megamerger",
  1505. height: math.unit(650, "feet")
  1506. },
  1507. ]
  1508. ))
  1509. characterMakers.push(() => makeCharacter(
  1510. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1511. {
  1512. front: {
  1513. height: math.unit(7, "feet"),
  1514. weight: math.unit(100, "kg"),
  1515. name: "Front",
  1516. image: {
  1517. source: "./media/characters/march/front.svg",
  1518. extra: 1,
  1519. bottom: 0.015
  1520. }
  1521. },
  1522. foot: {
  1523. height: math.unit(0.9, "feet"),
  1524. name: "Foot",
  1525. image: {
  1526. source: "./media/characters/march/foot.svg"
  1527. }
  1528. },
  1529. },
  1530. [
  1531. {
  1532. name: "Normal",
  1533. height: math.unit(7.9, "feet")
  1534. },
  1535. {
  1536. name: "Macro",
  1537. height: math.unit(220, "meters")
  1538. },
  1539. {
  1540. name: "Megamacro",
  1541. height: math.unit(2.98, "km"),
  1542. default: true
  1543. },
  1544. {
  1545. name: "Gigamacro",
  1546. height: math.unit(15963, "km")
  1547. },
  1548. {
  1549. name: "Teramacro",
  1550. height: math.unit(2980000000, "km")
  1551. },
  1552. {
  1553. name: "Examacro",
  1554. height: math.unit(250, "parsecs")
  1555. },
  1556. ]
  1557. ))
  1558. characterMakers.push(() => makeCharacter(
  1559. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1560. {
  1561. front: {
  1562. height: math.unit(6, "feet"),
  1563. weight: math.unit(60, "kg"),
  1564. name: "Front",
  1565. image: {
  1566. source: "./media/characters/noir/front.svg",
  1567. extra: 1,
  1568. bottom: 0.032
  1569. }
  1570. },
  1571. },
  1572. [
  1573. {
  1574. name: "Normal",
  1575. height: math.unit(6.6, "feet")
  1576. },
  1577. {
  1578. name: "Macro",
  1579. height: math.unit(500, "feet")
  1580. },
  1581. {
  1582. name: "Megamacro",
  1583. height: math.unit(2.5, "km"),
  1584. default: true
  1585. },
  1586. {
  1587. name: "Gigamacro",
  1588. height: math.unit(22500, "km")
  1589. },
  1590. {
  1591. name: "Teramacro",
  1592. height: math.unit(2500000000, "km")
  1593. },
  1594. {
  1595. name: "Examacro",
  1596. height: math.unit(200, "parsecs")
  1597. },
  1598. ]
  1599. ))
  1600. characterMakers.push(() => makeCharacter(
  1601. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1602. {
  1603. front: {
  1604. height: math.unit(7, "feet"),
  1605. weight: math.unit(100, "kg"),
  1606. name: "Front",
  1607. image: {
  1608. source: "./media/characters/okuri/front.svg",
  1609. extra: 1,
  1610. bottom: 0.037
  1611. }
  1612. },
  1613. back: {
  1614. height: math.unit(7, "feet"),
  1615. weight: math.unit(100, "kg"),
  1616. name: "Back",
  1617. image: {
  1618. source: "./media/characters/okuri/back.svg",
  1619. extra: 1,
  1620. bottom: 0.007
  1621. }
  1622. },
  1623. },
  1624. [
  1625. {
  1626. name: "Megamacro",
  1627. height: math.unit(100, "miles"),
  1628. default: true
  1629. },
  1630. ]
  1631. ))
  1632. characterMakers.push(() => makeCharacter(
  1633. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1634. {
  1635. front: {
  1636. height: math.unit(7, "feet"),
  1637. weight: math.unit(100, "kg"),
  1638. name: "Front",
  1639. image: {
  1640. source: "./media/characters/manny/front.svg",
  1641. extra: 1,
  1642. bottom: 0.06
  1643. }
  1644. },
  1645. back: {
  1646. height: math.unit(7, "feet"),
  1647. weight: math.unit(100, "kg"),
  1648. name: "Back",
  1649. image: {
  1650. source: "./media/characters/manny/back.svg",
  1651. extra: 1,
  1652. bottom: 0.014
  1653. }
  1654. },
  1655. },
  1656. [
  1657. {
  1658. name: "Normal",
  1659. height: math.unit(7, "feet"),
  1660. },
  1661. {
  1662. name: "Macro",
  1663. height: math.unit(78, "feet"),
  1664. default: true
  1665. },
  1666. {
  1667. name: "Macro+",
  1668. height: math.unit(300, "meters")
  1669. },
  1670. {
  1671. name: "Macro++",
  1672. height: math.unit(2400, "meters")
  1673. },
  1674. {
  1675. name: "Megamacro",
  1676. height: math.unit(5167, "meters")
  1677. },
  1678. {
  1679. name: "Gigamacro",
  1680. height: math.unit(41769, "miles")
  1681. },
  1682. ]
  1683. ))
  1684. characterMakers.push(() => makeCharacter(
  1685. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1686. {
  1687. front: {
  1688. height: math.unit(7, "feet"),
  1689. weight: math.unit(100, "kg"),
  1690. name: "Front",
  1691. image: {
  1692. source: "./media/characters/adake/front-1.svg"
  1693. }
  1694. },
  1695. frontAlt: {
  1696. height: math.unit(7, "feet"),
  1697. weight: math.unit(100, "kg"),
  1698. name: "Front (Alt)",
  1699. image: {
  1700. source: "./media/characters/adake/front-2.svg",
  1701. extra: 1,
  1702. bottom: 0.01
  1703. }
  1704. },
  1705. back: {
  1706. height: math.unit(7, "feet"),
  1707. weight: math.unit(100, "kg"),
  1708. name: "Back",
  1709. image: {
  1710. source: "./media/characters/adake/back.svg",
  1711. }
  1712. },
  1713. kneel: {
  1714. height: math.unit(5.385, "feet"),
  1715. weight: math.unit(100, "kg"),
  1716. name: "Kneeling",
  1717. image: {
  1718. source: "./media/characters/adake/kneel.svg",
  1719. bottom: 0.052
  1720. }
  1721. },
  1722. },
  1723. [
  1724. {
  1725. name: "Normal",
  1726. height: math.unit(7, "feet"),
  1727. },
  1728. {
  1729. name: "Macro",
  1730. height: math.unit(78, "feet"),
  1731. default: true
  1732. },
  1733. {
  1734. name: "Macro+",
  1735. height: math.unit(300, "meters")
  1736. },
  1737. {
  1738. name: "Macro++",
  1739. height: math.unit(2400, "meters")
  1740. },
  1741. {
  1742. name: "Megamacro",
  1743. height: math.unit(5167, "meters")
  1744. },
  1745. {
  1746. name: "Gigamacro",
  1747. height: math.unit(41769, "miles")
  1748. },
  1749. ]
  1750. ))
  1751. characterMakers.push(() => makeCharacter(
  1752. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1753. {
  1754. front: {
  1755. height: math.unit(1.65, "meters"),
  1756. weight: math.unit(50, "kg"),
  1757. name: "Front",
  1758. image: {
  1759. source: "./media/characters/elijah/front.svg",
  1760. extra: 858 / 830,
  1761. bottom: 95.5 / 953.8559
  1762. }
  1763. },
  1764. back: {
  1765. height: math.unit(1.65, "meters"),
  1766. weight: math.unit(50, "kg"),
  1767. name: "Back",
  1768. image: {
  1769. source: "./media/characters/elijah/back.svg",
  1770. extra: 895 / 850,
  1771. bottom: 5.3 / 897.956
  1772. }
  1773. },
  1774. frontNsfw: {
  1775. height: math.unit(1.65, "meters"),
  1776. weight: math.unit(50, "kg"),
  1777. name: "Front (NSFW)",
  1778. image: {
  1779. source: "./media/characters/elijah/front-nsfw.svg",
  1780. extra: 858 / 830,
  1781. bottom: 95.5 / 953.8559
  1782. }
  1783. },
  1784. backNsfw: {
  1785. height: math.unit(1.65, "meters"),
  1786. weight: math.unit(50, "kg"),
  1787. name: "Back (NSFW)",
  1788. image: {
  1789. source: "./media/characters/elijah/back-nsfw.svg",
  1790. extra: 895 / 850,
  1791. bottom: 5.3 / 897.956
  1792. }
  1793. },
  1794. dick: {
  1795. height: math.unit(1, "feet"),
  1796. name: "Dick",
  1797. image: {
  1798. source: "./media/characters/elijah/dick.svg"
  1799. }
  1800. },
  1801. beakOpen: {
  1802. height: math.unit(1.25, "feet"),
  1803. name: "Beak (Open)",
  1804. image: {
  1805. source: "./media/characters/elijah/beak-open.svg"
  1806. }
  1807. },
  1808. beakShut: {
  1809. height: math.unit(1.25, "feet"),
  1810. name: "Beak (Shut)",
  1811. image: {
  1812. source: "./media/characters/elijah/beak-shut.svg"
  1813. }
  1814. },
  1815. footFlexing: {
  1816. height: math.unit(1.61, "feet"),
  1817. name: "Foot (Flexing)",
  1818. image: {
  1819. source: "./media/characters/elijah/foot-flexing.svg"
  1820. }
  1821. },
  1822. footStepping: {
  1823. height: math.unit(1.44, "feet"),
  1824. name: "Foot (Stepping)",
  1825. image: {
  1826. source: "./media/characters/elijah/foot-stepping.svg"
  1827. }
  1828. },
  1829. plantigradeLeg: {
  1830. height: math.unit(2.34, "feet"),
  1831. name: "Plantigrade Leg",
  1832. image: {
  1833. source: "./media/characters/elijah/plantigrade-leg.svg"
  1834. }
  1835. },
  1836. plantigradeFootLeft: {
  1837. height: math.unit(0.9, "feet"),
  1838. name: "Plantigrade Foot (Left)",
  1839. image: {
  1840. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1841. }
  1842. },
  1843. plantigradeFootRight: {
  1844. height: math.unit(0.9, "feet"),
  1845. name: "Plantigrade Foot (Right)",
  1846. image: {
  1847. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1848. }
  1849. },
  1850. },
  1851. [
  1852. {
  1853. name: "Normal",
  1854. height: math.unit(1.65, "meters")
  1855. },
  1856. {
  1857. name: "Macro",
  1858. height: math.unit(55, "meters"),
  1859. default: true
  1860. },
  1861. {
  1862. name: "Macro+",
  1863. height: math.unit(105, "meters")
  1864. },
  1865. ]
  1866. ))
  1867. characterMakers.push(() => makeCharacter(
  1868. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1869. {
  1870. front: {
  1871. height: math.unit(11, "feet"),
  1872. weight: math.unit(80, "kg"),
  1873. name: "Front",
  1874. image: {
  1875. source: "./media/characters/rai/front.svg",
  1876. extra: 1,
  1877. bottom: 0.03
  1878. }
  1879. },
  1880. side: {
  1881. height: math.unit(11, "feet"),
  1882. weight: math.unit(80, "kg"),
  1883. name: "Side",
  1884. image: {
  1885. source: "./media/characters/rai/side.svg"
  1886. }
  1887. },
  1888. back: {
  1889. height: math.unit(11, "feet"),
  1890. weight: math.unit(80, "lb"),
  1891. name: "Back",
  1892. image: {
  1893. source: "./media/characters/rai/back.svg",
  1894. extra: 1,
  1895. bottom: 0.01
  1896. }
  1897. },
  1898. feral: {
  1899. height: math.unit(11, "feet"),
  1900. weight: math.unit(800, "lb"),
  1901. name: "Feral",
  1902. image: {
  1903. source: "./media/characters/rai/feral.svg",
  1904. extra: 1050 / 659,
  1905. bottom: 0.07
  1906. }
  1907. },
  1908. dragon: {
  1909. height: math.unit(23, "feet"),
  1910. weight: math.unit(50000, "lb"),
  1911. name: "Dragon",
  1912. image: {
  1913. source: "./media/characters/rai/dragon.svg",
  1914. extra: 2498 / 2030,
  1915. bottom: 85.2 / 2584
  1916. }
  1917. },
  1918. maw: {
  1919. height: math.unit(6 / 3.81416, "feet"),
  1920. name: "Maw",
  1921. image: {
  1922. source: "./media/characters/rai/maw.svg"
  1923. }
  1924. },
  1925. },
  1926. [
  1927. {
  1928. name: "Normal",
  1929. height: math.unit(11, "feet")
  1930. },
  1931. {
  1932. name: "Macro",
  1933. height: math.unit(302, "feet"),
  1934. default: true
  1935. },
  1936. ]
  1937. ))
  1938. characterMakers.push(() => makeCharacter(
  1939. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  1940. {
  1941. frontDressed: {
  1942. height: math.unit(216, "feet"),
  1943. weight: math.unit(7000000, "lb"),
  1944. name: "Front (Dressed)",
  1945. image: {
  1946. source: "./media/characters/jazzy/front-dressed.svg",
  1947. extra: 2738 / 2651,
  1948. bottom: 41.8 / 2786
  1949. }
  1950. },
  1951. backDressed: {
  1952. height: math.unit(216, "feet"),
  1953. weight: math.unit(7000000, "lb"),
  1954. name: "Back (Dressed)",
  1955. image: {
  1956. source: "./media/characters/jazzy/back-dressed.svg",
  1957. extra: 2775 / 2673,
  1958. bottom: 36.8 / 2817
  1959. }
  1960. },
  1961. front: {
  1962. height: math.unit(216, "feet"),
  1963. weight: math.unit(7000000, "lb"),
  1964. name: "Front",
  1965. image: {
  1966. source: "./media/characters/jazzy/front.svg",
  1967. extra: 2738 / 2651,
  1968. bottom: 41.8 / 2786
  1969. }
  1970. },
  1971. back: {
  1972. height: math.unit(216, "feet"),
  1973. weight: math.unit(7000000, "lb"),
  1974. name: "Back",
  1975. image: {
  1976. source: "./media/characters/jazzy/back.svg",
  1977. extra: 2775 / 2673,
  1978. bottom: 36.8 / 2817
  1979. }
  1980. },
  1981. maw: {
  1982. height: math.unit(20, "feet"),
  1983. name: "Maw",
  1984. image: {
  1985. source: "./media/characters/jazzy/maw.svg"
  1986. }
  1987. },
  1988. paws: {
  1989. height: math.unit(27.5, "feet"),
  1990. name: "Paws",
  1991. image: {
  1992. source: "./media/characters/jazzy/paws.svg"
  1993. }
  1994. },
  1995. eye: {
  1996. height: math.unit(4.4, "feet"),
  1997. name: "Eye",
  1998. image: {
  1999. source: "./media/characters/jazzy/eye.svg"
  2000. }
  2001. },
  2002. droneOffense: {
  2003. height: math.unit(9.5, "inches"),
  2004. name: "Drone (Offense)",
  2005. image: {
  2006. source: "./media/characters/jazzy/drone-offense.svg"
  2007. }
  2008. },
  2009. droneRecon: {
  2010. height: math.unit(9.5, "inches"),
  2011. name: "Drone (Recon)",
  2012. image: {
  2013. source: "./media/characters/jazzy/drone-recon.svg"
  2014. }
  2015. },
  2016. droneDefense: {
  2017. height: math.unit(9.5, "inches"),
  2018. name: "Drone (Defense)",
  2019. image: {
  2020. source: "./media/characters/jazzy/drone-defense.svg"
  2021. }
  2022. },
  2023. },
  2024. [
  2025. {
  2026. name: "Macro",
  2027. height: math.unit(216, "feet"),
  2028. default: true
  2029. },
  2030. ]
  2031. ))
  2032. characterMakers.push(() => makeCharacter(
  2033. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2034. {
  2035. front: {
  2036. height: math.unit(7, "feet"),
  2037. weight: math.unit(80, "kg"),
  2038. name: "Front",
  2039. image: {
  2040. source: "./media/characters/flamm/front.svg",
  2041. extra: 1794 / 1677,
  2042. bottom: 31.7 / 1828.5
  2043. }
  2044. },
  2045. },
  2046. [
  2047. {
  2048. name: "Normal",
  2049. height: math.unit(9.5, "feet")
  2050. },
  2051. {
  2052. name: "Macro",
  2053. height: math.unit(200, "feet"),
  2054. default: true
  2055. },
  2056. ]
  2057. ))
  2058. characterMakers.push(() => makeCharacter(
  2059. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2060. {
  2061. front: {
  2062. height: math.unit(7, "feet"),
  2063. weight: math.unit(80, "kg"),
  2064. name: "Front",
  2065. image: {
  2066. source: "./media/characters/zephiro/front.svg",
  2067. extra: 2309 / 2162,
  2068. bottom: 0.069
  2069. }
  2070. },
  2071. side: {
  2072. height: math.unit(7, "feet"),
  2073. weight: math.unit(80, "kg"),
  2074. name: "Side",
  2075. image: {
  2076. source: "./media/characters/zephiro/side.svg",
  2077. extra: 2403 / 2279,
  2078. bottom: 0.015
  2079. }
  2080. },
  2081. back: {
  2082. height: math.unit(7, "feet"),
  2083. weight: math.unit(80, "kg"),
  2084. name: "Back",
  2085. image: {
  2086. source: "./media/characters/zephiro/back.svg",
  2087. extra: 2373 / 2244,
  2088. bottom: 0.013
  2089. }
  2090. },
  2091. },
  2092. [
  2093. {
  2094. name: "Micro",
  2095. height: math.unit(3, "inches")
  2096. },
  2097. {
  2098. name: "Normal",
  2099. height: math.unit(5 + 3 / 12, "feet"),
  2100. default: true
  2101. },
  2102. {
  2103. name: "Macro",
  2104. height: math.unit(118, "feet")
  2105. },
  2106. ]
  2107. ))
  2108. characterMakers.push(() => makeCharacter(
  2109. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2110. {
  2111. front: {
  2112. height: math.unit(5, "feet"),
  2113. weight: math.unit(90, "kg"),
  2114. name: "Front",
  2115. image: {
  2116. source: "./media/characters/fory/front.svg",
  2117. extra: 2862 / 2674,
  2118. bottom: 180 / 3043.8
  2119. }
  2120. },
  2121. back: {
  2122. height: math.unit(5, "feet"),
  2123. weight: math.unit(90, "kg"),
  2124. name: "Back",
  2125. image: {
  2126. source: "./media/characters/fory/back.svg",
  2127. extra: 2962 / 2791,
  2128. bottom: 106 / 3071.8
  2129. }
  2130. },
  2131. foot: {
  2132. height: math.unit(2.14, "feet"),
  2133. name: "Foot",
  2134. image: {
  2135. source: "./media/characters/fory/foot.svg"
  2136. }
  2137. },
  2138. },
  2139. [
  2140. {
  2141. name: "Normal",
  2142. height: math.unit(5, "feet")
  2143. },
  2144. {
  2145. name: "Macro",
  2146. height: math.unit(50, "feet"),
  2147. default: true
  2148. },
  2149. {
  2150. name: "Megamacro",
  2151. height: math.unit(10, "miles")
  2152. },
  2153. {
  2154. name: "Gigamacro",
  2155. height: math.unit(5, "earths")
  2156. },
  2157. ]
  2158. ))
  2159. characterMakers.push(() => makeCharacter(
  2160. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2161. {
  2162. front: {
  2163. height: math.unit(7, "feet"),
  2164. weight: math.unit(90, "kg"),
  2165. name: "Front",
  2166. image: {
  2167. source: "./media/characters/kurrikage/front.svg",
  2168. extra: 1,
  2169. bottom: 0.035
  2170. }
  2171. },
  2172. back: {
  2173. height: math.unit(7, "feet"),
  2174. weight: math.unit(90, "lb"),
  2175. name: "Back",
  2176. image: {
  2177. source: "./media/characters/kurrikage/back.svg"
  2178. }
  2179. },
  2180. paw: {
  2181. height: math.unit(1.5, "feet"),
  2182. name: "Paw",
  2183. image: {
  2184. source: "./media/characters/kurrikage/paw.svg"
  2185. }
  2186. },
  2187. staff: {
  2188. height: math.unit(6.7, "feet"),
  2189. name: "Staff",
  2190. image: {
  2191. source: "./media/characters/kurrikage/staff.svg"
  2192. }
  2193. },
  2194. peek: {
  2195. height: math.unit(1.05, "feet"),
  2196. name: "Peeking",
  2197. image: {
  2198. source: "./media/characters/kurrikage/peek.svg",
  2199. bottom: 0.08
  2200. }
  2201. },
  2202. },
  2203. [
  2204. {
  2205. name: "Normal",
  2206. height: math.unit(12, "feet"),
  2207. default: true
  2208. },
  2209. {
  2210. name: "Big",
  2211. height: math.unit(20, "feet")
  2212. },
  2213. {
  2214. name: "Macro",
  2215. height: math.unit(500, "feet")
  2216. },
  2217. {
  2218. name: "Megamacro",
  2219. height: math.unit(20, "miles")
  2220. },
  2221. ]
  2222. ))
  2223. characterMakers.push(() => makeCharacter(
  2224. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2225. {
  2226. front: {
  2227. height: math.unit(6, "feet"),
  2228. weight: math.unit(75, "kg"),
  2229. name: "Front",
  2230. image: {
  2231. source: "./media/characters/shingo/front.svg",
  2232. extra: 3511 / 3338,
  2233. bottom: 0.005
  2234. }
  2235. },
  2236. paw: {
  2237. height: math.unit(1, "feet"),
  2238. name: "Paw",
  2239. image: {
  2240. source: "./media/characters/shingo/paw.svg"
  2241. }
  2242. },
  2243. },
  2244. [
  2245. {
  2246. name: "Micro",
  2247. height: math.unit(4, "inches")
  2248. },
  2249. {
  2250. name: "Normal",
  2251. height: math.unit(6, "feet"),
  2252. default: true
  2253. },
  2254. {
  2255. name: "Macro",
  2256. height: math.unit(108, "feet")
  2257. }
  2258. ]
  2259. ))
  2260. characterMakers.push(() => makeCharacter(
  2261. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2262. {
  2263. side: {
  2264. height: math.unit(6, "feet"),
  2265. weight: math.unit(75, "kg"),
  2266. name: "Side",
  2267. image: {
  2268. source: "./media/characters/aigey/side.svg"
  2269. }
  2270. },
  2271. },
  2272. [
  2273. {
  2274. name: "Macro",
  2275. height: math.unit(200, "feet"),
  2276. default: true
  2277. },
  2278. {
  2279. name: "Megamacro",
  2280. height: math.unit(100, "miles")
  2281. },
  2282. ]
  2283. )
  2284. )
  2285. characterMakers.push(() => makeCharacter(
  2286. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2287. {
  2288. front: {
  2289. height: math.unit(5 + 5 / 12, "feet"),
  2290. weight: math.unit(75, "kg"),
  2291. name: "Front",
  2292. image: {
  2293. source: "./media/characters/natasha/front.svg",
  2294. extra: 859 / 824,
  2295. bottom: 23 / 879.6
  2296. }
  2297. },
  2298. frontNsfw: {
  2299. height: math.unit(5 + 5 / 12, "feet"),
  2300. weight: math.unit(75, "kg"),
  2301. name: "Front (NSFW)",
  2302. image: {
  2303. source: "./media/characters/natasha/front-nsfw.svg",
  2304. extra: 859 / 824,
  2305. bottom: 23 / 879.6
  2306. }
  2307. },
  2308. frontErect: {
  2309. height: math.unit(5 + 5 / 12, "feet"),
  2310. weight: math.unit(75, "kg"),
  2311. name: "Front (Erect)",
  2312. image: {
  2313. source: "./media/characters/natasha/front-erect.svg",
  2314. extra: 859 / 824,
  2315. bottom: 23 / 879.6
  2316. }
  2317. },
  2318. back: {
  2319. height: math.unit(5 + 5 / 12, "feet"),
  2320. weight: math.unit(75, "kg"),
  2321. name: "Back",
  2322. image: {
  2323. source: "./media/characters/natasha/back.svg",
  2324. extra: 887.9 / 852.6,
  2325. bottom: 9.7 / 896.4
  2326. }
  2327. },
  2328. backAlt: {
  2329. height: math.unit(5 + 5 / 12, "feet"),
  2330. weight: math.unit(75, "kg"),
  2331. name: "Back (Alt)",
  2332. image: {
  2333. source: "./media/characters/natasha/back-alt.svg",
  2334. extra: 1236.7 / 1192,
  2335. bottom: 22.3 / 1258.2
  2336. }
  2337. },
  2338. dick: {
  2339. height: math.unit(1.772, "feet"),
  2340. name: "Dick",
  2341. image: {
  2342. source: "./media/characters/natasha/dick.svg"
  2343. }
  2344. },
  2345. },
  2346. [
  2347. {
  2348. name: "Normal",
  2349. height: math.unit(5 + 5 / 12, "feet")
  2350. },
  2351. {
  2352. name: "Large",
  2353. height: math.unit(12, "feet")
  2354. },
  2355. {
  2356. name: "Macro",
  2357. height: math.unit(100, "feet"),
  2358. default: true
  2359. },
  2360. {
  2361. name: "Macro+",
  2362. height: math.unit(260, "feet")
  2363. },
  2364. {
  2365. name: "Macro++",
  2366. height: math.unit(1, "mile")
  2367. },
  2368. ]
  2369. ))
  2370. characterMakers.push(() => makeCharacter(
  2371. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2372. {
  2373. front: {
  2374. height: math.unit(6, "feet"),
  2375. weight: math.unit(75, "kg"),
  2376. name: "Front",
  2377. image: {
  2378. source: "./media/characters/malik/front.svg"
  2379. }
  2380. },
  2381. side: {
  2382. height: math.unit(6, "feet"),
  2383. weight: math.unit(75, "kg"),
  2384. name: "Side",
  2385. image: {
  2386. source: "./media/characters/malik/side.svg",
  2387. extra: 1.1539
  2388. }
  2389. },
  2390. back: {
  2391. height: math.unit(6, "feet"),
  2392. weight: math.unit(75, "kg"),
  2393. name: "Back",
  2394. image: {
  2395. source: "./media/characters/malik/back.svg"
  2396. }
  2397. },
  2398. },
  2399. [
  2400. {
  2401. name: "Macro",
  2402. height: math.unit(156, "feet"),
  2403. default: true
  2404. },
  2405. {
  2406. name: "Macro+",
  2407. height: math.unit(1188, "feet")
  2408. },
  2409. ]
  2410. ))
  2411. characterMakers.push(() => makeCharacter(
  2412. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2413. {
  2414. front: {
  2415. height: math.unit(6, "feet"),
  2416. weight: math.unit(75, "kg"),
  2417. name: "Front",
  2418. image: {
  2419. source: "./media/characters/sefer/front.svg",
  2420. extra: 848 / 659,
  2421. bottom: 28.3 / 876.442
  2422. }
  2423. },
  2424. back: {
  2425. height: math.unit(6, "feet"),
  2426. weight: math.unit(75, "kg"),
  2427. name: "Back",
  2428. image: {
  2429. source: "./media/characters/sefer/back.svg",
  2430. extra: 864 / 695,
  2431. bottom: 10 / 871
  2432. }
  2433. },
  2434. frontDressed: {
  2435. height: math.unit(6, "feet"),
  2436. weight: math.unit(75, "kg"),
  2437. name: "Front (Dressed)",
  2438. image: {
  2439. source: "./media/characters/sefer/front-dressed.svg",
  2440. extra: 839 / 653,
  2441. bottom: 37.6 / 878
  2442. }
  2443. },
  2444. },
  2445. [
  2446. {
  2447. name: "Normal",
  2448. height: math.unit(6, "feet"),
  2449. default: true
  2450. },
  2451. ]
  2452. ))
  2453. characterMakers.push(() => makeCharacter(
  2454. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2455. {
  2456. body: {
  2457. height: math.unit(2.2428, "meter"),
  2458. weight: math.unit(124.738, "kg"),
  2459. name: "Body",
  2460. image: {
  2461. extra: 1225 / 1050,
  2462. source: "./media/characters/north/front.svg"
  2463. }
  2464. }
  2465. },
  2466. [
  2467. {
  2468. name: "Micro",
  2469. height: math.unit(4, "inches")
  2470. },
  2471. {
  2472. name: "Macro",
  2473. height: math.unit(63, "meters")
  2474. },
  2475. {
  2476. name: "Megamacro",
  2477. height: math.unit(101, "miles"),
  2478. default: true
  2479. }
  2480. ]
  2481. ))
  2482. characterMakers.push(() => makeCharacter(
  2483. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2484. {
  2485. angled: {
  2486. height: math.unit(4, "meter"),
  2487. weight: math.unit(150, "kg"),
  2488. name: "Angled",
  2489. image: {
  2490. source: "./media/characters/talan/angled-sfw.svg",
  2491. bottom: 29 / 3734
  2492. }
  2493. },
  2494. angledNsfw: {
  2495. height: math.unit(4, "meter"),
  2496. weight: math.unit(150, "kg"),
  2497. name: "Angled (NSFW)",
  2498. image: {
  2499. source: "./media/characters/talan/angled-nsfw.svg",
  2500. bottom: 29 / 3734
  2501. }
  2502. },
  2503. frontNsfw: {
  2504. height: math.unit(4, "meter"),
  2505. weight: math.unit(150, "kg"),
  2506. name: "Front (NSFW)",
  2507. image: {
  2508. source: "./media/characters/talan/front-nsfw.svg",
  2509. bottom: 29 / 3734
  2510. }
  2511. },
  2512. sideNsfw: {
  2513. height: math.unit(4, "meter"),
  2514. weight: math.unit(150, "kg"),
  2515. name: "Side (NSFW)",
  2516. image: {
  2517. source: "./media/characters/talan/side-nsfw.svg",
  2518. bottom: 29 / 3734
  2519. }
  2520. },
  2521. back: {
  2522. height: math.unit(4, "meter"),
  2523. weight: math.unit(150, "kg"),
  2524. name: "Back",
  2525. image: {
  2526. source: "./media/characters/talan/back.svg"
  2527. }
  2528. },
  2529. dickBottom: {
  2530. height: math.unit(0.621, "meter"),
  2531. name: "Dick (Bottom)",
  2532. image: {
  2533. source: "./media/characters/talan/dick-bottom.svg"
  2534. }
  2535. },
  2536. dickTop: {
  2537. height: math.unit(0.621, "meter"),
  2538. name: "Dick (Top)",
  2539. image: {
  2540. source: "./media/characters/talan/dick-top.svg"
  2541. }
  2542. },
  2543. dickSide: {
  2544. height: math.unit(0.305, "meter"),
  2545. name: "Dick (Side)",
  2546. image: {
  2547. source: "./media/characters/talan/dick-side.svg"
  2548. }
  2549. },
  2550. dickFront: {
  2551. height: math.unit(0.305, "meter"),
  2552. name: "Dick (Front)",
  2553. image: {
  2554. source: "./media/characters/talan/dick-front.svg"
  2555. }
  2556. },
  2557. },
  2558. [
  2559. {
  2560. name: "Normal",
  2561. height: math.unit(4, "meters")
  2562. },
  2563. {
  2564. name: "Macro",
  2565. height: math.unit(100, "meters")
  2566. },
  2567. {
  2568. name: "Megamacro",
  2569. height: math.unit(2, "miles"),
  2570. default: true
  2571. },
  2572. {
  2573. name: "Gigamacro",
  2574. height: math.unit(5000, "miles")
  2575. },
  2576. {
  2577. name: "Teramacro",
  2578. height: math.unit(100, "parsecs")
  2579. }
  2580. ]
  2581. ))
  2582. characterMakers.push(() => makeCharacter(
  2583. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2584. {
  2585. front: {
  2586. height: math.unit(2, "meter"),
  2587. weight: math.unit(90, "kg"),
  2588. name: "Front",
  2589. image: {
  2590. source: "./media/characters/gael'rathus/front.svg"
  2591. }
  2592. },
  2593. frontAlt: {
  2594. height: math.unit(2, "meter"),
  2595. weight: math.unit(90, "kg"),
  2596. name: "Front (alt)",
  2597. image: {
  2598. source: "./media/characters/gael'rathus/front-alt.svg"
  2599. }
  2600. },
  2601. frontAlt2: {
  2602. height: math.unit(2, "meter"),
  2603. weight: math.unit(90, "kg"),
  2604. name: "Front (alt 2)",
  2605. image: {
  2606. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2607. }
  2608. }
  2609. },
  2610. [
  2611. {
  2612. name: "Normal",
  2613. height: math.unit(9, "feet"),
  2614. default: true
  2615. },
  2616. {
  2617. name: "Large",
  2618. height: math.unit(25, "feet")
  2619. },
  2620. {
  2621. name: "Macro",
  2622. height: math.unit(0.25, "miles")
  2623. },
  2624. {
  2625. name: "Megamacro",
  2626. height: math.unit(10, "miles")
  2627. }
  2628. ]
  2629. ))
  2630. characterMakers.push(() => makeCharacter(
  2631. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2632. {
  2633. side: {
  2634. height: math.unit(2, "meter"),
  2635. weight: math.unit(140, "kg"),
  2636. name: "Side",
  2637. image: {
  2638. source: "./media/characters/sosha/side.svg",
  2639. bottom: 0.042
  2640. }
  2641. },
  2642. },
  2643. [
  2644. {
  2645. name: "Normal",
  2646. height: math.unit(12, "feet"),
  2647. default: true
  2648. }
  2649. ]
  2650. ))
  2651. characterMakers.push(() => makeCharacter(
  2652. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2653. {
  2654. side: {
  2655. height: math.unit(5 + 5 / 12, "feet"),
  2656. weight: math.unit(170, "kg"),
  2657. name: "Side",
  2658. image: {
  2659. source: "./media/characters/runnola/side.svg",
  2660. extra: 741 / 448,
  2661. bottom: 0.05
  2662. }
  2663. },
  2664. },
  2665. [
  2666. {
  2667. name: "Small",
  2668. height: math.unit(3, "feet")
  2669. },
  2670. {
  2671. name: "Normal",
  2672. height: math.unit(5 + 5 / 12, "feet"),
  2673. default: true
  2674. },
  2675. {
  2676. name: "Big",
  2677. height: math.unit(10, "feet")
  2678. },
  2679. ]
  2680. ))
  2681. characterMakers.push(() => makeCharacter(
  2682. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2683. {
  2684. front: {
  2685. height: math.unit(2, "meter"),
  2686. weight: math.unit(50, "kg"),
  2687. name: "Front",
  2688. image: {
  2689. source: "./media/characters/kurribird/front.svg",
  2690. bottom: 0.015
  2691. }
  2692. },
  2693. frontAlt: {
  2694. height: math.unit(1.5, "meter"),
  2695. weight: math.unit(50, "kg"),
  2696. name: "Front (Alt)",
  2697. image: {
  2698. source: "./media/characters/kurribird/front-alt.svg",
  2699. extra: 1.45
  2700. }
  2701. },
  2702. },
  2703. [
  2704. {
  2705. name: "Normal",
  2706. height: math.unit(7, "feet")
  2707. },
  2708. {
  2709. name: "Big",
  2710. height: math.unit(12, "feet"),
  2711. default: true
  2712. },
  2713. {
  2714. name: "Macro",
  2715. height: math.unit(1500, "feet")
  2716. },
  2717. {
  2718. name: "Megamacro",
  2719. height: math.unit(2, "miles")
  2720. }
  2721. ]
  2722. ))
  2723. characterMakers.push(() => makeCharacter(
  2724. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2725. {
  2726. front: {
  2727. height: math.unit(2, "meter"),
  2728. weight: math.unit(80, "kg"),
  2729. name: "Front",
  2730. image: {
  2731. source: "./media/characters/elbial/front.svg",
  2732. extra: 1643 / 1556,
  2733. bottom: 60.2 / 1696
  2734. }
  2735. },
  2736. side: {
  2737. height: math.unit(2, "meter"),
  2738. weight: math.unit(80, "kg"),
  2739. name: "Side",
  2740. image: {
  2741. source: "./media/characters/elbial/side.svg",
  2742. extra: 1630 / 1565,
  2743. bottom: 71.5 / 1697
  2744. }
  2745. },
  2746. back: {
  2747. height: math.unit(2, "meter"),
  2748. weight: math.unit(80, "kg"),
  2749. name: "Back",
  2750. image: {
  2751. source: "./media/characters/elbial/back.svg",
  2752. extra: 1668 / 1595,
  2753. bottom: 5.6 / 1672
  2754. }
  2755. },
  2756. frontDressed: {
  2757. height: math.unit(2, "meter"),
  2758. weight: math.unit(80, "kg"),
  2759. name: "Front (Dressed)",
  2760. image: {
  2761. source: "./media/characters/elbial/front-dressed.svg",
  2762. extra: 1653 / 1584,
  2763. bottom: 57 / 1708
  2764. }
  2765. },
  2766. genitals: {
  2767. height: math.unit(2 / 3.367, "meter"),
  2768. name: "Genitals",
  2769. image: {
  2770. source: "./media/characters/elbial/genitals.svg"
  2771. }
  2772. },
  2773. },
  2774. [
  2775. {
  2776. name: "Large",
  2777. height: math.unit(100, "feet")
  2778. },
  2779. {
  2780. name: "Macro",
  2781. height: math.unit(500, "feet"),
  2782. default: true
  2783. },
  2784. {
  2785. name: "Megamacro",
  2786. height: math.unit(10, "miles")
  2787. },
  2788. {
  2789. name: "Gigamacro",
  2790. height: math.unit(25000, "miles")
  2791. },
  2792. {
  2793. name: "Full-Size",
  2794. height: math.unit(8000000, "gigaparsecs")
  2795. }
  2796. ]
  2797. ))
  2798. characterMakers.push(() => makeCharacter(
  2799. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2800. {
  2801. front: {
  2802. height: math.unit(2, "meter"),
  2803. weight: math.unit(60, "kg"),
  2804. name: "Front",
  2805. image: {
  2806. source: "./media/characters/noah/front.svg"
  2807. }
  2808. },
  2809. talons: {
  2810. height: math.unit(0.315, "meter"),
  2811. name: "Talons",
  2812. image: {
  2813. source: "./media/characters/noah/talons.svg"
  2814. }
  2815. }
  2816. },
  2817. [
  2818. {
  2819. name: "Large",
  2820. height: math.unit(50, "feet")
  2821. },
  2822. {
  2823. name: "Macro",
  2824. height: math.unit(750, "feet"),
  2825. default: true
  2826. },
  2827. {
  2828. name: "Megamacro",
  2829. height: math.unit(50, "miles")
  2830. },
  2831. {
  2832. name: "Gigamacro",
  2833. height: math.unit(100000, "miles")
  2834. },
  2835. {
  2836. name: "Full-Size",
  2837. height: math.unit(3000000000, "miles")
  2838. }
  2839. ]
  2840. ))
  2841. characterMakers.push(() => makeCharacter(
  2842. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2843. {
  2844. front: {
  2845. height: math.unit(2, "meter"),
  2846. weight: math.unit(80, "kg"),
  2847. name: "Front",
  2848. image: {
  2849. source: "./media/characters/natalya/front.svg"
  2850. }
  2851. },
  2852. back: {
  2853. height: math.unit(2, "meter"),
  2854. weight: math.unit(80, "kg"),
  2855. name: "Back",
  2856. image: {
  2857. source: "./media/characters/natalya/back.svg"
  2858. }
  2859. }
  2860. },
  2861. [
  2862. {
  2863. name: "Normal",
  2864. height: math.unit(150, "feet"),
  2865. default: true
  2866. },
  2867. {
  2868. name: "Megamacro",
  2869. height: math.unit(5, "miles")
  2870. },
  2871. {
  2872. name: "Full-Size",
  2873. height: math.unit(600, "kiloparsecs")
  2874. }
  2875. ]
  2876. ))
  2877. characterMakers.push(() => makeCharacter(
  2878. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  2879. {
  2880. front: {
  2881. height: math.unit(2, "meter"),
  2882. weight: math.unit(50, "kg"),
  2883. name: "Front",
  2884. image: {
  2885. source: "./media/characters/erestrebah/front.svg",
  2886. extra: 208 / 193,
  2887. bottom: 0.055
  2888. }
  2889. },
  2890. back: {
  2891. height: math.unit(2, "meter"),
  2892. weight: math.unit(50, "kg"),
  2893. name: "Back",
  2894. image: {
  2895. source: "./media/characters/erestrebah/back.svg",
  2896. extra: 1.3
  2897. }
  2898. }
  2899. },
  2900. [
  2901. {
  2902. name: "Normal",
  2903. height: math.unit(10, "feet")
  2904. },
  2905. {
  2906. name: "Large",
  2907. height: math.unit(50, "feet"),
  2908. default: true
  2909. },
  2910. {
  2911. name: "Macro",
  2912. height: math.unit(300, "feet")
  2913. },
  2914. {
  2915. name: "Macro+",
  2916. height: math.unit(750, "feet")
  2917. },
  2918. {
  2919. name: "Megamacro",
  2920. height: math.unit(3, "miles")
  2921. }
  2922. ]
  2923. ))
  2924. characterMakers.push(() => makeCharacter(
  2925. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  2926. {
  2927. front: {
  2928. height: math.unit(2, "meter"),
  2929. weight: math.unit(80, "kg"),
  2930. name: "Front",
  2931. image: {
  2932. source: "./media/characters/jennifer/front.svg",
  2933. bottom: 0.11,
  2934. extra: 1.16
  2935. }
  2936. },
  2937. frontAlt: {
  2938. height: math.unit(2, "meter"),
  2939. weight: math.unit(80, "kg"),
  2940. name: "Front (Alt)",
  2941. image: {
  2942. source: "./media/characters/jennifer/front-alt.svg"
  2943. }
  2944. }
  2945. },
  2946. [
  2947. {
  2948. name: "Canon Height",
  2949. height: math.unit(120, "feet"),
  2950. default: true
  2951. },
  2952. {
  2953. name: "Macro+",
  2954. height: math.unit(300, "feet")
  2955. },
  2956. {
  2957. name: "Megamacro",
  2958. height: math.unit(20000, "feet")
  2959. }
  2960. ]
  2961. ))
  2962. characterMakers.push(() => makeCharacter(
  2963. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  2964. {
  2965. front: {
  2966. height: math.unit(2, "meter"),
  2967. weight: math.unit(50, "kg"),
  2968. name: "Front",
  2969. image: {
  2970. source: "./media/characters/kalista/front.svg",
  2971. extra: 1947 / 1700,
  2972. bottom: 76.6 / 1412.98
  2973. }
  2974. },
  2975. back: {
  2976. height: math.unit(2, "meter"),
  2977. weight: math.unit(50, "kg"),
  2978. name: "Back",
  2979. image: {
  2980. source: "./media/characters/kalista/back.svg",
  2981. extra: 1366 / 1156,
  2982. bottom: 33.9 / 1362.78
  2983. }
  2984. }
  2985. },
  2986. [
  2987. {
  2988. name: "Uncomfortably Small",
  2989. height: math.unit(10, "feet")
  2990. },
  2991. {
  2992. name: "Small",
  2993. height: math.unit(30, "feet")
  2994. },
  2995. {
  2996. name: "Macro",
  2997. height: math.unit(100, "feet"),
  2998. default: true
  2999. },
  3000. {
  3001. name: "Macro+",
  3002. height: math.unit(2000, "feet")
  3003. },
  3004. {
  3005. name: "True Form",
  3006. height: math.unit(8924, "miles")
  3007. }
  3008. ]
  3009. ))
  3010. characterMakers.push(() => makeCharacter(
  3011. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3012. {
  3013. front: {
  3014. height: math.unit(2, "meter"),
  3015. weight: math.unit(120, "kg"),
  3016. name: "Front",
  3017. image: {
  3018. source: "./media/characters/ggv/front.svg"
  3019. }
  3020. },
  3021. side: {
  3022. height: math.unit(2, "meter"),
  3023. weight: math.unit(120, "kg"),
  3024. name: "Side",
  3025. image: {
  3026. source: "./media/characters/ggv/side.svg"
  3027. }
  3028. }
  3029. },
  3030. [
  3031. {
  3032. name: "Extremely Puny",
  3033. height: math.unit(9 + 5 / 12, "feet")
  3034. },
  3035. {
  3036. name: "Horribly Small",
  3037. height: math.unit(47.7, "miles"),
  3038. default: true
  3039. },
  3040. {
  3041. name: "Reasonably Sized",
  3042. height: math.unit(25000, "parsecs")
  3043. },
  3044. {
  3045. name: "Slightly Uncompressed",
  3046. height: math.unit(7.77e31, "parsecs")
  3047. },
  3048. {
  3049. name: "Omniversal",
  3050. height: math.unit(1e300, "meters")
  3051. },
  3052. ]
  3053. ))
  3054. characterMakers.push(() => makeCharacter(
  3055. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3056. {
  3057. front: {
  3058. height: math.unit(2, "meter"),
  3059. weight: math.unit(75, "lb"),
  3060. name: "Front",
  3061. image: {
  3062. source: "./media/characters/napalm/front.svg"
  3063. }
  3064. },
  3065. back: {
  3066. height: math.unit(2, "meter"),
  3067. weight: math.unit(75, "lb"),
  3068. name: "Back",
  3069. image: {
  3070. source: "./media/characters/napalm/back.svg"
  3071. }
  3072. }
  3073. },
  3074. [
  3075. {
  3076. name: "Standard",
  3077. height: math.unit(55, "feet"),
  3078. default: true
  3079. }
  3080. ]
  3081. ))
  3082. characterMakers.push(() => makeCharacter(
  3083. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3084. {
  3085. front: {
  3086. height: math.unit(7 + 5 / 6, "feet"),
  3087. weight: math.unit(325, "lb"),
  3088. name: "Front",
  3089. image: {
  3090. source: "./media/characters/asana/front.svg",
  3091. extra: 1133 / 1060,
  3092. bottom: 15.2/1148.6
  3093. }
  3094. },
  3095. back: {
  3096. height: math.unit(7 + 5 / 6, "feet"),
  3097. weight: math.unit(325, "lb"),
  3098. name: "Back",
  3099. image: {
  3100. source: "./media/characters/asana/back.svg",
  3101. extra: 1114 / 1043,
  3102. bottom: 5/1120
  3103. }
  3104. },
  3105. dressedDark: {
  3106. height: math.unit(7 + 5 / 6, "feet"),
  3107. weight: math.unit(325, "lb"),
  3108. name: "Dressed (Dark)",
  3109. image: {
  3110. source: "./media/characters/asana/dressed-dark.svg",
  3111. extra: 1133 / 1060,
  3112. bottom: 15.2/1148.6
  3113. }
  3114. },
  3115. dressedLight: {
  3116. height: math.unit(7 + 5 / 6, "feet"),
  3117. weight: math.unit(325, "lb"),
  3118. name: "Dressed (Light)",
  3119. image: {
  3120. source: "./media/characters/asana/dressed-light.svg",
  3121. extra: 1133 / 1060,
  3122. bottom: 15.2/1148.6
  3123. }
  3124. },
  3125. },
  3126. [
  3127. {
  3128. name: "Standard",
  3129. height: math.unit(7 + 5 / 6, "feet"),
  3130. default: true
  3131. },
  3132. {
  3133. name: "Large",
  3134. height: math.unit(10, "meters")
  3135. },
  3136. {
  3137. name: "Macro",
  3138. height: math.unit(2500, "meters")
  3139. },
  3140. {
  3141. name: "Megamacro",
  3142. height: math.unit(5e6, "meters")
  3143. },
  3144. {
  3145. name: "Examacro",
  3146. height: math.unit(5e12, "lightyears")
  3147. },
  3148. {
  3149. name: "Max Size",
  3150. height: math.unit(1e31, "lightyears")
  3151. }
  3152. ]
  3153. ))
  3154. characterMakers.push(() => makeCharacter(
  3155. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3156. {
  3157. front: {
  3158. height: math.unit(2, "meter"),
  3159. weight: math.unit(60, "kg"),
  3160. name: "Front",
  3161. image: {
  3162. source: "./media/characters/ebony/front.svg",
  3163. bottom: 0.03,
  3164. extra: 1045 / 810 + 0.03
  3165. }
  3166. },
  3167. side: {
  3168. height: math.unit(2, "meter"),
  3169. weight: math.unit(60, "kg"),
  3170. name: "Side",
  3171. image: {
  3172. source: "./media/characters/ebony/side.svg",
  3173. bottom: 0.03,
  3174. extra: 1045 / 810 + 0.03
  3175. }
  3176. },
  3177. back: {
  3178. height: math.unit(2, "meter"),
  3179. weight: math.unit(60, "kg"),
  3180. name: "Back",
  3181. image: {
  3182. source: "./media/characters/ebony/back.svg",
  3183. bottom: 0.01,
  3184. extra: 1045 / 810 + 0.01
  3185. }
  3186. },
  3187. },
  3188. [
  3189. // TODO check why I did this lol
  3190. {
  3191. name: "Standard",
  3192. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3193. default: true
  3194. },
  3195. {
  3196. name: "Macro",
  3197. height: math.unit(200, "feet")
  3198. },
  3199. {
  3200. name: "Gigamacro",
  3201. height: math.unit(13000, "km")
  3202. }
  3203. ]
  3204. ))
  3205. characterMakers.push(() => makeCharacter(
  3206. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3207. {
  3208. front: {
  3209. height: math.unit(6, "feet"),
  3210. weight: math.unit(175, "lb"),
  3211. name: "Front",
  3212. image: {
  3213. source: "./media/characters/mountain/front.svg",
  3214. extra: 972/955,
  3215. bottom: 64/1036.6
  3216. }
  3217. },
  3218. back: {
  3219. height: math.unit(6, "feet"),
  3220. weight: math.unit(175, "lb"),
  3221. name: "Back",
  3222. image: {
  3223. source: "./media/characters/mountain/back.svg",
  3224. extra: 970/950,
  3225. bottom: 28.25/999
  3226. }
  3227. },
  3228. },
  3229. [
  3230. {
  3231. name: "Large",
  3232. height: math.unit(20, "meters")
  3233. },
  3234. {
  3235. name: "Macro",
  3236. height: math.unit(300, "meters")
  3237. },
  3238. {
  3239. name: "Gigamacro",
  3240. height: math.unit(10000, "km"),
  3241. default: true
  3242. },
  3243. {
  3244. name: "Examacro",
  3245. height: math.unit(10e9, "lightyears")
  3246. }
  3247. ]
  3248. ))
  3249. characterMakers.push(() => makeCharacter(
  3250. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3251. {
  3252. front: {
  3253. height: math.unit(8, "feet"),
  3254. weight: math.unit(500, "lb"),
  3255. name: "Front",
  3256. image: {
  3257. source: "./media/characters/rick/front.svg"
  3258. }
  3259. }
  3260. },
  3261. [
  3262. {
  3263. name: "Normal",
  3264. height: math.unit(8, "feet"),
  3265. default: true
  3266. },
  3267. {
  3268. name: "Macro",
  3269. height: math.unit(5, "km")
  3270. }
  3271. ]
  3272. ))
  3273. characterMakers.push(() => makeCharacter(
  3274. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3275. {
  3276. front: {
  3277. height: math.unit(8, "feet"),
  3278. weight: math.unit(120, "lb"),
  3279. name: "Front",
  3280. image: {
  3281. source: "./media/characters/ona/front.svg"
  3282. }
  3283. },
  3284. frontAlt: {
  3285. height: math.unit(8, "feet"),
  3286. weight: math.unit(120, "lb"),
  3287. name: "Front (Alt)",
  3288. image: {
  3289. source: "./media/characters/ona/front-alt.svg"
  3290. }
  3291. },
  3292. back: {
  3293. height: math.unit(8, "feet"),
  3294. weight: math.unit(120, "lb"),
  3295. name: "Back",
  3296. image: {
  3297. source: "./media/characters/ona/back.svg"
  3298. }
  3299. },
  3300. foot: {
  3301. height: math.unit(1.1, "feet"),
  3302. name: "Foot",
  3303. image: {
  3304. source: "./media/characters/ona/foot.svg"
  3305. }
  3306. }
  3307. },
  3308. [
  3309. {
  3310. name: "Megamacro",
  3311. height: math.unit(70, "km"),
  3312. default: true
  3313. },
  3314. {
  3315. name: "Gigamacro",
  3316. height: math.unit(681818, "miles")
  3317. },
  3318. {
  3319. name: "Examacro",
  3320. height: math.unit(3800000, "lightyears")
  3321. },
  3322. ]
  3323. ))
  3324. characterMakers.push(() => makeCharacter(
  3325. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3326. {
  3327. front: {
  3328. height: math.unit(12, "feet"),
  3329. weight: math.unit(3000, "lb"),
  3330. name: "Front",
  3331. image: {
  3332. source: "./media/characters/mech/front.svg",
  3333. bottom: 0.025,
  3334. }
  3335. },
  3336. back: {
  3337. height: math.unit(12, "feet"),
  3338. weight: math.unit(3000, "lb"),
  3339. name: "Back",
  3340. image: {
  3341. source: "./media/characters/mech/back.svg",
  3342. bottom: 0.03,
  3343. }
  3344. }
  3345. },
  3346. [
  3347. {
  3348. name: "Normal",
  3349. height: math.unit(12, "feet")
  3350. },
  3351. {
  3352. name: "Macro",
  3353. height: math.unit(300, "feet"),
  3354. default: true
  3355. },
  3356. {
  3357. name: "Macro+",
  3358. height: math.unit(1500, "feet")
  3359. },
  3360. ]
  3361. ))
  3362. characterMakers.push(() => makeCharacter(
  3363. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3364. {
  3365. front: {
  3366. height: math.unit(1.3, "meter"),
  3367. weight: math.unit(30, "kg"),
  3368. name: "Front",
  3369. image: {
  3370. source: "./media/characters/gregory/front.svg",
  3371. }
  3372. }
  3373. },
  3374. [
  3375. {
  3376. name: "Normal",
  3377. height: math.unit(1.3, "meter"),
  3378. default: true
  3379. },
  3380. {
  3381. name: "Macro",
  3382. height: math.unit(20, "meter")
  3383. }
  3384. ]
  3385. ))
  3386. characterMakers.push(() => makeCharacter(
  3387. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3388. {
  3389. front: {
  3390. height: math.unit(2.8, "meter"),
  3391. weight: math.unit(200, "kg"),
  3392. name: "Front",
  3393. image: {
  3394. source: "./media/characters/elory/front.svg",
  3395. }
  3396. }
  3397. },
  3398. [
  3399. {
  3400. name: "Normal",
  3401. height: math.unit(2.8, "meter"),
  3402. default: true
  3403. },
  3404. {
  3405. name: "Macro",
  3406. height: math.unit(38, "meter")
  3407. }
  3408. ]
  3409. ))
  3410. characterMakers.push(() => makeCharacter(
  3411. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3412. {
  3413. front: {
  3414. height: math.unit(470, "feet"),
  3415. weight: math.unit(924, "tons"),
  3416. name: "Front",
  3417. image: {
  3418. source: "./media/characters/angelpatamon/front.svg",
  3419. }
  3420. }
  3421. },
  3422. [
  3423. {
  3424. name: "Normal",
  3425. height: math.unit(470, "feet"),
  3426. default: true
  3427. },
  3428. {
  3429. name: "Deity Size I",
  3430. height: math.unit(28651.2, "km")
  3431. },
  3432. {
  3433. name: "Deity Size II",
  3434. height: math.unit(171907.2, "km")
  3435. }
  3436. ]
  3437. ))
  3438. characterMakers.push(() => makeCharacter(
  3439. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3440. {
  3441. side: {
  3442. height: math.unit(7.2, "meter"),
  3443. weight: math.unit(8.2, "tons"),
  3444. name: "Side",
  3445. image: {
  3446. source: "./media/characters/cryae/side.svg",
  3447. extra: 3500 / 1500
  3448. }
  3449. }
  3450. },
  3451. [
  3452. {
  3453. name: "Normal",
  3454. height: math.unit(7.2, "meter"),
  3455. default: true
  3456. }
  3457. ]
  3458. ))
  3459. characterMakers.push(() => makeCharacter(
  3460. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3461. {
  3462. front: {
  3463. height: math.unit(6, "feet"),
  3464. weight: math.unit(175, "lb"),
  3465. name: "Front",
  3466. image: {
  3467. source: "./media/characters/xera/front.svg",
  3468. extra: 2377 / 1972,
  3469. bottom: 75.5/2452
  3470. }
  3471. },
  3472. side: {
  3473. height: math.unit(6, "feet"),
  3474. weight: math.unit(175, "lb"),
  3475. name: "Side",
  3476. image: {
  3477. source: "./media/characters/xera/side.svg",
  3478. extra: 2345/2019,
  3479. bottom: 39.7/2384
  3480. }
  3481. },
  3482. back: {
  3483. height: math.unit(6, "feet"),
  3484. weight: math.unit(175, "lb"),
  3485. name: "Back",
  3486. image: {
  3487. source: "./media/characters/xera/back.svg",
  3488. extra: 2095/1984,
  3489. bottom: 67/2166
  3490. }
  3491. },
  3492. },
  3493. [
  3494. {
  3495. name: "Small",
  3496. height: math.unit(10, "feet")
  3497. },
  3498. {
  3499. name: "Macro",
  3500. height: math.unit(500, "meters"),
  3501. default: true
  3502. },
  3503. {
  3504. name: "Macro+",
  3505. height: math.unit(10, "km")
  3506. },
  3507. {
  3508. name: "Gigamacro",
  3509. height: math.unit(25000, "km")
  3510. },
  3511. {
  3512. name: "Teramacro",
  3513. height: math.unit(3e6, "km")
  3514. }
  3515. ]
  3516. ))
  3517. characterMakers.push(() => makeCharacter(
  3518. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3519. {
  3520. front: {
  3521. height: math.unit(6, "feet"),
  3522. weight: math.unit(175, "lb"),
  3523. name: "Front",
  3524. image: {
  3525. source: "./media/characters/nebula/front.svg",
  3526. extra: 2566/2362,
  3527. bottom: 81/2644
  3528. }
  3529. }
  3530. },
  3531. [
  3532. {
  3533. name: "Small",
  3534. height: math.unit(4.5, "meters")
  3535. },
  3536. {
  3537. name: "Macro",
  3538. height: math.unit(1500, "meters"),
  3539. default: true
  3540. },
  3541. {
  3542. name: "Megamacro",
  3543. height: math.unit(150, "km")
  3544. },
  3545. {
  3546. name: "Gigamacro",
  3547. height: math.unit(27000, "km")
  3548. }
  3549. ]
  3550. ))
  3551. characterMakers.push(() => makeCharacter(
  3552. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3553. {
  3554. front: {
  3555. height: math.unit(6, "feet"),
  3556. weight: math.unit(225, "lb"),
  3557. name: "Front",
  3558. image: {
  3559. source: "./media/characters/abysgar/front.svg"
  3560. }
  3561. }
  3562. },
  3563. [
  3564. {
  3565. name: "Small",
  3566. height: math.unit(4.5, "meters")
  3567. },
  3568. {
  3569. name: "Macro",
  3570. height: math.unit(1250, "meters"),
  3571. default: true
  3572. },
  3573. {
  3574. name: "Megamacro",
  3575. height: math.unit(125, "km")
  3576. },
  3577. {
  3578. name: "Gigamacro",
  3579. height: math.unit(26000, "km")
  3580. }
  3581. ]
  3582. ))
  3583. characterMakers.push(() => makeCharacter(
  3584. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3585. {
  3586. front: {
  3587. height: math.unit(6, "feet"),
  3588. weight: math.unit(180, "lb"),
  3589. name: "Front",
  3590. image: {
  3591. source: "./media/characters/yakuz/front.svg"
  3592. }
  3593. }
  3594. },
  3595. [
  3596. {
  3597. name: "Small",
  3598. height: math.unit(5, "meters")
  3599. },
  3600. {
  3601. name: "Macro",
  3602. height: math.unit(1500, "meters"),
  3603. default: true
  3604. },
  3605. {
  3606. name: "Megamacro",
  3607. height: math.unit(200, "km")
  3608. },
  3609. {
  3610. name: "Gigamacro",
  3611. height: math.unit(100000, "km")
  3612. }
  3613. ]
  3614. ))
  3615. characterMakers.push(() => makeCharacter(
  3616. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3617. {
  3618. front: {
  3619. height: math.unit(6, "feet"),
  3620. weight: math.unit(175, "lb"),
  3621. name: "Front",
  3622. image: {
  3623. source: "./media/characters/mirova/front.svg",
  3624. extra: 3334/3071,
  3625. bottom: 42/3375.6
  3626. }
  3627. }
  3628. },
  3629. [
  3630. {
  3631. name: "Small",
  3632. height: math.unit(5, "meters")
  3633. },
  3634. {
  3635. name: "Macro",
  3636. height: math.unit(900, "meters"),
  3637. default: true
  3638. },
  3639. {
  3640. name: "Megamacro",
  3641. height: math.unit(135, "km")
  3642. },
  3643. {
  3644. name: "Gigamacro",
  3645. height: math.unit(20000, "km")
  3646. }
  3647. ]
  3648. ))
  3649. characterMakers.push(() => makeCharacter(
  3650. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3651. {
  3652. side: {
  3653. height: math.unit(28.35, "feet"),
  3654. weight: math.unit(99.75, "tons"),
  3655. name: "Side",
  3656. image: {
  3657. source: "./media/characters/asana-mech/side.svg",
  3658. extra: 923/699,
  3659. bottom: 50/975
  3660. }
  3661. },
  3662. chaingun: {
  3663. height: math.unit(7, "feet"),
  3664. weight: math.unit(2400, "lb"),
  3665. name: "Chaingun",
  3666. image: {
  3667. source: "./media/characters/asana-mech/chaingun.svg"
  3668. }
  3669. },
  3670. laser: {
  3671. height: math.unit(7.12, "feet"),
  3672. weight: math.unit(2000, "lb"),
  3673. name: "Laser",
  3674. image: {
  3675. source: "./media/characters/asana-mech/laser.svg"
  3676. }
  3677. },
  3678. },
  3679. [
  3680. {
  3681. name: "Normal",
  3682. height: math.unit(28.35, "feet"),
  3683. default: true
  3684. },
  3685. {
  3686. name: "Macro",
  3687. height: math.unit(2500, "feet")
  3688. },
  3689. {
  3690. name: "Megamacro",
  3691. height: math.unit(25, "miles")
  3692. },
  3693. {
  3694. name: "Examacro",
  3695. height: math.unit(6e8, "lightyears")
  3696. },
  3697. ]
  3698. ))
  3699. characterMakers.push(() => makeCharacter(
  3700. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3701. {
  3702. front: {
  3703. height: math.unit(5, "meters"),
  3704. weight: math.unit(1000, "kg"),
  3705. name: "Front",
  3706. image: {
  3707. source: "./media/characters/asche/front.svg",
  3708. extra: 1258/1190,
  3709. bottom: 47/1305
  3710. }
  3711. },
  3712. frontUnderwear: {
  3713. height: math.unit(5, "meters"),
  3714. weight: math.unit(1000, "kg"),
  3715. name: "Front (Underwear)",
  3716. image: {
  3717. source: "./media/characters/asche/front-underwear.svg",
  3718. extra: 1258/1190,
  3719. bottom: 47/1305
  3720. }
  3721. },
  3722. frontDressed: {
  3723. height: math.unit(5, "meters"),
  3724. weight: math.unit(1000, "kg"),
  3725. name: "Front (Dressed)",
  3726. image: {
  3727. source: "./media/characters/asche/front-dressed.svg",
  3728. extra: 1258/1190,
  3729. bottom: 47/1305
  3730. }
  3731. },
  3732. frontArmor: {
  3733. height: math.unit(5, "meters"),
  3734. weight: math.unit(1000, "kg"),
  3735. name: "Front (Armored)",
  3736. image: {
  3737. source: "./media/characters/asche/front-armored.svg",
  3738. extra: 1374 / 1308,
  3739. bottom: 23/1397
  3740. }
  3741. },
  3742. mp724: {
  3743. height: math.unit(0.96, "meters"),
  3744. weight: math.unit(38, "kg"),
  3745. name: "H&K MP724",
  3746. image: {
  3747. source: "./media/characters/asche/h&k-mp724.svg"
  3748. }
  3749. },
  3750. side: {
  3751. height: math.unit(5, "meters"),
  3752. weight: math.unit(1000, "kg"),
  3753. name: "Side",
  3754. image: {
  3755. source: "./media/characters/asche/side.svg",
  3756. extra: 1717 / 1609,
  3757. bottom: 0.005
  3758. }
  3759. },
  3760. back: {
  3761. height: math.unit(5, "meters"),
  3762. weight: math.unit(1000, "kg"),
  3763. name: "Back",
  3764. image: {
  3765. source: "./media/characters/asche/back.svg",
  3766. extra: 1570 / 1501
  3767. }
  3768. },
  3769. },
  3770. [
  3771. {
  3772. name: "DEFCON 5",
  3773. height: math.unit(5, "meters")
  3774. },
  3775. {
  3776. name: "DEFCON 4",
  3777. height: math.unit(500, "meters"),
  3778. default: true
  3779. },
  3780. {
  3781. name: "DEFCON 3",
  3782. height: math.unit(5, "km")
  3783. },
  3784. {
  3785. name: "DEFCON 2",
  3786. height: math.unit(500, "km")
  3787. },
  3788. {
  3789. name: "DEFCON 1",
  3790. height: math.unit(500000, "km")
  3791. },
  3792. {
  3793. name: "DEFCON 0",
  3794. height: math.unit(3, "gigaparsecs")
  3795. },
  3796. ]
  3797. ))
  3798. characterMakers.push(() => makeCharacter(
  3799. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3800. {
  3801. front: {
  3802. height: math.unit(2, "meters"),
  3803. weight: math.unit(76, "kg"),
  3804. name: "Front",
  3805. image: {
  3806. source: "./media/characters/gale/front.svg"
  3807. }
  3808. },
  3809. frontAlt1: {
  3810. height: math.unit(2, "meters"),
  3811. weight: math.unit(76, "kg"),
  3812. name: "Front (Alt 1)",
  3813. image: {
  3814. source: "./media/characters/gale/front-alt-1.svg"
  3815. }
  3816. },
  3817. frontAlt2: {
  3818. height: math.unit(2, "meters"),
  3819. weight: math.unit(76, "kg"),
  3820. name: "Front (Alt 2)",
  3821. image: {
  3822. source: "./media/characters/gale/front-alt-2.svg"
  3823. }
  3824. },
  3825. },
  3826. [
  3827. {
  3828. name: "Normal",
  3829. height: math.unit(7, "feet")
  3830. },
  3831. {
  3832. name: "Macro",
  3833. height: math.unit(150, "feet"),
  3834. default: true
  3835. },
  3836. {
  3837. name: "Macro+",
  3838. height: math.unit(300, "feet")
  3839. },
  3840. ]
  3841. ))
  3842. characterMakers.push(() => makeCharacter(
  3843. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3844. {
  3845. front: {
  3846. height: math.unit(2, "meters"),
  3847. weight: math.unit(76, "kg"),
  3848. name: "Front",
  3849. image: {
  3850. source: "./media/characters/draylen/front.svg"
  3851. }
  3852. }
  3853. },
  3854. [
  3855. {
  3856. name: "Macro",
  3857. height: math.unit(150, "feet"),
  3858. default: true
  3859. }
  3860. ]
  3861. ))
  3862. characterMakers.push(() => makeCharacter(
  3863. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  3864. {
  3865. front: {
  3866. height: math.unit(7 + 9 / 12, "feet"),
  3867. weight: math.unit(379, "lbs"),
  3868. name: "Front",
  3869. image: {
  3870. source: "./media/characters/chez/front.svg"
  3871. }
  3872. },
  3873. side: {
  3874. height: math.unit(7 + 9 / 12, "feet"),
  3875. weight: math.unit(379, "lbs"),
  3876. name: "Side",
  3877. image: {
  3878. source: "./media/characters/chez/side.svg"
  3879. }
  3880. }
  3881. },
  3882. [
  3883. {
  3884. name: "Normal",
  3885. height: math.unit(7 + 9 / 12, "feet"),
  3886. default: true
  3887. },
  3888. {
  3889. name: "God King",
  3890. height: math.unit(9750000, "meters")
  3891. }
  3892. ]
  3893. ))
  3894. characterMakers.push(() => makeCharacter(
  3895. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  3896. {
  3897. front: {
  3898. height: math.unit(6, "feet"),
  3899. weight: math.unit(275, "lbs"),
  3900. name: "Front",
  3901. image: {
  3902. source: "./media/characters/kaylum/front.svg",
  3903. bottom: 0.01,
  3904. extra: 1166 / 1031
  3905. }
  3906. },
  3907. frontWingless: {
  3908. height: math.unit(6, "feet"),
  3909. weight: math.unit(275, "lbs"),
  3910. name: "Front (Wingless)",
  3911. image: {
  3912. source: "./media/characters/kaylum/front-wingless.svg",
  3913. bottom: 0.01,
  3914. extra: 1117 / 1031
  3915. }
  3916. }
  3917. },
  3918. [
  3919. {
  3920. name: "Normal",
  3921. height: math.unit(3.05, "meters")
  3922. },
  3923. {
  3924. name: "Master",
  3925. height: math.unit(5.5, "meters")
  3926. },
  3927. {
  3928. name: "Rampage",
  3929. height: math.unit(19, "meters")
  3930. },
  3931. {
  3932. name: "Macro Lite",
  3933. height: math.unit(37, "meters")
  3934. },
  3935. {
  3936. name: "Hyper Predator",
  3937. height: math.unit(61, "meters")
  3938. },
  3939. {
  3940. name: "Macro",
  3941. height: math.unit(138, "meters"),
  3942. default: true
  3943. }
  3944. ]
  3945. ))
  3946. characterMakers.push(() => makeCharacter(
  3947. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  3948. {
  3949. front: {
  3950. height: math.unit(6, "feet"),
  3951. weight: math.unit(150, "lbs"),
  3952. name: "Front",
  3953. image: {
  3954. source: "./media/characters/geta/front.svg"
  3955. }
  3956. }
  3957. },
  3958. [
  3959. {
  3960. name: "Micro",
  3961. height: math.unit(3, "inches"),
  3962. default: true
  3963. },
  3964. {
  3965. name: "Normal",
  3966. height: math.unit(5 + 5 / 12, "feet")
  3967. }
  3968. ]
  3969. ))
  3970. characterMakers.push(() => makeCharacter(
  3971. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  3972. {
  3973. front: {
  3974. height: math.unit(6, "feet"),
  3975. weight: math.unit(300, "lbs"),
  3976. name: "Front",
  3977. image: {
  3978. source: "./media/characters/tyrnn/front.svg"
  3979. }
  3980. }
  3981. },
  3982. [
  3983. {
  3984. name: "Main Height",
  3985. height: math.unit(355, "feet"),
  3986. default: true
  3987. },
  3988. {
  3989. name: "Fave. Height",
  3990. height: math.unit(2400, "feet")
  3991. }
  3992. ]
  3993. ))
  3994. characterMakers.push(() => makeCharacter(
  3995. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  3996. {
  3997. front: {
  3998. height: math.unit(6, "feet"),
  3999. weight: math.unit(300, "lbs"),
  4000. name: "Front",
  4001. image: {
  4002. source: "./media/characters/appledectomy/front.svg"
  4003. }
  4004. }
  4005. },
  4006. [
  4007. {
  4008. name: "Macro",
  4009. height: math.unit(2500, "feet")
  4010. },
  4011. {
  4012. name: "Megamacro",
  4013. height: math.unit(50, "miles"),
  4014. default: true
  4015. },
  4016. {
  4017. name: "Gigamacro",
  4018. height: math.unit(5000, "miles")
  4019. },
  4020. {
  4021. name: "Teramacro",
  4022. height: math.unit(250000, "miles")
  4023. },
  4024. ]
  4025. ))
  4026. characterMakers.push(() => makeCharacter(
  4027. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4028. {
  4029. front: {
  4030. height: math.unit(6, "feet"),
  4031. weight: math.unit(200, "lbs"),
  4032. name: "Front",
  4033. image: {
  4034. source: "./media/characters/vulpes/front.svg",
  4035. extra: 573 / 543,
  4036. bottom: 0.033
  4037. }
  4038. },
  4039. side: {
  4040. height: math.unit(6, "feet"),
  4041. weight: math.unit(200, "lbs"),
  4042. name: "Side",
  4043. image: {
  4044. source: "./media/characters/vulpes/side.svg",
  4045. extra: 573 / 543,
  4046. bottom: 0.01
  4047. }
  4048. },
  4049. back: {
  4050. height: math.unit(6, "feet"),
  4051. weight: math.unit(200, "lbs"),
  4052. name: "Back",
  4053. image: {
  4054. source: "./media/characters/vulpes/back.svg",
  4055. extra: 573 / 543,
  4056. }
  4057. },
  4058. feet: {
  4059. height: math.unit(1.276, "feet"),
  4060. name: "Feet",
  4061. image: {
  4062. source: "./media/characters/vulpes/feet.svg"
  4063. }
  4064. },
  4065. maw: {
  4066. height: math.unit(1.18, "feet"),
  4067. name: "Maw",
  4068. image: {
  4069. source: "./media/characters/vulpes/maw.svg"
  4070. }
  4071. },
  4072. },
  4073. [
  4074. {
  4075. name: "Micro",
  4076. height: math.unit(2, "inches")
  4077. },
  4078. {
  4079. name: "Normal",
  4080. height: math.unit(6.3, "feet")
  4081. },
  4082. {
  4083. name: "Macro",
  4084. height: math.unit(850, "feet")
  4085. },
  4086. {
  4087. name: "Megamacro",
  4088. height: math.unit(7500, "feet"),
  4089. default: true
  4090. },
  4091. {
  4092. name: "Gigamacro",
  4093. height: math.unit(570000, "miles")
  4094. }
  4095. ]
  4096. ))
  4097. characterMakers.push(() => makeCharacter(
  4098. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4099. {
  4100. front: {
  4101. height: math.unit(6, "feet"),
  4102. weight: math.unit(210, "lbs"),
  4103. name: "Front",
  4104. image: {
  4105. source: "./media/characters/rain-fallen/front.svg"
  4106. }
  4107. },
  4108. side: {
  4109. height: math.unit(6, "feet"),
  4110. weight: math.unit(210, "lbs"),
  4111. name: "Side",
  4112. image: {
  4113. source: "./media/characters/rain-fallen/side.svg"
  4114. }
  4115. },
  4116. back: {
  4117. height: math.unit(6, "feet"),
  4118. weight: math.unit(210, "lbs"),
  4119. name: "Back",
  4120. image: {
  4121. source: "./media/characters/rain-fallen/back.svg"
  4122. }
  4123. },
  4124. feral: {
  4125. height: math.unit(9, "feet"),
  4126. weight: math.unit(700, "lbs"),
  4127. name: "Feral",
  4128. image: {
  4129. source: "./media/characters/rain-fallen/feral.svg"
  4130. }
  4131. },
  4132. },
  4133. [
  4134. {
  4135. name: "Normal",
  4136. height: math.unit(5, "meter")
  4137. },
  4138. {
  4139. name: "Macro",
  4140. height: math.unit(150, "meter"),
  4141. default: true
  4142. },
  4143. {
  4144. name: "Megamacro",
  4145. height: math.unit(278e6, "meter")
  4146. },
  4147. {
  4148. name: "Gigamacro",
  4149. height: math.unit(2e9, "meter")
  4150. },
  4151. {
  4152. name: "Teramacro",
  4153. height: math.unit(8e12, "meter")
  4154. },
  4155. {
  4156. name: "Devourer",
  4157. height: math.unit(14, "zettameters")
  4158. },
  4159. {
  4160. name: "Scarlet King",
  4161. height: math.unit(18, "yottameters")
  4162. },
  4163. {
  4164. name: "Void",
  4165. height: math.unit(6.66e66, "yottameters")
  4166. }
  4167. ]
  4168. ))
  4169. characterMakers.push(() => makeCharacter(
  4170. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4171. {
  4172. standing: {
  4173. height: math.unit(6, "feet"),
  4174. weight: math.unit(180, "lbs"),
  4175. name: "Standing",
  4176. image: {
  4177. source: "./media/characters/zaakira/standing.svg"
  4178. }
  4179. },
  4180. laying: {
  4181. height: math.unit(3, "feet"),
  4182. weight: math.unit(180, "lbs"),
  4183. name: "Laying",
  4184. image: {
  4185. source: "./media/characters/zaakira/laying.svg"
  4186. }
  4187. },
  4188. },
  4189. [
  4190. {
  4191. name: "Normal",
  4192. height: math.unit(12, "feet")
  4193. },
  4194. {
  4195. name: "Macro",
  4196. height: math.unit(279, "feet"),
  4197. default: true
  4198. }
  4199. ]
  4200. ))
  4201. characterMakers.push(() => makeCharacter(
  4202. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4203. {
  4204. front: {
  4205. height: math.unit(6, "feet"),
  4206. weight: math.unit(250, "lbs"),
  4207. name: "Front",
  4208. image: {
  4209. source: "./media/characters/sigvald/front.svg",
  4210. extra: 1000 / 850
  4211. }
  4212. },
  4213. back: {
  4214. height: math.unit(6, "feet"),
  4215. weight: math.unit(250, "lbs"),
  4216. name: "Back",
  4217. image: {
  4218. source: "./media/characters/sigvald/back.svg"
  4219. }
  4220. },
  4221. },
  4222. [
  4223. {
  4224. name: "Normal",
  4225. height: math.unit(8, "feet")
  4226. },
  4227. {
  4228. name: "Large",
  4229. height: math.unit(12, "feet")
  4230. },
  4231. {
  4232. name: "Larger",
  4233. height: math.unit(20, "feet")
  4234. },
  4235. {
  4236. name: "Macro",
  4237. height: math.unit(150, "feet")
  4238. },
  4239. {
  4240. name: "Macro+",
  4241. height: math.unit(200, "feet"),
  4242. default: true
  4243. },
  4244. ]
  4245. ))
  4246. characterMakers.push(() => makeCharacter(
  4247. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4248. {
  4249. side: {
  4250. height: math.unit(12, "feet"),
  4251. weight: math.unit(2000, "kg"),
  4252. name: "Side",
  4253. image: {
  4254. source: "./media/characters/scott/side.svg",
  4255. extra: 754 / 724,
  4256. bottom: 0.069
  4257. }
  4258. },
  4259. upright: {
  4260. height: math.unit(12, "feet"),
  4261. weight: math.unit(2000, "kg"),
  4262. name: "Upright",
  4263. image: {
  4264. source: "./media/characters/scott/upright.svg",
  4265. extra: 3881 / 3722,
  4266. bottom: 0.05
  4267. }
  4268. },
  4269. },
  4270. [
  4271. {
  4272. name: "Normal",
  4273. height: math.unit(12, "feet"),
  4274. default: true
  4275. },
  4276. ]
  4277. ))
  4278. characterMakers.push(() => makeCharacter(
  4279. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4280. {
  4281. side: {
  4282. height: math.unit(8, "meters"),
  4283. weight: math.unit(84755, "lbs"),
  4284. name: "Side",
  4285. image: {
  4286. source: "./media/characters/tobias/side.svg",
  4287. extra: 1474 / 1096,
  4288. bottom: 38.9 / 1513.1235
  4289. }
  4290. },
  4291. },
  4292. [
  4293. {
  4294. name: "Normal",
  4295. height: math.unit(8, "meters"),
  4296. default: true
  4297. },
  4298. ]
  4299. ))
  4300. characterMakers.push(() => makeCharacter(
  4301. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4302. {
  4303. front: {
  4304. height: math.unit(5.5, "feet"),
  4305. weight: math.unit(400, "lbs"),
  4306. name: "Front",
  4307. image: {
  4308. source: "./media/characters/kieran/front.svg",
  4309. extra: 2694 / 2364,
  4310. bottom: 217 / 2908
  4311. }
  4312. },
  4313. side: {
  4314. height: math.unit(5.5, "feet"),
  4315. weight: math.unit(400, "lbs"),
  4316. name: "Side",
  4317. image: {
  4318. source: "./media/characters/kieran/side.svg",
  4319. extra: 875 / 777,
  4320. bottom: 84.6 / 959
  4321. }
  4322. },
  4323. },
  4324. [
  4325. {
  4326. name: "Normal",
  4327. height: math.unit(5.5, "feet"),
  4328. default: true
  4329. },
  4330. ]
  4331. ))
  4332. characterMakers.push(() => makeCharacter(
  4333. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4334. {
  4335. side: {
  4336. height: math.unit(2, "meters"),
  4337. weight: math.unit(70, "kg"),
  4338. name: "Side",
  4339. image: {
  4340. source: "./media/characters/sanya/side.svg",
  4341. bottom: 0.02,
  4342. extra: 1.02
  4343. }
  4344. },
  4345. },
  4346. [
  4347. {
  4348. name: "Small",
  4349. height: math.unit(2, "meters")
  4350. },
  4351. {
  4352. name: "Normal",
  4353. height: math.unit(3, "meters")
  4354. },
  4355. {
  4356. name: "Macro",
  4357. height: math.unit(16, "meters"),
  4358. default: true
  4359. },
  4360. ]
  4361. ))
  4362. characterMakers.push(() => makeCharacter(
  4363. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4364. {
  4365. front: {
  4366. height: math.unit(2, "meters"),
  4367. weight: math.unit(120, "kg"),
  4368. name: "Front",
  4369. image: {
  4370. source: "./media/characters/miranda/front.svg",
  4371. extra: 195/185,
  4372. bottom: 10.9/206.5
  4373. }
  4374. },
  4375. back: {
  4376. height: math.unit(2, "meters"),
  4377. weight: math.unit(120, "kg"),
  4378. name: "Back",
  4379. image: {
  4380. source: "./media/characters/miranda/back.svg",
  4381. extra: 201/193,
  4382. bottom: 2.3/203.7
  4383. }
  4384. },
  4385. },
  4386. [
  4387. {
  4388. name: "Normal",
  4389. height: math.unit(10, "feet"),
  4390. default: true
  4391. }
  4392. ]
  4393. ))
  4394. characterMakers.push(() => makeCharacter(
  4395. { name: "James", species: ["deer"], tags: ["anthro"] },
  4396. {
  4397. side: {
  4398. height: math.unit(2, "meters"),
  4399. weight: math.unit(100, "kg"),
  4400. name: "Front",
  4401. image: {
  4402. source: "./media/characters/james/front.svg",
  4403. extra: 10 / 8.5
  4404. }
  4405. },
  4406. },
  4407. [
  4408. {
  4409. name: "Normal",
  4410. height: math.unit(8.5, "feet"),
  4411. default: true
  4412. }
  4413. ]
  4414. ))
  4415. characterMakers.push(() => makeCharacter(
  4416. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4417. {
  4418. side: {
  4419. height: math.unit(9.5, "feet"),
  4420. weight: math.unit(2500, "lbs"),
  4421. name: "Side",
  4422. image: {
  4423. source: "./media/characters/heather/side.svg"
  4424. }
  4425. },
  4426. },
  4427. [
  4428. {
  4429. name: "Normal",
  4430. height: math.unit(9.5, "feet"),
  4431. default: true
  4432. }
  4433. ]
  4434. ))
  4435. characterMakers.push(() => makeCharacter(
  4436. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4437. {
  4438. side: {
  4439. height: math.unit(6.5, "feet"),
  4440. weight: math.unit(400, "lbs"),
  4441. name: "Side",
  4442. image: {
  4443. source: "./media/characters/lukas/side.svg",
  4444. extra: 7.25 / 6.5
  4445. }
  4446. },
  4447. },
  4448. [
  4449. {
  4450. name: "Normal",
  4451. height: math.unit(6.5, "feet"),
  4452. default: true
  4453. }
  4454. ]
  4455. ))
  4456. characterMakers.push(() => makeCharacter(
  4457. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4458. {
  4459. side: {
  4460. height: math.unit(5, "feet"),
  4461. weight: math.unit(3000, "lbs"),
  4462. name: "Side",
  4463. image: {
  4464. source: "./media/characters/louise/side.svg"
  4465. }
  4466. },
  4467. },
  4468. [
  4469. {
  4470. name: "Normal",
  4471. height: math.unit(5, "feet"),
  4472. default: true
  4473. }
  4474. ]
  4475. ))
  4476. characterMakers.push(() => makeCharacter(
  4477. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4478. {
  4479. side: {
  4480. height: math.unit(6, "feet"),
  4481. weight: math.unit(150, "lbs"),
  4482. name: "Side",
  4483. image: {
  4484. source: "./media/characters/ramona/side.svg"
  4485. }
  4486. },
  4487. },
  4488. [
  4489. {
  4490. name: "Normal",
  4491. height: math.unit(5.3, "meters"),
  4492. default: true
  4493. },
  4494. {
  4495. name: "Macro",
  4496. height: math.unit(20, "stories")
  4497. },
  4498. {
  4499. name: "Macro+",
  4500. height: math.unit(50, "stories")
  4501. },
  4502. ]
  4503. ))
  4504. characterMakers.push(() => makeCharacter(
  4505. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4506. {
  4507. standing: {
  4508. height: math.unit(5.75, "feet"),
  4509. weight: math.unit(160, "lbs"),
  4510. name: "Standing",
  4511. image: {
  4512. source: "./media/characters/deerpuff/standing.svg",
  4513. extra: 682 / 624
  4514. }
  4515. },
  4516. sitting: {
  4517. height: math.unit(5.75 / 1.79, "feet"),
  4518. weight: math.unit(160, "lbs"),
  4519. name: "Sitting",
  4520. image: {
  4521. source: "./media/characters/deerpuff/sitting.svg",
  4522. bottom: 44 / 400,
  4523. extra: 1
  4524. }
  4525. },
  4526. taurLaying: {
  4527. height: math.unit(6, "feet"),
  4528. weight: math.unit(400, "lbs"),
  4529. name: "Taur (Laying)",
  4530. image: {
  4531. source: "./media/characters/deerpuff/taur-laying.svg"
  4532. }
  4533. },
  4534. },
  4535. [
  4536. {
  4537. name: "Puffball",
  4538. height: math.unit(6, "inches")
  4539. },
  4540. {
  4541. name: "Normalpuff",
  4542. height: math.unit(5.75, "feet")
  4543. },
  4544. {
  4545. name: "Macropuff",
  4546. height: math.unit(1500, "feet"),
  4547. default: true
  4548. },
  4549. {
  4550. name: "Megapuff",
  4551. height: math.unit(500, "miles")
  4552. },
  4553. {
  4554. name: "Gigapuff",
  4555. height: math.unit(250000, "miles")
  4556. },
  4557. {
  4558. name: "Omegapuff",
  4559. height: math.unit(1000, "lightyears")
  4560. },
  4561. ]
  4562. ))
  4563. characterMakers.push(() => makeCharacter(
  4564. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4565. {
  4566. stomping: {
  4567. height: math.unit(6, "feet"),
  4568. weight: math.unit(170, "lbs"),
  4569. name: "Stomping",
  4570. image: {
  4571. source: "./media/characters/vivian/stomping.svg"
  4572. }
  4573. },
  4574. sitting: {
  4575. height: math.unit(6 / 1.75, "feet"),
  4576. weight: math.unit(170, "lbs"),
  4577. name: "Sitting",
  4578. image: {
  4579. source: "./media/characters/vivian/sitting.svg",
  4580. bottom: 1 / 6.4,
  4581. extra: 1,
  4582. }
  4583. },
  4584. },
  4585. [
  4586. {
  4587. name: "Normal",
  4588. height: math.unit(7, "feet"),
  4589. default: true
  4590. },
  4591. {
  4592. name: "Macro",
  4593. height: math.unit(10, "stories")
  4594. },
  4595. {
  4596. name: "Macro+",
  4597. height: math.unit(30, "stories")
  4598. },
  4599. {
  4600. name: "Megamacro",
  4601. height: math.unit(10, "miles")
  4602. },
  4603. {
  4604. name: "Megamacro+",
  4605. height: math.unit(2750000, "meters")
  4606. },
  4607. ]
  4608. ))
  4609. characterMakers.push(() => makeCharacter(
  4610. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4611. {
  4612. front: {
  4613. height: math.unit(6, "feet"),
  4614. weight: math.unit(160, "lbs"),
  4615. name: "Front",
  4616. image: {
  4617. source: "./media/characters/prince/front.svg",
  4618. extra: 3400 / 3000
  4619. }
  4620. },
  4621. jumping: {
  4622. height: math.unit(6, "feet"),
  4623. weight: math.unit(160, "lbs"),
  4624. name: "Jumping",
  4625. image: {
  4626. source: "./media/characters/prince/jump.svg",
  4627. extra: 2555 / 2134
  4628. }
  4629. },
  4630. },
  4631. [
  4632. {
  4633. name: "Normal",
  4634. height: math.unit(7.75, "feet"),
  4635. default: true
  4636. },
  4637. {
  4638. name: "Not cute",
  4639. height: math.unit(17, "feet")
  4640. },
  4641. {
  4642. name: "I said NOT",
  4643. height: math.unit(91, "feet")
  4644. },
  4645. {
  4646. name: "Please stop",
  4647. height: math.unit(560, "feet")
  4648. },
  4649. {
  4650. name: "What have you done",
  4651. height: math.unit(2200, "feet")
  4652. },
  4653. {
  4654. name: "Deer God",
  4655. height: math.unit(3.6, "miles")
  4656. },
  4657. ]
  4658. ))
  4659. characterMakers.push(() => makeCharacter(
  4660. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4661. {
  4662. standing: {
  4663. height: math.unit(6, "feet"),
  4664. weight: math.unit(300, "lbs"),
  4665. name: "Standing",
  4666. image: {
  4667. source: "./media/characters/psymon/standing.svg",
  4668. extra: 1888 / 1810,
  4669. bottom: 0.05
  4670. }
  4671. },
  4672. slithering: {
  4673. height: math.unit(6, "feet"),
  4674. weight: math.unit(300, "lbs"),
  4675. name: "Slithering",
  4676. image: {
  4677. source: "./media/characters/psymon/slithering.svg",
  4678. extra: 1330 / 1224
  4679. }
  4680. },
  4681. slitheringAlt: {
  4682. height: math.unit(6, "feet"),
  4683. weight: math.unit(300, "lbs"),
  4684. name: "Slithering (Alt)",
  4685. image: {
  4686. source: "./media/characters/psymon/slithering-alt.svg",
  4687. extra: 1330 / 1224
  4688. }
  4689. },
  4690. },
  4691. [
  4692. {
  4693. name: "Normal",
  4694. height: math.unit(11.25, "feet"),
  4695. default: true
  4696. },
  4697. {
  4698. name: "Large",
  4699. height: math.unit(27, "feet")
  4700. },
  4701. {
  4702. name: "Giant",
  4703. height: math.unit(87, "feet")
  4704. },
  4705. {
  4706. name: "Macro",
  4707. height: math.unit(365, "feet")
  4708. },
  4709. {
  4710. name: "Megamacro",
  4711. height: math.unit(3, "miles")
  4712. },
  4713. {
  4714. name: "World Serpent",
  4715. height: math.unit(8000, "miles")
  4716. },
  4717. ]
  4718. ))
  4719. characterMakers.push(() => makeCharacter(
  4720. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4721. {
  4722. front: {
  4723. height: math.unit(6, "feet"),
  4724. weight: math.unit(180, "lbs"),
  4725. name: "Front",
  4726. image: {
  4727. source: "./media/characters/daimos/front.svg",
  4728. extra: 4160 / 3897,
  4729. bottom: 0.021
  4730. }
  4731. }
  4732. },
  4733. [
  4734. {
  4735. name: "Normal",
  4736. height: math.unit(8, "feet"),
  4737. default: true
  4738. },
  4739. {
  4740. name: "Big Dog",
  4741. height: math.unit(22, "feet")
  4742. },
  4743. {
  4744. name: "Macro",
  4745. height: math.unit(127, "feet")
  4746. },
  4747. {
  4748. name: "Megamacro",
  4749. height: math.unit(3600, "feet")
  4750. },
  4751. ]
  4752. ))
  4753. characterMakers.push(() => makeCharacter(
  4754. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4755. {
  4756. side: {
  4757. height: math.unit(6, "feet"),
  4758. weight: math.unit(180, "lbs"),
  4759. name: "Side",
  4760. image: {
  4761. source: "./media/characters/blake/side.svg",
  4762. extra: 1212 / 1120,
  4763. bottom: 0.05
  4764. }
  4765. },
  4766. crouched: {
  4767. height: math.unit(6 * 0.57, "feet"),
  4768. weight: math.unit(180, "lbs"),
  4769. name: "Crouched",
  4770. image: {
  4771. source: "./media/characters/blake/crouched.svg",
  4772. extra: 840 / 587,
  4773. bottom: 0.04
  4774. }
  4775. },
  4776. bent: {
  4777. height: math.unit(6 * 0.75, "feet"),
  4778. weight: math.unit(180, "lbs"),
  4779. name: "Bent",
  4780. image: {
  4781. source: "./media/characters/blake/bent.svg",
  4782. extra: 592 / 544,
  4783. bottom: 0.035
  4784. }
  4785. },
  4786. },
  4787. [
  4788. {
  4789. name: "Normal",
  4790. height: math.unit(8 + 1 / 6, "feet"),
  4791. default: true
  4792. },
  4793. {
  4794. name: "Big Backside",
  4795. height: math.unit(37, "feet")
  4796. },
  4797. {
  4798. name: "Subway Shredder",
  4799. height: math.unit(72, "feet")
  4800. },
  4801. {
  4802. name: "City Carver",
  4803. height: math.unit(1675, "feet")
  4804. },
  4805. {
  4806. name: "Tectonic Tweaker",
  4807. height: math.unit(2300, "miles")
  4808. },
  4809. ]
  4810. ))
  4811. characterMakers.push(() => makeCharacter(
  4812. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  4813. {
  4814. front: {
  4815. height: math.unit(6, "feet"),
  4816. weight: math.unit(180, "lbs"),
  4817. name: "Front",
  4818. image: {
  4819. source: "./media/characters/guisetto/front.svg",
  4820. extra: 856 / 817,
  4821. bottom: 0.06
  4822. }
  4823. },
  4824. airborne: {
  4825. height: math.unit(6, "feet"),
  4826. weight: math.unit(180, "lbs"),
  4827. name: "Airborne",
  4828. image: {
  4829. source: "./media/characters/guisetto/airborne.svg",
  4830. extra: 584 / 525
  4831. }
  4832. },
  4833. },
  4834. [
  4835. {
  4836. name: "Normal",
  4837. height: math.unit(10 + 11 / 12, "feet"),
  4838. default: true
  4839. },
  4840. {
  4841. name: "Large",
  4842. height: math.unit(35, "feet")
  4843. },
  4844. {
  4845. name: "Macro",
  4846. height: math.unit(475, "feet")
  4847. },
  4848. ]
  4849. ))
  4850. characterMakers.push(() => makeCharacter(
  4851. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  4852. {
  4853. front: {
  4854. height: math.unit(6, "feet"),
  4855. weight: math.unit(180, "lbs"),
  4856. name: "Front",
  4857. image: {
  4858. source: "./media/characters/luxor/front.svg",
  4859. extra: 2940 / 2152
  4860. }
  4861. },
  4862. back: {
  4863. height: math.unit(6, "feet"),
  4864. weight: math.unit(180, "lbs"),
  4865. name: "Back",
  4866. image: {
  4867. source: "./media/characters/luxor/back.svg",
  4868. extra: 1083 / 960
  4869. }
  4870. },
  4871. },
  4872. [
  4873. {
  4874. name: "Normal",
  4875. height: math.unit(5 + 5 / 6, "feet"),
  4876. default: true
  4877. },
  4878. {
  4879. name: "Lamp",
  4880. height: math.unit(50, "feet")
  4881. },
  4882. {
  4883. name: "Lämp",
  4884. height: math.unit(300, "feet")
  4885. },
  4886. {
  4887. name: "The sun is a lamp",
  4888. height: math.unit(250000, "miles")
  4889. },
  4890. ]
  4891. ))
  4892. characterMakers.push(() => makeCharacter(
  4893. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  4894. {
  4895. front: {
  4896. height: math.unit(6, "feet"),
  4897. weight: math.unit(50, "lbs"),
  4898. name: "Front",
  4899. image: {
  4900. source: "./media/characters/huoyan/front.svg"
  4901. }
  4902. },
  4903. side: {
  4904. height: math.unit(6, "feet"),
  4905. weight: math.unit(180, "lbs"),
  4906. name: "Side",
  4907. image: {
  4908. source: "./media/characters/huoyan/side.svg"
  4909. }
  4910. },
  4911. },
  4912. [
  4913. {
  4914. name: "Chef",
  4915. height: math.unit(9, "feet")
  4916. },
  4917. {
  4918. name: "Normal",
  4919. height: math.unit(65, "feet"),
  4920. default: true
  4921. },
  4922. {
  4923. name: "Macro",
  4924. height: math.unit(780, "feet")
  4925. },
  4926. {
  4927. name: "Flaming Mountain",
  4928. height: math.unit(4.8, "miles")
  4929. },
  4930. {
  4931. name: "Celestial",
  4932. height: math.unit(765000, "miles")
  4933. },
  4934. ]
  4935. ))
  4936. characterMakers.push(() => makeCharacter(
  4937. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  4938. {
  4939. front: {
  4940. height: math.unit(5 + 3 / 4, "feet"),
  4941. weight: math.unit(120, "lbs"),
  4942. name: "Front",
  4943. image: {
  4944. source: "./media/characters/tails/front.svg"
  4945. }
  4946. }
  4947. },
  4948. [
  4949. {
  4950. name: "Normal",
  4951. height: math.unit(5 + 3 / 4, "feet"),
  4952. default: true
  4953. }
  4954. ]
  4955. ))
  4956. characterMakers.push(() => makeCharacter(
  4957. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  4958. {
  4959. front: {
  4960. height: math.unit(4, "feet"),
  4961. weight: math.unit(50, "lbs"),
  4962. name: "Front",
  4963. image: {
  4964. source: "./media/characters/rainy/front.svg"
  4965. }
  4966. }
  4967. },
  4968. [
  4969. {
  4970. name: "Macro",
  4971. height: math.unit(800, "feet"),
  4972. default: true
  4973. }
  4974. ]
  4975. ))
  4976. characterMakers.push(() => makeCharacter(
  4977. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  4978. {
  4979. front: {
  4980. height: math.unit(6, "feet"),
  4981. weight: math.unit(150, "lbs"),
  4982. name: "Front",
  4983. image: {
  4984. source: "./media/characters/rainier/front.svg"
  4985. }
  4986. }
  4987. },
  4988. [
  4989. {
  4990. name: "Micro",
  4991. height: math.unit(2, "mm"),
  4992. default: true
  4993. }
  4994. ]
  4995. ))
  4996. characterMakers.push(() => makeCharacter(
  4997. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  4998. {
  4999. front: {
  5000. height: math.unit(6, "feet"),
  5001. weight: math.unit(180, "lbs"),
  5002. name: "Front",
  5003. image: {
  5004. source: "./media/characters/andy/front.svg"
  5005. }
  5006. }
  5007. },
  5008. [
  5009. {
  5010. name: "Normal",
  5011. height: math.unit(8, "feet"),
  5012. default: true
  5013. },
  5014. {
  5015. name: "Macro",
  5016. height: math.unit(1000, "feet")
  5017. },
  5018. {
  5019. name: "Megamacro",
  5020. height: math.unit(5, "miles")
  5021. },
  5022. {
  5023. name: "Gigamacro",
  5024. height: math.unit(5000, "miles")
  5025. },
  5026. ]
  5027. ))
  5028. characterMakers.push(() => makeCharacter(
  5029. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5030. {
  5031. front: {
  5032. height: math.unit(6, "feet"),
  5033. weight: math.unit(210, "lbs"),
  5034. name: "Front",
  5035. image: {
  5036. source: "./media/characters/cimmaron/front-sfw.svg",
  5037. extra: 701 / 676,
  5038. bottom: 0.046
  5039. }
  5040. },
  5041. back: {
  5042. height: math.unit(6, "feet"),
  5043. weight: math.unit(210, "lbs"),
  5044. name: "Back",
  5045. image: {
  5046. source: "./media/characters/cimmaron/back-sfw.svg",
  5047. extra: 701 / 676,
  5048. bottom: 0.046
  5049. }
  5050. },
  5051. frontNsfw: {
  5052. height: math.unit(6, "feet"),
  5053. weight: math.unit(210, "lbs"),
  5054. name: "Front (NSFW)",
  5055. image: {
  5056. source: "./media/characters/cimmaron/front-nsfw.svg",
  5057. extra: 701 / 676,
  5058. bottom: 0.046
  5059. }
  5060. },
  5061. backNsfw: {
  5062. height: math.unit(6, "feet"),
  5063. weight: math.unit(210, "lbs"),
  5064. name: "Back (NSFW)",
  5065. image: {
  5066. source: "./media/characters/cimmaron/back-nsfw.svg",
  5067. extra: 701 / 676,
  5068. bottom: 0.046
  5069. }
  5070. },
  5071. dick: {
  5072. height: math.unit(1.714, "feet"),
  5073. name: "Dick",
  5074. image: {
  5075. source: "./media/characters/cimmaron/dick.svg"
  5076. }
  5077. },
  5078. },
  5079. [
  5080. {
  5081. name: "Normal",
  5082. height: math.unit(6, "feet"),
  5083. default: true
  5084. },
  5085. {
  5086. name: "Macro Mayor",
  5087. height: math.unit(350, "meters")
  5088. },
  5089. ]
  5090. ))
  5091. characterMakers.push(() => makeCharacter(
  5092. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5093. {
  5094. front: {
  5095. height: math.unit(6, "feet"),
  5096. weight: math.unit(200, "lbs"),
  5097. name: "Front",
  5098. image: {
  5099. source: "./media/characters/akari/front.svg",
  5100. extra: 962 / 901,
  5101. bottom: 0.04
  5102. }
  5103. }
  5104. },
  5105. [
  5106. {
  5107. name: "Micro",
  5108. height: math.unit(5, "inches"),
  5109. default: true
  5110. },
  5111. {
  5112. name: "Normal",
  5113. height: math.unit(7, "feet")
  5114. },
  5115. ]
  5116. ))
  5117. characterMakers.push(() => makeCharacter(
  5118. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5119. {
  5120. front: {
  5121. height: math.unit(6, "feet"),
  5122. weight: math.unit(140, "lbs"),
  5123. name: "Front",
  5124. image: {
  5125. source: "./media/characters/cynosura/front.svg",
  5126. extra: 896 / 847
  5127. }
  5128. },
  5129. back: {
  5130. height: math.unit(6, "feet"),
  5131. weight: math.unit(140, "lbs"),
  5132. name: "Back",
  5133. image: {
  5134. source: "./media/characters/cynosura/back.svg",
  5135. extra: 1365 / 1250
  5136. }
  5137. },
  5138. },
  5139. [
  5140. {
  5141. name: "Micro",
  5142. height: math.unit(4, "inches")
  5143. },
  5144. {
  5145. name: "Normal",
  5146. height: math.unit(5.75, "feet"),
  5147. default: true
  5148. },
  5149. {
  5150. name: "Tall",
  5151. height: math.unit(10, "feet")
  5152. },
  5153. {
  5154. name: "Big",
  5155. height: math.unit(20, "feet")
  5156. },
  5157. {
  5158. name: "Macro",
  5159. height: math.unit(50, "feet")
  5160. },
  5161. ]
  5162. ))
  5163. characterMakers.push(() => makeCharacter(
  5164. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5165. {
  5166. front: {
  5167. height: math.unit(6, "feet"),
  5168. weight: math.unit(170, "lbs"),
  5169. name: "Front",
  5170. image: {
  5171. source: "./media/characters/gin/front.svg",
  5172. extra: 1.053,
  5173. bottom: 0.025
  5174. }
  5175. },
  5176. foot: {
  5177. height: math.unit(6 / 4.25, "feet"),
  5178. name: "Foot",
  5179. image: {
  5180. source: "./media/characters/gin/foot.svg"
  5181. }
  5182. },
  5183. sole: {
  5184. height: math.unit(6 / 4.40, "feet"),
  5185. name: "Sole",
  5186. image: {
  5187. source: "./media/characters/gin/sole.svg"
  5188. }
  5189. },
  5190. },
  5191. [
  5192. {
  5193. name: "Normal",
  5194. height: math.unit(13 + 2 / 12, "feet")
  5195. },
  5196. {
  5197. name: "Macro",
  5198. height: math.unit(1500, "feet")
  5199. },
  5200. {
  5201. name: "Megamacro",
  5202. height: math.unit(200, "miles"),
  5203. default: true
  5204. },
  5205. {
  5206. name: "Gigamacro",
  5207. height: math.unit(500, "megameters")
  5208. },
  5209. {
  5210. name: "Teramacro",
  5211. height: math.unit(15, "lightyears")
  5212. }
  5213. ]
  5214. ))
  5215. characterMakers.push(() => makeCharacter(
  5216. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5217. {
  5218. front: {
  5219. height: math.unit(6 + 1 / 6, "feet"),
  5220. weight: math.unit(178, "lbs"),
  5221. name: "Front",
  5222. image: {
  5223. source: "./media/characters/guy/front.svg"
  5224. }
  5225. }
  5226. },
  5227. [
  5228. {
  5229. name: "Normal",
  5230. height: math.unit(6 + 1 / 6, "feet"),
  5231. default: true
  5232. },
  5233. {
  5234. name: "Large",
  5235. height: math.unit(25 + 7 / 12, "feet")
  5236. },
  5237. {
  5238. name: "Macro",
  5239. height: math.unit(60 + 9 / 12, "feet")
  5240. },
  5241. {
  5242. name: "Macro+",
  5243. height: math.unit(246, "feet")
  5244. },
  5245. {
  5246. name: "Macro++",
  5247. height: math.unit(878, "feet")
  5248. }
  5249. ]
  5250. ))
  5251. characterMakers.push(() => makeCharacter(
  5252. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5253. {
  5254. front: {
  5255. height: math.unit(9, "feet"),
  5256. weight: math.unit(800, "lbs"),
  5257. name: "Front",
  5258. image: {
  5259. source: "./media/characters/tiberius/front.svg",
  5260. extra: 2295 / 2071
  5261. }
  5262. },
  5263. back: {
  5264. height: math.unit(9, "feet"),
  5265. weight: math.unit(800, "lbs"),
  5266. name: "Back",
  5267. image: {
  5268. source: "./media/characters/tiberius/back.svg",
  5269. extra: 2373 / 2160
  5270. }
  5271. },
  5272. },
  5273. [
  5274. {
  5275. name: "Normal",
  5276. height: math.unit(9, "feet"),
  5277. default: true
  5278. }
  5279. ]
  5280. ))
  5281. characterMakers.push(() => makeCharacter(
  5282. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5283. {
  5284. front: {
  5285. height: math.unit(6, "feet"),
  5286. weight: math.unit(600, "lbs"),
  5287. name: "Front",
  5288. image: {
  5289. source: "./media/characters/surgo/front.svg",
  5290. extra: 3591 / 2227
  5291. }
  5292. },
  5293. back: {
  5294. height: math.unit(6, "feet"),
  5295. weight: math.unit(600, "lbs"),
  5296. name: "Back",
  5297. image: {
  5298. source: "./media/characters/surgo/back.svg",
  5299. extra: 3557 / 2228
  5300. }
  5301. },
  5302. laying: {
  5303. height: math.unit(6 * 0.85, "feet"),
  5304. weight: math.unit(600, "lbs"),
  5305. name: "Laying",
  5306. image: {
  5307. source: "./media/characters/surgo/laying.svg"
  5308. }
  5309. },
  5310. },
  5311. [
  5312. {
  5313. name: "Normal",
  5314. height: math.unit(6, "feet"),
  5315. default: true
  5316. }
  5317. ]
  5318. ))
  5319. characterMakers.push(() => makeCharacter(
  5320. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5321. {
  5322. side: {
  5323. height: math.unit(6, "feet"),
  5324. weight: math.unit(150, "lbs"),
  5325. name: "Side",
  5326. image: {
  5327. source: "./media/characters/cibus/side.svg",
  5328. extra: 800 / 400
  5329. }
  5330. },
  5331. },
  5332. [
  5333. {
  5334. name: "Normal",
  5335. height: math.unit(6, "feet"),
  5336. default: true
  5337. }
  5338. ]
  5339. ))
  5340. characterMakers.push(() => makeCharacter(
  5341. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5342. {
  5343. front: {
  5344. height: math.unit(6, "feet"),
  5345. weight: math.unit(240, "lbs"),
  5346. name: "Front",
  5347. image: {
  5348. source: "./media/characters/nibbles/front.svg"
  5349. }
  5350. },
  5351. side: {
  5352. height: math.unit(6, "feet"),
  5353. weight: math.unit(240, "lbs"),
  5354. name: "Side",
  5355. image: {
  5356. source: "./media/characters/nibbles/side.svg"
  5357. }
  5358. },
  5359. },
  5360. [
  5361. {
  5362. name: "Normal",
  5363. height: math.unit(9, "feet"),
  5364. default: true
  5365. }
  5366. ]
  5367. ))
  5368. characterMakers.push(() => makeCharacter(
  5369. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5370. {
  5371. side: {
  5372. height: math.unit(5 + 1 / 6, "feet"),
  5373. weight: math.unit(130, "lbs"),
  5374. name: "Side",
  5375. image: {
  5376. source: "./media/characters/rikky/side.svg"
  5377. }
  5378. },
  5379. },
  5380. [
  5381. {
  5382. name: "Normal",
  5383. height: math.unit(5 + 1 / 6, "feet")
  5384. },
  5385. {
  5386. name: "Macro",
  5387. height: math.unit(152, "feet"),
  5388. default: true
  5389. },
  5390. {
  5391. name: "Megamacro",
  5392. height: math.unit(7, "miles")
  5393. }
  5394. ]
  5395. ))
  5396. characterMakers.push(() => makeCharacter(
  5397. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5398. {
  5399. side: {
  5400. height: math.unit(370, "cm"),
  5401. weight: math.unit(350, "lbs"),
  5402. name: "Side",
  5403. image: {
  5404. source: "./media/characters/malfressa/side.svg"
  5405. }
  5406. },
  5407. walking: {
  5408. height: math.unit(370, "cm"),
  5409. weight: math.unit(350, "lbs"),
  5410. name: "Walking",
  5411. image: {
  5412. source: "./media/characters/malfressa/walking.svg"
  5413. }
  5414. },
  5415. feral: {
  5416. height: math.unit(2500, "cm"),
  5417. weight: math.unit(100000, "lbs"),
  5418. name: "Feral",
  5419. image: {
  5420. source: "./media/characters/malfressa/feral.svg",
  5421. extra: 2108 / 837,
  5422. bottom: 0.02
  5423. }
  5424. },
  5425. },
  5426. [
  5427. {
  5428. name: "Normal",
  5429. height: math.unit(370, "cm")
  5430. },
  5431. {
  5432. name: "Macro",
  5433. height: math.unit(300, "meters"),
  5434. default: true
  5435. }
  5436. ]
  5437. ))
  5438. characterMakers.push(() => makeCharacter(
  5439. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5440. {
  5441. front: {
  5442. height: math.unit(6, "feet"),
  5443. weight: math.unit(60, "kg"),
  5444. name: "Front",
  5445. image: {
  5446. source: "./media/characters/jaro/front.svg"
  5447. }
  5448. },
  5449. back: {
  5450. height: math.unit(6, "feet"),
  5451. weight: math.unit(60, "kg"),
  5452. name: "Back",
  5453. image: {
  5454. source: "./media/characters/jaro/back.svg"
  5455. }
  5456. },
  5457. },
  5458. [
  5459. {
  5460. name: "Micro",
  5461. height: math.unit(7, "inches")
  5462. },
  5463. {
  5464. name: "Normal",
  5465. height: math.unit(5.5, "feet"),
  5466. default: true
  5467. },
  5468. {
  5469. name: "Minimacro",
  5470. height: math.unit(20, "feet")
  5471. },
  5472. {
  5473. name: "Macro",
  5474. height: math.unit(200, "meters")
  5475. }
  5476. ]
  5477. ))
  5478. characterMakers.push(() => makeCharacter(
  5479. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5480. {
  5481. front: {
  5482. height: math.unit(6, "feet"),
  5483. weight: math.unit(195, "lb"),
  5484. name: "Front",
  5485. image: {
  5486. source: "./media/characters/rogue/front.svg"
  5487. }
  5488. },
  5489. },
  5490. [
  5491. {
  5492. name: "Macro",
  5493. height: math.unit(90, "feet"),
  5494. default: true
  5495. },
  5496. ]
  5497. ))
  5498. characterMakers.push(() => makeCharacter(
  5499. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5500. {
  5501. front: {
  5502. height: math.unit(5 + 8 / 12, "feet"),
  5503. weight: math.unit(140, "lb"),
  5504. name: "Front",
  5505. image: {
  5506. source: "./media/characters/piper/front.svg",
  5507. extra: 3928 / 3681
  5508. }
  5509. },
  5510. },
  5511. [
  5512. {
  5513. name: "Micro",
  5514. height: math.unit(2, "inches")
  5515. },
  5516. {
  5517. name: "Normal",
  5518. height: math.unit(5 + 8 / 12, "feet")
  5519. },
  5520. {
  5521. name: "Macro",
  5522. height: math.unit(250, "feet"),
  5523. default: true
  5524. },
  5525. {
  5526. name: "Megamacro",
  5527. height: math.unit(7, "miles")
  5528. },
  5529. ]
  5530. ))
  5531. characterMakers.push(() => makeCharacter(
  5532. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5533. {
  5534. front: {
  5535. height: math.unit(6, "feet"),
  5536. weight: math.unit(220, "lb"),
  5537. name: "Front",
  5538. image: {
  5539. source: "./media/characters/gemini/front.svg"
  5540. }
  5541. },
  5542. back: {
  5543. height: math.unit(6, "feet"),
  5544. weight: math.unit(220, "lb"),
  5545. name: "Back",
  5546. image: {
  5547. source: "./media/characters/gemini/back.svg"
  5548. }
  5549. },
  5550. kneeling: {
  5551. height: math.unit(6 / 1.5, "feet"),
  5552. weight: math.unit(220, "lb"),
  5553. name: "Kneeling",
  5554. image: {
  5555. source: "./media/characters/gemini/kneeling.svg",
  5556. bottom: 0.02
  5557. }
  5558. },
  5559. },
  5560. [
  5561. {
  5562. name: "Macro",
  5563. height: math.unit(300, "meters"),
  5564. default: true
  5565. },
  5566. {
  5567. name: "Megamacro",
  5568. height: math.unit(6900, "meters")
  5569. },
  5570. ]
  5571. ))
  5572. characterMakers.push(() => makeCharacter(
  5573. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5574. {
  5575. anthro: {
  5576. height: math.unit(2.35, "meters"),
  5577. weight: math.unit(73, "kg"),
  5578. name: "Anthro",
  5579. image: {
  5580. source: "./media/characters/alicia/anthro.svg",
  5581. extra: 2571 / 2385,
  5582. bottom: 75 / 2648
  5583. }
  5584. },
  5585. paw: {
  5586. height: math.unit(1.32, "feet"),
  5587. name: "Paw",
  5588. image: {
  5589. source: "./media/characters/alicia/paw.svg"
  5590. }
  5591. },
  5592. feral: {
  5593. height: math.unit(1.69, "meters"),
  5594. weight: math.unit(73, "kg"),
  5595. name: "Feral",
  5596. image: {
  5597. source: "./media/characters/alicia/feral.svg",
  5598. extra: 2123 / 1715,
  5599. bottom: 222 / 2349
  5600. }
  5601. },
  5602. },
  5603. [
  5604. {
  5605. name: "Normal",
  5606. height: math.unit(2.35, "meters")
  5607. },
  5608. {
  5609. name: "Macro",
  5610. height: math.unit(60, "meters"),
  5611. default: true
  5612. },
  5613. {
  5614. name: "Megamacro",
  5615. height: math.unit(10000, "kilometers")
  5616. },
  5617. ]
  5618. ))
  5619. characterMakers.push(() => makeCharacter(
  5620. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5621. {
  5622. front: {
  5623. height: math.unit(7, "feet"),
  5624. weight: math.unit(250, "lbs"),
  5625. name: "Front",
  5626. image: {
  5627. source: "./media/characters/archy/front.svg"
  5628. }
  5629. }
  5630. },
  5631. [
  5632. {
  5633. name: "Micro",
  5634. height: math.unit(1, "inch")
  5635. },
  5636. {
  5637. name: "Shorty",
  5638. height: math.unit(5, "feet")
  5639. },
  5640. {
  5641. name: "Normal",
  5642. height: math.unit(7, "feet")
  5643. },
  5644. {
  5645. name: "Macro",
  5646. height: math.unit(600, "meters"),
  5647. default: true
  5648. },
  5649. {
  5650. name: "Megamacro",
  5651. height: math.unit(1, "mile")
  5652. },
  5653. ]
  5654. ))
  5655. characterMakers.push(() => makeCharacter(
  5656. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5657. {
  5658. front: {
  5659. height: math.unit(1.65, "meters"),
  5660. weight: math.unit(74, "kg"),
  5661. name: "Front",
  5662. image: {
  5663. source: "./media/characters/berri/front.svg",
  5664. extra: 857 / 837,
  5665. bottom: 18 / 877
  5666. }
  5667. },
  5668. bum: {
  5669. height: math.unit(1.46, "feet"),
  5670. name: "Bum",
  5671. image: {
  5672. source: "./media/characters/berri/bum.svg"
  5673. }
  5674. },
  5675. mouth: {
  5676. height: math.unit(0.44, "feet"),
  5677. name: "Mouth",
  5678. image: {
  5679. source: "./media/characters/berri/mouth.svg"
  5680. }
  5681. },
  5682. paw: {
  5683. height: math.unit(0.826, "feet"),
  5684. name: "Paw",
  5685. image: {
  5686. source: "./media/characters/berri/paw.svg"
  5687. }
  5688. },
  5689. },
  5690. [
  5691. {
  5692. name: "Normal",
  5693. height: math.unit(1.65, "meters")
  5694. },
  5695. {
  5696. name: "Macro",
  5697. height: math.unit(60, "m"),
  5698. default: true
  5699. },
  5700. {
  5701. name: "Megamacro",
  5702. height: math.unit(9.213, "km")
  5703. },
  5704. {
  5705. name: "Planet Eater",
  5706. height: math.unit(489, "megameters")
  5707. },
  5708. {
  5709. name: "Teramacro",
  5710. height: math.unit(2471635000000, "meters")
  5711. },
  5712. {
  5713. name: "Examacro",
  5714. height: math.unit(8.0624e+26, "meters")
  5715. }
  5716. ]
  5717. ))
  5718. characterMakers.push(() => makeCharacter(
  5719. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5720. {
  5721. front: {
  5722. height: math.unit(1.72, "meters"),
  5723. weight: math.unit(68, "kg"),
  5724. name: "Front",
  5725. image: {
  5726. source: "./media/characters/lexi/front.svg"
  5727. }
  5728. }
  5729. },
  5730. [
  5731. {
  5732. name: "Very Smol",
  5733. height: math.unit(10, "mm")
  5734. },
  5735. {
  5736. name: "Micro",
  5737. height: math.unit(6.8, "cm"),
  5738. default: true
  5739. },
  5740. {
  5741. name: "Normal",
  5742. height: math.unit(1.72, "m")
  5743. }
  5744. ]
  5745. ))
  5746. characterMakers.push(() => makeCharacter(
  5747. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5748. {
  5749. front: {
  5750. height: math.unit(1.69, "meters"),
  5751. weight: math.unit(68, "kg"),
  5752. name: "Front",
  5753. image: {
  5754. source: "./media/characters/martin/front.svg",
  5755. extra: 596 / 581
  5756. }
  5757. }
  5758. },
  5759. [
  5760. {
  5761. name: "Micro",
  5762. height: math.unit(6.85, "cm"),
  5763. default: true
  5764. },
  5765. {
  5766. name: "Normal",
  5767. height: math.unit(1.69, "m")
  5768. }
  5769. ]
  5770. ))
  5771. characterMakers.push(() => makeCharacter(
  5772. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  5773. {
  5774. front: {
  5775. height: math.unit(1.69, "meters"),
  5776. weight: math.unit(68, "kg"),
  5777. name: "Front",
  5778. image: {
  5779. source: "./media/characters/juno/front.svg"
  5780. }
  5781. }
  5782. },
  5783. [
  5784. {
  5785. name: "Micro",
  5786. height: math.unit(7, "cm")
  5787. },
  5788. {
  5789. name: "Normal",
  5790. height: math.unit(1.89, "m")
  5791. },
  5792. {
  5793. name: "Macro",
  5794. height: math.unit(353, "meters"),
  5795. default: true
  5796. }
  5797. ]
  5798. ))
  5799. characterMakers.push(() => makeCharacter(
  5800. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  5801. {
  5802. front: {
  5803. height: math.unit(1.93, "meters"),
  5804. weight: math.unit(83, "kg"),
  5805. name: "Front",
  5806. image: {
  5807. source: "./media/characters/samantha/front.svg"
  5808. }
  5809. },
  5810. frontClothed: {
  5811. height: math.unit(1.93, "meters"),
  5812. weight: math.unit(83, "kg"),
  5813. name: "Front (Clothed)",
  5814. image: {
  5815. source: "./media/characters/samantha/front-clothed.svg"
  5816. }
  5817. },
  5818. back: {
  5819. height: math.unit(1.93, "meters"),
  5820. weight: math.unit(83, "kg"),
  5821. name: "Back",
  5822. image: {
  5823. source: "./media/characters/samantha/back.svg"
  5824. }
  5825. },
  5826. },
  5827. [
  5828. {
  5829. name: "Normal",
  5830. height: math.unit(1.93, "m")
  5831. },
  5832. {
  5833. name: "Macro",
  5834. height: math.unit(74, "meters"),
  5835. default: true
  5836. },
  5837. {
  5838. name: "Macro+",
  5839. height: math.unit(223, "meters"),
  5840. },
  5841. {
  5842. name: "Megamacro",
  5843. height: math.unit(8381, "meters"),
  5844. },
  5845. {
  5846. name: "Megamacro+",
  5847. height: math.unit(12000, "kilometers")
  5848. },
  5849. ]
  5850. ))
  5851. characterMakers.push(() => makeCharacter(
  5852. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  5853. {
  5854. front: {
  5855. height: math.unit(1.92, "meters"),
  5856. weight: math.unit(80, "kg"),
  5857. name: "Front",
  5858. image: {
  5859. source: "./media/characters/dr-clay/front.svg"
  5860. }
  5861. },
  5862. frontClothed: {
  5863. height: math.unit(1.92, "meters"),
  5864. weight: math.unit(80, "kg"),
  5865. name: "Front (Clothed)",
  5866. image: {
  5867. source: "./media/characters/dr-clay/front-clothed.svg"
  5868. }
  5869. }
  5870. },
  5871. [
  5872. {
  5873. name: "Normal",
  5874. height: math.unit(1.92, "m")
  5875. },
  5876. {
  5877. name: "Macro",
  5878. height: math.unit(214, "meters"),
  5879. default: true
  5880. },
  5881. {
  5882. name: "Macro+",
  5883. height: math.unit(12.237, "meters"),
  5884. },
  5885. {
  5886. name: "Megamacro",
  5887. height: math.unit(557, "megameters"),
  5888. },
  5889. {
  5890. name: "Unimaginable",
  5891. height: math.unit(120e9, "lightyears")
  5892. },
  5893. ]
  5894. ))
  5895. characterMakers.push(() => makeCharacter(
  5896. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  5897. {
  5898. front: {
  5899. height: math.unit(2, "meters"),
  5900. weight: math.unit(80, "kg"),
  5901. name: "Front",
  5902. image: {
  5903. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  5904. }
  5905. }
  5906. },
  5907. [
  5908. {
  5909. name: "Teramacro",
  5910. height: math.unit(500000, "lightyears"),
  5911. default: true
  5912. },
  5913. ]
  5914. ))
  5915. characterMakers.push(() => makeCharacter(
  5916. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  5917. {
  5918. front: {
  5919. height: math.unit(2, "meters"),
  5920. weight: math.unit(150, "kg"),
  5921. name: "Front",
  5922. image: {
  5923. source: "./media/characters/vemus/front.svg",
  5924. extra: 2384 / 2084,
  5925. bottom: 0.0123
  5926. }
  5927. }
  5928. },
  5929. [
  5930. {
  5931. name: "Normal",
  5932. height: math.unit(3.75, "meters"),
  5933. default: true
  5934. },
  5935. {
  5936. name: "Big",
  5937. height: math.unit(8, "meters")
  5938. },
  5939. {
  5940. name: "Macro",
  5941. height: math.unit(100, "meters")
  5942. },
  5943. {
  5944. name: "Macro+",
  5945. height: math.unit(1500, "meters")
  5946. },
  5947. {
  5948. name: "Stellar",
  5949. height: math.unit(14e8, "meters")
  5950. },
  5951. ]
  5952. ))
  5953. characterMakers.push(() => makeCharacter(
  5954. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  5955. {
  5956. front: {
  5957. height: math.unit(2, "meters"),
  5958. weight: math.unit(70, "kg"),
  5959. name: "Front",
  5960. image: {
  5961. source: "./media/characters/beherit/front.svg",
  5962. extra: 1408 / 1242
  5963. }
  5964. }
  5965. },
  5966. [
  5967. {
  5968. name: "Normal",
  5969. height: math.unit(6, "feet")
  5970. },
  5971. {
  5972. name: "Lorg",
  5973. height: math.unit(25, "feet"),
  5974. default: true
  5975. },
  5976. {
  5977. name: "Lorger",
  5978. height: math.unit(75, "feet")
  5979. },
  5980. {
  5981. name: "Macro",
  5982. height: math.unit(200, "meters")
  5983. },
  5984. ]
  5985. ))
  5986. characterMakers.push(() => makeCharacter(
  5987. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  5988. {
  5989. front: {
  5990. height: math.unit(2, "meters"),
  5991. weight: math.unit(150, "kg"),
  5992. name: "Front",
  5993. image: {
  5994. source: "./media/characters/everett/front.svg",
  5995. extra: 2038 / 1737,
  5996. bottom: 0.03
  5997. }
  5998. },
  5999. paw: {
  6000. height: math.unit(2 / 3.6, "meters"),
  6001. name: "Paw",
  6002. image: {
  6003. source: "./media/characters/everett/paw.svg"
  6004. }
  6005. },
  6006. },
  6007. [
  6008. {
  6009. name: "Normal",
  6010. height: math.unit(15, "feet"),
  6011. default: true
  6012. },
  6013. {
  6014. name: "Lorg",
  6015. height: math.unit(70, "feet"),
  6016. default: true
  6017. },
  6018. {
  6019. name: "Lorger",
  6020. height: math.unit(250, "feet")
  6021. },
  6022. {
  6023. name: "Macro",
  6024. height: math.unit(500, "meters")
  6025. },
  6026. ]
  6027. ))
  6028. characterMakers.push(() => makeCharacter(
  6029. { name: "Rose Lion", species: ["lion", "mouse"], tags: ["anthro"] },
  6030. {
  6031. front: {
  6032. height: math.unit(2, "meters"),
  6033. weight: math.unit(86, "kg"),
  6034. name: "Front",
  6035. image: {
  6036. source: "./media/characters/rose-lion/front.svg"
  6037. }
  6038. },
  6039. bent: {
  6040. height: math.unit(2 / 1.4288, "meters"),
  6041. weight: math.unit(86, "kg"),
  6042. name: "Bent",
  6043. image: {
  6044. source: "./media/characters/rose-lion/bent.svg"
  6045. }
  6046. }
  6047. },
  6048. [
  6049. {
  6050. name: "Mini-Micro",
  6051. height: math.unit(1, "cm")
  6052. },
  6053. {
  6054. name: "Micro",
  6055. height: math.unit(3.5, "inches"),
  6056. default: true
  6057. },
  6058. {
  6059. name: "Normal",
  6060. height: math.unit(6 + 1 / 6, "feet")
  6061. },
  6062. {
  6063. name: "Mini-Macro",
  6064. height: math.unit(9 + 10 / 12, "feet")
  6065. },
  6066. ]
  6067. ))
  6068. characterMakers.push(() => makeCharacter(
  6069. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6070. {
  6071. front: {
  6072. height: math.unit(2, "meters"),
  6073. weight: math.unit(350, "lbs"),
  6074. name: "Front",
  6075. image: {
  6076. source: "./media/characters/regal/front.svg"
  6077. }
  6078. },
  6079. back: {
  6080. height: math.unit(2, "meters"),
  6081. weight: math.unit(350, "lbs"),
  6082. name: "Back",
  6083. image: {
  6084. source: "./media/characters/regal/back.svg"
  6085. }
  6086. },
  6087. },
  6088. [
  6089. {
  6090. name: "Macro",
  6091. height: math.unit(350, "feet"),
  6092. default: true
  6093. }
  6094. ]
  6095. ))
  6096. characterMakers.push(() => makeCharacter(
  6097. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6098. {
  6099. front: {
  6100. height: math.unit(4 + 11 / 12, "feet"),
  6101. weight: math.unit(100, "lbs"),
  6102. name: "Front",
  6103. image: {
  6104. source: "./media/characters/opal/front.svg"
  6105. }
  6106. },
  6107. frontAlt: {
  6108. height: math.unit(4 + 11 / 12, "feet"),
  6109. weight: math.unit(100, "lbs"),
  6110. name: "Front (Alt)",
  6111. image: {
  6112. source: "./media/characters/opal/front-alt.svg"
  6113. }
  6114. },
  6115. },
  6116. [
  6117. {
  6118. name: "Small",
  6119. height: math.unit(4 + 11 / 12, "feet")
  6120. },
  6121. {
  6122. name: "Normal",
  6123. height: math.unit(20, "feet"),
  6124. default: true
  6125. },
  6126. {
  6127. name: "Macro",
  6128. height: math.unit(120, "feet")
  6129. },
  6130. {
  6131. name: "Megamacro",
  6132. height: math.unit(80, "miles")
  6133. },
  6134. {
  6135. name: "True Size",
  6136. height: math.unit(100000, "lightyears")
  6137. },
  6138. ]
  6139. ))
  6140. characterMakers.push(() => makeCharacter(
  6141. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6142. {
  6143. front: {
  6144. height: math.unit(6, "feet"),
  6145. weight: math.unit(200, "lbs"),
  6146. name: "Front",
  6147. image: {
  6148. source: "./media/characters/vector-wuff/front.svg"
  6149. }
  6150. }
  6151. },
  6152. [
  6153. {
  6154. name: "Normal",
  6155. height: math.unit(2.8, "meters")
  6156. },
  6157. {
  6158. name: "Macro",
  6159. height: math.unit(450, "meters"),
  6160. default: true
  6161. },
  6162. {
  6163. name: "Megamacro",
  6164. height: math.unit(15, "kilometers")
  6165. }
  6166. ]
  6167. ))
  6168. characterMakers.push(() => makeCharacter(
  6169. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6170. {
  6171. front: {
  6172. height: math.unit(6, "feet"),
  6173. weight: math.unit(256, "lbs"),
  6174. name: "Front",
  6175. image: {
  6176. source: "./media/characters/dannik/front.svg"
  6177. }
  6178. }
  6179. },
  6180. [
  6181. {
  6182. name: "Macro",
  6183. height: math.unit(69.57, "meters"),
  6184. default: true
  6185. },
  6186. ]
  6187. ))
  6188. characterMakers.push(() => makeCharacter(
  6189. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6190. {
  6191. front: {
  6192. height: math.unit(6, "feet"),
  6193. weight: math.unit(120, "lbs"),
  6194. name: "Front",
  6195. image: {
  6196. source: "./media/characters/azura-saharah/front.svg"
  6197. }
  6198. },
  6199. back: {
  6200. height: math.unit(6, "feet"),
  6201. weight: math.unit(120, "lbs"),
  6202. name: "Back",
  6203. image: {
  6204. source: "./media/characters/azura-saharah/back.svg"
  6205. }
  6206. },
  6207. },
  6208. [
  6209. {
  6210. name: "Macro",
  6211. height: math.unit(100, "feet"),
  6212. default: true
  6213. },
  6214. ]
  6215. ))
  6216. characterMakers.push(() => makeCharacter(
  6217. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6218. {
  6219. side: {
  6220. height: math.unit(5 + 4 / 12, "feet"),
  6221. weight: math.unit(163, "lbs"),
  6222. name: "Side",
  6223. image: {
  6224. source: "./media/characters/kennedy/side.svg"
  6225. }
  6226. }
  6227. },
  6228. [
  6229. {
  6230. name: "Standard Doggo",
  6231. height: math.unit(5 + 4 / 12, "feet")
  6232. },
  6233. {
  6234. name: "Big Doggo",
  6235. height: math.unit(25 + 3 / 12, "feet"),
  6236. default: true
  6237. },
  6238. ]
  6239. ))
  6240. characterMakers.push(() => makeCharacter(
  6241. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6242. {
  6243. front: {
  6244. height: math.unit(6, "feet"),
  6245. weight: math.unit(90, "lbs"),
  6246. name: "Front",
  6247. image: {
  6248. source: "./media/characters/odi-lunar/front.svg"
  6249. }
  6250. }
  6251. },
  6252. [
  6253. {
  6254. name: "Micro",
  6255. height: math.unit(3, "inches"),
  6256. default: true
  6257. },
  6258. {
  6259. name: "Normal",
  6260. height: math.unit(5.5, "feet")
  6261. }
  6262. ]
  6263. ))
  6264. characterMakers.push(() => makeCharacter(
  6265. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6266. {
  6267. back: {
  6268. height: math.unit(6, "feet"),
  6269. weight: math.unit(220, "lbs"),
  6270. name: "Back",
  6271. image: {
  6272. source: "./media/characters/mandake/back.svg"
  6273. }
  6274. }
  6275. },
  6276. [
  6277. {
  6278. name: "Normal",
  6279. height: math.unit(7, "feet"),
  6280. default: true
  6281. },
  6282. {
  6283. name: "Macro",
  6284. height: math.unit(78, "feet")
  6285. },
  6286. {
  6287. name: "Macro+",
  6288. height: math.unit(300, "meters")
  6289. },
  6290. {
  6291. name: "Macro++",
  6292. height: math.unit(2400, "feet")
  6293. },
  6294. {
  6295. name: "Megamacro",
  6296. height: math.unit(5167, "meters")
  6297. },
  6298. {
  6299. name: "Gigamacro",
  6300. height: math.unit(41769, "miles")
  6301. },
  6302. ]
  6303. ))
  6304. characterMakers.push(() => makeCharacter(
  6305. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6306. {
  6307. front: {
  6308. height: math.unit(6, "feet"),
  6309. weight: math.unit(120, "lbs"),
  6310. name: "Front",
  6311. image: {
  6312. source: "./media/characters/yozey/front.svg"
  6313. }
  6314. },
  6315. frontAlt: {
  6316. height: math.unit(6, "feet"),
  6317. weight: math.unit(120, "lbs"),
  6318. name: "Front (Alt)",
  6319. image: {
  6320. source: "./media/characters/yozey/front-alt.svg"
  6321. }
  6322. },
  6323. side: {
  6324. height: math.unit(6, "feet"),
  6325. weight: math.unit(120, "lbs"),
  6326. name: "Side",
  6327. image: {
  6328. source: "./media/characters/yozey/side.svg"
  6329. }
  6330. },
  6331. },
  6332. [
  6333. {
  6334. name: "Micro",
  6335. height: math.unit(3, "inches"),
  6336. default: true
  6337. },
  6338. {
  6339. name: "Normal",
  6340. height: math.unit(6, "feet")
  6341. }
  6342. ]
  6343. ))
  6344. characterMakers.push(() => makeCharacter(
  6345. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6346. {
  6347. front: {
  6348. height: math.unit(6, "feet"),
  6349. weight: math.unit(103, "lbs"),
  6350. name: "Front",
  6351. image: {
  6352. source: "./media/characters/valeska-voss/front.svg"
  6353. }
  6354. }
  6355. },
  6356. [
  6357. {
  6358. name: "Mini-Sized Sub",
  6359. height: math.unit(3.1, "inches")
  6360. },
  6361. {
  6362. name: "Mid-Sized Sub",
  6363. height: math.unit(6.2, "inches")
  6364. },
  6365. {
  6366. name: "Full-Sized Sub",
  6367. height: math.unit(9.3, "inches")
  6368. },
  6369. {
  6370. name: "Normal",
  6371. height: math.unit(5 + 2 / 12, "foot"),
  6372. default: true
  6373. },
  6374. ]
  6375. ))
  6376. characterMakers.push(() => makeCharacter(
  6377. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6378. {
  6379. front: {
  6380. height: math.unit(6, "feet"),
  6381. weight: math.unit(160, "lbs"),
  6382. name: "Front",
  6383. image: {
  6384. source: "./media/characters/gene-zeta/front.svg",
  6385. bottom: 0.03,
  6386. extra: 1
  6387. }
  6388. }
  6389. },
  6390. [
  6391. {
  6392. name: "Normal",
  6393. height: math.unit(6.25, "foot"),
  6394. default: true
  6395. },
  6396. ]
  6397. ))
  6398. characterMakers.push(() => makeCharacter(
  6399. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6400. {
  6401. front: {
  6402. height: math.unit(6, "feet"),
  6403. weight: math.unit(350, "lbs"),
  6404. name: "Front",
  6405. image: {
  6406. source: "./media/characters/razinox/front.svg",
  6407. extra: 1686 / 1548,
  6408. bottom: 28.2 / 1868
  6409. }
  6410. },
  6411. back: {
  6412. height: math.unit(6, "feet"),
  6413. weight: math.unit(350, "lbs"),
  6414. name: "Back",
  6415. image: {
  6416. source: "./media/characters/razinox/back.svg",
  6417. extra: 1660 / 1590,
  6418. bottom: 15 / 1665
  6419. }
  6420. },
  6421. },
  6422. [
  6423. {
  6424. name: "Normal",
  6425. height: math.unit(10 + 8 / 12, "foot")
  6426. },
  6427. {
  6428. name: "Minimacro",
  6429. height: math.unit(15, "foot")
  6430. },
  6431. {
  6432. name: "Macro",
  6433. height: math.unit(60, "foot"),
  6434. default: true
  6435. },
  6436. {
  6437. name: "Megamacro",
  6438. height: math.unit(5, "miles")
  6439. },
  6440. {
  6441. name: "Gigamacro",
  6442. height: math.unit(6000, "miles")
  6443. },
  6444. ]
  6445. ))
  6446. characterMakers.push(() => makeCharacter(
  6447. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6448. {
  6449. front: {
  6450. height: math.unit(6, "feet"),
  6451. weight: math.unit(150, "lbs"),
  6452. name: "Front",
  6453. image: {
  6454. source: "./media/characters/cobalt/front.svg"
  6455. }
  6456. }
  6457. },
  6458. [
  6459. {
  6460. name: "Normal",
  6461. height: math.unit(8 + 1 / 12, "foot")
  6462. },
  6463. {
  6464. name: "Macro",
  6465. height: math.unit(111, "foot"),
  6466. default: true
  6467. },
  6468. {
  6469. name: "Supracosmic",
  6470. height: math.unit(1e42, "feet")
  6471. },
  6472. ]
  6473. ))
  6474. characterMakers.push(() => makeCharacter(
  6475. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6476. {
  6477. front: {
  6478. height: math.unit(6, "feet"),
  6479. weight: math.unit(140, "lbs"),
  6480. name: "Front",
  6481. image: {
  6482. source: "./media/characters/amanda/front.svg"
  6483. }
  6484. }
  6485. },
  6486. [
  6487. {
  6488. name: "Micro",
  6489. height: math.unit(5, "inches"),
  6490. default: true
  6491. },
  6492. ]
  6493. ))
  6494. characterMakers.push(() => makeCharacter(
  6495. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6496. {
  6497. front: {
  6498. height: math.unit(5.59, "feet"),
  6499. weight: math.unit(250, "lbs"),
  6500. name: "Front",
  6501. image: {
  6502. source: "./media/characters/teal/front.svg"
  6503. }
  6504. },
  6505. frontAlt: {
  6506. height: math.unit(6, "feet"),
  6507. weight: math.unit(250, "lbs"),
  6508. name: "Front (Alt)",
  6509. image: {
  6510. source: "./media/characters/teal/front-alt.svg",
  6511. bottom: 0.04,
  6512. extra: 1
  6513. }
  6514. },
  6515. },
  6516. [
  6517. {
  6518. name: "Normal",
  6519. height: math.unit(12, "feet"),
  6520. default: true
  6521. },
  6522. {
  6523. name: "Macro",
  6524. height: math.unit(300, "feet")
  6525. },
  6526. ]
  6527. ))
  6528. characterMakers.push(() => makeCharacter(
  6529. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6530. {
  6531. frontCat: {
  6532. height: math.unit(6, "feet"),
  6533. weight: math.unit(180, "lbs"),
  6534. name: "Front (Cat)",
  6535. image: {
  6536. source: "./media/characters/ravin-amulet/front-cat.svg"
  6537. }
  6538. },
  6539. frontCatAlt: {
  6540. height: math.unit(6, "feet"),
  6541. weight: math.unit(180, "lbs"),
  6542. name: "Front (Alt, Cat)",
  6543. image: {
  6544. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6545. }
  6546. },
  6547. frontWerewolf: {
  6548. height: math.unit(6 * 1.2, "feet"),
  6549. weight: math.unit(225, "lbs"),
  6550. name: "Front (Werewolf)",
  6551. image: {
  6552. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6553. }
  6554. },
  6555. backWerewolf: {
  6556. height: math.unit(6 * 1.2, "feet"),
  6557. weight: math.unit(225, "lbs"),
  6558. name: "Back (Werewolf)",
  6559. image: {
  6560. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6561. }
  6562. },
  6563. },
  6564. [
  6565. {
  6566. name: "Nano",
  6567. height: math.unit(1, "micrometer")
  6568. },
  6569. {
  6570. name: "Micro",
  6571. height: math.unit(1, "inch")
  6572. },
  6573. {
  6574. name: "Normal",
  6575. height: math.unit(6, "feet"),
  6576. default: true
  6577. },
  6578. {
  6579. name: "Macro",
  6580. height: math.unit(60, "feet")
  6581. }
  6582. ]
  6583. ))
  6584. characterMakers.push(() => makeCharacter(
  6585. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6586. {
  6587. front: {
  6588. height: math.unit(6, "feet"),
  6589. weight: math.unit(165, "lbs"),
  6590. name: "Front",
  6591. image: {
  6592. source: "./media/characters/fluoresce/front.svg"
  6593. }
  6594. }
  6595. },
  6596. [
  6597. {
  6598. name: "Micro",
  6599. height: math.unit(6, "cm")
  6600. },
  6601. {
  6602. name: "Normal",
  6603. height: math.unit(5 + 7 / 12, "feet"),
  6604. default: true
  6605. },
  6606. {
  6607. name: "Macro",
  6608. height: math.unit(56, "feet")
  6609. },
  6610. {
  6611. name: "Megamacro",
  6612. height: math.unit(1.9, "miles")
  6613. },
  6614. ]
  6615. ))
  6616. characterMakers.push(() => makeCharacter(
  6617. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6618. {
  6619. front: {
  6620. height: math.unit(9 + 6 / 12, "feet"),
  6621. weight: math.unit(523, "lbs"),
  6622. name: "Side",
  6623. image: {
  6624. source: "./media/characters/aurora/side.svg"
  6625. }
  6626. }
  6627. },
  6628. [
  6629. {
  6630. name: "Normal",
  6631. height: math.unit(9 + 6 / 12, "feet")
  6632. },
  6633. {
  6634. name: "Macro",
  6635. height: math.unit(96, "feet"),
  6636. default: true
  6637. },
  6638. {
  6639. name: "Macro+",
  6640. height: math.unit(243, "feet")
  6641. },
  6642. ]
  6643. ))
  6644. characterMakers.push(() => makeCharacter(
  6645. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6646. {
  6647. front: {
  6648. height: math.unit(194, "cm"),
  6649. weight: math.unit(90, "kg"),
  6650. name: "Front",
  6651. image: {
  6652. source: "./media/characters/ranek/front.svg"
  6653. }
  6654. },
  6655. side: {
  6656. height: math.unit(194, "cm"),
  6657. weight: math.unit(90, "kg"),
  6658. name: "Side",
  6659. image: {
  6660. source: "./media/characters/ranek/side.svg"
  6661. }
  6662. },
  6663. back: {
  6664. height: math.unit(194, "cm"),
  6665. weight: math.unit(90, "kg"),
  6666. name: "Back",
  6667. image: {
  6668. source: "./media/characters/ranek/back.svg"
  6669. }
  6670. },
  6671. feral: {
  6672. height: math.unit(30, "cm"),
  6673. weight: math.unit(1.6, "lbs"),
  6674. name: "Feral",
  6675. image: {
  6676. source: "./media/characters/ranek/feral.svg"
  6677. }
  6678. },
  6679. },
  6680. [
  6681. {
  6682. name: "Normal",
  6683. height: math.unit(194, "cm"),
  6684. default: true
  6685. },
  6686. {
  6687. name: "Macro",
  6688. height: math.unit(100, "meters")
  6689. },
  6690. ]
  6691. ))
  6692. characterMakers.push(() => makeCharacter(
  6693. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  6694. {
  6695. front: {
  6696. height: math.unit(5 + 6 / 12, "feet"),
  6697. weight: math.unit(153, "lbs"),
  6698. name: "Front",
  6699. image: {
  6700. source: "./media/characters/andrew-cooper/front.svg"
  6701. }
  6702. },
  6703. },
  6704. [
  6705. {
  6706. name: "Nano",
  6707. height: math.unit(1, "mm")
  6708. },
  6709. {
  6710. name: "Micro",
  6711. height: math.unit(2, "inches")
  6712. },
  6713. {
  6714. name: "Normal",
  6715. height: math.unit(5 + 6 / 12, "feet"),
  6716. default: true
  6717. }
  6718. ]
  6719. ))
  6720. characterMakers.push(() => makeCharacter(
  6721. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  6722. {
  6723. front: {
  6724. height: math.unit(6, "feet"),
  6725. weight: math.unit(180, "lbs"),
  6726. name: "Front",
  6727. image: {
  6728. source: "./media/characters/akane-sato/front.svg",
  6729. extra: 1219 / 1140
  6730. }
  6731. },
  6732. back: {
  6733. height: math.unit(6, "feet"),
  6734. weight: math.unit(180, "lbs"),
  6735. name: "Back",
  6736. image: {
  6737. source: "./media/characters/akane-sato/back.svg",
  6738. extra: 1219 / 1170
  6739. }
  6740. },
  6741. },
  6742. [
  6743. {
  6744. name: "Normal",
  6745. height: math.unit(2.5, "meters")
  6746. },
  6747. {
  6748. name: "Macro",
  6749. height: math.unit(250, "meters"),
  6750. default: true
  6751. },
  6752. {
  6753. name: "Megamacro",
  6754. height: math.unit(25, "km")
  6755. },
  6756. ]
  6757. ))
  6758. characterMakers.push(() => makeCharacter(
  6759. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  6760. {
  6761. front: {
  6762. height: math.unit(6, "feet"),
  6763. weight: math.unit(65, "kg"),
  6764. name: "Front",
  6765. image: {
  6766. source: "./media/characters/rook/front.svg",
  6767. extra: 960 / 950
  6768. }
  6769. }
  6770. },
  6771. [
  6772. {
  6773. name: "Normal",
  6774. height: math.unit(8.8, "feet")
  6775. },
  6776. {
  6777. name: "Macro",
  6778. height: math.unit(88, "feet"),
  6779. default: true
  6780. },
  6781. {
  6782. name: "Megamacro",
  6783. height: math.unit(8, "miles")
  6784. },
  6785. ]
  6786. ))
  6787. characterMakers.push(() => makeCharacter(
  6788. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  6789. {
  6790. front: {
  6791. height: math.unit(12 + 2 / 12, "feet"),
  6792. weight: math.unit(808, "lbs"),
  6793. name: "Front",
  6794. image: {
  6795. source: "./media/characters/prodigy/front.svg"
  6796. }
  6797. }
  6798. },
  6799. [
  6800. {
  6801. name: "Normal",
  6802. height: math.unit(12 + 2 / 12, "feet"),
  6803. default: true
  6804. },
  6805. {
  6806. name: "Macro",
  6807. height: math.unit(143, "feet")
  6808. },
  6809. {
  6810. name: "Macro+",
  6811. height: math.unit(400, "feet")
  6812. },
  6813. ]
  6814. ))
  6815. characterMakers.push(() => makeCharacter(
  6816. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  6817. {
  6818. front: {
  6819. height: math.unit(6, "feet"),
  6820. weight: math.unit(225, "lbs"),
  6821. name: "Front",
  6822. image: {
  6823. source: "./media/characters/daniel/front.svg"
  6824. }
  6825. },
  6826. leaning: {
  6827. height: math.unit(6, "feet"),
  6828. weight: math.unit(225, "lbs"),
  6829. name: "Leaning",
  6830. image: {
  6831. source: "./media/characters/daniel/leaning.svg"
  6832. }
  6833. },
  6834. },
  6835. [
  6836. {
  6837. name: "Macro",
  6838. height: math.unit(1000, "feet"),
  6839. default: true
  6840. },
  6841. ]
  6842. ))
  6843. characterMakers.push(() => makeCharacter(
  6844. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  6845. {
  6846. front: {
  6847. height: math.unit(6, "feet"),
  6848. weight: math.unit(88, "lbs"),
  6849. name: "Front",
  6850. image: {
  6851. source: "./media/characters/chiros/front.svg",
  6852. extra: 306 / 226
  6853. }
  6854. },
  6855. side: {
  6856. height: math.unit(6, "feet"),
  6857. weight: math.unit(88, "lbs"),
  6858. name: "Side",
  6859. image: {
  6860. source: "./media/characters/chiros/side.svg",
  6861. extra: 306 / 226
  6862. }
  6863. },
  6864. },
  6865. [
  6866. {
  6867. name: "Normal",
  6868. height: math.unit(6, "cm"),
  6869. default: true
  6870. },
  6871. ]
  6872. ))
  6873. characterMakers.push(() => makeCharacter(
  6874. { name: "Selka", species: ["snake"], tags: ["naga"] },
  6875. {
  6876. front: {
  6877. height: math.unit(6, "feet"),
  6878. weight: math.unit(100, "lbs"),
  6879. name: "Front",
  6880. image: {
  6881. source: "./media/characters/selka/front.svg",
  6882. extra: 947 / 887
  6883. }
  6884. }
  6885. },
  6886. [
  6887. {
  6888. name: "Normal",
  6889. height: math.unit(5, "cm"),
  6890. default: true
  6891. },
  6892. ]
  6893. ))
  6894. characterMakers.push(() => makeCharacter(
  6895. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  6896. {
  6897. front: {
  6898. height: math.unit(8 + 3 / 12, "feet"),
  6899. weight: math.unit(424, "lbs"),
  6900. name: "Front",
  6901. image: {
  6902. source: "./media/characters/verin/front.svg",
  6903. extra: 1845 / 1550
  6904. }
  6905. },
  6906. frontArmored: {
  6907. height: math.unit(8 + 3 / 12, "feet"),
  6908. weight: math.unit(424, "lbs"),
  6909. name: "Front (Armored)",
  6910. image: {
  6911. source: "./media/characters/verin/front-armor.svg",
  6912. extra: 1845 / 1550,
  6913. bottom: 0.01
  6914. }
  6915. },
  6916. back: {
  6917. height: math.unit(8 + 3 / 12, "feet"),
  6918. weight: math.unit(424, "lbs"),
  6919. name: "Back",
  6920. image: {
  6921. source: "./media/characters/verin/back.svg",
  6922. bottom: 0.1,
  6923. extra: 1
  6924. }
  6925. },
  6926. foot: {
  6927. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  6928. name: "Foot",
  6929. image: {
  6930. source: "./media/characters/verin/foot.svg"
  6931. }
  6932. },
  6933. },
  6934. [
  6935. {
  6936. name: "Normal",
  6937. height: math.unit(8 + 3 / 12, "feet")
  6938. },
  6939. {
  6940. name: "Minimacro",
  6941. height: math.unit(21, "feet"),
  6942. default: true
  6943. },
  6944. {
  6945. name: "Macro",
  6946. height: math.unit(626, "feet")
  6947. },
  6948. ]
  6949. ))
  6950. characterMakers.push(() => makeCharacter(
  6951. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  6952. {
  6953. front: {
  6954. height: math.unit(2.718, "meters"),
  6955. weight: math.unit(150, "lbs"),
  6956. name: "Front",
  6957. image: {
  6958. source: "./media/characters/sovrim-terraquian/front.svg"
  6959. }
  6960. },
  6961. back: {
  6962. height: math.unit(2.718, "meters"),
  6963. weight: math.unit(150, "lbs"),
  6964. name: "Back",
  6965. image: {
  6966. source: "./media/characters/sovrim-terraquian/back.svg"
  6967. }
  6968. }
  6969. },
  6970. [
  6971. {
  6972. name: "Micro",
  6973. height: math.unit(2, "inches")
  6974. },
  6975. {
  6976. name: "Small",
  6977. height: math.unit(1, "meter")
  6978. },
  6979. {
  6980. name: "Normal",
  6981. height: math.unit(Math.E, "meters"),
  6982. default: true
  6983. },
  6984. {
  6985. name: "Macro",
  6986. height: math.unit(20, "meters")
  6987. },
  6988. {
  6989. name: "Macro+",
  6990. height: math.unit(400, "meters")
  6991. },
  6992. ]
  6993. ))
  6994. characterMakers.push(() => makeCharacter(
  6995. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  6996. {
  6997. front: {
  6998. height: math.unit(7, "feet"),
  6999. weight: math.unit(489, "lbs"),
  7000. name: "Front",
  7001. image: {
  7002. source: "./media/characters/reece-silvermane/front.svg",
  7003. bottom: 0.02,
  7004. extra: 1
  7005. }
  7006. },
  7007. },
  7008. [
  7009. {
  7010. name: "Macro",
  7011. height: math.unit(1.5, "miles"),
  7012. default: true
  7013. },
  7014. ]
  7015. ))
  7016. characterMakers.push(() => makeCharacter(
  7017. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7018. {
  7019. front: {
  7020. height: math.unit(6, "feet"),
  7021. weight: math.unit(78, "kg"),
  7022. name: "Front",
  7023. image: {
  7024. source: "./media/characters/kane/front.svg",
  7025. extra: 978 / 899
  7026. }
  7027. },
  7028. },
  7029. [
  7030. {
  7031. name: "Normal",
  7032. height: math.unit(2.1, "m"),
  7033. },
  7034. {
  7035. name: "Macro",
  7036. height: math.unit(1, "km"),
  7037. default: true
  7038. },
  7039. ]
  7040. ))
  7041. characterMakers.push(() => makeCharacter(
  7042. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7043. {
  7044. front: {
  7045. height: math.unit(6, "feet"),
  7046. weight: math.unit(200, "kg"),
  7047. name: "Front",
  7048. image: {
  7049. source: "./media/characters/tegon/front.svg",
  7050. bottom: 0.01,
  7051. extra: 1
  7052. }
  7053. },
  7054. },
  7055. [
  7056. {
  7057. name: "Micro",
  7058. height: math.unit(1, "inch")
  7059. },
  7060. {
  7061. name: "Normal",
  7062. height: math.unit(6 + 3 / 12, "feet"),
  7063. default: true
  7064. },
  7065. {
  7066. name: "Macro",
  7067. height: math.unit(300, "feet")
  7068. },
  7069. {
  7070. name: "Megamacro",
  7071. height: math.unit(69, "miles")
  7072. },
  7073. ]
  7074. ))
  7075. characterMakers.push(() => makeCharacter(
  7076. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7077. {
  7078. side: {
  7079. height: math.unit(6, "feet"),
  7080. weight: math.unit(2304, "lbs"),
  7081. name: "Side",
  7082. image: {
  7083. source: "./media/characters/arcturax/side.svg",
  7084. extra: 790 / 376,
  7085. bottom: 0.01
  7086. }
  7087. },
  7088. },
  7089. [
  7090. {
  7091. name: "Micro",
  7092. height: math.unit(2, "inch")
  7093. },
  7094. {
  7095. name: "Normal",
  7096. height: math.unit(6, "feet")
  7097. },
  7098. {
  7099. name: "Macro",
  7100. height: math.unit(39, "feet"),
  7101. default: true
  7102. },
  7103. {
  7104. name: "Megamacro",
  7105. height: math.unit(7, "miles")
  7106. },
  7107. ]
  7108. ))
  7109. characterMakers.push(() => makeCharacter(
  7110. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7111. {
  7112. front: {
  7113. height: math.unit(6, "feet"),
  7114. weight: math.unit(50, "lbs"),
  7115. name: "Front",
  7116. image: {
  7117. source: "./media/characters/sentri/front.svg",
  7118. extra: 1750 / 1570,
  7119. bottom: 0.025
  7120. }
  7121. },
  7122. frontAlt: {
  7123. height: math.unit(6, "feet"),
  7124. weight: math.unit(50, "lbs"),
  7125. name: "Front (Alt)",
  7126. image: {
  7127. source: "./media/characters/sentri/front-alt.svg",
  7128. extra: 1750 / 1570,
  7129. bottom: 0.025
  7130. }
  7131. },
  7132. },
  7133. [
  7134. {
  7135. name: "Normal",
  7136. height: math.unit(15, "feet"),
  7137. default: true
  7138. },
  7139. {
  7140. name: "Macro",
  7141. height: math.unit(2500, "feet")
  7142. }
  7143. ]
  7144. ))
  7145. characterMakers.push(() => makeCharacter(
  7146. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7147. {
  7148. front: {
  7149. height: math.unit(5 + 8 / 12, "feet"),
  7150. weight: math.unit(130, "lbs"),
  7151. name: "Front",
  7152. image: {
  7153. source: "./media/characters/corvin/front.svg",
  7154. extra: 1803 / 1629
  7155. }
  7156. },
  7157. frontShirt: {
  7158. height: math.unit(5 + 8 / 12, "feet"),
  7159. weight: math.unit(130, "lbs"),
  7160. name: "Front (Shirt)",
  7161. image: {
  7162. source: "./media/characters/corvin/front-shirt.svg",
  7163. extra: 1803 / 1629
  7164. }
  7165. },
  7166. frontPoncho: {
  7167. height: math.unit(5 + 8 / 12, "feet"),
  7168. weight: math.unit(130, "lbs"),
  7169. name: "Front (Poncho)",
  7170. image: {
  7171. source: "./media/characters/corvin/front-poncho.svg",
  7172. extra: 1803 / 1629
  7173. }
  7174. },
  7175. side: {
  7176. height: math.unit(5 + 8 / 12, "feet"),
  7177. weight: math.unit(130, "lbs"),
  7178. name: "Side",
  7179. image: {
  7180. source: "./media/characters/corvin/side.svg",
  7181. extra: 1012 / 945
  7182. }
  7183. },
  7184. back: {
  7185. height: math.unit(5 + 8 / 12, "feet"),
  7186. weight: math.unit(130, "lbs"),
  7187. name: "Back",
  7188. image: {
  7189. source: "./media/characters/corvin/back.svg",
  7190. extra: 1803 / 1629
  7191. }
  7192. },
  7193. },
  7194. [
  7195. {
  7196. name: "Micro",
  7197. height: math.unit(3, "inches")
  7198. },
  7199. {
  7200. name: "Normal",
  7201. height: math.unit(5 + 8 / 12, "feet")
  7202. },
  7203. {
  7204. name: "Macro",
  7205. height: math.unit(300, "feet"),
  7206. default: true
  7207. },
  7208. {
  7209. name: "Megamacro",
  7210. height: math.unit(500, "miles")
  7211. }
  7212. ]
  7213. ))
  7214. characterMakers.push(() => makeCharacter(
  7215. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7216. {
  7217. front: {
  7218. height: math.unit(6, "feet"),
  7219. weight: math.unit(135, "lbs"),
  7220. name: "Front",
  7221. image: {
  7222. source: "./media/characters/q/front.svg",
  7223. extra: 854 / 752,
  7224. bottom: 0.005
  7225. }
  7226. },
  7227. back: {
  7228. height: math.unit(6, "feet"),
  7229. weight: math.unit(130, "lbs"),
  7230. name: "Back",
  7231. image: {
  7232. source: "./media/characters/q/back.svg",
  7233. extra: 854 / 752
  7234. }
  7235. },
  7236. },
  7237. [
  7238. {
  7239. name: "Macro",
  7240. height: math.unit(90, "feet"),
  7241. default: true
  7242. },
  7243. {
  7244. name: "Extra Macro",
  7245. height: math.unit(300, "feet"),
  7246. },
  7247. {
  7248. name: "BIG WALF",
  7249. height: math.unit(750, "feet"),
  7250. },
  7251. ]
  7252. ))
  7253. characterMakers.push(() => makeCharacter(
  7254. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7255. {
  7256. front: {
  7257. height: math.unit(6, "feet"),
  7258. weight: math.unit(150, "lbs"),
  7259. name: "Front",
  7260. image: {
  7261. source: "./media/characters/carley/front.svg",
  7262. extra: 3927 / 3540,
  7263. bottom: 0.03
  7264. }
  7265. }
  7266. },
  7267. [
  7268. {
  7269. name: "Normal",
  7270. height: math.unit(6 + 3 / 12, "feet")
  7271. },
  7272. {
  7273. name: "Macro",
  7274. height: math.unit(185, "feet"),
  7275. default: true
  7276. },
  7277. {
  7278. name: "Megamacro",
  7279. height: math.unit(8, "miles"),
  7280. },
  7281. ]
  7282. ))
  7283. characterMakers.push(() => makeCharacter(
  7284. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7285. {
  7286. front: {
  7287. height: math.unit(3, "feet"),
  7288. weight: math.unit(28, "lbs"),
  7289. name: "Front",
  7290. image: {
  7291. source: "./media/characters/citrine/front.svg"
  7292. }
  7293. }
  7294. },
  7295. [
  7296. {
  7297. name: "Normal",
  7298. height: math.unit(3, "feet"),
  7299. default: true
  7300. }
  7301. ]
  7302. ))
  7303. characterMakers.push(() => makeCharacter(
  7304. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7305. {
  7306. front: {
  7307. height: math.unit(14, "feet"),
  7308. weight: math.unit(1450, "kg"),
  7309. capacity: math.unit(15, "people"),
  7310. name: "Front",
  7311. image: {
  7312. source: "./media/characters/aura-starwind/front.svg",
  7313. extra: 1455 / 1335
  7314. }
  7315. },
  7316. side: {
  7317. height: math.unit(14, "feet"),
  7318. weight: math.unit(1450, "kg"),
  7319. capacity: math.unit(15, "people"),
  7320. name: "Side",
  7321. image: {
  7322. source: "./media/characters/aura-starwind/side.svg",
  7323. extra: 1654 / 1497
  7324. }
  7325. },
  7326. taur: {
  7327. height: math.unit(18, "feet"),
  7328. weight: math.unit(5500, "kg"),
  7329. capacity: math.unit(50, "people"),
  7330. name: "Taur",
  7331. image: {
  7332. source: "./media/characters/aura-starwind/taur.svg",
  7333. extra: 1760 / 1650
  7334. }
  7335. },
  7336. feral: {
  7337. height: math.unit(46, "feet"),
  7338. weight: math.unit(25000, "kg"),
  7339. capacity: math.unit(120, "people"),
  7340. name: "Feral",
  7341. image: {
  7342. source: "./media/characters/aura-starwind/feral.svg"
  7343. }
  7344. },
  7345. },
  7346. [
  7347. {
  7348. name: "Normal",
  7349. height: math.unit(14, "feet"),
  7350. default: true
  7351. },
  7352. {
  7353. name: "Macro",
  7354. height: math.unit(50, "meters")
  7355. },
  7356. {
  7357. name: "Megamacro",
  7358. height: math.unit(5000, "meters")
  7359. },
  7360. {
  7361. name: "Gigamacro",
  7362. height: math.unit(100000, "kilometers")
  7363. },
  7364. ]
  7365. ))
  7366. characterMakers.push(() => makeCharacter(
  7367. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7368. {
  7369. front: {
  7370. height: math.unit(2 + 7 / 12, "feet"),
  7371. weight: math.unit(32, "lbs"),
  7372. name: "Front",
  7373. image: {
  7374. source: "./media/characters/rivet/front.svg",
  7375. extra: 1716 / 1658,
  7376. bottom: 0.03
  7377. }
  7378. },
  7379. foot: {
  7380. height: math.unit(0.551, "feet"),
  7381. name: "Rivet's Foot",
  7382. image: {
  7383. source: "./media/characters/rivet/foot.svg"
  7384. },
  7385. rename: true
  7386. }
  7387. },
  7388. [
  7389. {
  7390. name: "Micro",
  7391. height: math.unit(1.5, "inches"),
  7392. },
  7393. {
  7394. name: "Normal",
  7395. height: math.unit(2 + 7 / 12, "feet"),
  7396. default: true
  7397. },
  7398. {
  7399. name: "Macro",
  7400. height: math.unit(85, "feet")
  7401. },
  7402. {
  7403. name: "Megamacro",
  7404. height: math.unit(2.2, "km")
  7405. }
  7406. ]
  7407. ))
  7408. characterMakers.push(() => makeCharacter(
  7409. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7410. {
  7411. front: {
  7412. height: math.unit(5 + 9 / 12, "feet"),
  7413. weight: math.unit(150, "lbs"),
  7414. name: "Front",
  7415. image: {
  7416. source: "./media/characters/coffee/front.svg",
  7417. extra: 3666 / 3032,
  7418. bottom: 0.04
  7419. }
  7420. },
  7421. foot: {
  7422. height: math.unit(1.29, "feet"),
  7423. name: "Foot",
  7424. image: {
  7425. source: "./media/characters/coffee/foot.svg"
  7426. }
  7427. },
  7428. },
  7429. [
  7430. {
  7431. name: "Micro",
  7432. height: math.unit(2, "inches"),
  7433. },
  7434. {
  7435. name: "Normal",
  7436. height: math.unit(5 + 9 / 12, "feet"),
  7437. default: true
  7438. },
  7439. {
  7440. name: "Macro",
  7441. height: math.unit(800, "feet")
  7442. },
  7443. {
  7444. name: "Megamacro",
  7445. height: math.unit(25, "miles")
  7446. }
  7447. ]
  7448. ))
  7449. characterMakers.push(() => makeCharacter(
  7450. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7451. {
  7452. front: {
  7453. height: math.unit(6, "feet"),
  7454. weight: math.unit(200, "lbs"),
  7455. name: "Front",
  7456. image: {
  7457. source: "./media/characters/chari-gal/front.svg",
  7458. extra: 1568 / 1385,
  7459. bottom: 0.047
  7460. }
  7461. },
  7462. gigantamax: {
  7463. height: math.unit(6 * 16, "feet"),
  7464. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7465. name: "Gigantamax",
  7466. image: {
  7467. source: "./media/characters/chari-gal/gigantamax.svg",
  7468. extra: 1124 / 888,
  7469. bottom: 0.03
  7470. }
  7471. },
  7472. },
  7473. [
  7474. {
  7475. name: "Normal",
  7476. height: math.unit(5 + 7 / 12, "feet")
  7477. },
  7478. {
  7479. name: "Macro",
  7480. height: math.unit(200, "feet"),
  7481. default: true
  7482. }
  7483. ]
  7484. ))
  7485. characterMakers.push(() => makeCharacter(
  7486. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7487. {
  7488. front: {
  7489. height: math.unit(6, "feet"),
  7490. weight: math.unit(150, "lbs"),
  7491. name: "Front",
  7492. image: {
  7493. source: "./media/characters/nova/front.svg",
  7494. extra: 5000 / 4722,
  7495. bottom: 0.02
  7496. }
  7497. }
  7498. },
  7499. [
  7500. {
  7501. name: "Micro-",
  7502. height: math.unit(0.8, "inches")
  7503. },
  7504. {
  7505. name: "Micro",
  7506. height: math.unit(2, "inches"),
  7507. default: true
  7508. },
  7509. ]
  7510. ))
  7511. characterMakers.push(() => makeCharacter(
  7512. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7513. {
  7514. front: {
  7515. height: math.unit(3 + 1 / 12, "feet"),
  7516. weight: math.unit(21.7, "lbs"),
  7517. name: "Front",
  7518. image: {
  7519. source: "./media/characters/argent/front.svg",
  7520. extra: 1471 / 1331,
  7521. bottom: 100.8 / 1575.5
  7522. }
  7523. }
  7524. },
  7525. [
  7526. {
  7527. name: "Micro",
  7528. height: math.unit(2, "inches")
  7529. },
  7530. {
  7531. name: "Normal",
  7532. height: math.unit(3 + 1 / 12, "feet"),
  7533. default: true
  7534. },
  7535. {
  7536. name: "Macro",
  7537. height: math.unit(120, "feet")
  7538. },
  7539. ]
  7540. ))
  7541. characterMakers.push(() => makeCharacter(
  7542. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7543. {
  7544. lamp: {
  7545. height: math.unit(7 * 1559 / 989, "feet"),
  7546. name: "Magic Lamp",
  7547. image: {
  7548. source: "./media/characters/mira-al-cul/lamp.svg",
  7549. extra: 1617 / 1559
  7550. }
  7551. },
  7552. front: {
  7553. height: math.unit(7, "feet"),
  7554. name: "Front",
  7555. image: {
  7556. source: "./media/characters/mira-al-cul/front.svg",
  7557. extra: 1044 / 990
  7558. }
  7559. },
  7560. },
  7561. [
  7562. {
  7563. name: "Heavily Restricted",
  7564. height: math.unit(7 * 1559 / 989, "feet")
  7565. },
  7566. {
  7567. name: "Freshly Freed",
  7568. height: math.unit(50 * 1559 / 989, "feet")
  7569. },
  7570. {
  7571. name: "World Encompassing",
  7572. height: math.unit(10000 * 1559 / 989, "miles")
  7573. },
  7574. {
  7575. name: "Galactic",
  7576. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7577. },
  7578. {
  7579. name: "Palmed Universe",
  7580. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7581. default: true
  7582. },
  7583. {
  7584. name: "Multiversal Matriarch",
  7585. height: math.unit(8.87e10, "yottameters")
  7586. },
  7587. {
  7588. name: "Void Mother",
  7589. height: math.unit(3.14e110, "yottaparsecs")
  7590. },
  7591. ]
  7592. ))
  7593. characterMakers.push(() => makeCharacter(
  7594. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7595. {
  7596. front: {
  7597. height: math.unit(17 + 1 / 12, "feet"),
  7598. weight: math.unit(476.2 * 5, "lbs"),
  7599. name: "Front",
  7600. image: {
  7601. source: "./media/characters/kuro-shi-uchū/front.svg",
  7602. extra: 2329 / 1835,
  7603. bottom: 0.02
  7604. }
  7605. },
  7606. },
  7607. [
  7608. {
  7609. name: "Micro",
  7610. height: math.unit(2, "inches")
  7611. },
  7612. {
  7613. name: "Normal",
  7614. height: math.unit(12, "meters")
  7615. },
  7616. {
  7617. name: "Planetary",
  7618. height: math.unit(0.00929, "AU"),
  7619. default: true
  7620. },
  7621. {
  7622. name: "Universal",
  7623. height: math.unit(20, "gigaparsecs")
  7624. },
  7625. ]
  7626. ))
  7627. characterMakers.push(() => makeCharacter(
  7628. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7629. {
  7630. front: {
  7631. height: math.unit(5 + 2 / 12, "feet"),
  7632. weight: math.unit(120, "lbs"),
  7633. name: "Front",
  7634. image: {
  7635. source: "./media/characters/katherine/front.svg",
  7636. extra: 2075 / 1969
  7637. }
  7638. },
  7639. dress: {
  7640. height: math.unit(5 + 2 / 12, "feet"),
  7641. weight: math.unit(120, "lbs"),
  7642. name: "Dress",
  7643. image: {
  7644. source: "./media/characters/katherine/dress.svg",
  7645. extra: 2258 / 2064
  7646. }
  7647. },
  7648. },
  7649. [
  7650. {
  7651. name: "Micro",
  7652. height: math.unit(1, "inches"),
  7653. default: true
  7654. },
  7655. {
  7656. name: "Normal",
  7657. height: math.unit(5 + 2 / 12, "feet")
  7658. },
  7659. {
  7660. name: "Macro",
  7661. height: math.unit(100, "meters")
  7662. },
  7663. {
  7664. name: "Megamacro",
  7665. height: math.unit(80, "miles")
  7666. },
  7667. ]
  7668. ))
  7669. characterMakers.push(() => makeCharacter(
  7670. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7671. {
  7672. front: {
  7673. height: math.unit(7 + 8 / 12, "feet"),
  7674. weight: math.unit(250, "lbs"),
  7675. name: "Front",
  7676. image: {
  7677. source: "./media/characters/yevis/front.svg",
  7678. extra: 1938 / 1755
  7679. }
  7680. }
  7681. },
  7682. [
  7683. {
  7684. name: "Mortal",
  7685. height: math.unit(7 + 8 / 12, "feet")
  7686. },
  7687. {
  7688. name: "Battle",
  7689. height: math.unit(25 + 11 / 12, "feet")
  7690. },
  7691. {
  7692. name: "Wrath",
  7693. height: math.unit(1654 + 11 / 12, "feet")
  7694. },
  7695. {
  7696. name: "Planet Destroyer",
  7697. height: math.unit(12000, "miles")
  7698. },
  7699. {
  7700. name: "Galaxy Conqueror",
  7701. height: math.unit(1.45, "zettameters"),
  7702. default: true
  7703. },
  7704. {
  7705. name: "Universal War",
  7706. height: math.unit(184, "gigaparsecs")
  7707. },
  7708. {
  7709. name: "Eternity War",
  7710. height: math.unit(1.98e55, "yottaparsecs")
  7711. },
  7712. ]
  7713. ))
  7714. characterMakers.push(() => makeCharacter(
  7715. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  7716. {
  7717. front: {
  7718. height: math.unit(5 + 8 / 12, "feet"),
  7719. weight: math.unit(63, "kg"),
  7720. name: "Front",
  7721. image: {
  7722. source: "./media/characters/xavier/front.svg",
  7723. extra: 944 / 883
  7724. }
  7725. },
  7726. frontStretch: {
  7727. height: math.unit(5 + 8 / 12, "feet"),
  7728. weight: math.unit(63, "kg"),
  7729. name: "Stretching",
  7730. image: {
  7731. source: "./media/characters/xavier/front-stretch.svg",
  7732. extra: 962 / 820
  7733. }
  7734. },
  7735. },
  7736. [
  7737. {
  7738. name: "Normal",
  7739. height: math.unit(5 + 8 / 12, "feet")
  7740. },
  7741. {
  7742. name: "Macro",
  7743. height: math.unit(100, "meters"),
  7744. default: true
  7745. },
  7746. {
  7747. name: "McLargeHuge",
  7748. height: math.unit(10, "miles")
  7749. },
  7750. ]
  7751. ))
  7752. characterMakers.push(() => makeCharacter(
  7753. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  7754. {
  7755. front: {
  7756. height: math.unit(5 + 5 / 12, "feet"),
  7757. weight: math.unit(150, "lb"),
  7758. name: "Front",
  7759. image: {
  7760. source: "./media/characters/joshii/front.svg"
  7761. }
  7762. },
  7763. foot: {
  7764. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  7765. name: "Foot",
  7766. image: {
  7767. source: "./media/characters/joshii/foot.svg"
  7768. }
  7769. },
  7770. },
  7771. [
  7772. {
  7773. name: "Micro",
  7774. height: math.unit(2, "inches")
  7775. },
  7776. {
  7777. name: "Normal",
  7778. height: math.unit(5 + 5 / 12, "feet"),
  7779. default: true
  7780. },
  7781. {
  7782. name: "Macro",
  7783. height: math.unit(785, "feet")
  7784. },
  7785. {
  7786. name: "Megamacro",
  7787. height: math.unit(24.5, "miles")
  7788. },
  7789. ]
  7790. ))
  7791. characterMakers.push(() => makeCharacter(
  7792. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  7793. {
  7794. front: {
  7795. height: math.unit(6, "feet"),
  7796. weight: math.unit(150, "lb"),
  7797. name: "Front",
  7798. image: {
  7799. source: "./media/characters/goddess-elizabeth/front.svg",
  7800. extra: 1800 / 1525,
  7801. bottom: 0.005
  7802. }
  7803. },
  7804. foot: {
  7805. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  7806. name: "Foot",
  7807. image: {
  7808. source: "./media/characters/goddess-elizabeth/foot.svg"
  7809. }
  7810. },
  7811. mouth: {
  7812. height: math.unit(6, "feet"),
  7813. name: "Mouth",
  7814. image: {
  7815. source: "./media/characters/goddess-elizabeth/mouth.svg"
  7816. }
  7817. },
  7818. },
  7819. [
  7820. {
  7821. name: "Micro",
  7822. height: math.unit(12, "feet")
  7823. },
  7824. {
  7825. name: "Normal",
  7826. height: math.unit(80, "miles"),
  7827. default: true
  7828. },
  7829. {
  7830. name: "Macro",
  7831. height: math.unit(15000, "parsecs")
  7832. },
  7833. ]
  7834. ))
  7835. characterMakers.push(() => makeCharacter(
  7836. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  7837. {
  7838. front: {
  7839. height: math.unit(5 + 9 / 12, "feet"),
  7840. weight: math.unit(144, "lb"),
  7841. name: "Front",
  7842. image: {
  7843. source: "./media/characters/kara/front.svg"
  7844. }
  7845. },
  7846. feet: {
  7847. height: math.unit(6 / 6.765, "feet"),
  7848. name: "Kara's Feet",
  7849. rename: true,
  7850. image: {
  7851. source: "./media/characters/kara/feet.svg"
  7852. }
  7853. },
  7854. },
  7855. [
  7856. {
  7857. name: "Normal",
  7858. height: math.unit(5 + 9 / 12, "feet")
  7859. },
  7860. {
  7861. name: "Macro",
  7862. height: math.unit(174, "feet"),
  7863. default: true
  7864. },
  7865. ]
  7866. ))
  7867. characterMakers.push(() => makeCharacter(
  7868. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  7869. {
  7870. front: {
  7871. height: math.unit(18, "feet"),
  7872. weight: math.unit(4050, "lb"),
  7873. name: "Front",
  7874. image: {
  7875. source: "./media/characters/tyrone/front.svg",
  7876. extra: 2520 / 2402,
  7877. bottom: 0.025
  7878. }
  7879. },
  7880. },
  7881. [
  7882. {
  7883. name: "Normal",
  7884. height: math.unit(18, "feet"),
  7885. default: true
  7886. },
  7887. {
  7888. name: "Macro",
  7889. height: math.unit(300, "feet")
  7890. },
  7891. ]
  7892. ))
  7893. characterMakers.push(() => makeCharacter(
  7894. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  7895. {
  7896. front: {
  7897. height: math.unit(7 + 8 / 12, "feet"),
  7898. weight: math.unit(120, "lb"),
  7899. name: "Front",
  7900. image: {
  7901. source: "./media/characters/danny/front.svg",
  7902. extra: 1490 / 1350
  7903. }
  7904. },
  7905. back: {
  7906. height: math.unit(7 + 8 / 12, "feet"),
  7907. weight: math.unit(120, "lb"),
  7908. name: "Back",
  7909. image: {
  7910. source: "./media/characters/danny/back.svg",
  7911. extra: 1490 / 1350
  7912. }
  7913. },
  7914. },
  7915. [
  7916. {
  7917. name: "Normal",
  7918. height: math.unit(7 + 8 / 12, "feet"),
  7919. default: true
  7920. },
  7921. ]
  7922. ))
  7923. characterMakers.push(() => makeCharacter(
  7924. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  7925. {
  7926. front: {
  7927. height: math.unit(3.5, "inches"),
  7928. weight: math.unit(19, "grams"),
  7929. name: "Front",
  7930. image: {
  7931. source: "./media/characters/mallow/front.svg",
  7932. extra: 471 / 431
  7933. }
  7934. },
  7935. back: {
  7936. height: math.unit(3.5, "inches"),
  7937. weight: math.unit(19, "grams"),
  7938. name: "Back",
  7939. image: {
  7940. source: "./media/characters/mallow/back.svg",
  7941. extra: 471 / 431
  7942. }
  7943. },
  7944. },
  7945. [
  7946. {
  7947. name: "Normal",
  7948. height: math.unit(3.5, "inches"),
  7949. default: true
  7950. },
  7951. ]
  7952. ))
  7953. characterMakers.push(() => makeCharacter(
  7954. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  7955. {
  7956. front: {
  7957. height: math.unit(9, "feet"),
  7958. weight: math.unit(230, "kg"),
  7959. name: "Front",
  7960. image: {
  7961. source: "./media/characters/starry-aqua/front.svg"
  7962. }
  7963. },
  7964. back: {
  7965. height: math.unit(9, "feet"),
  7966. weight: math.unit(230, "kg"),
  7967. name: "Back",
  7968. image: {
  7969. source: "./media/characters/starry-aqua/back.svg"
  7970. }
  7971. },
  7972. hand: {
  7973. height: math.unit(9 * 0.1168, "feet"),
  7974. name: "Hand",
  7975. image: {
  7976. source: "./media/characters/starry-aqua/hand.svg"
  7977. }
  7978. },
  7979. foot: {
  7980. height: math.unit(9 * 0.18, "feet"),
  7981. name: "Foot",
  7982. image: {
  7983. source: "./media/characters/starry-aqua/foot.svg"
  7984. }
  7985. }
  7986. },
  7987. [
  7988. {
  7989. name: "Micro",
  7990. height: math.unit(3, "inches")
  7991. },
  7992. {
  7993. name: "Normal",
  7994. height: math.unit(9, "feet")
  7995. },
  7996. {
  7997. name: "Macro",
  7998. height: math.unit(300, "feet"),
  7999. default: true
  8000. },
  8001. {
  8002. name: "Megamacro",
  8003. height: math.unit(3200, "feet")
  8004. }
  8005. ]
  8006. ))
  8007. characterMakers.push(() => makeCharacter(
  8008. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8009. {
  8010. front: {
  8011. height: math.unit(6, "feet"),
  8012. weight: math.unit(230, "lb"),
  8013. name: "Front",
  8014. image: {
  8015. source: "./media/characters/luka/front.svg",
  8016. extra: 1,
  8017. bottom: 0.025
  8018. }
  8019. },
  8020. },
  8021. [
  8022. {
  8023. name: "Normal",
  8024. height: math.unit(12 + 8 / 12, "feet"),
  8025. default: true
  8026. },
  8027. {
  8028. name: "Minimacro",
  8029. height: math.unit(20, "feet")
  8030. },
  8031. {
  8032. name: "Macro",
  8033. height: math.unit(250, "feet")
  8034. },
  8035. {
  8036. name: "Megamacro",
  8037. height: math.unit(5, "miles")
  8038. },
  8039. {
  8040. name: "Gigamacro",
  8041. height: math.unit(8000, "miles")
  8042. },
  8043. ]
  8044. ))
  8045. characterMakers.push(() => makeCharacter(
  8046. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8047. {
  8048. front: {
  8049. height: math.unit(6, "feet"),
  8050. weight: math.unit(150, "lb"),
  8051. name: "Front",
  8052. image: {
  8053. source: "./media/characters/natalie-nightring/front.svg",
  8054. extra: 1,
  8055. bottom: 0.06
  8056. }
  8057. },
  8058. },
  8059. [
  8060. {
  8061. name: "Uh Oh",
  8062. height: math.unit(0.1, "mm")
  8063. },
  8064. {
  8065. name: "Small",
  8066. height: math.unit(3, "inches")
  8067. },
  8068. {
  8069. name: "Human Scale",
  8070. height: math.unit(6, "feet")
  8071. },
  8072. {
  8073. name: "Librarian",
  8074. height: math.unit(50, "feet"),
  8075. default: true
  8076. },
  8077. {
  8078. name: "Immense",
  8079. height: math.unit(200, "miles")
  8080. },
  8081. ]
  8082. ))
  8083. characterMakers.push(() => makeCharacter(
  8084. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8085. {
  8086. front: {
  8087. height: math.unit(6, "feet"),
  8088. weight: math.unit(180, "lbs"),
  8089. name: "Front",
  8090. image: {
  8091. source: "./media/characters/danni-rosie/front.svg",
  8092. extra: 1260 / 1128,
  8093. bottom: 0.022
  8094. }
  8095. },
  8096. },
  8097. [
  8098. {
  8099. name: "Micro",
  8100. height: math.unit(2, "inches"),
  8101. default: true
  8102. },
  8103. ]
  8104. ))
  8105. characterMakers.push(() => makeCharacter(
  8106. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8107. {
  8108. front: {
  8109. height: math.unit(5 + 9 / 12, "feet"),
  8110. weight: math.unit(220, "lb"),
  8111. name: "Front",
  8112. image: {
  8113. source: "./media/characters/samantha-kruse/front.svg",
  8114. extra: (985 / 935),
  8115. bottom: 0.03
  8116. }
  8117. },
  8118. frontUndressed: {
  8119. height: math.unit(5 + 9 / 12, "feet"),
  8120. weight: math.unit(220, "lb"),
  8121. name: "Front (Undressed)",
  8122. image: {
  8123. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8124. extra: (973 / 923),
  8125. bottom: 0.025
  8126. }
  8127. },
  8128. fat: {
  8129. height: math.unit(5 + 9 / 12, "feet"),
  8130. weight: math.unit(900, "lb"),
  8131. name: "Front (Fat)",
  8132. image: {
  8133. source: "./media/characters/samantha-kruse/fat.svg",
  8134. extra: 2688 / 2561
  8135. }
  8136. },
  8137. },
  8138. [
  8139. {
  8140. name: "Normal",
  8141. height: math.unit(5 + 9 / 12, "feet"),
  8142. default: true
  8143. }
  8144. ]
  8145. ))
  8146. characterMakers.push(() => makeCharacter(
  8147. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8148. {
  8149. back: {
  8150. height: math.unit(5 + 4 / 12, "feet"),
  8151. weight: math.unit(4963, "lb"),
  8152. name: "Back",
  8153. image: {
  8154. source: "./media/characters/amelia-rosie/back.svg",
  8155. extra: 1113 / 963,
  8156. bottom: 0.01
  8157. }
  8158. },
  8159. },
  8160. [
  8161. {
  8162. name: "Level 0",
  8163. height: math.unit(5 + 4 / 12, "feet")
  8164. },
  8165. {
  8166. name: "Level 1",
  8167. height: math.unit(164597, "feet"),
  8168. default: true
  8169. },
  8170. {
  8171. name: "Level 2",
  8172. height: math.unit(956243, "miles")
  8173. },
  8174. {
  8175. name: "Level 3",
  8176. height: math.unit(29421709423, "miles")
  8177. },
  8178. {
  8179. name: "Level 4",
  8180. height: math.unit(154, "lightyears")
  8181. },
  8182. {
  8183. name: "Level 5",
  8184. height: math.unit(4738272, "lightyears")
  8185. },
  8186. {
  8187. name: "Level 6",
  8188. height: math.unit(145787152896, "lightyears")
  8189. },
  8190. ]
  8191. ))
  8192. characterMakers.push(() => makeCharacter(
  8193. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8194. {
  8195. front: {
  8196. height: math.unit(5 + 11 / 12, "feet"),
  8197. weight: math.unit(65, "kg"),
  8198. name: "Front",
  8199. image: {
  8200. source: "./media/characters/rook-kitara/front.svg",
  8201. extra: 1347 / 1274,
  8202. bottom: 0.005
  8203. }
  8204. },
  8205. },
  8206. [
  8207. {
  8208. name: "Totally Unfair",
  8209. height: math.unit(1.8, "mm")
  8210. },
  8211. {
  8212. name: "Lap Rookie",
  8213. height: math.unit(1.4, "feet")
  8214. },
  8215. {
  8216. name: "Normal",
  8217. height: math.unit(5 + 11 / 12, "feet"),
  8218. default: true
  8219. },
  8220. {
  8221. name: "How Did This Happen",
  8222. height: math.unit(80, "miles")
  8223. }
  8224. ]
  8225. ))
  8226. characterMakers.push(() => makeCharacter(
  8227. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8228. {
  8229. front: {
  8230. height: math.unit(7, "feet"),
  8231. weight: math.unit(300, "lb"),
  8232. name: "Front",
  8233. image: {
  8234. source: "./media/characters/pisces/front.svg",
  8235. extra: 2255 / 2115,
  8236. bottom: 0.03
  8237. }
  8238. },
  8239. back: {
  8240. height: math.unit(7, "feet"),
  8241. weight: math.unit(300, "lb"),
  8242. name: "Back",
  8243. image: {
  8244. source: "./media/characters/pisces/back.svg",
  8245. extra: 2146 / 2055,
  8246. bottom: 0.04
  8247. }
  8248. },
  8249. },
  8250. [
  8251. {
  8252. name: "Normal",
  8253. height: math.unit(7, "feet"),
  8254. default: true
  8255. },
  8256. {
  8257. name: "Swimming Pool",
  8258. height: math.unit(12.2, "meters")
  8259. },
  8260. {
  8261. name: "Olympic Swimming Pool",
  8262. height: math.unit(56.3, "meters")
  8263. },
  8264. {
  8265. name: "Lake Superior",
  8266. height: math.unit(93900, "meters")
  8267. },
  8268. {
  8269. name: "Mediterranean Sea",
  8270. height: math.unit(644457, "meters")
  8271. },
  8272. {
  8273. name: "World's Oceans",
  8274. height: math.unit(4567491, "meters")
  8275. },
  8276. ]
  8277. ))
  8278. characterMakers.push(() => makeCharacter(
  8279. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8280. {
  8281. front: {
  8282. height: math.unit(2.3, "meters"),
  8283. weight: math.unit(120, "kg"),
  8284. name: "Front",
  8285. image: {
  8286. source: "./media/characters/zelas/front.svg"
  8287. }
  8288. },
  8289. side: {
  8290. height: math.unit(2.3, "meters"),
  8291. weight: math.unit(120, "kg"),
  8292. name: "Side",
  8293. image: {
  8294. source: "./media/characters/zelas/side.svg"
  8295. }
  8296. },
  8297. back: {
  8298. height: math.unit(2.3, "meters"),
  8299. weight: math.unit(120, "kg"),
  8300. name: "Back",
  8301. image: {
  8302. source: "./media/characters/zelas/back.svg"
  8303. }
  8304. },
  8305. foot: {
  8306. height: math.unit(1.116, "feet"),
  8307. name: "Foot",
  8308. image: {
  8309. source: "./media/characters/zelas/foot.svg"
  8310. }
  8311. },
  8312. },
  8313. [
  8314. {
  8315. name: "Normal",
  8316. height: math.unit(2.3, "meters")
  8317. },
  8318. {
  8319. name: "Macro",
  8320. height: math.unit(30, "meters"),
  8321. default: true
  8322. },
  8323. ]
  8324. ))
  8325. characterMakers.push(() => makeCharacter(
  8326. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8327. {
  8328. front: {
  8329. height: math.unit(1, "inch"),
  8330. weight: math.unit(0.21, "grams"),
  8331. name: "Front",
  8332. image: {
  8333. source: "./media/characters/talbot/front.svg",
  8334. extra: 594 / 544
  8335. }
  8336. },
  8337. },
  8338. [
  8339. {
  8340. name: "Micro",
  8341. height: math.unit(1, "inch"),
  8342. default: true
  8343. },
  8344. ]
  8345. ))
  8346. characterMakers.push(() => makeCharacter(
  8347. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8348. {
  8349. front: {
  8350. height: math.unit(3 + 3 / 12, "feet"),
  8351. weight: math.unit(51.8, "lb"),
  8352. name: "Front",
  8353. image: {
  8354. source: "./media/characters/fliss/front.svg",
  8355. extra: 840 / 640
  8356. }
  8357. },
  8358. },
  8359. [
  8360. {
  8361. name: "Teeny Tiny",
  8362. height: math.unit(1, "mm")
  8363. },
  8364. {
  8365. name: "Small",
  8366. height: math.unit(1, "inch"),
  8367. default: true
  8368. },
  8369. {
  8370. name: "Standard Sylveon",
  8371. height: math.unit(3 + 3 / 12, "feet")
  8372. },
  8373. {
  8374. name: "Large Nuisance",
  8375. height: math.unit(33, "feet")
  8376. },
  8377. {
  8378. name: "City Filler",
  8379. height: math.unit(3000, "feet")
  8380. },
  8381. {
  8382. name: "New Horizon",
  8383. height: math.unit(6000, "miles")
  8384. },
  8385. ]
  8386. ))
  8387. characterMakers.push(() => makeCharacter(
  8388. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8389. {
  8390. front: {
  8391. height: math.unit(5, "cm"),
  8392. weight: math.unit(1.94, "g"),
  8393. name: "Front",
  8394. image: {
  8395. source: "./media/characters/fleta/front.svg",
  8396. extra: 835 / 803
  8397. }
  8398. },
  8399. back: {
  8400. height: math.unit(5, "cm"),
  8401. weight: math.unit(1.94, "g"),
  8402. name: "Back",
  8403. image: {
  8404. source: "./media/characters/fleta/back.svg",
  8405. extra: 835 / 803
  8406. }
  8407. },
  8408. },
  8409. [
  8410. {
  8411. name: "Micro",
  8412. height: math.unit(5, "cm"),
  8413. default: true
  8414. },
  8415. ]
  8416. ))
  8417. characterMakers.push(() => makeCharacter(
  8418. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8419. {
  8420. front: {
  8421. height: math.unit(6, "feet"),
  8422. weight: math.unit(225, "lb"),
  8423. name: "Front",
  8424. image: {
  8425. source: "./media/characters/dominic/front.svg",
  8426. extra: 1770 / 1620,
  8427. bottom: 0.025
  8428. }
  8429. },
  8430. back: {
  8431. height: math.unit(6, "feet"),
  8432. weight: math.unit(225, "lb"),
  8433. name: "Back",
  8434. image: {
  8435. source: "./media/characters/dominic/back.svg",
  8436. extra: 1745 / 1620,
  8437. bottom: 0.065
  8438. }
  8439. },
  8440. },
  8441. [
  8442. {
  8443. name: "Nano",
  8444. height: math.unit(0.1, "mm")
  8445. },
  8446. {
  8447. name: "Micro-",
  8448. height: math.unit(1, "mm")
  8449. },
  8450. {
  8451. name: "Micro",
  8452. height: math.unit(4, "inches")
  8453. },
  8454. {
  8455. name: "Normal",
  8456. height: math.unit(6 + 4 / 12, "feet"),
  8457. default: true
  8458. },
  8459. {
  8460. name: "Macro",
  8461. height: math.unit(115, "feet")
  8462. },
  8463. {
  8464. name: "Macro+",
  8465. height: math.unit(955, "feet")
  8466. },
  8467. {
  8468. name: "Megamacro",
  8469. height: math.unit(8990, "feet")
  8470. },
  8471. {
  8472. name: "Gigmacro",
  8473. height: math.unit(9310, "miles")
  8474. },
  8475. {
  8476. name: "Teramacro",
  8477. height: math.unit(1567005010, "miles")
  8478. },
  8479. {
  8480. name: "Examacro",
  8481. height: math.unit(1425, "parsecs")
  8482. },
  8483. ]
  8484. ))
  8485. characterMakers.push(() => makeCharacter(
  8486. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8487. {
  8488. front: {
  8489. height: math.unit(400, "feet"),
  8490. weight: math.unit(44444444, "lb"),
  8491. name: "Front",
  8492. image: {
  8493. source: "./media/characters/major-colonel/front.svg"
  8494. }
  8495. },
  8496. back: {
  8497. height: math.unit(400, "feet"),
  8498. weight: math.unit(44444444, "lb"),
  8499. name: "Back",
  8500. image: {
  8501. source: "./media/characters/major-colonel/back.svg"
  8502. }
  8503. },
  8504. },
  8505. [
  8506. {
  8507. name: "Macro",
  8508. height: math.unit(400, "feet"),
  8509. default: true
  8510. },
  8511. ]
  8512. ))
  8513. characterMakers.push(() => makeCharacter(
  8514. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8515. {
  8516. catFront: {
  8517. height: math.unit(6, "feet"),
  8518. weight: math.unit(120, "lb"),
  8519. name: "Front (Cat Side)",
  8520. image: {
  8521. source: "./media/characters/axel-lycan/cat-front.svg",
  8522. extra: 430 / 402,
  8523. bottom: 43 / 472.35
  8524. }
  8525. },
  8526. catBack: {
  8527. height: math.unit(6, "feet"),
  8528. weight: math.unit(120, "lb"),
  8529. name: "Back (Cat Side)",
  8530. image: {
  8531. source: "./media/characters/axel-lycan/cat-back.svg",
  8532. extra: 447 / 419,
  8533. bottom: 23.3 / 469
  8534. }
  8535. },
  8536. wolfFront: {
  8537. height: math.unit(6, "feet"),
  8538. weight: math.unit(120, "lb"),
  8539. name: "Front (Wolf Side)",
  8540. image: {
  8541. source: "./media/characters/axel-lycan/wolf-front.svg",
  8542. extra: 485 / 456,
  8543. bottom: 19 / 504
  8544. }
  8545. },
  8546. wolfBack: {
  8547. height: math.unit(6, "feet"),
  8548. weight: math.unit(120, "lb"),
  8549. name: "Back (Wolf Side)",
  8550. image: {
  8551. source: "./media/characters/axel-lycan/wolf-back.svg",
  8552. extra: 475 / 438,
  8553. bottom: 39.2 / 514
  8554. }
  8555. },
  8556. },
  8557. [
  8558. {
  8559. name: "Macro",
  8560. height: math.unit(1, "km"),
  8561. default: true
  8562. },
  8563. ]
  8564. ))
  8565. characterMakers.push(() => makeCharacter(
  8566. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8567. {
  8568. front: {
  8569. height: math.unit(5 + 9 / 12, "feet"),
  8570. weight: math.unit(175, "lb"),
  8571. name: "Front",
  8572. image: {
  8573. source: "./media/characters/vanrel-hyena/front.svg",
  8574. extra: 1086 / 1010,
  8575. bottom: 0.04
  8576. }
  8577. },
  8578. },
  8579. [
  8580. {
  8581. name: "Normal",
  8582. height: math.unit(5 + 9 / 12, "feet"),
  8583. default: true
  8584. },
  8585. ]
  8586. ))
  8587. characterMakers.push(() => makeCharacter(
  8588. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8589. {
  8590. front: {
  8591. height: math.unit(6, "feet"),
  8592. weight: math.unit(103, "lb"),
  8593. name: "Front",
  8594. image: {
  8595. source: "./media/characters/abbott-absol/front.svg",
  8596. extra: 2010 / 1842
  8597. }
  8598. },
  8599. },
  8600. [
  8601. {
  8602. name: "Megamicro",
  8603. height: math.unit(0.1, "mm")
  8604. },
  8605. {
  8606. name: "Micro",
  8607. height: math.unit(1, "inch")
  8608. },
  8609. {
  8610. name: "Normal",
  8611. height: math.unit(6, "feet"),
  8612. default: true
  8613. },
  8614. ]
  8615. ))
  8616. characterMakers.push(() => makeCharacter(
  8617. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8618. {
  8619. front: {
  8620. height: math.unit(6, "feet"),
  8621. weight: math.unit(264, "lb"),
  8622. name: "Front",
  8623. image: {
  8624. source: "./media/characters/hector/front.svg",
  8625. extra: 2280 / 2130,
  8626. bottom: 0.07
  8627. }
  8628. },
  8629. },
  8630. [
  8631. {
  8632. name: "Normal",
  8633. height: math.unit(12.25, "foot"),
  8634. default: true
  8635. },
  8636. {
  8637. name: "Macro",
  8638. height: math.unit(160, "feet")
  8639. },
  8640. ]
  8641. ))
  8642. characterMakers.push(() => makeCharacter(
  8643. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8644. {
  8645. front: {
  8646. height: math.unit(6, "feet"),
  8647. weight: math.unit(150, "lb"),
  8648. name: "Front",
  8649. image: {
  8650. source: "./media/characters/sal/front.svg",
  8651. extra: 1846 / 1699,
  8652. bottom: 0.04
  8653. }
  8654. },
  8655. },
  8656. [
  8657. {
  8658. name: "Megamacro",
  8659. height: math.unit(10, "miles"),
  8660. default: true
  8661. },
  8662. ]
  8663. ))
  8664. characterMakers.push(() => makeCharacter(
  8665. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8666. {
  8667. front: {
  8668. height: math.unit(3, "meters"),
  8669. weight: math.unit(450, "kg"),
  8670. name: "front",
  8671. image: {
  8672. source: "./media/characters/ranger/front.svg",
  8673. extra: 2401 / 2243,
  8674. bottom: 0.05
  8675. }
  8676. },
  8677. },
  8678. [
  8679. {
  8680. name: "Normal",
  8681. height: math.unit(3, "meters"),
  8682. default: true
  8683. },
  8684. ]
  8685. ))
  8686. characterMakers.push(() => makeCharacter(
  8687. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  8688. {
  8689. front: {
  8690. height: math.unit(14, "feet"),
  8691. weight: math.unit(800, "kg"),
  8692. name: "Front",
  8693. image: {
  8694. source: "./media/characters/theresa/front.svg",
  8695. extra: 3575 / 3346,
  8696. bottom: 0.03
  8697. }
  8698. },
  8699. },
  8700. [
  8701. {
  8702. name: "Normal",
  8703. height: math.unit(14, "feet"),
  8704. default: true
  8705. },
  8706. ]
  8707. ))
  8708. characterMakers.push(() => makeCharacter(
  8709. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  8710. {
  8711. front: {
  8712. height: math.unit(6, "feet"),
  8713. weight: math.unit(3, "kg"),
  8714. name: "Front",
  8715. image: {
  8716. source: "./media/characters/ine/front.svg",
  8717. extra: 678 / 539,
  8718. bottom: 0.023
  8719. }
  8720. },
  8721. },
  8722. [
  8723. {
  8724. name: "Normal",
  8725. height: math.unit(2.265, "feet"),
  8726. default: true
  8727. },
  8728. ]
  8729. ))
  8730. characterMakers.push(() => makeCharacter(
  8731. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  8732. {
  8733. front: {
  8734. height: math.unit(5, "feet"),
  8735. weight: math.unit(30, "kg"),
  8736. name: "Front",
  8737. image: {
  8738. source: "./media/characters/vial/front.svg",
  8739. extra: 1365 / 1277,
  8740. bottom: 0.04
  8741. }
  8742. },
  8743. },
  8744. [
  8745. {
  8746. name: "Normal",
  8747. height: math.unit(5, "feet"),
  8748. default: true
  8749. },
  8750. ]
  8751. ))
  8752. characterMakers.push(() => makeCharacter(
  8753. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  8754. {
  8755. side: {
  8756. height: math.unit(3.4, "meters"),
  8757. weight: math.unit(1000, "lb"),
  8758. name: "Side",
  8759. image: {
  8760. source: "./media/characters/rovoska/side.svg",
  8761. extra: 4403 / 1515
  8762. }
  8763. },
  8764. },
  8765. [
  8766. {
  8767. name: "Normal",
  8768. height: math.unit(3.4, "meters"),
  8769. default: true
  8770. },
  8771. ]
  8772. ))
  8773. characterMakers.push(() => makeCharacter(
  8774. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  8775. {
  8776. front: {
  8777. height: math.unit(8, "feet"),
  8778. weight: math.unit(315, "lb"),
  8779. name: "Front",
  8780. image: {
  8781. source: "./media/characters/gunner-rotthbauer/front.svg"
  8782. }
  8783. },
  8784. back: {
  8785. height: math.unit(8, "feet"),
  8786. weight: math.unit(315, "lb"),
  8787. name: "Back",
  8788. image: {
  8789. source: "./media/characters/gunner-rotthbauer/back.svg"
  8790. }
  8791. },
  8792. },
  8793. [
  8794. {
  8795. name: "Micro",
  8796. height: math.unit(3.5, "inches")
  8797. },
  8798. {
  8799. name: "Normal",
  8800. height: math.unit(8, "feet"),
  8801. default: true
  8802. },
  8803. {
  8804. name: "Macro",
  8805. height: math.unit(250, "feet")
  8806. },
  8807. {
  8808. name: "Megamacro",
  8809. height: math.unit(1, "AU")
  8810. },
  8811. ]
  8812. ))
  8813. characterMakers.push(() => makeCharacter(
  8814. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  8815. {
  8816. front: {
  8817. height: math.unit(5 + 5 / 12, "feet"),
  8818. weight: math.unit(140, "lb"),
  8819. name: "Front",
  8820. image: {
  8821. source: "./media/characters/allatia/front.svg",
  8822. extra: 1227 / 1180,
  8823. bottom: 0.027
  8824. }
  8825. },
  8826. },
  8827. [
  8828. {
  8829. name: "Normal",
  8830. height: math.unit(5 + 5 / 12, "feet")
  8831. },
  8832. {
  8833. name: "Macro",
  8834. height: math.unit(250, "feet"),
  8835. default: true
  8836. },
  8837. {
  8838. name: "Megamacro",
  8839. height: math.unit(8, "miles")
  8840. }
  8841. ]
  8842. ))
  8843. characterMakers.push(() => makeCharacter(
  8844. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  8845. {
  8846. front: {
  8847. height: math.unit(6, "feet"),
  8848. weight: math.unit(120, "lb"),
  8849. name: "Front",
  8850. image: {
  8851. source: "./media/characters/tene/front.svg",
  8852. extra: 1728 / 1578,
  8853. bottom: 0.022
  8854. }
  8855. },
  8856. stomping: {
  8857. height: math.unit(2.025, "meters"),
  8858. weight: math.unit(120, "lb"),
  8859. name: "Stomping",
  8860. image: {
  8861. source: "./media/characters/tene/stomping.svg",
  8862. extra: 938 / 873,
  8863. bottom: 0.01
  8864. }
  8865. },
  8866. sitting: {
  8867. height: math.unit(1, "meter"),
  8868. weight: math.unit(120, "lb"),
  8869. name: "Sitting",
  8870. image: {
  8871. source: "./media/characters/tene/sitting.svg",
  8872. extra: 437 / 415,
  8873. bottom: 0.1
  8874. }
  8875. },
  8876. feral: {
  8877. height: math.unit(3.9, "feet"),
  8878. weight: math.unit(250, "lb"),
  8879. name: "Feral",
  8880. image: {
  8881. source: "./media/characters/tene/feral.svg",
  8882. extra: 717 / 458,
  8883. bottom: 0.179
  8884. }
  8885. },
  8886. },
  8887. [
  8888. {
  8889. name: "Normal",
  8890. height: math.unit(6, "feet")
  8891. },
  8892. {
  8893. name: "Macro",
  8894. height: math.unit(300, "feet"),
  8895. default: true
  8896. },
  8897. {
  8898. name: "Megamacro",
  8899. height: math.unit(5, "miles")
  8900. },
  8901. ]
  8902. ))
  8903. characterMakers.push(() => makeCharacter(
  8904. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  8905. {
  8906. side: {
  8907. height: math.unit(6, "feet"),
  8908. name: "Side",
  8909. image: {
  8910. source: "./media/characters/evander/side.svg",
  8911. extra: 877 / 477
  8912. }
  8913. },
  8914. },
  8915. [
  8916. {
  8917. name: "Normal",
  8918. height: math.unit(0.83, "meters"),
  8919. default: true
  8920. },
  8921. ]
  8922. ))
  8923. characterMakers.push(() => makeCharacter(
  8924. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  8925. {
  8926. front: {
  8927. height: math.unit(12, "feet"),
  8928. weight: math.unit(1000, "lb"),
  8929. name: "Front",
  8930. image: {
  8931. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  8932. extra: 1762 / 1611
  8933. }
  8934. },
  8935. back: {
  8936. height: math.unit(12, "feet"),
  8937. weight: math.unit(1000, "lb"),
  8938. name: "Back",
  8939. image: {
  8940. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  8941. extra: 1762 / 1611
  8942. }
  8943. },
  8944. },
  8945. [
  8946. {
  8947. name: "Normal",
  8948. height: math.unit(12, "feet"),
  8949. default: true
  8950. },
  8951. {
  8952. name: "Kaiju",
  8953. height: math.unit(150, "feet")
  8954. },
  8955. ]
  8956. ))
  8957. characterMakers.push(() => makeCharacter(
  8958. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  8959. {
  8960. front: {
  8961. height: math.unit(6, "feet"),
  8962. weight: math.unit(150, "lb"),
  8963. name: "Front",
  8964. image: {
  8965. source: "./media/characters/zero-alurus/front.svg"
  8966. }
  8967. },
  8968. back: {
  8969. height: math.unit(6, "feet"),
  8970. weight: math.unit(150, "lb"),
  8971. name: "Back",
  8972. image: {
  8973. source: "./media/characters/zero-alurus/back.svg"
  8974. }
  8975. },
  8976. },
  8977. [
  8978. {
  8979. name: "Normal",
  8980. height: math.unit(5 + 10 / 12, "feet")
  8981. },
  8982. {
  8983. name: "Macro",
  8984. height: math.unit(60, "feet"),
  8985. default: true
  8986. },
  8987. {
  8988. name: "Macro+",
  8989. height: math.unit(450, "feet")
  8990. },
  8991. ]
  8992. ))
  8993. characterMakers.push(() => makeCharacter(
  8994. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  8995. {
  8996. front: {
  8997. height: math.unit(6, "feet"),
  8998. weight: math.unit(200, "lb"),
  8999. name: "Front",
  9000. image: {
  9001. source: "./media/characters/mega-shi/front.svg",
  9002. extra: 1279 / 1250,
  9003. bottom: 0.02
  9004. }
  9005. },
  9006. back: {
  9007. height: math.unit(6, "feet"),
  9008. weight: math.unit(200, "lb"),
  9009. name: "Back",
  9010. image: {
  9011. source: "./media/characters/mega-shi/back.svg",
  9012. extra: 1279 / 1250,
  9013. bottom: 0.02
  9014. }
  9015. },
  9016. },
  9017. [
  9018. {
  9019. name: "Micro",
  9020. height: math.unit(16 + 6 / 12, "feet")
  9021. },
  9022. {
  9023. name: "Third Dimension",
  9024. height: math.unit(40, "meters")
  9025. },
  9026. {
  9027. name: "Normal",
  9028. height: math.unit(660, "feet"),
  9029. default: true
  9030. },
  9031. {
  9032. name: "Megamacro",
  9033. height: math.unit(10, "miles")
  9034. },
  9035. {
  9036. name: "Planetary Launch",
  9037. height: math.unit(500, "miles")
  9038. },
  9039. {
  9040. name: "Interstellar",
  9041. height: math.unit(1e9, "miles")
  9042. },
  9043. {
  9044. name: "Leaving the Universe",
  9045. height: math.unit(1, "gigaparsec")
  9046. },
  9047. {
  9048. name: "Travelling Universes",
  9049. height: math.unit(30e15, "parsecs")
  9050. },
  9051. ]
  9052. ))
  9053. characterMakers.push(() => makeCharacter(
  9054. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9055. {
  9056. front: {
  9057. height: math.unit(6, "feet"),
  9058. weight: math.unit(150, "lb"),
  9059. name: "Front",
  9060. image: {
  9061. source: "./media/characters/odyssey/front.svg",
  9062. extra: 1782 / 1582,
  9063. bottom: 0.01
  9064. }
  9065. },
  9066. side: {
  9067. height: math.unit(5.7, "feet"),
  9068. weight: math.unit(140, "lb"),
  9069. name: "Side",
  9070. image: {
  9071. source: "./media/characters/odyssey/side.svg",
  9072. extra: 6462 / 5700
  9073. }
  9074. },
  9075. },
  9076. [
  9077. {
  9078. name: "Normal",
  9079. height: math.unit(5 + 4 / 12, "feet")
  9080. },
  9081. {
  9082. name: "Macro",
  9083. height: math.unit(1, "km")
  9084. },
  9085. {
  9086. name: "Megamacro",
  9087. height: math.unit(3000, "km")
  9088. },
  9089. {
  9090. name: "Gigamacro",
  9091. height: math.unit(1, "AU"),
  9092. default: true
  9093. },
  9094. {
  9095. name: "Omniversal",
  9096. height: math.unit(100e14, "lightyears")
  9097. },
  9098. ]
  9099. ))
  9100. characterMakers.push(() => makeCharacter(
  9101. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9102. {
  9103. front: {
  9104. height: math.unit(6, "feet"),
  9105. weight: math.unit(300, "lb"),
  9106. name: "Front",
  9107. image: {
  9108. source: "./media/characters/mekuto/front.svg",
  9109. extra: 921 / 832,
  9110. bottom: 0.03
  9111. }
  9112. },
  9113. hand: {
  9114. height: math.unit(6 / 10.24, "feet"),
  9115. name: "Hand",
  9116. image: {
  9117. source: "./media/characters/mekuto/hand.svg"
  9118. }
  9119. },
  9120. foot: {
  9121. height: math.unit(6 / 5.05, "feet"),
  9122. name: "Foot",
  9123. image: {
  9124. source: "./media/characters/mekuto/foot.svg"
  9125. }
  9126. },
  9127. },
  9128. [
  9129. {
  9130. name: "Minimicro",
  9131. height: math.unit(0.2, "inches")
  9132. },
  9133. {
  9134. name: "Micro",
  9135. height: math.unit(1.5, "inches")
  9136. },
  9137. {
  9138. name: "Normal",
  9139. height: math.unit(5 + 11 / 12, "feet"),
  9140. default: true
  9141. },
  9142. {
  9143. name: "Minimacro",
  9144. height: math.unit(17 + 9 / 12, "feet")
  9145. },
  9146. {
  9147. name: "Macro",
  9148. height: math.unit(177.5, "feet")
  9149. },
  9150. {
  9151. name: "Megamacro",
  9152. height: math.unit(152, "miles")
  9153. },
  9154. ]
  9155. ))
  9156. characterMakers.push(() => makeCharacter(
  9157. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9158. {
  9159. front: {
  9160. height: math.unit(6.5, "inches"),
  9161. weight: math.unit(13, "oz"),
  9162. name: "Front",
  9163. image: {
  9164. source: "./media/characters/dafydd-tomos/front.svg",
  9165. extra: 2990 / 2603,
  9166. bottom: 0.03
  9167. }
  9168. },
  9169. },
  9170. [
  9171. {
  9172. name: "Micro",
  9173. height: math.unit(6.5, "inches"),
  9174. default: true
  9175. },
  9176. ]
  9177. ))
  9178. characterMakers.push(() => makeCharacter(
  9179. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9180. {
  9181. front: {
  9182. height: math.unit(6, "feet"),
  9183. weight: math.unit(150, "lb"),
  9184. name: "Front",
  9185. image: {
  9186. source: "./media/characters/splinter/front.svg",
  9187. extra: 2990 / 2882,
  9188. bottom: 0.04
  9189. }
  9190. },
  9191. back: {
  9192. height: math.unit(6, "feet"),
  9193. weight: math.unit(150, "lb"),
  9194. name: "Back",
  9195. image: {
  9196. source: "./media/characters/splinter/back.svg",
  9197. extra: 2990 / 2882,
  9198. bottom: 0.04
  9199. }
  9200. },
  9201. },
  9202. [
  9203. {
  9204. name: "Normal",
  9205. height: math.unit(6, "feet")
  9206. },
  9207. {
  9208. name: "Macro",
  9209. height: math.unit(230, "meters"),
  9210. default: true
  9211. },
  9212. ]
  9213. ))
  9214. characterMakers.push(() => makeCharacter(
  9215. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9216. {
  9217. front: {
  9218. height: math.unit(4 + 10 / 12, "feet"),
  9219. weight: math.unit(480, "lb"),
  9220. name: "Front",
  9221. image: {
  9222. source: "./media/characters/snow-gabumon/front.svg",
  9223. extra: 1140 / 963,
  9224. bottom: 0.058
  9225. }
  9226. },
  9227. back: {
  9228. height: math.unit(4 + 10 / 12, "feet"),
  9229. weight: math.unit(480, "lb"),
  9230. name: "Back",
  9231. image: {
  9232. source: "./media/characters/snow-gabumon/back.svg",
  9233. extra: 1115 / 962,
  9234. bottom: 0.041
  9235. }
  9236. },
  9237. frontUndresed: {
  9238. height: math.unit(4 + 10 / 12, "feet"),
  9239. weight: math.unit(480, "lb"),
  9240. name: "Front (Undressed)",
  9241. image: {
  9242. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9243. extra: 1061 / 960,
  9244. bottom: 0.045
  9245. }
  9246. },
  9247. },
  9248. [
  9249. {
  9250. name: "Micro",
  9251. height: math.unit(1, "inch")
  9252. },
  9253. {
  9254. name: "Normal",
  9255. height: math.unit(4 + 10 / 12, "feet"),
  9256. default: true
  9257. },
  9258. {
  9259. name: "Macro",
  9260. height: math.unit(200, "feet")
  9261. },
  9262. {
  9263. name: "Megamacro",
  9264. height: math.unit(120, "miles")
  9265. },
  9266. {
  9267. name: "Gigamacro",
  9268. height: math.unit(9800, "miles")
  9269. },
  9270. ]
  9271. ))
  9272. characterMakers.push(() => makeCharacter(
  9273. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9274. {
  9275. front: {
  9276. height: math.unit(1.7, "meters"),
  9277. weight: math.unit(140, "lb"),
  9278. name: "Front",
  9279. image: {
  9280. source: "./media/characters/moody/front.svg",
  9281. extra: 3226 / 3007,
  9282. bottom: 0.087
  9283. }
  9284. },
  9285. },
  9286. [
  9287. {
  9288. name: "Micro",
  9289. height: math.unit(1, "mm")
  9290. },
  9291. {
  9292. name: "Normal",
  9293. height: math.unit(1.7, "meters"),
  9294. default: true
  9295. },
  9296. {
  9297. name: "Macro",
  9298. height: math.unit(80, "meters")
  9299. },
  9300. {
  9301. name: "Macro+",
  9302. height: math.unit(500, "meters")
  9303. },
  9304. ]
  9305. ))
  9306. characterMakers.push(() => makeCharacter(
  9307. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9308. {
  9309. front: {
  9310. height: math.unit(6, "feet"),
  9311. weight: math.unit(150, "lb"),
  9312. name: "Front",
  9313. image: {
  9314. source: "./media/characters/zyas/front.svg",
  9315. extra: 1180 / 1120,
  9316. bottom: 0.045
  9317. }
  9318. },
  9319. },
  9320. [
  9321. {
  9322. name: "Normal",
  9323. height: math.unit(10, "feet"),
  9324. default: true
  9325. },
  9326. {
  9327. name: "Macro",
  9328. height: math.unit(500, "feet")
  9329. },
  9330. {
  9331. name: "Megamacro",
  9332. height: math.unit(5, "miles")
  9333. },
  9334. {
  9335. name: "Teramacro",
  9336. height: math.unit(150000, "miles")
  9337. },
  9338. ]
  9339. ))
  9340. characterMakers.push(() => makeCharacter(
  9341. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9342. {
  9343. front: {
  9344. height: math.unit(6, "feet"),
  9345. weight: math.unit(150, "lb"),
  9346. name: "Front",
  9347. image: {
  9348. source: "./media/characters/cuon/front.svg",
  9349. extra: 1390 / 1320,
  9350. bottom: 0.008
  9351. }
  9352. },
  9353. },
  9354. [
  9355. {
  9356. name: "Micro",
  9357. height: math.unit(3, "inches")
  9358. },
  9359. {
  9360. name: "Normal",
  9361. height: math.unit(18 + 9 / 12, "feet"),
  9362. default: true
  9363. },
  9364. {
  9365. name: "Macro",
  9366. height: math.unit(360, "feet")
  9367. },
  9368. {
  9369. name: "Megamacro",
  9370. height: math.unit(360, "miles")
  9371. },
  9372. ]
  9373. ))
  9374. characterMakers.push(() => makeCharacter(
  9375. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9376. {
  9377. front: {
  9378. height: math.unit(2.4, "meters"),
  9379. weight: math.unit(70, "kg"),
  9380. name: "Front",
  9381. image: {
  9382. source: "./media/characters/nyanuxk/front.svg",
  9383. extra: 1172 / 1084,
  9384. bottom: 0.065
  9385. }
  9386. },
  9387. side: {
  9388. height: math.unit(2.4, "meters"),
  9389. weight: math.unit(70, "kg"),
  9390. name: "Side",
  9391. image: {
  9392. source: "./media/characters/nyanuxk/side.svg",
  9393. extra: 1190 / 1132,
  9394. bottom: 0.007
  9395. }
  9396. },
  9397. back: {
  9398. height: math.unit(2.4, "meters"),
  9399. weight: math.unit(70, "kg"),
  9400. name: "Back",
  9401. image: {
  9402. source: "./media/characters/nyanuxk/back.svg",
  9403. extra: 1200 / 1141,
  9404. bottom: 0.015
  9405. }
  9406. },
  9407. foot: {
  9408. height: math.unit(0.52, "meters"),
  9409. name: "Foot",
  9410. image: {
  9411. source: "./media/characters/nyanuxk/foot.svg"
  9412. }
  9413. },
  9414. },
  9415. [
  9416. {
  9417. name: "Micro",
  9418. height: math.unit(2, "cm")
  9419. },
  9420. {
  9421. name: "Normal",
  9422. height: math.unit(2.4, "meters"),
  9423. default: true
  9424. },
  9425. {
  9426. name: "Smaller Macro",
  9427. height: math.unit(120, "meters")
  9428. },
  9429. {
  9430. name: "Bigger Macro",
  9431. height: math.unit(1.2, "km")
  9432. },
  9433. {
  9434. name: "Megamacro",
  9435. height: math.unit(15, "kilometers")
  9436. },
  9437. {
  9438. name: "Gigamacro",
  9439. height: math.unit(2000, "km")
  9440. },
  9441. {
  9442. name: "Teramacro",
  9443. height: math.unit(500000, "km")
  9444. },
  9445. ]
  9446. ))
  9447. characterMakers.push(() => makeCharacter(
  9448. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9449. {
  9450. side: {
  9451. height: math.unit(6, "feet"),
  9452. name: "Side",
  9453. image: {
  9454. source: "./media/characters/ailbhe/side.svg",
  9455. extra: 757 / 464,
  9456. bottom: 0.041
  9457. }
  9458. },
  9459. },
  9460. [
  9461. {
  9462. name: "Normal",
  9463. height: math.unit(1.07, "meters"),
  9464. default: true
  9465. },
  9466. ]
  9467. ))
  9468. characterMakers.push(() => makeCharacter(
  9469. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9470. {
  9471. front: {
  9472. height: math.unit(6, "feet"),
  9473. weight: math.unit(120, "kg"),
  9474. name: "Front",
  9475. image: {
  9476. source: "./media/characters/zevulfius/front.svg",
  9477. extra: 965 / 903
  9478. }
  9479. },
  9480. side: {
  9481. height: math.unit(6, "feet"),
  9482. weight: math.unit(120, "kg"),
  9483. name: "Side",
  9484. image: {
  9485. source: "./media/characters/zevulfius/side.svg",
  9486. extra: 939 / 900
  9487. }
  9488. },
  9489. back: {
  9490. height: math.unit(6, "feet"),
  9491. weight: math.unit(120, "kg"),
  9492. name: "Back",
  9493. image: {
  9494. source: "./media/characters/zevulfius/back.svg",
  9495. extra: 918 / 854,
  9496. bottom: 0.005
  9497. }
  9498. },
  9499. foot: {
  9500. height: math.unit(6 / 3.72, "feet"),
  9501. name: "Foot",
  9502. image: {
  9503. source: "./media/characters/zevulfius/foot.svg"
  9504. }
  9505. },
  9506. },
  9507. [
  9508. {
  9509. name: "Macro",
  9510. height: math.unit(750, "meters")
  9511. },
  9512. {
  9513. name: "Megamacro",
  9514. height: math.unit(20, "km"),
  9515. default: true
  9516. },
  9517. {
  9518. name: "Gigamacro",
  9519. height: math.unit(2000, "km")
  9520. },
  9521. {
  9522. name: "Teramacro",
  9523. height: math.unit(250000, "km")
  9524. },
  9525. ]
  9526. ))
  9527. characterMakers.push(() => makeCharacter(
  9528. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9529. {
  9530. front: {
  9531. height: math.unit(100, "feet"),
  9532. weight: math.unit(350, "kg"),
  9533. name: "Front",
  9534. image: {
  9535. source: "./media/characters/rikes/front.svg",
  9536. extra: 1565 / 1483,
  9537. bottom: 0.017
  9538. }
  9539. },
  9540. },
  9541. [
  9542. {
  9543. name: "Macro",
  9544. height: math.unit(100, "feet"),
  9545. default: true
  9546. },
  9547. ]
  9548. ))
  9549. characterMakers.push(() => makeCharacter(
  9550. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9551. {
  9552. anthro: {
  9553. height: math.unit(8, "feet"),
  9554. weight: math.unit(120, "kg"),
  9555. name: "Anthro",
  9556. image: {
  9557. source: "./media/characters/adam-silver-mane/anthro.svg",
  9558. extra: 5743 / 5339,
  9559. bottom: 0.07
  9560. }
  9561. },
  9562. taur: {
  9563. height: math.unit(16, "feet"),
  9564. weight: math.unit(1500, "kg"),
  9565. name: "Taur",
  9566. image: {
  9567. source: "./media/characters/adam-silver-mane/taur.svg",
  9568. extra: 1713 / 1571,
  9569. bottom: 0.01
  9570. }
  9571. },
  9572. },
  9573. [
  9574. {
  9575. name: "Normal",
  9576. height: math.unit(8, "feet")
  9577. },
  9578. {
  9579. name: "Minimacro",
  9580. height: math.unit(80, "feet")
  9581. },
  9582. {
  9583. name: "Macro",
  9584. height: math.unit(800, "feet"),
  9585. default: true
  9586. },
  9587. {
  9588. name: "Megamacro",
  9589. height: math.unit(8000, "feet")
  9590. },
  9591. {
  9592. name: "Gigamacro",
  9593. height: math.unit(800, "miles")
  9594. },
  9595. {
  9596. name: "Teramacro",
  9597. height: math.unit(80000, "miles")
  9598. },
  9599. {
  9600. name: "Celestial",
  9601. height: math.unit(8e6, "miles")
  9602. },
  9603. {
  9604. name: "Star Dragon",
  9605. height: math.unit(800000, "parsecs")
  9606. },
  9607. {
  9608. name: "Godly",
  9609. height: math.unit(800, "teraparsecs")
  9610. },
  9611. ]
  9612. ))
  9613. characterMakers.push(() => makeCharacter(
  9614. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9615. {
  9616. front: {
  9617. height: math.unit(6, "feet"),
  9618. weight: math.unit(150, "lb"),
  9619. name: "Front",
  9620. image: {
  9621. source: "./media/characters/ky'owin/front.svg",
  9622. extra: 3888 / 3068,
  9623. bottom: 0.015
  9624. }
  9625. },
  9626. },
  9627. [
  9628. {
  9629. name: "Normal",
  9630. height: math.unit(6 + 8 / 12, "feet")
  9631. },
  9632. {
  9633. name: "Large",
  9634. height: math.unit(68, "feet")
  9635. },
  9636. {
  9637. name: "Macro",
  9638. height: math.unit(132, "feet")
  9639. },
  9640. {
  9641. name: "Macro+",
  9642. height: math.unit(340, "feet")
  9643. },
  9644. {
  9645. name: "Macro++",
  9646. height: math.unit(680, "feet"),
  9647. default: true
  9648. },
  9649. {
  9650. name: "Megamacro",
  9651. height: math.unit(1, "mile")
  9652. },
  9653. {
  9654. name: "Megamacro+",
  9655. height: math.unit(10, "miles")
  9656. },
  9657. ]
  9658. ))
  9659. characterMakers.push(() => makeCharacter(
  9660. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9661. {
  9662. front: {
  9663. height: math.unit(4, "feet"),
  9664. weight: math.unit(50, "lb"),
  9665. name: "Front",
  9666. image: {
  9667. source: "./media/characters/mal/front.svg",
  9668. extra: 785 / 724,
  9669. bottom: 0.07
  9670. }
  9671. },
  9672. },
  9673. [
  9674. {
  9675. name: "Micro",
  9676. height: math.unit(4, "inches")
  9677. },
  9678. {
  9679. name: "Normal",
  9680. height: math.unit(4, "feet"),
  9681. default: true
  9682. },
  9683. {
  9684. name: "Macro",
  9685. height: math.unit(200, "feet")
  9686. },
  9687. ]
  9688. ))
  9689. characterMakers.push(() => makeCharacter(
  9690. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  9691. {
  9692. front: {
  9693. height: math.unit(6, "feet"),
  9694. weight: math.unit(150, "lb"),
  9695. name: "Front",
  9696. image: {
  9697. source: "./media/characters/jordan-deware/front.svg",
  9698. extra: 1191 / 1012
  9699. }
  9700. },
  9701. },
  9702. [
  9703. {
  9704. name: "Nano",
  9705. height: math.unit(0.01, "mm")
  9706. },
  9707. {
  9708. name: "Minimicro",
  9709. height: math.unit(1, "mm")
  9710. },
  9711. {
  9712. name: "Micro",
  9713. height: math.unit(0.5, "inches")
  9714. },
  9715. {
  9716. name: "Normal",
  9717. height: math.unit(4, "feet"),
  9718. default: true
  9719. },
  9720. {
  9721. name: "Minimacro",
  9722. height: math.unit(40, "meters")
  9723. },
  9724. {
  9725. name: "Small Macro",
  9726. height: math.unit(400, "meters")
  9727. },
  9728. {
  9729. name: "Macro",
  9730. height: math.unit(4, "miles")
  9731. },
  9732. {
  9733. name: "Megamacro",
  9734. height: math.unit(40, "miles")
  9735. },
  9736. {
  9737. name: "Megamacro+",
  9738. height: math.unit(400, "miles")
  9739. },
  9740. {
  9741. name: "Gigamacro",
  9742. height: math.unit(400000, "miles")
  9743. },
  9744. ]
  9745. ))
  9746. characterMakers.push(() => makeCharacter(
  9747. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  9748. {
  9749. side: {
  9750. height: math.unit(6, "feet"),
  9751. weight: math.unit(150, "lb"),
  9752. name: "Side",
  9753. image: {
  9754. source: "./media/characters/kimiko/side.svg",
  9755. extra: 600 / 358
  9756. }
  9757. },
  9758. },
  9759. [
  9760. {
  9761. name: "Normal",
  9762. height: math.unit(15, "feet"),
  9763. default: true
  9764. },
  9765. {
  9766. name: "Macro",
  9767. height: math.unit(220, "feet")
  9768. },
  9769. {
  9770. name: "Macro+",
  9771. height: math.unit(1450, "feet")
  9772. },
  9773. {
  9774. name: "Megamacro",
  9775. height: math.unit(11500, "feet")
  9776. },
  9777. {
  9778. name: "Gigamacro",
  9779. height: math.unit(9500, "miles")
  9780. },
  9781. {
  9782. name: "Teramacro",
  9783. height: math.unit(2208005005, "miles")
  9784. },
  9785. {
  9786. name: "Examacro",
  9787. height: math.unit(2750, "parsecs")
  9788. },
  9789. {
  9790. name: "Zettamacro",
  9791. height: math.unit(101500, "parsecs")
  9792. },
  9793. ]
  9794. ))
  9795. characterMakers.push(() => makeCharacter(
  9796. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  9797. {
  9798. front: {
  9799. height: math.unit(6, "feet"),
  9800. weight: math.unit(70, "kg"),
  9801. name: "Front",
  9802. image: {
  9803. source: "./media/characters/andrew-sleepy/front.svg"
  9804. }
  9805. },
  9806. side: {
  9807. height: math.unit(6, "feet"),
  9808. weight: math.unit(70, "kg"),
  9809. name: "Side",
  9810. image: {
  9811. source: "./media/characters/andrew-sleepy/side.svg"
  9812. }
  9813. },
  9814. },
  9815. [
  9816. {
  9817. name: "Micro",
  9818. height: math.unit(1, "mm"),
  9819. default: true
  9820. },
  9821. ]
  9822. ))
  9823. characterMakers.push(() => makeCharacter(
  9824. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  9825. {
  9826. front: {
  9827. height: math.unit(6, "feet"),
  9828. weight: math.unit(150, "lb"),
  9829. name: "Front",
  9830. image: {
  9831. source: "./media/characters/judio/front.svg",
  9832. extra: 1258 / 1110
  9833. }
  9834. },
  9835. },
  9836. [
  9837. {
  9838. name: "Normal",
  9839. height: math.unit(5 + 6 / 12, "feet")
  9840. },
  9841. {
  9842. name: "Macro",
  9843. height: math.unit(1000, "feet"),
  9844. default: true
  9845. },
  9846. {
  9847. name: "Megamacro",
  9848. height: math.unit(10, "miles")
  9849. },
  9850. ]
  9851. ))
  9852. characterMakers.push(() => makeCharacter(
  9853. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  9854. {
  9855. front: {
  9856. height: math.unit(6, "feet"),
  9857. weight: math.unit(68, "kg"),
  9858. name: "Front",
  9859. image: {
  9860. source: "./media/characters/nomaxice/front.svg",
  9861. extra: 1498 / 1073,
  9862. bottom: 0.075
  9863. }
  9864. },
  9865. foot: {
  9866. height: math.unit(1.1, "feet"),
  9867. name: "Foot",
  9868. image: {
  9869. source: "./media/characters/nomaxice/foot.svg"
  9870. }
  9871. },
  9872. },
  9873. [
  9874. {
  9875. name: "Micro",
  9876. height: math.unit(8, "cm")
  9877. },
  9878. {
  9879. name: "Norm",
  9880. height: math.unit(1.82, "m")
  9881. },
  9882. {
  9883. name: "Norm+",
  9884. height: math.unit(8.8, "feet")
  9885. },
  9886. {
  9887. name: "Big",
  9888. height: math.unit(8, "meters"),
  9889. default: true
  9890. },
  9891. {
  9892. name: "Macro",
  9893. height: math.unit(18, "meters")
  9894. },
  9895. {
  9896. name: "Macro+",
  9897. height: math.unit(88, "meters")
  9898. },
  9899. ]
  9900. ))
  9901. characterMakers.push(() => makeCharacter(
  9902. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  9903. {
  9904. front: {
  9905. height: math.unit(12, "feet"),
  9906. weight: math.unit(1.5, "tons"),
  9907. name: "Front",
  9908. image: {
  9909. source: "./media/characters/dydros/front.svg",
  9910. extra: 863 / 800,
  9911. bottom: 0.015
  9912. }
  9913. },
  9914. back: {
  9915. height: math.unit(12, "feet"),
  9916. weight: math.unit(1.5, "tons"),
  9917. name: "Back",
  9918. image: {
  9919. source: "./media/characters/dydros/back.svg",
  9920. extra: 900 / 843,
  9921. bottom: 0.005
  9922. }
  9923. },
  9924. },
  9925. [
  9926. {
  9927. name: "Normal",
  9928. height: math.unit(12, "feet"),
  9929. default: true
  9930. },
  9931. ]
  9932. ))
  9933. characterMakers.push(() => makeCharacter(
  9934. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  9935. {
  9936. front: {
  9937. height: math.unit(6, "feet"),
  9938. weight: math.unit(100, "kg"),
  9939. name: "Front",
  9940. image: {
  9941. source: "./media/characters/riggi/front.svg",
  9942. extra: 5787 / 5303
  9943. }
  9944. },
  9945. hyper: {
  9946. height: math.unit(6 * 5 / 3, "feet"),
  9947. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  9948. name: "Hyper",
  9949. image: {
  9950. source: "./media/characters/riggi/hyper.svg",
  9951. extra: 3595 / 3485
  9952. }
  9953. },
  9954. },
  9955. [
  9956. {
  9957. name: "Small Macro",
  9958. height: math.unit(50, "feet")
  9959. },
  9960. {
  9961. name: "Default",
  9962. height: math.unit(200, "feet"),
  9963. default: true
  9964. },
  9965. {
  9966. name: "Loom",
  9967. height: math.unit(10000, "feet")
  9968. },
  9969. {
  9970. name: "Cruising Altitude",
  9971. height: math.unit(30000, "feet")
  9972. },
  9973. {
  9974. name: "Megamacro",
  9975. height: math.unit(100, "miles")
  9976. },
  9977. {
  9978. name: "Continent Sized",
  9979. height: math.unit(2800, "miles")
  9980. },
  9981. {
  9982. name: "Earth Sized",
  9983. height: math.unit(8000, "miles")
  9984. },
  9985. ]
  9986. ))
  9987. characterMakers.push(() => makeCharacter(
  9988. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  9989. {
  9990. front: {
  9991. height: math.unit(6, "feet"),
  9992. weight: math.unit(250, "lb"),
  9993. name: "Front",
  9994. image: {
  9995. source: "./media/characters/alexi/front.svg",
  9996. extra: 3483 / 3291,
  9997. bottom: 0.04
  9998. }
  9999. },
  10000. back: {
  10001. height: math.unit(6, "feet"),
  10002. weight: math.unit(250, "lb"),
  10003. name: "Back",
  10004. image: {
  10005. source: "./media/characters/alexi/back.svg",
  10006. extra: 3533 / 3356,
  10007. bottom: 0.021
  10008. }
  10009. },
  10010. frontTransforming: {
  10011. height: math.unit(8.58, "feet"),
  10012. weight: math.unit(1300, "lb"),
  10013. name: "Transforming",
  10014. image: {
  10015. source: "./media/characters/alexi/front-transforming.svg",
  10016. extra: 437 / 409,
  10017. bottom: 19 / 458.66
  10018. }
  10019. },
  10020. frontTransformed: {
  10021. height: math.unit(12.5, "feet"),
  10022. weight: math.unit(4000, "lb"),
  10023. name: "Transformed",
  10024. image: {
  10025. source: "./media/characters/alexi/front-transformed.svg",
  10026. extra: 639 / 614,
  10027. bottom: 30.55 / 671
  10028. }
  10029. },
  10030. },
  10031. [
  10032. {
  10033. name: "Normal",
  10034. height: math.unit(3, "meters"),
  10035. default: true
  10036. },
  10037. {
  10038. name: "Minimacro",
  10039. height: math.unit(30, "meters")
  10040. },
  10041. {
  10042. name: "Macro",
  10043. height: math.unit(500, "meters")
  10044. },
  10045. {
  10046. name: "Megamacro",
  10047. height: math.unit(9000, "km")
  10048. },
  10049. {
  10050. name: "Teramacro",
  10051. height: math.unit(384000, "km")
  10052. },
  10053. ]
  10054. ))
  10055. characterMakers.push(() => makeCharacter(
  10056. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10057. {
  10058. front: {
  10059. height: math.unit(6, "feet"),
  10060. weight: math.unit(150, "lb"),
  10061. name: "Front",
  10062. image: {
  10063. source: "./media/characters/kayroo/front.svg",
  10064. extra: 1153 / 1038,
  10065. bottom: 0.06
  10066. }
  10067. },
  10068. foot: {
  10069. height: math.unit(6, "feet"),
  10070. weight: math.unit(150, "lb"),
  10071. name: "Foot",
  10072. image: {
  10073. source: "./media/characters/kayroo/foot.svg"
  10074. }
  10075. },
  10076. },
  10077. [
  10078. {
  10079. name: "Normal",
  10080. height: math.unit(8, "feet"),
  10081. default: true
  10082. },
  10083. {
  10084. name: "Minimacro",
  10085. height: math.unit(250, "feet")
  10086. },
  10087. {
  10088. name: "Macro",
  10089. height: math.unit(2800, "feet")
  10090. },
  10091. {
  10092. name: "Megamacro",
  10093. height: math.unit(5200, "feet")
  10094. },
  10095. {
  10096. name: "Gigamacro",
  10097. height: math.unit(27000, "feet")
  10098. },
  10099. {
  10100. name: "Omega",
  10101. height: math.unit(45000, "feet")
  10102. },
  10103. ]
  10104. ))
  10105. characterMakers.push(() => makeCharacter(
  10106. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10107. {
  10108. front: {
  10109. height: math.unit(18, "feet"),
  10110. weight: math.unit(5800, "lb"),
  10111. name: "Front",
  10112. image: {
  10113. source: "./media/characters/rhys/front.svg",
  10114. extra: 3386 / 3090,
  10115. bottom: 0.07
  10116. }
  10117. },
  10118. },
  10119. [
  10120. {
  10121. name: "Normal",
  10122. height: math.unit(18, "feet"),
  10123. default: true
  10124. },
  10125. {
  10126. name: "Working Size",
  10127. height: math.unit(200, "feet")
  10128. },
  10129. {
  10130. name: "Demolition Size",
  10131. height: math.unit(2000, "feet")
  10132. },
  10133. {
  10134. name: "Maximum Licensed Size",
  10135. height: math.unit(5, "miles")
  10136. },
  10137. {
  10138. name: "Maximum Observed Size",
  10139. height: math.unit(10, "yottameters")
  10140. },
  10141. ]
  10142. ))
  10143. characterMakers.push(() => makeCharacter(
  10144. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10145. {
  10146. front: {
  10147. height: math.unit(6, "feet"),
  10148. weight: math.unit(250, "lb"),
  10149. name: "Front",
  10150. image: {
  10151. source: "./media/characters/toto/front.svg",
  10152. extra: 527 / 479,
  10153. bottom: 0.05
  10154. }
  10155. },
  10156. },
  10157. [
  10158. {
  10159. name: "Micro",
  10160. height: math.unit(3, "feet")
  10161. },
  10162. {
  10163. name: "Normal",
  10164. height: math.unit(10, "feet")
  10165. },
  10166. {
  10167. name: "Macro",
  10168. height: math.unit(150, "feet"),
  10169. default: true
  10170. },
  10171. {
  10172. name: "Megamacro",
  10173. height: math.unit(1200, "feet")
  10174. },
  10175. ]
  10176. ))
  10177. characterMakers.push(() => makeCharacter(
  10178. { name: "King", species: ["lion"], tags: ["anthro"] },
  10179. {
  10180. back: {
  10181. height: math.unit(6, "feet"),
  10182. weight: math.unit(150, "lb"),
  10183. name: "Back",
  10184. image: {
  10185. source: "./media/characters/king/back.svg"
  10186. }
  10187. },
  10188. },
  10189. [
  10190. {
  10191. name: "Micro",
  10192. height: math.unit(2, "inches")
  10193. },
  10194. {
  10195. name: "Normal",
  10196. height: math.unit(8, "feet")
  10197. },
  10198. {
  10199. name: "Macro",
  10200. height: math.unit(200, "feet"),
  10201. default: true
  10202. },
  10203. {
  10204. name: "Megamacro",
  10205. height: math.unit(50, "miles")
  10206. },
  10207. ]
  10208. ))
  10209. characterMakers.push(() => makeCharacter(
  10210. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10211. {
  10212. anthro: {
  10213. height: math.unit(6 + 5 / 12, "feet"),
  10214. weight: math.unit(280, "lb"),
  10215. name: "Anthro",
  10216. image: {
  10217. source: "./media/characters/cordite/anthro.svg",
  10218. extra: 1986 / 1905,
  10219. bottom: 0.025
  10220. }
  10221. },
  10222. feral: {
  10223. height: math.unit(2, "feet"),
  10224. weight: math.unit(90, "lb"),
  10225. name: "Feral",
  10226. image: {
  10227. source: "./media/characters/cordite/feral.svg",
  10228. extra: 1260 / 755,
  10229. bottom: 0.05
  10230. }
  10231. },
  10232. },
  10233. [
  10234. {
  10235. name: "Normal",
  10236. height: math.unit(6 + 5 / 12, "feet"),
  10237. default: true
  10238. },
  10239. ]
  10240. ))
  10241. characterMakers.push(() => makeCharacter(
  10242. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10243. {
  10244. front: {
  10245. height: math.unit(6, "feet"),
  10246. weight: math.unit(150, "lb"),
  10247. name: "Front",
  10248. image: {
  10249. source: "./media/characters/pianostrong/front.svg",
  10250. extra: 6577 / 6254,
  10251. bottom: 0.02
  10252. }
  10253. },
  10254. side: {
  10255. height: math.unit(6, "feet"),
  10256. weight: math.unit(150, "lb"),
  10257. name: "Side",
  10258. image: {
  10259. source: "./media/characters/pianostrong/side.svg",
  10260. extra: 6106 / 5730
  10261. }
  10262. },
  10263. back: {
  10264. height: math.unit(6, "feet"),
  10265. weight: math.unit(150, "lb"),
  10266. name: "Back",
  10267. image: {
  10268. source: "./media/characters/pianostrong/back.svg",
  10269. extra: 6085 / 5733,
  10270. bottom: 0.01
  10271. }
  10272. },
  10273. },
  10274. [
  10275. {
  10276. name: "Macro",
  10277. height: math.unit(100, "feet")
  10278. },
  10279. {
  10280. name: "Macro+",
  10281. height: math.unit(300, "feet"),
  10282. default: true
  10283. },
  10284. {
  10285. name: "Macro++",
  10286. height: math.unit(1000, "feet")
  10287. },
  10288. ]
  10289. ))
  10290. characterMakers.push(() => makeCharacter(
  10291. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10292. {
  10293. front: {
  10294. height: math.unit(6, "feet"),
  10295. weight: math.unit(150, "lb"),
  10296. name: "Front",
  10297. image: {
  10298. source: "./media/characters/kona/front.svg",
  10299. extra: 2960 / 2629,
  10300. bottom: 0.005
  10301. }
  10302. },
  10303. },
  10304. [
  10305. {
  10306. name: "Normal",
  10307. height: math.unit(11 + 8 / 12, "feet")
  10308. },
  10309. {
  10310. name: "Macro",
  10311. height: math.unit(850, "feet"),
  10312. default: true
  10313. },
  10314. {
  10315. name: "Macro+",
  10316. height: math.unit(1.5, "km"),
  10317. default: true
  10318. },
  10319. {
  10320. name: "Megamacro",
  10321. height: math.unit(80, "miles")
  10322. },
  10323. {
  10324. name: "Gigamacro",
  10325. height: math.unit(3500, "miles")
  10326. },
  10327. ]
  10328. ))
  10329. characterMakers.push(() => makeCharacter(
  10330. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10331. {
  10332. side: {
  10333. height: math.unit(1.9, "meters"),
  10334. weight: math.unit(326, "kg"),
  10335. name: "Side",
  10336. image: {
  10337. source: "./media/characters/levi/side.svg",
  10338. extra: 1704 / 1334,
  10339. bottom: 0.02
  10340. }
  10341. },
  10342. },
  10343. [
  10344. {
  10345. name: "Normal",
  10346. height: math.unit(1.9, "meters"),
  10347. default: true
  10348. },
  10349. {
  10350. name: "Macro",
  10351. height: math.unit(20, "meters")
  10352. },
  10353. {
  10354. name: "Macro+",
  10355. height: math.unit(200, "meters")
  10356. },
  10357. {
  10358. name: "Megamacro",
  10359. height: math.unit(2, "km")
  10360. },
  10361. {
  10362. name: "Megamacro+",
  10363. height: math.unit(20, "km")
  10364. },
  10365. {
  10366. name: "Gigamacro",
  10367. height: math.unit(2500, "km")
  10368. },
  10369. {
  10370. name: "Gigamacro+",
  10371. height: math.unit(120000, "km")
  10372. },
  10373. {
  10374. name: "Teramacro",
  10375. height: math.unit(7.77e6, "km")
  10376. },
  10377. ]
  10378. ))
  10379. characterMakers.push(() => makeCharacter(
  10380. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10381. {
  10382. front: {
  10383. height: math.unit(6 + 4 / 12, "feet"),
  10384. weight: math.unit(188, "lb"),
  10385. name: "Front",
  10386. image: {
  10387. source: "./media/characters/bmc/front.svg",
  10388. extra: 1067 / 1022,
  10389. bottom: 0.047
  10390. }
  10391. },
  10392. },
  10393. [
  10394. {
  10395. name: "Human-sized",
  10396. height: math.unit(6 + 4 / 12, "feet")
  10397. },
  10398. {
  10399. name: "Small",
  10400. height: math.unit(250, "feet")
  10401. },
  10402. {
  10403. name: "Normal",
  10404. height: math.unit(1250, "feet"),
  10405. default: true
  10406. },
  10407. {
  10408. name: "Good Day",
  10409. height: math.unit(88, "miles")
  10410. },
  10411. {
  10412. name: "Largest Measured Size",
  10413. height: math.unit(11.2e6, "lightyears")
  10414. },
  10415. ]
  10416. ))
  10417. characterMakers.push(() => makeCharacter(
  10418. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10419. {
  10420. front: {
  10421. height: math.unit(20, "feet"),
  10422. weight: math.unit(2016, "kg"),
  10423. name: "Front",
  10424. image: {
  10425. source: "./media/characters/sven-the-kaiju/front.svg",
  10426. extra: 1479 / 1449,
  10427. bottom: 0.05
  10428. }
  10429. },
  10430. },
  10431. [
  10432. {
  10433. name: "Fairy",
  10434. height: math.unit(6, "inches")
  10435. },
  10436. {
  10437. name: "Normal",
  10438. height: math.unit(20, "feet"),
  10439. default: true
  10440. },
  10441. {
  10442. name: "Rampage",
  10443. height: math.unit(200, "feet")
  10444. },
  10445. {
  10446. name: "Archfey Forest Guardian",
  10447. height: math.unit(1, "mile")
  10448. },
  10449. ]
  10450. ))
  10451. characterMakers.push(() => makeCharacter(
  10452. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10453. {
  10454. front: {
  10455. height: math.unit(4, "meters"),
  10456. weight: math.unit(2, "tons"),
  10457. name: "Front",
  10458. image: {
  10459. source: "./media/characters/marik/front.svg",
  10460. extra: 1057 / 1003,
  10461. bottom: 0.08
  10462. }
  10463. },
  10464. },
  10465. [
  10466. {
  10467. name: "Normal",
  10468. height: math.unit(4, "meters"),
  10469. default: true
  10470. },
  10471. {
  10472. name: "Macro",
  10473. height: math.unit(20, "meters")
  10474. },
  10475. {
  10476. name: "Megamacro",
  10477. height: math.unit(50, "km")
  10478. },
  10479. {
  10480. name: "Gigamacro",
  10481. height: math.unit(100, "km")
  10482. },
  10483. {
  10484. name: "Alpha Macro",
  10485. height: math.unit(7.88e7, "yottameters")
  10486. },
  10487. ]
  10488. ))
  10489. characterMakers.push(() => makeCharacter(
  10490. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10491. {
  10492. front: {
  10493. height: math.unit(6, "feet"),
  10494. weight: math.unit(110, "lb"),
  10495. name: "Front",
  10496. image: {
  10497. source: "./media/characters/mel/front.svg",
  10498. extra: 736 / 617,
  10499. bottom: 0.017
  10500. }
  10501. },
  10502. },
  10503. [
  10504. {
  10505. name: "Pico",
  10506. height: math.unit(3, "pm")
  10507. },
  10508. {
  10509. name: "Nano",
  10510. height: math.unit(3, "nm")
  10511. },
  10512. {
  10513. name: "Micro",
  10514. height: math.unit(0.3, "mm"),
  10515. default: true
  10516. },
  10517. {
  10518. name: "Micro+",
  10519. height: math.unit(3, "mm")
  10520. },
  10521. {
  10522. name: "Normal",
  10523. height: math.unit(5 + 10.5 / 12, "feet")
  10524. },
  10525. ]
  10526. ))
  10527. characterMakers.push(() => makeCharacter(
  10528. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10529. {
  10530. kaiju: {
  10531. height: math.unit(1.75, "meters"),
  10532. weight: math.unit(55, "kg"),
  10533. name: "Kaiju",
  10534. image: {
  10535. source: "./media/characters/lykonous/kaiju.svg",
  10536. extra: 1055 / 946,
  10537. bottom: 0.135
  10538. }
  10539. },
  10540. },
  10541. [
  10542. {
  10543. name: "Normal",
  10544. height: math.unit(2.5, "meters"),
  10545. default: true
  10546. },
  10547. {
  10548. name: "Kaiju Dragon",
  10549. height: math.unit(60, "meters")
  10550. },
  10551. {
  10552. name: "Mega Kaiju",
  10553. height: math.unit(120, "km")
  10554. },
  10555. {
  10556. name: "Giga Kaiju",
  10557. height: math.unit(200, "megameters")
  10558. },
  10559. {
  10560. name: "Terra Kaiju",
  10561. height: math.unit(400, "gigameters")
  10562. },
  10563. {
  10564. name: "Kaiju Dragon God",
  10565. height: math.unit(13000, "exaparsecs")
  10566. },
  10567. ]
  10568. ))
  10569. characterMakers.push(() => makeCharacter(
  10570. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10571. {
  10572. front: {
  10573. height: math.unit(6, "feet"),
  10574. weight: math.unit(150, "lb"),
  10575. name: "Front",
  10576. image: {
  10577. source: "./media/characters/blü/front.svg",
  10578. extra: 1883 / 1564,
  10579. bottom: 0.031
  10580. }
  10581. },
  10582. },
  10583. [
  10584. {
  10585. name: "Normal",
  10586. height: math.unit(13, "feet"),
  10587. default: true
  10588. },
  10589. {
  10590. name: "Big Boi",
  10591. height: math.unit(150, "meters")
  10592. },
  10593. {
  10594. name: "Mini Stomper",
  10595. height: math.unit(300, "meters")
  10596. },
  10597. {
  10598. name: "Macro",
  10599. height: math.unit(1000, "meters")
  10600. },
  10601. {
  10602. name: "Megamacro",
  10603. height: math.unit(11000, "meters")
  10604. },
  10605. {
  10606. name: "Gigamacro",
  10607. height: math.unit(11000, "km")
  10608. },
  10609. {
  10610. name: "Teramacro",
  10611. height: math.unit(420000, "km")
  10612. },
  10613. {
  10614. name: "Examacro",
  10615. height: math.unit(120, "parsecs")
  10616. },
  10617. {
  10618. name: "God Tho",
  10619. height: math.unit(98000000000, "parsecs")
  10620. },
  10621. ]
  10622. ))
  10623. characterMakers.push(() => makeCharacter(
  10624. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10625. {
  10626. taurFront: {
  10627. height: math.unit(6, "feet"),
  10628. weight: math.unit(200, "lb"),
  10629. name: "Taur (Front)",
  10630. image: {
  10631. source: "./media/characters/scales/taur-front.svg",
  10632. extra: 1,
  10633. bottom: 0.05
  10634. }
  10635. },
  10636. taurBack: {
  10637. height: math.unit(6, "feet"),
  10638. weight: math.unit(200, "lb"),
  10639. name: "Taur (Back)",
  10640. image: {
  10641. source: "./media/characters/scales/taur-back.svg",
  10642. extra: 1,
  10643. bottom: 0.08
  10644. }
  10645. },
  10646. anthro: {
  10647. height: math.unit(6 * 7 / 12, "feet"),
  10648. weight: math.unit(100, "lb"),
  10649. name: "Anthro",
  10650. image: {
  10651. source: "./media/characters/scales/anthro.svg",
  10652. extra: 1,
  10653. bottom: 0.06
  10654. }
  10655. },
  10656. },
  10657. [
  10658. {
  10659. name: "Normal",
  10660. height: math.unit(12, "feet"),
  10661. default: true
  10662. },
  10663. ]
  10664. ))
  10665. characterMakers.push(() => makeCharacter(
  10666. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10667. {
  10668. front: {
  10669. height: math.unit(6, "feet"),
  10670. weight: math.unit(150, "lb"),
  10671. name: "Front",
  10672. image: {
  10673. source: "./media/characters/koragos/front.svg",
  10674. extra: 841 / 794,
  10675. bottom: 0.035
  10676. }
  10677. },
  10678. back: {
  10679. height: math.unit(6, "feet"),
  10680. weight: math.unit(150, "lb"),
  10681. name: "Back",
  10682. image: {
  10683. source: "./media/characters/koragos/back.svg",
  10684. extra: 841 / 810,
  10685. bottom: 0.022
  10686. }
  10687. },
  10688. },
  10689. [
  10690. {
  10691. name: "Normal",
  10692. height: math.unit(6 + 11 / 12, "feet"),
  10693. default: true
  10694. },
  10695. {
  10696. name: "Macro",
  10697. height: math.unit(490, "feet")
  10698. },
  10699. {
  10700. name: "Megamacro",
  10701. height: math.unit(10, "miles")
  10702. },
  10703. {
  10704. name: "Gigamacro",
  10705. height: math.unit(50, "miles")
  10706. },
  10707. ]
  10708. ))
  10709. characterMakers.push(() => makeCharacter(
  10710. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  10711. {
  10712. front: {
  10713. height: math.unit(6, "feet"),
  10714. weight: math.unit(250, "lb"),
  10715. name: "Front",
  10716. image: {
  10717. source: "./media/characters/xylrem/front.svg",
  10718. extra: 3323 / 3050,
  10719. bottom: 0.065
  10720. }
  10721. },
  10722. },
  10723. [
  10724. {
  10725. name: "Micro",
  10726. height: math.unit(4, "feet")
  10727. },
  10728. {
  10729. name: "Normal",
  10730. height: math.unit(16, "feet"),
  10731. default: true
  10732. },
  10733. {
  10734. name: "Macro",
  10735. height: math.unit(2720, "feet")
  10736. },
  10737. {
  10738. name: "Megamacro",
  10739. height: math.unit(25000, "miles")
  10740. },
  10741. ]
  10742. ))
  10743. characterMakers.push(() => makeCharacter(
  10744. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  10745. {
  10746. front: {
  10747. height: math.unit(8, "feet"),
  10748. weight: math.unit(250, "kg"),
  10749. name: "Front",
  10750. image: {
  10751. source: "./media/characters/ikideru/front.svg",
  10752. extra: 930 / 870,
  10753. bottom: 0.087
  10754. }
  10755. },
  10756. back: {
  10757. height: math.unit(8, "feet"),
  10758. weight: math.unit(250, "kg"),
  10759. name: "Back",
  10760. image: {
  10761. source: "./media/characters/ikideru/back.svg",
  10762. extra: 919 / 852,
  10763. bottom: 0.055
  10764. }
  10765. },
  10766. },
  10767. [
  10768. {
  10769. name: "Rare",
  10770. height: math.unit(8, "feet"),
  10771. default: true
  10772. },
  10773. {
  10774. name: "Playful Loom",
  10775. height: math.unit(80, "feet")
  10776. },
  10777. {
  10778. name: "City Leaner",
  10779. height: math.unit(230, "feet")
  10780. },
  10781. {
  10782. name: "Megamacro",
  10783. height: math.unit(2500, "feet")
  10784. },
  10785. {
  10786. name: "Gigamacro",
  10787. height: math.unit(26400, "feet")
  10788. },
  10789. {
  10790. name: "Tectonic Shifter",
  10791. height: math.unit(1.7, "megameters")
  10792. },
  10793. {
  10794. name: "Planet Carer",
  10795. height: math.unit(21, "megameters")
  10796. },
  10797. {
  10798. name: "God",
  10799. height: math.unit(11157.22, "parsecs")
  10800. },
  10801. ]
  10802. ))
  10803. characterMakers.push(() => makeCharacter(
  10804. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  10805. {
  10806. front: {
  10807. height: math.unit(6, "feet"),
  10808. weight: math.unit(120, "lb"),
  10809. name: "Front",
  10810. image: {
  10811. source: "./media/characters/neo/front.svg"
  10812. }
  10813. },
  10814. },
  10815. [
  10816. {
  10817. name: "Micro",
  10818. height: math.unit(2, "inches"),
  10819. default: true
  10820. },
  10821. {
  10822. name: "Human Size",
  10823. height: math.unit(5 + 8 / 12, "feet")
  10824. },
  10825. ]
  10826. ))
  10827. characterMakers.push(() => makeCharacter(
  10828. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  10829. {
  10830. front: {
  10831. height: math.unit(13 + 10 / 12, "feet"),
  10832. weight: math.unit(5320, "lb"),
  10833. name: "Front",
  10834. image: {
  10835. source: "./media/characters/chauncey-chantz/front.svg",
  10836. extra: 1587 / 1435,
  10837. bottom: 0.02
  10838. }
  10839. },
  10840. },
  10841. [
  10842. {
  10843. name: "Normal",
  10844. height: math.unit(13 + 10 / 12, "feet"),
  10845. default: true
  10846. },
  10847. {
  10848. name: "Macro",
  10849. height: math.unit(45, "feet")
  10850. },
  10851. {
  10852. name: "Megamacro",
  10853. height: math.unit(250, "miles")
  10854. },
  10855. {
  10856. name: "Planetary",
  10857. height: math.unit(10000, "miles")
  10858. },
  10859. {
  10860. name: "Galactic",
  10861. height: math.unit(40000, "parsecs")
  10862. },
  10863. {
  10864. name: "Universal",
  10865. height: math.unit(1, "yottameter")
  10866. },
  10867. ]
  10868. ))
  10869. characterMakers.push(() => makeCharacter(
  10870. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  10871. {
  10872. front: {
  10873. height: math.unit(6, "feet"),
  10874. weight: math.unit(150, "lb"),
  10875. name: "Front",
  10876. image: {
  10877. source: "./media/characters/epifox/front.svg",
  10878. extra: 1,
  10879. bottom: 0.075
  10880. }
  10881. },
  10882. },
  10883. [
  10884. {
  10885. name: "Micro",
  10886. height: math.unit(6, "inches")
  10887. },
  10888. {
  10889. name: "Normal",
  10890. height: math.unit(12, "feet"),
  10891. default: true
  10892. },
  10893. {
  10894. name: "Macro",
  10895. height: math.unit(3810, "feet")
  10896. },
  10897. {
  10898. name: "Megamacro",
  10899. height: math.unit(500, "miles")
  10900. },
  10901. ]
  10902. ))
  10903. characterMakers.push(() => makeCharacter(
  10904. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  10905. {
  10906. front: {
  10907. height: math.unit(1.8796, "m"),
  10908. weight: math.unit(230, "lb"),
  10909. name: "Front",
  10910. image: {
  10911. source: "./media/characters/colin-t/front.svg",
  10912. extra: 1272 / 1193,
  10913. bottom: 0.07
  10914. }
  10915. },
  10916. },
  10917. [
  10918. {
  10919. name: "Micro",
  10920. height: math.unit(0.571, "meters")
  10921. },
  10922. {
  10923. name: "Normal",
  10924. height: math.unit(1.8796, "meters"),
  10925. default: true
  10926. },
  10927. {
  10928. name: "Tall",
  10929. height: math.unit(4, "meters")
  10930. },
  10931. {
  10932. name: "Macro",
  10933. height: math.unit(67.241, "meters")
  10934. },
  10935. {
  10936. name: "Megamacro",
  10937. height: math.unit(371.856, "meters")
  10938. },
  10939. {
  10940. name: "Planetary",
  10941. height: math.unit(12631.5689, "km")
  10942. },
  10943. ]
  10944. ))
  10945. characterMakers.push(() => makeCharacter(
  10946. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  10947. {
  10948. front: {
  10949. height: math.unit(1.85, "meters"),
  10950. weight: math.unit(80, "kg"),
  10951. name: "Front",
  10952. image: {
  10953. source: "./media/characters/matvei/front.svg",
  10954. extra: 614 / 594,
  10955. bottom: 0.01
  10956. }
  10957. },
  10958. },
  10959. [
  10960. {
  10961. name: "Normal",
  10962. height: math.unit(1.85, "meters"),
  10963. default: true
  10964. },
  10965. ]
  10966. ))
  10967. characterMakers.push(() => makeCharacter(
  10968. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  10969. {
  10970. front: {
  10971. height: math.unit(5 + 9 / 12, "feet"),
  10972. weight: math.unit(70, "lb"),
  10973. name: "Front",
  10974. image: {
  10975. source: "./media/characters/quincy/front.svg",
  10976. extra: 3041 / 2751
  10977. }
  10978. },
  10979. back: {
  10980. height: math.unit(5 + 9 / 12, "feet"),
  10981. weight: math.unit(70, "lb"),
  10982. name: "Back",
  10983. image: {
  10984. source: "./media/characters/quincy/back.svg",
  10985. extra: 3041 / 2751
  10986. }
  10987. },
  10988. flying: {
  10989. height: math.unit(5 + 4 / 12, "feet"),
  10990. weight: math.unit(70, "lb"),
  10991. name: "Flying",
  10992. image: {
  10993. source: "./media/characters/quincy/flying.svg",
  10994. extra: 1044 / 930
  10995. }
  10996. },
  10997. },
  10998. [
  10999. {
  11000. name: "Micro",
  11001. height: math.unit(3, "cm")
  11002. },
  11003. {
  11004. name: "Normal",
  11005. height: math.unit(5 + 9 / 12, "feet")
  11006. },
  11007. {
  11008. name: "Macro",
  11009. height: math.unit(200, "meters"),
  11010. default: true
  11011. },
  11012. {
  11013. name: "Megamacro",
  11014. height: math.unit(1000, "meters")
  11015. },
  11016. ]
  11017. ))
  11018. characterMakers.push(() => makeCharacter(
  11019. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11020. {
  11021. front: {
  11022. height: math.unit(4 + 7 / 12, "feet"),
  11023. weight: math.unit(150, "lb"),
  11024. name: "Front",
  11025. image: {
  11026. source: "./media/characters/vanrel/front.svg",
  11027. extra: 1,
  11028. bottom: 0.02
  11029. }
  11030. },
  11031. elemental: {
  11032. height: math.unit(3, "feet"),
  11033. weight: math.unit(150, "lb"),
  11034. name: "Elemental",
  11035. image: {
  11036. source: "./media/characters/vanrel/elemental.svg",
  11037. extra: 192.3 / 162.8,
  11038. bottom: 1.79 / 194.17
  11039. }
  11040. },
  11041. side: {
  11042. height: math.unit(4 + 7 / 12, "feet"),
  11043. weight: math.unit(150, "lb"),
  11044. name: "Side",
  11045. image: {
  11046. source: "./media/characters/vanrel/side.svg",
  11047. extra: 1,
  11048. bottom: 0.025
  11049. }
  11050. },
  11051. tome: {
  11052. height: math.unit(1.35, "feet"),
  11053. weight: math.unit(10, "lb"),
  11054. name: "Vanrel's Tome",
  11055. rename: true,
  11056. image: {
  11057. source: "./media/characters/vanrel/tome.svg"
  11058. }
  11059. },
  11060. beans: {
  11061. height: math.unit(0.89, "feet"),
  11062. name: "Beans",
  11063. image: {
  11064. source: "./media/characters/vanrel/beans.svg"
  11065. }
  11066. },
  11067. },
  11068. [
  11069. {
  11070. name: "Normal",
  11071. height: math.unit(4 + 7 / 12, "feet"),
  11072. default: true
  11073. },
  11074. ]
  11075. ))
  11076. characterMakers.push(() => makeCharacter(
  11077. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11078. {
  11079. front: {
  11080. height: math.unit(7 + 5 / 12, "feet"),
  11081. weight: math.unit(150, "lb"),
  11082. name: "Front",
  11083. image: {
  11084. source: "./media/characters/kuiper-vanrel/front.svg",
  11085. extra: 1118 / 1068,
  11086. bottom: 0.09
  11087. }
  11088. },
  11089. foot: {
  11090. height: math.unit(0.55, "meters"),
  11091. name: "Foot",
  11092. image: {
  11093. source: "./media/characters/kuiper-vanrel/foot.svg",
  11094. }
  11095. },
  11096. battle: {
  11097. height: math.unit(6.824, "feet"),
  11098. weight: math.unit(150, "lb"),
  11099. name: "Battle",
  11100. image: {
  11101. source: "./media/characters/kuiper-vanrel/battle.svg",
  11102. extra: 1466 / 1327,
  11103. bottom: 29 / 1492.5
  11104. }
  11105. },
  11106. },
  11107. [
  11108. {
  11109. name: "Normal",
  11110. height: math.unit(7 + 5 / 12, "feet"),
  11111. default: true
  11112. },
  11113. ]
  11114. ))
  11115. characterMakers.push(() => makeCharacter(
  11116. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11117. {
  11118. front: {
  11119. height: math.unit(8 + 5 / 12, "feet"),
  11120. weight: math.unit(150, "lb"),
  11121. name: "Front",
  11122. image: {
  11123. source: "./media/characters/keset-vanrel/front.svg",
  11124. extra: 1150 / 1084,
  11125. bottom: 0.05
  11126. }
  11127. },
  11128. hand: {
  11129. height: math.unit(0.6, "meters"),
  11130. name: "Hand",
  11131. image: {
  11132. source: "./media/characters/keset-vanrel/hand.svg"
  11133. }
  11134. },
  11135. foot: {
  11136. height: math.unit(0.94978, "meters"),
  11137. name: "Foot",
  11138. image: {
  11139. source: "./media/characters/keset-vanrel/foot.svg"
  11140. }
  11141. },
  11142. battle: {
  11143. height: math.unit(7.408, "feet"),
  11144. weight: math.unit(150, "lb"),
  11145. name: "Battle",
  11146. image: {
  11147. source: "./media/characters/keset-vanrel/battle.svg",
  11148. extra: 1890 / 1386,
  11149. bottom: 73.28 / 1970
  11150. }
  11151. },
  11152. },
  11153. [
  11154. {
  11155. name: "Normal",
  11156. height: math.unit(8 + 5 / 12, "feet"),
  11157. default: true
  11158. },
  11159. ]
  11160. ))
  11161. characterMakers.push(() => makeCharacter(
  11162. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11163. {
  11164. front: {
  11165. height: math.unit(6, "feet"),
  11166. weight: math.unit(150, "lb"),
  11167. name: "Front",
  11168. image: {
  11169. source: "./media/characters/neos/front.svg",
  11170. extra: 1696 / 992,
  11171. bottom: 0.14
  11172. }
  11173. },
  11174. },
  11175. [
  11176. {
  11177. name: "Normal",
  11178. height: math.unit(54, "cm"),
  11179. default: true
  11180. },
  11181. {
  11182. name: "Macro",
  11183. height: math.unit(100, "m")
  11184. },
  11185. {
  11186. name: "Megamacro",
  11187. height: math.unit(10, "km")
  11188. },
  11189. {
  11190. name: "Megamacro+",
  11191. height: math.unit(100, "km")
  11192. },
  11193. {
  11194. name: "Gigamacro",
  11195. height: math.unit(100, "Mm")
  11196. },
  11197. {
  11198. name: "Teramacro",
  11199. height: math.unit(100, "Gm")
  11200. },
  11201. {
  11202. name: "Examacro",
  11203. height: math.unit(100, "Em")
  11204. },
  11205. {
  11206. name: "Godly",
  11207. height: math.unit(10000, "Ym")
  11208. },
  11209. {
  11210. name: "Beyond Godly",
  11211. height: math.unit(25, "multiverses")
  11212. },
  11213. ]
  11214. ))
  11215. characterMakers.push(() => makeCharacter(
  11216. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11217. {
  11218. feminine: {
  11219. height: math.unit(5, "feet"),
  11220. weight: math.unit(100, "lb"),
  11221. name: "Feminine",
  11222. image: {
  11223. source: "./media/characters/sammy-mouse/feminine.svg",
  11224. extra: 2526 / 2425,
  11225. bottom: 0.123
  11226. }
  11227. },
  11228. masculine: {
  11229. height: math.unit(5, "feet"),
  11230. weight: math.unit(100, "lb"),
  11231. name: "Masculine",
  11232. image: {
  11233. source: "./media/characters/sammy-mouse/masculine.svg",
  11234. extra: 2526 / 2425,
  11235. bottom: 0.123
  11236. }
  11237. },
  11238. },
  11239. [
  11240. {
  11241. name: "Micro",
  11242. height: math.unit(5, "inches")
  11243. },
  11244. {
  11245. name: "Normal",
  11246. height: math.unit(5, "feet"),
  11247. default: true
  11248. },
  11249. {
  11250. name: "Macro",
  11251. height: math.unit(60, "feet")
  11252. },
  11253. ]
  11254. ))
  11255. characterMakers.push(() => makeCharacter(
  11256. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11257. {
  11258. front: {
  11259. height: math.unit(4, "feet"),
  11260. weight: math.unit(50, "lb"),
  11261. name: "Front",
  11262. image: {
  11263. source: "./media/characters/kole/front.svg",
  11264. extra: 1423 / 1303,
  11265. bottom: 0.025
  11266. }
  11267. },
  11268. back: {
  11269. height: math.unit(4, "feet"),
  11270. weight: math.unit(50, "lb"),
  11271. name: "Back",
  11272. image: {
  11273. source: "./media/characters/kole/back.svg",
  11274. extra: 1426 / 1280,
  11275. bottom: 0.02
  11276. }
  11277. },
  11278. },
  11279. [
  11280. {
  11281. name: "Normal",
  11282. height: math.unit(4, "feet"),
  11283. default: true
  11284. },
  11285. ]
  11286. ))
  11287. characterMakers.push(() => makeCharacter(
  11288. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11289. {
  11290. front: {
  11291. height: math.unit(2 + 6 / 12, "feet"),
  11292. weight: math.unit(20, "lb"),
  11293. name: "Front",
  11294. image: {
  11295. source: "./media/characters/rufran/front.svg",
  11296. extra: 2041 / 1839,
  11297. bottom: 0.055
  11298. }
  11299. },
  11300. back: {
  11301. height: math.unit(2 + 6 / 12, "feet"),
  11302. weight: math.unit(20, "lb"),
  11303. name: "Back",
  11304. image: {
  11305. source: "./media/characters/rufran/back.svg",
  11306. extra: 2054 / 1839,
  11307. bottom: 0.01
  11308. }
  11309. },
  11310. hand: {
  11311. height: math.unit(0.2166, "meters"),
  11312. name: "Hand",
  11313. image: {
  11314. source: "./media/characters/rufran/hand.svg"
  11315. }
  11316. },
  11317. foot: {
  11318. height: math.unit(0.185, "meters"),
  11319. name: "Foot",
  11320. image: {
  11321. source: "./media/characters/rufran/foot.svg"
  11322. }
  11323. },
  11324. },
  11325. [
  11326. {
  11327. name: "Micro",
  11328. height: math.unit(1, "inch")
  11329. },
  11330. {
  11331. name: "Normal",
  11332. height: math.unit(2 + 6 / 12, "feet"),
  11333. default: true
  11334. },
  11335. {
  11336. name: "Big",
  11337. height: math.unit(60, "feet")
  11338. },
  11339. {
  11340. name: "Macro",
  11341. height: math.unit(325, "feet")
  11342. },
  11343. ]
  11344. ))
  11345. characterMakers.push(() => makeCharacter(
  11346. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11347. {
  11348. front: {
  11349. height: math.unit(0.3, "meters"),
  11350. weight: math.unit(3.5, "kg"),
  11351. name: "Front",
  11352. image: {
  11353. source: "./media/characters/chip/front.svg",
  11354. extra: 748 / 674
  11355. }
  11356. },
  11357. },
  11358. [
  11359. {
  11360. name: "Micro",
  11361. height: math.unit(1, "inch"),
  11362. default: true
  11363. },
  11364. ]
  11365. ))
  11366. characterMakers.push(() => makeCharacter(
  11367. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11368. {
  11369. side: {
  11370. height: math.unit(2.3, "meters"),
  11371. weight: math.unit(3500, "lb"),
  11372. name: "Side",
  11373. image: {
  11374. source: "./media/characters/torvid/side.svg",
  11375. extra: 1972 / 722,
  11376. bottom: 0.035
  11377. }
  11378. },
  11379. },
  11380. [
  11381. {
  11382. name: "Normal",
  11383. height: math.unit(2.3, "meters"),
  11384. default: true
  11385. },
  11386. ]
  11387. ))
  11388. characterMakers.push(() => makeCharacter(
  11389. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11390. {
  11391. front: {
  11392. height: math.unit(2, "meters"),
  11393. weight: math.unit(150.5, "kg"),
  11394. name: "Front",
  11395. image: {
  11396. source: "./media/characters/susan/front.svg",
  11397. extra: 693 / 635,
  11398. bottom: 0.05
  11399. }
  11400. },
  11401. },
  11402. [
  11403. {
  11404. name: "Megamacro",
  11405. height: math.unit(505, "miles"),
  11406. default: true
  11407. },
  11408. ]
  11409. ))
  11410. characterMakers.push(() => makeCharacter(
  11411. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11412. {
  11413. front: {
  11414. height: math.unit(6, "feet"),
  11415. weight: math.unit(150, "lb"),
  11416. name: "Front",
  11417. image: {
  11418. source: "./media/characters/raindrops/front.svg",
  11419. extra: 2655 / 2461,
  11420. bottom: 49/2705
  11421. }
  11422. },
  11423. back: {
  11424. height: math.unit(6, "feet"),
  11425. weight: math.unit(150, "lb"),
  11426. name: "Back",
  11427. image: {
  11428. source: "./media/characters/raindrops/back.svg",
  11429. extra: 2574 / 2400,
  11430. bottom: 65/2634
  11431. }
  11432. },
  11433. },
  11434. [
  11435. {
  11436. name: "Micro",
  11437. height: math.unit(6, "inches")
  11438. },
  11439. {
  11440. name: "Normal",
  11441. height: math.unit(6 + 2 / 12, "feet")
  11442. },
  11443. {
  11444. name: "Macro",
  11445. height: math.unit(131, "feet"),
  11446. default: true
  11447. },
  11448. {
  11449. name: "Megamacro",
  11450. height: math.unit(15, "miles")
  11451. },
  11452. {
  11453. name: "Gigamacro",
  11454. height: math.unit(4000, "miles")
  11455. },
  11456. {
  11457. name: "Teramacro",
  11458. height: math.unit(315000, "miles")
  11459. },
  11460. ]
  11461. ))
  11462. characterMakers.push(() => makeCharacter(
  11463. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11464. {
  11465. front: {
  11466. height: math.unit(2.794, "meters"),
  11467. weight: math.unit(325, "kg"),
  11468. name: "Front",
  11469. image: {
  11470. source: "./media/characters/tezwa/front.svg",
  11471. extra: 2083 / 1906,
  11472. bottom: 0.031
  11473. }
  11474. },
  11475. foot: {
  11476. height: math.unit(0.687, "meters"),
  11477. name: "Foot",
  11478. image: {
  11479. source: "./media/characters/tezwa/foot.svg"
  11480. }
  11481. },
  11482. },
  11483. [
  11484. {
  11485. name: "Normal",
  11486. height: math.unit(9 + 2 / 12, "feet"),
  11487. default: true
  11488. },
  11489. ]
  11490. ))
  11491. characterMakers.push(() => makeCharacter(
  11492. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11493. {
  11494. front: {
  11495. height: math.unit(58, "feet"),
  11496. weight: math.unit(89000, "lb"),
  11497. name: "Front",
  11498. image: {
  11499. source: "./media/characters/typhus/front.svg",
  11500. extra: 816 / 800,
  11501. bottom: 0.065
  11502. }
  11503. },
  11504. },
  11505. [
  11506. {
  11507. name: "Macro",
  11508. height: math.unit(58, "feet"),
  11509. default: true
  11510. },
  11511. ]
  11512. ))
  11513. characterMakers.push(() => makeCharacter(
  11514. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11515. {
  11516. front: {
  11517. height: math.unit(12, "feet"),
  11518. weight: math.unit(6, "tonnes"),
  11519. name: "Front",
  11520. image: {
  11521. source: "./media/characters/lyra-von-wulf/front.svg",
  11522. extra: 1,
  11523. bottom: 0.10
  11524. }
  11525. },
  11526. frontMecha: {
  11527. height: math.unit(12, "feet"),
  11528. weight: math.unit(12, "tonnes"),
  11529. name: "Front (Mecha)",
  11530. image: {
  11531. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11532. extra: 1,
  11533. bottom: 0.042
  11534. }
  11535. },
  11536. maw: {
  11537. height: math.unit(2.2, "feet"),
  11538. name: "Maw",
  11539. image: {
  11540. source: "./media/characters/lyra-von-wulf/maw.svg"
  11541. }
  11542. },
  11543. },
  11544. [
  11545. {
  11546. name: "Normal",
  11547. height: math.unit(12, "feet"),
  11548. default: true
  11549. },
  11550. {
  11551. name: "Classic",
  11552. height: math.unit(50, "feet")
  11553. },
  11554. {
  11555. name: "Macro",
  11556. height: math.unit(500, "feet")
  11557. },
  11558. {
  11559. name: "Megamacro",
  11560. height: math.unit(1, "mile")
  11561. },
  11562. {
  11563. name: "Gigamacro",
  11564. height: math.unit(400, "miles")
  11565. },
  11566. {
  11567. name: "Teramacro",
  11568. height: math.unit(22000, "miles")
  11569. },
  11570. {
  11571. name: "Solarmacro",
  11572. height: math.unit(8600000, "miles")
  11573. },
  11574. {
  11575. name: "Galactic",
  11576. height: math.unit(1057000, "lightyears")
  11577. },
  11578. ]
  11579. ))
  11580. characterMakers.push(() => makeCharacter(
  11581. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11582. {
  11583. front: {
  11584. height: math.unit(6 + 10 / 12, "feet"),
  11585. weight: math.unit(150, "lb"),
  11586. name: "Front",
  11587. image: {
  11588. source: "./media/characters/dixon/front.svg",
  11589. extra: 3361 / 3209,
  11590. bottom: 0.01
  11591. }
  11592. },
  11593. },
  11594. [
  11595. {
  11596. name: "Normal",
  11597. height: math.unit(6 + 10 / 12, "feet"),
  11598. default: true
  11599. },
  11600. {
  11601. name: "Big",
  11602. height: math.unit(12, "meters")
  11603. },
  11604. {
  11605. name: "Macro",
  11606. height: math.unit(500, "meters")
  11607. },
  11608. {
  11609. name: "Megamacro",
  11610. height: math.unit(2, "km")
  11611. },
  11612. ]
  11613. ))
  11614. characterMakers.push(() => makeCharacter(
  11615. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11616. {
  11617. front: {
  11618. height: math.unit(185, "cm"),
  11619. weight: math.unit(68, "kg"),
  11620. name: "Front",
  11621. image: {
  11622. source: "./media/characters/kauko/front.svg",
  11623. extra: 1455 / 1421,
  11624. bottom: 0.03
  11625. }
  11626. },
  11627. back: {
  11628. height: math.unit(185, "cm"),
  11629. weight: math.unit(68, "kg"),
  11630. name: "Back",
  11631. image: {
  11632. source: "./media/characters/kauko/back.svg",
  11633. extra: 1455 / 1421,
  11634. bottom: 0.004
  11635. }
  11636. },
  11637. },
  11638. [
  11639. {
  11640. name: "Normal",
  11641. height: math.unit(185, "cm"),
  11642. default: true
  11643. },
  11644. ]
  11645. ))
  11646. characterMakers.push(() => makeCharacter(
  11647. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11648. {
  11649. front: {
  11650. height: math.unit(6, "feet"),
  11651. weight: math.unit(150, "kg"),
  11652. name: "Front",
  11653. image: {
  11654. source: "./media/characters/varg/front.svg",
  11655. extra: 1108 / 1018,
  11656. bottom: 0.0375
  11657. }
  11658. },
  11659. },
  11660. [
  11661. {
  11662. name: "Normal",
  11663. height: math.unit(5, "meters")
  11664. },
  11665. {
  11666. name: "Macro",
  11667. height: math.unit(200, "meters")
  11668. },
  11669. {
  11670. name: "Megamacro",
  11671. height: math.unit(20, "kilometers")
  11672. },
  11673. {
  11674. name: "True Size",
  11675. height: math.unit(211, "km"),
  11676. default: true
  11677. },
  11678. {
  11679. name: "Gigamacro",
  11680. height: math.unit(1000, "km")
  11681. },
  11682. {
  11683. name: "Gigamacro+",
  11684. height: math.unit(8000, "km")
  11685. },
  11686. {
  11687. name: "Teramacro",
  11688. height: math.unit(1000000, "km")
  11689. },
  11690. ]
  11691. ))
  11692. characterMakers.push(() => makeCharacter(
  11693. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  11694. {
  11695. front: {
  11696. height: math.unit(7 + 7 / 12, "feet"),
  11697. weight: math.unit(267, "lb"),
  11698. name: "Front",
  11699. image: {
  11700. source: "./media/characters/dayza/front.svg",
  11701. extra: 1262 / 1200,
  11702. bottom: 0.035
  11703. }
  11704. },
  11705. side: {
  11706. height: math.unit(7 + 7 / 12, "feet"),
  11707. weight: math.unit(267, "lb"),
  11708. name: "Side",
  11709. image: {
  11710. source: "./media/characters/dayza/side.svg",
  11711. extra: 1295 / 1245,
  11712. bottom: 0.05
  11713. }
  11714. },
  11715. back: {
  11716. height: math.unit(7 + 7 / 12, "feet"),
  11717. weight: math.unit(267, "lb"),
  11718. name: "Back",
  11719. image: {
  11720. source: "./media/characters/dayza/back.svg",
  11721. extra: 1241 / 1170
  11722. }
  11723. },
  11724. },
  11725. [
  11726. {
  11727. name: "Normal",
  11728. height: math.unit(7 + 7 / 12, "feet"),
  11729. default: true
  11730. },
  11731. {
  11732. name: "Macro",
  11733. height: math.unit(155, "feet")
  11734. },
  11735. ]
  11736. ))
  11737. characterMakers.push(() => makeCharacter(
  11738. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  11739. {
  11740. front: {
  11741. height: math.unit(6 + 5 / 12, "feet"),
  11742. weight: math.unit(160, "lb"),
  11743. name: "Front",
  11744. image: {
  11745. source: "./media/characters/xanthos/front.svg",
  11746. extra: 1,
  11747. bottom: 0.04
  11748. }
  11749. },
  11750. back: {
  11751. height: math.unit(6 + 5 / 12, "feet"),
  11752. weight: math.unit(160, "lb"),
  11753. name: "Back",
  11754. image: {
  11755. source: "./media/characters/xanthos/back.svg",
  11756. extra: 1,
  11757. bottom: 0.03
  11758. }
  11759. },
  11760. hand: {
  11761. height: math.unit(0.928, "feet"),
  11762. name: "Hand",
  11763. image: {
  11764. source: "./media/characters/xanthos/hand.svg"
  11765. }
  11766. },
  11767. foot: {
  11768. height: math.unit(1.286, "feet"),
  11769. name: "Foot",
  11770. image: {
  11771. source: "./media/characters/xanthos/foot.svg"
  11772. }
  11773. },
  11774. },
  11775. [
  11776. {
  11777. name: "Normal",
  11778. height: math.unit(6 + 5 / 12, "feet"),
  11779. default: true
  11780. },
  11781. {
  11782. name: "Normal+",
  11783. height: math.unit(6, "meters")
  11784. },
  11785. {
  11786. name: "Macro",
  11787. height: math.unit(40, "feet")
  11788. },
  11789. {
  11790. name: "Macro+",
  11791. height: math.unit(200, "meters")
  11792. },
  11793. {
  11794. name: "Megamacro",
  11795. height: math.unit(20, "km")
  11796. },
  11797. {
  11798. name: "Megamacro+",
  11799. height: math.unit(100, "km")
  11800. },
  11801. ]
  11802. ))
  11803. characterMakers.push(() => makeCharacter(
  11804. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  11805. {
  11806. front: {
  11807. height: math.unit(6 + 3 / 12, "feet"),
  11808. weight: math.unit(215, "lb"),
  11809. name: "Front",
  11810. image: {
  11811. source: "./media/characters/grynn/front.svg",
  11812. extra: 4627 / 4209,
  11813. bottom: 0.047
  11814. }
  11815. },
  11816. },
  11817. [
  11818. {
  11819. name: "Micro",
  11820. height: math.unit(6, "inches")
  11821. },
  11822. {
  11823. name: "Normal",
  11824. height: math.unit(6 + 3 / 12, "feet"),
  11825. default: true
  11826. },
  11827. {
  11828. name: "Big",
  11829. height: math.unit(104, "feet")
  11830. },
  11831. {
  11832. name: "Macro",
  11833. height: math.unit(944, "feet")
  11834. },
  11835. {
  11836. name: "Macro+",
  11837. height: math.unit(9480, "feet")
  11838. },
  11839. {
  11840. name: "Megamacro",
  11841. height: math.unit(78752, "feet")
  11842. },
  11843. {
  11844. name: "Megamacro+",
  11845. height: math.unit(630128, "feet")
  11846. },
  11847. {
  11848. name: "Megamacro++",
  11849. height: math.unit(3150695, "feet")
  11850. },
  11851. ]
  11852. ))
  11853. characterMakers.push(() => makeCharacter(
  11854. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  11855. {
  11856. front: {
  11857. height: math.unit(7 + 5 / 12, "feet"),
  11858. weight: math.unit(450, "lb"),
  11859. name: "Front",
  11860. image: {
  11861. source: "./media/characters/mocha-aura/front.svg",
  11862. extra: 1907 / 1817,
  11863. bottom: 0.04
  11864. }
  11865. },
  11866. back: {
  11867. height: math.unit(7 + 5 / 12, "feet"),
  11868. weight: math.unit(450, "lb"),
  11869. name: "Back",
  11870. image: {
  11871. source: "./media/characters/mocha-aura/back.svg",
  11872. extra: 1900 / 1825,
  11873. bottom: 0.045
  11874. }
  11875. },
  11876. },
  11877. [
  11878. {
  11879. name: "Nano",
  11880. height: math.unit(1, "nm")
  11881. },
  11882. {
  11883. name: "Megamicro",
  11884. height: math.unit(1, "mm")
  11885. },
  11886. {
  11887. name: "Micro",
  11888. height: math.unit(3, "inches")
  11889. },
  11890. {
  11891. name: "Normal",
  11892. height: math.unit(7 + 5 / 12, "feet"),
  11893. default: true
  11894. },
  11895. {
  11896. name: "Macro",
  11897. height: math.unit(30, "feet")
  11898. },
  11899. {
  11900. name: "Megamacro",
  11901. height: math.unit(3500, "feet")
  11902. },
  11903. {
  11904. name: "Teramacro",
  11905. height: math.unit(500000, "miles")
  11906. },
  11907. {
  11908. name: "Petamacro",
  11909. height: math.unit(50000000000000000, "parsecs")
  11910. },
  11911. ]
  11912. ))
  11913. characterMakers.push(() => makeCharacter(
  11914. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  11915. {
  11916. front: {
  11917. height: math.unit(6, "feet"),
  11918. weight: math.unit(150, "lb"),
  11919. name: "Front",
  11920. image: {
  11921. source: "./media/characters/ilisha-devya/front.svg",
  11922. extra: 1,
  11923. bottom: 0.175
  11924. }
  11925. },
  11926. back: {
  11927. height: math.unit(6, "feet"),
  11928. weight: math.unit(150, "lb"),
  11929. name: "Back",
  11930. image: {
  11931. source: "./media/characters/ilisha-devya/back.svg",
  11932. extra: 1,
  11933. bottom: 0.015
  11934. }
  11935. },
  11936. },
  11937. [
  11938. {
  11939. name: "Macro",
  11940. height: math.unit(500, "feet"),
  11941. default: true
  11942. },
  11943. {
  11944. name: "Megamacro",
  11945. height: math.unit(10, "miles")
  11946. },
  11947. {
  11948. name: "Gigamacro",
  11949. height: math.unit(100000, "miles")
  11950. },
  11951. {
  11952. name: "Examacro",
  11953. height: math.unit(1e9, "lightyears")
  11954. },
  11955. {
  11956. name: "Omniversal",
  11957. height: math.unit(1e33, "lightyears")
  11958. },
  11959. {
  11960. name: "Beyond Infinite",
  11961. height: math.unit(1e100, "lightyears")
  11962. },
  11963. ]
  11964. ))
  11965. characterMakers.push(() => makeCharacter(
  11966. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  11967. {
  11968. Side: {
  11969. height: math.unit(6, "feet"),
  11970. weight: math.unit(150, "lb"),
  11971. name: "Side",
  11972. image: {
  11973. source: "./media/characters/mira/side.svg",
  11974. extra: 900 / 799,
  11975. bottom: 0.02
  11976. }
  11977. },
  11978. },
  11979. [
  11980. {
  11981. name: "Human Size",
  11982. height: math.unit(6, "feet")
  11983. },
  11984. {
  11985. name: "Macro",
  11986. height: math.unit(100, "feet"),
  11987. default: true
  11988. },
  11989. {
  11990. name: "Megamacro",
  11991. height: math.unit(10, "miles")
  11992. },
  11993. {
  11994. name: "Gigamacro",
  11995. height: math.unit(25000, "miles")
  11996. },
  11997. {
  11998. name: "Teramacro",
  11999. height: math.unit(300, "AU")
  12000. },
  12001. {
  12002. name: "Full Size",
  12003. height: math.unit(4.5e10, "lightyears")
  12004. },
  12005. ]
  12006. ))
  12007. characterMakers.push(() => makeCharacter(
  12008. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12009. {
  12010. front: {
  12011. height: math.unit(6, "feet"),
  12012. weight: math.unit(150, "lb"),
  12013. name: "Front",
  12014. image: {
  12015. source: "./media/characters/holly/front.svg",
  12016. extra: 639 / 606
  12017. }
  12018. },
  12019. back: {
  12020. height: math.unit(6, "feet"),
  12021. weight: math.unit(150, "lb"),
  12022. name: "Back",
  12023. image: {
  12024. source: "./media/characters/holly/back.svg",
  12025. extra: 623 / 598
  12026. }
  12027. },
  12028. frontWorking: {
  12029. height: math.unit(6, "feet"),
  12030. weight: math.unit(150, "lb"),
  12031. name: "Front (Working)",
  12032. image: {
  12033. source: "./media/characters/holly/front-working.svg",
  12034. extra: 607 / 577,
  12035. bottom: 0.048
  12036. }
  12037. },
  12038. },
  12039. [
  12040. {
  12041. name: "Normal",
  12042. height: math.unit(12 + 3 / 12, "feet"),
  12043. default: true
  12044. },
  12045. ]
  12046. ))
  12047. characterMakers.push(() => makeCharacter(
  12048. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12049. {
  12050. front: {
  12051. height: math.unit(6, "feet"),
  12052. weight: math.unit(150, "lb"),
  12053. name: "Front",
  12054. image: {
  12055. source: "./media/characters/porter/front.svg",
  12056. extra: 1,
  12057. bottom: 0.01
  12058. }
  12059. },
  12060. frontRobes: {
  12061. height: math.unit(6, "feet"),
  12062. weight: math.unit(150, "lb"),
  12063. name: "Front (Robes)",
  12064. image: {
  12065. source: "./media/characters/porter/front-robes.svg",
  12066. extra: 1.01,
  12067. bottom: 0.01
  12068. }
  12069. },
  12070. },
  12071. [
  12072. {
  12073. name: "Normal",
  12074. height: math.unit(11 + 9 / 12, "feet"),
  12075. default: true
  12076. },
  12077. ]
  12078. ))
  12079. characterMakers.push(() => makeCharacter(
  12080. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12081. {
  12082. legendary: {
  12083. height: math.unit(6, "feet"),
  12084. weight: math.unit(150, "lb"),
  12085. name: "Legendary",
  12086. image: {
  12087. source: "./media/characters/lucy/legendary.svg",
  12088. extra: 1355 / 1100,
  12089. bottom: 0.045
  12090. }
  12091. },
  12092. },
  12093. [
  12094. {
  12095. name: "Legendary",
  12096. height: math.unit(86882 * 2, "miles"),
  12097. default: true
  12098. },
  12099. ]
  12100. ))
  12101. characterMakers.push(() => makeCharacter(
  12102. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12103. {
  12104. front: {
  12105. height: math.unit(6, "feet"),
  12106. weight: math.unit(150, "lb"),
  12107. name: "Front",
  12108. image: {
  12109. source: "./media/characters/drusilla/front.svg",
  12110. extra: 678 / 635,
  12111. bottom: 0.03
  12112. }
  12113. },
  12114. back: {
  12115. height: math.unit(6, "feet"),
  12116. weight: math.unit(150, "lb"),
  12117. name: "Back",
  12118. image: {
  12119. source: "./media/characters/drusilla/back.svg",
  12120. extra: 678 / 635,
  12121. bottom: 0.005
  12122. }
  12123. },
  12124. },
  12125. [
  12126. {
  12127. name: "Macro",
  12128. height: math.unit(100, "feet")
  12129. },
  12130. {
  12131. name: "Canon Height",
  12132. height: math.unit(2000, "feet"),
  12133. default: true
  12134. },
  12135. ]
  12136. ))
  12137. characterMakers.push(() => makeCharacter(
  12138. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12139. {
  12140. front: {
  12141. height: math.unit(6, "feet"),
  12142. weight: math.unit(180, "lb"),
  12143. name: "Front",
  12144. image: {
  12145. source: "./media/characters/renard-thatch/front.svg",
  12146. extra: 2411 / 2275,
  12147. bottom: 0.01
  12148. }
  12149. },
  12150. frontPosing: {
  12151. height: math.unit(6, "feet"),
  12152. weight: math.unit(180, "lb"),
  12153. name: "Front (Posing)",
  12154. image: {
  12155. source: "./media/characters/renard-thatch/front-posing.svg",
  12156. extra: 2381 / 2261,
  12157. bottom: 0.01
  12158. }
  12159. },
  12160. back: {
  12161. height: math.unit(6, "feet"),
  12162. weight: math.unit(180, "lb"),
  12163. name: "Back",
  12164. image: {
  12165. source: "./media/characters/renard-thatch/back.svg",
  12166. extra: 2428 / 2288
  12167. }
  12168. },
  12169. },
  12170. [
  12171. {
  12172. name: "Micro",
  12173. height: math.unit(3, "inches")
  12174. },
  12175. {
  12176. name: "Default",
  12177. height: math.unit(6, "feet"),
  12178. default: true
  12179. },
  12180. {
  12181. name: "Macro",
  12182. height: math.unit(75, "feet")
  12183. },
  12184. ]
  12185. ))
  12186. characterMakers.push(() => makeCharacter(
  12187. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12188. {
  12189. front: {
  12190. height: math.unit(1450, "feet"),
  12191. weight: math.unit(1.21e6, "tons"),
  12192. name: "Front",
  12193. image: {
  12194. source: "./media/characters/sekvra/front.svg",
  12195. extra: 1,
  12196. bottom: 0.03
  12197. }
  12198. },
  12199. frontClothed: {
  12200. height: math.unit(1450, "feet"),
  12201. weight: math.unit(1.21e6, "tons"),
  12202. name: "Front (Clothed)",
  12203. image: {
  12204. source: "./media/characters/sekvra/front-clothed.svg",
  12205. extra: 1,
  12206. bottom: 0.03
  12207. }
  12208. },
  12209. side: {
  12210. height: math.unit(1450, "feet"),
  12211. weight: math.unit(1.21e6, "tons"),
  12212. name: "Side",
  12213. image: {
  12214. source: "./media/characters/sekvra/side.svg",
  12215. extra: 1,
  12216. bottom: 0.025
  12217. }
  12218. },
  12219. back: {
  12220. height: math.unit(1450, "feet"),
  12221. weight: math.unit(1.21e6, "tons"),
  12222. name: "Back",
  12223. image: {
  12224. source: "./media/characters/sekvra/back.svg",
  12225. extra: 1,
  12226. bottom: 0.005
  12227. }
  12228. },
  12229. },
  12230. [
  12231. {
  12232. name: "Macro",
  12233. height: math.unit(1450, "feet"),
  12234. default: true
  12235. },
  12236. {
  12237. name: "Megamacro",
  12238. height: math.unit(15000, "feet")
  12239. },
  12240. ]
  12241. ))
  12242. characterMakers.push(() => makeCharacter(
  12243. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12244. {
  12245. front: {
  12246. height: math.unit(6, "feet"),
  12247. weight: math.unit(150, "lb"),
  12248. name: "Front",
  12249. image: {
  12250. source: "./media/characters/carmine/front.svg",
  12251. extra: 1,
  12252. bottom: 0.035
  12253. }
  12254. },
  12255. frontArmor: {
  12256. height: math.unit(6, "feet"),
  12257. weight: math.unit(150, "lb"),
  12258. name: "Front (Armor)",
  12259. image: {
  12260. source: "./media/characters/carmine/front-armor.svg",
  12261. extra: 1,
  12262. bottom: 0.035
  12263. }
  12264. },
  12265. },
  12266. [
  12267. {
  12268. name: "Large",
  12269. height: math.unit(1, "mile")
  12270. },
  12271. {
  12272. name: "Huge",
  12273. height: math.unit(40, "miles"),
  12274. default: true
  12275. },
  12276. {
  12277. name: "Colossal",
  12278. height: math.unit(2500, "miles")
  12279. },
  12280. ]
  12281. ))
  12282. characterMakers.push(() => makeCharacter(
  12283. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12284. {
  12285. front: {
  12286. height: math.unit(6, "feet"),
  12287. weight: math.unit(150, "lb"),
  12288. name: "Front",
  12289. image: {
  12290. source: "./media/characters/elyssia/front.svg",
  12291. extra: 2201 / 2035,
  12292. bottom: 0.05
  12293. }
  12294. },
  12295. frontClothed: {
  12296. height: math.unit(6, "feet"),
  12297. weight: math.unit(150, "lb"),
  12298. name: "Front (Clothed)",
  12299. image: {
  12300. source: "./media/characters/elyssia/front-clothed.svg",
  12301. extra: 2201 / 2035,
  12302. bottom: 0.05
  12303. }
  12304. },
  12305. back: {
  12306. height: math.unit(6, "feet"),
  12307. weight: math.unit(150, "lb"),
  12308. name: "Back",
  12309. image: {
  12310. source: "./media/characters/elyssia/back.svg",
  12311. extra: 2201 / 2035,
  12312. bottom: 0.013
  12313. }
  12314. },
  12315. },
  12316. [
  12317. {
  12318. name: "Smaller",
  12319. height: math.unit(150, "feet")
  12320. },
  12321. {
  12322. name: "Standard",
  12323. height: math.unit(1400, "feet"),
  12324. default: true
  12325. },
  12326. {
  12327. name: "Distracted",
  12328. height: math.unit(15000, "feet")
  12329. },
  12330. ]
  12331. ))
  12332. characterMakers.push(() => makeCharacter(
  12333. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12334. {
  12335. front: {
  12336. height: math.unit(7 + 4 / 12, "feet"),
  12337. weight: math.unit(500, "lb"),
  12338. name: "Front",
  12339. image: {
  12340. source: "./media/characters/geno-maxwell/front.svg",
  12341. extra: 2207 / 2040,
  12342. bottom: 0.015
  12343. }
  12344. },
  12345. },
  12346. [
  12347. {
  12348. name: "Micro",
  12349. height: math.unit(3, "inches")
  12350. },
  12351. {
  12352. name: "Normal",
  12353. height: math.unit(7 + 4 / 12, "feet"),
  12354. default: true
  12355. },
  12356. {
  12357. name: "Macro",
  12358. height: math.unit(220, "feet")
  12359. },
  12360. {
  12361. name: "Megamacro",
  12362. height: math.unit(11, "miles")
  12363. },
  12364. ]
  12365. ))
  12366. characterMakers.push(() => makeCharacter(
  12367. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12368. {
  12369. front: {
  12370. height: math.unit(7 + 4 / 12, "feet"),
  12371. weight: math.unit(500, "lb"),
  12372. name: "Front",
  12373. image: {
  12374. source: "./media/characters/regena-maxwell/front.svg",
  12375. extra: 3115 / 2770,
  12376. bottom: 0.02
  12377. }
  12378. },
  12379. },
  12380. [
  12381. {
  12382. name: "Normal",
  12383. height: math.unit(7 + 4 / 12, "feet"),
  12384. default: true
  12385. },
  12386. {
  12387. name: "Macro",
  12388. height: math.unit(220, "feet")
  12389. },
  12390. {
  12391. name: "Megamacro",
  12392. height: math.unit(11, "miles")
  12393. },
  12394. ]
  12395. ))
  12396. characterMakers.push(() => makeCharacter(
  12397. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12398. {
  12399. front: {
  12400. height: math.unit(6, "feet"),
  12401. weight: math.unit(150, "lb"),
  12402. name: "Front",
  12403. image: {
  12404. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12405. extra: 860 / 690,
  12406. bottom: 0.03
  12407. }
  12408. },
  12409. },
  12410. [
  12411. {
  12412. name: "Normal",
  12413. height: math.unit(1.7, "meters"),
  12414. default: true
  12415. },
  12416. ]
  12417. ))
  12418. characterMakers.push(() => makeCharacter(
  12419. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12420. {
  12421. front: {
  12422. height: math.unit(6, "feet"),
  12423. weight: math.unit(150, "lb"),
  12424. name: "Front",
  12425. image: {
  12426. source: "./media/characters/quilly/front.svg",
  12427. extra: 890 / 776
  12428. }
  12429. },
  12430. },
  12431. [
  12432. {
  12433. name: "Gigamacro",
  12434. height: math.unit(404090, "miles"),
  12435. default: true
  12436. },
  12437. ]
  12438. ))
  12439. characterMakers.push(() => makeCharacter(
  12440. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12441. {
  12442. front: {
  12443. height: math.unit(7 + 8 / 12, "feet"),
  12444. weight: math.unit(350, "lb"),
  12445. name: "Front",
  12446. image: {
  12447. source: "./media/characters/tempest/front.svg",
  12448. extra: 1175 / 1086,
  12449. bottom: 0.02
  12450. }
  12451. },
  12452. },
  12453. [
  12454. {
  12455. name: "Normal",
  12456. height: math.unit(7 + 8 / 12, "feet"),
  12457. default: true
  12458. },
  12459. ]
  12460. ))
  12461. characterMakers.push(() => makeCharacter(
  12462. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12463. {
  12464. side: {
  12465. height: math.unit(4 + 5 / 12, "feet"),
  12466. weight: math.unit(80, "lb"),
  12467. name: "Side",
  12468. image: {
  12469. source: "./media/characters/rodger/side.svg",
  12470. extra: 1235 / 1118
  12471. }
  12472. },
  12473. },
  12474. [
  12475. {
  12476. name: "Micro",
  12477. height: math.unit(1, "inch")
  12478. },
  12479. {
  12480. name: "Normal",
  12481. height: math.unit(4 + 5 / 12, "feet"),
  12482. default: true
  12483. },
  12484. {
  12485. name: "Macro",
  12486. height: math.unit(120, "feet")
  12487. },
  12488. ]
  12489. ))
  12490. characterMakers.push(() => makeCharacter(
  12491. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12492. {
  12493. front: {
  12494. height: math.unit(6, "feet"),
  12495. weight: math.unit(150, "lb"),
  12496. name: "Front",
  12497. image: {
  12498. source: "./media/characters/danyel/front.svg",
  12499. extra: 1185 / 1123,
  12500. bottom: 0.05
  12501. }
  12502. },
  12503. },
  12504. [
  12505. {
  12506. name: "Shrunken",
  12507. height: math.unit(0.5, "mm")
  12508. },
  12509. {
  12510. name: "Micro",
  12511. height: math.unit(1, "mm"),
  12512. default: true
  12513. },
  12514. {
  12515. name: "Upsized",
  12516. height: math.unit(5 + 5 / 12, "feet")
  12517. },
  12518. ]
  12519. ))
  12520. characterMakers.push(() => makeCharacter(
  12521. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12522. {
  12523. front: {
  12524. height: math.unit(5 + 6 / 12, "feet"),
  12525. weight: math.unit(200, "lb"),
  12526. name: "Front",
  12527. image: {
  12528. source: "./media/characters/vivian-bijoux/front.svg",
  12529. extra: 1,
  12530. bottom: 0.072
  12531. }
  12532. },
  12533. },
  12534. [
  12535. {
  12536. name: "Normal",
  12537. height: math.unit(5 + 6 / 12, "feet"),
  12538. default: true
  12539. },
  12540. {
  12541. name: "Bad Dream",
  12542. height: math.unit(500, "feet")
  12543. },
  12544. {
  12545. name: "Nightmare",
  12546. height: math.unit(500, "miles")
  12547. },
  12548. ]
  12549. ))
  12550. characterMakers.push(() => makeCharacter(
  12551. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12552. {
  12553. front: {
  12554. height: math.unit(6 + 1 / 12, "feet"),
  12555. weight: math.unit(260, "lb"),
  12556. name: "Front",
  12557. image: {
  12558. source: "./media/characters/zeta/front.svg",
  12559. extra: 1968 / 1889,
  12560. bottom: 0.06
  12561. }
  12562. },
  12563. back: {
  12564. height: math.unit(6 + 1 / 12, "feet"),
  12565. weight: math.unit(260, "lb"),
  12566. name: "Back",
  12567. image: {
  12568. source: "./media/characters/zeta/back.svg",
  12569. extra: 1944 / 1858,
  12570. bottom: 0.03
  12571. }
  12572. },
  12573. hand: {
  12574. height: math.unit(1.112, "feet"),
  12575. name: "Hand",
  12576. image: {
  12577. source: "./media/characters/zeta/hand.svg"
  12578. }
  12579. },
  12580. foot: {
  12581. height: math.unit(1.48, "feet"),
  12582. name: "Foot",
  12583. image: {
  12584. source: "./media/characters/zeta/foot.svg"
  12585. }
  12586. },
  12587. },
  12588. [
  12589. {
  12590. name: "Micro",
  12591. height: math.unit(6, "inches")
  12592. },
  12593. {
  12594. name: "Normal",
  12595. height: math.unit(6 + 1 / 12, "feet"),
  12596. default: true
  12597. },
  12598. {
  12599. name: "Macro",
  12600. height: math.unit(20, "feet")
  12601. },
  12602. ]
  12603. ))
  12604. characterMakers.push(() => makeCharacter(
  12605. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12606. {
  12607. front: {
  12608. height: math.unit(6, "feet"),
  12609. weight: math.unit(150, "lb"),
  12610. name: "Front",
  12611. image: {
  12612. source: "./media/characters/jamie-larsen/front.svg",
  12613. extra: 962 / 933,
  12614. bottom: 0.02
  12615. }
  12616. },
  12617. back: {
  12618. height: math.unit(6, "feet"),
  12619. weight: math.unit(150, "lb"),
  12620. name: "Back",
  12621. image: {
  12622. source: "./media/characters/jamie-larsen/back.svg",
  12623. extra: 997 / 946
  12624. }
  12625. },
  12626. },
  12627. [
  12628. {
  12629. name: "Macro",
  12630. height: math.unit(28 + 7 / 12, "feet"),
  12631. default: true
  12632. },
  12633. {
  12634. name: "Macro+",
  12635. height: math.unit(180, "feet")
  12636. },
  12637. {
  12638. name: "Megamacro",
  12639. height: math.unit(10, "miles")
  12640. },
  12641. {
  12642. name: "Gigamacro",
  12643. height: math.unit(200000, "miles")
  12644. },
  12645. ]
  12646. ))
  12647. characterMakers.push(() => makeCharacter(
  12648. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12649. {
  12650. front: {
  12651. height: math.unit(6, "feet"),
  12652. weight: math.unit(120, "lb"),
  12653. name: "Front",
  12654. image: {
  12655. source: "./media/characters/vance/front.svg",
  12656. extra: 1980 / 1890,
  12657. bottom: 0.09
  12658. }
  12659. },
  12660. back: {
  12661. height: math.unit(6, "feet"),
  12662. weight: math.unit(120, "lb"),
  12663. name: "Back",
  12664. image: {
  12665. source: "./media/characters/vance/back.svg",
  12666. extra: 2081 / 1994,
  12667. bottom: 0.014
  12668. }
  12669. },
  12670. hand: {
  12671. height: math.unit(0.88, "feet"),
  12672. name: "Hand",
  12673. image: {
  12674. source: "./media/characters/vance/hand.svg"
  12675. }
  12676. },
  12677. foot: {
  12678. height: math.unit(0.64, "feet"),
  12679. name: "Foot",
  12680. image: {
  12681. source: "./media/characters/vance/foot.svg"
  12682. }
  12683. },
  12684. },
  12685. [
  12686. {
  12687. name: "Small",
  12688. height: math.unit(90, "feet"),
  12689. default: true
  12690. },
  12691. {
  12692. name: "Macro",
  12693. height: math.unit(100, "meters")
  12694. },
  12695. {
  12696. name: "Megamacro",
  12697. height: math.unit(15, "miles")
  12698. },
  12699. ]
  12700. ))
  12701. characterMakers.push(() => makeCharacter(
  12702. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  12703. {
  12704. front: {
  12705. height: math.unit(6, "feet"),
  12706. weight: math.unit(180, "lb"),
  12707. name: "Front",
  12708. image: {
  12709. source: "./media/characters/xochitl/front.svg",
  12710. extra: 2297 / 2261,
  12711. bottom: 0.065
  12712. }
  12713. },
  12714. back: {
  12715. height: math.unit(6, "feet"),
  12716. weight: math.unit(180, "lb"),
  12717. name: "Back",
  12718. image: {
  12719. source: "./media/characters/xochitl/back.svg",
  12720. extra: 2386 / 2354,
  12721. bottom: 0.01
  12722. }
  12723. },
  12724. foot: {
  12725. height: math.unit(6 / 5 * 1.15, "feet"),
  12726. weight: math.unit(150, "lb"),
  12727. name: "Foot",
  12728. image: {
  12729. source: "./media/characters/xochitl/foot.svg"
  12730. }
  12731. },
  12732. },
  12733. [
  12734. {
  12735. name: "Macro",
  12736. height: math.unit(80, "feet")
  12737. },
  12738. {
  12739. name: "Macro+",
  12740. height: math.unit(400, "feet"),
  12741. default: true
  12742. },
  12743. {
  12744. name: "Gigamacro",
  12745. height: math.unit(80000, "miles")
  12746. },
  12747. {
  12748. name: "Gigamacro+",
  12749. height: math.unit(400000, "miles")
  12750. },
  12751. {
  12752. name: "Teramacro",
  12753. height: math.unit(300, "AU")
  12754. },
  12755. ]
  12756. ))
  12757. characterMakers.push(() => makeCharacter(
  12758. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  12759. {
  12760. front: {
  12761. height: math.unit(6, "feet"),
  12762. weight: math.unit(150, "lb"),
  12763. name: "Front",
  12764. image: {
  12765. source: "./media/characters/vincent/front.svg",
  12766. extra: 1130 / 1080,
  12767. bottom: 0.055
  12768. }
  12769. },
  12770. beak: {
  12771. height: math.unit(6 * 0.1, "feet"),
  12772. name: "Beak",
  12773. image: {
  12774. source: "./media/characters/vincent/beak.svg"
  12775. }
  12776. },
  12777. hand: {
  12778. height: math.unit(6 * 0.85, "feet"),
  12779. weight: math.unit(150, "lb"),
  12780. name: "Hand",
  12781. image: {
  12782. source: "./media/characters/vincent/hand.svg"
  12783. }
  12784. },
  12785. foot: {
  12786. height: math.unit(6 * 0.19, "feet"),
  12787. weight: math.unit(150, "lb"),
  12788. name: "Foot",
  12789. image: {
  12790. source: "./media/characters/vincent/foot.svg"
  12791. }
  12792. },
  12793. },
  12794. [
  12795. {
  12796. name: "Base",
  12797. height: math.unit(6 + 5 / 12, "feet"),
  12798. default: true
  12799. },
  12800. {
  12801. name: "Macro",
  12802. height: math.unit(300, "feet")
  12803. },
  12804. {
  12805. name: "Megamacro",
  12806. height: math.unit(2, "miles")
  12807. },
  12808. {
  12809. name: "Gigamacro",
  12810. height: math.unit(1000, "miles")
  12811. },
  12812. ]
  12813. ))
  12814. characterMakers.push(() => makeCharacter(
  12815. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  12816. {
  12817. front: {
  12818. height: math.unit(6 + 2 / 12, "feet"),
  12819. weight: math.unit(265, "lb"),
  12820. name: "Front",
  12821. image: {
  12822. source: "./media/characters/jay/front.svg",
  12823. extra: 1510 / 1430,
  12824. bottom: 0.042
  12825. }
  12826. },
  12827. back: {
  12828. height: math.unit(6 + 2 / 12, "feet"),
  12829. weight: math.unit(265, "lb"),
  12830. name: "Back",
  12831. image: {
  12832. source: "./media/characters/jay/back.svg",
  12833. extra: 1510 / 1430,
  12834. bottom: 0.025
  12835. }
  12836. },
  12837. clothed: {
  12838. height: math.unit(6 + 2 / 12, "feet"),
  12839. weight: math.unit(265, "lb"),
  12840. name: "Front (Clothed)",
  12841. image: {
  12842. source: "./media/characters/jay/clothed.svg",
  12843. extra: 744 / 699,
  12844. bottom: 0.043
  12845. }
  12846. },
  12847. head: {
  12848. height: math.unit(1.772, "feet"),
  12849. name: "Head",
  12850. image: {
  12851. source: "./media/characters/jay/head.svg"
  12852. }
  12853. },
  12854. sizeRay: {
  12855. height: math.unit(1.331, "feet"),
  12856. name: "Size Ray",
  12857. image: {
  12858. source: "./media/characters/jay/size-ray.svg"
  12859. }
  12860. },
  12861. },
  12862. [
  12863. {
  12864. name: "Micro",
  12865. height: math.unit(1, "inch")
  12866. },
  12867. {
  12868. name: "Normal",
  12869. height: math.unit(6 + 2 / 12, "feet"),
  12870. default: true
  12871. },
  12872. {
  12873. name: "Macro",
  12874. height: math.unit(1, "mile")
  12875. },
  12876. {
  12877. name: "Megamacro",
  12878. height: math.unit(100, "miles")
  12879. },
  12880. ]
  12881. ))
  12882. characterMakers.push(() => makeCharacter(
  12883. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  12884. {
  12885. front: {
  12886. height: math.unit(2, "meters"),
  12887. weight: math.unit(500, "kg"),
  12888. name: "Front",
  12889. image: {
  12890. source: "./media/characters/coatl/front.svg",
  12891. extra: 3948 / 3500,
  12892. bottom: 0.082
  12893. }
  12894. },
  12895. },
  12896. [
  12897. {
  12898. name: "Normal",
  12899. height: math.unit(4, "meters")
  12900. },
  12901. {
  12902. name: "Macro",
  12903. height: math.unit(100, "meters"),
  12904. default: true
  12905. },
  12906. {
  12907. name: "Macro+",
  12908. height: math.unit(300, "meters")
  12909. },
  12910. {
  12911. name: "Megamacro",
  12912. height: math.unit(3, "gigameters")
  12913. },
  12914. {
  12915. name: "Megamacro+",
  12916. height: math.unit(300, "terameters")
  12917. },
  12918. {
  12919. name: "Megamacro++",
  12920. height: math.unit(3, "lightyears")
  12921. },
  12922. ]
  12923. ))
  12924. characterMakers.push(() => makeCharacter(
  12925. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  12926. {
  12927. front: {
  12928. height: math.unit(6, "feet"),
  12929. weight: math.unit(50, "kg"),
  12930. name: "front",
  12931. image: {
  12932. source: "./media/characters/shiroryu/front.svg",
  12933. extra: 1990 / 1935
  12934. }
  12935. },
  12936. },
  12937. [
  12938. {
  12939. name: "Mortal Mingling",
  12940. height: math.unit(3, "meters")
  12941. },
  12942. {
  12943. name: "Kaiju-ish",
  12944. height: math.unit(250, "meters")
  12945. },
  12946. {
  12947. name: "Somewhat Godly",
  12948. height: math.unit(400, "km"),
  12949. default: true
  12950. },
  12951. {
  12952. name: "Planetary",
  12953. height: math.unit(300, "megameters")
  12954. },
  12955. {
  12956. name: "Galaxy-dwarfing",
  12957. height: math.unit(450, "kiloparsecs")
  12958. },
  12959. {
  12960. name: "Universe Eater",
  12961. height: math.unit(150, "gigaparsecs")
  12962. },
  12963. {
  12964. name: "Almost Immeasurable",
  12965. height: math.unit(1.3e266, "yottaparsecs")
  12966. },
  12967. ]
  12968. ))
  12969. characterMakers.push(() => makeCharacter(
  12970. { name: "Umeko", species: ["eastern-dragon"], 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/umeko/front.svg",
  12978. extra: 1,
  12979. bottom: 0.019
  12980. }
  12981. },
  12982. frontArmored: {
  12983. height: math.unit(6, "feet"),
  12984. weight: math.unit(150, "lb"),
  12985. name: "Front (Armored)",
  12986. image: {
  12987. source: "./media/characters/umeko/front-armored.svg",
  12988. extra: 1,
  12989. bottom: 0.021
  12990. }
  12991. },
  12992. },
  12993. [
  12994. {
  12995. name: "Macro",
  12996. height: math.unit(220, "feet"),
  12997. default: true
  12998. },
  12999. {
  13000. name: "Guardian Dragon",
  13001. height: math.unit(50, "miles")
  13002. },
  13003. {
  13004. name: "Cosmic",
  13005. height: math.unit(800000, "miles")
  13006. },
  13007. ]
  13008. ))
  13009. characterMakers.push(() => makeCharacter(
  13010. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13011. {
  13012. front: {
  13013. height: math.unit(6, "feet"),
  13014. weight: math.unit(150, "lb"),
  13015. name: "Front",
  13016. image: {
  13017. source: "./media/characters/cassidy/front.svg",
  13018. extra: 1,
  13019. bottom: 0.043
  13020. }
  13021. },
  13022. },
  13023. [
  13024. {
  13025. name: "Canon Height",
  13026. height: math.unit(120, "feet"),
  13027. default: true
  13028. },
  13029. {
  13030. name: "Macro+",
  13031. height: math.unit(400, "feet")
  13032. },
  13033. {
  13034. name: "Macro++",
  13035. height: math.unit(4000, "feet")
  13036. },
  13037. {
  13038. name: "Megamacro",
  13039. height: math.unit(3, "miles")
  13040. },
  13041. ]
  13042. ))
  13043. characterMakers.push(() => makeCharacter(
  13044. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13045. {
  13046. front: {
  13047. height: math.unit(6, "feet"),
  13048. weight: math.unit(150, "lb"),
  13049. name: "Front",
  13050. image: {
  13051. source: "./media/characters/isaac/front.svg",
  13052. extra: 896 / 815,
  13053. bottom: 0.11
  13054. }
  13055. },
  13056. },
  13057. [
  13058. {
  13059. name: "Human Size",
  13060. height: math.unit(8, "feet"),
  13061. default: true
  13062. },
  13063. {
  13064. name: "Macro",
  13065. height: math.unit(400, "feet")
  13066. },
  13067. {
  13068. name: "Megamacro",
  13069. height: math.unit(50, "miles")
  13070. },
  13071. {
  13072. name: "Canon Height",
  13073. height: math.unit(200, "AU")
  13074. },
  13075. ]
  13076. ))
  13077. characterMakers.push(() => makeCharacter(
  13078. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13079. {
  13080. front: {
  13081. height: math.unit(6, "feet"),
  13082. weight: math.unit(72, "kg"),
  13083. name: "Front",
  13084. image: {
  13085. source: "./media/characters/sleekit/front.svg",
  13086. extra: 4693 / 4487,
  13087. bottom: 0.012
  13088. }
  13089. },
  13090. },
  13091. [
  13092. {
  13093. name: "Minimum Height",
  13094. height: math.unit(10, "meters")
  13095. },
  13096. {
  13097. name: "Smaller",
  13098. height: math.unit(25, "meters")
  13099. },
  13100. {
  13101. name: "Larger",
  13102. height: math.unit(38, "meters"),
  13103. default: true
  13104. },
  13105. {
  13106. name: "Maximum height",
  13107. height: math.unit(100, "meters")
  13108. },
  13109. ]
  13110. ))
  13111. characterMakers.push(() => makeCharacter(
  13112. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13113. {
  13114. front: {
  13115. height: math.unit(6, "feet"),
  13116. weight: math.unit(150, "lb"),
  13117. name: "Front",
  13118. image: {
  13119. source: "./media/characters/nillia/front.svg",
  13120. extra: 2195 / 2037,
  13121. bottom: 0.005
  13122. }
  13123. },
  13124. back: {
  13125. height: math.unit(6, "feet"),
  13126. weight: math.unit(150, "lb"),
  13127. name: "Back",
  13128. image: {
  13129. source: "./media/characters/nillia/back.svg",
  13130. extra: 2195 / 2037,
  13131. bottom: 0.005
  13132. }
  13133. },
  13134. },
  13135. [
  13136. {
  13137. name: "Canon Height",
  13138. height: math.unit(489, "feet"),
  13139. default: true
  13140. }
  13141. ]
  13142. ))
  13143. characterMakers.push(() => makeCharacter(
  13144. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13145. {
  13146. front: {
  13147. height: math.unit(6, "feet"),
  13148. weight: math.unit(150, "lb"),
  13149. name: "Front",
  13150. image: {
  13151. source: "./media/characters/mesmyriza/front.svg",
  13152. extra: 2067 / 1784,
  13153. bottom: 0.035
  13154. }
  13155. },
  13156. foot: {
  13157. height: math.unit(6 / (250 / 35), "feet"),
  13158. name: "Foot",
  13159. image: {
  13160. source: "./media/characters/mesmyriza/foot.svg"
  13161. }
  13162. },
  13163. },
  13164. [
  13165. {
  13166. name: "Macro",
  13167. height: math.unit(457, "meters"),
  13168. default: true
  13169. },
  13170. {
  13171. name: "Megamacro",
  13172. height: math.unit(8, "megameters")
  13173. },
  13174. ]
  13175. ))
  13176. characterMakers.push(() => makeCharacter(
  13177. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13178. {
  13179. front: {
  13180. height: math.unit(6, "feet"),
  13181. weight: math.unit(250, "lb"),
  13182. name: "Front",
  13183. image: {
  13184. source: "./media/characters/saudade/front.svg",
  13185. extra: 1172 / 1139,
  13186. bottom: 0.035
  13187. }
  13188. },
  13189. },
  13190. [
  13191. {
  13192. name: "Micro",
  13193. height: math.unit(3, "inches")
  13194. },
  13195. {
  13196. name: "Normal",
  13197. height: math.unit(6, "feet"),
  13198. default: true
  13199. },
  13200. {
  13201. name: "Macro",
  13202. height: math.unit(50, "feet")
  13203. },
  13204. {
  13205. name: "Megamacro",
  13206. height: math.unit(2800, "feet")
  13207. },
  13208. ]
  13209. ))
  13210. characterMakers.push(() => makeCharacter(
  13211. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13212. {
  13213. front: {
  13214. height: math.unit(5 + 4 / 12, "feet"),
  13215. weight: math.unit(100, "lb"),
  13216. name: "Front",
  13217. image: {
  13218. source: "./media/characters/keireer/front.svg",
  13219. extra: 716 / 666,
  13220. bottom: 0.05
  13221. }
  13222. },
  13223. },
  13224. [
  13225. {
  13226. name: "Normal",
  13227. height: math.unit(5 + 4 / 12, "feet"),
  13228. default: true
  13229. },
  13230. ]
  13231. ))
  13232. characterMakers.push(() => makeCharacter(
  13233. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13234. {
  13235. front: {
  13236. height: math.unit(6, "feet"),
  13237. weight: math.unit(90, "kg"),
  13238. name: "Front",
  13239. image: {
  13240. source: "./media/characters/mirja/front.svg",
  13241. extra: 1789 / 1683,
  13242. bottom: 0.05
  13243. }
  13244. },
  13245. frontDressed: {
  13246. height: math.unit(6, "feet"),
  13247. weight: math.unit(90, "lb"),
  13248. name: "Front (Dressed)",
  13249. image: {
  13250. source: "./media/characters/mirja/front-dressed.svg",
  13251. extra: 1789 / 1683,
  13252. bottom: 0.05
  13253. }
  13254. },
  13255. back: {
  13256. height: math.unit(6, "feet"),
  13257. weight: math.unit(90, "lb"),
  13258. name: "Back",
  13259. image: {
  13260. source: "./media/characters/mirja/back.svg",
  13261. extra: 953 / 917,
  13262. bottom: 0.017
  13263. }
  13264. },
  13265. },
  13266. [
  13267. {
  13268. name: "\"Incognito\"",
  13269. height: math.unit(3, "meters")
  13270. },
  13271. {
  13272. name: "Strolling Size",
  13273. height: math.unit(15, "km")
  13274. },
  13275. {
  13276. name: "Larger Strolling Size",
  13277. height: math.unit(400, "km")
  13278. },
  13279. {
  13280. name: "Preferred Size",
  13281. height: math.unit(5000, "km")
  13282. },
  13283. {
  13284. name: "True Size",
  13285. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13286. default: true
  13287. },
  13288. ]
  13289. ))
  13290. characterMakers.push(() => makeCharacter(
  13291. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13292. {
  13293. front: {
  13294. height: math.unit(15, "feet"),
  13295. weight: math.unit(880, "kg"),
  13296. name: "Front",
  13297. image: {
  13298. source: "./media/characters/nightraver/front.svg",
  13299. extra: 2444 / 2160,
  13300. bottom: 0.027
  13301. }
  13302. },
  13303. back: {
  13304. height: math.unit(15, "feet"),
  13305. weight: math.unit(880, "kg"),
  13306. name: "Back",
  13307. image: {
  13308. source: "./media/characters/nightraver/back.svg",
  13309. extra: 2309 / 2180,
  13310. bottom: 0.005
  13311. }
  13312. },
  13313. sole: {
  13314. height: math.unit(2.878, "feet"),
  13315. name: "Sole",
  13316. image: {
  13317. source: "./media/characters/nightraver/sole.svg"
  13318. }
  13319. },
  13320. foot: {
  13321. height: math.unit(2.285, "feet"),
  13322. name: "Foot",
  13323. image: {
  13324. source: "./media/characters/nightraver/foot.svg"
  13325. }
  13326. },
  13327. maw: {
  13328. height: math.unit(2.67, "feet"),
  13329. name: "Maw",
  13330. image: {
  13331. source: "./media/characters/nightraver/maw.svg"
  13332. }
  13333. },
  13334. },
  13335. [
  13336. {
  13337. name: "Micro",
  13338. height: math.unit(1, "cm")
  13339. },
  13340. {
  13341. name: "Normal",
  13342. height: math.unit(15, "feet"),
  13343. default: true
  13344. },
  13345. {
  13346. name: "Macro",
  13347. height: math.unit(300, "feet")
  13348. },
  13349. {
  13350. name: "Megamacro",
  13351. height: math.unit(300, "miles")
  13352. },
  13353. {
  13354. name: "Gigamacro",
  13355. height: math.unit(10000, "miles")
  13356. },
  13357. ]
  13358. ))
  13359. characterMakers.push(() => makeCharacter(
  13360. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13361. {
  13362. side: {
  13363. height: math.unit(2, "inches"),
  13364. weight: math.unit(5, "grams"),
  13365. name: "Side",
  13366. image: {
  13367. source: "./media/characters/arc/side.svg"
  13368. }
  13369. },
  13370. },
  13371. [
  13372. {
  13373. name: "Micro",
  13374. height: math.unit(2, "inches"),
  13375. default: true
  13376. },
  13377. ]
  13378. ))
  13379. characterMakers.push(() => makeCharacter(
  13380. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13381. {
  13382. front: {
  13383. height: math.unit(1.1938, "meters"),
  13384. weight: math.unit(54, "kg"),
  13385. name: "Front",
  13386. image: {
  13387. source: "./media/characters/nebula-shahar/front.svg",
  13388. extra: 1642 / 1436,
  13389. bottom: 0.06
  13390. }
  13391. },
  13392. },
  13393. [
  13394. {
  13395. name: "Megamicro",
  13396. height: math.unit(0.3, "mm")
  13397. },
  13398. {
  13399. name: "Micro",
  13400. height: math.unit(3, "cm")
  13401. },
  13402. {
  13403. name: "Normal",
  13404. height: math.unit(138, "cm"),
  13405. default: true
  13406. },
  13407. {
  13408. name: "Macro",
  13409. height: math.unit(30, "m")
  13410. },
  13411. ]
  13412. ))
  13413. characterMakers.push(() => makeCharacter(
  13414. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13415. {
  13416. front: {
  13417. height: math.unit(5.24, "feet"),
  13418. weight: math.unit(150, "lb"),
  13419. name: "Front",
  13420. image: {
  13421. source: "./media/characters/shayla/front.svg",
  13422. extra: 1512 / 1414,
  13423. bottom: 0.01
  13424. }
  13425. },
  13426. back: {
  13427. height: math.unit(5.24, "feet"),
  13428. weight: math.unit(150, "lb"),
  13429. name: "Back",
  13430. image: {
  13431. source: "./media/characters/shayla/back.svg",
  13432. extra: 1512 / 1414
  13433. }
  13434. },
  13435. hand: {
  13436. height: math.unit(0.7781496062992126, "feet"),
  13437. name: "Hand",
  13438. image: {
  13439. source: "./media/characters/shayla/hand.svg"
  13440. }
  13441. },
  13442. foot: {
  13443. height: math.unit(1.4206036745406823, "feet"),
  13444. name: "Foot",
  13445. image: {
  13446. source: "./media/characters/shayla/foot.svg"
  13447. }
  13448. },
  13449. },
  13450. [
  13451. {
  13452. name: "Micro",
  13453. height: math.unit(0.32, "feet")
  13454. },
  13455. {
  13456. name: "Normal",
  13457. height: math.unit(5.24, "feet"),
  13458. default: true
  13459. },
  13460. {
  13461. name: "Macro",
  13462. height: math.unit(492.12, "feet")
  13463. },
  13464. {
  13465. name: "Megamacro",
  13466. height: math.unit(186.41, "miles")
  13467. },
  13468. ]
  13469. ))
  13470. characterMakers.push(() => makeCharacter(
  13471. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13472. {
  13473. front: {
  13474. height: math.unit(2.2, "m"),
  13475. weight: math.unit(120, "kg"),
  13476. name: "Front",
  13477. image: {
  13478. source: "./media/characters/pia-jr/front.svg",
  13479. extra: 1000 / 970,
  13480. bottom: 0.035
  13481. }
  13482. },
  13483. hand: {
  13484. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13485. name: "Hand",
  13486. image: {
  13487. source: "./media/characters/pia-jr/hand.svg"
  13488. }
  13489. },
  13490. paw: {
  13491. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13492. name: "Paw",
  13493. image: {
  13494. source: "./media/characters/pia-jr/paw.svg"
  13495. }
  13496. },
  13497. },
  13498. [
  13499. {
  13500. name: "Micro",
  13501. height: math.unit(1.2, "cm")
  13502. },
  13503. {
  13504. name: "Normal",
  13505. height: math.unit(2.2, "m"),
  13506. default: true
  13507. },
  13508. {
  13509. name: "Macro",
  13510. height: math.unit(180, "m")
  13511. },
  13512. {
  13513. name: "Megamacro",
  13514. height: math.unit(420, "km")
  13515. },
  13516. ]
  13517. ))
  13518. characterMakers.push(() => makeCharacter(
  13519. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13520. {
  13521. front: {
  13522. height: math.unit(2, "m"),
  13523. weight: math.unit(115, "kg"),
  13524. name: "Front",
  13525. image: {
  13526. source: "./media/characters/pia-sr/front.svg",
  13527. extra: 760 / 730,
  13528. bottom: 0.015
  13529. }
  13530. },
  13531. back: {
  13532. height: math.unit(2, "m"),
  13533. weight: math.unit(115, "kg"),
  13534. name: "Back",
  13535. image: {
  13536. source: "./media/characters/pia-sr/back.svg",
  13537. extra: 760 / 730,
  13538. bottom: 0.01
  13539. }
  13540. },
  13541. hand: {
  13542. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13543. name: "Hand",
  13544. image: {
  13545. source: "./media/characters/pia-sr/hand.svg"
  13546. }
  13547. },
  13548. foot: {
  13549. height: math.unit(1.83, "feet"),
  13550. name: "Foot",
  13551. image: {
  13552. source: "./media/characters/pia-sr/foot.svg"
  13553. }
  13554. },
  13555. },
  13556. [
  13557. {
  13558. name: "Micro",
  13559. height: math.unit(88, "mm")
  13560. },
  13561. {
  13562. name: "Normal",
  13563. height: math.unit(2, "m"),
  13564. default: true
  13565. },
  13566. {
  13567. name: "Macro",
  13568. height: math.unit(200, "m")
  13569. },
  13570. {
  13571. name: "Megamacro",
  13572. height: math.unit(420, "km")
  13573. },
  13574. ]
  13575. ))
  13576. characterMakers.push(() => makeCharacter(
  13577. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13578. {
  13579. front: {
  13580. height: math.unit(8 + 2 / 12, "feet"),
  13581. weight: math.unit(300, "lb"),
  13582. name: "Front",
  13583. image: {
  13584. source: "./media/characters/kibibyte/front.svg",
  13585. extra: 2221 / 2098,
  13586. bottom: 0.04
  13587. }
  13588. },
  13589. },
  13590. [
  13591. {
  13592. name: "Normal",
  13593. height: math.unit(8 + 2 / 12, "feet"),
  13594. default: true
  13595. },
  13596. {
  13597. name: "Socialable Macro",
  13598. height: math.unit(50, "feet")
  13599. },
  13600. {
  13601. name: "Macro",
  13602. height: math.unit(300, "feet")
  13603. },
  13604. {
  13605. name: "Megamacro",
  13606. height: math.unit(500, "miles")
  13607. },
  13608. ]
  13609. ))
  13610. characterMakers.push(() => makeCharacter(
  13611. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13612. {
  13613. front: {
  13614. height: math.unit(6, "feet"),
  13615. weight: math.unit(150, "lb"),
  13616. name: "Front",
  13617. image: {
  13618. source: "./media/characters/felix/front.svg",
  13619. extra: 762 / 722,
  13620. bottom: 0.02
  13621. }
  13622. },
  13623. frontClothed: {
  13624. height: math.unit(6, "feet"),
  13625. weight: math.unit(150, "lb"),
  13626. name: "Front (Clothed)",
  13627. image: {
  13628. source: "./media/characters/felix/front-clothed.svg",
  13629. extra: 762 / 722,
  13630. bottom: 0.02
  13631. }
  13632. },
  13633. },
  13634. [
  13635. {
  13636. name: "Normal",
  13637. height: math.unit(6 + 8 / 12, "feet"),
  13638. default: true
  13639. },
  13640. {
  13641. name: "Macro",
  13642. height: math.unit(2600, "feet")
  13643. },
  13644. {
  13645. name: "Megamacro",
  13646. height: math.unit(450, "miles")
  13647. },
  13648. ]
  13649. ))
  13650. characterMakers.push(() => makeCharacter(
  13651. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  13652. {
  13653. front: {
  13654. height: math.unit(6 + 1 / 12, "feet"),
  13655. weight: math.unit(250, "lb"),
  13656. name: "Front",
  13657. image: {
  13658. source: "./media/characters/tobo/front.svg",
  13659. extra: 608 / 586,
  13660. bottom: 0.023
  13661. }
  13662. },
  13663. back: {
  13664. height: math.unit(6 + 1 / 12, "feet"),
  13665. weight: math.unit(250, "lb"),
  13666. name: "Back",
  13667. image: {
  13668. source: "./media/characters/tobo/back.svg",
  13669. extra: 608 / 586
  13670. }
  13671. },
  13672. },
  13673. [
  13674. {
  13675. name: "Nano",
  13676. height: math.unit(2, "nm")
  13677. },
  13678. {
  13679. name: "Megamicro",
  13680. height: math.unit(0.1, "mm")
  13681. },
  13682. {
  13683. name: "Micro",
  13684. height: math.unit(1, "inch"),
  13685. default: true
  13686. },
  13687. {
  13688. name: "Human-sized",
  13689. height: math.unit(6 + 1 / 12, "feet")
  13690. },
  13691. {
  13692. name: "Macro",
  13693. height: math.unit(250, "feet")
  13694. },
  13695. {
  13696. name: "Megamacro",
  13697. height: math.unit(75, "miles")
  13698. },
  13699. {
  13700. name: "Texas-sized",
  13701. height: math.unit(750, "miles")
  13702. },
  13703. {
  13704. name: "Teramacro",
  13705. height: math.unit(50000, "miles")
  13706. },
  13707. ]
  13708. ))
  13709. characterMakers.push(() => makeCharacter(
  13710. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  13711. {
  13712. front: {
  13713. height: math.unit(6, "feet"),
  13714. weight: math.unit(269, "lb"),
  13715. name: "Front",
  13716. image: {
  13717. source: "./media/characters/danny-kapowsky/front.svg",
  13718. extra: 766 / 736,
  13719. bottom: 0.044
  13720. }
  13721. },
  13722. back: {
  13723. height: math.unit(6, "feet"),
  13724. weight: math.unit(269, "lb"),
  13725. name: "Back",
  13726. image: {
  13727. source: "./media/characters/danny-kapowsky/back.svg",
  13728. extra: 797 / 760,
  13729. bottom: 0.025
  13730. }
  13731. },
  13732. },
  13733. [
  13734. {
  13735. name: "Macro",
  13736. height: math.unit(150, "feet"),
  13737. default: true
  13738. },
  13739. {
  13740. name: "Macro+",
  13741. height: math.unit(200, "feet")
  13742. },
  13743. {
  13744. name: "Macro++",
  13745. height: math.unit(300, "feet")
  13746. },
  13747. {
  13748. name: "Macro+++",
  13749. height: math.unit(400, "feet")
  13750. },
  13751. ]
  13752. ))
  13753. characterMakers.push(() => makeCharacter(
  13754. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  13755. {
  13756. side: {
  13757. height: math.unit(6, "feet"),
  13758. weight: math.unit(170, "lb"),
  13759. name: "Side",
  13760. image: {
  13761. source: "./media/characters/finn/side.svg",
  13762. extra: 1953 / 1807,
  13763. bottom: 0.057
  13764. }
  13765. },
  13766. },
  13767. [
  13768. {
  13769. name: "Megamacro",
  13770. height: math.unit(14445, "feet"),
  13771. default: true
  13772. },
  13773. ]
  13774. ))
  13775. characterMakers.push(() => makeCharacter(
  13776. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  13777. {
  13778. front: {
  13779. height: math.unit(5 + 6 / 12, "feet"),
  13780. weight: math.unit(125, "lb"),
  13781. name: "Front",
  13782. image: {
  13783. source: "./media/characters/roy/front.svg",
  13784. extra: 1,
  13785. bottom: 0.11
  13786. }
  13787. },
  13788. },
  13789. [
  13790. {
  13791. name: "Micro",
  13792. height: math.unit(3, "inches"),
  13793. default: true
  13794. },
  13795. {
  13796. name: "Normal",
  13797. height: math.unit(5 + 6 / 12, "feet")
  13798. },
  13799. {
  13800. name: "Lesser Macro",
  13801. height: math.unit(60, "feet")
  13802. },
  13803. {
  13804. name: "Greater Macro",
  13805. height: math.unit(120, "feet")
  13806. },
  13807. ]
  13808. ))
  13809. characterMakers.push(() => makeCharacter(
  13810. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  13811. {
  13812. front: {
  13813. height: math.unit(6, "feet"),
  13814. weight: math.unit(100, "lb"),
  13815. name: "Front",
  13816. image: {
  13817. source: "./media/characters/aevsivs/front.svg",
  13818. extra: 1,
  13819. bottom: 0.03
  13820. }
  13821. },
  13822. back: {
  13823. height: math.unit(6, "feet"),
  13824. weight: math.unit(100, "lb"),
  13825. name: "Back",
  13826. image: {
  13827. source: "./media/characters/aevsivs/back.svg"
  13828. }
  13829. },
  13830. },
  13831. [
  13832. {
  13833. name: "Micro",
  13834. height: math.unit(2, "inches"),
  13835. default: true
  13836. },
  13837. {
  13838. name: "Normal",
  13839. height: math.unit(5, "feet")
  13840. },
  13841. ]
  13842. ))
  13843. characterMakers.push(() => makeCharacter(
  13844. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  13845. {
  13846. front: {
  13847. height: math.unit(5 + 7 / 12, "feet"),
  13848. weight: math.unit(159, "lb"),
  13849. name: "Front",
  13850. image: {
  13851. source: "./media/characters/hildegard/front.svg",
  13852. extra: 289 / 269,
  13853. bottom: 7.63/297.8
  13854. }
  13855. },
  13856. back: {
  13857. height: math.unit(5 + 7 / 12, "feet"),
  13858. weight: math.unit(159, "lb"),
  13859. name: "Back",
  13860. image: {
  13861. source: "./media/characters/hildegard/back.svg",
  13862. extra: 280/260,
  13863. bottom: 2.3/282
  13864. }
  13865. },
  13866. },
  13867. [
  13868. {
  13869. name: "Normal",
  13870. height: math.unit(5 + 7 / 12, "feet"),
  13871. default: true
  13872. },
  13873. ]
  13874. ))
  13875. characterMakers.push(() => makeCharacter(
  13876. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  13877. {
  13878. bernard: {
  13879. height: math.unit(2 + 7 / 12, "feet"),
  13880. weight: math.unit(66, "lb"),
  13881. name: "Bernard",
  13882. rename: true,
  13883. image: {
  13884. source: "./media/characters/bernard-wilder/bernard.svg",
  13885. extra: 192 / 128,
  13886. bottom: 0.05
  13887. }
  13888. },
  13889. wilder: {
  13890. height: math.unit(5 + 8 / 12, "feet"),
  13891. weight: math.unit(143, "lb"),
  13892. name: "Wilder",
  13893. rename: true,
  13894. image: {
  13895. source: "./media/characters/bernard-wilder/wilder.svg",
  13896. extra: 361 / 312,
  13897. bottom: 0.02
  13898. }
  13899. },
  13900. },
  13901. [
  13902. {
  13903. name: "Normal",
  13904. height: math.unit(2 + 7 / 12, "feet"),
  13905. default: true
  13906. },
  13907. ]
  13908. ))
  13909. characterMakers.push(() => makeCharacter(
  13910. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  13911. {
  13912. anthro: {
  13913. height: math.unit(6 + 1 / 12, "feet"),
  13914. weight: math.unit(155, "lb"),
  13915. name: "Anthro",
  13916. image: {
  13917. source: "./media/characters/hearth/anthro.svg",
  13918. extra: 260 / 250,
  13919. bottom: 0.02
  13920. }
  13921. },
  13922. feral: {
  13923. height: math.unit(3.78, "feet"),
  13924. weight: math.unit(35, "kg"),
  13925. name: "Feral",
  13926. image: {
  13927. source: "./media/characters/hearth/feral.svg",
  13928. extra: 153 / 135,
  13929. bottom: 0.03
  13930. }
  13931. },
  13932. },
  13933. [
  13934. {
  13935. name: "Normal",
  13936. height: math.unit(6 + 1 / 12, "feet"),
  13937. default: true
  13938. },
  13939. ]
  13940. ))
  13941. characterMakers.push(() => makeCharacter(
  13942. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  13943. {
  13944. front: {
  13945. height: math.unit(6, "feet"),
  13946. weight: math.unit(182, "lb"),
  13947. name: "Front",
  13948. image: {
  13949. source: "./media/characters/ingrid/front.svg",
  13950. extra: 294 / 268,
  13951. bottom: 0.027
  13952. }
  13953. },
  13954. },
  13955. [
  13956. {
  13957. name: "Normal",
  13958. height: math.unit(6, "feet"),
  13959. default: true
  13960. },
  13961. ]
  13962. ))
  13963. characterMakers.push(() => makeCharacter(
  13964. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  13965. {
  13966. eevee: {
  13967. height: math.unit(2 + 10 / 12, "feet"),
  13968. weight: math.unit(86, "lb"),
  13969. name: "Malgam",
  13970. image: {
  13971. source: "./media/characters/malgam/eevee.svg",
  13972. extra: 218 / 180,
  13973. bottom: 0.2
  13974. }
  13975. },
  13976. sylveon: {
  13977. height: math.unit(4, "feet"),
  13978. weight: math.unit(101, "lb"),
  13979. name: "Future Malgam",
  13980. rename: true,
  13981. image: {
  13982. source: "./media/characters/malgam/sylveon.svg",
  13983. extra: 371 / 325,
  13984. bottom: 0.015
  13985. }
  13986. },
  13987. gigantamax: {
  13988. height: math.unit(50, "feet"),
  13989. name: "Gigantamax Malgam",
  13990. rename: true,
  13991. image: {
  13992. source: "./media/characters/malgam/gigantamax.svg"
  13993. }
  13994. },
  13995. },
  13996. [
  13997. {
  13998. name: "Normal",
  13999. height: math.unit(2 + 10 / 12, "feet"),
  14000. default: true
  14001. },
  14002. ]
  14003. ))
  14004. characterMakers.push(() => makeCharacter(
  14005. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14006. {
  14007. front: {
  14008. height: math.unit(5 + 11 / 12, "feet"),
  14009. weight: math.unit(188, "lb"),
  14010. name: "Front",
  14011. image: {
  14012. source: "./media/characters/fleur/front.svg",
  14013. extra: 309 / 283,
  14014. bottom: 0.007
  14015. }
  14016. },
  14017. },
  14018. [
  14019. {
  14020. name: "Normal",
  14021. height: math.unit(5 + 11 / 12, "feet"),
  14022. default: true
  14023. },
  14024. ]
  14025. ))
  14026. characterMakers.push(() => makeCharacter(
  14027. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14028. {
  14029. front: {
  14030. height: math.unit(5 + 4 / 12, "feet"),
  14031. weight: math.unit(122, "lb"),
  14032. name: "Front",
  14033. image: {
  14034. source: "./media/characters/jude/front.svg",
  14035. extra: 288 / 273,
  14036. bottom: 0.03
  14037. }
  14038. },
  14039. },
  14040. [
  14041. {
  14042. name: "Normal",
  14043. height: math.unit(5 + 4 / 12, "feet"),
  14044. default: true
  14045. },
  14046. ]
  14047. ))
  14048. characterMakers.push(() => makeCharacter(
  14049. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14050. {
  14051. front: {
  14052. height: math.unit(5 + 11 / 12, "feet"),
  14053. weight: math.unit(190, "lb"),
  14054. name: "Front",
  14055. image: {
  14056. source: "./media/characters/seara/front.svg",
  14057. extra: 1,
  14058. bottom: 0.05
  14059. }
  14060. },
  14061. },
  14062. [
  14063. {
  14064. name: "Normal",
  14065. height: math.unit(5 + 11 / 12, "feet"),
  14066. default: true
  14067. },
  14068. ]
  14069. ))
  14070. characterMakers.push(() => makeCharacter(
  14071. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14072. {
  14073. front: {
  14074. height: math.unit(16 + 5 / 12, "feet"),
  14075. weight: math.unit(524, "lb"),
  14076. name: "Front",
  14077. image: {
  14078. source: "./media/characters/caspian/front.svg",
  14079. extra: 1,
  14080. bottom: 0.04
  14081. }
  14082. },
  14083. },
  14084. [
  14085. {
  14086. name: "Normal",
  14087. height: math.unit(16 + 5 / 12, "feet"),
  14088. default: true
  14089. },
  14090. ]
  14091. ))
  14092. characterMakers.push(() => makeCharacter(
  14093. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14094. {
  14095. front: {
  14096. height: math.unit(5 + 7 / 12, "feet"),
  14097. weight: math.unit(170, "lb"),
  14098. name: "Front",
  14099. image: {
  14100. source: "./media/characters/mika/front.svg",
  14101. extra: 1,
  14102. bottom: 0.016
  14103. }
  14104. },
  14105. },
  14106. [
  14107. {
  14108. name: "Normal",
  14109. height: math.unit(5 + 7 / 12, "feet"),
  14110. default: true
  14111. },
  14112. ]
  14113. ))
  14114. characterMakers.push(() => makeCharacter(
  14115. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14116. {
  14117. front: {
  14118. height: math.unit(6 + 2 / 12, "feet"),
  14119. weight: math.unit(268, "lb"),
  14120. name: "Front",
  14121. image: {
  14122. source: "./media/characters/sol/front.svg",
  14123. extra: 247 / 231,
  14124. bottom: 0.05
  14125. }
  14126. },
  14127. },
  14128. [
  14129. {
  14130. name: "Normal",
  14131. height: math.unit(6 + 2 / 12, "feet"),
  14132. default: true
  14133. },
  14134. ]
  14135. ))
  14136. characterMakers.push(() => makeCharacter(
  14137. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14138. {
  14139. buizel: {
  14140. height: math.unit(2 + 5 / 12, "feet"),
  14141. weight: math.unit(87, "lb"),
  14142. name: "Buizel",
  14143. image: {
  14144. source: "./media/characters/umiko/buizel.svg",
  14145. extra: 172 / 157,
  14146. bottom: 0.01
  14147. }
  14148. },
  14149. floatzel: {
  14150. height: math.unit(5 + 9 / 12, "feet"),
  14151. weight: math.unit(250, "lb"),
  14152. name: "Floatzel",
  14153. image: {
  14154. source: "./media/characters/umiko/floatzel.svg",
  14155. extra: 262 / 248
  14156. }
  14157. },
  14158. },
  14159. [
  14160. {
  14161. name: "Normal",
  14162. height: math.unit(2 + 5 / 12, "feet"),
  14163. default: true
  14164. },
  14165. ]
  14166. ))
  14167. characterMakers.push(() => makeCharacter(
  14168. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14169. {
  14170. front: {
  14171. height: math.unit(6 + 2 / 12, "feet"),
  14172. weight: math.unit(146, "lb"),
  14173. name: "Front",
  14174. image: {
  14175. source: "./media/characters/iliac/front.svg",
  14176. extra: 389 / 365,
  14177. bottom: 0.035
  14178. }
  14179. },
  14180. },
  14181. [
  14182. {
  14183. name: "Normal",
  14184. height: math.unit(6 + 2 / 12, "feet"),
  14185. default: true
  14186. },
  14187. ]
  14188. ))
  14189. characterMakers.push(() => makeCharacter(
  14190. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14191. {
  14192. front: {
  14193. height: math.unit(6, "feet"),
  14194. weight: math.unit(170, "lb"),
  14195. name: "Front",
  14196. image: {
  14197. source: "./media/characters/topaz/front.svg",
  14198. extra: 317 / 303,
  14199. bottom: 0.055
  14200. }
  14201. },
  14202. },
  14203. [
  14204. {
  14205. name: "Normal",
  14206. height: math.unit(6, "feet"),
  14207. default: true
  14208. },
  14209. ]
  14210. ))
  14211. characterMakers.push(() => makeCharacter(
  14212. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14213. {
  14214. front: {
  14215. height: math.unit(5 + 11 / 12, "feet"),
  14216. weight: math.unit(144, "lb"),
  14217. name: "Front",
  14218. image: {
  14219. source: "./media/characters/gabriel/front.svg",
  14220. extra: 285 / 262,
  14221. bottom: 0.004
  14222. }
  14223. },
  14224. },
  14225. [
  14226. {
  14227. name: "Normal",
  14228. height: math.unit(5 + 11 / 12, "feet"),
  14229. default: true
  14230. },
  14231. ]
  14232. ))
  14233. characterMakers.push(() => makeCharacter(
  14234. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14235. {
  14236. side: {
  14237. height: math.unit(6 + 5 / 12, "feet"),
  14238. weight: math.unit(300, "lb"),
  14239. name: "Side",
  14240. image: {
  14241. source: "./media/characters/tempest-suicune/side.svg",
  14242. extra: 195 / 154,
  14243. bottom: 0.04
  14244. }
  14245. },
  14246. },
  14247. [
  14248. {
  14249. name: "Normal",
  14250. height: math.unit(6 + 5 / 12, "feet"),
  14251. default: true
  14252. },
  14253. ]
  14254. ))
  14255. characterMakers.push(() => makeCharacter(
  14256. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14257. {
  14258. front: {
  14259. height: math.unit(7 + 2 / 12, "feet"),
  14260. weight: math.unit(322, "lb"),
  14261. name: "Front",
  14262. image: {
  14263. source: "./media/characters/vulcan/front.svg",
  14264. extra: 154 / 147,
  14265. bottom: 0.04
  14266. }
  14267. },
  14268. },
  14269. [
  14270. {
  14271. name: "Normal",
  14272. height: math.unit(7 + 2 / 12, "feet"),
  14273. default: true
  14274. },
  14275. ]
  14276. ))
  14277. characterMakers.push(() => makeCharacter(
  14278. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14279. {
  14280. front: {
  14281. height: math.unit(5 + 10 / 12, "feet"),
  14282. weight: math.unit(264, "lb"),
  14283. name: "Front",
  14284. image: {
  14285. source: "./media/characters/gault/front.svg",
  14286. extra: 161 / 140,
  14287. bottom: 0.028
  14288. }
  14289. },
  14290. },
  14291. [
  14292. {
  14293. name: "Normal",
  14294. height: math.unit(5 + 10 / 12, "feet"),
  14295. default: true
  14296. },
  14297. ]
  14298. ))
  14299. characterMakers.push(() => makeCharacter(
  14300. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14301. {
  14302. front: {
  14303. height: math.unit(6, "feet"),
  14304. weight: math.unit(150, "lb"),
  14305. name: "Front",
  14306. image: {
  14307. source: "./media/characters/shard/front.svg",
  14308. extra: 273 / 238,
  14309. bottom: 0.02
  14310. }
  14311. },
  14312. },
  14313. [
  14314. {
  14315. name: "Normal",
  14316. height: math.unit(3 + 6 / 12, "feet"),
  14317. default: true
  14318. },
  14319. ]
  14320. ))
  14321. characterMakers.push(() => makeCharacter(
  14322. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14323. {
  14324. front: {
  14325. height: math.unit(5 + 11 / 12, "feet"),
  14326. weight: math.unit(146, "lb"),
  14327. name: "Front",
  14328. image: {
  14329. source: "./media/characters/ashe/front.svg",
  14330. extra: 400 / 373,
  14331. bottom: 0.01
  14332. }
  14333. },
  14334. },
  14335. [
  14336. {
  14337. name: "Normal",
  14338. height: math.unit(5 + 11 / 12, "feet"),
  14339. default: true
  14340. },
  14341. ]
  14342. ))
  14343. characterMakers.push(() => makeCharacter(
  14344. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14345. {
  14346. front: {
  14347. height: math.unit(5 + 5 / 12, "feet"),
  14348. weight: math.unit(135, "lb"),
  14349. name: "Front",
  14350. image: {
  14351. source: "./media/characters/beatrix/front.svg",
  14352. extra: 392 / 379,
  14353. bottom: 0.01
  14354. }
  14355. },
  14356. },
  14357. [
  14358. {
  14359. name: "Normal",
  14360. height: math.unit(6, "feet"),
  14361. default: true
  14362. },
  14363. ]
  14364. ))
  14365. characterMakers.push(() => makeCharacter(
  14366. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14367. {
  14368. front: {
  14369. height: math.unit(6, "feet"),
  14370. weight: math.unit(150, "lb"),
  14371. name: "Front",
  14372. image: {
  14373. source: "./media/characters/ignatius/front.svg",
  14374. extra: 245 / 222,
  14375. bottom: 0.01
  14376. }
  14377. },
  14378. },
  14379. [
  14380. {
  14381. name: "Normal",
  14382. height: math.unit(5 + 5 / 12, "feet"),
  14383. default: true
  14384. },
  14385. ]
  14386. ))
  14387. characterMakers.push(() => makeCharacter(
  14388. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14389. {
  14390. front: {
  14391. height: math.unit(6 + 2 / 12, "feet"),
  14392. weight: math.unit(138, "lb"),
  14393. name: "Front",
  14394. image: {
  14395. source: "./media/characters/mei-li/front.svg",
  14396. extra: 237 / 229,
  14397. bottom: 0.03
  14398. }
  14399. },
  14400. },
  14401. [
  14402. {
  14403. name: "Normal",
  14404. height: math.unit(6 + 2 / 12, "feet"),
  14405. default: true
  14406. },
  14407. ]
  14408. ))
  14409. characterMakers.push(() => makeCharacter(
  14410. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14411. {
  14412. front: {
  14413. height: math.unit(2 + 4 / 12, "feet"),
  14414. weight: math.unit(62, "lb"),
  14415. name: "Front",
  14416. image: {
  14417. source: "./media/characters/puru/front.svg",
  14418. extra: 206 / 149,
  14419. bottom: 0.06
  14420. }
  14421. },
  14422. },
  14423. [
  14424. {
  14425. name: "Normal",
  14426. height: math.unit(2 + 4 / 12, "feet"),
  14427. default: true
  14428. },
  14429. ]
  14430. ))
  14431. characterMakers.push(() => makeCharacter(
  14432. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14433. {
  14434. taur: {
  14435. height: math.unit(11, "feet"),
  14436. weight: math.unit(500, "lb"),
  14437. name: "Taur",
  14438. image: {
  14439. source: "./media/characters/kee/taur.svg",
  14440. extra: 1,
  14441. bottom: 0.04
  14442. }
  14443. },
  14444. },
  14445. [
  14446. {
  14447. name: "Normal",
  14448. height: math.unit(11, "feet"),
  14449. default: true
  14450. },
  14451. ]
  14452. ))
  14453. characterMakers.push(() => makeCharacter(
  14454. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14455. {
  14456. anthro: {
  14457. height: math.unit(7, "feet"),
  14458. weight: math.unit(190, "lb"),
  14459. name: "Anthro",
  14460. image: {
  14461. source: "./media/characters/cobalt-dracha/anthro.svg",
  14462. extra: 231 / 225,
  14463. bottom: 0.04
  14464. }
  14465. },
  14466. feral: {
  14467. height: math.unit(9 + 7 / 12, "feet"),
  14468. weight: math.unit(294, "lb"),
  14469. name: "Feral",
  14470. image: {
  14471. source: "./media/characters/cobalt-dracha/feral.svg",
  14472. extra: 692 / 633,
  14473. bottom: 0.05
  14474. }
  14475. },
  14476. },
  14477. [
  14478. {
  14479. name: "Normal",
  14480. height: math.unit(7, "feet"),
  14481. default: true
  14482. },
  14483. ]
  14484. ))
  14485. characterMakers.push(() => makeCharacter(
  14486. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14487. {
  14488. fallen: {
  14489. height: math.unit(11 + 8 / 12, "feet"),
  14490. weight: math.unit(485, "lb"),
  14491. name: "Java (Fallen)",
  14492. rename: true,
  14493. image: {
  14494. source: "./media/characters/java/fallen.svg",
  14495. extra: 226 / 208,
  14496. bottom: 0.005
  14497. }
  14498. },
  14499. godkin: {
  14500. height: math.unit(10 + 6 / 12, "feet"),
  14501. weight: math.unit(328, "lb"),
  14502. name: "Java (Godkin)",
  14503. rename: true,
  14504. image: {
  14505. source: "./media/characters/java/godkin.svg",
  14506. extra: 270 / 262,
  14507. bottom: 0.02
  14508. }
  14509. },
  14510. },
  14511. [
  14512. {
  14513. name: "Normal",
  14514. height: math.unit(11 + 8 / 12, "feet"),
  14515. default: true
  14516. },
  14517. ]
  14518. ))
  14519. characterMakers.push(() => makeCharacter(
  14520. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14521. {
  14522. front: {
  14523. height: math.unit(7 + 8 / 12, "feet"),
  14524. weight: math.unit(320, "lb"),
  14525. name: "Front",
  14526. image: {
  14527. source: "./media/characters/skoll/front.svg",
  14528. extra: 232 / 220,
  14529. bottom: 0.02
  14530. }
  14531. },
  14532. },
  14533. [
  14534. {
  14535. name: "Normal",
  14536. height: math.unit(7 + 8 / 12, "feet"),
  14537. default: true
  14538. },
  14539. ]
  14540. ))
  14541. characterMakers.push(() => makeCharacter(
  14542. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14543. {
  14544. front: {
  14545. height: math.unit(5 + 9 / 12, "feet"),
  14546. weight: math.unit(170, "lb"),
  14547. name: "Front",
  14548. image: {
  14549. source: "./media/characters/purna/front.svg",
  14550. extra: 239 / 229,
  14551. bottom: 0.01
  14552. }
  14553. },
  14554. },
  14555. [
  14556. {
  14557. name: "Normal",
  14558. height: math.unit(5 + 9 / 12, "feet"),
  14559. default: true
  14560. },
  14561. ]
  14562. ))
  14563. characterMakers.push(() => makeCharacter(
  14564. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14565. {
  14566. front: {
  14567. height: math.unit(5 + 9 / 12, "feet"),
  14568. weight: math.unit(142, "lb"),
  14569. name: "Front",
  14570. image: {
  14571. source: "./media/characters/kuva/front.svg",
  14572. extra: 281 / 271,
  14573. bottom: 0.006
  14574. }
  14575. },
  14576. },
  14577. [
  14578. {
  14579. name: "Normal",
  14580. height: math.unit(5 + 9 / 12, "feet"),
  14581. default: true
  14582. },
  14583. ]
  14584. ))
  14585. characterMakers.push(() => makeCharacter(
  14586. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14587. {
  14588. anthro: {
  14589. height: math.unit(9 + 2 / 12, "feet"),
  14590. weight: math.unit(270, "lb"),
  14591. name: "Anthro",
  14592. image: {
  14593. source: "./media/characters/embra/anthro.svg",
  14594. extra: 200 / 187,
  14595. bottom: 0.02
  14596. }
  14597. },
  14598. feral: {
  14599. height: math.unit(18 + 8 / 12, "feet"),
  14600. weight: math.unit(576, "lb"),
  14601. name: "Feral",
  14602. image: {
  14603. source: "./media/characters/embra/feral.svg",
  14604. extra: 152 / 137,
  14605. bottom: 0.037
  14606. }
  14607. },
  14608. },
  14609. [
  14610. {
  14611. name: "Normal",
  14612. height: math.unit(9 + 2 / 12, "feet"),
  14613. default: true
  14614. },
  14615. ]
  14616. ))
  14617. characterMakers.push(() => makeCharacter(
  14618. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14619. {
  14620. anthro: {
  14621. height: math.unit(10 + 9 / 12, "feet"),
  14622. weight: math.unit(224, "lb"),
  14623. name: "Anthro",
  14624. image: {
  14625. source: "./media/characters/grottos/anthro.svg",
  14626. extra: 350 / 332,
  14627. bottom: 0.045
  14628. }
  14629. },
  14630. feral: {
  14631. height: math.unit(20 + 7 / 12, "feet"),
  14632. weight: math.unit(629, "lb"),
  14633. name: "Feral",
  14634. image: {
  14635. source: "./media/characters/grottos/feral.svg",
  14636. extra: 207 / 190,
  14637. bottom: 0.05
  14638. }
  14639. },
  14640. },
  14641. [
  14642. {
  14643. name: "Normal",
  14644. height: math.unit(10 + 9 / 12, "feet"),
  14645. default: true
  14646. },
  14647. ]
  14648. ))
  14649. characterMakers.push(() => makeCharacter(
  14650. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  14651. {
  14652. anthro: {
  14653. height: math.unit(9 + 6 / 12, "feet"),
  14654. weight: math.unit(298, "lb"),
  14655. name: "Anthro",
  14656. image: {
  14657. source: "./media/characters/frifna/anthro.svg",
  14658. extra: 282 / 269,
  14659. bottom: 0.015
  14660. }
  14661. },
  14662. feral: {
  14663. height: math.unit(16 + 2 / 12, "feet"),
  14664. weight: math.unit(624, "lb"),
  14665. name: "Feral",
  14666. image: {
  14667. source: "./media/characters/frifna/feral.svg"
  14668. }
  14669. },
  14670. },
  14671. [
  14672. {
  14673. name: "Normal",
  14674. height: math.unit(9 + 6 / 12, "feet"),
  14675. default: true
  14676. },
  14677. ]
  14678. ))
  14679. characterMakers.push(() => makeCharacter(
  14680. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  14681. {
  14682. front: {
  14683. height: math.unit(6 + 2 / 12, "feet"),
  14684. weight: math.unit(168, "lb"),
  14685. name: "Front",
  14686. image: {
  14687. source: "./media/characters/elise/front.svg",
  14688. extra: 276 / 271
  14689. }
  14690. },
  14691. },
  14692. [
  14693. {
  14694. name: "Normal",
  14695. height: math.unit(6 + 2 / 12, "feet"),
  14696. default: true
  14697. },
  14698. ]
  14699. ))
  14700. characterMakers.push(() => makeCharacter(
  14701. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  14702. {
  14703. front: {
  14704. height: math.unit(5 + 10 / 12, "feet"),
  14705. weight: math.unit(210, "lb"),
  14706. name: "Front",
  14707. image: {
  14708. source: "./media/characters/glade/front.svg",
  14709. extra: 258 / 247,
  14710. bottom: 0.008
  14711. }
  14712. },
  14713. },
  14714. [
  14715. {
  14716. name: "Normal",
  14717. height: math.unit(5 + 10 / 12, "feet"),
  14718. default: true
  14719. },
  14720. ]
  14721. ))
  14722. characterMakers.push(() => makeCharacter(
  14723. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  14724. {
  14725. front: {
  14726. height: math.unit(5 + 10 / 12, "feet"),
  14727. weight: math.unit(129, "lb"),
  14728. name: "Front",
  14729. image: {
  14730. source: "./media/characters/rina/front.svg",
  14731. extra: 266 / 255,
  14732. bottom: 0.005
  14733. }
  14734. },
  14735. },
  14736. [
  14737. {
  14738. name: "Normal",
  14739. height: math.unit(5 + 10 / 12, "feet"),
  14740. default: true
  14741. },
  14742. ]
  14743. ))
  14744. characterMakers.push(() => makeCharacter(
  14745. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  14746. {
  14747. front: {
  14748. height: math.unit(6 + 1 / 12, "feet"),
  14749. weight: math.unit(192, "lb"),
  14750. name: "Front",
  14751. image: {
  14752. source: "./media/characters/veronica/front.svg",
  14753. extra: 319 / 309,
  14754. bottom: 0.005
  14755. }
  14756. },
  14757. },
  14758. [
  14759. {
  14760. name: "Normal",
  14761. height: math.unit(6 + 1 / 12, "feet"),
  14762. default: true
  14763. },
  14764. ]
  14765. ))
  14766. characterMakers.push(() => makeCharacter(
  14767. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  14768. {
  14769. front: {
  14770. height: math.unit(9 + 3 / 12, "feet"),
  14771. weight: math.unit(1100, "lb"),
  14772. name: "Front",
  14773. image: {
  14774. source: "./media/characters/braxton/front.svg",
  14775. extra: 1057 / 984,
  14776. bottom: 0.05
  14777. }
  14778. },
  14779. },
  14780. [
  14781. {
  14782. name: "Normal",
  14783. height: math.unit(9 + 3 / 12, "feet")
  14784. },
  14785. {
  14786. name: "Giant",
  14787. height: math.unit(300, "feet"),
  14788. default: true
  14789. },
  14790. {
  14791. name: "Macro",
  14792. height: math.unit(700, "feet")
  14793. },
  14794. {
  14795. name: "Megamacro",
  14796. height: math.unit(6000, "feet")
  14797. },
  14798. ]
  14799. ))
  14800. characterMakers.push(() => makeCharacter(
  14801. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  14802. {
  14803. front: {
  14804. height: math.unit(6 + 7 / 12, "feet"),
  14805. weight: math.unit(150, "lb"),
  14806. name: "Front",
  14807. image: {
  14808. source: "./media/characters/blue-feyonics/front.svg",
  14809. extra: 1403 / 1306,
  14810. bottom: 0.047
  14811. }
  14812. },
  14813. },
  14814. [
  14815. {
  14816. name: "Normal",
  14817. height: math.unit(6 + 7 / 12, "feet"),
  14818. default: true
  14819. },
  14820. ]
  14821. ))
  14822. characterMakers.push(() => makeCharacter(
  14823. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  14824. {
  14825. front: {
  14826. height: math.unit(1.8, "meters"),
  14827. weight: math.unit(60, "kg"),
  14828. name: "Front",
  14829. image: {
  14830. source: "./media/characters/maxwell/front.svg",
  14831. extra: 2060 / 1873
  14832. }
  14833. },
  14834. },
  14835. [
  14836. {
  14837. name: "Micro",
  14838. height: math.unit(1, "mm")
  14839. },
  14840. {
  14841. name: "Normal",
  14842. height: math.unit(1.8, "meter"),
  14843. default: true
  14844. },
  14845. {
  14846. name: "Macro",
  14847. height: math.unit(30, "meters")
  14848. },
  14849. {
  14850. name: "Megamacro",
  14851. height: math.unit(10, "km")
  14852. },
  14853. ]
  14854. ))
  14855. characterMakers.push(() => makeCharacter(
  14856. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  14857. {
  14858. front: {
  14859. height: math.unit(6, "feet"),
  14860. weight: math.unit(150, "lb"),
  14861. name: "Front",
  14862. image: {
  14863. source: "./media/characters/jack/front.svg",
  14864. extra: 1754 / 1640,
  14865. bottom: 0.01
  14866. }
  14867. },
  14868. },
  14869. [
  14870. {
  14871. name: "Normal",
  14872. height: math.unit(80000, "feet"),
  14873. default: true
  14874. },
  14875. {
  14876. name: "Max size",
  14877. height: math.unit(10, "lightyears")
  14878. },
  14879. ]
  14880. ))
  14881. characterMakers.push(() => makeCharacter(
  14882. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  14883. {
  14884. upright: {
  14885. height: math.unit(7, "feet"),
  14886. weight: math.unit(170, "lb"),
  14887. name: "Upright",
  14888. image: {
  14889. source: "./media/characters/cafat/upright.svg",
  14890. bottom: 0.01
  14891. }
  14892. },
  14893. uprightFull: {
  14894. height: math.unit(7, "feet"),
  14895. weight: math.unit(170, "lb"),
  14896. name: "Upright (Full)",
  14897. image: {
  14898. source: "./media/characters/cafat/upright-full.svg",
  14899. bottom: 0.01
  14900. }
  14901. },
  14902. side: {
  14903. height: math.unit(5, "feet"),
  14904. weight: math.unit(150, "lb"),
  14905. name: "Side",
  14906. image: {
  14907. source: "./media/characters/cafat/side.svg"
  14908. }
  14909. },
  14910. },
  14911. [
  14912. {
  14913. name: "Small",
  14914. height: math.unit(7, "feet"),
  14915. default: true
  14916. },
  14917. {
  14918. name: "Large",
  14919. height: math.unit(15.5, "feet")
  14920. },
  14921. ]
  14922. ))
  14923. characterMakers.push(() => makeCharacter(
  14924. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  14925. {
  14926. front: {
  14927. height: math.unit(6, "feet"),
  14928. weight: math.unit(150, "lb"),
  14929. name: "Front",
  14930. image: {
  14931. source: "./media/characters/verin-raharra/front.svg",
  14932. extra: 5019 / 4835,
  14933. bottom: 0.023
  14934. }
  14935. },
  14936. },
  14937. [
  14938. {
  14939. name: "Normal",
  14940. height: math.unit(7 + 5 / 12, "feet"),
  14941. default: true
  14942. },
  14943. {
  14944. name: "Upsized",
  14945. height: math.unit(20, "feet")
  14946. },
  14947. ]
  14948. ))
  14949. characterMakers.push(() => makeCharacter(
  14950. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  14951. {
  14952. front: {
  14953. height: math.unit(7, "feet"),
  14954. weight: math.unit(230, "lb"),
  14955. name: "Front",
  14956. image: {
  14957. source: "./media/characters/nakata/front.svg",
  14958. extra: 1.005,
  14959. bottom: 0.01
  14960. }
  14961. },
  14962. },
  14963. [
  14964. {
  14965. name: "Normal",
  14966. height: math.unit(7, "feet"),
  14967. default: true
  14968. },
  14969. {
  14970. name: "Big",
  14971. height: math.unit(14, "feet")
  14972. },
  14973. {
  14974. name: "Macro",
  14975. height: math.unit(400, "feet")
  14976. },
  14977. ]
  14978. ))
  14979. characterMakers.push(() => makeCharacter(
  14980. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  14981. {
  14982. front: {
  14983. height: math.unit(4.91, "feet"),
  14984. weight: math.unit(100, "lb"),
  14985. name: "Front",
  14986. image: {
  14987. source: "./media/characters/lily/front.svg",
  14988. extra: 1585 / 1415,
  14989. bottom: 0.02
  14990. }
  14991. },
  14992. },
  14993. [
  14994. {
  14995. name: "Normal",
  14996. height: math.unit(4.91, "feet"),
  14997. default: true
  14998. },
  14999. ]
  15000. ))
  15001. characterMakers.push(() => makeCharacter(
  15002. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15003. {
  15004. laying: {
  15005. height: math.unit(4 + 4 / 12, "feet"),
  15006. weight: math.unit(600, "lb"),
  15007. name: "Laying",
  15008. image: {
  15009. source: "./media/characters/sheila/laying.svg",
  15010. extra: 1333 / 1265,
  15011. bottom: 0.16
  15012. }
  15013. },
  15014. },
  15015. [
  15016. {
  15017. name: "Normal",
  15018. height: math.unit(4 + 4 / 12, "feet"),
  15019. default: true
  15020. },
  15021. ]
  15022. ))
  15023. characterMakers.push(() => makeCharacter(
  15024. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15025. {
  15026. front: {
  15027. height: math.unit(6, "feet"),
  15028. weight: math.unit(190, "lb"),
  15029. name: "Front",
  15030. image: {
  15031. source: "./media/characters/sax/front.svg",
  15032. extra: 1187 / 973,
  15033. bottom: 0.042
  15034. }
  15035. },
  15036. },
  15037. [
  15038. {
  15039. name: "Micro",
  15040. height: math.unit(4, "inches"),
  15041. default: true
  15042. },
  15043. ]
  15044. ))
  15045. characterMakers.push(() => makeCharacter(
  15046. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15047. {
  15048. front: {
  15049. height: math.unit(6, "feet"),
  15050. weight: math.unit(150, "lb"),
  15051. name: "Front",
  15052. image: {
  15053. source: "./media/characters/pandora/front.svg",
  15054. extra: 2720 / 2556,
  15055. bottom: 0.015
  15056. }
  15057. },
  15058. back: {
  15059. height: math.unit(6, "feet"),
  15060. weight: math.unit(150, "lb"),
  15061. name: "Back",
  15062. image: {
  15063. source: "./media/characters/pandora/back.svg",
  15064. extra: 2720 / 2556,
  15065. bottom: 0.01
  15066. }
  15067. },
  15068. beans: {
  15069. height: math.unit(6 / 8, "feet"),
  15070. name: "Beans",
  15071. image: {
  15072. source: "./media/characters/pandora/beans.svg"
  15073. }
  15074. },
  15075. skirt: {
  15076. height: math.unit(6, "feet"),
  15077. weight: math.unit(150, "lb"),
  15078. name: "Skirt",
  15079. image: {
  15080. source: "./media/characters/pandora/skirt.svg",
  15081. extra: 1622 / 1525,
  15082. bottom: 0.015
  15083. }
  15084. },
  15085. hoodie: {
  15086. height: math.unit(6, "feet"),
  15087. weight: math.unit(150, "lb"),
  15088. name: "Hoodie",
  15089. image: {
  15090. source: "./media/characters/pandora/hoodie.svg",
  15091. extra: 1622 / 1525,
  15092. bottom: 0.015
  15093. }
  15094. },
  15095. casual: {
  15096. height: math.unit(6, "feet"),
  15097. weight: math.unit(150, "lb"),
  15098. name: "Casual",
  15099. image: {
  15100. source: "./media/characters/pandora/casual.svg",
  15101. extra: 1622 / 1525,
  15102. bottom: 0.015
  15103. }
  15104. },
  15105. },
  15106. [
  15107. {
  15108. name: "Normal",
  15109. height: math.unit(6, "feet")
  15110. },
  15111. {
  15112. name: "Big Steppy",
  15113. height: math.unit(1, "km"),
  15114. default: true
  15115. },
  15116. ]
  15117. ))
  15118. characterMakers.push(() => makeCharacter(
  15119. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15120. {
  15121. side: {
  15122. height: math.unit(10, "feet"),
  15123. weight: math.unit(800, "kg"),
  15124. name: "Side",
  15125. image: {
  15126. source: "./media/characters/venio-darcony/side.svg",
  15127. extra: 1373 / 1003,
  15128. bottom: 0.037
  15129. }
  15130. },
  15131. front: {
  15132. height: math.unit(19, "feet"),
  15133. weight: math.unit(800, "kg"),
  15134. name: "Front",
  15135. image: {
  15136. source: "./media/characters/venio-darcony/front.svg"
  15137. }
  15138. },
  15139. back: {
  15140. height: math.unit(19, "feet"),
  15141. weight: math.unit(800, "kg"),
  15142. name: "Back",
  15143. image: {
  15144. source: "./media/characters/venio-darcony/back.svg"
  15145. }
  15146. },
  15147. sideNsfw: {
  15148. height: math.unit(10, "feet"),
  15149. weight: math.unit(800, "kg"),
  15150. name: "Side (NSFW)",
  15151. image: {
  15152. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15153. extra: 1373 / 1003,
  15154. bottom: 0.037
  15155. }
  15156. },
  15157. frontNsfw: {
  15158. height: math.unit(19, "feet"),
  15159. weight: math.unit(800, "kg"),
  15160. name: "Front (NSFW)",
  15161. image: {
  15162. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15163. }
  15164. },
  15165. backNsfw: {
  15166. height: math.unit(19, "feet"),
  15167. weight: math.unit(800, "kg"),
  15168. name: "Back (NSFW)",
  15169. image: {
  15170. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15171. }
  15172. },
  15173. sideArmored: {
  15174. height: math.unit(10, "feet"),
  15175. weight: math.unit(800, "kg"),
  15176. name: "Side (Armored)",
  15177. image: {
  15178. source: "./media/characters/venio-darcony/side-armored.svg",
  15179. extra: 1373 / 1003,
  15180. bottom: 0.037
  15181. }
  15182. },
  15183. frontArmored: {
  15184. height: math.unit(19, "feet"),
  15185. weight: math.unit(900, "kg"),
  15186. name: "Front (Armored)",
  15187. image: {
  15188. source: "./media/characters/venio-darcony/front-armored.svg"
  15189. }
  15190. },
  15191. backArmored: {
  15192. height: math.unit(19, "feet"),
  15193. weight: math.unit(900, "kg"),
  15194. name: "Back (Armored)",
  15195. image: {
  15196. source: "./media/characters/venio-darcony/back-armored.svg"
  15197. }
  15198. },
  15199. sword: {
  15200. height: math.unit(10, "feet"),
  15201. weight: math.unit(50, "lb"),
  15202. name: "Sword",
  15203. image: {
  15204. source: "./media/characters/venio-darcony/sword.svg"
  15205. }
  15206. },
  15207. },
  15208. [
  15209. {
  15210. name: "Normal",
  15211. height: math.unit(10, "feet")
  15212. },
  15213. {
  15214. name: "Macro",
  15215. height: math.unit(130, "feet"),
  15216. default: true
  15217. },
  15218. {
  15219. name: "Macro+",
  15220. height: math.unit(240, "feet")
  15221. },
  15222. ]
  15223. ))
  15224. characterMakers.push(() => makeCharacter(
  15225. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15226. {
  15227. front: {
  15228. height: math.unit(6, "feet"),
  15229. weight: math.unit(150, "lb"),
  15230. name: "Front",
  15231. image: {
  15232. source: "./media/characters/veski/front.svg",
  15233. extra: 1299 / 1225,
  15234. bottom: 0.04
  15235. }
  15236. },
  15237. back: {
  15238. height: math.unit(6, "feet"),
  15239. weight: math.unit(150, "lb"),
  15240. name: "Back",
  15241. image: {
  15242. source: "./media/characters/veski/back.svg",
  15243. extra: 1299 / 1225,
  15244. bottom: 0.008
  15245. }
  15246. },
  15247. maw: {
  15248. height: math.unit(1.5 * 1.21, "feet"),
  15249. name: "Maw",
  15250. image: {
  15251. source: "./media/characters/veski/maw.svg"
  15252. }
  15253. },
  15254. },
  15255. [
  15256. {
  15257. name: "Macro",
  15258. height: math.unit(2, "km"),
  15259. default: true
  15260. },
  15261. ]
  15262. ))
  15263. characterMakers.push(() => makeCharacter(
  15264. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15265. {
  15266. front: {
  15267. height: math.unit(5 + 7 / 12, "feet"),
  15268. name: "Front",
  15269. image: {
  15270. source: "./media/characters/isabelle/front.svg",
  15271. extra: 2130 / 1976,
  15272. bottom: 0.05
  15273. }
  15274. },
  15275. },
  15276. [
  15277. {
  15278. name: "Supermicro",
  15279. height: math.unit(10, "micrometers")
  15280. },
  15281. {
  15282. name: "Micro",
  15283. height: math.unit(1, "inch")
  15284. },
  15285. {
  15286. name: "Tiny",
  15287. height: math.unit(5, "inches")
  15288. },
  15289. {
  15290. name: "Standard",
  15291. height: math.unit(5 + 7 / 12, "inches")
  15292. },
  15293. {
  15294. name: "Macro",
  15295. height: math.unit(80, "meters"),
  15296. default: true
  15297. },
  15298. {
  15299. name: "Megamacro",
  15300. height: math.unit(250, "meters")
  15301. },
  15302. {
  15303. name: "Gigamacro",
  15304. height: math.unit(5, "km")
  15305. },
  15306. {
  15307. name: "Cosmic",
  15308. height: math.unit(2.5e6, "miles")
  15309. },
  15310. ]
  15311. ))
  15312. characterMakers.push(() => makeCharacter(
  15313. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15314. {
  15315. front: {
  15316. height: math.unit(6, "feet"),
  15317. weight: math.unit(150, "lb"),
  15318. name: "Front",
  15319. image: {
  15320. source: "./media/characters/hanzo/front.svg",
  15321. extra: 374 / 344,
  15322. bottom: 0.02
  15323. }
  15324. },
  15325. },
  15326. [
  15327. {
  15328. name: "Normal",
  15329. height: math.unit(8, "feet"),
  15330. default: true
  15331. },
  15332. ]
  15333. ))
  15334. characterMakers.push(() => makeCharacter(
  15335. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15336. {
  15337. front: {
  15338. height: math.unit(7, "feet"),
  15339. weight: math.unit(130, "lb"),
  15340. name: "Front",
  15341. image: {
  15342. source: "./media/characters/anna/front.svg",
  15343. extra: 169 / 145,
  15344. bottom: 0.06
  15345. }
  15346. },
  15347. full: {
  15348. height: math.unit(4.96, "feet"),
  15349. weight: math.unit(220, "lb"),
  15350. name: "Full",
  15351. image: {
  15352. source: "./media/characters/anna/full.svg",
  15353. extra: 138 / 114,
  15354. bottom: 0.15
  15355. }
  15356. },
  15357. tongue: {
  15358. height: math.unit(2.53, "feet"),
  15359. name: "Tongue",
  15360. image: {
  15361. source: "./media/characters/anna/tongue.svg"
  15362. }
  15363. },
  15364. },
  15365. [
  15366. {
  15367. name: "Normal",
  15368. height: math.unit(7, "feet"),
  15369. default: true
  15370. },
  15371. ]
  15372. ))
  15373. characterMakers.push(() => makeCharacter(
  15374. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15375. {
  15376. front: {
  15377. height: math.unit(7, "feet"),
  15378. weight: math.unit(150, "lb"),
  15379. name: "Front",
  15380. image: {
  15381. source: "./media/characters/ian-corvid/front.svg",
  15382. extra: 150 / 142,
  15383. bottom: 0.02
  15384. }
  15385. },
  15386. back: {
  15387. height: math.unit(7, "feet"),
  15388. weight: math.unit(150, "lb"),
  15389. name: "Back",
  15390. image: {
  15391. source: "./media/characters/ian-corvid/back.svg",
  15392. extra: 150 / 143,
  15393. bottom: 0.01
  15394. }
  15395. },
  15396. stomping: {
  15397. height: math.unit(7, "feet"),
  15398. weight: math.unit(150, "lb"),
  15399. name: "Stomping",
  15400. image: {
  15401. source: "./media/characters/ian-corvid/stomping.svg",
  15402. extra: 76 / 72
  15403. }
  15404. },
  15405. sitting: {
  15406. height: math.unit(7 / 1.8, "feet"),
  15407. weight: math.unit(150, "lb"),
  15408. name: "Sitting",
  15409. image: {
  15410. source: "./media/characters/ian-corvid/sitting.svg",
  15411. extra: 1400 / 1269,
  15412. bottom: 0.15
  15413. }
  15414. },
  15415. },
  15416. [
  15417. {
  15418. name: "Tiny Microw",
  15419. height: math.unit(1, "inch")
  15420. },
  15421. {
  15422. name: "Microw",
  15423. height: math.unit(6, "inches")
  15424. },
  15425. {
  15426. name: "Crow",
  15427. height: math.unit(7 + 1 / 12, "feet"),
  15428. default: true
  15429. },
  15430. {
  15431. name: "Macrow",
  15432. height: math.unit(176, "feet")
  15433. },
  15434. ]
  15435. ))
  15436. characterMakers.push(() => makeCharacter(
  15437. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15438. {
  15439. front: {
  15440. height: math.unit(5 + 7 / 12, "feet"),
  15441. weight: math.unit(147, "lb"),
  15442. name: "Front",
  15443. image: {
  15444. source: "./media/characters/natalie-kellon/front.svg",
  15445. extra: 1214 / 1141,
  15446. bottom: 0.02
  15447. }
  15448. },
  15449. },
  15450. [
  15451. {
  15452. name: "Micro",
  15453. height: math.unit(1 / 16, "inch")
  15454. },
  15455. {
  15456. name: "Tiny",
  15457. height: math.unit(4, "inches")
  15458. },
  15459. {
  15460. name: "Normal",
  15461. height: math.unit(5 + 7 / 12, "feet"),
  15462. default: true
  15463. },
  15464. {
  15465. name: "Amazon",
  15466. height: math.unit(12, "feet")
  15467. },
  15468. {
  15469. name: "Giantess",
  15470. height: math.unit(160, "meters")
  15471. },
  15472. {
  15473. name: "Titaness",
  15474. height: math.unit(800, "meters")
  15475. },
  15476. ]
  15477. ))
  15478. characterMakers.push(() => makeCharacter(
  15479. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15480. {
  15481. front: {
  15482. height: math.unit(6, "feet"),
  15483. weight: math.unit(150, "lb"),
  15484. name: "Front",
  15485. image: {
  15486. source: "./media/characters/alluria/front.svg",
  15487. extra: 806 / 738,
  15488. bottom: 0.01
  15489. }
  15490. },
  15491. side: {
  15492. height: math.unit(6, "feet"),
  15493. weight: math.unit(150, "lb"),
  15494. name: "Side",
  15495. image: {
  15496. source: "./media/characters/alluria/side.svg",
  15497. extra: 800 / 750,
  15498. }
  15499. },
  15500. back: {
  15501. height: math.unit(6, "feet"),
  15502. weight: math.unit(150, "lb"),
  15503. name: "Back",
  15504. image: {
  15505. source: "./media/characters/alluria/back.svg",
  15506. extra: 806 / 738,
  15507. }
  15508. },
  15509. frontMaid: {
  15510. height: math.unit(6, "feet"),
  15511. weight: math.unit(150, "lb"),
  15512. name: "Front (Maid)",
  15513. image: {
  15514. source: "./media/characters/alluria/front-maid.svg",
  15515. extra: 806 / 738,
  15516. bottom: 0.01
  15517. }
  15518. },
  15519. sideMaid: {
  15520. height: math.unit(6, "feet"),
  15521. weight: math.unit(150, "lb"),
  15522. name: "Side (Maid)",
  15523. image: {
  15524. source: "./media/characters/alluria/side-maid.svg",
  15525. extra: 800 / 750,
  15526. bottom: 0.005
  15527. }
  15528. },
  15529. backMaid: {
  15530. height: math.unit(6, "feet"),
  15531. weight: math.unit(150, "lb"),
  15532. name: "Back (Maid)",
  15533. image: {
  15534. source: "./media/characters/alluria/back-maid.svg",
  15535. extra: 806 / 738,
  15536. }
  15537. },
  15538. },
  15539. [
  15540. {
  15541. name: "Micro",
  15542. height: math.unit(6, "inches"),
  15543. default: true
  15544. },
  15545. ]
  15546. ))
  15547. characterMakers.push(() => makeCharacter(
  15548. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15549. {
  15550. front: {
  15551. height: math.unit(6, "feet"),
  15552. weight: math.unit(150, "lb"),
  15553. name: "Front",
  15554. image: {
  15555. source: "./media/characters/kyle/front.svg",
  15556. extra: 1069 / 962,
  15557. bottom: 77.228 / 1727.45
  15558. }
  15559. },
  15560. },
  15561. [
  15562. {
  15563. name: "Macro",
  15564. height: math.unit(150, "feet"),
  15565. default: true
  15566. },
  15567. ]
  15568. ))
  15569. characterMakers.push(() => makeCharacter(
  15570. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15571. {
  15572. front: {
  15573. height: math.unit(6, "feet"),
  15574. weight: math.unit(300, "lb"),
  15575. name: "Front",
  15576. image: {
  15577. source: "./media/characters/duncan/front.svg",
  15578. extra: 1650 / 1482,
  15579. bottom: 0.05
  15580. }
  15581. },
  15582. },
  15583. [
  15584. {
  15585. name: "Macro",
  15586. height: math.unit(100, "feet"),
  15587. default: true
  15588. },
  15589. ]
  15590. ))
  15591. characterMakers.push(() => makeCharacter(
  15592. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15593. {
  15594. front: {
  15595. height: math.unit(5 + 4 / 12, "feet"),
  15596. weight: math.unit(220, "lb"),
  15597. name: "Front",
  15598. image: {
  15599. source: "./media/characters/memory/front.svg",
  15600. extra: 3641 / 3545,
  15601. bottom: 0.03
  15602. }
  15603. },
  15604. back: {
  15605. height: math.unit(5 + 4 / 12, "feet"),
  15606. weight: math.unit(220, "lb"),
  15607. name: "Back",
  15608. image: {
  15609. source: "./media/characters/memory/back.svg",
  15610. extra: 3641 / 3545,
  15611. bottom: 0.025
  15612. }
  15613. },
  15614. frontSkirt: {
  15615. height: math.unit(5 + 4 / 12, "feet"),
  15616. weight: math.unit(220, "lb"),
  15617. name: "Front (Skirt)",
  15618. image: {
  15619. source: "./media/characters/memory/front-skirt.svg",
  15620. extra: 3641 / 3545,
  15621. bottom: 0.03
  15622. }
  15623. },
  15624. frontDress: {
  15625. height: math.unit(5 + 4 / 12, "feet"),
  15626. weight: math.unit(220, "lb"),
  15627. name: "Front (Dress)",
  15628. image: {
  15629. source: "./media/characters/memory/front-dress.svg",
  15630. extra: 3641 / 3545,
  15631. bottom: 0.03
  15632. }
  15633. },
  15634. },
  15635. [
  15636. {
  15637. name: "Micro",
  15638. height: math.unit(6, "inches"),
  15639. default: true
  15640. },
  15641. {
  15642. name: "Normal",
  15643. height: math.unit(5 + 4 / 12, "feet")
  15644. },
  15645. ]
  15646. ))
  15647. characterMakers.push(() => makeCharacter(
  15648. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15649. {
  15650. front: {
  15651. height: math.unit(4 + 11 / 12, "feet"),
  15652. weight: math.unit(100, "lb"),
  15653. name: "Front",
  15654. image: {
  15655. source: "./media/characters/luno/front.svg",
  15656. extra: 1535 / 1487,
  15657. bottom: 0.03
  15658. }
  15659. },
  15660. },
  15661. [
  15662. {
  15663. name: "Micro",
  15664. height: math.unit(3, "inches")
  15665. },
  15666. {
  15667. name: "Normal",
  15668. height: math.unit(4 + 11 / 12, "feet"),
  15669. default: true
  15670. },
  15671. {
  15672. name: "Macro",
  15673. height: math.unit(300, "feet")
  15674. },
  15675. {
  15676. name: "Megamacro",
  15677. height: math.unit(700, "miles")
  15678. },
  15679. ]
  15680. ))
  15681. characterMakers.push(() => makeCharacter(
  15682. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  15683. {
  15684. front: {
  15685. height: math.unit(6 + 2 / 12, "feet"),
  15686. weight: math.unit(170, "lb"),
  15687. name: "Front",
  15688. image: {
  15689. source: "./media/characters/jamesy/front.svg",
  15690. extra: 440 / 382,
  15691. bottom: 0.005
  15692. }
  15693. },
  15694. },
  15695. [
  15696. {
  15697. name: "Micro",
  15698. height: math.unit(3, "inches")
  15699. },
  15700. {
  15701. name: "Normal",
  15702. height: math.unit(6 + 2 / 12, "feet"),
  15703. default: true
  15704. },
  15705. {
  15706. name: "Macro",
  15707. height: math.unit(300, "feet")
  15708. },
  15709. {
  15710. name: "Megamacro",
  15711. height: math.unit(700, "miles")
  15712. },
  15713. ]
  15714. ))
  15715. characterMakers.push(() => makeCharacter(
  15716. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  15717. {
  15718. front: {
  15719. height: math.unit(6, "feet"),
  15720. weight: math.unit(160, "lb"),
  15721. name: "Front",
  15722. image: {
  15723. source: "./media/characters/mark/front.svg",
  15724. extra: 3300 / 3100,
  15725. bottom: 136.42 / 3440.47
  15726. }
  15727. },
  15728. },
  15729. [
  15730. {
  15731. name: "Macro",
  15732. height: math.unit(120, "meters")
  15733. },
  15734. {
  15735. name: "Bigger Macro",
  15736. height: math.unit(350, "meters")
  15737. },
  15738. {
  15739. name: "Megamacro",
  15740. height: math.unit(8, "km"),
  15741. default: true
  15742. },
  15743. {
  15744. name: "Continental",
  15745. height: math.unit(4550, "km")
  15746. },
  15747. {
  15748. name: "Planetary",
  15749. height: math.unit(65000, "km")
  15750. },
  15751. ]
  15752. ))
  15753. characterMakers.push(() => makeCharacter(
  15754. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  15755. {
  15756. front: {
  15757. height: math.unit(6, "feet"),
  15758. weight: math.unit(400, "lb"),
  15759. name: "Front",
  15760. image: {
  15761. source: "./media/characters/mac/front.svg",
  15762. extra: 1048 / 987.7,
  15763. bottom: 60 / 1107.6,
  15764. }
  15765. },
  15766. },
  15767. [
  15768. {
  15769. name: "Macro",
  15770. height: math.unit(500, "feet"),
  15771. default: true
  15772. },
  15773. ]
  15774. ))
  15775. characterMakers.push(() => makeCharacter(
  15776. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  15777. {
  15778. front: {
  15779. height: math.unit(5 + 2 / 12, "feet"),
  15780. weight: math.unit(190, "lb"),
  15781. name: "Front",
  15782. image: {
  15783. source: "./media/characters/bari/front.svg",
  15784. extra: 3156 / 2880,
  15785. bottom: 0.03
  15786. }
  15787. },
  15788. back: {
  15789. height: math.unit(5 + 2 / 12, "feet"),
  15790. weight: math.unit(190, "lb"),
  15791. name: "Back",
  15792. image: {
  15793. source: "./media/characters/bari/back.svg",
  15794. extra: 3260 / 2834,
  15795. bottom: 0.025
  15796. }
  15797. },
  15798. frontPlush: {
  15799. height: math.unit(5 + 2 / 12, "feet"),
  15800. weight: math.unit(190, "lb"),
  15801. name: "Front (Plush)",
  15802. image: {
  15803. source: "./media/characters/bari/front-plush.svg",
  15804. extra: 1112 / 1061,
  15805. bottom: 0.002
  15806. }
  15807. },
  15808. },
  15809. [
  15810. {
  15811. name: "Micro",
  15812. height: math.unit(3, "inches")
  15813. },
  15814. {
  15815. name: "Normal",
  15816. height: math.unit(5 + 2 / 12, "feet"),
  15817. default: true
  15818. },
  15819. {
  15820. name: "Macro",
  15821. height: math.unit(20, "feet")
  15822. },
  15823. ]
  15824. ))
  15825. characterMakers.push(() => makeCharacter(
  15826. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  15827. {
  15828. front: {
  15829. height: math.unit(6 + 1 / 12, "feet"),
  15830. weight: math.unit(275, "lb"),
  15831. name: "Front",
  15832. image: {
  15833. source: "./media/characters/hunter-misha-raven/front.svg"
  15834. }
  15835. },
  15836. },
  15837. [
  15838. {
  15839. name: "Mortal",
  15840. height: math.unit(6 + 1 / 12, "feet")
  15841. },
  15842. {
  15843. name: "Divine",
  15844. height: math.unit(1.12134e34, "parsecs"),
  15845. default: true
  15846. },
  15847. ]
  15848. ))
  15849. characterMakers.push(() => makeCharacter(
  15850. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  15851. {
  15852. front: {
  15853. height: math.unit(6 + 3 / 12, "feet"),
  15854. weight: math.unit(220, "lb"),
  15855. name: "Front",
  15856. image: {
  15857. source: "./media/characters/max-calore/front.svg",
  15858. extra: 1700 / 1648,
  15859. bottom: 0.01
  15860. }
  15861. },
  15862. back: {
  15863. height: math.unit(6 + 3 / 12, "feet"),
  15864. weight: math.unit(220, "lb"),
  15865. name: "Back",
  15866. image: {
  15867. source: "./media/characters/max-calore/back.svg",
  15868. extra: 1700 / 1648,
  15869. bottom: 0.01
  15870. }
  15871. },
  15872. },
  15873. [
  15874. {
  15875. name: "Normal",
  15876. height: math.unit(6 + 3 / 12, "feet"),
  15877. default: true
  15878. },
  15879. ]
  15880. ))
  15881. characterMakers.push(() => makeCharacter(
  15882. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  15883. {
  15884. side: {
  15885. height: math.unit(2 + 8 / 12, "feet"),
  15886. weight: math.unit(99, "lb"),
  15887. name: "Side",
  15888. image: {
  15889. source: "./media/characters/aspen/side.svg",
  15890. extra: 152 / 138,
  15891. bottom: 0.032
  15892. }
  15893. },
  15894. },
  15895. [
  15896. {
  15897. name: "Normal",
  15898. height: math.unit(2 + 8 / 12, "feet"),
  15899. default: true
  15900. },
  15901. ]
  15902. ))
  15903. characterMakers.push(() => makeCharacter(
  15904. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  15905. {
  15906. side: {
  15907. height: math.unit(3 + 2 / 12, "feet"),
  15908. weight: math.unit(224, "lb"),
  15909. name: "Side",
  15910. image: {
  15911. source: "./media/characters/sheila-feral-wolf/side.svg",
  15912. extra: 179 / 166,
  15913. bottom: 0.03
  15914. }
  15915. },
  15916. },
  15917. [
  15918. {
  15919. name: "Normal",
  15920. height: math.unit(3 + 2 / 12, "feet"),
  15921. default: true
  15922. },
  15923. ]
  15924. ))
  15925. characterMakers.push(() => makeCharacter(
  15926. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  15927. {
  15928. side: {
  15929. height: math.unit(1 + 9 / 12, "feet"),
  15930. weight: math.unit(38, "lb"),
  15931. name: "Side",
  15932. image: {
  15933. source: "./media/characters/michelle/side.svg",
  15934. extra: 147 / 136.7,
  15935. bottom: 0.03
  15936. }
  15937. },
  15938. },
  15939. [
  15940. {
  15941. name: "Normal",
  15942. height: math.unit(1 + 9 / 12, "feet"),
  15943. default: true
  15944. },
  15945. ]
  15946. ))
  15947. characterMakers.push(() => makeCharacter(
  15948. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  15949. {
  15950. front: {
  15951. height: math.unit(1 + 1 / 12, "feet"),
  15952. weight: math.unit(18, "lb"),
  15953. name: "Front",
  15954. image: {
  15955. source: "./media/characters/nino/front.svg"
  15956. }
  15957. },
  15958. },
  15959. [
  15960. {
  15961. name: "Normal",
  15962. height: math.unit(1 + 1 / 12, "feet"),
  15963. default: true
  15964. },
  15965. ]
  15966. ))
  15967. characterMakers.push(() => makeCharacter(
  15968. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  15969. {
  15970. front: {
  15971. height: math.unit(1, "feet"),
  15972. weight: math.unit(16, "lb"),
  15973. name: "Front",
  15974. image: {
  15975. source: "./media/characters/viola/front.svg"
  15976. }
  15977. },
  15978. },
  15979. [
  15980. {
  15981. name: "Normal",
  15982. height: math.unit(1, "feet"),
  15983. default: true
  15984. },
  15985. ]
  15986. ))
  15987. characterMakers.push(() => makeCharacter(
  15988. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  15989. {
  15990. front: {
  15991. height: math.unit(6 + 5 / 12, "feet"),
  15992. weight: math.unit(580, "lb"),
  15993. name: "Front",
  15994. image: {
  15995. source: "./media/characters/atlas/front.svg",
  15996. extra: 298.5 / 290,
  15997. bottom: 0.015
  15998. }
  15999. },
  16000. },
  16001. [
  16002. {
  16003. name: "Normal",
  16004. height: math.unit(6 + 5 / 12, "feet"),
  16005. default: true
  16006. },
  16007. ]
  16008. ))
  16009. characterMakers.push(() => makeCharacter(
  16010. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16011. {
  16012. side: {
  16013. height: math.unit(1 + 10 / 12, "feet"),
  16014. weight: math.unit(25, "lb"),
  16015. name: "Side",
  16016. image: {
  16017. source: "./media/characters/davy/side.svg",
  16018. extra: 200 / 170,
  16019. bottom: 0.01
  16020. }
  16021. },
  16022. },
  16023. [
  16024. {
  16025. name: "Normal",
  16026. height: math.unit(1 + 10 / 12, "feet"),
  16027. default: true
  16028. },
  16029. ]
  16030. ))
  16031. characterMakers.push(() => makeCharacter(
  16032. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16033. {
  16034. side: {
  16035. height: math.unit(4 + 8 / 12, "feet"),
  16036. weight: math.unit(166, "lb"),
  16037. name: "Side",
  16038. image: {
  16039. source: "./media/characters/fiona/side.svg",
  16040. extra: 232 / 220,
  16041. bottom: 0.03
  16042. }
  16043. },
  16044. },
  16045. [
  16046. {
  16047. name: "Normal",
  16048. height: math.unit(4 + 8 / 12, "feet"),
  16049. default: true
  16050. },
  16051. ]
  16052. ))
  16053. characterMakers.push(() => makeCharacter(
  16054. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16055. {
  16056. front: {
  16057. height: math.unit(2, "feet"),
  16058. weight: math.unit(62, "lb"),
  16059. name: "Front",
  16060. image: {
  16061. source: "./media/characters/lyla/front.svg",
  16062. bottom: 0.1
  16063. }
  16064. },
  16065. },
  16066. [
  16067. {
  16068. name: "Normal",
  16069. height: math.unit(2, "feet"),
  16070. default: true
  16071. },
  16072. ]
  16073. ))
  16074. characterMakers.push(() => makeCharacter(
  16075. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16076. {
  16077. side: {
  16078. height: math.unit(1.8, "feet"),
  16079. weight: math.unit(44, "lb"),
  16080. name: "Side",
  16081. image: {
  16082. source: "./media/characters/perseus/side.svg",
  16083. bottom: 0.21
  16084. }
  16085. },
  16086. },
  16087. [
  16088. {
  16089. name: "Normal",
  16090. height: math.unit(1.8, "feet"),
  16091. default: true
  16092. },
  16093. ]
  16094. ))
  16095. characterMakers.push(() => makeCharacter(
  16096. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16097. {
  16098. side: {
  16099. height: math.unit(4 + 2 / 12, "feet"),
  16100. weight: math.unit(20, "lb"),
  16101. name: "Side",
  16102. image: {
  16103. source: "./media/characters/remus/side.svg"
  16104. }
  16105. },
  16106. },
  16107. [
  16108. {
  16109. name: "Normal",
  16110. height: math.unit(4 + 2 / 12, "feet"),
  16111. default: true
  16112. },
  16113. ]
  16114. ))
  16115. characterMakers.push(() => makeCharacter(
  16116. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16117. {
  16118. front: {
  16119. height: math.unit(4 + 11 / 12, "feet"),
  16120. weight: math.unit(114, "lb"),
  16121. name: "Front",
  16122. image: {
  16123. source: "./media/characters/raf/front.svg",
  16124. bottom: 20.5/1863
  16125. }
  16126. },
  16127. side: {
  16128. height: math.unit(4 + 11 / 12, "feet"),
  16129. weight: math.unit(114, "lb"),
  16130. name: "Side",
  16131. image: {
  16132. source: "./media/characters/raf/side.svg",
  16133. bottom: 22/1822
  16134. }
  16135. },
  16136. },
  16137. [
  16138. {
  16139. name: "Micro",
  16140. height: math.unit(2, "inches")
  16141. },
  16142. {
  16143. name: "Normal",
  16144. height: math.unit(4 + 11 / 12, "feet"),
  16145. default: true
  16146. },
  16147. {
  16148. name: "Macro",
  16149. height: math.unit(70, "feet")
  16150. },
  16151. ]
  16152. ))
  16153. characterMakers.push(() => makeCharacter(
  16154. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16155. {
  16156. front: {
  16157. height: math.unit(1.5, "meters"),
  16158. weight: math.unit(68, "kg"),
  16159. name: "Front",
  16160. image: {
  16161. source: "./media/characters/liam-einarr/front.svg",
  16162. extra: 2822 / 2666
  16163. }
  16164. },
  16165. back: {
  16166. height: math.unit(1.5, "meters"),
  16167. weight: math.unit(68, "kg"),
  16168. name: "Back",
  16169. image: {
  16170. source: "./media/characters/liam-einarr/back.svg",
  16171. extra: 2822 / 2666,
  16172. bottom: 0.015
  16173. }
  16174. },
  16175. },
  16176. [
  16177. {
  16178. name: "Normal",
  16179. height: math.unit(1.5, "meters"),
  16180. default: true
  16181. },
  16182. {
  16183. name: "Macro",
  16184. height: math.unit(150, "meters")
  16185. },
  16186. {
  16187. name: "Megamacro",
  16188. height: math.unit(35, "km")
  16189. },
  16190. ]
  16191. ))
  16192. characterMakers.push(() => makeCharacter(
  16193. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16194. {
  16195. front: {
  16196. height: math.unit(6, "feet"),
  16197. weight: math.unit(75, "kg"),
  16198. name: "Front",
  16199. image: {
  16200. source: "./media/characters/linda/front.svg",
  16201. extra: 930 / 874,
  16202. bottom: 0.004
  16203. }
  16204. },
  16205. },
  16206. [
  16207. {
  16208. name: "Normal",
  16209. height: math.unit(6, "feet"),
  16210. default: true
  16211. },
  16212. ]
  16213. ))
  16214. characterMakers.push(() => makeCharacter(
  16215. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16216. {
  16217. front: {
  16218. height: math.unit(6 + 8 / 12, "feet"),
  16219. weight: math.unit(220, "lb"),
  16220. name: "Front",
  16221. image: {
  16222. source: "./media/characters/caylex/front.svg",
  16223. extra: 821 / 772,
  16224. bottom: 0.07
  16225. }
  16226. },
  16227. back: {
  16228. height: math.unit(6 + 8 / 12, "feet"),
  16229. weight: math.unit(220, "lb"),
  16230. name: "Back",
  16231. image: {
  16232. source: "./media/characters/caylex/back.svg",
  16233. extra: 821 / 772,
  16234. bottom: 0.022
  16235. }
  16236. },
  16237. hand: {
  16238. height: math.unit(1.25, "feet"),
  16239. name: "Hand",
  16240. image: {
  16241. source: "./media/characters/caylex/hand.svg"
  16242. }
  16243. },
  16244. foot: {
  16245. height: math.unit(1.6, "feet"),
  16246. name: "Foot",
  16247. image: {
  16248. source: "./media/characters/caylex/foot.svg"
  16249. }
  16250. },
  16251. armored: {
  16252. height: math.unit(6 + 8 / 12, "feet"),
  16253. weight: math.unit(250, "lb"),
  16254. name: "Armored",
  16255. image: {
  16256. source: "./media/characters/caylex/armored.svg",
  16257. extra: 1420 / 1310,
  16258. bottom: 0.045
  16259. }
  16260. },
  16261. },
  16262. [
  16263. {
  16264. name: "Normal",
  16265. height: math.unit(6 + 8 / 12, "feet"),
  16266. default: true
  16267. },
  16268. {
  16269. name: "Normal+",
  16270. height: math.unit(12, "feet")
  16271. },
  16272. ]
  16273. ))
  16274. characterMakers.push(() => makeCharacter(
  16275. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16276. {
  16277. front: {
  16278. height: math.unit(7 + 6 / 12, "feet"),
  16279. weight: math.unit(288, "lb"),
  16280. name: "Front",
  16281. image: {
  16282. source: "./media/characters/alana/front.svg",
  16283. extra: 679 / 653,
  16284. bottom: 22.5 / 701
  16285. }
  16286. },
  16287. },
  16288. [
  16289. {
  16290. name: "Normal",
  16291. height: math.unit(7 + 6 / 12, "feet")
  16292. },
  16293. {
  16294. name: "Large",
  16295. height: math.unit(50, "feet")
  16296. },
  16297. {
  16298. name: "Macro",
  16299. height: math.unit(100, "feet"),
  16300. default: true
  16301. },
  16302. {
  16303. name: "Macro+",
  16304. height: math.unit(200, "feet")
  16305. },
  16306. ]
  16307. ))
  16308. characterMakers.push(() => makeCharacter(
  16309. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16310. {
  16311. front: {
  16312. height: math.unit(6 + 1 / 12, "feet"),
  16313. weight: math.unit(210, "lb"),
  16314. name: "Front",
  16315. image: {
  16316. source: "./media/characters/hasani/front.svg",
  16317. extra: 244 / 232,
  16318. bottom: 0.01
  16319. }
  16320. },
  16321. back: {
  16322. height: math.unit(6 + 1 / 12, "feet"),
  16323. weight: math.unit(210, "lb"),
  16324. name: "Back",
  16325. image: {
  16326. source: "./media/characters/hasani/back.svg",
  16327. extra: 244 / 232,
  16328. bottom: 0.01
  16329. }
  16330. },
  16331. },
  16332. [
  16333. {
  16334. name: "Normal",
  16335. height: math.unit(6 + 1 / 12, "feet")
  16336. },
  16337. {
  16338. name: "Macro",
  16339. height: math.unit(175, "feet"),
  16340. default: true
  16341. },
  16342. ]
  16343. ))
  16344. characterMakers.push(() => makeCharacter(
  16345. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16346. {
  16347. front: {
  16348. height: math.unit(1.82, "meters"),
  16349. weight: math.unit(140, "lb"),
  16350. name: "Front",
  16351. image: {
  16352. source: "./media/characters/nita/front.svg",
  16353. extra: 2473 / 2363,
  16354. bottom: 0.01
  16355. }
  16356. },
  16357. },
  16358. [
  16359. {
  16360. name: "Normal",
  16361. height: math.unit(1.82, "m")
  16362. },
  16363. {
  16364. name: "Macro",
  16365. height: math.unit(300, "m")
  16366. },
  16367. {
  16368. name: "Mistake Canon",
  16369. height: math.unit(0.5, "miles"),
  16370. default: true
  16371. },
  16372. {
  16373. name: "Big Mistake",
  16374. height: math.unit(13, "miles")
  16375. },
  16376. {
  16377. name: "Playing God",
  16378. height: math.unit(2450, "miles")
  16379. },
  16380. ]
  16381. ))
  16382. characterMakers.push(() => makeCharacter(
  16383. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16384. {
  16385. front: {
  16386. height: math.unit(4, "feet"),
  16387. weight: math.unit(120, "lb"),
  16388. name: "Front",
  16389. image: {
  16390. source: "./media/characters/shiriko/front.svg",
  16391. extra: 195 / 188
  16392. }
  16393. },
  16394. },
  16395. [
  16396. {
  16397. name: "Normal",
  16398. height: math.unit(4, "feet"),
  16399. default: true
  16400. },
  16401. ]
  16402. ))
  16403. characterMakers.push(() => makeCharacter(
  16404. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16405. {
  16406. front: {
  16407. height: math.unit(6, "feet"),
  16408. name: "front",
  16409. image: {
  16410. source: "./media/characters/deja/front.svg",
  16411. extra: 926 / 840,
  16412. bottom: 0.07
  16413. }
  16414. },
  16415. },
  16416. [
  16417. {
  16418. name: "Planck Length",
  16419. height: math.unit(1.6e-35, "meters")
  16420. },
  16421. {
  16422. name: "Normal",
  16423. height: math.unit(30.48, "meters"),
  16424. default: true
  16425. },
  16426. {
  16427. name: "Universal",
  16428. height: math.unit(8.8e26, "meters")
  16429. },
  16430. ]
  16431. ))
  16432. characterMakers.push(() => makeCharacter(
  16433. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16434. {
  16435. side: {
  16436. height: math.unit(8, "feet"),
  16437. weight: math.unit(6300, "lb"),
  16438. name: "Side",
  16439. image: {
  16440. source: "./media/characters/anima/side.svg",
  16441. bottom: 0.035
  16442. }
  16443. },
  16444. },
  16445. [
  16446. {
  16447. name: "Normal",
  16448. height: math.unit(8, "feet"),
  16449. default: true
  16450. },
  16451. ]
  16452. ))
  16453. characterMakers.push(() => makeCharacter(
  16454. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16455. {
  16456. front: {
  16457. height: math.unit(8, "feet"),
  16458. weight: math.unit(350, "lb"),
  16459. name: "Front",
  16460. image: {
  16461. source: "./media/characters/bianca/front.svg",
  16462. extra: 234 / 225,
  16463. bottom: 0.03
  16464. }
  16465. },
  16466. },
  16467. [
  16468. {
  16469. name: "Normal",
  16470. height: math.unit(8, "feet"),
  16471. default: true
  16472. },
  16473. ]
  16474. ))
  16475. characterMakers.push(() => makeCharacter(
  16476. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16477. {
  16478. front: {
  16479. height: math.unit(6, "feet"),
  16480. weight: math.unit(150, "lb"),
  16481. name: "Front",
  16482. image: {
  16483. source: "./media/characters/adinia/front.svg",
  16484. extra: 1845 / 1672,
  16485. bottom: 0.02
  16486. }
  16487. },
  16488. back: {
  16489. height: math.unit(6, "feet"),
  16490. weight: math.unit(150, "lb"),
  16491. name: "Back",
  16492. image: {
  16493. source: "./media/characters/adinia/back.svg",
  16494. extra: 1845 / 1672,
  16495. bottom: 0.002
  16496. }
  16497. },
  16498. },
  16499. [
  16500. {
  16501. name: "Normal",
  16502. height: math.unit(11 + 5 / 12, "feet"),
  16503. default: true
  16504. },
  16505. ]
  16506. ))
  16507. characterMakers.push(() => makeCharacter(
  16508. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16509. {
  16510. front: {
  16511. height: math.unit(3, "meters"),
  16512. weight: math.unit(200, "kg"),
  16513. name: "Front",
  16514. image: {
  16515. source: "./media/characters/lykasa/front.svg",
  16516. extra: 1076 / 976,
  16517. bottom: 0.06
  16518. }
  16519. },
  16520. },
  16521. [
  16522. {
  16523. name: "Normal",
  16524. height: math.unit(3, "meters")
  16525. },
  16526. {
  16527. name: "Kaiju",
  16528. height: math.unit(120, "meters"),
  16529. default: true
  16530. },
  16531. {
  16532. name: "Mega Kaiju",
  16533. height: math.unit(240, "km")
  16534. },
  16535. {
  16536. name: "Giga Kaiju",
  16537. height: math.unit(400, "megameters")
  16538. },
  16539. {
  16540. name: "Tera Kaiju",
  16541. height: math.unit(800, "gigameters")
  16542. },
  16543. {
  16544. name: "Kaiju Dragon Goddess",
  16545. height: math.unit(26, "zettaparsecs")
  16546. },
  16547. ]
  16548. ))
  16549. characterMakers.push(() => makeCharacter(
  16550. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16551. {
  16552. side: {
  16553. height: math.unit(283 / 124 * 6, "feet"),
  16554. weight: math.unit(35000, "lb"),
  16555. name: "Side",
  16556. image: {
  16557. source: "./media/characters/malfaren/side.svg",
  16558. extra: 2500 / 1010,
  16559. bottom: 0.01
  16560. }
  16561. },
  16562. front: {
  16563. height: math.unit(22.36, "feet"),
  16564. weight: math.unit(35000, "lb"),
  16565. name: "Front",
  16566. image: {
  16567. source: "./media/characters/malfaren/front.svg",
  16568. extra: 1631 / 1476,
  16569. bottom: 0.01
  16570. }
  16571. },
  16572. maw: {
  16573. height: math.unit(6.9, "feet"),
  16574. name: "Maw",
  16575. image: {
  16576. source: "./media/characters/malfaren/maw.svg"
  16577. }
  16578. },
  16579. },
  16580. [
  16581. {
  16582. name: "Big",
  16583. height: math.unit(283 / 162 * 6, "feet"),
  16584. },
  16585. {
  16586. name: "Bigger",
  16587. height: math.unit(283 / 124 * 6, "feet")
  16588. },
  16589. {
  16590. name: "Massive",
  16591. height: math.unit(283 / 92 * 6, "feet"),
  16592. default: true
  16593. },
  16594. {
  16595. name: "👀💦",
  16596. height: math.unit(283 / 73 * 6, "feet"),
  16597. },
  16598. ]
  16599. ))
  16600. characterMakers.push(() => makeCharacter(
  16601. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16602. {
  16603. front: {
  16604. height: math.unit(1.7, "m"),
  16605. weight: math.unit(70, "kg"),
  16606. name: "Front",
  16607. image: {
  16608. source: "./media/characters/kernel/front.svg",
  16609. extra: 222 / 210,
  16610. bottom: 0.007
  16611. }
  16612. },
  16613. },
  16614. [
  16615. {
  16616. name: "Nano",
  16617. height: math.unit(17, "micrometers")
  16618. },
  16619. {
  16620. name: "Micro",
  16621. height: math.unit(1.7, "mm")
  16622. },
  16623. {
  16624. name: "Small",
  16625. height: math.unit(1.7, "cm")
  16626. },
  16627. {
  16628. name: "Normal",
  16629. height: math.unit(1.7, "m"),
  16630. default: true
  16631. },
  16632. ]
  16633. ))
  16634. characterMakers.push(() => makeCharacter(
  16635. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16636. {
  16637. front: {
  16638. height: math.unit(1.75, "meters"),
  16639. weight: math.unit(65, "kg"),
  16640. name: "Front",
  16641. image: {
  16642. source: "./media/characters/jayne-folest/front.svg",
  16643. extra: 2115 / 2007,
  16644. bottom: 0.02
  16645. }
  16646. },
  16647. back: {
  16648. height: math.unit(1.75, "meters"),
  16649. weight: math.unit(65, "kg"),
  16650. name: "Back",
  16651. image: {
  16652. source: "./media/characters/jayne-folest/back.svg",
  16653. extra: 2115 / 2007,
  16654. bottom: 0.005
  16655. }
  16656. },
  16657. frontClothed: {
  16658. height: math.unit(1.75, "meters"),
  16659. weight: math.unit(65, "kg"),
  16660. name: "Front (Clothed)",
  16661. image: {
  16662. source: "./media/characters/jayne-folest/front-clothed.svg",
  16663. extra: 2115 / 2007,
  16664. bottom: 0.035
  16665. }
  16666. },
  16667. hand: {
  16668. height: math.unit(1 / 1.260, "feet"),
  16669. name: "Hand",
  16670. image: {
  16671. source: "./media/characters/jayne-folest/hand.svg"
  16672. }
  16673. },
  16674. foot: {
  16675. height: math.unit(1 / 0.918, "feet"),
  16676. name: "Foot",
  16677. image: {
  16678. source: "./media/characters/jayne-folest/foot.svg"
  16679. }
  16680. },
  16681. },
  16682. [
  16683. {
  16684. name: "Micro",
  16685. height: math.unit(4, "cm")
  16686. },
  16687. {
  16688. name: "Normal",
  16689. height: math.unit(1.75, "meters")
  16690. },
  16691. {
  16692. name: "Macro",
  16693. height: math.unit(47.5, "meters"),
  16694. default: true
  16695. },
  16696. ]
  16697. ))
  16698. characterMakers.push(() => makeCharacter(
  16699. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  16700. {
  16701. front: {
  16702. height: math.unit(180, "cm"),
  16703. weight: math.unit(70, "kg"),
  16704. name: "Front",
  16705. image: {
  16706. source: "./media/characters/algier/front.svg",
  16707. extra: 596 / 572,
  16708. bottom: 0.04
  16709. }
  16710. },
  16711. back: {
  16712. height: math.unit(180, "cm"),
  16713. weight: math.unit(70, "kg"),
  16714. name: "Back",
  16715. image: {
  16716. source: "./media/characters/algier/back.svg",
  16717. extra: 596 / 572,
  16718. bottom: 0.025
  16719. }
  16720. },
  16721. frontdressed: {
  16722. height: math.unit(180, "cm"),
  16723. weight: math.unit(150, "kg"),
  16724. name: "Front-dressed",
  16725. image: {
  16726. source: "./media/characters/algier/front-dressed.svg",
  16727. extra: 596 / 572,
  16728. bottom: 0.038
  16729. }
  16730. },
  16731. },
  16732. [
  16733. {
  16734. name: "Micro",
  16735. height: math.unit(5, "cm")
  16736. },
  16737. {
  16738. name: "Normal",
  16739. height: math.unit(180, "cm"),
  16740. default: true
  16741. },
  16742. {
  16743. name: "Macro",
  16744. height: math.unit(64, "m")
  16745. },
  16746. ]
  16747. ))
  16748. characterMakers.push(() => makeCharacter(
  16749. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  16750. {
  16751. upright: {
  16752. height: math.unit(7, "feet"),
  16753. weight: math.unit(300, "lb"),
  16754. name: "Upright",
  16755. image: {
  16756. source: "./media/characters/pretzel/upright.svg",
  16757. extra: 534 / 522,
  16758. bottom: 0.065
  16759. }
  16760. },
  16761. sprawling: {
  16762. height: math.unit(3.75, "feet"),
  16763. weight: math.unit(300, "lb"),
  16764. name: "Sprawling",
  16765. image: {
  16766. source: "./media/characters/pretzel/sprawling.svg",
  16767. extra: 314 / 281,
  16768. bottom: 0.1
  16769. }
  16770. },
  16771. tongue: {
  16772. height: math.unit(2, "feet"),
  16773. name: "Tongue",
  16774. image: {
  16775. source: "./media/characters/pretzel/tongue.svg"
  16776. }
  16777. },
  16778. },
  16779. [
  16780. {
  16781. name: "Normal",
  16782. height: math.unit(7, "feet"),
  16783. default: true
  16784. },
  16785. {
  16786. name: "Oversized",
  16787. height: math.unit(15, "feet")
  16788. },
  16789. {
  16790. name: "Huge",
  16791. height: math.unit(30, "feet")
  16792. },
  16793. {
  16794. name: "Macro",
  16795. height: math.unit(250, "feet")
  16796. },
  16797. ]
  16798. ))
  16799. characterMakers.push(() => makeCharacter(
  16800. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  16801. {
  16802. sideFront: {
  16803. height: math.unit(5 + 2 / 12, "feet"),
  16804. weight: math.unit(120, "lb"),
  16805. name: "Front Side",
  16806. image: {
  16807. source: "./media/characters/roxi/side-front.svg",
  16808. extra: 2924 / 2717,
  16809. bottom: 0.08
  16810. }
  16811. },
  16812. sideBack: {
  16813. height: math.unit(5 + 2 / 12, "feet"),
  16814. weight: math.unit(120, "lb"),
  16815. name: "Back Side",
  16816. image: {
  16817. source: "./media/characters/roxi/side-back.svg",
  16818. extra: 2904 / 2693,
  16819. bottom: 0.06
  16820. }
  16821. },
  16822. front: {
  16823. height: math.unit(5 + 2 / 12, "feet"),
  16824. weight: math.unit(120, "lb"),
  16825. name: "Front",
  16826. image: {
  16827. source: "./media/characters/roxi/front.svg",
  16828. extra: 2028 / 1907,
  16829. bottom: 0.01
  16830. }
  16831. },
  16832. frontAlt: {
  16833. height: math.unit(5 + 2 / 12, "feet"),
  16834. weight: math.unit(120, "lb"),
  16835. name: "Front (Alt)",
  16836. image: {
  16837. source: "./media/characters/roxi/front-alt.svg",
  16838. extra: 1828 / 1798,
  16839. bottom: 0.01
  16840. }
  16841. },
  16842. sitting: {
  16843. height: math.unit(2.8, "feet"),
  16844. weight: math.unit(120, "lb"),
  16845. name: "Sitting",
  16846. image: {
  16847. source: "./media/characters/roxi/sitting.svg",
  16848. extra: 2660 / 2462,
  16849. bottom: 0.1
  16850. }
  16851. },
  16852. },
  16853. [
  16854. {
  16855. name: "Normal",
  16856. height: math.unit(5 + 2 / 12, "feet"),
  16857. default: true
  16858. },
  16859. ]
  16860. ))
  16861. characterMakers.push(() => makeCharacter(
  16862. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  16863. {
  16864. side: {
  16865. height: math.unit(55, "feet"),
  16866. weight: math.unit(153, "tons"),
  16867. name: "Side",
  16868. image: {
  16869. source: "./media/characters/shadow/side.svg",
  16870. extra: 701 / 628,
  16871. bottom: 0.02
  16872. }
  16873. },
  16874. flying: {
  16875. height: math.unit(145, "feet"),
  16876. weight: math.unit(153, "tons"),
  16877. name: "Flying",
  16878. image: {
  16879. source: "./media/characters/shadow/flying.svg"
  16880. }
  16881. },
  16882. },
  16883. [
  16884. {
  16885. name: "Normal",
  16886. height: math.unit(55, "feet"),
  16887. default: true
  16888. },
  16889. ]
  16890. ))
  16891. characterMakers.push(() => makeCharacter(
  16892. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  16893. {
  16894. front: {
  16895. height: math.unit(6, "feet"),
  16896. weight: math.unit(200, "lb"),
  16897. name: "Front",
  16898. image: {
  16899. source: "./media/characters/marcie/front.svg",
  16900. extra: 960 / 876,
  16901. bottom: 58 / 1017.87
  16902. }
  16903. },
  16904. },
  16905. [
  16906. {
  16907. name: "Macro",
  16908. height: math.unit(1, "mile"),
  16909. default: true
  16910. },
  16911. ]
  16912. ))
  16913. characterMakers.push(() => makeCharacter(
  16914. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  16915. {
  16916. front: {
  16917. height: math.unit(7, "feet"),
  16918. weight: math.unit(200, "lb"),
  16919. name: "Front",
  16920. image: {
  16921. source: "./media/characters/kachina/front.svg",
  16922. extra: 1290.68 / 1119,
  16923. bottom: 36.5 / 1327.18
  16924. }
  16925. },
  16926. },
  16927. [
  16928. {
  16929. name: "Normal",
  16930. height: math.unit(7, "feet"),
  16931. default: true
  16932. },
  16933. ]
  16934. ))
  16935. characterMakers.push(() => makeCharacter(
  16936. { name: "Kash", species: ["canine"], tags: ["feral"] },
  16937. {
  16938. looking: {
  16939. height: math.unit(2, "meters"),
  16940. weight: math.unit(300, "kg"),
  16941. name: "Looking",
  16942. image: {
  16943. source: "./media/characters/kash/looking.svg",
  16944. extra: 474 / 344,
  16945. bottom: 0.03
  16946. }
  16947. },
  16948. side: {
  16949. height: math.unit(2, "meters"),
  16950. weight: math.unit(300, "kg"),
  16951. name: "Side",
  16952. image: {
  16953. source: "./media/characters/kash/side.svg",
  16954. extra: 302 / 251,
  16955. bottom: 0.03
  16956. }
  16957. },
  16958. front: {
  16959. height: math.unit(2, "meters"),
  16960. weight: math.unit(300, "kg"),
  16961. name: "Front",
  16962. image: {
  16963. source: "./media/characters/kash/front.svg",
  16964. extra: 495 / 360,
  16965. bottom: 0.015
  16966. }
  16967. },
  16968. },
  16969. [
  16970. {
  16971. name: "Normal",
  16972. height: math.unit(2, "meters"),
  16973. default: true
  16974. },
  16975. {
  16976. name: "Big",
  16977. height: math.unit(3, "meters")
  16978. },
  16979. {
  16980. name: "Large",
  16981. height: math.unit(5, "meters")
  16982. },
  16983. ]
  16984. ))
  16985. characterMakers.push(() => makeCharacter(
  16986. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  16987. {
  16988. feeding: {
  16989. height: math.unit(6.7, "feet"),
  16990. weight: math.unit(350, "lb"),
  16991. name: "Feeding",
  16992. image: {
  16993. source: "./media/characters/lalim/feeding.svg",
  16994. }
  16995. },
  16996. },
  16997. [
  16998. {
  16999. name: "Normal",
  17000. height: math.unit(6.7, "feet"),
  17001. default: true
  17002. },
  17003. ]
  17004. ))
  17005. characterMakers.push(() => makeCharacter(
  17006. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17007. {
  17008. front: {
  17009. height: math.unit(9.5, "feet"),
  17010. weight: math.unit(600, "lb"),
  17011. name: "Front",
  17012. image: {
  17013. source: "./media/characters/de'vout/front.svg",
  17014. extra: 1443 / 1328,
  17015. bottom: 0.025
  17016. }
  17017. },
  17018. back: {
  17019. height: math.unit(9.5, "feet"),
  17020. weight: math.unit(600, "lb"),
  17021. name: "Back",
  17022. image: {
  17023. source: "./media/characters/de'vout/back.svg",
  17024. extra: 1443 / 1328
  17025. }
  17026. },
  17027. frontDressed: {
  17028. height: math.unit(9.5, "feet"),
  17029. weight: math.unit(600, "lb"),
  17030. name: "Front (Dressed",
  17031. image: {
  17032. source: "./media/characters/de'vout/front-dressed.svg",
  17033. extra: 1443 / 1328,
  17034. bottom: 0.025
  17035. }
  17036. },
  17037. backDressed: {
  17038. height: math.unit(9.5, "feet"),
  17039. weight: math.unit(600, "lb"),
  17040. name: "Back (Dressed",
  17041. image: {
  17042. source: "./media/characters/de'vout/back-dressed.svg",
  17043. extra: 1443 / 1328
  17044. }
  17045. },
  17046. },
  17047. [
  17048. {
  17049. name: "Normal",
  17050. height: math.unit(9.5, "feet"),
  17051. default: true
  17052. },
  17053. ]
  17054. ))
  17055. characterMakers.push(() => makeCharacter(
  17056. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17057. {
  17058. front: {
  17059. height: math.unit(8, "feet"),
  17060. weight: math.unit(225, "lb"),
  17061. name: "Front",
  17062. image: {
  17063. source: "./media/characters/talana/front.svg",
  17064. extra: 1410 / 1300,
  17065. bottom: 0.015
  17066. }
  17067. },
  17068. frontDressed: {
  17069. height: math.unit(8, "feet"),
  17070. weight: math.unit(225, "lb"),
  17071. name: "Front (Dressed",
  17072. image: {
  17073. source: "./media/characters/talana/front-dressed.svg",
  17074. extra: 1410 / 1300,
  17075. bottom: 0.015
  17076. }
  17077. },
  17078. },
  17079. [
  17080. {
  17081. name: "Normal",
  17082. height: math.unit(8, "feet"),
  17083. default: true
  17084. },
  17085. ]
  17086. ))
  17087. characterMakers.push(() => makeCharacter(
  17088. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17089. {
  17090. side: {
  17091. height: math.unit(7.2, "feet"),
  17092. weight: math.unit(150, "lb"),
  17093. name: "Side",
  17094. image: {
  17095. source: "./media/characters/xeauvok/side.svg",
  17096. extra: 1975 / 1523,
  17097. bottom: 0.07
  17098. }
  17099. },
  17100. },
  17101. [
  17102. {
  17103. name: "Normal",
  17104. height: math.unit(7.2, "feet"),
  17105. default: true
  17106. },
  17107. ]
  17108. ))
  17109. characterMakers.push(() => makeCharacter(
  17110. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17111. {
  17112. side: {
  17113. height: math.unit(10, "feet"),
  17114. weight: math.unit(900, "kg"),
  17115. name: "Side",
  17116. image: {
  17117. source: "./media/characters/zara/side.svg",
  17118. extra: 504 / 498
  17119. }
  17120. },
  17121. },
  17122. [
  17123. {
  17124. name: "Normal",
  17125. height: math.unit(10, "feet"),
  17126. default: true
  17127. },
  17128. ]
  17129. ))
  17130. characterMakers.push(() => makeCharacter(
  17131. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17132. {
  17133. side: {
  17134. height: math.unit(6, "feet"),
  17135. weight: math.unit(150, "lb"),
  17136. name: "Side",
  17137. image: {
  17138. source: "./media/characters/richard-dragon/side.svg",
  17139. extra: 845 / 340,
  17140. bottom: 0.017
  17141. }
  17142. },
  17143. maw: {
  17144. height: math.unit(2.97, "feet"),
  17145. name: "Maw",
  17146. image: {
  17147. source: "./media/characters/richard-dragon/maw.svg"
  17148. }
  17149. },
  17150. },
  17151. [
  17152. ]
  17153. ))
  17154. characterMakers.push(() => makeCharacter(
  17155. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17156. {
  17157. front: {
  17158. height: math.unit(4, "feet"),
  17159. weight: math.unit(100, "lb"),
  17160. name: "Front",
  17161. image: {
  17162. source: "./media/characters/richard-smeargle/front.svg",
  17163. extra: 2952 / 2820,
  17164. bottom: 0.028
  17165. }
  17166. },
  17167. },
  17168. [
  17169. {
  17170. name: "Normal",
  17171. height: math.unit(4, "feet"),
  17172. default: true
  17173. },
  17174. {
  17175. name: "Dynamax",
  17176. height: math.unit(20, "meters")
  17177. },
  17178. ]
  17179. ))
  17180. characterMakers.push(() => makeCharacter(
  17181. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17182. {
  17183. front: {
  17184. height: math.unit(6, "feet"),
  17185. weight: math.unit(110, "lb"),
  17186. name: "Front",
  17187. image: {
  17188. source: "./media/characters/klay/front.svg",
  17189. extra: 962 / 883,
  17190. bottom: 0.04
  17191. }
  17192. },
  17193. back: {
  17194. height: math.unit(6, "feet"),
  17195. weight: math.unit(110, "lb"),
  17196. name: "Back",
  17197. image: {
  17198. source: "./media/characters/klay/back.svg",
  17199. extra: 962 / 883
  17200. }
  17201. },
  17202. beans: {
  17203. height: math.unit(1.15, "feet"),
  17204. name: "Beans",
  17205. image: {
  17206. source: "./media/characters/klay/beans.svg"
  17207. }
  17208. },
  17209. },
  17210. [
  17211. {
  17212. name: "Micro",
  17213. height: math.unit(6, "inches")
  17214. },
  17215. {
  17216. name: "Mini",
  17217. height: math.unit(3, "feet")
  17218. },
  17219. {
  17220. name: "Normal",
  17221. height: math.unit(6, "feet"),
  17222. default: true
  17223. },
  17224. {
  17225. name: "Big",
  17226. height: math.unit(25, "feet")
  17227. },
  17228. {
  17229. name: "Macro",
  17230. height: math.unit(100, "feet")
  17231. },
  17232. {
  17233. name: "Megamacro",
  17234. height: math.unit(400, "feet")
  17235. },
  17236. ]
  17237. ))
  17238. characterMakers.push(() => makeCharacter(
  17239. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17240. {
  17241. front: {
  17242. height: math.unit(6, "feet"),
  17243. weight: math.unit(160, "lb"),
  17244. name: "Front",
  17245. image: {
  17246. source: "./media/characters/marcus/front.svg",
  17247. extra: 734 / 676,
  17248. bottom: 0.03
  17249. }
  17250. },
  17251. },
  17252. [
  17253. {
  17254. name: "Little",
  17255. height: math.unit(6, "feet")
  17256. },
  17257. {
  17258. name: "Normal",
  17259. height: math.unit(110, "feet"),
  17260. default: true
  17261. },
  17262. {
  17263. name: "Macro",
  17264. height: math.unit(250, "feet")
  17265. },
  17266. {
  17267. name: "Megamacro",
  17268. height: math.unit(1000, "feet")
  17269. },
  17270. ]
  17271. ))
  17272. characterMakers.push(() => makeCharacter(
  17273. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17274. {
  17275. front: {
  17276. height: math.unit(7, "feet"),
  17277. weight: math.unit(275, "lb"),
  17278. name: "Front",
  17279. image: {
  17280. source: "./media/characters/claude-delroute/front.svg",
  17281. extra: 230 / 214,
  17282. bottom: 0.007
  17283. }
  17284. },
  17285. side: {
  17286. height: math.unit(7, "feet"),
  17287. weight: math.unit(275, "lb"),
  17288. name: "Side",
  17289. image: {
  17290. source: "./media/characters/claude-delroute/side.svg",
  17291. extra: 222 / 214,
  17292. bottom: 0.01
  17293. }
  17294. },
  17295. back: {
  17296. height: math.unit(7, "feet"),
  17297. weight: math.unit(275, "lb"),
  17298. name: "Back",
  17299. image: {
  17300. source: "./media/characters/claude-delroute/back.svg",
  17301. extra: 230 / 214,
  17302. bottom: 0.015
  17303. }
  17304. },
  17305. maw: {
  17306. height: math.unit(0.6407, "meters"),
  17307. name: "Maw",
  17308. image: {
  17309. source: "./media/characters/claude-delroute/maw.svg"
  17310. }
  17311. },
  17312. },
  17313. [
  17314. {
  17315. name: "Normal",
  17316. height: math.unit(7, "feet"),
  17317. default: true
  17318. },
  17319. {
  17320. name: "Lorge",
  17321. height: math.unit(20, "feet")
  17322. },
  17323. ]
  17324. ))
  17325. characterMakers.push(() => makeCharacter(
  17326. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17327. {
  17328. front: {
  17329. height: math.unit(8 + 4 / 12, "feet"),
  17330. weight: math.unit(600, "lb"),
  17331. name: "Front",
  17332. image: {
  17333. source: "./media/characters/dragonien/front.svg",
  17334. extra: 100 / 94,
  17335. bottom: 3.3 / 103.3445
  17336. }
  17337. },
  17338. back: {
  17339. height: math.unit(8 + 4 / 12, "feet"),
  17340. weight: math.unit(600, "lb"),
  17341. name: "Back",
  17342. image: {
  17343. source: "./media/characters/dragonien/back.svg",
  17344. extra: 776 / 746,
  17345. bottom: 6.4 / 782.0616
  17346. }
  17347. },
  17348. foot: {
  17349. height: math.unit(1.54, "feet"),
  17350. name: "Foot",
  17351. image: {
  17352. source: "./media/characters/dragonien/foot.svg",
  17353. }
  17354. },
  17355. },
  17356. [
  17357. {
  17358. name: "Normal",
  17359. height: math.unit(8 + 4 / 12, "feet"),
  17360. default: true
  17361. },
  17362. {
  17363. name: "Macro",
  17364. height: math.unit(200, "feet")
  17365. },
  17366. {
  17367. name: "Megamacro",
  17368. height: math.unit(1, "mile")
  17369. },
  17370. {
  17371. name: "Gigamacro",
  17372. height: math.unit(1000, "miles")
  17373. },
  17374. ]
  17375. ))
  17376. characterMakers.push(() => makeCharacter(
  17377. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17378. {
  17379. front: {
  17380. height: math.unit(5 + 2 / 12, "feet"),
  17381. weight: math.unit(110, "lb"),
  17382. name: "Front",
  17383. image: {
  17384. source: "./media/characters/desta/front.svg",
  17385. extra: 767/726,
  17386. bottom: 11.7/779
  17387. }
  17388. },
  17389. back: {
  17390. height: math.unit(5 + 2 / 12, "feet"),
  17391. weight: math.unit(110, "lb"),
  17392. name: "Back",
  17393. image: {
  17394. source: "./media/characters/desta/back.svg",
  17395. extra: 777/728,
  17396. bottom: 6/784
  17397. }
  17398. },
  17399. frontAlt: {
  17400. height: math.unit(5 + 2 / 12, "feet"),
  17401. weight: math.unit(110, "lb"),
  17402. name: "Front",
  17403. image: {
  17404. source: "./media/characters/desta/front-alt.svg",
  17405. extra: 1482 / 1417
  17406. }
  17407. },
  17408. side: {
  17409. height: math.unit(5 + 2 / 12, "feet"),
  17410. weight: math.unit(110, "lb"),
  17411. name: "Side",
  17412. image: {
  17413. source: "./media/characters/desta/side.svg",
  17414. extra: 2579 / 2491,
  17415. bottom: 0.053
  17416. }
  17417. },
  17418. },
  17419. [
  17420. {
  17421. name: "Micro",
  17422. height: math.unit(6, "inches")
  17423. },
  17424. {
  17425. name: "Normal",
  17426. height: math.unit(5 + 2 / 12, "feet"),
  17427. default: true
  17428. },
  17429. {
  17430. name: "Macro",
  17431. height: math.unit(62, "feet")
  17432. },
  17433. {
  17434. name: "Megamacro",
  17435. height: math.unit(1800, "feet")
  17436. },
  17437. ]
  17438. ))
  17439. characterMakers.push(() => makeCharacter(
  17440. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17441. {
  17442. front: {
  17443. height: math.unit(10, "feet"),
  17444. weight: math.unit(700, "lb"),
  17445. name: "Front",
  17446. image: {
  17447. source: "./media/characters/storm-alystar/front.svg",
  17448. extra: 2112 / 1898,
  17449. bottom: 0.034
  17450. }
  17451. },
  17452. },
  17453. [
  17454. {
  17455. name: "Micro",
  17456. height: math.unit(3.5, "inches")
  17457. },
  17458. {
  17459. name: "Normal",
  17460. height: math.unit(10, "feet"),
  17461. default: true
  17462. },
  17463. {
  17464. name: "Macro",
  17465. height: math.unit(400, "feet")
  17466. },
  17467. {
  17468. name: "Deific",
  17469. height: math.unit(60, "miles")
  17470. },
  17471. ]
  17472. ))
  17473. characterMakers.push(() => makeCharacter(
  17474. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17475. {
  17476. front: {
  17477. height: math.unit(2.35, "meters"),
  17478. weight: math.unit(119, "kg"),
  17479. name: "Front",
  17480. image: {
  17481. source: "./media/characters/ilia/front.svg",
  17482. extra: 1285 / 1255,
  17483. bottom: 0.06
  17484. }
  17485. },
  17486. },
  17487. [
  17488. {
  17489. name: "Normal",
  17490. height: math.unit(2.35, "meters")
  17491. },
  17492. {
  17493. name: "Macro",
  17494. height: math.unit(140, "meters"),
  17495. default: true
  17496. },
  17497. {
  17498. name: "Megamacro",
  17499. height: math.unit(100, "miles")
  17500. },
  17501. ]
  17502. ))
  17503. characterMakers.push(() => makeCharacter(
  17504. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17505. {
  17506. front: {
  17507. height: math.unit(6 + 5 / 12, "feet"),
  17508. weight: math.unit(190, "lb"),
  17509. name: "Front",
  17510. image: {
  17511. source: "./media/characters/kingdead/front.svg",
  17512. extra: 1228 / 1177
  17513. }
  17514. },
  17515. },
  17516. [
  17517. {
  17518. name: "Micro",
  17519. height: math.unit(7, "inches")
  17520. },
  17521. {
  17522. name: "Normal",
  17523. height: math.unit(6 + 5 / 12, "feet")
  17524. },
  17525. {
  17526. name: "Macro",
  17527. height: math.unit(150, "feet"),
  17528. default: true
  17529. },
  17530. {
  17531. name: "Megamacro",
  17532. height: math.unit(200, "miles")
  17533. },
  17534. ]
  17535. ))
  17536. characterMakers.push(() => makeCharacter(
  17537. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17538. {
  17539. front: {
  17540. height: math.unit(8, "feet"),
  17541. weight: math.unit(600, "lb"),
  17542. name: "Front",
  17543. image: {
  17544. source: "./media/characters/kyrehx/front.svg",
  17545. extra: 1195 / 1095,
  17546. bottom: 0.034
  17547. }
  17548. },
  17549. },
  17550. [
  17551. {
  17552. name: "Micro",
  17553. height: math.unit(2, "inches")
  17554. },
  17555. {
  17556. name: "Normal",
  17557. height: math.unit(8, "feet"),
  17558. default: true
  17559. },
  17560. {
  17561. name: "Macro",
  17562. height: math.unit(255, "feet")
  17563. },
  17564. ]
  17565. ))
  17566. characterMakers.push(() => makeCharacter(
  17567. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17568. {
  17569. front: {
  17570. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17571. weight: math.unit(184, "lb"),
  17572. name: "Front",
  17573. image: {
  17574. source: "./media/characters/xang/front.svg",
  17575. extra: 845 / 755
  17576. }
  17577. },
  17578. },
  17579. [
  17580. {
  17581. name: "Normal",
  17582. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17583. default: true
  17584. },
  17585. {
  17586. name: "Macro",
  17587. height: math.unit(0.935 * 146, "feet")
  17588. },
  17589. {
  17590. name: "Megamacro",
  17591. height: math.unit(0.935 * 3, "miles")
  17592. },
  17593. ]
  17594. ))
  17595. characterMakers.push(() => makeCharacter(
  17596. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17597. {
  17598. frontDressed: {
  17599. height: math.unit(5 + 7 / 12, "feet"),
  17600. weight: math.unit(140, "lb"),
  17601. name: "Front (Dressed)",
  17602. image: {
  17603. source: "./media/characters/doc-weardno/front-dressed.svg",
  17604. extra: 263 / 234
  17605. }
  17606. },
  17607. backDressed: {
  17608. height: math.unit(5 + 7 / 12, "feet"),
  17609. weight: math.unit(140, "lb"),
  17610. name: "Back (Dressed)",
  17611. image: {
  17612. source: "./media/characters/doc-weardno/back-dressed.svg",
  17613. extra: 266 / 238
  17614. }
  17615. },
  17616. front: {
  17617. height: math.unit(5 + 7 / 12, "feet"),
  17618. weight: math.unit(140, "lb"),
  17619. name: "Front",
  17620. image: {
  17621. source: "./media/characters/doc-weardno/front.svg",
  17622. extra: 254 / 233
  17623. }
  17624. },
  17625. },
  17626. [
  17627. {
  17628. name: "Micro",
  17629. height: math.unit(3, "inches")
  17630. },
  17631. {
  17632. name: "Normal",
  17633. height: math.unit(5 + 7 / 12, "feet"),
  17634. default: true
  17635. },
  17636. {
  17637. name: "Macro",
  17638. height: math.unit(25, "feet")
  17639. },
  17640. {
  17641. name: "Megamacro",
  17642. height: math.unit(2, "miles")
  17643. },
  17644. ]
  17645. ))
  17646. characterMakers.push(() => makeCharacter(
  17647. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17648. {
  17649. front: {
  17650. height: math.unit(6 + 2 / 12, "feet"),
  17651. weight: math.unit(153, "lb"),
  17652. name: "Front",
  17653. image: {
  17654. source: "./media/characters/seth-whilst/front.svg",
  17655. bottom: 0.07
  17656. }
  17657. },
  17658. },
  17659. [
  17660. {
  17661. name: "Micro",
  17662. height: math.unit(5, "inches")
  17663. },
  17664. {
  17665. name: "Normal",
  17666. height: math.unit(6 + 2 / 12, "feet"),
  17667. default: true
  17668. },
  17669. ]
  17670. ))
  17671. characterMakers.push(() => makeCharacter(
  17672. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  17673. {
  17674. front: {
  17675. height: math.unit(3, "inches"),
  17676. weight: math.unit(8, "grams"),
  17677. name: "Front",
  17678. image: {
  17679. source: "./media/characters/pocket-jabari/front.svg",
  17680. extra: 1024 / 974,
  17681. bottom: 0.039
  17682. }
  17683. },
  17684. },
  17685. [
  17686. {
  17687. name: "Minimicro",
  17688. height: math.unit(8, "mm")
  17689. },
  17690. {
  17691. name: "Micro",
  17692. height: math.unit(3, "inches"),
  17693. default: true
  17694. },
  17695. {
  17696. name: "Normal",
  17697. height: math.unit(3, "feet")
  17698. },
  17699. ]
  17700. ))
  17701. characterMakers.push(() => makeCharacter(
  17702. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  17703. {
  17704. front: {
  17705. height: math.unit(15, "feet"),
  17706. weight: math.unit(3280, "lb"),
  17707. name: "Front",
  17708. image: {
  17709. source: "./media/characters/sapphy/front.svg",
  17710. extra: 671 / 577,
  17711. bottom: 0.085
  17712. }
  17713. },
  17714. back: {
  17715. height: math.unit(15, "feet"),
  17716. weight: math.unit(3280, "lb"),
  17717. name: "Back",
  17718. image: {
  17719. source: "./media/characters/sapphy/back.svg",
  17720. extra: 631 / 607,
  17721. bottom: 0.045
  17722. }
  17723. },
  17724. },
  17725. [
  17726. {
  17727. name: "Normal",
  17728. height: math.unit(15, "feet")
  17729. },
  17730. {
  17731. name: "Casual Macro",
  17732. height: math.unit(120, "feet")
  17733. },
  17734. {
  17735. name: "Macro",
  17736. height: math.unit(2150, "feet"),
  17737. default: true
  17738. },
  17739. {
  17740. name: "Megamacro",
  17741. height: math.unit(8, "miles")
  17742. },
  17743. {
  17744. name: "Galaxy Mom",
  17745. height: math.unit(6, "megalightyears")
  17746. },
  17747. ]
  17748. ))
  17749. characterMakers.push(() => makeCharacter(
  17750. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  17751. {
  17752. front: {
  17753. height: math.unit(6, "feet"),
  17754. weight: math.unit(170, "lb"),
  17755. name: "Front",
  17756. image: {
  17757. source: "./media/characters/kiro/front.svg",
  17758. extra: 1064 / 1012,
  17759. bottom: 0.052
  17760. }
  17761. },
  17762. },
  17763. [
  17764. {
  17765. name: "Micro",
  17766. height: math.unit(6, "inches")
  17767. },
  17768. {
  17769. name: "Normal",
  17770. height: math.unit(6, "feet"),
  17771. default: true
  17772. },
  17773. {
  17774. name: "Macro",
  17775. height: math.unit(72, "feet")
  17776. },
  17777. ]
  17778. ))
  17779. characterMakers.push(() => makeCharacter(
  17780. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  17781. {
  17782. front: {
  17783. height: math.unit(5 + 9 / 12, "feet"),
  17784. weight: math.unit(175, "lb"),
  17785. name: "Front",
  17786. image: {
  17787. source: "./media/characters/irishfox/front.svg",
  17788. extra: 1912 / 1680,
  17789. bottom: 0.02
  17790. }
  17791. },
  17792. },
  17793. [
  17794. {
  17795. name: "Nano",
  17796. height: math.unit(1, "mm")
  17797. },
  17798. {
  17799. name: "Micro",
  17800. height: math.unit(2, "inches")
  17801. },
  17802. {
  17803. name: "Normal",
  17804. height: math.unit(5 + 9 / 12, "feet"),
  17805. default: true
  17806. },
  17807. {
  17808. name: "Macro",
  17809. height: math.unit(45, "feet")
  17810. },
  17811. ]
  17812. ))
  17813. characterMakers.push(() => makeCharacter(
  17814. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  17815. {
  17816. front: {
  17817. height: math.unit(6 + 1 / 12, "feet"),
  17818. weight: math.unit(150, "lb"),
  17819. name: "Front",
  17820. image: {
  17821. source: "./media/characters/aronai-sieyes/front.svg",
  17822. extra: 1556 / 1480,
  17823. bottom: 0.015
  17824. }
  17825. },
  17826. side: {
  17827. height: math.unit(6 + 1 / 12, "feet"),
  17828. weight: math.unit(150, "lb"),
  17829. name: "Side",
  17830. image: {
  17831. source: "./media/characters/aronai-sieyes/side.svg",
  17832. extra: 1433 / 1390,
  17833. bottom: 0.0393
  17834. }
  17835. },
  17836. back: {
  17837. height: math.unit(6 + 1 / 12, "feet"),
  17838. weight: math.unit(150, "lb"),
  17839. name: "Back",
  17840. image: {
  17841. source: "./media/characters/aronai-sieyes/back.svg",
  17842. extra: 1544 / 1494,
  17843. bottom: 0.02
  17844. }
  17845. },
  17846. frontClothed: {
  17847. height: math.unit(6 + 1 / 12, "feet"),
  17848. weight: math.unit(150, "lb"),
  17849. name: "Front (Clothed)",
  17850. image: {
  17851. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  17852. extra: 1582 / 1527
  17853. }
  17854. },
  17855. feral: {
  17856. height: math.unit(18, "feet"),
  17857. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  17858. name: "Feral",
  17859. image: {
  17860. source: "./media/characters/aronai-sieyes/feral.svg",
  17861. extra: 1530 / 1240,
  17862. bottom: 0.035
  17863. }
  17864. },
  17865. },
  17866. [
  17867. {
  17868. name: "Micro",
  17869. height: math.unit(2, "inches")
  17870. },
  17871. {
  17872. name: "Normal",
  17873. height: math.unit(6 + 1 / 12, "feet"),
  17874. default: true
  17875. }
  17876. ]
  17877. ))
  17878. characterMakers.push(() => makeCharacter(
  17879. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  17880. {
  17881. front: {
  17882. height: math.unit(12, "feet"),
  17883. weight: math.unit(410, "kg"),
  17884. name: "Front",
  17885. image: {
  17886. source: "./media/characters/xuna/front.svg",
  17887. extra: 2184 / 1980
  17888. }
  17889. },
  17890. side: {
  17891. height: math.unit(12, "feet"),
  17892. weight: math.unit(410, "kg"),
  17893. name: "Side",
  17894. image: {
  17895. source: "./media/characters/xuna/side.svg",
  17896. extra: 2184 / 1980
  17897. }
  17898. },
  17899. back: {
  17900. height: math.unit(12, "feet"),
  17901. weight: math.unit(410, "kg"),
  17902. name: "Back",
  17903. image: {
  17904. source: "./media/characters/xuna/back.svg",
  17905. extra: 2184 / 1980
  17906. }
  17907. },
  17908. },
  17909. [
  17910. {
  17911. name: "Nano glow",
  17912. height: math.unit(10, "nm")
  17913. },
  17914. {
  17915. name: "Micro floof",
  17916. height: math.unit(0.3, "m")
  17917. },
  17918. {
  17919. name: "Huggable softy boi",
  17920. height: math.unit(3.6576, "m"),
  17921. default: true
  17922. },
  17923. {
  17924. name: "Admirable floof",
  17925. height: math.unit(80, "meters")
  17926. },
  17927. {
  17928. name: "Gentle macro",
  17929. height: math.unit(300, "meters")
  17930. },
  17931. {
  17932. name: "Very careful floof",
  17933. height: math.unit(3200, "meters")
  17934. },
  17935. {
  17936. name: "The mega floof",
  17937. height: math.unit(36000, "meters")
  17938. },
  17939. {
  17940. name: "Giga-fur-Wicker",
  17941. height: math.unit(4800000, "meters")
  17942. },
  17943. {
  17944. name: "Licky world",
  17945. height: math.unit(20000000, "meters")
  17946. },
  17947. {
  17948. name: "Floofy cyan sun",
  17949. height: math.unit(1500000000, "meters")
  17950. },
  17951. {
  17952. name: "Milky Wicker",
  17953. height: math.unit(1000000000000000000000, "meters")
  17954. },
  17955. {
  17956. name: "The observing Wicker",
  17957. height: math.unit(999999999999999999999999999, "meters")
  17958. },
  17959. ]
  17960. ))
  17961. characterMakers.push(() => makeCharacter(
  17962. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  17963. {
  17964. front: {
  17965. height: math.unit(5 + 9 / 12, "feet"),
  17966. weight: math.unit(150, "lb"),
  17967. name: "Front",
  17968. image: {
  17969. source: "./media/characters/arokha-sieyes/front.svg",
  17970. extra: 1425 / 1284,
  17971. bottom: 0.05
  17972. }
  17973. },
  17974. },
  17975. [
  17976. {
  17977. name: "Normal",
  17978. height: math.unit(5 + 9 / 12, "feet")
  17979. },
  17980. {
  17981. name: "Macro",
  17982. height: math.unit(30, "meters"),
  17983. default: true
  17984. },
  17985. ]
  17986. ))
  17987. characterMakers.push(() => makeCharacter(
  17988. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  17989. {
  17990. front: {
  17991. height: math.unit(6, "feet"),
  17992. weight: math.unit(180, "lb"),
  17993. name: "Front",
  17994. image: {
  17995. source: "./media/characters/arokh-sieyes/front.svg",
  17996. extra: 1830 / 1769,
  17997. bottom: 0.01
  17998. }
  17999. },
  18000. },
  18001. [
  18002. {
  18003. name: "Normal",
  18004. height: math.unit(6, "feet")
  18005. },
  18006. {
  18007. name: "Macro",
  18008. height: math.unit(30, "meters"),
  18009. default: true
  18010. },
  18011. ]
  18012. ))
  18013. characterMakers.push(() => makeCharacter(
  18014. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18015. {
  18016. side: {
  18017. height: math.unit(13 + 1 / 12, "feet"),
  18018. weight: math.unit(8.5, "tonnes"),
  18019. name: "Side",
  18020. image: {
  18021. source: "./media/characters/goldeneye/side.svg",
  18022. extra: 1182 / 778,
  18023. bottom: 0.067
  18024. }
  18025. },
  18026. paw: {
  18027. height: math.unit(3.4, "feet"),
  18028. name: "Paw",
  18029. image: {
  18030. source: "./media/characters/goldeneye/paw.svg"
  18031. }
  18032. },
  18033. },
  18034. [
  18035. {
  18036. name: "Normal",
  18037. height: math.unit(13 + 1 / 12, "feet"),
  18038. default: true
  18039. },
  18040. ]
  18041. ))
  18042. characterMakers.push(() => makeCharacter(
  18043. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18044. {
  18045. front: {
  18046. height: math.unit(6 + 1 / 12, "feet"),
  18047. weight: math.unit(210, "lb"),
  18048. name: "Front",
  18049. image: {
  18050. source: "./media/characters/leonardo-lycheborne/front.svg",
  18051. extra: 390 / 365,
  18052. bottom: 0.032
  18053. }
  18054. },
  18055. side: {
  18056. height: math.unit(6 + 1 / 12, "feet"),
  18057. weight: math.unit(210, "lb"),
  18058. name: "Side",
  18059. image: {
  18060. source: "./media/characters/leonardo-lycheborne/side.svg",
  18061. extra: 390 / 365,
  18062. bottom: 0.005
  18063. }
  18064. },
  18065. back: {
  18066. height: math.unit(6 + 1 / 12, "feet"),
  18067. weight: math.unit(210, "lb"),
  18068. name: "Back",
  18069. image: {
  18070. source: "./media/characters/leonardo-lycheborne/back.svg",
  18071. extra: 392 / 366,
  18072. bottom: 0.01
  18073. }
  18074. },
  18075. hand: {
  18076. height: math.unit(1.08, "feet"),
  18077. name: "Hand",
  18078. image: {
  18079. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18080. }
  18081. },
  18082. foot: {
  18083. height: math.unit(1.32, "feet"),
  18084. name: "Foot",
  18085. image: {
  18086. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18087. }
  18088. },
  18089. were: {
  18090. height: math.unit(20, "feet"),
  18091. weight: math.unit(7800, "lb"),
  18092. name: "Were",
  18093. image: {
  18094. source: "./media/characters/leonardo-lycheborne/were.svg",
  18095. extra: 308 / 294,
  18096. bottom: 0.048
  18097. }
  18098. },
  18099. feral: {
  18100. height: math.unit(7.5, "feet"),
  18101. weight: math.unit(600, "lb"),
  18102. name: "Feral",
  18103. image: {
  18104. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18105. extra: 210 / 186,
  18106. bottom: 0.108
  18107. }
  18108. },
  18109. taur: {
  18110. height: math.unit(11, "feet"),
  18111. weight: math.unit(3300, "lb"),
  18112. name: "Taur",
  18113. image: {
  18114. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18115. extra: 320 / 303,
  18116. bottom: 0.025
  18117. }
  18118. },
  18119. barghest: {
  18120. height: math.unit(11, "feet"),
  18121. weight: math.unit(1300, "lb"),
  18122. name: "Barghest",
  18123. image: {
  18124. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18125. extra: 323 / 302,
  18126. bottom: 0.027
  18127. }
  18128. },
  18129. dick: {
  18130. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18131. name: "Dick",
  18132. image: {
  18133. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18134. }
  18135. },
  18136. dickWere: {
  18137. height: math.unit((20) / 3.8, "feet"),
  18138. name: "Dick (Were)",
  18139. image: {
  18140. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18141. }
  18142. },
  18143. },
  18144. [
  18145. {
  18146. name: "Normal",
  18147. height: math.unit(6 + 1 / 12, "feet"),
  18148. default: true
  18149. },
  18150. ]
  18151. ))
  18152. characterMakers.push(() => makeCharacter(
  18153. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18154. {
  18155. front: {
  18156. height: math.unit(10, "feet"),
  18157. weight: math.unit(350, "lb"),
  18158. name: "Front",
  18159. image: {
  18160. source: "./media/characters/jet/front.svg",
  18161. extra: 2050 / 1980,
  18162. bottom: 0.013
  18163. }
  18164. },
  18165. back: {
  18166. height: math.unit(10, "feet"),
  18167. weight: math.unit(350, "lb"),
  18168. name: "Back",
  18169. image: {
  18170. source: "./media/characters/jet/back.svg",
  18171. extra: 2050 / 1980,
  18172. bottom: 0.013
  18173. }
  18174. },
  18175. },
  18176. [
  18177. {
  18178. name: "Micro",
  18179. height: math.unit(6, "inches")
  18180. },
  18181. {
  18182. name: "Normal",
  18183. height: math.unit(10, "feet"),
  18184. default: true
  18185. },
  18186. {
  18187. name: "Macro",
  18188. height: math.unit(100, "feet")
  18189. },
  18190. ]
  18191. ))
  18192. characterMakers.push(() => makeCharacter(
  18193. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18194. {
  18195. front: {
  18196. height: math.unit(15, "feet"),
  18197. weight: math.unit(2800, "lb"),
  18198. name: "Front",
  18199. image: {
  18200. source: "./media/characters/tanarath/front.svg",
  18201. extra: 2392 / 2220,
  18202. bottom: 0.03
  18203. }
  18204. },
  18205. back: {
  18206. height: math.unit(15, "feet"),
  18207. weight: math.unit(2800, "lb"),
  18208. name: "Back",
  18209. image: {
  18210. source: "./media/characters/tanarath/back.svg",
  18211. extra: 2392 / 2220,
  18212. bottom: 0.03
  18213. }
  18214. },
  18215. },
  18216. [
  18217. {
  18218. name: "Normal",
  18219. height: math.unit(15, "feet"),
  18220. default: true
  18221. },
  18222. ]
  18223. ))
  18224. characterMakers.push(() => makeCharacter(
  18225. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18226. {
  18227. front: {
  18228. height: math.unit(7 + 1 / 12, "feet"),
  18229. weight: math.unit(175, "lb"),
  18230. name: "Front",
  18231. image: {
  18232. source: "./media/characters/patty-cattybatty/front.svg",
  18233. extra: 908 / 874,
  18234. bottom: 0.025
  18235. }
  18236. },
  18237. },
  18238. [
  18239. {
  18240. name: "Micro",
  18241. height: math.unit(1, "inch")
  18242. },
  18243. {
  18244. name: "Normal",
  18245. height: math.unit(7 + 1 / 12, "feet")
  18246. },
  18247. {
  18248. name: "Mini Macro",
  18249. height: math.unit(155, "feet")
  18250. },
  18251. {
  18252. name: "Macro",
  18253. height: math.unit(1077, "feet")
  18254. },
  18255. {
  18256. name: "Mega Macro",
  18257. height: math.unit(47650, "feet"),
  18258. default: true
  18259. },
  18260. {
  18261. name: "Giga Macro",
  18262. height: math.unit(440, "miles")
  18263. },
  18264. {
  18265. name: "Tera Macro",
  18266. height: math.unit(8700, "miles")
  18267. },
  18268. {
  18269. name: "Planetary Macro",
  18270. height: math.unit(32700, "miles")
  18271. },
  18272. {
  18273. name: "Solar Macro",
  18274. height: math.unit(550000, "miles")
  18275. },
  18276. {
  18277. name: "Celestial Macro",
  18278. height: math.unit(2.5, "AU")
  18279. },
  18280. ]
  18281. ))
  18282. characterMakers.push(() => makeCharacter(
  18283. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18284. {
  18285. front: {
  18286. height: math.unit(4 + 5 / 12, "feet"),
  18287. weight: math.unit(90, "lb"),
  18288. name: "Front",
  18289. image: {
  18290. source: "./media/characters/cappu/front.svg",
  18291. extra: 1247 / 1152,
  18292. bottom: 0.012
  18293. }
  18294. },
  18295. },
  18296. [
  18297. {
  18298. name: "Normal",
  18299. height: math.unit(4 + 5 / 12, "feet"),
  18300. default: true
  18301. },
  18302. ]
  18303. ))
  18304. characterMakers.push(() => makeCharacter(
  18305. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18306. {
  18307. frontDressed: {
  18308. height: math.unit(70, "cm"),
  18309. weight: math.unit(6, "kg"),
  18310. name: "Front (Dressed)",
  18311. image: {
  18312. source: "./media/characters/sebi/front-dressed.svg",
  18313. extra: 713.5 / 686.5,
  18314. bottom: 0.003
  18315. }
  18316. },
  18317. front: {
  18318. height: math.unit(70, "cm"),
  18319. weight: math.unit(5, "kg"),
  18320. name: "Front",
  18321. image: {
  18322. source: "./media/characters/sebi/front.svg",
  18323. extra: 713.5 / 686.5,
  18324. bottom: 0.003
  18325. }
  18326. }
  18327. },
  18328. [
  18329. {
  18330. name: "Normal",
  18331. height: math.unit(70, "cm"),
  18332. default: true
  18333. },
  18334. {
  18335. name: "Macro",
  18336. height: math.unit(8, "meters")
  18337. },
  18338. ]
  18339. ))
  18340. characterMakers.push(() => makeCharacter(
  18341. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18342. {
  18343. front: {
  18344. height: math.unit(6, "feet"),
  18345. weight: math.unit(150, "lb"),
  18346. name: "Front",
  18347. image: {
  18348. source: "./media/characters/typhek/front.svg",
  18349. extra: 1948 / 1929,
  18350. bottom: 0.025
  18351. }
  18352. },
  18353. side: {
  18354. height: math.unit(6, "feet"),
  18355. weight: math.unit(150, "lb"),
  18356. name: "Side",
  18357. image: {
  18358. source: "./media/characters/typhek/side.svg",
  18359. extra: 2034 / 2010,
  18360. bottom: 0.003
  18361. }
  18362. },
  18363. back: {
  18364. height: math.unit(6, "feet"),
  18365. weight: math.unit(150, "lb"),
  18366. name: "Back",
  18367. image: {
  18368. source: "./media/characters/typhek/back.svg",
  18369. extra: 2005 / 1978,
  18370. bottom: 0.004
  18371. }
  18372. },
  18373. palm: {
  18374. height: math.unit(1.2, "feet"),
  18375. name: "Palm",
  18376. image: {
  18377. source: "./media/characters/typhek/palm.svg"
  18378. }
  18379. },
  18380. fist: {
  18381. height: math.unit(1.1, "feet"),
  18382. name: "Fist",
  18383. image: {
  18384. source: "./media/characters/typhek/fist.svg"
  18385. }
  18386. },
  18387. foot: {
  18388. height: math.unit(1.57, "feet"),
  18389. name: "Foot",
  18390. image: {
  18391. source: "./media/characters/typhek/foot.svg"
  18392. }
  18393. },
  18394. sole: {
  18395. height: math.unit(2.05, "feet"),
  18396. name: "Sole",
  18397. image: {
  18398. source: "./media/characters/typhek/sole.svg"
  18399. }
  18400. },
  18401. },
  18402. [
  18403. {
  18404. name: "Macro",
  18405. height: math.unit(40, "stories"),
  18406. default: true
  18407. },
  18408. {
  18409. name: "Megamacro",
  18410. height: math.unit(1, "mile")
  18411. },
  18412. {
  18413. name: "Gigamacro",
  18414. height: math.unit(4000, "solarradii")
  18415. },
  18416. {
  18417. name: "Universal",
  18418. height: math.unit(1.1, "universes")
  18419. }
  18420. ]
  18421. ))
  18422. characterMakers.push(() => makeCharacter(
  18423. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18424. {
  18425. side: {
  18426. height: math.unit(5 + 7 / 12, "feet"),
  18427. weight: math.unit(150, "lb"),
  18428. name: "Side",
  18429. image: {
  18430. source: "./media/characters/kassy/side.svg",
  18431. extra: 1280 / 1225,
  18432. bottom: 0.002
  18433. }
  18434. },
  18435. front: {
  18436. height: math.unit(5 + 7 / 12, "feet"),
  18437. weight: math.unit(150, "lb"),
  18438. name: "Front",
  18439. image: {
  18440. source: "./media/characters/kassy/front.svg",
  18441. extra: 1280 / 1225,
  18442. bottom: 0.025
  18443. }
  18444. },
  18445. back: {
  18446. height: math.unit(5 + 7 / 12, "feet"),
  18447. weight: math.unit(150, "lb"),
  18448. name: "Back",
  18449. image: {
  18450. source: "./media/characters/kassy/back.svg",
  18451. extra: 1280 / 1225,
  18452. bottom: 0.002
  18453. }
  18454. },
  18455. foot: {
  18456. height: math.unit(1.266, "feet"),
  18457. name: "Foot",
  18458. image: {
  18459. source: "./media/characters/kassy/foot.svg"
  18460. }
  18461. },
  18462. },
  18463. [
  18464. {
  18465. name: "Normal",
  18466. height: math.unit(5 + 7 / 12, "feet")
  18467. },
  18468. {
  18469. name: "Macro",
  18470. height: math.unit(137, "feet"),
  18471. default: true
  18472. },
  18473. {
  18474. name: "Megamacro",
  18475. height: math.unit(1, "mile")
  18476. },
  18477. ]
  18478. ))
  18479. characterMakers.push(() => makeCharacter(
  18480. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18481. {
  18482. front: {
  18483. height: math.unit(6 + 1 / 12, "feet"),
  18484. weight: math.unit(200, "lb"),
  18485. name: "Front",
  18486. image: {
  18487. source: "./media/characters/neil/front.svg",
  18488. extra: 1326 / 1250,
  18489. bottom: 0.023
  18490. }
  18491. },
  18492. },
  18493. [
  18494. {
  18495. name: "Normal",
  18496. height: math.unit(6 + 1 / 12, "feet"),
  18497. default: true
  18498. },
  18499. {
  18500. name: "Macro",
  18501. height: math.unit(200, "feet")
  18502. },
  18503. ]
  18504. ))
  18505. characterMakers.push(() => makeCharacter(
  18506. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18507. {
  18508. front: {
  18509. height: math.unit(5 + 9 / 12, "feet"),
  18510. weight: math.unit(190, "lb"),
  18511. name: "Front",
  18512. image: {
  18513. source: "./media/characters/atticus/front.svg",
  18514. extra: 2934 / 2785,
  18515. bottom: 0.025
  18516. }
  18517. },
  18518. },
  18519. [
  18520. {
  18521. name: "Normal",
  18522. height: math.unit(5 + 9 / 12, "feet"),
  18523. default: true
  18524. },
  18525. {
  18526. name: "Macro",
  18527. height: math.unit(180, "feet")
  18528. },
  18529. ]
  18530. ))
  18531. characterMakers.push(() => makeCharacter(
  18532. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18533. {
  18534. side: {
  18535. height: math.unit(9, "feet"),
  18536. weight: math.unit(650, "lb"),
  18537. name: "Side",
  18538. image: {
  18539. source: "./media/characters/milo/side.svg",
  18540. extra: 2644 / 2310,
  18541. bottom: 0.032
  18542. }
  18543. },
  18544. },
  18545. [
  18546. {
  18547. name: "Normal",
  18548. height: math.unit(9, "feet"),
  18549. default: true
  18550. },
  18551. {
  18552. name: "Macro",
  18553. height: math.unit(300, "feet")
  18554. },
  18555. ]
  18556. ))
  18557. characterMakers.push(() => makeCharacter(
  18558. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18559. {
  18560. side: {
  18561. height: math.unit(8, "meters"),
  18562. weight: math.unit(90000, "kg"),
  18563. name: "Side",
  18564. image: {
  18565. source: "./media/characters/ijzer/side.svg",
  18566. extra: 2756 / 1600,
  18567. bottom: 0.01
  18568. }
  18569. },
  18570. },
  18571. [
  18572. {
  18573. name: "Small",
  18574. height: math.unit(3, "meters")
  18575. },
  18576. {
  18577. name: "Normal",
  18578. height: math.unit(8, "meters"),
  18579. default: true
  18580. },
  18581. {
  18582. name: "Normal+",
  18583. height: math.unit(10, "meters")
  18584. },
  18585. {
  18586. name: "Bigger",
  18587. height: math.unit(24, "meters")
  18588. },
  18589. {
  18590. name: "Huge",
  18591. height: math.unit(80, "meters")
  18592. },
  18593. ]
  18594. ))
  18595. characterMakers.push(() => makeCharacter(
  18596. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18597. {
  18598. front: {
  18599. height: math.unit(6 + 2 / 12, "feet"),
  18600. weight: math.unit(153, "lb"),
  18601. name: "Front",
  18602. image: {
  18603. source: "./media/characters/luca-cervicum/front.svg",
  18604. extra: 370 / 327,
  18605. bottom: 0.015
  18606. }
  18607. },
  18608. back: {
  18609. height: math.unit(6 + 2 / 12, "feet"),
  18610. weight: math.unit(153, "lb"),
  18611. name: "Back",
  18612. image: {
  18613. source: "./media/characters/luca-cervicum/back.svg",
  18614. extra: 367 / 333,
  18615. bottom: 0.005
  18616. }
  18617. },
  18618. frontGear: {
  18619. height: math.unit(6 + 2 / 12, "feet"),
  18620. weight: math.unit(173, "lb"),
  18621. name: "Front (Gear)",
  18622. image: {
  18623. source: "./media/characters/luca-cervicum/front-gear.svg",
  18624. extra: 377 / 333,
  18625. bottom: 0.006
  18626. }
  18627. },
  18628. },
  18629. [
  18630. {
  18631. name: "Normal",
  18632. height: math.unit(6 + 2 / 12, "feet"),
  18633. default: true
  18634. },
  18635. ]
  18636. ))
  18637. characterMakers.push(() => makeCharacter(
  18638. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18639. {
  18640. front: {
  18641. height: math.unit(6 + 1 / 12, "feet"),
  18642. weight: math.unit(304, "lb"),
  18643. name: "Front",
  18644. image: {
  18645. source: "./media/characters/oliver/front.svg",
  18646. extra: 157 / 143,
  18647. bottom: 0.08
  18648. }
  18649. },
  18650. },
  18651. [
  18652. {
  18653. name: "Normal",
  18654. height: math.unit(6 + 1 / 12, "feet"),
  18655. default: true
  18656. },
  18657. ]
  18658. ))
  18659. characterMakers.push(() => makeCharacter(
  18660. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  18661. {
  18662. front: {
  18663. height: math.unit(5 + 7 / 12, "feet"),
  18664. weight: math.unit(140, "lb"),
  18665. name: "Front",
  18666. image: {
  18667. source: "./media/characters/shane/front.svg",
  18668. extra: 304 / 289,
  18669. bottom: 0.005
  18670. }
  18671. },
  18672. },
  18673. [
  18674. {
  18675. name: "Normal",
  18676. height: math.unit(5 + 7 / 12, "feet"),
  18677. default: true
  18678. },
  18679. ]
  18680. ))
  18681. characterMakers.push(() => makeCharacter(
  18682. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  18683. {
  18684. front: {
  18685. height: math.unit(5 + 9 / 12, "feet"),
  18686. weight: math.unit(178, "lb"),
  18687. name: "Front",
  18688. image: {
  18689. source: "./media/characters/shin/front.svg",
  18690. extra: 159 / 151,
  18691. bottom: 0.015
  18692. }
  18693. },
  18694. },
  18695. [
  18696. {
  18697. name: "Normal",
  18698. height: math.unit(5 + 9 / 12, "feet"),
  18699. default: true
  18700. },
  18701. ]
  18702. ))
  18703. characterMakers.push(() => makeCharacter(
  18704. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  18705. {
  18706. front: {
  18707. height: math.unit(5 + 10 / 12, "feet"),
  18708. weight: math.unit(168, "lb"),
  18709. name: "Front",
  18710. image: {
  18711. source: "./media/characters/xerxes/front.svg",
  18712. extra: 282 / 260,
  18713. bottom: 0.045
  18714. }
  18715. },
  18716. },
  18717. [
  18718. {
  18719. name: "Normal",
  18720. height: math.unit(5 + 10 / 12, "feet"),
  18721. default: true
  18722. },
  18723. ]
  18724. ))
  18725. characterMakers.push(() => makeCharacter(
  18726. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  18727. {
  18728. front: {
  18729. height: math.unit(6 + 7 / 12, "feet"),
  18730. weight: math.unit(208, "lb"),
  18731. name: "Front",
  18732. image: {
  18733. source: "./media/characters/chaska/front.svg",
  18734. extra: 332 / 319,
  18735. bottom: 0.015
  18736. }
  18737. },
  18738. },
  18739. [
  18740. {
  18741. name: "Normal",
  18742. height: math.unit(6 + 7 / 12, "feet"),
  18743. default: true
  18744. },
  18745. ]
  18746. ))
  18747. characterMakers.push(() => makeCharacter(
  18748. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  18749. {
  18750. front: {
  18751. height: math.unit(5 + 8 / 12, "feet"),
  18752. weight: math.unit(208, "lb"),
  18753. name: "Front",
  18754. image: {
  18755. source: "./media/characters/enuk/front.svg",
  18756. extra: 437 / 406,
  18757. bottom: 0.02
  18758. }
  18759. },
  18760. },
  18761. [
  18762. {
  18763. name: "Normal",
  18764. height: math.unit(5 + 8 / 12, "feet"),
  18765. default: true
  18766. },
  18767. ]
  18768. ))
  18769. characterMakers.push(() => makeCharacter(
  18770. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  18771. {
  18772. front: {
  18773. height: math.unit(5 + 10 / 12, "feet"),
  18774. weight: math.unit(252, "lb"),
  18775. name: "Front",
  18776. image: {
  18777. source: "./media/characters/bruun/front.svg",
  18778. extra: 197 / 187,
  18779. bottom: 0.012
  18780. }
  18781. },
  18782. },
  18783. [
  18784. {
  18785. name: "Normal",
  18786. height: math.unit(5 + 10 / 12, "feet"),
  18787. default: true
  18788. },
  18789. ]
  18790. ))
  18791. characterMakers.push(() => makeCharacter(
  18792. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  18793. {
  18794. front: {
  18795. height: math.unit(6 + 10 / 12, "feet"),
  18796. weight: math.unit(255, "lb"),
  18797. name: "Front",
  18798. image: {
  18799. source: "./media/characters/alexeev/front.svg",
  18800. extra: 213 / 200,
  18801. bottom: 0.05
  18802. }
  18803. },
  18804. },
  18805. [
  18806. {
  18807. name: "Normal",
  18808. height: math.unit(6 + 10 / 12, "feet"),
  18809. default: true
  18810. },
  18811. ]
  18812. ))
  18813. characterMakers.push(() => makeCharacter(
  18814. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  18815. {
  18816. front: {
  18817. height: math.unit(2 + 8 / 12, "feet"),
  18818. weight: math.unit(22, "lb"),
  18819. name: "Front",
  18820. image: {
  18821. source: "./media/characters/evelyn/front.svg",
  18822. extra: 208 / 180
  18823. }
  18824. },
  18825. },
  18826. [
  18827. {
  18828. name: "Normal",
  18829. height: math.unit(2 + 8 / 12, "feet"),
  18830. default: true
  18831. },
  18832. ]
  18833. ))
  18834. characterMakers.push(() => makeCharacter(
  18835. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  18836. {
  18837. front: {
  18838. height: math.unit(5 + 9 / 12, "feet"),
  18839. weight: math.unit(139, "lb"),
  18840. name: "Front",
  18841. image: {
  18842. source: "./media/characters/inca/front.svg",
  18843. extra: 294 / 291,
  18844. bottom: 0.03
  18845. }
  18846. },
  18847. },
  18848. [
  18849. {
  18850. name: "Normal",
  18851. height: math.unit(5 + 9 / 12, "feet"),
  18852. default: true
  18853. },
  18854. ]
  18855. ))
  18856. characterMakers.push(() => makeCharacter(
  18857. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  18858. {
  18859. front: {
  18860. height: math.unit(5 + 1 / 12, "feet"),
  18861. weight: math.unit(84, "lb"),
  18862. name: "Front",
  18863. image: {
  18864. source: "./media/characters/magdalene/front.svg",
  18865. extra: 293 / 273
  18866. }
  18867. },
  18868. },
  18869. [
  18870. {
  18871. name: "Normal",
  18872. height: math.unit(5 + 1 / 12, "feet"),
  18873. default: true
  18874. },
  18875. ]
  18876. ))
  18877. characterMakers.push(() => makeCharacter(
  18878. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  18879. {
  18880. front: {
  18881. height: math.unit(6 + 3 / 12, "feet"),
  18882. weight: math.unit(185, "lb"),
  18883. name: "Front",
  18884. image: {
  18885. source: "./media/characters/mera/front.svg",
  18886. extra: 291 / 277,
  18887. bottom: 0.03
  18888. }
  18889. },
  18890. },
  18891. [
  18892. {
  18893. name: "Normal",
  18894. height: math.unit(6 + 3 / 12, "feet"),
  18895. default: true
  18896. },
  18897. ]
  18898. ))
  18899. characterMakers.push(() => makeCharacter(
  18900. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  18901. {
  18902. front: {
  18903. height: math.unit(6 + 7 / 12, "feet"),
  18904. weight: math.unit(160, "lb"),
  18905. name: "Front",
  18906. image: {
  18907. source: "./media/characters/ceres/front.svg",
  18908. extra: 1023 / 950,
  18909. bottom: 0.027
  18910. }
  18911. },
  18912. back: {
  18913. height: math.unit(6 + 7 / 12, "feet"),
  18914. weight: math.unit(160, "lb"),
  18915. name: "Back",
  18916. image: {
  18917. source: "./media/characters/ceres/back.svg",
  18918. extra: 1023 / 950
  18919. }
  18920. },
  18921. },
  18922. [
  18923. {
  18924. name: "Normal",
  18925. height: math.unit(6 + 7 / 12, "feet"),
  18926. default: true
  18927. },
  18928. ]
  18929. ))
  18930. characterMakers.push(() => makeCharacter(
  18931. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  18932. {
  18933. front: {
  18934. height: math.unit(5 + 10 / 12, "feet"),
  18935. weight: math.unit(150, "lb"),
  18936. name: "Front",
  18937. image: {
  18938. source: "./media/characters/kris/front.svg",
  18939. extra: 885 / 803,
  18940. bottom: 0.03
  18941. }
  18942. },
  18943. },
  18944. [
  18945. {
  18946. name: "Normal",
  18947. height: math.unit(5 + 10 / 12, "feet"),
  18948. default: true
  18949. },
  18950. ]
  18951. ))
  18952. characterMakers.push(() => makeCharacter(
  18953. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  18954. {
  18955. front: {
  18956. height: math.unit(7, "feet"),
  18957. weight: math.unit(120, "kg"),
  18958. name: "Front",
  18959. image: {
  18960. source: "./media/characters/taluthus/front.svg",
  18961. extra: 903 / 833,
  18962. bottom: 0.015
  18963. }
  18964. },
  18965. },
  18966. [
  18967. {
  18968. name: "Normal",
  18969. height: math.unit(7, "feet"),
  18970. default: true
  18971. },
  18972. {
  18973. name: "Macro",
  18974. height: math.unit(300, "feet")
  18975. },
  18976. ]
  18977. ))
  18978. characterMakers.push(() => makeCharacter(
  18979. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  18980. {
  18981. front: {
  18982. height: math.unit(5 + 9 / 12, "feet"),
  18983. weight: math.unit(145, "lb"),
  18984. name: "Front",
  18985. image: {
  18986. source: "./media/characters/dawn/front.svg",
  18987. extra: 2094 / 2016,
  18988. bottom: 0.025
  18989. }
  18990. },
  18991. back: {
  18992. height: math.unit(5 + 9 / 12, "feet"),
  18993. weight: math.unit(160, "lb"),
  18994. name: "Back",
  18995. image: {
  18996. source: "./media/characters/dawn/back.svg",
  18997. extra: 2112 / 2080,
  18998. bottom: 0.005
  18999. }
  19000. },
  19001. },
  19002. [
  19003. {
  19004. name: "Normal",
  19005. height: math.unit(6 + 7 / 12, "feet"),
  19006. default: true
  19007. },
  19008. ]
  19009. ))
  19010. characterMakers.push(() => makeCharacter(
  19011. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19012. {
  19013. anthro: {
  19014. height: math.unit(8 + 3 / 12, "feet"),
  19015. weight: math.unit(450, "lb"),
  19016. name: "Anthro",
  19017. image: {
  19018. source: "./media/characters/arador/anthro.svg",
  19019. extra: 1835 / 1718,
  19020. bottom: 0.025
  19021. }
  19022. },
  19023. feral: {
  19024. height: math.unit(4, "feet"),
  19025. weight: math.unit(200, "lb"),
  19026. name: "Feral",
  19027. image: {
  19028. source: "./media/characters/arador/feral.svg",
  19029. extra: 1683 / 1514,
  19030. bottom: 0.07
  19031. }
  19032. },
  19033. },
  19034. [
  19035. {
  19036. name: "Normal",
  19037. height: math.unit(8 + 3 / 12, "feet")
  19038. },
  19039. {
  19040. name: "Macro",
  19041. height: math.unit(82.5, "feet"),
  19042. default: true
  19043. },
  19044. ]
  19045. ))
  19046. characterMakers.push(() => makeCharacter(
  19047. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19048. {
  19049. front: {
  19050. height: math.unit(5 + 10 / 12, "feet"),
  19051. weight: math.unit(125, "lb"),
  19052. name: "Front",
  19053. image: {
  19054. source: "./media/characters/dharsi/front.svg",
  19055. extra: 716 / 630,
  19056. bottom: 0.035
  19057. }
  19058. },
  19059. },
  19060. [
  19061. {
  19062. name: "Nano",
  19063. height: math.unit(100, "nm")
  19064. },
  19065. {
  19066. name: "Micro",
  19067. height: math.unit(2, "inches")
  19068. },
  19069. {
  19070. name: "Normal",
  19071. height: math.unit(5 + 10 / 12, "feet"),
  19072. default: true
  19073. },
  19074. {
  19075. name: "Macro",
  19076. height: math.unit(1000, "feet")
  19077. },
  19078. {
  19079. name: "Megamacro",
  19080. height: math.unit(10, "miles")
  19081. },
  19082. {
  19083. name: "Gigamacro",
  19084. height: math.unit(3000, "miles")
  19085. },
  19086. {
  19087. name: "Teramacro",
  19088. height: math.unit(500000, "miles")
  19089. },
  19090. {
  19091. name: "Teramacro+",
  19092. height: math.unit(30, "galaxies")
  19093. },
  19094. ]
  19095. ))
  19096. characterMakers.push(() => makeCharacter(
  19097. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19098. {
  19099. front: {
  19100. height: math.unit(6, "feet"),
  19101. weight: math.unit(150, "lb"),
  19102. name: "Front",
  19103. image: {
  19104. source: "./media/characters/deathy/front.svg",
  19105. extra: 1552 / 1463,
  19106. bottom: 0.025
  19107. }
  19108. },
  19109. side: {
  19110. height: math.unit(6, "feet"),
  19111. weight: math.unit(150, "lb"),
  19112. name: "Side",
  19113. image: {
  19114. source: "./media/characters/deathy/side.svg",
  19115. extra: 1604 / 1455,
  19116. bottom: 0.025
  19117. }
  19118. },
  19119. back: {
  19120. height: math.unit(6, "feet"),
  19121. weight: math.unit(150, "lb"),
  19122. name: "Back",
  19123. image: {
  19124. source: "./media/characters/deathy/back.svg",
  19125. extra: 1580 / 1463,
  19126. bottom: 0.005
  19127. }
  19128. },
  19129. },
  19130. [
  19131. {
  19132. name: "Micro",
  19133. height: math.unit(5, "millimeters")
  19134. },
  19135. {
  19136. name: "Normal",
  19137. height: math.unit(6 + 5 / 12, "feet"),
  19138. default: true
  19139. },
  19140. ]
  19141. ))
  19142. characterMakers.push(() => makeCharacter(
  19143. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19144. {
  19145. front: {
  19146. height: math.unit(16, "feet"),
  19147. weight: math.unit(4000, "lb"),
  19148. name: "Front",
  19149. image: {
  19150. source: "./media/characters/juniper/front.svg",
  19151. bottom: 0.04
  19152. }
  19153. },
  19154. },
  19155. [
  19156. {
  19157. name: "Normal",
  19158. height: math.unit(16, "feet"),
  19159. default: true
  19160. },
  19161. ]
  19162. ))
  19163. characterMakers.push(() => makeCharacter(
  19164. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19165. {
  19166. front: {
  19167. height: math.unit(6, "feet"),
  19168. weight: math.unit(150, "lb"),
  19169. name: "Front",
  19170. image: {
  19171. source: "./media/characters/hipster/front.svg",
  19172. extra: 1312 / 1209,
  19173. bottom: 0.025
  19174. }
  19175. },
  19176. back: {
  19177. height: math.unit(6, "feet"),
  19178. weight: math.unit(150, "lb"),
  19179. name: "Back",
  19180. image: {
  19181. source: "./media/characters/hipster/back.svg",
  19182. extra: 1281 / 1196,
  19183. bottom: 0.01
  19184. }
  19185. },
  19186. },
  19187. [
  19188. {
  19189. name: "Micro",
  19190. height: math.unit(1, "mm")
  19191. },
  19192. {
  19193. name: "Normal",
  19194. height: math.unit(4, "inches"),
  19195. default: true
  19196. },
  19197. {
  19198. name: "Macro",
  19199. height: math.unit(500, "feet")
  19200. },
  19201. {
  19202. name: "Megamacro",
  19203. height: math.unit(1000, "miles")
  19204. },
  19205. ]
  19206. ))
  19207. characterMakers.push(() => makeCharacter(
  19208. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19209. {
  19210. front: {
  19211. height: math.unit(6, "feet"),
  19212. weight: math.unit(150, "lb"),
  19213. name: "Front",
  19214. image: {
  19215. source: "./media/characters/tendirmuldr/front.svg",
  19216. extra: 1878 / 1772,
  19217. bottom: 0.015
  19218. }
  19219. },
  19220. },
  19221. [
  19222. {
  19223. name: "Megamacro",
  19224. height: math.unit(1500, "miles"),
  19225. default: true
  19226. },
  19227. ]
  19228. ))
  19229. characterMakers.push(() => makeCharacter(
  19230. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19231. {
  19232. front: {
  19233. height: math.unit(14, "feet"),
  19234. weight: math.unit(12000, "lb"),
  19235. name: "Front",
  19236. image: {
  19237. source: "./media/characters/mort/front.svg",
  19238. extra: 365 / 318,
  19239. bottom: 0.01
  19240. }
  19241. },
  19242. side: {
  19243. height: math.unit(14, "feet"),
  19244. weight: math.unit(12000, "lb"),
  19245. name: "Side",
  19246. image: {
  19247. source: "./media/characters/mort/side.svg",
  19248. extra: 365 / 318,
  19249. bottom: 0.052
  19250. },
  19251. default: true
  19252. },
  19253. back: {
  19254. height: math.unit(14, "feet"),
  19255. weight: math.unit(12000, "lb"),
  19256. name: "Back",
  19257. image: {
  19258. source: "./media/characters/mort/back.svg",
  19259. extra: 371 / 332,
  19260. bottom: 0.18
  19261. }
  19262. },
  19263. },
  19264. [
  19265. {
  19266. name: "Normal",
  19267. height: math.unit(14, "feet"),
  19268. default: true
  19269. },
  19270. ]
  19271. ))
  19272. characterMakers.push(() => makeCharacter(
  19273. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19274. {
  19275. front: {
  19276. height: math.unit(8, "feet"),
  19277. weight: math.unit(1, "ton"),
  19278. name: "Front",
  19279. image: {
  19280. source: "./media/characters/lycoa/front.svg",
  19281. extra: 1875 / 1789,
  19282. bottom: 0.022
  19283. }
  19284. },
  19285. back: {
  19286. height: math.unit(8, "feet"),
  19287. weight: math.unit(1, "ton"),
  19288. name: "Back",
  19289. image: {
  19290. source: "./media/characters/lycoa/back.svg",
  19291. extra: 1835 / 1781,
  19292. bottom: 0.03
  19293. }
  19294. },
  19295. head: {
  19296. height: math.unit(2.1, "feet"),
  19297. name: "Head",
  19298. image: {
  19299. source: "./media/characters/lycoa/head.svg"
  19300. }
  19301. },
  19302. tailmaw: {
  19303. height: math.unit(1.9, "feet"),
  19304. name: "Tailmaw",
  19305. image: {
  19306. source: "./media/characters/lycoa/tailmaw.svg"
  19307. }
  19308. },
  19309. tentacles: {
  19310. height: math.unit(2.1, "feet"),
  19311. name: "Tentacles",
  19312. image: {
  19313. source: "./media/characters/lycoa/tentacles.svg"
  19314. }
  19315. },
  19316. dick: {
  19317. height: math.unit(1.73, "feet"),
  19318. name: "Dick",
  19319. image: {
  19320. source: "./media/characters/lycoa/dick.svg"
  19321. }
  19322. },
  19323. },
  19324. [
  19325. {
  19326. name: "Normal",
  19327. height: math.unit(8, "feet"),
  19328. default: true
  19329. },
  19330. {
  19331. name: "Macro",
  19332. height: math.unit(30, "feet")
  19333. },
  19334. ]
  19335. ))
  19336. characterMakers.push(() => makeCharacter(
  19337. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19338. {
  19339. front: {
  19340. height: math.unit(4 + 2 / 12, "feet"),
  19341. weight: math.unit(70, "lb"),
  19342. name: "Front",
  19343. image: {
  19344. source: "./media/characters/naldara/front.svg",
  19345. extra: 841 / 720,
  19346. bottom: 0.04
  19347. }
  19348. },
  19349. naga: {
  19350. height: math.unit(23, "feet"),
  19351. weight: math.unit(15000, "kg"),
  19352. name: "Naga",
  19353. image: {
  19354. source: "./media/characters/naldara/naga.svg",
  19355. extra: 3290/2959,
  19356. bottom: 124/3432
  19357. }
  19358. },
  19359. },
  19360. [
  19361. {
  19362. name: "Normal",
  19363. height: math.unit(4 + 2 / 12, "feet"),
  19364. default: true
  19365. },
  19366. ]
  19367. ))
  19368. characterMakers.push(() => makeCharacter(
  19369. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19370. {
  19371. front: {
  19372. height: math.unit(13 + 7 / 12, "feet"),
  19373. weight: math.unit(1500, "lb"),
  19374. name: "Front",
  19375. image: {
  19376. source: "./media/characters/briar/front.svg",
  19377. extra: 626 / 596,
  19378. bottom: 0.08
  19379. }
  19380. },
  19381. },
  19382. [
  19383. {
  19384. name: "Normal",
  19385. height: math.unit(13 + 7 / 12, "feet"),
  19386. default: true
  19387. },
  19388. ]
  19389. ))
  19390. characterMakers.push(() => makeCharacter(
  19391. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19392. {
  19393. side: {
  19394. height: math.unit(10, "feet"),
  19395. weight: math.unit(500, "lb"),
  19396. name: "Side",
  19397. image: {
  19398. source: "./media/characters/vanguard/side.svg",
  19399. extra: 502 / 425,
  19400. bottom: 0.087
  19401. }
  19402. },
  19403. },
  19404. [
  19405. {
  19406. name: "Normal",
  19407. height: math.unit(10, "feet"),
  19408. default: true
  19409. },
  19410. ]
  19411. ))
  19412. characterMakers.push(() => makeCharacter(
  19413. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19414. {
  19415. front: {
  19416. height: math.unit(7.5, "feet"),
  19417. weight: math.unit(2, "lb"),
  19418. name: "Front",
  19419. image: {
  19420. source: "./media/characters/artemis/front.svg",
  19421. extra: 1192 / 1075,
  19422. bottom: 0.07
  19423. }
  19424. },
  19425. frontNsfw: {
  19426. height: math.unit(7.5, "feet"),
  19427. weight: math.unit(2, "lb"),
  19428. name: "Front (NSFW)",
  19429. image: {
  19430. source: "./media/characters/artemis/front-nsfw.svg",
  19431. extra: 1192 / 1075,
  19432. bottom: 0.07
  19433. }
  19434. },
  19435. frontNsfwer: {
  19436. height: math.unit(7.5, "feet"),
  19437. weight: math.unit(2, "lb"),
  19438. name: "Front (NSFW-er)",
  19439. image: {
  19440. source: "./media/characters/artemis/front-nsfwer.svg",
  19441. extra: 1192 / 1075,
  19442. bottom: 0.07
  19443. }
  19444. },
  19445. side: {
  19446. height: math.unit(7.5, "feet"),
  19447. weight: math.unit(2, "lb"),
  19448. name: "Side",
  19449. image: {
  19450. source: "./media/characters/artemis/side.svg",
  19451. extra: 1192 / 1075,
  19452. bottom: 0.07
  19453. }
  19454. },
  19455. sideNsfw: {
  19456. height: math.unit(7.5, "feet"),
  19457. weight: math.unit(2, "lb"),
  19458. name: "Side (NSFW)",
  19459. image: {
  19460. source: "./media/characters/artemis/side-nsfw.svg",
  19461. extra: 1192 / 1075,
  19462. bottom: 0.07
  19463. }
  19464. },
  19465. sideNsfwer: {
  19466. height: math.unit(7.5, "feet"),
  19467. weight: math.unit(2, "lb"),
  19468. name: "Side (NSFW-er)",
  19469. image: {
  19470. source: "./media/characters/artemis/side-nsfwer.svg",
  19471. extra: 1192 / 1075,
  19472. bottom: 0.07
  19473. }
  19474. },
  19475. maw: {
  19476. height: math.unit(1.1, "feet"),
  19477. name: "Maw",
  19478. image: {
  19479. source: "./media/characters/artemis/maw.svg"
  19480. }
  19481. },
  19482. stomach: {
  19483. height: math.unit(0.95, "feet"),
  19484. name: "Stomach",
  19485. image: {
  19486. source: "./media/characters/artemis/stomach.svg"
  19487. }
  19488. },
  19489. dickCanine: {
  19490. height: math.unit(1, "feet"),
  19491. name: "Dick (Canine)",
  19492. image: {
  19493. source: "./media/characters/artemis/dick-canine.svg"
  19494. }
  19495. },
  19496. dickEquine: {
  19497. height: math.unit(0.85, "feet"),
  19498. name: "Dick (Equine)",
  19499. image: {
  19500. source: "./media/characters/artemis/dick-equine.svg"
  19501. }
  19502. },
  19503. dickExotic: {
  19504. height: math.unit(0.85, "feet"),
  19505. name: "Dick (Exotic)",
  19506. image: {
  19507. source: "./media/characters/artemis/dick-exotic.svg"
  19508. }
  19509. },
  19510. },
  19511. [
  19512. {
  19513. name: "Normal",
  19514. height: math.unit(7.5, "feet"),
  19515. default: true
  19516. },
  19517. {
  19518. name: "Enlarged",
  19519. height: math.unit(12, "feet")
  19520. },
  19521. ]
  19522. ))
  19523. characterMakers.push(() => makeCharacter(
  19524. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19525. {
  19526. front: {
  19527. height: math.unit(5 + 3 / 12, "feet"),
  19528. weight: math.unit(160, "lb"),
  19529. name: "Front",
  19530. image: {
  19531. source: "./media/characters/kira/front.svg",
  19532. extra: 906 / 786,
  19533. bottom: 0.01
  19534. }
  19535. },
  19536. back: {
  19537. height: math.unit(5 + 3 / 12, "feet"),
  19538. weight: math.unit(160, "lb"),
  19539. name: "Back",
  19540. image: {
  19541. source: "./media/characters/kira/back.svg",
  19542. extra: 882 / 757,
  19543. bottom: 0.005
  19544. }
  19545. },
  19546. frontDressed: {
  19547. height: math.unit(5 + 3 / 12, "feet"),
  19548. weight: math.unit(160, "lb"),
  19549. name: "Front (Dressed)",
  19550. image: {
  19551. source: "./media/characters/kira/front-dressed.svg",
  19552. extra: 906 / 786,
  19553. bottom: 0.01
  19554. }
  19555. },
  19556. beans: {
  19557. height: math.unit(0.92, "feet"),
  19558. name: "Beans",
  19559. image: {
  19560. source: "./media/characters/kira/beans.svg"
  19561. }
  19562. },
  19563. },
  19564. [
  19565. {
  19566. name: "Normal",
  19567. height: math.unit(5 + 3 / 12, "feet"),
  19568. default: true
  19569. },
  19570. ]
  19571. ))
  19572. characterMakers.push(() => makeCharacter(
  19573. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19574. {
  19575. front: {
  19576. height: math.unit(5 + 4 / 12, "feet"),
  19577. weight: math.unit(145, "lb"),
  19578. name: "Front",
  19579. image: {
  19580. source: "./media/characters/scramble/front.svg",
  19581. extra: 763 / 727,
  19582. bottom: 0.05
  19583. }
  19584. },
  19585. back: {
  19586. height: math.unit(5 + 4 / 12, "feet"),
  19587. weight: math.unit(145, "lb"),
  19588. name: "Back",
  19589. image: {
  19590. source: "./media/characters/scramble/back.svg",
  19591. extra: 826 / 737,
  19592. bottom: 0.002
  19593. }
  19594. },
  19595. },
  19596. [
  19597. {
  19598. name: "Normal",
  19599. height: math.unit(5 + 4 / 12, "feet"),
  19600. default: true
  19601. },
  19602. ]
  19603. ))
  19604. characterMakers.push(() => makeCharacter(
  19605. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19606. {
  19607. side: {
  19608. height: math.unit(6 + 2 / 12, "feet"),
  19609. weight: math.unit(190, "lb"),
  19610. name: "Side",
  19611. image: {
  19612. source: "./media/characters/biscuit/side.svg",
  19613. extra: 858 / 791,
  19614. bottom: 0.044
  19615. }
  19616. },
  19617. },
  19618. [
  19619. {
  19620. name: "Normal",
  19621. height: math.unit(6 + 2 / 12, "feet"),
  19622. default: true
  19623. },
  19624. ]
  19625. ))
  19626. characterMakers.push(() => makeCharacter(
  19627. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19628. {
  19629. front: {
  19630. height: math.unit(5 + 2 / 12, "feet"),
  19631. weight: math.unit(120, "lb"),
  19632. name: "Front",
  19633. image: {
  19634. source: "./media/characters/poffin/front.svg",
  19635. extra: 786 / 680,
  19636. bottom: 0.005
  19637. }
  19638. },
  19639. },
  19640. [
  19641. {
  19642. name: "Normal",
  19643. height: math.unit(5 + 2 / 12, "feet"),
  19644. default: true
  19645. },
  19646. ]
  19647. ))
  19648. characterMakers.push(() => makeCharacter(
  19649. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19650. {
  19651. front: {
  19652. height: math.unit(6 + 3 / 12, "feet"),
  19653. weight: math.unit(519, "lb"),
  19654. name: "Front",
  19655. image: {
  19656. source: "./media/characters/dhari/front.svg",
  19657. extra: 1048 / 946,
  19658. bottom: 0.015
  19659. }
  19660. },
  19661. back: {
  19662. height: math.unit(6 + 3 / 12, "feet"),
  19663. weight: math.unit(519, "lb"),
  19664. name: "Back",
  19665. image: {
  19666. source: "./media/characters/dhari/back.svg",
  19667. extra: 1048 / 931,
  19668. bottom: 0.005
  19669. }
  19670. },
  19671. frontDressed: {
  19672. height: math.unit(6 + 3 / 12, "feet"),
  19673. weight: math.unit(519, "lb"),
  19674. name: "Front (Dressed)",
  19675. image: {
  19676. source: "./media/characters/dhari/front-dressed.svg",
  19677. extra: 1713 / 1546,
  19678. bottom: 0.02
  19679. }
  19680. },
  19681. backDressed: {
  19682. height: math.unit(6 + 3 / 12, "feet"),
  19683. weight: math.unit(519, "lb"),
  19684. name: "Back (Dressed)",
  19685. image: {
  19686. source: "./media/characters/dhari/back-dressed.svg",
  19687. extra: 1699 / 1537,
  19688. bottom: 0.01
  19689. }
  19690. },
  19691. maw: {
  19692. height: math.unit(0.95, "feet"),
  19693. name: "Maw",
  19694. image: {
  19695. source: "./media/characters/dhari/maw.svg"
  19696. }
  19697. },
  19698. wereFront: {
  19699. height: math.unit(12 + 8 / 12, "feet"),
  19700. weight: math.unit(4000, "lb"),
  19701. name: "Front (Were)",
  19702. image: {
  19703. source: "./media/characters/dhari/were-front.svg",
  19704. extra: 1065 / 969,
  19705. bottom: 0.015
  19706. }
  19707. },
  19708. wereBack: {
  19709. height: math.unit(12 + 8 / 12, "feet"),
  19710. weight: math.unit(4000, "lb"),
  19711. name: "Back (Were)",
  19712. image: {
  19713. source: "./media/characters/dhari/were-back.svg",
  19714. extra: 1065 / 969,
  19715. bottom: 0.012
  19716. }
  19717. },
  19718. wereMaw: {
  19719. height: math.unit(0.625, "meters"),
  19720. name: "Maw (Were)",
  19721. image: {
  19722. source: "./media/characters/dhari/were-maw.svg"
  19723. }
  19724. },
  19725. },
  19726. [
  19727. {
  19728. name: "Normal",
  19729. height: math.unit(6 + 3 / 12, "feet"),
  19730. default: true
  19731. },
  19732. ]
  19733. ))
  19734. characterMakers.push(() => makeCharacter(
  19735. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  19736. {
  19737. anthro: {
  19738. height: math.unit(5 + 7 / 12, "feet"),
  19739. weight: math.unit(175, "lb"),
  19740. name: "Anthro",
  19741. image: {
  19742. source: "./media/characters/rena-dyne/anthro.svg",
  19743. extra: 1849 / 1785,
  19744. bottom: 0.005
  19745. }
  19746. },
  19747. taur: {
  19748. height: math.unit(15 + 6 / 12, "feet"),
  19749. weight: math.unit(8000, "lb"),
  19750. name: "Taur",
  19751. image: {
  19752. source: "./media/characters/rena-dyne/taur.svg",
  19753. extra: 2315 / 2234,
  19754. bottom: 0.033
  19755. }
  19756. },
  19757. },
  19758. [
  19759. {
  19760. name: "Normal",
  19761. height: math.unit(5 + 7 / 12, "feet"),
  19762. default: true
  19763. },
  19764. ]
  19765. ))
  19766. characterMakers.push(() => makeCharacter(
  19767. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  19768. {
  19769. front: {
  19770. height: math.unit(8, "feet"),
  19771. weight: math.unit(600, "lb"),
  19772. name: "Front",
  19773. image: {
  19774. source: "./media/characters/weremeep/front.svg",
  19775. extra: 967 / 862,
  19776. bottom: 0.01
  19777. }
  19778. },
  19779. },
  19780. [
  19781. {
  19782. name: "Normal",
  19783. height: math.unit(8, "feet"),
  19784. default: true
  19785. },
  19786. {
  19787. name: "Lorg",
  19788. height: math.unit(12, "feet")
  19789. },
  19790. {
  19791. name: "Oh Lawd She Comin'",
  19792. height: math.unit(20, "feet")
  19793. },
  19794. ]
  19795. ))
  19796. characterMakers.push(() => makeCharacter(
  19797. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  19798. {
  19799. front: {
  19800. height: math.unit(4, "feet"),
  19801. weight: math.unit(90, "lb"),
  19802. name: "Front",
  19803. image: {
  19804. source: "./media/characters/reza/front.svg",
  19805. extra: 1183 / 1111,
  19806. bottom: 0.017
  19807. }
  19808. },
  19809. back: {
  19810. height: math.unit(4, "feet"),
  19811. weight: math.unit(90, "lb"),
  19812. name: "Back",
  19813. image: {
  19814. source: "./media/characters/reza/back.svg",
  19815. extra: 1183 / 1111,
  19816. bottom: 0.01
  19817. }
  19818. },
  19819. drake: {
  19820. height: math.unit(30, "feet"),
  19821. weight: math.unit(246960, "lb"),
  19822. name: "Drake",
  19823. image: {
  19824. source: "./media/characters/reza/drake.svg",
  19825. extra: 2350 / 2024,
  19826. bottom: 60.7 / 2403
  19827. }
  19828. },
  19829. },
  19830. [
  19831. {
  19832. name: "Normal",
  19833. height: math.unit(4, "feet"),
  19834. default: true
  19835. },
  19836. ]
  19837. ))
  19838. characterMakers.push(() => makeCharacter(
  19839. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  19840. {
  19841. side: {
  19842. height: math.unit(15, "feet"),
  19843. weight: math.unit(14, "tons"),
  19844. name: "Side",
  19845. image: {
  19846. source: "./media/characters/athea/side.svg",
  19847. extra: 960 / 540,
  19848. bottom: 0.003
  19849. }
  19850. },
  19851. sitting: {
  19852. height: math.unit(6 * 2.85, "feet"),
  19853. weight: math.unit(14, "tons"),
  19854. name: "Sitting",
  19855. image: {
  19856. source: "./media/characters/athea/sitting.svg",
  19857. extra: 621 / 581,
  19858. bottom: 0.075
  19859. }
  19860. },
  19861. maw: {
  19862. height: math.unit(7.59498031496063, "feet"),
  19863. name: "Maw",
  19864. image: {
  19865. source: "./media/characters/athea/maw.svg"
  19866. }
  19867. },
  19868. },
  19869. [
  19870. {
  19871. name: "Lap Cat",
  19872. height: math.unit(2.5, "feet")
  19873. },
  19874. {
  19875. name: "Minimacro",
  19876. height: math.unit(15, "feet"),
  19877. default: true
  19878. },
  19879. {
  19880. name: "Macro",
  19881. height: math.unit(120, "feet")
  19882. },
  19883. {
  19884. name: "Macro+",
  19885. height: math.unit(640, "feet")
  19886. },
  19887. {
  19888. name: "Colossus",
  19889. height: math.unit(2.2, "miles")
  19890. },
  19891. ]
  19892. ))
  19893. characterMakers.push(() => makeCharacter(
  19894. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  19895. {
  19896. front: {
  19897. height: math.unit(8 + 8 / 12, "feet"),
  19898. weight: math.unit(130, "kg"),
  19899. name: "Front",
  19900. image: {
  19901. source: "./media/characters/seroko/front.svg",
  19902. extra: 1385 / 1280,
  19903. bottom: 0.025
  19904. }
  19905. },
  19906. back: {
  19907. height: math.unit(8 + 8 / 12, "feet"),
  19908. weight: math.unit(130, "kg"),
  19909. name: "Back",
  19910. image: {
  19911. source: "./media/characters/seroko/back.svg",
  19912. extra: 1369 / 1238,
  19913. bottom: 0.018
  19914. }
  19915. },
  19916. frontDressed: {
  19917. height: math.unit(8 + 8 / 12, "feet"),
  19918. weight: math.unit(130, "kg"),
  19919. name: "Front (Dressed)",
  19920. image: {
  19921. source: "./media/characters/seroko/front-dressed.svg",
  19922. extra: 1366 / 1275,
  19923. bottom: 0.03
  19924. }
  19925. },
  19926. },
  19927. [
  19928. {
  19929. name: "Normal",
  19930. height: math.unit(8 + 8 / 12, "feet"),
  19931. default: true
  19932. },
  19933. ]
  19934. ))
  19935. characterMakers.push(() => makeCharacter(
  19936. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  19937. {
  19938. front: {
  19939. height: math.unit(5.5, "feet"),
  19940. weight: math.unit(160, "lb"),
  19941. name: "Front",
  19942. image: {
  19943. source: "./media/characters/quatzi/front.svg",
  19944. extra: 2346 / 2242,
  19945. bottom: 0.015
  19946. }
  19947. },
  19948. },
  19949. [
  19950. {
  19951. name: "Normal",
  19952. height: math.unit(5.5, "feet"),
  19953. default: true
  19954. },
  19955. {
  19956. name: "Big",
  19957. height: math.unit(7.7, "feet")
  19958. },
  19959. ]
  19960. ))
  19961. characterMakers.push(() => makeCharacter(
  19962. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  19963. {
  19964. front: {
  19965. height: math.unit(5 + 11 / 12, "feet"),
  19966. weight: math.unit(180, "lb"),
  19967. name: "Front",
  19968. image: {
  19969. source: "./media/characters/sen/front.svg",
  19970. extra: 1321 / 1254,
  19971. bottom: 0.015
  19972. }
  19973. },
  19974. side: {
  19975. height: math.unit(5 + 11 / 12, "feet"),
  19976. weight: math.unit(180, "lb"),
  19977. name: "Side",
  19978. image: {
  19979. source: "./media/characters/sen/side.svg",
  19980. extra: 1321 / 1254,
  19981. bottom: 0.007
  19982. }
  19983. },
  19984. back: {
  19985. height: math.unit(5 + 11 / 12, "feet"),
  19986. weight: math.unit(180, "lb"),
  19987. name: "Back",
  19988. image: {
  19989. source: "./media/characters/sen/back.svg",
  19990. extra: 1321 / 1254
  19991. }
  19992. },
  19993. },
  19994. [
  19995. {
  19996. name: "Normal",
  19997. height: math.unit(5 + 11 / 12, "feet"),
  19998. default: true
  19999. },
  20000. ]
  20001. ))
  20002. characterMakers.push(() => makeCharacter(
  20003. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20004. {
  20005. front: {
  20006. height: math.unit(166.6, "cm"),
  20007. weight: math.unit(66.6, "kg"),
  20008. name: "Front",
  20009. image: {
  20010. source: "./media/characters/fruity/front.svg",
  20011. extra: 1510 / 1386,
  20012. bottom: 0.04
  20013. }
  20014. },
  20015. back: {
  20016. height: math.unit(166.6, "cm"),
  20017. weight: math.unit(66.6, "lb"),
  20018. name: "Back",
  20019. image: {
  20020. source: "./media/characters/fruity/back.svg",
  20021. extra: 1563 / 1435,
  20022. bottom: 0.005
  20023. }
  20024. },
  20025. },
  20026. [
  20027. {
  20028. name: "Normal",
  20029. height: math.unit(166.6, "cm"),
  20030. default: true
  20031. },
  20032. {
  20033. name: "Demonic",
  20034. height: math.unit(166.6, "feet")
  20035. },
  20036. ]
  20037. ))
  20038. characterMakers.push(() => makeCharacter(
  20039. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20040. {
  20041. side: {
  20042. height: math.unit(10, "feet"),
  20043. weight: math.unit(500, "lb"),
  20044. name: "Side",
  20045. image: {
  20046. source: "./media/characters/zost/side.svg",
  20047. extra: 966 / 880,
  20048. bottom: 0.075
  20049. }
  20050. },
  20051. mawFront: {
  20052. height: math.unit(1.08, "meters"),
  20053. name: "Maw (Front)",
  20054. image: {
  20055. source: "./media/characters/zost/maw-front.svg"
  20056. }
  20057. },
  20058. mawSide: {
  20059. height: math.unit(2.66, "feet"),
  20060. name: "Maw (Side)",
  20061. image: {
  20062. source: "./media/characters/zost/maw-side.svg"
  20063. }
  20064. },
  20065. },
  20066. [
  20067. {
  20068. name: "Normal",
  20069. height: math.unit(10, "feet"),
  20070. default: true
  20071. },
  20072. ]
  20073. ))
  20074. characterMakers.push(() => makeCharacter(
  20075. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20076. {
  20077. front: {
  20078. height: math.unit(5 + 4 / 12, "feet"),
  20079. weight: math.unit(120, "lb"),
  20080. name: "Front",
  20081. image: {
  20082. source: "./media/characters/luci/front.svg",
  20083. extra: 1985 / 1884,
  20084. bottom: 0.04
  20085. }
  20086. },
  20087. back: {
  20088. height: math.unit(5 + 4 / 12, "feet"),
  20089. weight: math.unit(120, "lb"),
  20090. name: "Back",
  20091. image: {
  20092. source: "./media/characters/luci/back.svg",
  20093. extra: 1892 / 1791,
  20094. bottom: 0.002
  20095. }
  20096. },
  20097. },
  20098. [
  20099. {
  20100. name: "Normal",
  20101. height: math.unit(5 + 4 / 12, "feet"),
  20102. default: true
  20103. },
  20104. ]
  20105. ))
  20106. characterMakers.push(() => makeCharacter(
  20107. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20108. {
  20109. front: {
  20110. height: math.unit(1500, "feet"),
  20111. weight: math.unit(3.8e6, "tons"),
  20112. name: "Front",
  20113. image: {
  20114. source: "./media/characters/2th/front.svg",
  20115. extra: 3489 / 3350,
  20116. bottom: 0.1
  20117. }
  20118. },
  20119. foot: {
  20120. height: math.unit(461, "feet"),
  20121. name: "Foot",
  20122. image: {
  20123. source: "./media/characters/2th/foot.svg"
  20124. }
  20125. },
  20126. },
  20127. [
  20128. {
  20129. name: "\"Micro\"",
  20130. height: math.unit(15 + 7 / 12, "feet")
  20131. },
  20132. {
  20133. name: "Normal",
  20134. height: math.unit(1500, "feet"),
  20135. default: true
  20136. },
  20137. {
  20138. name: "Macro",
  20139. height: math.unit(5000, "feet")
  20140. },
  20141. {
  20142. name: "Megamacro",
  20143. height: math.unit(15, "miles")
  20144. },
  20145. {
  20146. name: "Gigamacro",
  20147. height: math.unit(4000, "miles")
  20148. },
  20149. {
  20150. name: "Galactic",
  20151. height: math.unit(50, "AU")
  20152. },
  20153. ]
  20154. ))
  20155. characterMakers.push(() => makeCharacter(
  20156. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20157. {
  20158. front: {
  20159. height: math.unit(5 + 6 / 12, "feet"),
  20160. weight: math.unit(220, "lb"),
  20161. name: "Front",
  20162. image: {
  20163. source: "./media/characters/amethyst/front.svg",
  20164. extra: 2078 / 2040,
  20165. bottom: 0.045
  20166. }
  20167. },
  20168. back: {
  20169. height: math.unit(5 + 6 / 12, "feet"),
  20170. weight: math.unit(220, "lb"),
  20171. name: "Back",
  20172. image: {
  20173. source: "./media/characters/amethyst/back.svg",
  20174. extra: 2021 / 1989,
  20175. bottom: 0.02
  20176. }
  20177. },
  20178. },
  20179. [
  20180. {
  20181. name: "Normal",
  20182. height: math.unit(5 + 6 / 12, "feet"),
  20183. default: true
  20184. },
  20185. ]
  20186. ))
  20187. characterMakers.push(() => makeCharacter(
  20188. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20189. {
  20190. front: {
  20191. height: math.unit(4 + 11 / 12, "feet"),
  20192. weight: math.unit(120, "lb"),
  20193. name: "Front",
  20194. image: {
  20195. source: "./media/characters/yumi-akiyama/front.svg",
  20196. extra: 1327 / 1235,
  20197. bottom: 0.02
  20198. }
  20199. },
  20200. back: {
  20201. height: math.unit(4 + 11 / 12, "feet"),
  20202. weight: math.unit(120, "lb"),
  20203. name: "Back",
  20204. image: {
  20205. source: "./media/characters/yumi-akiyama/back.svg",
  20206. extra: 1287 / 1245,
  20207. bottom: 0.002
  20208. }
  20209. },
  20210. },
  20211. [
  20212. {
  20213. name: "Galactic",
  20214. height: math.unit(50, "galaxies"),
  20215. default: true
  20216. },
  20217. {
  20218. name: "Universal",
  20219. height: math.unit(100, "universes")
  20220. },
  20221. ]
  20222. ))
  20223. characterMakers.push(() => makeCharacter(
  20224. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20225. {
  20226. front: {
  20227. height: math.unit(8, "feet"),
  20228. weight: math.unit(500, "lb"),
  20229. name: "Front",
  20230. image: {
  20231. source: "./media/characters/rifter-yrmori/front.svg",
  20232. extra: 1180 / 1125,
  20233. bottom: 0.02
  20234. }
  20235. },
  20236. back: {
  20237. height: math.unit(8, "feet"),
  20238. weight: math.unit(500, "lb"),
  20239. name: "Back",
  20240. image: {
  20241. source: "./media/characters/rifter-yrmori/back.svg",
  20242. extra: 1190 / 1145,
  20243. bottom: 0.001
  20244. }
  20245. },
  20246. wings: {
  20247. height: math.unit(7.75, "feet"),
  20248. weight: math.unit(500, "lb"),
  20249. name: "Wings",
  20250. image: {
  20251. source: "./media/characters/rifter-yrmori/wings.svg",
  20252. extra: 1357 / 1285
  20253. }
  20254. },
  20255. maw: {
  20256. height: math.unit(0.8, "feet"),
  20257. name: "Maw",
  20258. image: {
  20259. source: "./media/characters/rifter-yrmori/maw.svg"
  20260. }
  20261. },
  20262. mawfront: {
  20263. height: math.unit(1.45, "feet"),
  20264. name: "Maw (Front)",
  20265. image: {
  20266. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20267. }
  20268. },
  20269. },
  20270. [
  20271. {
  20272. name: "Normal",
  20273. height: math.unit(8, "feet"),
  20274. default: true
  20275. },
  20276. {
  20277. name: "Macro",
  20278. height: math.unit(42, "meters")
  20279. },
  20280. ]
  20281. ))
  20282. characterMakers.push(() => makeCharacter(
  20283. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20284. {
  20285. were: {
  20286. height: math.unit(25 + 6 / 12, "feet"),
  20287. weight: math.unit(10000, "lb"),
  20288. name: "Were",
  20289. image: {
  20290. source: "./media/characters/tahajin/were.svg",
  20291. extra: 801 / 770,
  20292. bottom: 0.042
  20293. }
  20294. },
  20295. aquatic: {
  20296. height: math.unit(6 + 4 / 12, "feet"),
  20297. weight: math.unit(160, "lb"),
  20298. name: "Aquatic",
  20299. image: {
  20300. source: "./media/characters/tahajin/aquatic.svg",
  20301. extra: 572 / 542,
  20302. bottom: 0.04
  20303. }
  20304. },
  20305. chow: {
  20306. height: math.unit(8 + 11 / 12, "feet"),
  20307. weight: math.unit(450, "lb"),
  20308. name: "Chow",
  20309. image: {
  20310. source: "./media/characters/tahajin/chow.svg",
  20311. extra: 660 / 640,
  20312. bottom: 0.015
  20313. }
  20314. },
  20315. demiNaga: {
  20316. height: math.unit(6 + 8 / 12, "feet"),
  20317. weight: math.unit(300, "lb"),
  20318. name: "Demi Naga",
  20319. image: {
  20320. source: "./media/characters/tahajin/demi-naga.svg",
  20321. extra: 643 / 615,
  20322. bottom: 0.1
  20323. }
  20324. },
  20325. data: {
  20326. height: math.unit(5, "inches"),
  20327. weight: math.unit(0.1, "lb"),
  20328. name: "Data",
  20329. image: {
  20330. source: "./media/characters/tahajin/data.svg"
  20331. }
  20332. },
  20333. fluu: {
  20334. height: math.unit(5 + 7 / 12, "feet"),
  20335. weight: math.unit(140, "lb"),
  20336. name: "Fluu",
  20337. image: {
  20338. source: "./media/characters/tahajin/fluu.svg",
  20339. extra: 628 / 592,
  20340. bottom: 0.02
  20341. }
  20342. },
  20343. starWarrior: {
  20344. height: math.unit(4 + 5 / 12, "feet"),
  20345. weight: math.unit(50, "lb"),
  20346. name: "Star Warrior",
  20347. image: {
  20348. source: "./media/characters/tahajin/star-warrior.svg"
  20349. }
  20350. },
  20351. },
  20352. [
  20353. {
  20354. name: "Normal",
  20355. height: math.unit(25 + 6 / 12, "feet"),
  20356. default: true
  20357. },
  20358. ]
  20359. ))
  20360. characterMakers.push(() => makeCharacter(
  20361. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20362. {
  20363. front: {
  20364. height: math.unit(8, "feet"),
  20365. weight: math.unit(350, "lb"),
  20366. name: "Front",
  20367. image: {
  20368. source: "./media/characters/gabira/front.svg",
  20369. extra: 608 / 580,
  20370. bottom: 0.03
  20371. }
  20372. },
  20373. back: {
  20374. height: math.unit(8, "feet"),
  20375. weight: math.unit(350, "lb"),
  20376. name: "Back",
  20377. image: {
  20378. source: "./media/characters/gabira/back.svg",
  20379. extra: 608 / 580,
  20380. bottom: 0.03
  20381. }
  20382. },
  20383. },
  20384. [
  20385. {
  20386. name: "Normal",
  20387. height: math.unit(8, "feet"),
  20388. default: true
  20389. },
  20390. ]
  20391. ))
  20392. characterMakers.push(() => makeCharacter(
  20393. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20394. {
  20395. front: {
  20396. height: math.unit(5 + 3 / 12, "feet"),
  20397. weight: math.unit(137, "lb"),
  20398. name: "Front",
  20399. image: {
  20400. source: "./media/characters/sasha-katraine/front.svg",
  20401. bottom: 0.045
  20402. }
  20403. },
  20404. },
  20405. [
  20406. {
  20407. name: "Micro",
  20408. height: math.unit(5, "inches")
  20409. },
  20410. {
  20411. name: "Normal",
  20412. height: math.unit(5 + 3 / 12, "feet"),
  20413. default: true
  20414. },
  20415. ]
  20416. ))
  20417. characterMakers.push(() => makeCharacter(
  20418. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20419. {
  20420. side: {
  20421. height: math.unit(4, "inches"),
  20422. weight: math.unit(200, "grams"),
  20423. name: "Side",
  20424. image: {
  20425. source: "./media/characters/der/side.svg",
  20426. extra: 719 / 400,
  20427. bottom: 30.6 / 749.9187
  20428. }
  20429. },
  20430. },
  20431. [
  20432. {
  20433. name: "Micro",
  20434. height: math.unit(4, "inches"),
  20435. default: true
  20436. },
  20437. ]
  20438. ))
  20439. characterMakers.push(() => makeCharacter(
  20440. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20441. {
  20442. side: {
  20443. height: math.unit(30, "meters"),
  20444. weight: math.unit(700, "tonnes"),
  20445. name: "Side",
  20446. image: {
  20447. source: "./media/characters/fixerdragon/side.svg",
  20448. extra: (1293.0514 - 116.03) / 1106.86,
  20449. bottom: 116.03 / 1293.0514
  20450. }
  20451. },
  20452. },
  20453. [
  20454. {
  20455. name: "Planck",
  20456. height: math.unit(1.6e-35, "meters")
  20457. },
  20458. {
  20459. name: "Micro",
  20460. height: math.unit(0.4, "meters")
  20461. },
  20462. {
  20463. name: "Normal",
  20464. height: math.unit(30, "meters"),
  20465. default: true
  20466. },
  20467. {
  20468. name: "Megamacro",
  20469. height: math.unit(1.2, "megameters")
  20470. },
  20471. {
  20472. name: "Teramacro",
  20473. height: math.unit(130, "terameters")
  20474. },
  20475. {
  20476. name: "Yottamacro",
  20477. height: math.unit(6200, "yottameters")
  20478. },
  20479. ]
  20480. ));
  20481. characterMakers.push(() => makeCharacter(
  20482. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20483. {
  20484. front: {
  20485. height: math.unit(8, "feet"),
  20486. weight: math.unit(250, "lb"),
  20487. name: "Front",
  20488. image: {
  20489. source: "./media/characters/kite/front.svg",
  20490. extra: 2796 / 2659,
  20491. bottom: 0.002
  20492. }
  20493. },
  20494. },
  20495. [
  20496. {
  20497. name: "Normal",
  20498. height: math.unit(8, "feet"),
  20499. default: true
  20500. },
  20501. {
  20502. name: "Macro",
  20503. height: math.unit(360, "feet")
  20504. },
  20505. {
  20506. name: "Megamacro",
  20507. height: math.unit(1500, "feet")
  20508. },
  20509. ]
  20510. ))
  20511. characterMakers.push(() => makeCharacter(
  20512. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20513. {
  20514. front: {
  20515. height: math.unit(5 + 10 / 12, "feet"),
  20516. weight: math.unit(150, "lb"),
  20517. name: "Front",
  20518. image: {
  20519. source: "./media/characters/poojawa-vynar/front.svg",
  20520. extra: (1506.1547 - 55) / 1356.6,
  20521. bottom: 55 / 1506.1547
  20522. }
  20523. },
  20524. frontTailless: {
  20525. height: math.unit(5 + 10 / 12, "feet"),
  20526. weight: math.unit(150, "lb"),
  20527. name: "Front (Tailless)",
  20528. image: {
  20529. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20530. extra: (1506.1547 - 55) / 1356.6,
  20531. bottom: 55 / 1506.1547
  20532. }
  20533. },
  20534. },
  20535. [
  20536. {
  20537. name: "Normal",
  20538. height: math.unit(5 + 10 / 12, "feet"),
  20539. default: true
  20540. },
  20541. ]
  20542. ))
  20543. characterMakers.push(() => makeCharacter(
  20544. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20545. {
  20546. front: {
  20547. height: math.unit(293, "meters"),
  20548. weight: math.unit(70400, "tons"),
  20549. name: "Front",
  20550. image: {
  20551. source: "./media/characters/violette/front.svg",
  20552. extra: 1227 / 1180,
  20553. bottom: 0.005
  20554. }
  20555. },
  20556. back: {
  20557. height: math.unit(293, "meters"),
  20558. weight: math.unit(70400, "tons"),
  20559. name: "Back",
  20560. image: {
  20561. source: "./media/characters/violette/back.svg",
  20562. extra: 1227 / 1180,
  20563. bottom: 0.005
  20564. }
  20565. },
  20566. },
  20567. [
  20568. {
  20569. name: "Macro",
  20570. height: math.unit(293, "meters"),
  20571. default: true
  20572. },
  20573. ]
  20574. ))
  20575. characterMakers.push(() => makeCharacter(
  20576. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20577. {
  20578. front: {
  20579. height: math.unit(1050, "feet"),
  20580. weight: math.unit(200000, "tons"),
  20581. name: "Front",
  20582. image: {
  20583. source: "./media/characters/alessandra/front.svg",
  20584. extra: 960 / 912,
  20585. bottom: 0.06
  20586. }
  20587. },
  20588. },
  20589. [
  20590. {
  20591. name: "Macro",
  20592. height: math.unit(1050, "feet")
  20593. },
  20594. {
  20595. name: "Macro+",
  20596. height: math.unit(900, "meters"),
  20597. default: true
  20598. },
  20599. ]
  20600. ))
  20601. characterMakers.push(() => makeCharacter(
  20602. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20603. {
  20604. front: {
  20605. height: math.unit(5, "feet"),
  20606. weight: math.unit(187, "lb"),
  20607. name: "Front",
  20608. image: {
  20609. source: "./media/characters/person/front.svg",
  20610. extra: 3087 / 2945,
  20611. bottom: 91 / 3181
  20612. }
  20613. },
  20614. },
  20615. [
  20616. {
  20617. name: "Micro",
  20618. height: math.unit(3, "inches")
  20619. },
  20620. {
  20621. name: "Normal",
  20622. height: math.unit(5, "feet"),
  20623. default: true
  20624. },
  20625. {
  20626. name: "Macro",
  20627. height: math.unit(90, "feet")
  20628. },
  20629. {
  20630. name: "Max Size",
  20631. height: math.unit(280, "feet")
  20632. },
  20633. ]
  20634. ))
  20635. characterMakers.push(() => makeCharacter(
  20636. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20637. {
  20638. front: {
  20639. height: math.unit(4.5, "meters"),
  20640. weight: math.unit(3200, "lb"),
  20641. name: "Front",
  20642. image: {
  20643. source: "./media/characters/ty/front.svg",
  20644. extra: 1038 / 960,
  20645. bottom: 31.156 / 1068
  20646. }
  20647. },
  20648. back: {
  20649. height: math.unit(4.5, "meters"),
  20650. weight: math.unit(3200, "lb"),
  20651. name: "Back",
  20652. image: {
  20653. source: "./media/characters/ty/back.svg",
  20654. extra: 1044 / 966,
  20655. bottom: 7.48 / 1049
  20656. }
  20657. },
  20658. },
  20659. [
  20660. {
  20661. name: "Normal",
  20662. height: math.unit(4.5, "meters"),
  20663. default: true
  20664. },
  20665. ]
  20666. ))
  20667. characterMakers.push(() => makeCharacter(
  20668. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  20669. {
  20670. front: {
  20671. height: math.unit(5 + 4 / 12, "feet"),
  20672. weight: math.unit(115, "lb"),
  20673. name: "Front",
  20674. image: {
  20675. source: "./media/characters/rocky/front.svg",
  20676. extra: 1012 / 975,
  20677. bottom: 54 / 1066
  20678. }
  20679. },
  20680. },
  20681. [
  20682. {
  20683. name: "Normal",
  20684. height: math.unit(5 + 4 / 12, "feet"),
  20685. default: true
  20686. },
  20687. ]
  20688. ))
  20689. characterMakers.push(() => makeCharacter(
  20690. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  20691. {
  20692. upright: {
  20693. height: math.unit(6, "meters"),
  20694. weight: math.unit(4000, "kg"),
  20695. name: "Upright",
  20696. image: {
  20697. source: "./media/characters/ruin/upright.svg",
  20698. extra: 668 / 661,
  20699. bottom: 42 / 799.8396
  20700. }
  20701. },
  20702. },
  20703. [
  20704. {
  20705. name: "Normal",
  20706. height: math.unit(6, "meters"),
  20707. default: true
  20708. },
  20709. ]
  20710. ))
  20711. characterMakers.push(() => makeCharacter(
  20712. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  20713. {
  20714. front: {
  20715. height: math.unit(5, "feet"),
  20716. weight: math.unit(106, "lb"),
  20717. name: "Front",
  20718. image: {
  20719. source: "./media/characters/robin/front.svg",
  20720. extra: 862 / 799,
  20721. bottom: 42.4 / 914.8856
  20722. }
  20723. },
  20724. },
  20725. [
  20726. {
  20727. name: "Normal",
  20728. height: math.unit(5, "feet"),
  20729. default: true
  20730. },
  20731. ]
  20732. ))
  20733. characterMakers.push(() => makeCharacter(
  20734. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  20735. {
  20736. side: {
  20737. height: math.unit(3, "feet"),
  20738. weight: math.unit(225, "lb"),
  20739. name: "Side",
  20740. image: {
  20741. source: "./media/characters/saian/side.svg",
  20742. extra: 566 / 356,
  20743. bottom: 79.7 / 643
  20744. }
  20745. },
  20746. maw: {
  20747. height: math.unit(2.85, "feet"),
  20748. name: "Maw",
  20749. image: {
  20750. source: "./media/characters/saian/maw.svg"
  20751. }
  20752. },
  20753. },
  20754. [
  20755. {
  20756. name: "Normal",
  20757. height: math.unit(3, "feet"),
  20758. default: true
  20759. },
  20760. ]
  20761. ))
  20762. characterMakers.push(() => makeCharacter(
  20763. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  20764. {
  20765. side: {
  20766. height: math.unit(8, "feet"),
  20767. weight: math.unit(300, "lb"),
  20768. name: "Side",
  20769. image: {
  20770. source: "./media/characters/equus-silvermane/side.svg",
  20771. extra: 2176 / 2050,
  20772. bottom: 65.7 / 2245
  20773. }
  20774. },
  20775. front: {
  20776. height: math.unit(8, "feet"),
  20777. weight: math.unit(300, "lb"),
  20778. name: "Front",
  20779. image: {
  20780. source: "./media/characters/equus-silvermane/front.svg",
  20781. extra: 4633 / 4400,
  20782. bottom: 71.3 / 4706.915
  20783. }
  20784. },
  20785. sideStepping: {
  20786. height: math.unit(8, "feet"),
  20787. weight: math.unit(300, "lb"),
  20788. name: "Side (Stepping)",
  20789. image: {
  20790. source: "./media/characters/equus-silvermane/side-stepping.svg",
  20791. extra: 1968 / 1860,
  20792. bottom: 16.4 / 1989
  20793. }
  20794. },
  20795. },
  20796. [
  20797. {
  20798. name: "Normal",
  20799. height: math.unit(8, "feet")
  20800. },
  20801. {
  20802. name: "Minimacro",
  20803. height: math.unit(75, "feet"),
  20804. default: true
  20805. },
  20806. {
  20807. name: "Macro",
  20808. height: math.unit(150, "feet")
  20809. },
  20810. {
  20811. name: "Macro+",
  20812. height: math.unit(1000, "feet")
  20813. },
  20814. {
  20815. name: "Megamacro",
  20816. height: math.unit(1, "mile")
  20817. },
  20818. ]
  20819. ))
  20820. characterMakers.push(() => makeCharacter(
  20821. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  20822. {
  20823. side: {
  20824. height: math.unit(20, "feet"),
  20825. weight: math.unit(30000, "kg"),
  20826. name: "Side",
  20827. image: {
  20828. source: "./media/characters/windar/side.svg",
  20829. extra: 1491 / 1248,
  20830. bottom: 82.56 / 1568
  20831. }
  20832. },
  20833. },
  20834. [
  20835. {
  20836. name: "Normal",
  20837. height: math.unit(20, "feet"),
  20838. default: true
  20839. },
  20840. ]
  20841. ))
  20842. characterMakers.push(() => makeCharacter(
  20843. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  20844. {
  20845. side: {
  20846. height: math.unit(15.66, "feet"),
  20847. weight: math.unit(150, "lb"),
  20848. name: "Side",
  20849. image: {
  20850. source: "./media/characters/melody/side.svg",
  20851. extra: 1097 / 944,
  20852. bottom: 11.8 / 1109
  20853. }
  20854. },
  20855. sideOutfit: {
  20856. height: math.unit(15.66, "feet"),
  20857. weight: math.unit(150, "lb"),
  20858. name: "Side (Outfit)",
  20859. image: {
  20860. source: "./media/characters/melody/side-outfit.svg",
  20861. extra: 1097 / 944,
  20862. bottom: 11.8 / 1109
  20863. }
  20864. },
  20865. },
  20866. [
  20867. {
  20868. name: "Normal",
  20869. height: math.unit(15.66, "feet"),
  20870. default: true
  20871. },
  20872. ]
  20873. ))
  20874. characterMakers.push(() => makeCharacter(
  20875. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  20876. {
  20877. front: {
  20878. height: math.unit(8, "feet"),
  20879. weight: math.unit(325, "lb"),
  20880. name: "Front",
  20881. image: {
  20882. source: "./media/characters/windera/front.svg",
  20883. extra: 3180 / 2845,
  20884. bottom: 178 / 3365
  20885. }
  20886. },
  20887. },
  20888. [
  20889. {
  20890. name: "Normal",
  20891. height: math.unit(8, "feet"),
  20892. default: true
  20893. },
  20894. ]
  20895. ))
  20896. characterMakers.push(() => makeCharacter(
  20897. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  20898. {
  20899. front: {
  20900. height: math.unit(28.75, "feet"),
  20901. weight: math.unit(2000, "kg"),
  20902. name: "Front",
  20903. image: {
  20904. source: "./media/characters/sonear/front.svg",
  20905. extra: 1041.1 / 964.9,
  20906. bottom: 53.7 / 1096.6
  20907. }
  20908. },
  20909. },
  20910. [
  20911. {
  20912. name: "Normal",
  20913. height: math.unit(28.75, "feet"),
  20914. default: true
  20915. },
  20916. ]
  20917. ))
  20918. characterMakers.push(() => makeCharacter(
  20919. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  20920. {
  20921. side: {
  20922. height: math.unit(25.5, "feet"),
  20923. weight: math.unit(23000, "kg"),
  20924. name: "Side",
  20925. image: {
  20926. source: "./media/characters/kanara/side.svg"
  20927. }
  20928. },
  20929. },
  20930. [
  20931. {
  20932. name: "Normal",
  20933. height: math.unit(25.5, "feet"),
  20934. default: true
  20935. },
  20936. ]
  20937. ))
  20938. characterMakers.push(() => makeCharacter(
  20939. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  20940. {
  20941. side: {
  20942. height: math.unit(10, "feet"),
  20943. weight: math.unit(1000, "kg"),
  20944. name: "Side",
  20945. image: {
  20946. source: "./media/characters/ereus/side.svg",
  20947. extra: 1157 / 959,
  20948. bottom: 153 / 1312.5
  20949. }
  20950. },
  20951. },
  20952. [
  20953. {
  20954. name: "Normal",
  20955. height: math.unit(10, "feet"),
  20956. default: true
  20957. },
  20958. ]
  20959. ))
  20960. characterMakers.push(() => makeCharacter(
  20961. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  20962. {
  20963. side: {
  20964. height: math.unit(4.5, "feet"),
  20965. weight: math.unit(500, "lb"),
  20966. name: "Side",
  20967. image: {
  20968. source: "./media/characters/e-ter/side.svg",
  20969. extra: 1550 / 1248,
  20970. bottom: 146 / 1694
  20971. }
  20972. },
  20973. },
  20974. [
  20975. {
  20976. name: "Normal",
  20977. height: math.unit(4.5, "feet"),
  20978. default: true
  20979. },
  20980. ]
  20981. ))
  20982. characterMakers.push(() => makeCharacter(
  20983. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  20984. {
  20985. side: {
  20986. height: math.unit(9.7, "feet"),
  20987. weight: math.unit(4000, "kg"),
  20988. name: "Side",
  20989. image: {
  20990. source: "./media/characters/yamie/side.svg"
  20991. }
  20992. },
  20993. },
  20994. [
  20995. {
  20996. name: "Normal",
  20997. height: math.unit(9.7, "feet"),
  20998. default: true
  20999. },
  21000. ]
  21001. ))
  21002. characterMakers.push(() => makeCharacter(
  21003. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21004. {
  21005. front: {
  21006. height: math.unit(50, "feet"),
  21007. weight: math.unit(50000, "kg"),
  21008. name: "Front",
  21009. image: {
  21010. source: "./media/characters/anders/front.svg",
  21011. extra: 570 / 539,
  21012. bottom: 14.7 / 586.7
  21013. }
  21014. },
  21015. },
  21016. [
  21017. {
  21018. name: "Large",
  21019. height: math.unit(50, "feet")
  21020. },
  21021. {
  21022. name: "Macro",
  21023. height: math.unit(2000, "feet"),
  21024. default: true
  21025. },
  21026. {
  21027. name: "Megamacro",
  21028. height: math.unit(12, "miles")
  21029. },
  21030. ]
  21031. ))
  21032. characterMakers.push(() => makeCharacter(
  21033. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21034. {
  21035. front: {
  21036. height: math.unit(7 + 2 / 12, "feet"),
  21037. weight: math.unit(300, "lb"),
  21038. name: "Front",
  21039. image: {
  21040. source: "./media/characters/reban/front.svg",
  21041. extra: 516 / 487,
  21042. bottom: 42.82 / 558.356
  21043. }
  21044. },
  21045. dick: {
  21046. height: math.unit(7 / 5, "feet"),
  21047. name: "Dick",
  21048. image: {
  21049. source: "./media/characters/reban/dick.svg"
  21050. }
  21051. },
  21052. },
  21053. [
  21054. {
  21055. name: "Natural Height",
  21056. height: math.unit(7 + 2 / 12, "feet")
  21057. },
  21058. {
  21059. name: "Macro",
  21060. height: math.unit(500, "feet"),
  21061. default: true
  21062. },
  21063. {
  21064. name: "Canon Height",
  21065. height: math.unit(50, "AU")
  21066. },
  21067. ]
  21068. ))
  21069. characterMakers.push(() => makeCharacter(
  21070. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21071. {
  21072. front: {
  21073. height: math.unit(6, "feet"),
  21074. weight: math.unit(150, "lb"),
  21075. name: "Front",
  21076. image: {
  21077. source: "./media/characters/terrance-keayes/front.svg",
  21078. extra: 1.005,
  21079. bottom: 151 / 1615
  21080. }
  21081. },
  21082. side: {
  21083. height: math.unit(6, "feet"),
  21084. weight: math.unit(150, "lb"),
  21085. name: "Side",
  21086. image: {
  21087. source: "./media/characters/terrance-keayes/side.svg",
  21088. extra: 1.005,
  21089. bottom: 129.4 / 1544
  21090. }
  21091. },
  21092. back: {
  21093. height: math.unit(6, "feet"),
  21094. weight: math.unit(150, "lb"),
  21095. name: "Back",
  21096. image: {
  21097. source: "./media/characters/terrance-keayes/back.svg",
  21098. extra: 1.005,
  21099. bottom: 58.4 / 1557.3
  21100. }
  21101. },
  21102. dick: {
  21103. height: math.unit(6 * 0.208, "feet"),
  21104. name: "Dick",
  21105. image: {
  21106. source: "./media/characters/terrance-keayes/dick.svg"
  21107. }
  21108. },
  21109. },
  21110. [
  21111. {
  21112. name: "Canon Height",
  21113. height: math.unit(35, "miles"),
  21114. default: true
  21115. },
  21116. ]
  21117. ))
  21118. characterMakers.push(() => makeCharacter(
  21119. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21120. {
  21121. front: {
  21122. height: math.unit(6, "feet"),
  21123. weight: math.unit(150, "lb"),
  21124. name: "Front",
  21125. image: {
  21126. source: "./media/characters/ofelia/front.svg",
  21127. extra: 546 / 541,
  21128. bottom: 39 / 583
  21129. }
  21130. },
  21131. back: {
  21132. height: math.unit(6, "feet"),
  21133. weight: math.unit(150, "lb"),
  21134. name: "Back",
  21135. image: {
  21136. source: "./media/characters/ofelia/back.svg",
  21137. extra: 564 / 559.5,
  21138. bottom: 8.69 / 573.02
  21139. }
  21140. },
  21141. maw: {
  21142. height: math.unit(1, "feet"),
  21143. name: "Maw",
  21144. image: {
  21145. source: "./media/characters/ofelia/maw.svg"
  21146. }
  21147. },
  21148. foot: {
  21149. height: math.unit(1.949, "feet"),
  21150. name: "Foot",
  21151. image: {
  21152. source: "./media/characters/ofelia/foot.svg"
  21153. }
  21154. },
  21155. },
  21156. [
  21157. {
  21158. name: "Canon Height",
  21159. height: math.unit(2000, "miles"),
  21160. default: true
  21161. },
  21162. ]
  21163. ))
  21164. characterMakers.push(() => makeCharacter(
  21165. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21166. {
  21167. front: {
  21168. height: math.unit(6, "feet"),
  21169. weight: math.unit(150, "lb"),
  21170. name: "Front",
  21171. image: {
  21172. source: "./media/characters/samuel/front.svg",
  21173. extra: 265 / 258,
  21174. bottom: 2 / 266.1566
  21175. }
  21176. },
  21177. },
  21178. [
  21179. {
  21180. name: "Macro",
  21181. height: math.unit(100, "feet"),
  21182. default: true
  21183. },
  21184. {
  21185. name: "Full Size",
  21186. height: math.unit(1000, "miles")
  21187. },
  21188. ]
  21189. ))
  21190. characterMakers.push(() => makeCharacter(
  21191. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21192. {
  21193. front: {
  21194. height: math.unit(6, "feet"),
  21195. weight: math.unit(300, "lb"),
  21196. name: "Front",
  21197. image: {
  21198. source: "./media/characters/beishir-kiel/front.svg",
  21199. extra: 569 / 547,
  21200. bottom: 41.9 / 609
  21201. }
  21202. },
  21203. maw: {
  21204. height: math.unit(6 * 0.202, "feet"),
  21205. name: "Maw",
  21206. image: {
  21207. source: "./media/characters/beishir-kiel/maw.svg"
  21208. }
  21209. },
  21210. },
  21211. [
  21212. {
  21213. name: "Macro",
  21214. height: math.unit(300, "feet"),
  21215. default: true
  21216. },
  21217. ]
  21218. ))
  21219. characterMakers.push(() => makeCharacter(
  21220. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21221. {
  21222. front: {
  21223. height: math.unit(5 + 8 / 12, "feet"),
  21224. weight: math.unit(120, "lb"),
  21225. name: "Front",
  21226. image: {
  21227. source: "./media/characters/logan-grey/front.svg",
  21228. extra: 2539 / 2393,
  21229. bottom: 97.6 / 2636.37
  21230. }
  21231. },
  21232. frontAlt: {
  21233. height: math.unit(5 + 8 / 12, "feet"),
  21234. weight: math.unit(120, "lb"),
  21235. name: "Front (Alt)",
  21236. image: {
  21237. source: "./media/characters/logan-grey/front-alt.svg",
  21238. extra: 958 / 893,
  21239. bottom: 15 / 970.768
  21240. }
  21241. },
  21242. back: {
  21243. height: math.unit(5 + 8 / 12, "feet"),
  21244. weight: math.unit(120, "lb"),
  21245. name: "Back",
  21246. image: {
  21247. source: "./media/characters/logan-grey/back.svg",
  21248. extra: 958 / 893,
  21249. bottom: 2.1881 / 970.9788
  21250. }
  21251. },
  21252. dick: {
  21253. height: math.unit(1.437, "feet"),
  21254. name: "Dick",
  21255. image: {
  21256. source: "./media/characters/logan-grey/dick.svg"
  21257. }
  21258. },
  21259. },
  21260. [
  21261. {
  21262. name: "Normal",
  21263. height: math.unit(5 + 8 / 12, "feet")
  21264. },
  21265. {
  21266. name: "The 500 Foot Femboy",
  21267. height: math.unit(500, "feet"),
  21268. default: true
  21269. },
  21270. {
  21271. name: "Megmacro",
  21272. height: math.unit(20, "miles")
  21273. },
  21274. ]
  21275. ))
  21276. characterMakers.push(() => makeCharacter(
  21277. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21278. {
  21279. front: {
  21280. height: math.unit(8 + 2 / 12, "feet"),
  21281. weight: math.unit(275, "lb"),
  21282. name: "Front",
  21283. image: {
  21284. source: "./media/characters/draganta/front.svg",
  21285. extra: 1177 / 1135,
  21286. bottom: 33.46 / 1212.1
  21287. }
  21288. },
  21289. },
  21290. [
  21291. {
  21292. name: "Normal",
  21293. height: math.unit(8 + 6 / 12, "feet"),
  21294. default: true
  21295. },
  21296. {
  21297. name: "Macro",
  21298. height: math.unit(150, "feet")
  21299. },
  21300. {
  21301. name: "Megamacro",
  21302. height: math.unit(1000, "miles")
  21303. },
  21304. ]
  21305. ))
  21306. characterMakers.push(() => makeCharacter(
  21307. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21308. {
  21309. front: {
  21310. height: math.unit(1.72, "m"),
  21311. weight: math.unit(80, "lb"),
  21312. name: "Front",
  21313. image: {
  21314. source: "./media/characters/voski/front.svg",
  21315. extra: 2076.22 / 2022.4,
  21316. bottom: 102.7 / 2177.3866
  21317. }
  21318. },
  21319. frontNsfw: {
  21320. height: math.unit(1.72, "m"),
  21321. weight: math.unit(80, "lb"),
  21322. name: "Front (NSFW)",
  21323. image: {
  21324. source: "./media/characters/voski/front-nsfw.svg",
  21325. extra: 2076.22 / 2022.4,
  21326. bottom: 102.7 / 2177.3866
  21327. }
  21328. },
  21329. back: {
  21330. height: math.unit(1.72, "m"),
  21331. weight: math.unit(80, "lb"),
  21332. name: "Back",
  21333. image: {
  21334. source: "./media/characters/voski/back.svg",
  21335. extra: 2104 / 2051,
  21336. bottom: 10.45 / 2113.63
  21337. }
  21338. },
  21339. },
  21340. [
  21341. {
  21342. name: "Normal",
  21343. height: math.unit(1.72, "m")
  21344. },
  21345. {
  21346. name: "Macro",
  21347. height: math.unit(55, "m"),
  21348. default: true
  21349. },
  21350. {
  21351. name: "Macro+",
  21352. height: math.unit(300, "m")
  21353. },
  21354. {
  21355. name: "Macro++",
  21356. height: math.unit(700, "m")
  21357. },
  21358. {
  21359. name: "Macro+++",
  21360. height: math.unit(4500, "m")
  21361. },
  21362. {
  21363. name: "Macro++++",
  21364. height: math.unit(45, "km")
  21365. },
  21366. {
  21367. name: "Macro+++++",
  21368. height: math.unit(1220, "km")
  21369. },
  21370. ]
  21371. ))
  21372. characterMakers.push(() => makeCharacter(
  21373. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21374. {
  21375. front: {
  21376. height: math.unit(2.3, "m"),
  21377. weight: math.unit(304, "kg"),
  21378. name: "Front",
  21379. image: {
  21380. source: "./media/characters/icowom-lee/front.svg",
  21381. extra: 985 / 955,
  21382. bottom: 25.4 / 1012
  21383. }
  21384. },
  21385. fronttentacles: {
  21386. height: math.unit(2.3, "m"),
  21387. weight: math.unit(304, "kg"),
  21388. name: "Front-tentacles",
  21389. image: {
  21390. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21391. extra: 985 / 955,
  21392. bottom: 25.4 / 1012
  21393. }
  21394. },
  21395. back: {
  21396. height: math.unit(2.3, "m"),
  21397. weight: math.unit(304, "kg"),
  21398. name: "Back",
  21399. image: {
  21400. source: "./media/characters/icowom-lee/back.svg",
  21401. extra: 975 / 954,
  21402. bottom: 9.5 / 985
  21403. }
  21404. },
  21405. backtentacles: {
  21406. height: math.unit(2.3, "m"),
  21407. weight: math.unit(304, "kg"),
  21408. name: "Back-tentacles",
  21409. image: {
  21410. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21411. extra: 975 / 954,
  21412. bottom: 9.5 / 985
  21413. }
  21414. },
  21415. frontDressed: {
  21416. height: math.unit(2.3, "m"),
  21417. weight: math.unit(304, "kg"),
  21418. name: "Front (Dressed)",
  21419. image: {
  21420. source: "./media/characters/icowom-lee/front-dressed.svg",
  21421. extra: 3076 / 2933,
  21422. bottom: 51.4 / 3125.1889
  21423. }
  21424. },
  21425. rump: {
  21426. height: math.unit(0.776, "meters"),
  21427. name: "Rump",
  21428. image: {
  21429. source: "./media/characters/icowom-lee/rump.svg"
  21430. }
  21431. },
  21432. genitals: {
  21433. height: math.unit(0.78, "meters"),
  21434. name: "Genitals",
  21435. image: {
  21436. source: "./media/characters/icowom-lee/genitals.svg"
  21437. }
  21438. },
  21439. },
  21440. [
  21441. {
  21442. name: "Normal",
  21443. height: math.unit(2.3, "meters"),
  21444. default: true
  21445. },
  21446. {
  21447. name: "Macro",
  21448. height: math.unit(94, "meters"),
  21449. default: true
  21450. },
  21451. ]
  21452. ))
  21453. characterMakers.push(() => makeCharacter(
  21454. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21455. {
  21456. front: {
  21457. height: math.unit(22, "meters"),
  21458. weight: math.unit(21000, "kg"),
  21459. name: "Front",
  21460. image: {
  21461. source: "./media/characters/shock-diamond/front.svg",
  21462. extra: 2204 / 2053,
  21463. bottom: 65 / 2239.47
  21464. }
  21465. },
  21466. frontNude: {
  21467. height: math.unit(22, "meters"),
  21468. weight: math.unit(21000, "kg"),
  21469. name: "Front (Nude)",
  21470. image: {
  21471. source: "./media/characters/shock-diamond/front-nude.svg",
  21472. extra: 2514 / 2285,
  21473. bottom: 13 / 2527.56
  21474. }
  21475. },
  21476. },
  21477. [
  21478. {
  21479. name: "Normal",
  21480. height: math.unit(3, "meters")
  21481. },
  21482. {
  21483. name: "Macro",
  21484. height: math.unit(22, "meters"),
  21485. default: true
  21486. },
  21487. ]
  21488. ))
  21489. characterMakers.push(() => makeCharacter(
  21490. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21491. {
  21492. front: {
  21493. height: math.unit(5 + 4 / 12, "feet"),
  21494. weight: math.unit(120, "lb"),
  21495. name: "Front",
  21496. image: {
  21497. source: "./media/characters/rory/front.svg",
  21498. extra: 589 / 556,
  21499. bottom: 45.7 / 635.76
  21500. }
  21501. },
  21502. frontNude: {
  21503. height: math.unit(5 + 4 / 12, "feet"),
  21504. weight: math.unit(120, "lb"),
  21505. name: "Front (Nude)",
  21506. image: {
  21507. source: "./media/characters/rory/front-nude.svg",
  21508. extra: 589 / 556,
  21509. bottom: 45.7 / 635.76
  21510. }
  21511. },
  21512. side: {
  21513. height: math.unit(5 + 4 / 12, "feet"),
  21514. weight: math.unit(120, "lb"),
  21515. name: "Side",
  21516. image: {
  21517. source: "./media/characters/rory/side.svg",
  21518. extra: 597 / 564,
  21519. bottom: 55 / 653
  21520. }
  21521. },
  21522. back: {
  21523. height: math.unit(5 + 4 / 12, "feet"),
  21524. weight: math.unit(120, "lb"),
  21525. name: "Back",
  21526. image: {
  21527. source: "./media/characters/rory/back.svg",
  21528. extra: 620 / 585,
  21529. bottom: 8.86 / 630.43
  21530. }
  21531. },
  21532. dick: {
  21533. height: math.unit(0.86, "feet"),
  21534. name: "Dick",
  21535. image: {
  21536. source: "./media/characters/rory/dick.svg"
  21537. }
  21538. },
  21539. },
  21540. [
  21541. {
  21542. name: "Normal",
  21543. height: math.unit(5 + 4 / 12, "feet"),
  21544. default: true
  21545. },
  21546. {
  21547. name: "Macro",
  21548. height: math.unit(100, "feet")
  21549. },
  21550. {
  21551. name: "Macro+",
  21552. height: math.unit(140, "feet")
  21553. },
  21554. {
  21555. name: "Macro++",
  21556. height: math.unit(300, "feet")
  21557. },
  21558. ]
  21559. ))
  21560. characterMakers.push(() => makeCharacter(
  21561. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21562. {
  21563. front: {
  21564. height: math.unit(5 + 9 / 12, "feet"),
  21565. weight: math.unit(190, "lb"),
  21566. name: "Front",
  21567. image: {
  21568. source: "./media/characters/sprisk/front.svg",
  21569. extra: 1225 / 1180,
  21570. bottom: 42.7 / 1266.4
  21571. }
  21572. },
  21573. frontNsfw: {
  21574. height: math.unit(5 + 9 / 12, "feet"),
  21575. weight: math.unit(190, "lb"),
  21576. name: "Front (NSFW)",
  21577. image: {
  21578. source: "./media/characters/sprisk/front-nsfw.svg",
  21579. extra: 1225 / 1180,
  21580. bottom: 42.7 / 1266.4
  21581. }
  21582. },
  21583. back: {
  21584. height: math.unit(5 + 9 / 12, "feet"),
  21585. weight: math.unit(190, "lb"),
  21586. name: "Back",
  21587. image: {
  21588. source: "./media/characters/sprisk/back.svg",
  21589. extra: 1247 / 1200,
  21590. bottom: 5.6 / 1253.04
  21591. }
  21592. },
  21593. },
  21594. [
  21595. {
  21596. name: "Tiny",
  21597. height: math.unit(2, "inches")
  21598. },
  21599. {
  21600. name: "Normal",
  21601. height: math.unit(5 + 9 / 12, "feet"),
  21602. default: true
  21603. },
  21604. {
  21605. name: "Mini Macro",
  21606. height: math.unit(18, "feet")
  21607. },
  21608. {
  21609. name: "Macro",
  21610. height: math.unit(100, "feet")
  21611. },
  21612. {
  21613. name: "MACRO",
  21614. height: math.unit(50, "miles")
  21615. },
  21616. {
  21617. name: "M A C R O",
  21618. height: math.unit(300, "miles")
  21619. },
  21620. ]
  21621. ))
  21622. characterMakers.push(() => makeCharacter(
  21623. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21624. {
  21625. side: {
  21626. height: math.unit(15.6, "meters"),
  21627. weight: math.unit(700000, "kg"),
  21628. name: "Side",
  21629. image: {
  21630. source: "./media/characters/bunsen/side.svg",
  21631. extra: 1644 / 358
  21632. }
  21633. },
  21634. foot: {
  21635. height: math.unit(1.611 * 1644 / 358, "meter"),
  21636. name: "Foot",
  21637. image: {
  21638. source: "./media/characters/bunsen/foot.svg"
  21639. }
  21640. },
  21641. },
  21642. [
  21643. {
  21644. name: "Small",
  21645. height: math.unit(10, "feet")
  21646. },
  21647. {
  21648. name: "Normal",
  21649. height: math.unit(15.6, "meters"),
  21650. default: true
  21651. },
  21652. ]
  21653. ))
  21654. characterMakers.push(() => makeCharacter(
  21655. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  21656. {
  21657. front: {
  21658. height: math.unit(4 + 11 / 12, "feet"),
  21659. weight: math.unit(140, "lb"),
  21660. name: "Front",
  21661. image: {
  21662. source: "./media/characters/sesh/front.svg",
  21663. extra: 3420 / 3231,
  21664. bottom: 72 / 3949.5
  21665. }
  21666. },
  21667. },
  21668. [
  21669. {
  21670. name: "Normal",
  21671. height: math.unit(4 + 11 / 12, "feet")
  21672. },
  21673. {
  21674. name: "Grown",
  21675. height: math.unit(15, "feet"),
  21676. default: true
  21677. },
  21678. {
  21679. name: "Macro",
  21680. height: math.unit(1500, "feet")
  21681. },
  21682. {
  21683. name: "Megamacro",
  21684. height: math.unit(30, "miles")
  21685. },
  21686. {
  21687. name: "Continental",
  21688. height: math.unit(3000, "miles")
  21689. },
  21690. {
  21691. name: "Gravity Mass",
  21692. height: math.unit(300000, "miles")
  21693. },
  21694. {
  21695. name: "Planet Buster",
  21696. height: math.unit(30000000, "miles")
  21697. },
  21698. {
  21699. name: "Big",
  21700. height: math.unit(3000000000, "miles")
  21701. },
  21702. ]
  21703. ))
  21704. characterMakers.push(() => makeCharacter(
  21705. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  21706. {
  21707. front: {
  21708. height: math.unit(9, "feet"),
  21709. weight: math.unit(350, "lb"),
  21710. name: "Front",
  21711. image: {
  21712. source: "./media/characters/pepper/front.svg",
  21713. extra: 1448 / 1312,
  21714. bottom: 9.4 / 1457.88
  21715. }
  21716. },
  21717. back: {
  21718. height: math.unit(9, "feet"),
  21719. weight: math.unit(350, "lb"),
  21720. name: "Back",
  21721. image: {
  21722. source: "./media/characters/pepper/back.svg",
  21723. extra: 1423 / 1300,
  21724. bottom: 4.6 / 1429
  21725. }
  21726. },
  21727. maw: {
  21728. height: math.unit(0.932, "feet"),
  21729. name: "Maw",
  21730. image: {
  21731. source: "./media/characters/pepper/maw.svg"
  21732. }
  21733. },
  21734. },
  21735. [
  21736. {
  21737. name: "Normal",
  21738. height: math.unit(9, "feet"),
  21739. default: true
  21740. },
  21741. ]
  21742. ))
  21743. characterMakers.push(() => makeCharacter(
  21744. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  21745. {
  21746. front: {
  21747. height: math.unit(6, "feet"),
  21748. weight: math.unit(150, "lb"),
  21749. name: "Front",
  21750. image: {
  21751. source: "./media/characters/maelstrom/front.svg",
  21752. extra: 2100 / 1883,
  21753. bottom: 94 / 2196.7
  21754. }
  21755. },
  21756. },
  21757. [
  21758. {
  21759. name: "Less Kaiju",
  21760. height: math.unit(200, "feet")
  21761. },
  21762. {
  21763. name: "Kaiju",
  21764. height: math.unit(400, "feet"),
  21765. default: true
  21766. },
  21767. {
  21768. name: "Kaiju-er",
  21769. height: math.unit(600, "feet")
  21770. },
  21771. ]
  21772. ))
  21773. characterMakers.push(() => makeCharacter(
  21774. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  21775. {
  21776. front: {
  21777. height: math.unit(6 + 5 / 12, "feet"),
  21778. weight: math.unit(180, "lb"),
  21779. name: "Front",
  21780. image: {
  21781. source: "./media/characters/lexir/front.svg",
  21782. extra: 180 / 172,
  21783. bottom: 12 / 192
  21784. }
  21785. },
  21786. back: {
  21787. height: math.unit(6 + 5 / 12, "feet"),
  21788. weight: math.unit(180, "lb"),
  21789. name: "Back",
  21790. image: {
  21791. source: "./media/characters/lexir/back.svg",
  21792. extra: 183.84 / 175.5,
  21793. bottom: 3.1 / 187
  21794. }
  21795. },
  21796. },
  21797. [
  21798. {
  21799. name: "Very Smal",
  21800. height: math.unit(1, "nm")
  21801. },
  21802. {
  21803. name: "Normal",
  21804. height: math.unit(6 + 5 / 12, "feet"),
  21805. default: true
  21806. },
  21807. {
  21808. name: "Macro",
  21809. height: math.unit(1, "mile")
  21810. },
  21811. {
  21812. name: "Megamacro",
  21813. height: math.unit(50, "miles")
  21814. },
  21815. ]
  21816. ))
  21817. characterMakers.push(() => makeCharacter(
  21818. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  21819. {
  21820. front: {
  21821. height: math.unit(1.5, "meters"),
  21822. weight: math.unit(100, "lb"),
  21823. name: "Front",
  21824. image: {
  21825. source: "./media/characters/maksio/front.svg",
  21826. extra: 1549 / 1531,
  21827. bottom: 123.7 / 1674.5429
  21828. }
  21829. },
  21830. back: {
  21831. height: math.unit(1.5, "meters"),
  21832. weight: math.unit(100, "lb"),
  21833. name: "Back",
  21834. image: {
  21835. source: "./media/characters/maksio/back.svg",
  21836. extra: 1541 / 1509,
  21837. bottom: 97 / 1639
  21838. }
  21839. },
  21840. hand: {
  21841. height: math.unit(0.621, "feet"),
  21842. name: "Hand",
  21843. image: {
  21844. source: "./media/characters/maksio/hand.svg"
  21845. }
  21846. },
  21847. foot: {
  21848. height: math.unit(1.611, "feet"),
  21849. name: "Foot",
  21850. image: {
  21851. source: "./media/characters/maksio/foot.svg"
  21852. }
  21853. },
  21854. },
  21855. [
  21856. {
  21857. name: "Shrunken",
  21858. height: math.unit(10, "cm")
  21859. },
  21860. {
  21861. name: "Normal",
  21862. height: math.unit(150, "cm"),
  21863. default: true
  21864. },
  21865. ]
  21866. ))
  21867. characterMakers.push(() => makeCharacter(
  21868. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  21869. {
  21870. front: {
  21871. height: math.unit(100, "feet"),
  21872. name: "Front",
  21873. image: {
  21874. source: "./media/characters/erza-bear/front.svg",
  21875. extra: 2449 / 2390,
  21876. bottom: 46 / 2494
  21877. }
  21878. },
  21879. back: {
  21880. height: math.unit(100, "feet"),
  21881. name: "Back",
  21882. image: {
  21883. source: "./media/characters/erza-bear/back.svg",
  21884. extra: 2489 / 2430,
  21885. bottom: 85.4 / 2480
  21886. }
  21887. },
  21888. tail: {
  21889. height: math.unit(42, "feet"),
  21890. name: "Tail",
  21891. image: {
  21892. source: "./media/characters/erza-bear/tail.svg"
  21893. }
  21894. },
  21895. tongue: {
  21896. height: math.unit(8, "feet"),
  21897. name: "Tongue",
  21898. image: {
  21899. source: "./media/characters/erza-bear/tongue.svg"
  21900. }
  21901. },
  21902. dick: {
  21903. height: math.unit(10.5, "feet"),
  21904. name: "Dick",
  21905. image: {
  21906. source: "./media/characters/erza-bear/dick.svg"
  21907. }
  21908. },
  21909. dickVertical: {
  21910. height: math.unit(16.9, "feet"),
  21911. name: "Dick (Vertical)",
  21912. image: {
  21913. source: "./media/characters/erza-bear/dick-vertical.svg"
  21914. }
  21915. },
  21916. },
  21917. [
  21918. {
  21919. name: "Macro",
  21920. height: math.unit(100, "feet"),
  21921. default: true
  21922. },
  21923. ]
  21924. ))
  21925. characterMakers.push(() => makeCharacter(
  21926. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  21927. {
  21928. front: {
  21929. height: math.unit(172, "cm"),
  21930. weight: math.unit(73, "kg"),
  21931. name: "Front",
  21932. image: {
  21933. source: "./media/characters/violet-flor/front.svg",
  21934. extra: 1530 / 1442,
  21935. bottom: 61.9 / 1588.8
  21936. }
  21937. },
  21938. back: {
  21939. height: math.unit(180, "cm"),
  21940. weight: math.unit(73, "kg"),
  21941. name: "Back",
  21942. image: {
  21943. source: "./media/characters/violet-flor/back.svg",
  21944. extra: 1692 / 1630,
  21945. bottom: 20 / 1712
  21946. }
  21947. },
  21948. },
  21949. [
  21950. {
  21951. name: "Normal",
  21952. height: math.unit(172, "cm"),
  21953. default: true
  21954. },
  21955. ]
  21956. ))
  21957. characterMakers.push(() => makeCharacter(
  21958. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  21959. {
  21960. front: {
  21961. height: math.unit(6, "feet"),
  21962. weight: math.unit(220, "lb"),
  21963. name: "Front",
  21964. image: {
  21965. source: "./media/characters/lynn-rhea/front.svg",
  21966. extra: 310 / 273
  21967. }
  21968. },
  21969. back: {
  21970. height: math.unit(6, "feet"),
  21971. weight: math.unit(220, "lb"),
  21972. name: "Back",
  21973. image: {
  21974. source: "./media/characters/lynn-rhea/back.svg",
  21975. extra: 310 / 273
  21976. }
  21977. },
  21978. dicks: {
  21979. height: math.unit(0.9, "feet"),
  21980. name: "Dicks",
  21981. image: {
  21982. source: "./media/characters/lynn-rhea/dicks.svg"
  21983. }
  21984. },
  21985. slit: {
  21986. height: math.unit(0.4, "feet"),
  21987. name: "Slit",
  21988. image: {
  21989. source: "./media/characters/lynn-rhea/slit.svg"
  21990. }
  21991. },
  21992. },
  21993. [
  21994. {
  21995. name: "Micro",
  21996. height: math.unit(1, "inch")
  21997. },
  21998. {
  21999. name: "Macro",
  22000. height: math.unit(60, "feet"),
  22001. default: true
  22002. },
  22003. {
  22004. name: "Megamacro",
  22005. height: math.unit(2, "miles")
  22006. },
  22007. {
  22008. name: "Gigamacro",
  22009. height: math.unit(3, "earths")
  22010. },
  22011. {
  22012. name: "Galactic",
  22013. height: math.unit(0.8, "galaxies")
  22014. },
  22015. ]
  22016. ))
  22017. characterMakers.push(() => makeCharacter(
  22018. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22019. {
  22020. front: {
  22021. height: math.unit(1600, "feet"),
  22022. weight: math.unit(85758785169, "kg"),
  22023. name: "Front",
  22024. image: {
  22025. source: "./media/characters/valathos/front.svg",
  22026. extra: 1451 / 1339
  22027. }
  22028. },
  22029. },
  22030. [
  22031. {
  22032. name: "Macro",
  22033. height: math.unit(1600, "feet"),
  22034. default: true
  22035. },
  22036. ]
  22037. ))
  22038. characterMakers.push(() => makeCharacter(
  22039. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22040. {
  22041. front: {
  22042. height: math.unit(7 + 5 / 12, "feet"),
  22043. weight: math.unit(300, "lb"),
  22044. name: "Front",
  22045. image: {
  22046. source: "./media/characters/azula/front.svg",
  22047. extra: 3208 / 2880,
  22048. bottom: 80.2 / 3277
  22049. }
  22050. },
  22051. back: {
  22052. height: math.unit(7 + 5 / 12, "feet"),
  22053. weight: math.unit(300, "lb"),
  22054. name: "Back",
  22055. image: {
  22056. source: "./media/characters/azula/back.svg",
  22057. extra: 3169 / 2822,
  22058. bottom: 150.6 / 3321
  22059. }
  22060. },
  22061. },
  22062. [
  22063. {
  22064. name: "Normal",
  22065. height: math.unit(7 + 5 / 12, "feet"),
  22066. default: true
  22067. },
  22068. {
  22069. name: "Big",
  22070. height: math.unit(20, "feet")
  22071. },
  22072. ]
  22073. ))
  22074. characterMakers.push(() => makeCharacter(
  22075. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22076. {
  22077. front: {
  22078. height: math.unit(5 + 1 / 12, "feet"),
  22079. weight: math.unit(110, "lb"),
  22080. name: "Front",
  22081. image: {
  22082. source: "./media/characters/rupert/front.svg",
  22083. extra: 1549 / 1495,
  22084. bottom: 54.2 / 1604.4
  22085. }
  22086. },
  22087. },
  22088. [
  22089. {
  22090. name: "Normal",
  22091. height: math.unit(5 + 1 / 12, "feet"),
  22092. default: true
  22093. },
  22094. ]
  22095. ))
  22096. characterMakers.push(() => makeCharacter(
  22097. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22098. {
  22099. front: {
  22100. height: math.unit(8 + 4 / 12, "feet"),
  22101. weight: math.unit(350, "lb"),
  22102. name: "Front",
  22103. image: {
  22104. source: "./media/characters/sheera-castellar/front.svg",
  22105. extra: 1957 / 1894,
  22106. bottom: 26.97 / 1975.017
  22107. }
  22108. },
  22109. side: {
  22110. height: math.unit(8 + 4 / 12, "feet"),
  22111. weight: math.unit(350, "lb"),
  22112. name: "Side",
  22113. image: {
  22114. source: "./media/characters/sheera-castellar/side.svg",
  22115. extra: 1957 / 1894
  22116. }
  22117. },
  22118. back: {
  22119. height: math.unit(8 + 4 / 12, "feet"),
  22120. weight: math.unit(350, "lb"),
  22121. name: "Back",
  22122. image: {
  22123. source: "./media/characters/sheera-castellar/back.svg",
  22124. extra: 1957 / 1894
  22125. }
  22126. },
  22127. angled: {
  22128. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22129. weight: math.unit(350, "lb"),
  22130. name: "Angled",
  22131. image: {
  22132. source: "./media/characters/sheera-castellar/angled.svg",
  22133. extra: 1807 / 1707,
  22134. bottom: 68 / 1875
  22135. }
  22136. },
  22137. genitals: {
  22138. height: math.unit(2.2, "feet"),
  22139. name: "Genitals",
  22140. image: {
  22141. source: "./media/characters/sheera-castellar/genitals.svg"
  22142. }
  22143. },
  22144. },
  22145. [
  22146. {
  22147. name: "Normal",
  22148. height: math.unit(8 + 4 / 12, "feet")
  22149. },
  22150. {
  22151. name: "Macro",
  22152. height: math.unit(150, "feet"),
  22153. default: true
  22154. },
  22155. {
  22156. name: "Macro+",
  22157. height: math.unit(800, "feet")
  22158. },
  22159. ]
  22160. ))
  22161. characterMakers.push(() => makeCharacter(
  22162. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22163. {
  22164. front: {
  22165. height: math.unit(6, "feet"),
  22166. weight: math.unit(150, "lb"),
  22167. name: "Front",
  22168. image: {
  22169. source: "./media/characters/jaipur/front.svg",
  22170. extra: 3860 / 3731,
  22171. bottom: 287 / 4140
  22172. }
  22173. },
  22174. back: {
  22175. height: math.unit(6, "feet"),
  22176. weight: math.unit(150, "lb"),
  22177. name: "Back",
  22178. image: {
  22179. source: "./media/characters/jaipur/back.svg",
  22180. extra: 4060 / 3930,
  22181. bottom: 151 / 4200
  22182. }
  22183. },
  22184. },
  22185. [
  22186. {
  22187. name: "Normal",
  22188. height: math.unit(1.85, "meters"),
  22189. default: true
  22190. },
  22191. {
  22192. name: "Macro",
  22193. height: math.unit(150, "meters")
  22194. },
  22195. {
  22196. name: "Macro+",
  22197. height: math.unit(0.5, "miles")
  22198. },
  22199. {
  22200. name: "Macro++",
  22201. height: math.unit(2.5, "miles")
  22202. },
  22203. {
  22204. name: "Macro+++",
  22205. height: math.unit(12, "miles")
  22206. },
  22207. {
  22208. name: "Macro++++",
  22209. height: math.unit(120, "miles")
  22210. },
  22211. {
  22212. name: "Macro+++++",
  22213. height: math.unit(1200, "miles")
  22214. },
  22215. ]
  22216. ))
  22217. characterMakers.push(() => makeCharacter(
  22218. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22219. {
  22220. front: {
  22221. height: math.unit(6, "feet"),
  22222. weight: math.unit(150, "lb"),
  22223. name: "Front",
  22224. image: {
  22225. source: "./media/characters/sheila-wolf/front.svg",
  22226. extra: 1931 / 1808,
  22227. bottom: 29.5 / 1960
  22228. }
  22229. },
  22230. dick: {
  22231. height: math.unit(1.464, "feet"),
  22232. name: "Dick",
  22233. image: {
  22234. source: "./media/characters/sheila-wolf/dick.svg"
  22235. }
  22236. },
  22237. muzzle: {
  22238. height: math.unit(0.513, "feet"),
  22239. name: "Muzzle",
  22240. image: {
  22241. source: "./media/characters/sheila-wolf/muzzle.svg"
  22242. }
  22243. },
  22244. },
  22245. [
  22246. {
  22247. name: "Macro",
  22248. height: math.unit(70, "feet"),
  22249. default: true
  22250. },
  22251. ]
  22252. ))
  22253. characterMakers.push(() => makeCharacter(
  22254. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22255. {
  22256. front: {
  22257. height: math.unit(32, "meters"),
  22258. weight: math.unit(300000, "kg"),
  22259. name: "Front",
  22260. image: {
  22261. source: "./media/characters/almor/front.svg",
  22262. extra: 1408 / 1322,
  22263. bottom: 94.6 / 1506.5
  22264. }
  22265. },
  22266. },
  22267. [
  22268. {
  22269. name: "Macro",
  22270. height: math.unit(32, "meters"),
  22271. default: true
  22272. },
  22273. ]
  22274. ))
  22275. characterMakers.push(() => makeCharacter(
  22276. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22277. {
  22278. front: {
  22279. height: math.unit(7, "feet"),
  22280. weight: math.unit(200, "lb"),
  22281. name: "Front",
  22282. image: {
  22283. source: "./media/characters/silver/front.svg",
  22284. extra: 472.1 / 450.5,
  22285. bottom: 26.5 / 499.424
  22286. }
  22287. },
  22288. },
  22289. [
  22290. {
  22291. name: "Normal",
  22292. height: math.unit(7, "feet"),
  22293. default: true
  22294. },
  22295. {
  22296. name: "Macro",
  22297. height: math.unit(800, "feet")
  22298. },
  22299. {
  22300. name: "Megamacro",
  22301. height: math.unit(250, "miles")
  22302. },
  22303. ]
  22304. ))
  22305. characterMakers.push(() => makeCharacter(
  22306. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22307. {
  22308. front: {
  22309. height: math.unit(6, "feet"),
  22310. weight: math.unit(150, "lb"),
  22311. name: "Front",
  22312. image: {
  22313. source: "./media/characters/pliskin/front.svg",
  22314. extra: 1469 / 1359,
  22315. bottom: 70 / 1540
  22316. }
  22317. },
  22318. },
  22319. [
  22320. {
  22321. name: "Micro",
  22322. height: math.unit(3, "inches")
  22323. },
  22324. {
  22325. name: "Normal",
  22326. height: math.unit(5 + 11 / 12, "feet"),
  22327. default: true
  22328. },
  22329. {
  22330. name: "Macro",
  22331. height: math.unit(120, "feet")
  22332. },
  22333. ]
  22334. ))
  22335. characterMakers.push(() => makeCharacter(
  22336. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22337. {
  22338. front: {
  22339. height: math.unit(6, "feet"),
  22340. weight: math.unit(150, "lb"),
  22341. name: "Front",
  22342. image: {
  22343. source: "./media/characters/sammy/front.svg",
  22344. extra: 1193 / 1089,
  22345. bottom: 30.5 / 1226
  22346. }
  22347. },
  22348. },
  22349. [
  22350. {
  22351. name: "Macro",
  22352. height: math.unit(1700, "feet"),
  22353. default: true
  22354. },
  22355. {
  22356. name: "Examacro",
  22357. height: math.unit(2.5e9, "lightyears")
  22358. },
  22359. ]
  22360. ))
  22361. characterMakers.push(() => makeCharacter(
  22362. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22363. {
  22364. front: {
  22365. height: math.unit(21, "meters"),
  22366. weight: math.unit(12, "tonnes"),
  22367. name: "Front",
  22368. image: {
  22369. source: "./media/characters/kuru/front.svg",
  22370. extra: 4301 / 3785,
  22371. bottom: 371.3 / 4691
  22372. }
  22373. },
  22374. },
  22375. [
  22376. {
  22377. name: "Macro",
  22378. height: math.unit(21, "meters"),
  22379. default: true
  22380. },
  22381. ]
  22382. ))
  22383. characterMakers.push(() => makeCharacter(
  22384. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22385. {
  22386. front: {
  22387. height: math.unit(23, "meters"),
  22388. weight: math.unit(12.2, "tonnes"),
  22389. name: "Front",
  22390. image: {
  22391. source: "./media/characters/rakka/front.svg",
  22392. extra: 4670 / 4169,
  22393. bottom: 301 / 4968.7
  22394. }
  22395. },
  22396. },
  22397. [
  22398. {
  22399. name: "Macro",
  22400. height: math.unit(23, "meters"),
  22401. default: true
  22402. },
  22403. ]
  22404. ))
  22405. characterMakers.push(() => makeCharacter(
  22406. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22407. {
  22408. front: {
  22409. height: math.unit(6, "feet"),
  22410. weight: math.unit(150, "lb"),
  22411. name: "Front",
  22412. image: {
  22413. source: "./media/characters/rhys-feline/front.svg",
  22414. extra: 2488 / 2308,
  22415. bottom: 35.67 / 2519.19
  22416. }
  22417. },
  22418. },
  22419. [
  22420. {
  22421. name: "Really Small",
  22422. height: math.unit(1, "nm")
  22423. },
  22424. {
  22425. name: "Micro",
  22426. height: math.unit(4, "inches")
  22427. },
  22428. {
  22429. name: "Normal",
  22430. height: math.unit(4 + 10 / 12, "feet"),
  22431. default: true
  22432. },
  22433. {
  22434. name: "Macro",
  22435. height: math.unit(100, "feet")
  22436. },
  22437. {
  22438. name: "Megamacto",
  22439. height: math.unit(50, "miles")
  22440. },
  22441. ]
  22442. ))
  22443. characterMakers.push(() => makeCharacter(
  22444. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22445. {
  22446. side: {
  22447. height: math.unit(30, "feet"),
  22448. weight: math.unit(35000, "kg"),
  22449. name: "Side",
  22450. image: {
  22451. source: "./media/characters/alydar/side.svg",
  22452. extra: 234 / 222,
  22453. bottom: 6.5 / 241
  22454. }
  22455. },
  22456. front: {
  22457. height: math.unit(30, "feet"),
  22458. weight: math.unit(35000, "kg"),
  22459. name: "Front",
  22460. image: {
  22461. source: "./media/characters/alydar/front.svg",
  22462. extra: 223.37 / 210.2,
  22463. bottom: 22.3 / 246.76
  22464. }
  22465. },
  22466. top: {
  22467. height: math.unit(64.54, "feet"),
  22468. weight: math.unit(35000, "kg"),
  22469. name: "Top",
  22470. image: {
  22471. source: "./media/characters/alydar/top.svg"
  22472. }
  22473. },
  22474. anthro: {
  22475. height: math.unit(30, "feet"),
  22476. weight: math.unit(9000, "kg"),
  22477. name: "Anthro",
  22478. image: {
  22479. source: "./media/characters/alydar/anthro.svg",
  22480. extra: 432 / 421,
  22481. bottom: 7.18 / 440
  22482. }
  22483. },
  22484. maw: {
  22485. height: math.unit(11.693, "feet"),
  22486. name: "Maw",
  22487. image: {
  22488. source: "./media/characters/alydar/maw.svg"
  22489. }
  22490. },
  22491. head: {
  22492. height: math.unit(11.693, "feet"),
  22493. name: "Head",
  22494. image: {
  22495. source: "./media/characters/alydar/head.svg"
  22496. }
  22497. },
  22498. headAlt: {
  22499. height: math.unit(12.861, "feet"),
  22500. name: "Head (Alt)",
  22501. image: {
  22502. source: "./media/characters/alydar/head-alt.svg"
  22503. }
  22504. },
  22505. wing: {
  22506. height: math.unit(20.712, "feet"),
  22507. name: "Wing",
  22508. image: {
  22509. source: "./media/characters/alydar/wing.svg"
  22510. }
  22511. },
  22512. wingFeather: {
  22513. height: math.unit(9.662, "feet"),
  22514. name: "Wing Feather",
  22515. image: {
  22516. source: "./media/characters/alydar/wing-feather.svg"
  22517. }
  22518. },
  22519. countourFeather: {
  22520. height: math.unit(4.154, "feet"),
  22521. name: "Contour Feather",
  22522. image: {
  22523. source: "./media/characters/alydar/contour-feather.svg"
  22524. }
  22525. },
  22526. },
  22527. [
  22528. {
  22529. name: "Diplomatic",
  22530. height: math.unit(13, "feet"),
  22531. default: true
  22532. },
  22533. {
  22534. name: "Small",
  22535. height: math.unit(30, "feet")
  22536. },
  22537. {
  22538. name: "Normal",
  22539. height: math.unit(95, "feet"),
  22540. default: true
  22541. },
  22542. {
  22543. name: "Large",
  22544. height: math.unit(285, "feet")
  22545. },
  22546. {
  22547. name: "Incomprehensible",
  22548. height: math.unit(450, "megameters")
  22549. },
  22550. ]
  22551. ))
  22552. characterMakers.push(() => makeCharacter(
  22553. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22554. {
  22555. side: {
  22556. height: math.unit(11, "feet"),
  22557. weight: math.unit(1750, "kg"),
  22558. name: "Side",
  22559. image: {
  22560. source: "./media/characters/selicia/side.svg",
  22561. extra: 440 / 396,
  22562. bottom: 24.8 / 465.979
  22563. }
  22564. },
  22565. maw: {
  22566. height: math.unit(4.665, "feet"),
  22567. name: "Maw",
  22568. image: {
  22569. source: "./media/characters/selicia/maw.svg"
  22570. }
  22571. },
  22572. },
  22573. [
  22574. {
  22575. name: "Normal",
  22576. height: math.unit(11, "feet"),
  22577. default: true
  22578. },
  22579. ]
  22580. ))
  22581. characterMakers.push(() => makeCharacter(
  22582. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22583. {
  22584. side: {
  22585. height: math.unit(2 + 6 / 12, "feet"),
  22586. weight: math.unit(30, "lb"),
  22587. name: "Side",
  22588. image: {
  22589. source: "./media/characters/layla/side.svg",
  22590. extra: 244 / 188,
  22591. bottom: 18.2 / 262.1
  22592. }
  22593. },
  22594. back: {
  22595. height: math.unit(2 + 6 / 12, "feet"),
  22596. weight: math.unit(30, "lb"),
  22597. name: "Back",
  22598. image: {
  22599. source: "./media/characters/layla/back.svg",
  22600. extra: 308 / 241.5,
  22601. bottom: 8.9 / 316.8
  22602. }
  22603. },
  22604. cumming: {
  22605. height: math.unit(2 + 6 / 12, "feet"),
  22606. weight: math.unit(30, "lb"),
  22607. name: "Cumming",
  22608. image: {
  22609. source: "./media/characters/layla/cumming.svg",
  22610. extra: 342 / 279,
  22611. bottom: 595 / 938
  22612. }
  22613. },
  22614. dickFlaccid: {
  22615. height: math.unit(2.595, "feet"),
  22616. name: "Flaccid Genitals",
  22617. image: {
  22618. source: "./media/characters/layla/dick-flaccid.svg"
  22619. }
  22620. },
  22621. dickErect: {
  22622. height: math.unit(2.359, "feet"),
  22623. name: "Erect Genitals",
  22624. image: {
  22625. source: "./media/characters/layla/dick-erect.svg"
  22626. }
  22627. },
  22628. },
  22629. [
  22630. {
  22631. name: "Micro",
  22632. height: math.unit(1, "inch")
  22633. },
  22634. {
  22635. name: "Small",
  22636. height: math.unit(1, "foot")
  22637. },
  22638. {
  22639. name: "Normal",
  22640. height: math.unit(2 + 6 / 12, "feet"),
  22641. default: true
  22642. },
  22643. {
  22644. name: "Macro",
  22645. height: math.unit(200, "feet")
  22646. },
  22647. {
  22648. name: "Megamacro",
  22649. height: math.unit(1000, "miles")
  22650. },
  22651. {
  22652. name: "Planetary",
  22653. height: math.unit(8000, "miles")
  22654. },
  22655. {
  22656. name: "True Layla",
  22657. height: math.unit(200000 * 7, "multiverses")
  22658. },
  22659. ]
  22660. ))
  22661. characterMakers.push(() => makeCharacter(
  22662. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  22663. {
  22664. back: {
  22665. height: math.unit(10.5, "feet"),
  22666. weight: math.unit(800, "lb"),
  22667. name: "Back",
  22668. image: {
  22669. source: "./media/characters/knox/back.svg",
  22670. extra: 1486 / 1089,
  22671. bottom: 107 / 1601.4
  22672. }
  22673. },
  22674. side: {
  22675. height: math.unit(10.5, "feet"),
  22676. weight: math.unit(800, "lb"),
  22677. name: "Side",
  22678. image: {
  22679. source: "./media/characters/knox/side.svg",
  22680. extra: 244 / 218,
  22681. bottom: 14 / 260
  22682. }
  22683. },
  22684. },
  22685. [
  22686. {
  22687. name: "Compact",
  22688. height: math.unit(10.5, "feet"),
  22689. default: true
  22690. },
  22691. {
  22692. name: "Dynamax",
  22693. height: math.unit(210, "feet")
  22694. },
  22695. {
  22696. name: "Full Macro",
  22697. height: math.unit(850, "feet")
  22698. },
  22699. ]
  22700. ))
  22701. characterMakers.push(() => makeCharacter(
  22702. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  22703. {
  22704. front: {
  22705. height: math.unit(6, "feet"),
  22706. weight: math.unit(152, "lb"),
  22707. name: "Front",
  22708. image: {
  22709. source: "./media/characters/shin-pikachu/front.svg",
  22710. extra: 1574 / 1480,
  22711. bottom: 53.3 / 1626
  22712. }
  22713. },
  22714. hand: {
  22715. height: math.unit(1.055, "feet"),
  22716. name: "Hand",
  22717. image: {
  22718. source: "./media/characters/shin-pikachu/hand.svg"
  22719. }
  22720. },
  22721. foot: {
  22722. height: math.unit(1.1, "feet"),
  22723. name: "Foot",
  22724. image: {
  22725. source: "./media/characters/shin-pikachu/foot.svg"
  22726. }
  22727. },
  22728. collar: {
  22729. height: math.unit(0.386, "feet"),
  22730. name: "Collar",
  22731. image: {
  22732. source: "./media/characters/shin-pikachu/collar.svg"
  22733. }
  22734. },
  22735. },
  22736. [
  22737. {
  22738. name: "Smallest",
  22739. height: math.unit(0.5, "inches")
  22740. },
  22741. {
  22742. name: "Micro",
  22743. height: math.unit(6, "inches")
  22744. },
  22745. {
  22746. name: "Normal",
  22747. height: math.unit(6, "feet"),
  22748. default: true
  22749. },
  22750. {
  22751. name: "Macro",
  22752. height: math.unit(150, "feet")
  22753. },
  22754. ]
  22755. ))
  22756. characterMakers.push(() => makeCharacter(
  22757. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  22758. {
  22759. front: {
  22760. height: math.unit(28, "feet"),
  22761. weight: math.unit(10500, "lb"),
  22762. name: "Front",
  22763. image: {
  22764. source: "./media/characters/kayda/front.svg",
  22765. extra: 1536 / 1428,
  22766. bottom: 68.7 / 1603
  22767. }
  22768. },
  22769. back: {
  22770. height: math.unit(28, "feet"),
  22771. weight: math.unit(10500, "lb"),
  22772. name: "Back",
  22773. image: {
  22774. source: "./media/characters/kayda/back.svg",
  22775. extra: 1557 / 1464,
  22776. bottom: 39.5 / 1597.49
  22777. }
  22778. },
  22779. dick: {
  22780. height: math.unit(3.858, "feet"),
  22781. name: "Dick",
  22782. image: {
  22783. source: "./media/characters/kayda/dick.svg"
  22784. }
  22785. },
  22786. },
  22787. [
  22788. {
  22789. name: "Macro",
  22790. height: math.unit(28, "feet"),
  22791. default: true
  22792. },
  22793. ]
  22794. ))
  22795. characterMakers.push(() => makeCharacter(
  22796. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  22797. {
  22798. front: {
  22799. height: math.unit(10 + 11 / 12, "feet"),
  22800. weight: math.unit(1400, "lb"),
  22801. name: "Front",
  22802. image: {
  22803. source: "./media/characters/brian/front.svg",
  22804. extra: 737 / 692,
  22805. bottom: 55.4 / 785
  22806. }
  22807. },
  22808. },
  22809. [
  22810. {
  22811. name: "Normal",
  22812. height: math.unit(10 + 11 / 12, "feet"),
  22813. default: true
  22814. },
  22815. ]
  22816. ))
  22817. characterMakers.push(() => makeCharacter(
  22818. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  22819. {
  22820. front: {
  22821. height: math.unit(5 + 8 / 12, "feet"),
  22822. weight: math.unit(140, "lb"),
  22823. name: "Front",
  22824. image: {
  22825. source: "./media/characters/khemri/front.svg",
  22826. extra: 4780 / 4059,
  22827. bottom: 80.1 / 4859.25
  22828. }
  22829. },
  22830. },
  22831. [
  22832. {
  22833. name: "Micro",
  22834. height: math.unit(6, "inches")
  22835. },
  22836. {
  22837. name: "Normal",
  22838. height: math.unit(5 + 8 / 12, "feet"),
  22839. default: true
  22840. },
  22841. ]
  22842. ))
  22843. characterMakers.push(() => makeCharacter(
  22844. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  22845. {
  22846. front: {
  22847. height: math.unit(13, "feet"),
  22848. weight: math.unit(1700, "lb"),
  22849. name: "Front",
  22850. image: {
  22851. source: "./media/characters/felix-braveheart/front.svg",
  22852. extra: 1222 / 1157,
  22853. bottom: 53.2 / 1280
  22854. }
  22855. },
  22856. back: {
  22857. height: math.unit(13, "feet"),
  22858. weight: math.unit(1700, "lb"),
  22859. name: "Back",
  22860. image: {
  22861. source: "./media/characters/felix-braveheart/back.svg",
  22862. extra: 1277 / 1203,
  22863. bottom: 50.2 / 1327
  22864. }
  22865. },
  22866. feral: {
  22867. height: math.unit(6, "feet"),
  22868. weight: math.unit(400, "lb"),
  22869. name: "Feral",
  22870. image: {
  22871. source: "./media/characters/felix-braveheart/feral.svg",
  22872. extra: 682 / 625,
  22873. bottom: 6.9 / 688
  22874. }
  22875. },
  22876. },
  22877. [
  22878. {
  22879. name: "Normal",
  22880. height: math.unit(13, "feet"),
  22881. default: true
  22882. },
  22883. ]
  22884. ))
  22885. characterMakers.push(() => makeCharacter(
  22886. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  22887. {
  22888. side: {
  22889. height: math.unit(5 + 11 / 12, "feet"),
  22890. weight: math.unit(1400, "lb"),
  22891. name: "Side",
  22892. image: {
  22893. source: "./media/characters/shadow-blade/side.svg",
  22894. extra: 1726 / 1267,
  22895. bottom: 58.4 / 1785
  22896. }
  22897. },
  22898. },
  22899. [
  22900. {
  22901. name: "Normal",
  22902. height: math.unit(5 + 11 / 12, "feet"),
  22903. default: true
  22904. },
  22905. ]
  22906. ))
  22907. characterMakers.push(() => makeCharacter(
  22908. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  22909. {
  22910. front: {
  22911. height: math.unit(1 + 6 / 12, "feet"),
  22912. weight: math.unit(25, "lb"),
  22913. name: "Front",
  22914. image: {
  22915. source: "./media/characters/karla-halldor/front.svg",
  22916. extra: 1459 / 1383,
  22917. bottom: 12 / 1472
  22918. }
  22919. },
  22920. },
  22921. [
  22922. {
  22923. name: "Normal",
  22924. height: math.unit(1 + 6 / 12, "feet"),
  22925. default: true
  22926. },
  22927. ]
  22928. ))
  22929. characterMakers.push(() => makeCharacter(
  22930. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  22931. {
  22932. front: {
  22933. height: math.unit(6 + 2 / 12, "feet"),
  22934. weight: math.unit(160, "lb"),
  22935. name: "Front",
  22936. image: {
  22937. source: "./media/characters/ariam/front.svg",
  22938. extra: 714 / 617,
  22939. bottom: 23.4 / 737,
  22940. }
  22941. },
  22942. squatting: {
  22943. height: math.unit(4.1, "feet"),
  22944. weight: math.unit(160, "lb"),
  22945. name: "Squatting",
  22946. image: {
  22947. source: "./media/characters/ariam/squatting.svg",
  22948. extra: 2617 / 2112,
  22949. bottom: 61.2 / 2681,
  22950. }
  22951. },
  22952. },
  22953. [
  22954. {
  22955. name: "Normal",
  22956. height: math.unit(6 + 2 / 12, "feet"),
  22957. default: true
  22958. },
  22959. {
  22960. name: "Normal+",
  22961. height: math.unit(4, "meters")
  22962. },
  22963. {
  22964. name: "Macro",
  22965. height: math.unit(50, "meters")
  22966. },
  22967. {
  22968. name: "Macro+",
  22969. height: math.unit(100, "meters")
  22970. },
  22971. {
  22972. name: "Megamacro",
  22973. height: math.unit(20, "km")
  22974. },
  22975. ]
  22976. ))
  22977. characterMakers.push(() => makeCharacter(
  22978. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  22979. {
  22980. front: {
  22981. height: math.unit(1.67, "meters"),
  22982. weight: math.unit(140, "lb"),
  22983. name: "Front",
  22984. image: {
  22985. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  22986. extra: 438 / 410,
  22987. bottom: 0.75 / 439
  22988. }
  22989. },
  22990. },
  22991. [
  22992. {
  22993. name: "Shrunken",
  22994. height: math.unit(7.6, "cm")
  22995. },
  22996. {
  22997. name: "Human Scale",
  22998. height: math.unit(1.67, "meters")
  22999. },
  23000. {
  23001. name: "Wolxi Scale",
  23002. height: math.unit(36.7, "meters"),
  23003. default: true
  23004. },
  23005. ]
  23006. ))
  23007. characterMakers.push(() => makeCharacter(
  23008. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23009. {
  23010. front: {
  23011. height: math.unit(1.73, "meters"),
  23012. weight: math.unit(240, "lb"),
  23013. name: "Front",
  23014. image: {
  23015. source: "./media/characters/izue-two-mothers/front.svg",
  23016. extra: 469 / 437,
  23017. bottom: 1.24 / 470.6
  23018. }
  23019. },
  23020. },
  23021. [
  23022. {
  23023. name: "Shrunken",
  23024. height: math.unit(7.86, "cm")
  23025. },
  23026. {
  23027. name: "Human Scale",
  23028. height: math.unit(1.73, "meters")
  23029. },
  23030. {
  23031. name: "Wolxi Scale",
  23032. height: math.unit(38, "meters"),
  23033. default: true
  23034. },
  23035. ]
  23036. ))
  23037. characterMakers.push(() => makeCharacter(
  23038. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23039. {
  23040. front: {
  23041. height: math.unit(1.55, "meters"),
  23042. weight: math.unit(120, "lb"),
  23043. name: "Front",
  23044. image: {
  23045. source: "./media/characters/teeku-love-shack/front.svg",
  23046. extra: 387 / 362,
  23047. bottom: 1.51 / 388
  23048. }
  23049. },
  23050. },
  23051. [
  23052. {
  23053. name: "Shrunken",
  23054. height: math.unit(7, "cm")
  23055. },
  23056. {
  23057. name: "Human Scale",
  23058. height: math.unit(1.55, "meters")
  23059. },
  23060. {
  23061. name: "Wolxi Scale",
  23062. height: math.unit(34.1, "meters"),
  23063. default: true
  23064. },
  23065. ]
  23066. ))
  23067. characterMakers.push(() => makeCharacter(
  23068. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23069. {
  23070. front: {
  23071. height: math.unit(1.83, "meters"),
  23072. weight: math.unit(135, "lb"),
  23073. name: "Front",
  23074. image: {
  23075. source: "./media/characters/dejma-the-red/front.svg",
  23076. extra: 480 / 458,
  23077. bottom: 1.8 / 482
  23078. }
  23079. },
  23080. },
  23081. [
  23082. {
  23083. name: "Shrunken",
  23084. height: math.unit(8.3, "cm")
  23085. },
  23086. {
  23087. name: "Human Scale",
  23088. height: math.unit(1.83, "meters")
  23089. },
  23090. {
  23091. name: "Wolxi Scale",
  23092. height: math.unit(40, "meters"),
  23093. default: true
  23094. },
  23095. ]
  23096. ))
  23097. characterMakers.push(() => makeCharacter(
  23098. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23099. {
  23100. front: {
  23101. height: math.unit(1.78, "meters"),
  23102. weight: math.unit(65, "kg"),
  23103. name: "Front",
  23104. image: {
  23105. source: "./media/characters/aki/front.svg",
  23106. extra: 452 / 415
  23107. }
  23108. },
  23109. frontNsfw: {
  23110. height: math.unit(1.78, "meters"),
  23111. weight: math.unit(65, "kg"),
  23112. name: "Front (NSFW)",
  23113. image: {
  23114. source: "./media/characters/aki/front-nsfw.svg",
  23115. extra: 452 / 415
  23116. }
  23117. },
  23118. back: {
  23119. height: math.unit(1.78, "meters"),
  23120. weight: math.unit(65, "kg"),
  23121. name: "Back",
  23122. image: {
  23123. source: "./media/characters/aki/back.svg",
  23124. extra: 452 / 415
  23125. }
  23126. },
  23127. rump: {
  23128. height: math.unit(2.05, "feet"),
  23129. name: "Rump",
  23130. image: {
  23131. source: "./media/characters/aki/rump.svg"
  23132. }
  23133. },
  23134. dick: {
  23135. height: math.unit(0.95, "feet"),
  23136. name: "Dick",
  23137. image: {
  23138. source: "./media/characters/aki/dick.svg"
  23139. }
  23140. },
  23141. },
  23142. [
  23143. {
  23144. name: "Micro",
  23145. height: math.unit(15, "cm")
  23146. },
  23147. {
  23148. name: "Normal",
  23149. height: math.unit(178, "cm"),
  23150. default: true
  23151. },
  23152. {
  23153. name: "Macro",
  23154. height: math.unit(214, "m")
  23155. },
  23156. {
  23157. name: "Macro+",
  23158. height: math.unit(534, "m")
  23159. },
  23160. ]
  23161. ))
  23162. characterMakers.push(() => makeCharacter(
  23163. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23164. {
  23165. front: {
  23166. height: math.unit(5 + 5 / 12, "feet"),
  23167. weight: math.unit(120, "lb"),
  23168. name: "Front",
  23169. image: {
  23170. source: "./media/characters/ari/front.svg",
  23171. extra: 714.5 / 682,
  23172. bottom: 8 / 722.5
  23173. }
  23174. },
  23175. },
  23176. [
  23177. {
  23178. name: "Normal",
  23179. height: math.unit(5 + 5 / 12, "feet")
  23180. },
  23181. {
  23182. name: "Macro",
  23183. height: math.unit(100, "feet"),
  23184. default: true
  23185. },
  23186. {
  23187. name: "Megamacro",
  23188. height: math.unit(100, "miles")
  23189. },
  23190. {
  23191. name: "Gigamacro",
  23192. height: math.unit(80000, "miles")
  23193. },
  23194. ]
  23195. ))
  23196. characterMakers.push(() => makeCharacter(
  23197. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23198. {
  23199. side: {
  23200. height: math.unit(9, "feet"),
  23201. weight: math.unit(400, "kg"),
  23202. name: "Side",
  23203. image: {
  23204. source: "./media/characters/bolt/side.svg",
  23205. extra: 1126 / 896,
  23206. bottom: 60 / 1187.3,
  23207. }
  23208. },
  23209. },
  23210. [
  23211. {
  23212. name: "Micro",
  23213. height: math.unit(5, "inches")
  23214. },
  23215. {
  23216. name: "Normal",
  23217. height: math.unit(9, "feet"),
  23218. default: true
  23219. },
  23220. {
  23221. name: "Macro",
  23222. height: math.unit(700, "feet")
  23223. },
  23224. {
  23225. name: "Max Size",
  23226. height: math.unit(1.52e22, "yottameters")
  23227. },
  23228. ]
  23229. ))
  23230. characterMakers.push(() => makeCharacter(
  23231. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23232. {
  23233. front: {
  23234. height: math.unit(4.53, "meters"),
  23235. weight: math.unit(3, "tons"),
  23236. name: "Front",
  23237. image: {
  23238. source: "./media/characters/draekon-sylviar/front.svg",
  23239. extra: 1228 / 1068,
  23240. bottom: 41 / 1270
  23241. }
  23242. },
  23243. tail: {
  23244. height: math.unit(1.772, "meter"),
  23245. name: "Tail",
  23246. image: {
  23247. source: "./media/characters/draekon-sylviar/tail.svg"
  23248. }
  23249. },
  23250. head: {
  23251. height: math.unit(1.331, "meter"),
  23252. name: "Head",
  23253. image: {
  23254. source: "./media/characters/draekon-sylviar/head.svg"
  23255. }
  23256. },
  23257. hand: {
  23258. height: math.unit(0.564, "meter"),
  23259. name: "Hand",
  23260. image: {
  23261. source: "./media/characters/draekon-sylviar/hand.svg"
  23262. }
  23263. },
  23264. foot: {
  23265. height: math.unit(0.621, "meter"),
  23266. name: "Foot",
  23267. image: {
  23268. source: "./media/characters/draekon-sylviar/foot.svg",
  23269. bottom: 32 / 324
  23270. }
  23271. },
  23272. dick: {
  23273. height: math.unit(61, "cm"),
  23274. name: "Dick",
  23275. image: {
  23276. source: "./media/characters/draekon-sylviar/dick.svg"
  23277. }
  23278. },
  23279. dickseparated: {
  23280. height: math.unit(61, "cm"),
  23281. name: "Dick-separated",
  23282. image: {
  23283. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23284. }
  23285. },
  23286. },
  23287. [
  23288. {
  23289. name: "Small",
  23290. height: math.unit(4.53 / 2, "meters"),
  23291. default: true
  23292. },
  23293. {
  23294. name: "Normal",
  23295. height: math.unit(4.53, "meters"),
  23296. default: true
  23297. },
  23298. {
  23299. name: "Large",
  23300. height: math.unit(4.53 * 2, "meters"),
  23301. },
  23302. ]
  23303. ))
  23304. characterMakers.push(() => makeCharacter(
  23305. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23306. {
  23307. front: {
  23308. height: math.unit(6 + 2 / 12, "feet"),
  23309. weight: math.unit(180, "lb"),
  23310. name: "Front",
  23311. image: {
  23312. source: "./media/characters/brawler/front.svg",
  23313. extra: 3301 / 3027,
  23314. bottom: 138 / 3439
  23315. }
  23316. },
  23317. },
  23318. [
  23319. {
  23320. name: "Normal",
  23321. height: math.unit(6 + 2 / 12, "feet"),
  23322. default: true
  23323. },
  23324. ]
  23325. ))
  23326. characterMakers.push(() => makeCharacter(
  23327. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23328. {
  23329. front: {
  23330. height: math.unit(11, "feet"),
  23331. weight: math.unit(1000, "lb"),
  23332. name: "Front",
  23333. image: {
  23334. source: "./media/characters/alex/front.svg",
  23335. bottom: 44.5 / 620
  23336. }
  23337. },
  23338. },
  23339. [
  23340. {
  23341. name: "Micro",
  23342. height: math.unit(5, "inches")
  23343. },
  23344. {
  23345. name: "Normal",
  23346. height: math.unit(11, "feet"),
  23347. default: true
  23348. },
  23349. {
  23350. name: "Macro",
  23351. height: math.unit(9.5e9, "feet")
  23352. },
  23353. {
  23354. name: "Max Size",
  23355. height: math.unit(1.4e283, "yottameters")
  23356. },
  23357. ]
  23358. ))
  23359. characterMakers.push(() => makeCharacter(
  23360. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23361. {
  23362. female: {
  23363. height: math.unit(29.9, "m"),
  23364. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23365. name: "Female",
  23366. image: {
  23367. source: "./media/characters/zenari/female.svg",
  23368. extra: 3281.6 / 3217,
  23369. bottom: 72.2 / 3353
  23370. }
  23371. },
  23372. male: {
  23373. height: math.unit(27.7, "m"),
  23374. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23375. name: "Male",
  23376. image: {
  23377. source: "./media/characters/zenari/male.svg",
  23378. extra: 3008 / 2991,
  23379. bottom: 54.6 / 3069
  23380. }
  23381. },
  23382. },
  23383. [
  23384. {
  23385. name: "Macro",
  23386. height: math.unit(29.7, "meters"),
  23387. default: true
  23388. },
  23389. ]
  23390. ))
  23391. characterMakers.push(() => makeCharacter(
  23392. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23393. {
  23394. female: {
  23395. height: math.unit(23.8, "m"),
  23396. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23397. name: "Female",
  23398. image: {
  23399. source: "./media/characters/mactarian/female.svg",
  23400. extra: 2662 / 2569,
  23401. bottom: 73 / 2736
  23402. }
  23403. },
  23404. male: {
  23405. height: math.unit(23.8, "m"),
  23406. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23407. name: "Male",
  23408. image: {
  23409. source: "./media/characters/mactarian/male.svg",
  23410. extra: 2673 / 2600,
  23411. bottom: 76 / 2750
  23412. }
  23413. },
  23414. },
  23415. [
  23416. {
  23417. name: "Macro",
  23418. height: math.unit(23.8, "meters"),
  23419. default: true
  23420. },
  23421. ]
  23422. ))
  23423. characterMakers.push(() => makeCharacter(
  23424. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23425. {
  23426. female: {
  23427. height: math.unit(19.3, "m"),
  23428. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23429. name: "Female",
  23430. image: {
  23431. source: "./media/characters/umok/female.svg",
  23432. extra: 2186 / 2078,
  23433. bottom: 87 / 2277
  23434. }
  23435. },
  23436. male: {
  23437. height: math.unit(19.5, "m"),
  23438. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23439. name: "Male",
  23440. image: {
  23441. source: "./media/characters/umok/male.svg",
  23442. extra: 2233 / 2140,
  23443. bottom: 24.4 / 2258
  23444. }
  23445. },
  23446. },
  23447. [
  23448. {
  23449. name: "Macro",
  23450. height: math.unit(19.3, "meters"),
  23451. default: true
  23452. },
  23453. ]
  23454. ))
  23455. characterMakers.push(() => makeCharacter(
  23456. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23457. {
  23458. female: {
  23459. height: math.unit(26.15, "m"),
  23460. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23461. name: "Female",
  23462. image: {
  23463. source: "./media/characters/joraxian/female.svg",
  23464. extra: 2912 / 2824,
  23465. bottom: 36 / 2956
  23466. }
  23467. },
  23468. male: {
  23469. height: math.unit(25.4, "m"),
  23470. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23471. name: "Male",
  23472. image: {
  23473. source: "./media/characters/joraxian/male.svg",
  23474. extra: 2877 / 2721,
  23475. bottom: 82 / 2967
  23476. }
  23477. },
  23478. },
  23479. [
  23480. {
  23481. name: "Macro",
  23482. height: math.unit(26.15, "meters"),
  23483. default: true
  23484. },
  23485. ]
  23486. ))
  23487. characterMakers.push(() => makeCharacter(
  23488. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23489. {
  23490. female: {
  23491. height: math.unit(21.6, "m"),
  23492. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23493. name: "Female",
  23494. image: {
  23495. source: "./media/characters/sthara/female.svg",
  23496. extra: 2516 / 2347,
  23497. bottom: 21.5 / 2537
  23498. }
  23499. },
  23500. male: {
  23501. height: math.unit(24, "m"),
  23502. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23503. name: "Male",
  23504. image: {
  23505. source: "./media/characters/sthara/male.svg",
  23506. extra: 2732 / 2607,
  23507. bottom: 23 / 2732
  23508. }
  23509. },
  23510. },
  23511. [
  23512. {
  23513. name: "Macro",
  23514. height: math.unit(21.6, "meters"),
  23515. default: true
  23516. },
  23517. ]
  23518. ))
  23519. characterMakers.push(() => makeCharacter(
  23520. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23521. {
  23522. front: {
  23523. height: math.unit(6 + 4 / 12, "feet"),
  23524. weight: math.unit(175, "lb"),
  23525. name: "Front",
  23526. image: {
  23527. source: "./media/characters/luka-bryzant/front.svg",
  23528. extra: 311 / 289,
  23529. bottom: 4 / 315
  23530. }
  23531. },
  23532. back: {
  23533. height: math.unit(6 + 4 / 12, "feet"),
  23534. weight: math.unit(175, "lb"),
  23535. name: "Back",
  23536. image: {
  23537. source: "./media/characters/luka-bryzant/back.svg",
  23538. extra: 311 / 289,
  23539. bottom: 3.8 / 313.7
  23540. }
  23541. },
  23542. },
  23543. [
  23544. {
  23545. name: "Micro",
  23546. height: math.unit(10, "inches")
  23547. },
  23548. {
  23549. name: "Normal",
  23550. height: math.unit(6 + 4 / 12, "feet"),
  23551. default: true
  23552. },
  23553. {
  23554. name: "Large",
  23555. height: math.unit(12, "feet")
  23556. },
  23557. ]
  23558. ))
  23559. characterMakers.push(() => makeCharacter(
  23560. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23561. {
  23562. front: {
  23563. height: math.unit(5 + 7 / 12, "feet"),
  23564. weight: math.unit(185, "lb"),
  23565. name: "Front",
  23566. image: {
  23567. source: "./media/characters/aman-aquila/front.svg",
  23568. extra: 1013 / 976,
  23569. bottom: 45.6 / 1057
  23570. }
  23571. },
  23572. side: {
  23573. height: math.unit(5 + 7 / 12, "feet"),
  23574. weight: math.unit(185, "lb"),
  23575. name: "Side",
  23576. image: {
  23577. source: "./media/characters/aman-aquila/side.svg",
  23578. extra: 1054 / 1011,
  23579. bottom: 15 / 1070
  23580. }
  23581. },
  23582. back: {
  23583. height: math.unit(5 + 7 / 12, "feet"),
  23584. weight: math.unit(185, "lb"),
  23585. name: "Back",
  23586. image: {
  23587. source: "./media/characters/aman-aquila/back.svg",
  23588. extra: 1026 / 970,
  23589. bottom: 12 / 1039
  23590. }
  23591. },
  23592. head: {
  23593. height: math.unit(1.211, "feet"),
  23594. name: "Head",
  23595. image: {
  23596. source: "./media/characters/aman-aquila/head.svg",
  23597. }
  23598. },
  23599. },
  23600. [
  23601. {
  23602. name: "Minimicro",
  23603. height: math.unit(0.057, "inches")
  23604. },
  23605. {
  23606. name: "Micro",
  23607. height: math.unit(7, "inches")
  23608. },
  23609. {
  23610. name: "Mini",
  23611. height: math.unit(3 + 7 / 12, "feet")
  23612. },
  23613. {
  23614. name: "Normal",
  23615. height: math.unit(5 + 7 / 12, "feet"),
  23616. default: true
  23617. },
  23618. {
  23619. name: "Macro",
  23620. height: math.unit(157 + 7 / 12, "feet")
  23621. },
  23622. {
  23623. name: "Megamacro",
  23624. height: math.unit(1557 + 7 / 12, "feet")
  23625. },
  23626. {
  23627. name: "Gigamacro",
  23628. height: math.unit(15557 + 7 / 12, "feet")
  23629. },
  23630. ]
  23631. ))
  23632. characterMakers.push(() => makeCharacter(
  23633. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23634. {
  23635. front: {
  23636. height: math.unit(3 + 2 / 12, "inches"),
  23637. weight: math.unit(0.3, "ounces"),
  23638. name: "Front",
  23639. image: {
  23640. source: "./media/characters/hiphae/front.svg",
  23641. extra: 1931 / 1683,
  23642. bottom: 24 / 1955
  23643. }
  23644. },
  23645. },
  23646. [
  23647. {
  23648. name: "Normal",
  23649. height: math.unit(3 + 1 / 2, "inches"),
  23650. default: true
  23651. },
  23652. ]
  23653. ))
  23654. characterMakers.push(() => makeCharacter(
  23655. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  23656. {
  23657. front: {
  23658. height: math.unit(5 + 10 / 12, "feet"),
  23659. weight: math.unit(165, "lb"),
  23660. name: "Front",
  23661. image: {
  23662. source: "./media/characters/nicky/front.svg",
  23663. extra: 3144 / 2886,
  23664. bottom: 45.6 / 3192
  23665. }
  23666. },
  23667. back: {
  23668. height: math.unit(5 + 10 / 12, "feet"),
  23669. weight: math.unit(165, "lb"),
  23670. name: "Back",
  23671. image: {
  23672. source: "./media/characters/nicky/back.svg",
  23673. extra: 3055 / 2804,
  23674. bottom: 28.4 / 3087
  23675. }
  23676. },
  23677. frontclothed: {
  23678. height: math.unit(5 + 10 / 12, "feet"),
  23679. weight: math.unit(165, "lb"),
  23680. name: "Front-clothed",
  23681. image: {
  23682. source: "./media/characters/nicky/front-clothed.svg",
  23683. extra: 3184.9 / 2926.9,
  23684. bottom: 86.5 / 3239.9
  23685. }
  23686. },
  23687. foot: {
  23688. height: math.unit(1.16, "feet"),
  23689. name: "Foot",
  23690. image: {
  23691. source: "./media/characters/nicky/foot.svg"
  23692. }
  23693. },
  23694. feet: {
  23695. height: math.unit(1.34, "feet"),
  23696. name: "Feet",
  23697. image: {
  23698. source: "./media/characters/nicky/feet.svg"
  23699. }
  23700. },
  23701. maw: {
  23702. height: math.unit(0.9, "feet"),
  23703. name: "Maw",
  23704. image: {
  23705. source: "./media/characters/nicky/maw.svg"
  23706. }
  23707. },
  23708. },
  23709. [
  23710. {
  23711. name: "Normal",
  23712. height: math.unit(5 + 10 / 12, "feet"),
  23713. default: true
  23714. },
  23715. {
  23716. name: "Macro",
  23717. height: math.unit(60, "feet")
  23718. },
  23719. {
  23720. name: "Megamacro",
  23721. height: math.unit(1, "mile")
  23722. },
  23723. ]
  23724. ))
  23725. characterMakers.push(() => makeCharacter(
  23726. { name: "Blair", species: ["seal"], tags: ["taur"] },
  23727. {
  23728. side: {
  23729. height: math.unit(10, "feet"),
  23730. weight: math.unit(600, "lb"),
  23731. name: "Side",
  23732. image: {
  23733. source: "./media/characters/blair/side.svg",
  23734. bottom: 16.6 / 475,
  23735. extra: 458 / 431
  23736. }
  23737. },
  23738. },
  23739. [
  23740. {
  23741. name: "Micro",
  23742. height: math.unit(8, "inches")
  23743. },
  23744. {
  23745. name: "Normal",
  23746. height: math.unit(10, "feet"),
  23747. default: true
  23748. },
  23749. {
  23750. name: "Macro",
  23751. height: math.unit(180, "feet")
  23752. },
  23753. ]
  23754. ))
  23755. characterMakers.push(() => makeCharacter(
  23756. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  23757. {
  23758. front: {
  23759. height: math.unit(5 + 4 / 12, "feet"),
  23760. weight: math.unit(125, "lb"),
  23761. name: "Front",
  23762. image: {
  23763. source: "./media/characters/fisher/front.svg",
  23764. extra: 444 / 390,
  23765. bottom: 2 / 444.8
  23766. }
  23767. },
  23768. },
  23769. [
  23770. {
  23771. name: "Micro",
  23772. height: math.unit(4, "inches")
  23773. },
  23774. {
  23775. name: "Normal",
  23776. height: math.unit(5 + 4 / 12, "feet"),
  23777. default: true
  23778. },
  23779. {
  23780. name: "Macro",
  23781. height: math.unit(100, "feet")
  23782. },
  23783. ]
  23784. ))
  23785. characterMakers.push(() => makeCharacter(
  23786. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  23787. {
  23788. front: {
  23789. height: math.unit(6.71, "feet"),
  23790. weight: math.unit(200, "lb"),
  23791. capacity: math.unit(1000000, "people"),
  23792. name: "Front",
  23793. image: {
  23794. source: "./media/characters/gliss/front.svg",
  23795. extra: 2347 / 2231,
  23796. bottom: 113 / 2462
  23797. }
  23798. },
  23799. hammerspaceSize: {
  23800. height: math.unit(6.71 * 717, "feet"),
  23801. weight: math.unit(200, "lb"),
  23802. capacity: math.unit(1000000, "people"),
  23803. name: "Hammerspace Size",
  23804. image: {
  23805. source: "./media/characters/gliss/front.svg",
  23806. extra: 2347 / 2231,
  23807. bottom: 113 / 2462
  23808. }
  23809. },
  23810. },
  23811. [
  23812. {
  23813. name: "Normal",
  23814. height: math.unit(6.71, "feet"),
  23815. default: true
  23816. },
  23817. ]
  23818. ))
  23819. characterMakers.push(() => makeCharacter(
  23820. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  23821. {
  23822. side: {
  23823. height: math.unit(1.44, "m"),
  23824. weight: math.unit(80, "kg"),
  23825. name: "Side",
  23826. image: {
  23827. source: "./media/characters/dune-anderson/side.svg",
  23828. bottom: 49 / 1426
  23829. }
  23830. },
  23831. },
  23832. [
  23833. {
  23834. name: "Wolf-sized",
  23835. height: math.unit(1.44, "meters")
  23836. },
  23837. {
  23838. name: "Normal",
  23839. height: math.unit(5.05, "meters"),
  23840. default: true
  23841. },
  23842. {
  23843. name: "Big",
  23844. height: math.unit(14.4, "meters")
  23845. },
  23846. {
  23847. name: "Huge",
  23848. height: math.unit(144, "meters")
  23849. },
  23850. ]
  23851. ))
  23852. characterMakers.push(() => makeCharacter(
  23853. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  23854. {
  23855. front: {
  23856. height: math.unit(7, "feet"),
  23857. weight: math.unit(425, "lb"),
  23858. name: "Front",
  23859. image: {
  23860. source: "./media/characters/hind/front.svg",
  23861. extra: 2091 / 1860,
  23862. bottom: 129 / 2220
  23863. }
  23864. },
  23865. back: {
  23866. height: math.unit(7, "feet"),
  23867. weight: math.unit(425, "lb"),
  23868. name: "Back",
  23869. image: {
  23870. source: "./media/characters/hind/back.svg",
  23871. extra: 2091 / 1860,
  23872. bottom: 24.6 / 2309
  23873. }
  23874. },
  23875. tail: {
  23876. height: math.unit(2.8, "feet"),
  23877. name: "Tail",
  23878. image: {
  23879. source: "./media/characters/hind/tail.svg"
  23880. }
  23881. },
  23882. head: {
  23883. height: math.unit(2.55, "feet"),
  23884. name: "Head",
  23885. image: {
  23886. source: "./media/characters/hind/head.svg"
  23887. }
  23888. },
  23889. },
  23890. [
  23891. {
  23892. name: "XS",
  23893. height: math.unit(0.7, "feet")
  23894. },
  23895. {
  23896. name: "Normal",
  23897. height: math.unit(7, "feet"),
  23898. default: true
  23899. },
  23900. {
  23901. name: "XL",
  23902. height: math.unit(70, "feet")
  23903. },
  23904. ]
  23905. ))
  23906. characterMakers.push(() => makeCharacter(
  23907. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  23908. {
  23909. front: {
  23910. height: math.unit(6, "feet"),
  23911. weight: math.unit(150, "lb"),
  23912. name: "Front",
  23913. image: {
  23914. source: "./media/characters/dylan-skaven/front.svg",
  23915. extra: 2318 / 2063,
  23916. bottom: 93.4 / 2410
  23917. }
  23918. },
  23919. },
  23920. [
  23921. {
  23922. name: "Nano",
  23923. height: math.unit(1, "mm")
  23924. },
  23925. {
  23926. name: "Micro",
  23927. height: math.unit(1, "cm")
  23928. },
  23929. {
  23930. name: "Normal",
  23931. height: math.unit(2.1, "meters"),
  23932. default: true
  23933. },
  23934. ]
  23935. ))
  23936. characterMakers.push(() => makeCharacter(
  23937. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  23938. {
  23939. front: {
  23940. height: math.unit(7 + 5 / 12, "feet"),
  23941. weight: math.unit(357, "lb"),
  23942. name: "Front",
  23943. image: {
  23944. source: "./media/characters/solex-draconov/front.svg",
  23945. extra: 1993 / 1865,
  23946. bottom: 117 / 2111
  23947. }
  23948. },
  23949. },
  23950. [
  23951. {
  23952. name: "Natural Height",
  23953. height: math.unit(7 + 5 / 12, "feet"),
  23954. default: true
  23955. },
  23956. {
  23957. name: "Macro",
  23958. height: math.unit(350, "feet")
  23959. },
  23960. {
  23961. name: "Macro+",
  23962. height: math.unit(1000, "feet")
  23963. },
  23964. {
  23965. name: "Megamacro",
  23966. height: math.unit(20, "km")
  23967. },
  23968. {
  23969. name: "Megamacro+",
  23970. height: math.unit(1000, "km")
  23971. },
  23972. {
  23973. name: "Gigamacro",
  23974. height: math.unit(2.5, "Gm")
  23975. },
  23976. {
  23977. name: "Teramacro",
  23978. height: math.unit(15, "Tm")
  23979. },
  23980. {
  23981. name: "Galactic",
  23982. height: math.unit(30, "Zm")
  23983. },
  23984. {
  23985. name: "Universal",
  23986. height: math.unit(21000, "Ym")
  23987. },
  23988. {
  23989. name: "Omniversal",
  23990. height: math.unit(9.861e50, "Ym")
  23991. },
  23992. {
  23993. name: "Existential",
  23994. height: math.unit(1e300, "meters")
  23995. },
  23996. ]
  23997. ))
  23998. characterMakers.push(() => makeCharacter(
  23999. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24000. {
  24001. side: {
  24002. height: math.unit(25, "feet"),
  24003. weight: math.unit(90000, "lb"),
  24004. name: "Side",
  24005. image: {
  24006. source: "./media/characters/mandarax/side.svg",
  24007. extra: 614 / 332,
  24008. bottom: 55 / 630
  24009. }
  24010. },
  24011. head: {
  24012. height: math.unit(11.4, "feet"),
  24013. name: "Head",
  24014. image: {
  24015. source: "./media/characters/mandarax/head.svg"
  24016. }
  24017. },
  24018. belly: {
  24019. height: math.unit(33, "feet"),
  24020. name: "Belly",
  24021. capacity: math.unit(500, "people"),
  24022. image: {
  24023. source: "./media/characters/mandarax/belly.svg"
  24024. }
  24025. },
  24026. dick: {
  24027. height: math.unit(8.46, "feet"),
  24028. name: "Dick",
  24029. image: {
  24030. source: "./media/characters/mandarax/dick.svg"
  24031. }
  24032. },
  24033. top: {
  24034. height: math.unit(28, "meters"),
  24035. name: "Top",
  24036. image: {
  24037. source: "./media/characters/mandarax/top.svg"
  24038. }
  24039. },
  24040. },
  24041. [
  24042. {
  24043. name: "Normal",
  24044. height: math.unit(25, "feet"),
  24045. default: true
  24046. },
  24047. ]
  24048. ))
  24049. characterMakers.push(() => makeCharacter(
  24050. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24051. {
  24052. front: {
  24053. height: math.unit(5, "feet"),
  24054. weight: math.unit(90, "lb"),
  24055. name: "Front",
  24056. image: {
  24057. source: "./media/characters/pixil/front.svg",
  24058. extra: 2000 / 1618,
  24059. bottom: 12.3 / 2011
  24060. }
  24061. },
  24062. },
  24063. [
  24064. {
  24065. name: "Normal",
  24066. height: math.unit(5, "feet"),
  24067. default: true
  24068. },
  24069. {
  24070. name: "Megamacro",
  24071. height: math.unit(10, "miles"),
  24072. },
  24073. ]
  24074. ))
  24075. characterMakers.push(() => makeCharacter(
  24076. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24077. {
  24078. front: {
  24079. height: math.unit(7 + 2 / 12, "feet"),
  24080. weight: math.unit(200, "lb"),
  24081. name: "Front",
  24082. image: {
  24083. source: "./media/characters/angel/front.svg",
  24084. extra: 1830 / 1737,
  24085. bottom: 22.6 / 1854,
  24086. }
  24087. },
  24088. },
  24089. [
  24090. {
  24091. name: "Normal",
  24092. height: math.unit(7 + 2 / 12, "feet"),
  24093. default: true
  24094. },
  24095. {
  24096. name: "Macro",
  24097. height: math.unit(1000, "feet")
  24098. },
  24099. {
  24100. name: "Megamacro",
  24101. height: math.unit(2, "miles")
  24102. },
  24103. {
  24104. name: "Gigamacro",
  24105. height: math.unit(20, "earths")
  24106. },
  24107. ]
  24108. ))
  24109. characterMakers.push(() => makeCharacter(
  24110. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24111. {
  24112. front: {
  24113. height: math.unit(5, "feet"),
  24114. weight: math.unit(180, "lb"),
  24115. name: "Front",
  24116. image: {
  24117. source: "./media/characters/mekana/front.svg",
  24118. extra: 1671 / 1605,
  24119. bottom: 3.5 / 1691
  24120. }
  24121. },
  24122. side: {
  24123. height: math.unit(5, "feet"),
  24124. weight: math.unit(180, "lb"),
  24125. name: "Side",
  24126. image: {
  24127. source: "./media/characters/mekana/side.svg",
  24128. extra: 1671 / 1605,
  24129. bottom: 3.5 / 1691
  24130. }
  24131. },
  24132. back: {
  24133. height: math.unit(5, "feet"),
  24134. weight: math.unit(180, "lb"),
  24135. name: "Back",
  24136. image: {
  24137. source: "./media/characters/mekana/back.svg",
  24138. extra: 1671 / 1605,
  24139. bottom: 3.5 / 1691
  24140. }
  24141. },
  24142. },
  24143. [
  24144. {
  24145. name: "Normal",
  24146. height: math.unit(5, "feet"),
  24147. default: true
  24148. },
  24149. ]
  24150. ))
  24151. characterMakers.push(() => makeCharacter(
  24152. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24153. {
  24154. front: {
  24155. height: math.unit(4 + 6 / 12, "feet"),
  24156. weight: math.unit(80, "lb"),
  24157. name: "Front",
  24158. image: {
  24159. source: "./media/characters/pixie/front.svg",
  24160. extra: 1924 / 1825,
  24161. bottom: 22.4 / 1946
  24162. }
  24163. },
  24164. },
  24165. [
  24166. {
  24167. name: "Normal",
  24168. height: math.unit(4 + 6 / 12, "feet"),
  24169. default: true
  24170. },
  24171. {
  24172. name: "Macro",
  24173. height: math.unit(40, "feet")
  24174. },
  24175. ]
  24176. ))
  24177. characterMakers.push(() => makeCharacter(
  24178. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24179. {
  24180. front: {
  24181. height: math.unit(2.1, "meters"),
  24182. weight: math.unit(200, "lb"),
  24183. name: "Front",
  24184. image: {
  24185. source: "./media/characters/the-lascivious/front.svg",
  24186. extra: 1 / 0.893,
  24187. bottom: 3.5 / 573.7
  24188. }
  24189. },
  24190. },
  24191. [
  24192. {
  24193. name: "Human Scale",
  24194. height: math.unit(2.1, "meters")
  24195. },
  24196. {
  24197. name: "Wolxi Scale",
  24198. height: math.unit(46.2, "m"),
  24199. default: true
  24200. },
  24201. {
  24202. name: "Boinker of Buildings",
  24203. height: math.unit(10, "km")
  24204. },
  24205. {
  24206. name: "Shagger of Skyscrapers",
  24207. height: math.unit(40, "km")
  24208. },
  24209. {
  24210. name: "Banger of Boroughs",
  24211. height: math.unit(4000, "km")
  24212. },
  24213. {
  24214. name: "Screwer of States",
  24215. height: math.unit(100000, "km")
  24216. },
  24217. {
  24218. name: "Pounder of Planets",
  24219. height: math.unit(2000000, "km")
  24220. },
  24221. ]
  24222. ))
  24223. characterMakers.push(() => makeCharacter(
  24224. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24225. {
  24226. front: {
  24227. height: math.unit(6, "feet"),
  24228. weight: math.unit(150, "lb"),
  24229. name: "Front",
  24230. image: {
  24231. source: "./media/characters/aj/front.svg",
  24232. extra: 2039 / 1562,
  24233. bottom: 40 / 2079
  24234. }
  24235. },
  24236. },
  24237. [
  24238. {
  24239. name: "Normal",
  24240. height: math.unit(11 + 6 / 12, "feet"),
  24241. default: true
  24242. },
  24243. {
  24244. name: "Megamacro",
  24245. height: math.unit(60, "megameters")
  24246. },
  24247. ]
  24248. ))
  24249. characterMakers.push(() => makeCharacter(
  24250. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24251. {
  24252. side: {
  24253. height: math.unit(31 + 8/12, "feet"),
  24254. weight: math.unit(75000, "kg"),
  24255. name: "Side",
  24256. image: {
  24257. source: "./media/characters/koros/side.svg",
  24258. extra: 1442/1297,
  24259. bottom: 122.7/1562
  24260. }
  24261. },
  24262. dicksKingsCrown: {
  24263. height: math.unit(6, "feet"),
  24264. name: "Dicks (King's Crown)",
  24265. image: {
  24266. source: "./media/characters/koros/dicks-kings-crown.svg"
  24267. }
  24268. },
  24269. dicksTailSet: {
  24270. height: math.unit(3, "feet"),
  24271. name: "Dicks (Tail Set)",
  24272. image: {
  24273. source: "./media/characters/koros/dicks-tail-set.svg"
  24274. }
  24275. },
  24276. dickCumming: {
  24277. height: math.unit(7.98, "feet"),
  24278. name: "Dick (Cumming)",
  24279. image: {
  24280. source: "./media/characters/koros/dick-cumming.svg"
  24281. }
  24282. },
  24283. dicksBack: {
  24284. height: math.unit(5.9, "feet"),
  24285. name: "Dicks (Back)",
  24286. image: {
  24287. source: "./media/characters/koros/dicks-back.svg"
  24288. }
  24289. },
  24290. dicksFront: {
  24291. height: math.unit(3.72, "feet"),
  24292. name: "Dicks (Front)",
  24293. image: {
  24294. source: "./media/characters/koros/dicks-front.svg"
  24295. }
  24296. },
  24297. dicksPeeking: {
  24298. height: math.unit(3.0, "feet"),
  24299. name: "Dicks (Peeking)",
  24300. image: {
  24301. source: "./media/characters/koros/dicks-peeking.svg"
  24302. }
  24303. },
  24304. eye: {
  24305. height: math.unit(1.7, "feet"),
  24306. name: "Eye",
  24307. image: {
  24308. source: "./media/characters/koros/eye.svg"
  24309. }
  24310. },
  24311. headFront: {
  24312. height: math.unit(11.69, "feet"),
  24313. name: "Head (Front)",
  24314. image: {
  24315. source: "./media/characters/koros/head-front.svg"
  24316. }
  24317. },
  24318. headSide: {
  24319. height: math.unit(14, "feet"),
  24320. name: "Head (Side)",
  24321. image: {
  24322. source: "./media/characters/koros/head-side.svg"
  24323. }
  24324. },
  24325. leg: {
  24326. height: math.unit(17, "feet"),
  24327. name: "Leg",
  24328. image: {
  24329. source: "./media/characters/koros/leg.svg"
  24330. }
  24331. },
  24332. mawSide: {
  24333. height: math.unit(12.8, "feet"),
  24334. name: "Maw (Side)",
  24335. image: {
  24336. source: "./media/characters/koros/maw-side.svg"
  24337. }
  24338. },
  24339. mawSpitting: {
  24340. height: math.unit(17, "feet"),
  24341. name: "Maw (Spitting)",
  24342. image: {
  24343. source: "./media/characters/koros/maw-spitting.svg"
  24344. }
  24345. },
  24346. slit: {
  24347. height: math.unit(2.8, "feet"),
  24348. name: "Slit",
  24349. image: {
  24350. source: "./media/characters/koros/slit.svg"
  24351. }
  24352. },
  24353. stomach: {
  24354. height: math.unit(6.8, "feet"),
  24355. capacity: math.unit(20, "people"),
  24356. name: "Stomach",
  24357. image: {
  24358. source: "./media/characters/koros/stomach.svg"
  24359. }
  24360. },
  24361. wingspanBottom: {
  24362. height: math.unit(114, "feet"),
  24363. name: "Wingspan (Bottom)",
  24364. image: {
  24365. source: "./media/characters/koros/wingspan-bottom.svg"
  24366. }
  24367. },
  24368. wingspanTop: {
  24369. height: math.unit(104, "feet"),
  24370. name: "Wingspan (Top)",
  24371. image: {
  24372. source: "./media/characters/koros/wingspan-top.svg"
  24373. }
  24374. },
  24375. },
  24376. [
  24377. {
  24378. name: "Normal",
  24379. height: math.unit(31 + 8/12, "feet"),
  24380. default: true
  24381. },
  24382. ]
  24383. ))
  24384. characterMakers.push(() => makeCharacter(
  24385. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24386. {
  24387. front: {
  24388. height: math.unit(18 + 5/12, "feet"),
  24389. weight: math.unit(3750, "kg"),
  24390. name: "Front",
  24391. image: {
  24392. source: "./media/characters/vexx/front.svg",
  24393. extra: 426/396,
  24394. bottom: 31.5/458
  24395. }
  24396. },
  24397. maw: {
  24398. height: math.unit(6, "feet"),
  24399. name: "Maw",
  24400. image: {
  24401. source: "./media/characters/vexx/maw.svg"
  24402. }
  24403. },
  24404. },
  24405. [
  24406. {
  24407. name: "Normal",
  24408. height: math.unit(18 + 5/12, "feet"),
  24409. default: true
  24410. },
  24411. ]
  24412. ))
  24413. characterMakers.push(() => makeCharacter(
  24414. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24415. {
  24416. front: {
  24417. height: math.unit(17 + 6/12, "feet"),
  24418. weight: math.unit(150, "lb"),
  24419. name: "Front",
  24420. image: {
  24421. source: "./media/characters/baadra/front.svg",
  24422. extra: 3137/2890,
  24423. bottom: 168.4/3305
  24424. }
  24425. },
  24426. back: {
  24427. height: math.unit(17 + 6/12, "feet"),
  24428. weight: math.unit(150, "lb"),
  24429. name: "Back",
  24430. image: {
  24431. source: "./media/characters/baadra/back.svg",
  24432. extra: 3142/2890,
  24433. bottom: 220/3371
  24434. }
  24435. },
  24436. head: {
  24437. height: math.unit(5.45, "feet"),
  24438. name: "Head",
  24439. image: {
  24440. source: "./media/characters/baadra/head.svg"
  24441. }
  24442. },
  24443. headAngry: {
  24444. height: math.unit(4.95, "feet"),
  24445. name: "Head (Angry)",
  24446. image: {
  24447. source: "./media/characters/baadra/head-angry.svg"
  24448. }
  24449. },
  24450. headOpen: {
  24451. height: math.unit(6, "feet"),
  24452. name: "Head (Open)",
  24453. image: {
  24454. source: "./media/characters/baadra/head-open.svg"
  24455. }
  24456. },
  24457. },
  24458. [
  24459. {
  24460. name: "Normal",
  24461. height: math.unit(17 + 6/12, "feet"),
  24462. default: true
  24463. },
  24464. ]
  24465. ))
  24466. characterMakers.push(() => makeCharacter(
  24467. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24468. {
  24469. front: {
  24470. height: math.unit(7 + 3/12, "feet"),
  24471. weight: math.unit(180, "lb"),
  24472. name: "Front",
  24473. image: {
  24474. source: "./media/characters/juri/front.svg",
  24475. extra: 1401/1237,
  24476. bottom: 18.5/1418
  24477. }
  24478. },
  24479. side: {
  24480. height: math.unit(7 + 3/12, "feet"),
  24481. weight: math.unit(180, "lb"),
  24482. name: "Side",
  24483. image: {
  24484. source: "./media/characters/juri/side.svg",
  24485. extra: 1424/1242,
  24486. bottom: 18.5/1447
  24487. }
  24488. },
  24489. sitting: {
  24490. height: math.unit(6, "feet"),
  24491. weight: math.unit(180, "lb"),
  24492. name: "Sitting",
  24493. image: {
  24494. source: "./media/characters/juri/sitting.svg",
  24495. extra: 1270/1143,
  24496. bottom: 100/1343
  24497. }
  24498. },
  24499. back: {
  24500. height: math.unit(7 + 3/12, "feet"),
  24501. weight: math.unit(180, "lb"),
  24502. name: "Back",
  24503. image: {
  24504. source: "./media/characters/juri/back.svg",
  24505. extra: 1377/1240,
  24506. bottom: 23.7/1405
  24507. }
  24508. },
  24509. maw: {
  24510. height: math.unit(2.8, "feet"),
  24511. name: "Maw",
  24512. image: {
  24513. source: "./media/characters/juri/maw.svg"
  24514. }
  24515. },
  24516. stomach: {
  24517. height: math.unit(0.89, "feet"),
  24518. capacity: math.unit(4, "liters"),
  24519. name: "Stomach",
  24520. image: {
  24521. source: "./media/characters/juri/stomach.svg"
  24522. }
  24523. },
  24524. },
  24525. [
  24526. {
  24527. name: "Normal",
  24528. height: math.unit(7 + 3/12, "feet"),
  24529. default: true
  24530. },
  24531. ]
  24532. ))
  24533. characterMakers.push(() => makeCharacter(
  24534. { name: "Maxene Sita", species: ["fox"], tags: ["anthro"] },
  24535. {
  24536. fox: {
  24537. height: math.unit(5 + 6/12, "feet"),
  24538. weight: math.unit(140, "lb"),
  24539. name: "Fox",
  24540. image: {
  24541. source: "./media/characters/maxene-sita/fox.svg",
  24542. extra: 146/138,
  24543. bottom: 2.1/148.19
  24544. }
  24545. },
  24546. kitsune: {
  24547. height: math.unit(10, "feet"),
  24548. weight: math.unit(800, "lb"),
  24549. name: "Kitsune",
  24550. image: {
  24551. source: "./media/characters/maxene-sita/kitsune.svg",
  24552. extra: 185/176,
  24553. bottom: 4.7/189.9
  24554. }
  24555. },
  24556. },
  24557. [
  24558. {
  24559. name: "Normal",
  24560. height: math.unit(5 + 6/12, "feet"),
  24561. default: true
  24562. },
  24563. ]
  24564. ))
  24565. characterMakers.push(() => makeCharacter(
  24566. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24567. {
  24568. front: {
  24569. height: math.unit(3 + 4/12, "feet"),
  24570. weight: math.unit(70, "lb"),
  24571. name: "Front",
  24572. image: {
  24573. source: "./media/characters/maia/front.svg",
  24574. extra: 227/219.5,
  24575. bottom: 40 / 267
  24576. }
  24577. },
  24578. back: {
  24579. height: math.unit(3 + 4/12, "feet"),
  24580. weight: math.unit(70, "lb"),
  24581. name: "Back",
  24582. image: {
  24583. source: "./media/characters/maia/back.svg",
  24584. extra: 237/225
  24585. }
  24586. },
  24587. },
  24588. [
  24589. {
  24590. name: "Normal",
  24591. height: math.unit(3 + 4/12, "feet"),
  24592. default: true
  24593. },
  24594. ]
  24595. ))
  24596. characterMakers.push(() => makeCharacter(
  24597. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  24598. {
  24599. front: {
  24600. height: math.unit(5 + 10/12, "feet"),
  24601. weight: math.unit(197, "lb"),
  24602. name: "Front",
  24603. image: {
  24604. source: "./media/characters/jabaro/front.svg",
  24605. extra: 225/216,
  24606. bottom: 5.06/230
  24607. }
  24608. },
  24609. back: {
  24610. height: math.unit(5 + 10/12, "feet"),
  24611. weight: math.unit(197, "lb"),
  24612. name: "Back",
  24613. image: {
  24614. source: "./media/characters/jabaro/back.svg",
  24615. extra: 225/219,
  24616. bottom: 1.9/227
  24617. }
  24618. },
  24619. },
  24620. [
  24621. {
  24622. name: "Normal",
  24623. height: math.unit(5 + 10/12, "feet"),
  24624. default: true
  24625. },
  24626. ]
  24627. ))
  24628. characterMakers.push(() => makeCharacter(
  24629. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  24630. {
  24631. front: {
  24632. height: math.unit(5 + 8/12, "feet"),
  24633. weight: math.unit(139, "lb"),
  24634. name: "Front",
  24635. image: {
  24636. source: "./media/characters/risa/front.svg",
  24637. extra: 270/260,
  24638. bottom: 11.2/282
  24639. }
  24640. },
  24641. back: {
  24642. height: math.unit(5 + 8/12, "feet"),
  24643. weight: math.unit(139, "lb"),
  24644. name: "Back",
  24645. image: {
  24646. source: "./media/characters/risa/back.svg",
  24647. extra: 264/255,
  24648. bottom: 4/268
  24649. }
  24650. },
  24651. },
  24652. [
  24653. {
  24654. name: "Normal",
  24655. height: math.unit(5 + 8/12, "feet"),
  24656. default: true
  24657. },
  24658. ]
  24659. ))
  24660. characterMakers.push(() => makeCharacter(
  24661. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  24662. {
  24663. front: {
  24664. height: math.unit(2 + 11/12, "feet"),
  24665. weight: math.unit(30, "lb"),
  24666. name: "Front",
  24667. image: {
  24668. source: "./media/characters/weatley/front.svg",
  24669. bottom: 10.7/414,
  24670. extra: 403.5/362
  24671. }
  24672. },
  24673. back: {
  24674. height: math.unit(2 + 11/12, "feet"),
  24675. weight: math.unit(30, "lb"),
  24676. name: "Back",
  24677. image: {
  24678. source: "./media/characters/weatley/back.svg",
  24679. bottom: 10.7/414,
  24680. extra: 403.5/362
  24681. }
  24682. },
  24683. },
  24684. [
  24685. {
  24686. name: "Normal",
  24687. height: math.unit(2 + 11/12, "feet"),
  24688. default: true
  24689. },
  24690. ]
  24691. ))
  24692. characterMakers.push(() => makeCharacter(
  24693. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  24694. {
  24695. front: {
  24696. height: math.unit(5 + 2/12, "feet"),
  24697. weight: math.unit(50, "kg"),
  24698. name: "Front",
  24699. image: {
  24700. source: "./media/characters/mercury-crescent/front.svg",
  24701. extra: 1088/1033,
  24702. bottom: 18.9/1109
  24703. }
  24704. },
  24705. },
  24706. [
  24707. {
  24708. name: "Normal",
  24709. height: math.unit(5 + 2/12, "feet"),
  24710. default: true
  24711. },
  24712. ]
  24713. ))
  24714. characterMakers.push(() => makeCharacter(
  24715. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  24716. {
  24717. front: {
  24718. height: math.unit(2, "feet"),
  24719. weight: math.unit(15, "kg"),
  24720. name: "Front",
  24721. image: {
  24722. source: "./media/characters/diamond-jones/front.svg",
  24723. bottom: 16/568
  24724. }
  24725. },
  24726. },
  24727. [
  24728. {
  24729. name: "Normal",
  24730. height: math.unit(2, "feet"),
  24731. default: true
  24732. },
  24733. ]
  24734. ))
  24735. characterMakers.push(() => makeCharacter(
  24736. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  24737. {
  24738. front: {
  24739. height: math.unit(3, "feet"),
  24740. weight: math.unit(30, "kg"),
  24741. name: "Front",
  24742. image: {
  24743. source: "./media/characters/sweet-bit/front.svg",
  24744. extra: 675/567,
  24745. bottom: 27.7/703
  24746. }
  24747. },
  24748. },
  24749. [
  24750. {
  24751. name: "Normal",
  24752. height: math.unit(3, "feet"),
  24753. default: true
  24754. },
  24755. ]
  24756. ))
  24757. characterMakers.push(() => makeCharacter(
  24758. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  24759. {
  24760. side: {
  24761. height: math.unit(9.178, "feet"),
  24762. weight: math.unit(500, "lb"),
  24763. name: "Side",
  24764. image: {
  24765. source: "./media/characters/umbrazen/side.svg",
  24766. extra: 1730/1473,
  24767. bottom: 34.6/1765
  24768. }
  24769. },
  24770. },
  24771. [
  24772. {
  24773. name: "Normal",
  24774. height: math.unit(9.178, "feet"),
  24775. default: true
  24776. },
  24777. ]
  24778. ))
  24779. characterMakers.push(() => makeCharacter(
  24780. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  24781. {
  24782. front: {
  24783. height: math.unit(10, "feet"),
  24784. weight: math.unit(750, "lb"),
  24785. name: "Front",
  24786. image: {
  24787. source: "./media/characters/arlist/front.svg",
  24788. extra: 961/778,
  24789. bottom: 6.2/986
  24790. }
  24791. },
  24792. },
  24793. [
  24794. {
  24795. name: "Normal",
  24796. height: math.unit(10, "feet"),
  24797. default: true
  24798. },
  24799. ]
  24800. ))
  24801. characterMakers.push(() => makeCharacter(
  24802. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  24803. {
  24804. front: {
  24805. height: math.unit(5 + 1/12, "feet"),
  24806. weight: math.unit(110, "lb"),
  24807. name: "Front",
  24808. image: {
  24809. source: "./media/characters/aradel/front.svg",
  24810. extra: 324/303,
  24811. bottom: 3.6/329.4
  24812. }
  24813. },
  24814. },
  24815. [
  24816. {
  24817. name: "Normal",
  24818. height: math.unit(5 + 1/12, "feet"),
  24819. default: true
  24820. },
  24821. ]
  24822. ))
  24823. characterMakers.push(() => makeCharacter(
  24824. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  24825. {
  24826. front: {
  24827. height: math.unit(3 + 8/12, "feet"),
  24828. weight: math.unit(50, "lb"),
  24829. name: "Front",
  24830. image: {
  24831. source: "./media/characters/serryn/front.svg",
  24832. extra: 1792/1656,
  24833. bottom: 43.5/1840
  24834. }
  24835. },
  24836. },
  24837. [
  24838. {
  24839. name: "Normal",
  24840. height: math.unit(3 + 8/12, "feet"),
  24841. default: true
  24842. },
  24843. ]
  24844. ))
  24845. characterMakers.push(() => makeCharacter(
  24846. { name: "Xavier Thyme" },
  24847. {
  24848. front: {
  24849. height: math.unit(7 + 10/12, "feet"),
  24850. weight: math.unit(255, "lb"),
  24851. name: "Front",
  24852. image: {
  24853. source: "./media/characters/xavier-thyme/front.svg",
  24854. extra: 3733/3642,
  24855. bottom: 131/3869
  24856. }
  24857. },
  24858. frontRaven: {
  24859. height: math.unit(7 + 10/12, "feet"),
  24860. weight: math.unit(255, "lb"),
  24861. name: "Front (Raven)",
  24862. image: {
  24863. source: "./media/characters/xavier-thyme/front-raven.svg",
  24864. extra: 4385/3642,
  24865. bottom: 131/4517
  24866. }
  24867. },
  24868. },
  24869. [
  24870. {
  24871. name: "Normal",
  24872. height: math.unit(7 + 10/12, "feet"),
  24873. default: true
  24874. },
  24875. ]
  24876. ))
  24877. characterMakers.push(() => makeCharacter(
  24878. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  24879. {
  24880. front: {
  24881. height: math.unit(1.6, "m"),
  24882. weight: math.unit(50, "kg"),
  24883. name: "Front",
  24884. image: {
  24885. source: "./media/characters/kiki/front.svg",
  24886. extra: 4682/3610,
  24887. bottom: 115/4777
  24888. }
  24889. },
  24890. },
  24891. [
  24892. {
  24893. name: "Normal",
  24894. height: math.unit(1.6, "meters"),
  24895. default: true
  24896. },
  24897. ]
  24898. ))
  24899. characterMakers.push(() => makeCharacter(
  24900. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  24901. {
  24902. front: {
  24903. height: math.unit(50, "m"),
  24904. weight: math.unit(500, "tonnes"),
  24905. name: "Front",
  24906. image: {
  24907. source: "./media/characters/ryoko/front.svg",
  24908. extra: 4632/3926,
  24909. bottom: 193/4823
  24910. }
  24911. },
  24912. },
  24913. [
  24914. {
  24915. name: "Normal",
  24916. height: math.unit(50, "meters"),
  24917. default: true
  24918. },
  24919. ]
  24920. ))
  24921. characterMakers.push(() => makeCharacter(
  24922. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  24923. {
  24924. front: {
  24925. height: math.unit(30, "m"),
  24926. weight: math.unit(22, "tonnes"),
  24927. name: "Front",
  24928. image: {
  24929. source: "./media/characters/elio/front.svg",
  24930. extra: 4582/3720,
  24931. bottom: 236/4828
  24932. }
  24933. },
  24934. },
  24935. [
  24936. {
  24937. name: "Normal",
  24938. height: math.unit(30, "meters"),
  24939. default: true
  24940. },
  24941. ]
  24942. ))
  24943. characterMakers.push(() => makeCharacter(
  24944. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  24945. {
  24946. front: {
  24947. height: math.unit(6 + 3/12, "feet"),
  24948. weight: math.unit(120, "lb"),
  24949. name: "Front",
  24950. image: {
  24951. source: "./media/characters/azura/front.svg",
  24952. extra: 1149/1135,
  24953. bottom: 45/1194
  24954. }
  24955. },
  24956. frontClothed: {
  24957. height: math.unit(6 + 3/12, "feet"),
  24958. weight: math.unit(120, "lb"),
  24959. name: "Front (Clothed)",
  24960. image: {
  24961. source: "./media/characters/azura/front-clothed.svg",
  24962. extra: 1149/1135,
  24963. bottom: 45/1194
  24964. }
  24965. },
  24966. },
  24967. [
  24968. {
  24969. name: "Normal",
  24970. height: math.unit(6 + 3/12, "feet"),
  24971. default: true
  24972. },
  24973. {
  24974. name: "Macro",
  24975. height: math.unit(20 + 6/12, "feet")
  24976. },
  24977. {
  24978. name: "Megamacro",
  24979. height: math.unit(12, "miles")
  24980. },
  24981. {
  24982. name: "Gigamacro",
  24983. height: math.unit(10000, "miles")
  24984. },
  24985. {
  24986. name: "Teramacro",
  24987. height: math.unit(900000, "miles")
  24988. },
  24989. ]
  24990. ))
  24991. characterMakers.push(() => makeCharacter(
  24992. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  24993. {
  24994. front: {
  24995. height: math.unit(12, "feet"),
  24996. weight: math.unit(1, "ton"),
  24997. capacity: math.unit(660000, "gallons"),
  24998. name: "Front",
  24999. image: {
  25000. source: "./media/characters/zeus/front.svg",
  25001. extra: 5005/4717,
  25002. bottom: 363/5388
  25003. }
  25004. },
  25005. },
  25006. [
  25007. {
  25008. name: "Normal",
  25009. height: math.unit(12, "feet")
  25010. },
  25011. {
  25012. name: "Preferred Size",
  25013. height: math.unit(0.5, "miles"),
  25014. default: true
  25015. },
  25016. {
  25017. name: "Giga Horse",
  25018. height: math.unit(300, "miles")
  25019. },
  25020. {
  25021. name: "Riding Planets",
  25022. height: math.unit(30, "megameters")
  25023. },
  25024. {
  25025. name: "Cosmic Giant",
  25026. height: math.unit(3, "zettameters")
  25027. },
  25028. {
  25029. name: "Breeding God",
  25030. height: math.unit(9.92e22, "yottameters")
  25031. },
  25032. ]
  25033. ))
  25034. characterMakers.push(() => makeCharacter(
  25035. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25036. {
  25037. side: {
  25038. height: math.unit(9, "feet"),
  25039. weight: math.unit(1500, "kg"),
  25040. name: "Side",
  25041. image: {
  25042. source: "./media/characters/fang/side.svg",
  25043. extra: 924/866,
  25044. bottom: 47.5/972.3
  25045. }
  25046. },
  25047. },
  25048. [
  25049. {
  25050. name: "Normal",
  25051. height: math.unit(9, "feet"),
  25052. default: true
  25053. },
  25054. {
  25055. name: "Macro",
  25056. height: math.unit(75 + 6/12, "feet")
  25057. },
  25058. {
  25059. name: "Teramacro",
  25060. height: math.unit(50000, "miles")
  25061. },
  25062. ]
  25063. ))
  25064. characterMakers.push(() => makeCharacter(
  25065. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25066. {
  25067. front: {
  25068. height: math.unit(10, "feet"),
  25069. weight: math.unit(2, "tons"),
  25070. name: "Front",
  25071. image: {
  25072. source: "./media/characters/rekhit/front.svg",
  25073. extra: 2796/2590,
  25074. bottom: 225/3022
  25075. }
  25076. },
  25077. },
  25078. [
  25079. {
  25080. name: "Normal",
  25081. height: math.unit(10, "feet"),
  25082. default: true
  25083. },
  25084. {
  25085. name: "Macro",
  25086. height: math.unit(500, "feet")
  25087. },
  25088. ]
  25089. ))
  25090. characterMakers.push(() => makeCharacter(
  25091. { name: "Dahlia Verrick" },
  25092. {
  25093. front: {
  25094. height: math.unit(7 + 6.451/12, "feet"),
  25095. weight: math.unit(310, "lb"),
  25096. name: "Front",
  25097. image: {
  25098. source: "./media/characters/dahlia-verrick/front.svg",
  25099. extra: 1488/1365,
  25100. bottom: 6.2/1495
  25101. }
  25102. },
  25103. back: {
  25104. height: math.unit(7 + 6.451/12, "feet"),
  25105. weight: math.unit(310, "lb"),
  25106. name: "Back",
  25107. image: {
  25108. source: "./media/characters/dahlia-verrick/back.svg",
  25109. extra: 1472/1351,
  25110. bottom: 5.28/1477
  25111. }
  25112. },
  25113. frontBusiness: {
  25114. height: math.unit(7 + 6.451/12, "feet"),
  25115. weight: math.unit(200, "lb"),
  25116. name: "Front (Business)",
  25117. image: {
  25118. source: "./media/characters/dahlia-verrick/front-business.svg",
  25119. extra: 1478/1381,
  25120. bottom: 5.5/1484
  25121. }
  25122. },
  25123. frontCasual: {
  25124. height: math.unit(7 + 6.451/12, "feet"),
  25125. weight: math.unit(200, "lb"),
  25126. name: "Front (Casual)",
  25127. image: {
  25128. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25129. extra: 1478/1381,
  25130. bottom: 5.5/1484
  25131. }
  25132. },
  25133. },
  25134. [
  25135. {
  25136. name: "Travel-Sized",
  25137. height: math.unit(7.45, "inches")
  25138. },
  25139. {
  25140. name: "Normal",
  25141. height: math.unit(7 + 6.451/12, "feet"),
  25142. default: true
  25143. },
  25144. {
  25145. name: "Hitting the Town",
  25146. height: math.unit(37 + 8/12, "feet")
  25147. },
  25148. {
  25149. name: "Stomp in the Suburbs",
  25150. height: math.unit(964 + 9.728/12, "feet")
  25151. },
  25152. {
  25153. name: "Sit on the City",
  25154. height: math.unit(61747 + 10.592/12, "feet")
  25155. },
  25156. {
  25157. name: "Glomp the Globe",
  25158. height: math.unit(252919327 + 4.832/12, "feet")
  25159. },
  25160. ]
  25161. ))
  25162. characterMakers.push(() => makeCharacter(
  25163. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25164. {
  25165. front: {
  25166. height: math.unit(6 + 4/12, "feet"),
  25167. weight: math.unit(320, "lb"),
  25168. name: "Front",
  25169. image: {
  25170. source: "./media/characters/balina-mahigan/front.svg",
  25171. extra: 447/428,
  25172. bottom: 18/466
  25173. }
  25174. },
  25175. back: {
  25176. height: math.unit(6 + 4/12, "feet"),
  25177. weight: math.unit(320, "lb"),
  25178. name: "Back",
  25179. image: {
  25180. source: "./media/characters/balina-mahigan/back.svg",
  25181. extra: 445/428,
  25182. bottom: 4.07/448
  25183. }
  25184. },
  25185. arm: {
  25186. height: math.unit(1.88, "feet"),
  25187. name: "Arm",
  25188. image: {
  25189. source: "./media/characters/balina-mahigan/arm.svg"
  25190. }
  25191. },
  25192. backPort: {
  25193. height: math.unit(0.685, "feet"),
  25194. name: "Back Port",
  25195. image: {
  25196. source: "./media/characters/balina-mahigan/back-port.svg"
  25197. }
  25198. },
  25199. hoofpaw: {
  25200. height: math.unit(1.41, "feet"),
  25201. name: "Hoofpaw",
  25202. image: {
  25203. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25204. }
  25205. },
  25206. leftHandBack: {
  25207. height: math.unit(0.938, "feet"),
  25208. name: "Left Hand (Back)",
  25209. image: {
  25210. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25211. }
  25212. },
  25213. leftHandFront: {
  25214. height: math.unit(0.938, "feet"),
  25215. name: "Left Hand (Front)",
  25216. image: {
  25217. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25218. }
  25219. },
  25220. rightHandBack: {
  25221. height: math.unit(0.95, "feet"),
  25222. name: "Right Hand (Back)",
  25223. image: {
  25224. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25225. }
  25226. },
  25227. rightHandFront: {
  25228. height: math.unit(0.95, "feet"),
  25229. name: "Right Hand (Front)",
  25230. image: {
  25231. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25232. }
  25233. },
  25234. },
  25235. [
  25236. {
  25237. name: "Normal",
  25238. height: math.unit(6 + 4/12, "feet"),
  25239. default: true
  25240. },
  25241. ]
  25242. ))
  25243. characterMakers.push(() => makeCharacter(
  25244. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25245. {
  25246. front: {
  25247. height: math.unit(6, "feet"),
  25248. weight: math.unit(320, "lb"),
  25249. name: "Front",
  25250. image: {
  25251. source: "./media/characters/balina-mejeri/front.svg",
  25252. extra: 517/488,
  25253. bottom: 44.2/561
  25254. }
  25255. },
  25256. },
  25257. [
  25258. {
  25259. name: "Normal",
  25260. height: math.unit(6 + 4/12, "feet")
  25261. },
  25262. {
  25263. name: "Business",
  25264. height: math.unit(155, "feet"),
  25265. default: true
  25266. },
  25267. ]
  25268. ))
  25269. characterMakers.push(() => makeCharacter(
  25270. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25271. {
  25272. kneeling: {
  25273. height: math.unit(6 + 4/12, "feet"),
  25274. weight: math.unit(300*20, "lb"),
  25275. name: "Kneeling",
  25276. image: {
  25277. source: "./media/characters/balbarian/kneeling.svg",
  25278. extra: 922/862,
  25279. bottom: 42.4/965
  25280. }
  25281. },
  25282. },
  25283. [
  25284. {
  25285. name: "Normal",
  25286. height: math.unit(6 + 4/12, "feet")
  25287. },
  25288. {
  25289. name: "Treasured",
  25290. height: math.unit(18 + 9/12, "feet"),
  25291. default: true
  25292. },
  25293. {
  25294. name: "Macro",
  25295. height: math.unit(900, "feet")
  25296. },
  25297. ]
  25298. ))
  25299. characterMakers.push(() => makeCharacter(
  25300. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25301. {
  25302. front: {
  25303. height: math.unit(6 + 4/12, "feet"),
  25304. weight: math.unit(325, "lb"),
  25305. name: "Front",
  25306. image: {
  25307. source: "./media/characters/balina-amarini/front.svg",
  25308. extra: 415/403,
  25309. bottom: 19/433.4
  25310. }
  25311. },
  25312. back: {
  25313. height: math.unit(6 + 4/12, "feet"),
  25314. weight: math.unit(325, "lb"),
  25315. name: "Back",
  25316. image: {
  25317. source: "./media/characters/balina-amarini/back.svg",
  25318. extra: 415/403,
  25319. bottom: 13.5/432
  25320. }
  25321. },
  25322. overdrive: {
  25323. height: math.unit(6 + 4/12, "feet"),
  25324. weight: math.unit(400, "lb"),
  25325. name: "Overdrive",
  25326. image: {
  25327. source: "./media/characters/balina-amarini/overdrive.svg",
  25328. extra: 269/259,
  25329. bottom: 12/282
  25330. }
  25331. },
  25332. },
  25333. [
  25334. {
  25335. name: "Boom",
  25336. height: math.unit(9 + 10/12, "feet"),
  25337. default: true
  25338. },
  25339. {
  25340. name: "Macro",
  25341. height: math.unit(280, "feet")
  25342. },
  25343. ]
  25344. ))
  25345. characterMakers.push(() => makeCharacter(
  25346. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25347. {
  25348. goddess: {
  25349. height: math.unit(600, "feet"),
  25350. weight: math.unit(2000000, "tons"),
  25351. name: "Goddess",
  25352. image: {
  25353. source: "./media/characters/lady-kubwa/goddess.svg",
  25354. extra: 1240.5/1223,
  25355. bottom: 22/1263
  25356. }
  25357. },
  25358. goddesser: {
  25359. height: math.unit(900, "feet"),
  25360. weight: math.unit(20000000, "lb"),
  25361. name: "Goddess-er",
  25362. image: {
  25363. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25364. extra: 899/888,
  25365. bottom: 12.6/912
  25366. }
  25367. },
  25368. },
  25369. [
  25370. {
  25371. name: "Macro",
  25372. height: math.unit(600, "feet"),
  25373. default: true
  25374. },
  25375. {
  25376. name: "Megamacro",
  25377. height: math.unit(250, "miles")
  25378. },
  25379. ]
  25380. ))
  25381. characterMakers.push(() => makeCharacter(
  25382. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25383. {
  25384. front: {
  25385. height: math.unit(7 + 7/12, "feet"),
  25386. weight: math.unit(250, "lb"),
  25387. name: "Front",
  25388. image: {
  25389. source: "./media/characters/tala-grovehorn/front.svg",
  25390. extra: 2636/2525,
  25391. bottom: 147/2781
  25392. }
  25393. },
  25394. back: {
  25395. height: math.unit(7 + 7/12, "feet"),
  25396. weight: math.unit(250, "lb"),
  25397. name: "Back",
  25398. image: {
  25399. source: "./media/characters/tala-grovehorn/back.svg",
  25400. extra: 2635/2539,
  25401. bottom: 100/2732.8
  25402. }
  25403. },
  25404. mouth: {
  25405. height: math.unit(1.15, "feet"),
  25406. name: "Mouth",
  25407. image: {
  25408. source: "./media/characters/tala-grovehorn/mouth.svg"
  25409. }
  25410. },
  25411. dick: {
  25412. height: math.unit(2.36, "feet"),
  25413. name: "Dick",
  25414. image: {
  25415. source: "./media/characters/tala-grovehorn/dick.svg"
  25416. }
  25417. },
  25418. slit: {
  25419. height: math.unit(0.61, "feet"),
  25420. name: "Slit",
  25421. image: {
  25422. source: "./media/characters/tala-grovehorn/slit.svg"
  25423. }
  25424. },
  25425. },
  25426. [
  25427. ]
  25428. ))
  25429. characterMakers.push(() => makeCharacter(
  25430. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25431. {
  25432. front: {
  25433. height: math.unit(7 + 7/12, "feet"),
  25434. weight: math.unit(225, "lb"),
  25435. name: "Front",
  25436. image: {
  25437. source: "./media/characters/epona/front.svg",
  25438. extra: 2445/2290,
  25439. bottom: 251/2696
  25440. }
  25441. },
  25442. back: {
  25443. height: math.unit(7 + 7/12, "feet"),
  25444. weight: math.unit(225, "lb"),
  25445. name: "Back",
  25446. image: {
  25447. source: "./media/characters/epona/back.svg",
  25448. extra: 2546/2408,
  25449. bottom: 44/2589
  25450. }
  25451. },
  25452. genitals: {
  25453. height: math.unit(1.5, "feet"),
  25454. name: "Genitals",
  25455. image: {
  25456. source: "./media/characters/epona/genitals.svg"
  25457. }
  25458. },
  25459. },
  25460. [
  25461. {
  25462. name: "Normal",
  25463. height: math.unit(7 + 7/12, "feet")
  25464. },
  25465. ]
  25466. ))
  25467. characterMakers.push(() => makeCharacter(
  25468. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25469. {
  25470. front: {
  25471. height: math.unit(7, "feet"),
  25472. weight: math.unit(518, "lb"),
  25473. name: "Front",
  25474. image: {
  25475. source: "./media/characters/avia-bloodbourn/front.svg",
  25476. extra: 1466/1350,
  25477. bottom: 65/1527
  25478. }
  25479. },
  25480. },
  25481. [
  25482. ]
  25483. ))
  25484. characterMakers.push(() => makeCharacter(
  25485. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25486. {
  25487. front: {
  25488. height: math.unit(9.35, "feet"),
  25489. weight: math.unit(600, "lb"),
  25490. name: "Front",
  25491. image: {
  25492. source: "./media/characters/amera/front.svg",
  25493. extra: 891/818,
  25494. bottom: 30/922.7
  25495. }
  25496. },
  25497. back: {
  25498. height: math.unit(9.35, "feet"),
  25499. weight: math.unit(600, "lb"),
  25500. name: "Back",
  25501. image: {
  25502. source: "./media/characters/amera/back.svg",
  25503. extra: 876/824,
  25504. bottom: 6.8/884
  25505. }
  25506. },
  25507. dick: {
  25508. height: math.unit(2.14, "feet"),
  25509. name: "Dick",
  25510. image: {
  25511. source: "./media/characters/amera/dick.svg"
  25512. }
  25513. },
  25514. },
  25515. [
  25516. {
  25517. name: "Normal",
  25518. height: math.unit(9.35, "feet"),
  25519. default: true
  25520. },
  25521. ]
  25522. ))
  25523. characterMakers.push(() => makeCharacter(
  25524. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25525. {
  25526. kneeling: {
  25527. height: math.unit(3 + 4/12, "feet"),
  25528. weight: math.unit(90, "lb"),
  25529. name: "Kneeling",
  25530. image: {
  25531. source: "./media/characters/rosewen/kneeling.svg",
  25532. extra: 1835/1571,
  25533. bottom: 27.7/1862
  25534. }
  25535. },
  25536. },
  25537. [
  25538. {
  25539. name: "Normal",
  25540. height: math.unit(3 + 4/12, "feet"),
  25541. default: true
  25542. },
  25543. ]
  25544. ))
  25545. characterMakers.push(() => makeCharacter(
  25546. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  25547. {
  25548. front: {
  25549. height: math.unit(5 + 10/12, "feet"),
  25550. weight: math.unit(200, "lb"),
  25551. name: "Front",
  25552. image: {
  25553. source: "./media/characters/sabah/front.svg",
  25554. extra: 849/763,
  25555. bottom: 33.9/881
  25556. }
  25557. },
  25558. },
  25559. [
  25560. {
  25561. name: "Normal",
  25562. height: math.unit(5 + 10/12, "feet"),
  25563. default: true
  25564. },
  25565. ]
  25566. ))
  25567. characterMakers.push(() => makeCharacter(
  25568. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  25569. {
  25570. front: {
  25571. height: math.unit(3 + 5/12, "feet"),
  25572. weight: math.unit(40, "kg"),
  25573. name: "Front",
  25574. image: {
  25575. source: "./media/characters/purple-flame/front.svg",
  25576. extra: 1577/1412,
  25577. bottom: 97/1694
  25578. }
  25579. },
  25580. frontDressed: {
  25581. height: math.unit(3 + 5/12, "feet"),
  25582. weight: math.unit(40, "kg"),
  25583. name: "Front (Dressed)",
  25584. image: {
  25585. source: "./media/characters/purple-flame/front-dressed.svg",
  25586. extra: 1577/1412,
  25587. bottom: 97/1694
  25588. }
  25589. },
  25590. headphones: {
  25591. height: math.unit(0.85, "feet"),
  25592. name: "Headphones",
  25593. image: {
  25594. source: "./media/characters/purple-flame/headphones.svg"
  25595. }
  25596. },
  25597. },
  25598. [
  25599. {
  25600. name: "Really Small",
  25601. height: math.unit(5, "cm")
  25602. },
  25603. {
  25604. name: "Micro",
  25605. height: math.unit(1 + 5/12, "feet")
  25606. },
  25607. {
  25608. name: "Normal",
  25609. height: math.unit(3 + 5/12, "feet"),
  25610. default: true
  25611. },
  25612. {
  25613. name: "Minimacro",
  25614. height: math.unit(125, "feet")
  25615. },
  25616. {
  25617. name: "Macro",
  25618. height: math.unit(0.5, "miles")
  25619. },
  25620. {
  25621. name: "Megamacro",
  25622. height: math.unit(50, "miles")
  25623. },
  25624. {
  25625. name: "Gigantic",
  25626. height: math.unit(750, "miles")
  25627. },
  25628. {
  25629. name: "Planetary",
  25630. height: math.unit(15000, "miles")
  25631. },
  25632. ]
  25633. ))
  25634. characterMakers.push(() => makeCharacter(
  25635. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  25636. {
  25637. front: {
  25638. height: math.unit(14, "feet"),
  25639. weight: math.unit(959, "lb"),
  25640. name: "Front",
  25641. image: {
  25642. source: "./media/characters/arsenal/front.svg",
  25643. extra: 2357/2157,
  25644. bottom: 93/2458
  25645. }
  25646. },
  25647. },
  25648. [
  25649. {
  25650. name: "Normal",
  25651. height: math.unit(14, "feet"),
  25652. default: true
  25653. },
  25654. ]
  25655. ))
  25656. characterMakers.push(() => makeCharacter(
  25657. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  25658. {
  25659. front: {
  25660. height: math.unit(6, "feet"),
  25661. weight: math.unit(150, "lb"),
  25662. name: "Front",
  25663. image: {
  25664. source: "./media/characters/adira/front.svg",
  25665. extra: 1078/1029,
  25666. bottom: 87/1166
  25667. }
  25668. },
  25669. },
  25670. [
  25671. {
  25672. name: "Micro",
  25673. height: math.unit(4, "inches"),
  25674. default: true
  25675. },
  25676. {
  25677. name: "Macro",
  25678. height: math.unit(50, "feet")
  25679. },
  25680. ]
  25681. ))
  25682. characterMakers.push(() => makeCharacter(
  25683. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  25684. {
  25685. front: {
  25686. height: math.unit(16, "feet"),
  25687. weight: math.unit(1000, "lb"),
  25688. name: "Front",
  25689. image: {
  25690. source: "./media/characters/grim/front.svg",
  25691. extra: 622/614,
  25692. bottom: 18.1/642
  25693. }
  25694. },
  25695. back: {
  25696. height: math.unit(16, "feet"),
  25697. weight: math.unit(1000, "lb"),
  25698. name: "Back",
  25699. image: {
  25700. source: "./media/characters/grim/back.svg",
  25701. extra: 610.6/602,
  25702. bottom: 40.8/652
  25703. }
  25704. },
  25705. hunched: {
  25706. height: math.unit(9.75, "feet"),
  25707. weight: math.unit(1000, "lb"),
  25708. name: "Hunched",
  25709. image: {
  25710. source: "./media/characters/grim/hunched.svg",
  25711. extra: 304/297,
  25712. bottom: 35.4/394
  25713. }
  25714. },
  25715. },
  25716. [
  25717. {
  25718. name: "Normal",
  25719. height: math.unit(16, "feet"),
  25720. default: true
  25721. },
  25722. ]
  25723. ))
  25724. characterMakers.push(() => makeCharacter(
  25725. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  25726. {
  25727. front: {
  25728. height: math.unit(2.3, "meters"),
  25729. weight: math.unit(300, "lb"),
  25730. name: "Front",
  25731. image: {
  25732. source: "./media/characters/sinja/front-sfw.svg",
  25733. extra: 1393/1294,
  25734. bottom: 70/1463
  25735. }
  25736. },
  25737. frontNsfw: {
  25738. height: math.unit(2.3, "meters"),
  25739. weight: math.unit(300, "lb"),
  25740. name: "Front (NSFW)",
  25741. image: {
  25742. source: "./media/characters/sinja/front-nsfw.svg",
  25743. extra: 1393/1294,
  25744. bottom: 70/1463
  25745. }
  25746. },
  25747. back: {
  25748. height: math.unit(2.3, "meters"),
  25749. weight: math.unit(300, "lb"),
  25750. name: "Back",
  25751. image: {
  25752. source: "./media/characters/sinja/back.svg",
  25753. extra: 1393/1294,
  25754. bottom: 70/1463
  25755. }
  25756. },
  25757. head: {
  25758. height: math.unit(1.771, "feet"),
  25759. name: "Head",
  25760. image: {
  25761. source: "./media/characters/sinja/head.svg"
  25762. }
  25763. },
  25764. slit: {
  25765. height: math.unit(0.8, "feet"),
  25766. name: "Slit",
  25767. image: {
  25768. source: "./media/characters/sinja/slit.svg"
  25769. }
  25770. },
  25771. },
  25772. [
  25773. {
  25774. name: "Normal",
  25775. height: math.unit(2.3, "meters")
  25776. },
  25777. {
  25778. name: "Macro",
  25779. height: math.unit(91, "meters"),
  25780. default: true
  25781. },
  25782. {
  25783. name: "Megamacro",
  25784. height: math.unit(91440, "meters")
  25785. },
  25786. {
  25787. name: "Gigamacro",
  25788. height: math.unit(60960000, "meters")
  25789. },
  25790. {
  25791. name: "Teramacro",
  25792. height: math.unit(9144000000, "meters")
  25793. },
  25794. ]
  25795. ))
  25796. characterMakers.push(() => makeCharacter(
  25797. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  25798. {
  25799. front: {
  25800. height: math.unit(1.7, "meters"),
  25801. weight: math.unit(130, "lb"),
  25802. name: "Front",
  25803. image: {
  25804. source: "./media/characters/kyu/front.svg",
  25805. extra: 415/395,
  25806. bottom: 5/420
  25807. }
  25808. },
  25809. head: {
  25810. height: math.unit(1.75, "feet"),
  25811. name: "Head",
  25812. image: {
  25813. source: "./media/characters/kyu/head.svg"
  25814. }
  25815. },
  25816. foot: {
  25817. height: math.unit(0.81, "feet"),
  25818. name: "Foot",
  25819. image: {
  25820. source: "./media/characters/kyu/foot.svg"
  25821. }
  25822. },
  25823. },
  25824. [
  25825. {
  25826. name: "Normal",
  25827. height: math.unit(1.7, "meters")
  25828. },
  25829. {
  25830. name: "Macro",
  25831. height: math.unit(131, "feet"),
  25832. default: true
  25833. },
  25834. {
  25835. name: "Megamacro",
  25836. height: math.unit(91440, "meters")
  25837. },
  25838. {
  25839. name: "Gigamacro",
  25840. height: math.unit(60960000, "meters")
  25841. },
  25842. {
  25843. name: "Teramacro",
  25844. height: math.unit(9144000000, "meters")
  25845. },
  25846. ]
  25847. ))
  25848. characterMakers.push(() => makeCharacter(
  25849. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  25850. {
  25851. front: {
  25852. height: math.unit(7 + 1/12, "feet"),
  25853. weight: math.unit(250, "lb"),
  25854. name: "Front",
  25855. image: {
  25856. source: "./media/characters/joey/front.svg",
  25857. extra: 1791/1537,
  25858. bottom: 28/1816
  25859. }
  25860. },
  25861. },
  25862. [
  25863. {
  25864. name: "Micro",
  25865. height: math.unit(3, "inches")
  25866. },
  25867. {
  25868. name: "Normal",
  25869. height: math.unit(7 + 1/12, "feet"),
  25870. default: true
  25871. },
  25872. ]
  25873. ))
  25874. characterMakers.push(() => makeCharacter(
  25875. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  25876. {
  25877. front: {
  25878. height: math.unit(165, "cm"),
  25879. weight: math.unit(140, "lb"),
  25880. name: "Front",
  25881. image: {
  25882. source: "./media/characters/sam-evans/front.svg",
  25883. extra: 3417/3230,
  25884. bottom: 41.3/3417
  25885. }
  25886. },
  25887. frontSixTails: {
  25888. height: math.unit(165, "cm"),
  25889. weight: math.unit(140, "lb"),
  25890. name: "Front-six-tails",
  25891. image: {
  25892. source: "./media/characters/sam-evans/front-six-tails.svg",
  25893. extra: 3417/3230,
  25894. bottom: 41.3/3417
  25895. }
  25896. },
  25897. back: {
  25898. height: math.unit(165, "cm"),
  25899. weight: math.unit(140, "lb"),
  25900. name: "Back",
  25901. image: {
  25902. source: "./media/characters/sam-evans/back.svg",
  25903. extra: 3227/3032,
  25904. bottom: 6.8/3234
  25905. }
  25906. },
  25907. face: {
  25908. height: math.unit(0.68, "feet"),
  25909. name: "Face",
  25910. image: {
  25911. source: "./media/characters/sam-evans/face.svg"
  25912. }
  25913. },
  25914. },
  25915. [
  25916. {
  25917. name: "Normal",
  25918. height: math.unit(165, "cm"),
  25919. default: true
  25920. },
  25921. {
  25922. name: "Macro",
  25923. height: math.unit(100, "meters")
  25924. },
  25925. {
  25926. name: "Macro+",
  25927. height: math.unit(800, "meters")
  25928. },
  25929. {
  25930. name: "Macro++",
  25931. height: math.unit(3, "km")
  25932. },
  25933. {
  25934. name: "Macro+++",
  25935. height: math.unit(30, "km")
  25936. },
  25937. ]
  25938. ))
  25939. characterMakers.push(() => makeCharacter(
  25940. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  25941. {
  25942. front: {
  25943. height: math.unit(10, "feet"),
  25944. weight: math.unit(750, "lb"),
  25945. name: "Front",
  25946. image: {
  25947. source: "./media/characters/juliet-a/front.svg",
  25948. extra: 1766/1720,
  25949. bottom: 43/1809
  25950. }
  25951. },
  25952. back: {
  25953. height: math.unit(10, "feet"),
  25954. weight: math.unit(750, "lb"),
  25955. name: "Back",
  25956. image: {
  25957. source: "./media/characters/juliet-a/back.svg",
  25958. extra: 1781/1734,
  25959. bottom: 35/1810,
  25960. }
  25961. },
  25962. },
  25963. [
  25964. {
  25965. name: "Normal",
  25966. height: math.unit(10, "feet"),
  25967. default: true
  25968. },
  25969. {
  25970. name: "Dragon Form",
  25971. height: math.unit(250, "feet")
  25972. },
  25973. {
  25974. name: "Macro",
  25975. height: math.unit(1000, "feet")
  25976. },
  25977. {
  25978. name: "Megamacro",
  25979. height: math.unit(10000, "feet")
  25980. }
  25981. ]
  25982. ))
  25983. characterMakers.push(() => makeCharacter(
  25984. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  25985. {
  25986. regular: {
  25987. height: math.unit(7 + 3/12, "feet"),
  25988. weight: math.unit(260, "lb"),
  25989. name: "Regular",
  25990. image: {
  25991. source: "./media/characters/wild/regular.svg",
  25992. extra: 97.45/92,
  25993. bottom: 6.8/104.3
  25994. }
  25995. },
  25996. biggums: {
  25997. height: math.unit(8 + 6 /12, "feet"),
  25998. weight: math.unit(425, "lb"),
  25999. name: "Biggums",
  26000. image: {
  26001. source: "./media/characters/wild/biggums.svg",
  26002. extra: 97.45/92,
  26003. bottom: 7.5/132.34
  26004. }
  26005. },
  26006. mawRegular: {
  26007. height: math.unit(1.24, "feet"),
  26008. name: "Maw (Regular)",
  26009. image: {
  26010. source: "./media/characters/wild/maw.svg"
  26011. }
  26012. },
  26013. mawBiggums: {
  26014. height: math.unit(1.47, "feet"),
  26015. name: "Maw (Biggums)",
  26016. image: {
  26017. source: "./media/characters/wild/maw.svg"
  26018. }
  26019. },
  26020. },
  26021. [
  26022. {
  26023. name: "Normal",
  26024. height: math.unit(7 + 3/12, "feet"),
  26025. default: true
  26026. },
  26027. ]
  26028. ))
  26029. characterMakers.push(() => makeCharacter(
  26030. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26031. {
  26032. front: {
  26033. height: math.unit(2.5, "meters"),
  26034. weight: math.unit(200, "kg"),
  26035. name: "Front",
  26036. image: {
  26037. source: "./media/characters/vidar/front.svg",
  26038. extra: 2994/2795,
  26039. bottom: 56/3061
  26040. }
  26041. },
  26042. back: {
  26043. height: math.unit(2.5, "meters"),
  26044. weight: math.unit(200, "kg"),
  26045. name: "Back",
  26046. image: {
  26047. source: "./media/characters/vidar/back.svg",
  26048. extra: 3131/2928,
  26049. bottom: 13.5/3141.5
  26050. }
  26051. },
  26052. feral: {
  26053. height: math.unit(2.5, "meters"),
  26054. weight: math.unit(2000, "kg"),
  26055. name: "Feral",
  26056. image: {
  26057. source: "./media/characters/vidar/feral.svg",
  26058. extra: 2790/1765,
  26059. bottom: 6/2796
  26060. }
  26061. },
  26062. },
  26063. [
  26064. {
  26065. name: "Normal",
  26066. height: math.unit(2.5, "meters"),
  26067. default: true
  26068. },
  26069. {
  26070. name: "Macro",
  26071. height: math.unit(100, "meters")
  26072. },
  26073. ]
  26074. ))
  26075. characterMakers.push(() => makeCharacter(
  26076. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26077. {
  26078. front: {
  26079. height: math.unit(5 + 9/12, "feet"),
  26080. weight: math.unit(120, "lb"),
  26081. name: "Front",
  26082. image: {
  26083. source: "./media/characters/ash/front.svg",
  26084. extra: 2189/1961,
  26085. bottom: 5.2/2194
  26086. }
  26087. },
  26088. },
  26089. [
  26090. {
  26091. name: "Normal",
  26092. height: math.unit(5 + 9/12, "feet"),
  26093. default: true
  26094. },
  26095. ]
  26096. ))
  26097. characterMakers.push(() => makeCharacter(
  26098. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26099. {
  26100. front: {
  26101. height: math.unit(9, "feet"),
  26102. weight: math.unit(10000, "lb"),
  26103. name: "Front",
  26104. image: {
  26105. source: "./media/characters/gygabite/front.svg",
  26106. bottom: 31.7/537.8,
  26107. extra: 505/370
  26108. }
  26109. },
  26110. },
  26111. [
  26112. {
  26113. name: "Normal",
  26114. height: math.unit(9, "feet"),
  26115. default: true
  26116. },
  26117. ]
  26118. ))
  26119. characterMakers.push(() => makeCharacter(
  26120. { name: "Bara", species: ["protogen"], tags: ["anthro"] },
  26121. {
  26122. front: {
  26123. height: math.unit(12, "feet"),
  26124. weight: math.unit(35000, "lb"),
  26125. name: "Front",
  26126. image: {
  26127. source: "./media/characters/bara/front.svg",
  26128. extra: 1065/921,
  26129. bottom: 55.7/1121.25
  26130. }
  26131. },
  26132. },
  26133. [
  26134. {
  26135. name: "Normal",
  26136. height: math.unit(12, "feet"),
  26137. default: true
  26138. },
  26139. ]
  26140. ))
  26141. //characters
  26142. function makeCharacters() {
  26143. const results = [];
  26144. characterMakers.forEach(character => {
  26145. results.push(character());
  26146. });
  26147. return results;
  26148. }